/*
Theme Name: Shengen
*/
@media (max-width: 768px) {
    .iti__arrow {
        border: none;
    }
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent !important;
}

.iti__country-list::-webkit-scrollbar-track {
    border: 1px solid rgba(244, 244, 251, 0.9);
    padding: 2px 0;
    background-color: #fff;
}

.iti__country-list::-webkit-scrollbar {
    width: 10px;
}

.iti__country-list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    /* box-shadow: inset 0 0 6px rgba(0,0,0,.3); */
    background-color: #313131;
    border: 1px solid rgba(244, 244, 251, 0.9);
}

.iti__country-list {
    border: 0 !important;
    border-radius: 15px;
    margin-top: 10px !important;
    min-height: 215px;
    max-width: 345px;
    overflow: hidden;
    box-shadow: 0 15px 21px 0 rgba(53, 42, 154, 0.1);
}

.iti__country {
    padding: 5px 20px !important;
}

.checkbox-line {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 32px;
    position: relative;
    padding: 0px 0px;
    font-size: 16px;
    font-weight: 500;
}

.checkbox-line input {
    position: absolute !important;
    z-index: -1 !important;
    opacity: 0 !important;
}

.checkbox + label {
    display: flex;
    flex-direction: row;
    align-items: center;
    user-select: none;
    padding-top: 1px;
    width: 100%;
    cursor: pointer;
}

.checkbox + label::before {
    content: '';
    transition: 0.2s;
    display: flex;
    width: 22px;
    height: 22px;
    /* border-radius: 5px; */
    margin-right: 15px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    background-color: #fff;
    /* border-radius: 3px; */
    /* box-shadow: 0 15px 21px 0 rgba(53, 42, 154, 0.1); */
}

.checkbox:not(:disabled):not(:checked) + label:hover::before {
    border-color: rgb(123, 97, 182, .5);
}

.checkbox:checked + label::before {
    border-color: #887A55;
    background-color: #887A55;
    background-image: url('assets/ico-check.svg');
    background-size: auto;
    background-position-x: 60%;
}



.checkbox:disabled + label::before {
    background-color: #e9ecef;
}


/*form loader*/
.form-loading {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #F4F3F1;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    font-weight: 500;
    z-index: 999;
    border-radius: 50px;
}

.loader-text {
    display: flex;
    margin-top: 20px;
}

.loader-wrapper {
    display: flex;
}

.form-loading.--show {
    display: flex;
}

.loader {
    width: 48px;
    height: 48px;
    border: 10px solid #313131;
    border-bottom-color: #59523E;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.footer__bg,.footer__bg-mob{
	    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
	z-index:-1;
}
.footer__bg-mob{
	display:none;
}
@media (max-width: 768px) {
   .footer__bg-mob{
		display:block;
	}
	.footer__bg{
		display:none;
	}
}