@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html,
.content {
    background: #F5FFF3;
    font-family: "Poppins", sans-serif;
}

.input__box input,
.input__box textarea {
    background: #fff !important;
}

.yes,
.no {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.yes p,
.no p {
    margin: 0;
    padding: 0;
    padding-left: 10px;
}

.yes input,
.no input {
    width: auto !important;
}

/* Hide the default radio button */
.yes input,
.no input[type="radio"] {
    opacity: 0;
    position: absolute;
    z-index: 9;
}

/* Style the custom radio button */
.radio {
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #E0E0E0;
    position: relative;
    cursor: pointer;
    background-color: #fff;

}

/* Style the inner dot of the custom radio button */
.radio::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background-color: #DB0E1E;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s;
    /* border: 1px solid  #DB0E1E; */
}

/* When the radio input is checked, change the border color of the radio button */
.radio-input:checked+.radio {
    border: 1px solid #DB0E1E;
}

/* Show the inner dot when the radio button is checked */
input[type="radio"]:checked+.radio::after {
    transform: translate(-50%, -50%) scale(1);
}

.content {
    padding: 15px 0;
    /* background: #F8FAFC !important; */
    /* background: linear-gradient(to bottom, rgb(23 128 148 / 58%) 0%, rgba(255, 255, 255, 0) 100%) no-repeat, #F8FAFC; */
    background-size: 100% 90px;
    background-position: top;


}

.submit-btn input {
    /* background: #3D81F5 !important; */
    /* background: linear-gradient(90deg, #4ED229 0%, #3D81F5 100%); */
    background: linear-gradient(200deg, #33A517 -7.37%, #076BD8 104.07%) !important;
    border-radius: 30px !important;
}

.submit-btn {
    margin: 20px 0 !important;
}

#submitForm {
    width: 100%;
}

.user__details .input__box .details {
    color: #7A849C !important;
    font-weight: 400 !important;
}

.user__details .input__box input,
.select>span {
    border: 1px solid #E2E4E9 !important;

}

.user__details .input__box input::placeholder,
.select>span::placeholder {
    color: #111 !important;
    font-weight: 400 !important;
}

/* .main-title {
        position: relative;
    } */

.main-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    display: none;
}

.main-title h5 {
    margin: 0;
    font-weight: 600;
}

