
* {
	margin: 0; 
	padding: 0;
	box-sizing: border-box;
}

.app__fixed{
    overflow:hidden !important;
}

.app__modal{
    opacity:0;
    transition: 1s;
    z-index: -1;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #222222d6;
    background-repeat: no-repeat;
    background-size: cover;
}
.app__modal.show {
    opacity: 1;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.main-wrapper:has(.app__modal.show) {
    position: fixed;
}


.app--steps-forms{
    background: #F7F6FE;
}

.app__lead fieldset {
    height: 500px !important;
    overflow: auto;
}

.app__lead {
	width: 100%;
    max-width: 584px;
	margin: 0px auto;
	border-radius: 15px;
	overflow: hidden;
	direction: rtl;
}

@media(max-width: 768px){
    .app__lead {
        width: 95%;
    }
    #progressbar a::before{
        width: 90%!important;
    }
    
    #app__form__fieldsets .form-checkbox {
    	max-width: inherit !important;
    	width: 100%;
    }
}

.app__modal {
    width: 100%;
    padding: 0;
}

.app__lead__header {
    background-color: #685BC7;
	display: flex;
    align-items: center;
    justify-content: space-between;
	padding: 25px 50px;
	box-sizing: border-box;
}

.app__form--lead {
    background-color: #E9EDF4;
}

.app__lead__logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app__lead__close{
	text-decoration: none;
	color: white;
    background: none;
    border: none;
	font-size: 18px;
    cursor: pointer;
}

.app__lead__logo img {
    width: 150px;
    height: 50px;
}


#app__form__fieldsets {
	width: 100%;
	min-height: 450px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	display: flex;
    align-items: center;
    justify-content: center;
}
#app__form__fieldsets fieldset {
	border: 0 none;
	border-radius: 4px;
	padding: 30px 50px;
	box-sizing: border-box;
	width: 100%;
	position: relative;
}

#app__form__fieldsets .hidden {
	display: none;
}

#app__form__fieldsets input, #app__form__fieldsets textarea {
	padding: 15px;
	border-radius: 3px;
	border: none;
	width: 100%;
	box-sizing: border-box;
	color: #2C3E50;
    font-size: 18px !important;
	height: 100%;
    font: 18px/165% 'Heebo', sans-serif;
}

#app__form__fieldsets .action-button {
	width: 100px;
	background: #27AE60;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px;
	margin: 10px 5px;
  text-decoration: none;
  font-size: 14px;
}
#app__form__fieldsets .action-button:hover, 
#app__form__fieldsets .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}

#progressbar {
	overflow: hidden;
	counter-reset: step;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 300px;
}
#progressbar button , #progressbar a{
	outline: none;
	text-shadow: none;
	border: none;
}

#progressbar button:focus , #progressbar a:focus{
	outline: none;
	box-shadow: none;
	border: none;
}

#progressbar a {
	list-style-type: none;
	color: white;
	text-transform: uppercase;
	font-size: 0px;
	width: 60px;
	margin-left: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	text-decoration: none;
    pointer-events: none;
}

#progressbar a.active , #progressbar a.current {
    pointer-events: unset !important;
}

#progressbar a::before {
	content:'';
	width: 60px;
	height: 17px;
	display: block;
	font-size: 0px;
	color: #333;
	background-color: #ffffff;
	border-radius: 0px;
}

#progressbar a::after {
	content: '';
	width: 100%;
	height: 10px;
	background-color: #cbd3d9;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; 
}
#progressbar a:first-child::after {
	content: none; 
}

#progressbar .active::before,  #progressbar .active::after{
	background-color: #8B84D7;
	color: white;
}

#progressbar .current::before ,#progressbar .current::after {
	background-color: #685abe;
	color: white;
	height: 16px;
}

.progressbar__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
	height: 140px;
    padding: 20px 50px;
    box-sizing: border-box;

}

.progressbar__wrapper button {
    border: none;
    background-color: #685BC7;
    color: #ffffff;
	width: 40px;
	min-width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 18px;
	cursor: pointer;
}

.btn__icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn__icon svg {
    font-size: 18px;
    height: 18px;
}

#app__button--submit {
    background-color: #8B84D7;
	color: white;
    height: 47px;
	min-width: 40px;
    border-radius: 5px;
    padding: 0px;
	border: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.app__form--lead  .form-control-wrap {
    position: relative;
	margin-bottom: 15px;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
}

