@charset "UTF-8";
:root {
	--otp-rubik-medium: Rubik-Medium;
	--otp-rubik-light: Rubik-Light;
	--otp-primary-color: #303841;
	--otp-white:#fff;
	--otp-black: #000;
	--otp-black-rgb: 0, 0, 0;
	--otp-text-color: rgba(var(--otp-black-rgb), .5);
	--otp-transparent-color: rgba(var(--otp-black-rgb), 0);
	--otp-error-color: #fd7b7c;
	--otp-danger-color: #ca3838;
	--otp-tr: .2s;
}
.form {
	box-sizing: border-box;
	margin-bottom: 10px;
}
.form p {
	font-size: clamp(15px, 2vw, 17px);
	line-height: 22px;
	color: var(--otp-text-color);
	margin-bottom: 24px;
}
.form .form-group {
	position: relative;
	margin-bottom: 0;
}
.slerror {
	color: #fff !important;
}
.slsuccess {
	color: #fff !important;
}
.form-group.has-error .form-field,
.iti.has-error .form-field {
	border-color: orange;
	/* border-bottom-left-radius: 0; */
	/* border-bottom-right-radius: 0; */
}
.form-group.has-error .form-field+.slerror,
.iti.has-error .form-field+.slerror {
	font-family: var(--otp-rubik-light);
	text-align: left;
	font-weight: 500;
	font-size: clamp(12px, 1vw, 14px);
	padding: 2px 10px;
	display: block;
	position: absolute;
	top: -22px;
}
.form-group .input-group+.slerror {
	font-family: var(--otp-rubik-light);
	text-align: left;
	font-weight: 500;
	font-size: clamp(12px, 1vw, 14px);
	padding: 0 10px;
	display: block;
	position: absolute;
}
.form-group.has-error .form-field+.slerror:before,
.form-group .input-group+.slerror:before,
.iti.has-error .form-field+.slerror:before {
	position: relative;
	top: 3px;
	content: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" height="16"><circle cx="12" cy="12" r="10" fill="%23fd7b7c"/><text x="12" y="16" font-size="14" fill="white" text-anchor="middle">!</text></svg>');
	margin-right: 5px;
}
.form-group.has-error .form-field+.slerror,
.iti.has-error .form-field+.slerror,
.alert-warning,
.alert-danger {
	color: var(--otp-error-color);
	border-color: #eed8d4;
}
.form-group.has-error .form-field+.slerror,
.iti.has-error .form-field+.slerror,
.form-group.has-error .form-field,
.iti.has-error .form-field {
	border-color: var(--otp-error-color);
}
.form input[type="tel"] {
	width: 100%;
	height: 38px;
	padding: 10px 15px;
	background: 0 0;
	box-sizing: border-box;
	border: 1px solid #DDD;
	border-radius: 5px;
	font-family: inherit;
	font-size: 14px;
	line-height: normal;
	transition: all var(--otp-tr);
	-webkit-appearance: none;
}