.main-title a {
    background: #0000001f;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}


.select-wrapper {
    /*! position:relative; */
    width: 100%;
}





.section-services .custom-select {
    height: inherit;
    padding: 0 20px;
    line-height: inherit;
    font-size: 14px;
    font-weight: bold;
    border-radius: 27px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #000;
}

.select {
    --max-scroll: 8;
    --text: #191919;
    --border: #687898;
    --borderActive: #fff;
    --background: #fff;
    --arrow: #6C7486;
    --arrowActive: #E4ECFA;
    --listText: #191919;
    --listBackground: #F5F9FF;
    --listActive: #E4ECFA;
    --listTextActive: #6C7486;
    --listBorder: none;
    --textFilled: #191919;
    width: 100%;
    position: relative;
}

.select select {
    display: none;
}

.select>span {
    cursor: pointer;
    /*! padding: 9px 16px; */
    border-radius: 10px;
    display: block;
    position: relative;
    /*! color: var(--text); */
    /*! border: 5px solid var(--border); */
    background: #fff;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    border: 1px solid #dddddd;
    padding: 12px;
}

.select>span:before,
.select>span:after {
    content: '';
    display: block;
    position: absolute;
    width: 8px;
    height: 2px;
    border-radius: 1px;
    top: 50%;
    right: 15px;
    background: var(--arrow);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.select>span:before {
    margin-right: 4px;
    -webkit-transform: scale(0.96, 0.8) rotate(50deg);
    transform: scale(0.96, 0.8) rotate(50deg);
}

.select>span:after {
    -webkit-transform: scale(0.96, 0.8) rotate(-50deg);
    transform: scale(0.96, 0.8) rotate(-50deg);
}

.select ul {
    margin: 0;
    padding: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    max-height: calc(var(--max-scroll) * 40px);
    top: 40px;
    left: 0;
    z-index: 1;
    right: 0;
    background: #fff;
    border-radius: 6px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32), -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    -webkit-transform: scale(0.8) translate(0, 4px);
    transform: scale(0.8) translate(0, 4px);
    border: 1px solid var(--listBorder);
}

.select ul li {
    opacity: 0;
    -webkit-transform: translate(6px, 0);
    transform: translate(6px, 0);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.select ul li a {
    cursor: pointer;
    display: block;
    padding: 10px 16px;
    color: var(--listText);
    text-decoration: none;
    outline: none;
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.select ul li a:hover {
    color: var(--listTextActive);
}

.select ul li.active a {
    /*! color: #fff; */
    /*! background: #3D81F5; */
}

.select ul li.active a:before,
.select ul li.active a:after {
    --scale: .6;
    content: '';
    display: block;
    width: 10px;
    height: 2px;
    position: absolute;
    right: 17px;
    top: 50%;
    opacity: 0;
    background: var(--listText);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.select ul li.active a:before {
    -webkit-transform: rotate(45deg) scale(var(--scale));
    transform: rotate(45deg) scale(var(--scale));
}

.select ul li.active a:after {
    -webkit-transform: rotate(-45deg) scale(var(--scale));
    transform: rotate(-45deg) scale(var(--scale));
}

.select ul li.active a:hover:before,
.select ul li.active a:hover:after {
    --scale: .9;
    opacity: 1;
}

.select ul li:first-child a {
    border-radius: 6px 6px 0 0;
}

.select ul li:last-child a {
    border-radius: 0 0 6px 6px;
}

.select.filled>span {
    /*! color: var(--textFilled); */
}

.select.open>span {
    border-color: #ddd;
}

.select.open>span:before,
.select.open>span:after {
    background: var(--arrowActive);
}

.select.open>span:before {
    -webkit-transform: scale(0.96, 0.8) rotate(-50deg);
    transform: scale(0.96, 0.8) rotate(-50deg);
}

.select.open>span:after {
    -webkit-transform: scale(0.96, 0.8) rotate(50deg);
    transform: scale(0.96, 0.8) rotate(50deg);
}

.select.open ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1) translate(0, 12px);
    transform: scale(1) translate(0, 12px);
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32), -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    border: 1px solid #ddd;
    border-radius: 10px;

}

.select.selectDropdown.filled.open {
    /* border: 1px solid #EDEDED; */
    border-radius: 0px 5px 0 5px;
}

.select.open ul li {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.select.open ul li:nth-child(1) {
    -webkit-transition-delay: 80ms;
    transition-delay: 80ms;
}

.select.open ul li:nth-child(2) {
    -webkit-transition-delay: 160ms;
    transition-delay: 160ms;
}

.select.open ul li:nth-child(3) {
    -webkit-transition-delay: 240ms;
    transition-delay: 240ms;
}

.select.open ul li:nth-child(4) {
    -webkit-transition-delay: 320ms;
    transition-delay: 320ms;
}

.select.open ul li:nth-child(5) {
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
}

.select.open ul li:nth-child(6) {
    -webkit-transition-delay: 480ms;
    transition-delay: 480ms;
}

.select.open ul li:nth-child(7) {
    -webkit-transition-delay: 560ms;
    transition-delay: 560ms;
}

.select.open ul li:nth-child(8) {
    -webkit-transition-delay: 640ms;
    transition-delay: 640ms;
}

.select.open ul li:nth-child(9) {
    -webkit-transition-delay: 720ms;
    transition-delay: 720ms;
}

.select.open ul li:nth-child(10) {
    -webkit-transition-delay: 800ms;
    transition-delay: 800ms;
}


select.select {
    padding: 9px 16px;
    border-radius: 6px;
    line-height: 22px;
    font-size: 16px;
    font-family: inherit;
    -webkit-appearance: none;
}

.user__details .input__box select {
    background: #fff;
}

.active a {
    background: #3d81f5;
    color: #fff !important;
}

.select.selectDropdown.filled.open ul li a:hover {
    background: #3d81f5;
    color: #fff;
}



.passport-container {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}

.passport-container img {
    max-width: 150px;
    margin-right: 10px;
}

.passport-container p {
    margin: 0;
    font-size: 12px;
}

.passport-para {
    text-align: center;
    position: relative;

}

.passport-para:before {
    content: '';
    width: 70%;
    height: 1px;
    background: #0000001f;
    bottom: 0;
    position: absolute;
    left: 15%;
}

.passport-para p {
    font-weight: 600;
    color: #1D1F2C;
    padding-top: 10px;
    padding-bottom: 24px;
    font-size: 14px;
}

.iframe-container {
    margin-bottom: 20px;
    margin-top: 20px;
}

.iframe-container iframe {
    border: 0;
    height: 300px;
    top: 0;
    max-width: 100%;
    display: block;
    margin: auto;
    border-radius: 10px;
}


@media screen and (max-width: 800px) {
    .iframe-container iframe {
        height: 281px;
    }
}

@media screen and (max-width: 500px) {

    .iframe-container iframe {
        height: 189px;
    }
}


.yes-no-option {
    display: flex;
}

.yes {
    margin-right: 50px;
}

.shield-area {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}

.shield-area img {
    max-width: 30px;
    margin-right: 10px;
}

.shield-area p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

video.video-stream.html5-main-video {
    width: 100% !important;
    left: 0 !important;
}

.iti__selected-flag {
    height: 100% !important;
    border-radius: 10px 0 0px 10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px;
    right: 10px;
}

.services-details-page img {
    max-width: 250px;
}

.select2-container--default .select2-search--inline .select2-search__field {
    border: none !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    color: #fff;
}