.app__form--lead .form-checkbox__control, 
.app__form--lead .form-radio__control {
	opacity: 0;    
	position: absolute;
    width: 100%;
    height: 100%;
	z-index: 10;
}
.app__form--lead .form-checkbox__checkmark{
	border-radius: 3px;
}
.app__form--lead .form-checkbox__checkmark, 
.app__form--lead .form-radio__checkmark {
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #685BC7;
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    font-size: 14px;
	width: 25px;
    height: 25px;
    justify-content: center;
    position: relative;
    transition-duration: .25ms;
    transition-property: background,border;
    transition-timing-function: cubic-bezier(.4,0,.23,1);
}

.app__form--lead .form-radio__checkmark {
	border-radius: 50%;
}

.app__form--lead .form-radio__control:checked ~ .form-radio__checkmark {
	background-color: #685BC7;
}
.app__form--lead .form-radio__control:checked ~ .form-radio__checkmark:before {
    animation: animate-radio 125ms cubic-bezier(.4,0,.23,1) .25s forwards;
    background: white;
    border: none;
    border-radius: 50%;
    content: "";
    left: 50%;
    position: absolute;
    top: 50%;
    transform-origin: 0 100%;
    width: 10px;
    height: 10px;
	transform: translate(-50%, -50%);
}

.app__form--lead .form-radio__control:checked ~ .form-radio__checkmark:before {
	content: "";
    animation: animate-radio 125ms cubic-bezier(.4,0,.23,1) .25s forwards;
    background: white;
    border: none;
    border-radius: 50%;
    position: absolute;
	left: 50%;
    top: 50%;
	transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
}

.app__form--lead .form-checkbox__control:checked ~ .form-checkbox__checkmark:before {
	content: "✓";
	font-family: system-ui;
    animation: animate-checkbox 125ms cubic-bezier(.4,0,.23,1) .25s forwards;
    position: absolute;
    left: 50%;
    top: 50%;
	transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
	font-size: 14px;
	line-height: 20px;
	color: white;
}



.app__form--lead  .form-checkbox__control:checked ~ .form-checkbox__checkmark {
    background-color: #685BC7;
}

.app__form--lead input[type=radio]:checked::before{
 	display: none!important;
}
.app__form--lead input[type=checkbox]:checked::before{
	display: none!important;
}

.app__form--lead .form-radio{
	margin-bottom: 15px;
}

.app__form--lead .form-checkbox {
    margin-bottom: 15px;
}

.app__form--lead  .fieldset-title {
    margin-bottom: 30px;
    display: flex;
	width: 100%;
}

.app__form--lead .form-checkbox__label, .form-radio__label {
    font-size: 18px;
    text-align: right;
}

.app__form--lead .form-checkbox, .form-radio {
    align-items: center;
    color: #585858;
    -moz-column-gap: 1em;
    column-gap: 1em;
    cursor: pointer;
    display: flex;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.app__form--lead  fieldset{
    perspective: 1000px; 
    transition: 1.2s ease-in-out;
}

.app__form--lead  fieldset.hidden{
	opacity: 0;
}

.app__form--lead  .show {
	display: block;
	opacity: 1 !important;
	min-height: 540px;
	height: 100%;
    transform: rotateY(0deg);
}

.app__form--lead  .animated {
    transform: rotateY(180deg);
    opacity: 0 !important;
}

.disabled {
    opacity: 0.3;
    pointer-events: none;
}

.app__form--lead .form-control-wrap{
    transform-style: preserve-3d;
    display: flex;
}


.app__form--lead .terms-of-use {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
	background-color: #685abe;
	color: white;
}

.app__form--lead .terms-of-use__content a {
    text-decoration: none;
	color: white;
}

.app__form--lead .terms-of-use__content .form-checkbox__checkmark {
    border-color: #ffffff;
    width: 20px;
    height: 20px;
}

.app__form--lead .terms-of-use__content .form-checkbox__control:checked ~ .form-checkbox__checkmark {
    background-color: #ffffff;
}
.app__form--lead .terms-of-use__content .form-checkbox__control:checked ~ .form-checkbox__checkmark::before {
   color: #685abe;
}


.app__form--lead .terms-of-use__content .form-checkbox {
    margin-bottom: 0px;
}

.app__form--lead .fieldset-title * {
    color: black;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 28px;
}

.app__form--lead .checked {
    background-color: #BCEBE8;
    transition: 1s;
}

.app__form--lead .form-item {
    display: flex;
    margin-bottom: 10px;
	width: 100%;
	min-height: 37px;
	position: relative;
}
#app__form__fieldsets .terms-of-use{
    position: relative;
}

