@charset "UTF-8";
:root {
	--otp-rubik-medium: Rubik-Medium;
	--otp-rubik-light: Rubik-Light;
	--otp-primary-color: #53a545;
	--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: 23px;
}
.slerror {
	color: var(--otp-error-color) !important;
}
.slsuccess {
	color: var(--otp-primary-color) !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: clamp(40px, 5.5556vw, 45px);
	padding: 0 24px;
	background: 0 0;
	box-sizing: border-box;
	border: 1px solid #c4c4c4;
	border-radius: 2px;
	font-family: var(--otp-rubik-light);
	font-size: clamp(16px, 2.6316vw, 18px);
	transition: all var(--otp-tr);
	-webkit-appearance: none;
}
@media (max-width: 767px) {
	.form input[type="tel"] {
		padding: 0 15px;
	}
}
.form input[type="tel"]::placeholder, {
	color: var(--otp-black);
}
.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);
	width: 90%;
	max-width: 520px;
	height: -moz-max-content;
	height: -webkit-max-content;
	height: max-content;
	overflow: auto;
	margin: auto;
	position: fixed;
	inset: 0;
	max-height: 100%;
	-webkit-overflow-scrolling: touch;
}
.popup-window .inner {
	overflow-y: auto;
	padding: 35px 25px;
}
.popup-window .inner .popup-title {
	font-family: var(--otp-rubik-medium);
	font-weight: 700;
	font-size: 20px;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 25px;
}
.popup-window .inner .popup-text {
	font-family: var(--otp-rubik-light);
	font-size: 16px;
	line-height: 135%;
	text-align: center;
	margin-bottom: 25px;
}
.btn-close-popup {
	position: absolute;
	z-index: 99;
	width: 54px;
	height: 54px;
	top: 0;
	right: 0;
	background-color: transparent;
	border: none;
	cursor: pointer;
}
.btn-close-popup:after,
.btn-close-popup:before {
	content: "";
	width: 22px;
	height: 2px;
	border-radius: 2px;
	background-color: #d92f04;
	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: #1b1f21;
}
.btn_close_popup:hover:before {
	background-color: #1207038;
}
.popup-window p {
	font-size: clamp(15px, 2vw, 17px);
	line-height: 22px;
	color: var(--otp-text-color);
	margin-bottom: 5px;
}
@media (min-width: 768px) {
	.popup-window {
		border-radius: 18px;
	}
}
@media (max-width: 767px) {
	.popup-window {
		width: 100%;
		height: 100%;
	}
	.popup-window .inner {
		max-height: 100%;
	}
}
#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)
}
@media(max-width:767px) {
	#otpbox .input-group .send_otp_btn:after{
		margin-left: -3px
	}
}
.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, dimgrey 0, dimgrey 1ch, transparent 0, transparent 1.5ch) 0 100%/100% 2px 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 dashed var(--otp-primary-color);
}
.btn_resend strong:hover {
	border-bottom: 1px dashed var(--otp-white);
}
#popup-otp .popup-form .form {
	display: grid;
	grid-auto-rows: -webkit-min-content;
	grid-auto-rows: min-content;
	grid-gap: 24px;
}
#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: 4px;
	letter-spacing: .2px;
	align-self: center;
	justify-self: center;
	place-self: center;
	margin-top: -30px;
}
.otp-input_field {
	display: grid;
	grid-auto-flow: column;
	grid-column-gap: 16px;
	justify-content: center;
	border: none;
}
.otp-info {
	color: #31708f;
	background-color: #d9edf7;
	border-color: #bce8f1;
	padding: 8px 14px 8px 14px;
	border: 1px solid transparent;
	border-radius: 4px;
}
.otp-input_message {
	color: #929292;
	font-size: 12px;
	line-height: 14px;
	letter-spacing: .2px;
}
.otp-input_message.is-error {
	color: #e00027;
}
progress {
	border-radius: 3px;
	width: 50%;
	height: 12px;
	border: 1px solid #e8c00e;
}
progress::-webkit-progress-bar {
	background-color: beige;
	border-radius: 3px;
}
progress::-webkit-progress-value {
	background-color: var(--otp-primary-color);
	background-image: linear-gradient(var(--otp-primary-color), #2cbc24);
	border-radius: 3px;
}
progress::-moz-progress-bar {
	background-color: var(--otp-primary-color);
	background-image: linear-gradient(var(--otp-primary-color), #2cbc24);
	border-radius: 3px;
}
@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;
	}
}