@charset "UTF-8";
a,
button,
input {
	border-radius: 0;
}
button:focus {
	outline: 0;
}
.form {
	box-sizing: border-box;
	margin-bottom: 10px;
}
.form p {
	font-size: 17px;
	line-height: 22px;
	color: rgba(0, 0, 0, 0.5);
	margin-bottom: 24px;
}
@media (max-width: 767px) {
	.form p {
		font-size: 15px;
	}
}
.form .form-group {
	position: relative;
	margin-bottom: 23px;
}
.slerror {
	color: #fd7b7c !important;
}
.slsuccess {
	color: #53a545 !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: Rubik-Light;
	text-align: left;
	font-weight: 500;
	font-size: 14px;
	padding: 2px 15px;
	display: block;
	position: absolute;
	top: -20px;
}
.form-group.has-error .form-field+.slerror:before,
.iti.has-error .form-field+.slerror:before {
	content: "\f06a";
	font-family: 'FontAwesome';
	display: inline-block;
	margin-right: 5px;
}
.form-group.has-error .form-field+.slerror,
.iti.has-error .form-field+.slerror,
.alert-warning,
.alert-danger {
	color: #fd7b7c;
	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: #fd7b7c;
}
.form input[type="tel"] {
	width: 100%;
	height: 45px;
	padding: 0 24px;
	background: 0 0;
	box-sizing: border-box;
	border: 1px solid #c4c4c4;
	border-radius: 2px;
	font-family: Rubik-Light;
	font-size: 18px;
	transition: all 0.2s;
	-webkit-appearance: none;
}
@media (max-width: 767px) {
	.form input[type="tel"] {
		width: 100%;
		padding: 0 15px;
		height: 40px;
		font-size: 16px;
	}
}
.form input[type="tel"]:-ms-input-placeholder {
	color: #000;
}
.form input[type="tel"]::placeholder, {
	color: #000;
}
.form input[type="tel"]:focus {
	outline: 0;
	border-color: #53a545;
}
.form-group .iti--separate-dial-code .iti__selected-flag {
	background-color: rgba(0,0,0,0) !important;
	max-height: 55px !important;
	font-family: Rubik-Light;
	font-size: 18px;
	transition: all 0.2s;
}
.form-group .iti--separate-dial-code .iti__selected-flag:hover {
	background-color: rgba(0,0,0,0) !important;
}
.form-group .iti input[type="tel"] {
	padding-left: 95px !important;
}
.form-group required {
	position: absolute;
	right: 0px;
	top: 0px;
	transition: 0.2s ease all;
	-moz-transition: 0.2s ease all;
	-webkit-transition: 0.2s ease all;
	z-index: 22;
	width: 42px;
	background-color: rgba(242,222,222,0.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;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 19009;
}
.popup-window {
	max-height: 100%;
	display: none;
	background: #fff;
	width: 90%;
	max-width: 520px;
	height: max-content;
	height: -moz-max-content;
    height: -webkit-max-content;
    height: -o-max-content;
	overflow: auto;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	-webkit-overflow-scrolling:touch;
}
.popup-window .inner {
	overflow-y: auto;
	padding: 50px 25px;
}
.popup-window .inner .popup-title {
	font-family: Rubik-Medium;
	font-weight: 700;
	font-size: 20px;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 25px;
}
.popup-window .inner .popup-text {
	font-family: Rubik-Light;
	font-size: 16px;
	line-height: 135%;
	text-align: center;
	margin-bottom: 25px;
}
.btn-close-popup {
	position: absolute;
	z-index: 99;
	width: 34px;
	height: 34px;
	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: #95a0a6;
	position: absolute;
	top: 50%;
	margin-top: -1px;
	left: 50%;
	margin-left: -11px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.btn-close-popup:after {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.btn-close-popup:hover:after,
.btn-close-popup:hover:before {
	background-color: #1b1f21;
}
.popup-window p {
	font-size: 17px;
	line-height: 22px;
	color: rgba(0, 0, 0, 0.5);
	margin-bottom: 5px;
}
@media (max-width: 767px) {
	.popup-window {
		width: 100%;
		height: 100%;
	}
	.popup-window .inner {
		max-height: 100%;
	}
	.popup-window p {
		font-size: 15px;
	}
}
#otpbox .input-group .send_otp_btn {
	height:45px;
	border-radius:2px;
	margin:0 0 0 -2px;
	font-family: Rubik-Medium;
	font-size:15px;
	color:#fff;
	cursor: pointer;
	display: block;
	z-index: 1;
	position: relative;
}
#otpbox .input-group .otp_btn-s {
	background: #53a545;
	border: 2px solid #53a545;
}
#otpbox .input-group .otp_btn-d {
	background: #ca3838;
	border: 2px solid #ca3838;
}
@media(max-width:767px){
	#otpbox .input-group .send_otp_btn {
		height:40px;
	}
}
#otpbox .input-group .otp_btn-s:hover {
	background: #fff;
	color: #53a545;
}
#otpbox .input-group .send_otp_btn-s:hover:after {
	border-color:#53a545
}
#otpbox .input-group .otp_btn-d:hover {
	background: #fff;
	color: #ca3838;
}
#otpbox .input-group .send_otp_btn-d:hover:after {
	border-color:#ca3838
}
@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 * {
	/* display: inline-block; */
	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: #53a545;
	-webkit-appearance: none;
	margin: 0;
	padding: 0;
}
.onetime:focus {
	outline: none;
	color: #53a545;
}
.btn_resend {
	border: none;
	background: none;
	color: #53a545;
	display: inline-block;
	font-size: 16px;
}
.btn_resend strong {
	border-bottom: 1px dashed #53a545;
}
.btn_resend strong:hover {
	border-bottom: 1px dashed #fff;
}
#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: 15px;
	border: 0;
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-left: 22px;
	cursor: pointer;
	--c-pen: #53a545;
	--c-pen-hover: none;
}
#popup-otp .popup-form .form .group-telephoneotp .edit-field:hover {
	--c-pen-hover: #53a545;
}
@media (max-width: 767px) {
	#popup-otp .popup-form .form .group-telephoneotp .edit-field {
		top: 12px;
	}
}
#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;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	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: #53a545;
	background-image: linear-gradient(#53a545, #2cbc24);
	border-radius: 3px;
}
progress::-moz-progress-bar {
	background-color: #53a545;
	background-image: linear-gradient(#53a545, #2cbc24);
	border-radius: 3px;
}
@supports (-webkit-text-size-adjust:none) and (not (-ms-accelerator:true)) {
	#otpbox .iti__arrow { border: none; }
}