#app__form__fieldsets .form-checkbox {
    max-width: 228px;
	background-color: #ffffff;
	padding: 13.5px;
	box-sizing: border-box;
	border-radius: 5px;
}

#app__form__fieldsets .form-radio{
	background-color: #ffffff;
	padding: 13.5px;
	box-sizing: border-box;
	border-radius: 5px;
}

#app__form__fieldsets .terms-of-use {
    max-width: 100% !important;
	background: none !important;
    width: 100%;
    padding: 20px 0;
    justify-content: flex-start;
}
#app__form__fieldsets .terms-of-use a {
    text-decoration: none;
    color: black;
}

.terms-of-use .form-checkbox__checkmark{
	border: 1px solid black !important;
	background: none !important;
}

.terms-of-use .form-checkbox__control:checked ~ .form-checkbox__checkmark:before{
	background-color: #685abe!important;
	width: 24px;
	height: 24px;
	line-height: 24px;
	border-color: #685abe!important;
	border-radius: 3px;
}

#app__button--submit{
	width: 100%;
	padding: 0 15px;
	transition: 1s;
}

#app__button--submit:hover {
    background-color: #685bc7;
    transition: 1s;
}

#app__form__fieldsets input:focus {
    outline: none;
    box-shadow: none;
}

#app__form__fieldsets fieldset:last-child {
 background: none !important;
}

.next.hidden {
    opacity: 0.3;
    pointer-events: none;
}

.prev.hidden {
    opacity: 0.3;
    pointer-events: none;
}

.app__form--lead .form-radio__control:checked ~ span{
	font-weight: 700;
}
.app__form--lead .form-checkbox__control:checked ~ span{
	font-weight: 700;
}

.app__form--lead em.error {
    display: none !important;
}

.app__form--lead .form-control.error {
    box-shadow: 0px 0px 10px 0px #ff525261 !important;
    color: #FF5252;
}

.app__form--lead .form-control.error::placeholder{
    color: #FF5252;
}

.app__form--lead span.error{
	color: #FF5252;
	margin-left: 10px;
	display: none;
}
.app__form--lead .form-checkbox__control.error ~ .form-checkbox__label  a .error{
	display: inline-block !important;
}

.terms-of-use  .form-checkbox__control {
    width: 100% !important;
    max-width: 100%!important;
	z-index: 10;
	cursor: pointer;
}

.app__button-submit__wrapper{
   cursor: not-allowed;
   width: 100%;
}

.app__button--submit{
   pointer-events: none;
}


.app__button--checked{
    background-color: #3CD2B7 !important;
    color: black !important;
   	cursor: pointer !important;
    pointer-events: unset !important ;
}

.app__button--checked + .app__button-submit__wrapper{
    cursor: pointer !important;
}

.app__button--checked svg path {
    fill: black;
}

#app__form__fieldsets fieldset:last-child input{
    text-shadow: 0px 0px 1px;
    font-size: 18px;
}

#app__form__fieldsets .form-control::placeholder {
    color: #685BC7;
    text-shadow: 0px 0px 0px;
    font: 18px/165% 'Heebo', sans-serif;
}

fieldset.error {
    background-color: #ebbcca!important;
}

.app__form--lead fieldset.error .form-checkbox__checkmark, 
.app__form--lead fieldset.error .form-radio__checkmark{
    border-color: #f44336;
}

#progressbar a.error:before {
    background: #FF5252;
}

.form-input:has(.error) {
    box-shadow: 0px 0px 10px 0px #ff525280;
}

.form-control.error-item::placeholder {
    color: #FF5252 !important;
}

.app__lead__close {
    height: 50px;
    display: flex;
    align-items: center;
    width: 100px;
}

.form-input input {
    direction: ltr;
    text-align: right !important;
    justify-content: start;
    align-items: center;
}