/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.3.6,
* Autoprefixer: v10.3.1
* Browsers: last 4 version
*/

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
body {
	font-family: "Trebuchet MS", sans-serif;
	color: #333333;
	padding-bottom: 42px;
}


.logo {
	width: 97px;
	display: block;
	margin: 0 auto;
}

.debug {
	background-color: rgba(0, 0, 0, .3);
	position: fixed;
	right: 0;
	top: 0;
	font-size: 12px;
	text-align: center;

}

.debug a {
	color: #e5e2ad;
	text-decoration: none;
	display: block;
	width: 70px;
	padding-bottom: 5px;
}

.container {
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
}

.padding {
	padding: 18px;
}

.mt {
	margin-top: 18px;
}

.mb {
	margin-bottom: 18px;
}

.bg-light {
	background-color: #f7f7f7;
}

.bg-dark {
	background-color: #384c76;
	color: #FFF;
}

.list-info {
	border: 1px solid #b1afaf;
}

.list-info__table {
	font-size: 14px;
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

.list-info__table td {
	padding: 10px 0;
	vertical-align: top;
}

.list-info__table tr:not(:last-child) td {
	border-bottom: 1px solid #b1afaf;
}

.list-info__table td:first-child {
	font-weight: bold;
}

.list-info__table td:last-child {
	text-align: right;
}

.action-title {
	font-size: 18px;
	margin-bottom: 8px;
	text-align: center;
}

.action-description {
	font-size: 16px;
}

.btn-action,
.confirm-btn{
	text-decoration: none;
	display: block;
	background: #384c76 !important;
	color: #FFF;
	text-align: center;
	line-height: 24px;
	cursor: pointer;
	border: none;
	border-radius: 0;

}
.btn-action{
	width: 100%;
	margin-bottom: 18px;
	padding: 14px 24px;
	font-size: 18px;
}
.confirm-btn{
	font-size: 16px;
	padding: 10px 32px;
	margin-top: 18px;
}
.confirm-btn:first-child{
	margin-right: 18px;
}
.action-item {
	border: 1px solid #b1afaf;
	margin-bottom: 18px;
	/*border-bottom: 1px dashed #717171;*/
}

input[type=file] {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}


.popup-wrap {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, .3);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/*body.popup-on .popup-wrap{*/
/*	display: flex;*/
/*}*/

.popup {
	position: relative;
	padding: 48px 18px;
	width: 100%;
	max-width: 600px;
	background-color: #fff;
	-webkit-box-shadow: 0 3px 10px 1px rgba(0, 0, 0, .3);
	box-shadow: 0 3px 10px 1px rgba(0, 0, 0, .3);
}

.popup-close{
	position: absolute;
	right: 12px;
	top: 12px;
	width: 24px;
	height: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
}
.popup-close:after{
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	background-color: #333333;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.popup-close:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #333333;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
/*.btn-scanner{*/
/*	text-align: center;*/
/*	padding: 14px 24px;*/
/*	font-size: 18px;*/
/*	line-height: 24px;*/
/*	border: 1px solid #b1afaf;*/
/*	cursor: pointer;*/
/*}*/
.success-message{
	text-align: center;
	font-size: 18px;
}
.wrap-buttons{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.preloader{
	width: 100%;
	height: 100vh;
	background-color: rgba(255,255,255,.9);
	position: fixed;
	left: 0;
	top: 0;
	pointer-events: none;
	display: none;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.preloader.show{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.preloader:before{
	content: '';
	background: url("/img/wheel.svg") 50% 50% no-repeat;
	width: 50px;
	height: 50px;
	background-size: 50px;
	-webkit-animation: preloadAnimate linear 2s infinite;
	animation: preloadAnimate linear 2s infinite;
}
@-webkit-keyframes preloadAnimate {
	from{
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	to{
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}

}
@keyframes preloadAnimate {
	from{
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	to{
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}

}