.form input[type="tel"]:focus {
	outline: 0;
	border-color: var(--otp-primary-color);
}
.form-group .iti__selected-dial-code {
	max-height: 55px !important;
	font-family: var(--otp-rubik-light);
	font-size: 18px;
	transition: all var(--otp-tr);
}
.form-group .iti__selected-country-primary:hover {
	background-color: var(--otp-transparent-color) !important;
}
.form-group .iti input[type="tel"] {
	/* padding-left: 95px !important; */
}
.form-group required {
	position: absolute;
	right: 0px;
	top: 0px;
	-moz-transition: var(--otp-tr) ease all;
	-webkit-transition: var(--otp-tr) ease all;
	transition: var(--otp-tr) ease all;
	z-index: 22;
	width: 42px;
	background-color: rgba(242, 222, 222, .22);
	height: 42px;
	border-bottom-right-radius: 4px;
	border-top-right-radius: 4px;
	text-align: center;
	padding: 13px;
	border-left: 1px solid #ddd;
}
.form-group required:after {
	content: "\f314";
	display: inline-block;
	font: normal normal normal 18px/1 'Ionicons';
	font-size: 10px;
	color: #777;
}
.popup-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: var(--otp-text-color);
	z-index: 19009;
}
.popup-window {
	display: none;
	background: var(--otp-white);
	overflow: auto;
	position: static;
	inset: 0;
	max-height: 100%;
	-webkit-overflow-scrolling: touch;
	margin: -30px;
	width: calc(100% + 60px);
	height: calc(100% + 60px);
	z-index: 999;
	border-radius: 5px !important;
}
.popup-window .inner {
	overflow-y: auto;
	padding: 30px;
}
@media(max-width: 991px) {
	.popup-window .inner {
		overflow-y: auto;
		padding: 30px 15px 20px;
	}
	.popup-window {
		margin: -35px -15px -20px;
		width: calc(100% + 30px);
		height: calc(100% + 55px) !important;
		z-index: 111;
		position: relative;
		overflow-x: hidden;
	}
	.btn-close-popup {
		top: 0 !important;
		right: -5px !important;
	}
}
.popup-window .inner .popup-title {
	font-family: 'Ubuntu';
	font-weight: 700;
	font-size: 16px;
	color: rgba(48, 56, 65, 1);
	text-transform: uppercase;
	margin-bottom: 15px;
	white-space: normal;
	overflow: visible;
	text-overflow: initial;
	text-align: left;
}
.popup-window .inner .popup-title:after {
	content: '';
	display: block;
	position: relative;
	margin-top: 10px;
	left: initial;
	right: initial;
	margin-left: 0;
	margin-right: auto;
	transform: none;
	width: 50px;
	height: 1px;
	background: rgba(48, 56, 65, 1);
}
.popup-window .inner .popup-text {
	font-family: inherit;
	font-size: 14px;
	line-height: 21px;
	text-align: left;
	margin-bottom: 0;
}
.popup-form {
	margin-top: 20px;
}
.popup-window .inner .popup-text.slsuccess {
	margin-bottom: 0;
}
.slsuccess .mes-block-content {
	line-height: 26px;
}
.mes-block {
	display: grid;
	grid-template-columns: 25px 1fr;
	column-gap: 10px;
}
.btn-close-popup {
	position: absolute;
	z-index: 99;
	width: 54px;
	height: 54px;
	top: -2px;
	right: 3px;
	background-color: transparent;
	border: none;
	cursor: pointer;
}
.btn-close-popup:after,
.btn-close-popup:before {
	content: "";
	width: 22px;
	height: 2px;
	border-radius: 0;
	background-color: #303841;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}
.btn-close-popup:after {
	transform: translate(-50%, -50%) rotate(45deg);
}
.btn-close-popup:hover:after,
.btn-close-popup:hover:before {
	background-color: #E01C1C;
}
.btn_close_popup:hover:before {
	background-color: #E01C1C;
}
.timerset_for_login {
	color: #303841;
	font-size: 14px;
	line-height: normal;
}
.timerset_for_login > div {
	margin-bottom: 15px;
}
.popup-window p {
	font-size: clamp(15px, 2vw, 17px);
	line-height: 22px;
	color: var(--otp-text-color);
	margin-bottom: 5px;
}
#otpbox .input-group .send_otp_btn {
	height: clamp(40px, 5.5556vw, 45px);
	width: 95px;
	border-radius: 2px;
	margin: 0 0 0 -2px;
	font-family: var(--otp-rubik-medium);
	font-size: 15px;
	color: var(--otp-white);
	cursor: pointer;
	display: block;
	z-index: 1;
	position: relative;
}
#otpbox .input-group .otp_btn-s {
	background: var(--otp-primary-color);
	border: 2px solid var(--otp-primary-color);
}
#otpbox .input-group .otp_btn-d {
	background: var(--otp-danger-color);
	border: 2px solid var(--otp-danger-color);
}
#otpbox .input-group .otp_btn-s:hover {
	background: var(--otp-white);
	color: var(--otp-primary-color);
}
#otpbox .input-group .send_otp_btn-s:hover:after {
	border-color:var(--otp-primary-color);
}
#otpbox .input-group .otp_btn-d:hover {
	background: var(--otp-white);
	color: var(--otp-danger-color);
}
#otpbox .input-group .send_otp_btn-d:hover:after {
	border-color: var(--otp-danger-color)
}
.verifyacc {
	font-size: 12px;
	margin-bottom: 15px;
}
.ver-simple {
	font-size: 14px;
	margin-bottom: 15px;
	background-color: #f2dede;
	border-radius: 4px;
	padding: 8px 14px 8px 14px;
}
.disable-hover,
.disable-hover:hover,
.disable-hover:active,
.disable-hover * {
	pointer-events: none !important;
}
.text-center {
	text-align: center;
}
.otp-input .fa {
	font-size: 1em !important;
	transform: rotate(0deg) scale(1.003) translate(0.01%, -0.02%);
	line-height: 1em;
}
.otp-input .fa.fa-spin {
	animation-name: fixed-spin !important;
}
@keyframes fixed-spin {
	100% {
		transform: rotate(360deg) scale(1.003) translate(0.01%, -0.01%);
	}
}
.no-overflow {
	overflow: hidden;
}
.onetime {
	border: none;
	background: repeating-linear-gradient(90deg, #303841 0, #303841 1ch, transparent 0, transparent 1.5ch) 0 100%/100% 1px no-repeat;
	font: 4ch consolas, monospace;
	letter-spacing: .45ch;
	color: var(--otp-primary-color);
	-webkit-appearance: none;
	margin: 0;
	padding: 0;
}
.onetime:focus {
	outline: none;
	color: var(--otp-primary-color);
}
.btn_resend {
	border: none;
	background: none;
	color: var(--otp-primary-color);
	display: inline-block;
	font-size: 16px;
}
.btn_resend strong {
	border-bottom: 1px solid var(--otp-primary-color);
}
.btn_resend strong:hover {
	border-bottom: 1px solid transparent;
}
#popup-otp .popup-form .form {
	display: grid;
	grid-auto-rows: -webkit-min-content;
	grid-auto-rows: min-content;
	grid-gap: 20px;
	margin: 0;
}
#popup-otp .popup-form .form .group-telephoneotp .edit-field {
	right: 14px;
	position: absolute;
	top: clamp(12px, 1.5625vw, 15px);
	border: 0;
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-left: 22px;
	cursor: pointer;
	--c-pen: var(--otp-primary-color);
	--c-pen-hover: none;
}
#popup-otp .popup-form .form .group-telephoneotp .edit-field:hover {
	--c-pen-hover: var(--otp-primary-color);
}
#popup-otp .popup-form .otp-input {
	display: grid;
	grid-row-gap: 0;
	align-self: center;
	justify-self: center;
	place-self: center;
}
#popup-otp .popup-form .otp-input .otp-input_message {

}
.otp-input_field {
	display: grid;
	grid-auto-flow: column;
	grid-column-gap: 16px;
	justify-content: center;
	border: none;
}
.otp-info {
	border-radius: 4px;
	background: #303841;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.10);
	color: #fff;
	padding: 15px;
}
.otp-input_message {
	color: #929292;
	font-size: 12px;
	line-height: 14px;
}
.otp-input_message.is-error {
	color: #E01C1C;
}
.otp-input .otp-input_message:not(.is-error) {
	display: none;
}
.otp-input .otp-input_message {
	display: flex;
	gap: 10px;
	margin-top: 5px;
}
.otp-input .otp-input_message::before {
	display: block;
	content: "";
	min-width: 15px;
	width: 15px;
	height: 15px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 15 15' fill='none'><path d='M9.99982 12.1874V10.6249C9.99982 10.5338 9.97047 10.4588 9.91177 10.4001C9.85307 10.3414 9.77815 10.3121 9.687 10.3121H8.74963V5.31191C8.74963 5.22076 8.72029 5.14584 8.66159 5.08714C8.60289 5.02844 8.52796 4.99909 8.43682 4.99909H5.31191C5.22076 4.99909 5.14584 5.02844 5.08714 5.08714C5.02844 5.14584 4.99909 5.22076 4.99909 5.31191V6.87436C4.99909 6.96551 5.02844 7.04043 5.08714 7.09913C5.14584 7.15783 5.22076 7.18718 5.31191 7.18718H6.24927V10.3121H5.31191C5.22076 10.3121 5.14584 10.3414 5.08714 10.4001C5.02844 10.4588 4.99909 10.5338 4.99909 10.6249V12.1874C4.99909 12.2785 5.02844 12.3534 5.08714 12.4121C5.14584 12.4708 5.22076 12.5002 5.31191 12.5002H9.687C9.77815 12.5002 9.85307 12.4708 9.91177 12.4121C9.97047 12.3534 9.99982 12.2785 9.99982 12.1874ZM8.74963 3.43718V1.87473C8.74963 1.78358 8.72029 1.70866 8.66159 1.64996C8.60289 1.59126 8.52796 1.56191 8.43682 1.56191H6.56154C6.47039 1.56191 6.39547 1.59126 6.33677 1.64996C6.27807 1.70866 6.24872 1.78358 6.24872 1.87473V3.43718C6.24872 3.52833 6.27807 3.60325 6.33677 3.66195C6.39547 3.72065 6.47039 3.75 6.56154 3.75H8.43682C8.52796 3.75 8.60289 3.72065 8.66159 3.66195C8.72029 3.60325 8.74963 3.52833 8.74963 3.43718ZM15 7.5C15 8.86065 14.6648 10.1156 13.9943 11.2648C13.3238 12.414 12.414 13.3238 11.2648 13.9943C10.1156 14.6648 8.86065 15 7.5 15C6.13935 15 4.88442 14.6648 3.73523 13.9943C2.58604 13.3238 1.67621 12.414 1.00572 11.2648C0.335241 10.1156 0 8.86065 0 7.5C0 6.13935 0.335241 4.88442 1.00572 3.73523C1.67621 2.58604 2.58604 1.67621 3.73523 1.00572C4.88442 0.335241 6.13935 0 7.5 0C8.86065 0 10.1156 0.335241 11.2648 1.00572C12.414 1.67621 13.3238 2.58604 13.9943 3.73523C14.6648 4.88442 15 6.13935 15 7.5Z' fill='%23E01C1C'/></svg>") no-repeat center;
	background-size: contain;
	pointer-events: none;
	position: relative;
	top: -1px;
}
progress {
	border-radius: 2px;
	width: 50%;
	height: 15px;
	border: 1px solid #303841;
}
progress::-webkit-progress-bar {
	background-color: #F3F3F3;
	border-radius: 2px;
}
progress::-webkit-progress-value {
	background-color: var(--otp-primary-color);
	background-image: linear-gradient(var(--otp-primary-color), #303841);
	border-radius: 2px;
}
progress::-moz-progress-bar {
	background-color: var(--otp-primary-color);
	background-image: linear-gradient(var(--otp-primary-color), #303841);
	border-radius: 2px;
}
@supports (-webkit-text-size-adjust:none) and (not (-ms-accelerator:true)) {
	#otpbox .iti__arrow { border: none; }
}
.margintop20 {
	margin-top: 20px;
}
@media screen and (max-width: 600px) {
	#otpbox button i {
		font-size: 1rem;
	}
}
.otpboxedit .input-group,
.otpboxedit .input-group .iti {
	display: flex;
	width: 100%;
	position: relative;
}
.otpboxedit .input-group .form-control,
.otpboxedit .input-group .iti .form-control {
	flex-grow: 1;
	min-width: 0;
	padding-right: 50px;
}
.otpboxedit .input-group-btn {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	display: none;
	width: auto !important;
	align-items: center;
	justify-content: center;
	z-index: 3;
}
.otpboxedit .input-group-btn.show {
	display: flex;
}