:root
{
    --primary-color: rgb(0, 143, 156);
    --secondary-color: rgb(249, 184, 68);
    --secondary-color-2: rgb(28, 189, 116);
    --field-text-color: rgb(24,24,24);
    --text-color: rgb(88, 88,88);
    --field-color: rgb(244,244,244);
}
body
{
    font-family: 'Roboto', sans-serif;
    width: 100%;
    position: relative;
    min-height: 100vh;
    background-image: url(../images/Bg.webp);
    width: 100%;
    background-size: cover;
    padding: 15px 15px;


    
}
/* css for error in form */
.error {
    color: red;
    font-size: 12px;
    margin: 0px 26px;
    position: relative;
}
.relative_error{
    position: fixed;
    top: 74px;
    left: 26px;
}
.text-field .error-border, .input-container.error-border {
    border: solid 2px #e11818f5; /* Red border for errors */
}
.logo
{
    display: flex;
    align-items: center;
    height: auto;
}
.logo-icon
{
    display: inline-block; 
    max-width: 200px;
}
.logo-icon img
{
    /* Image always fills the container's width, and height adjusts proportionally */
    width: 100%; 
    height: auto; 
    display: block;
}
.logo-text
{
    font-size: 37px;
    font-family: 'Roboto', sans-serif;
    color: var(--field-text-color);
    font-weight: bold;
    margin-left: 3px;
}
main
{
    position: relative;
    height: 100%;
    min-height: 500px;
}

/*
.step-type {
    display: none;
}
*/

/* Footer Menu */

.footer-menu {
    float: left;
    width: 100%;
}
.footer-menu button {
    float: right;
}
.footerright{
align: right; 
}
ul.foot {
    float: right;
    margin-right: 20px;
}
.foot li {
    float: right;
    list-style: none;
}
.custom-modal .content {
    overflow-y: scroll;
    height: 600px;
}
.footer-menu .foot li a {
    color: inherit;
}
.step-type-single {
    display: flex;
}
.step-type-inner
{
    display: flex;
    margin-top: 25px;
    margin-bottom: 25px;
}
.step-type-single .circle {
    border-radius: 50%;
    background-color: rgb(155, 160, 164);
    width: 40px;
    line-height: 33px;
    margin: 0;
    margin-top: 8px;
    transition: 0.3s;
    text-align: center;
    position: relative;
    display: flex;
    align-self: center;
    justify-content: center;
    font-weight:bold;
}
.step-type-single .step-text {
    color: #000;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: normal;
    transition: 0.3s;
    font-family: 'Roboto', sans-serif;
    width: 100%;
    padding-left: 10px;
    padding-top: 17px;
}
/*
.step-type-single::after
{
    display: block;
    content: "";
    background-color: rgb(155, 160, 164);
    margin: 0px 14px;
    width: 3px;
    height: 30px;
    transition: 0.3s;
*/
}

.step-heading{
	color: var(--primary-color);
    font-size: 25px;
    margin-bottom: 30px;
    margin-top: 20px;
    font-weight: 600;
}
        
.step-type-single.no-line::after  
{
    display: none;
}
.step-type-single.active .circle {
    background-color: #00545C;
    color: #fff;
}
.step-type-single.active .step-text
{
    color: #00545C;
}
.step-type-single.active::after
{
    background-color: var(--primary-color);
}
.main-content
{
    height: auto;
    width: 88%;
    margin: 0 auto;
    position: relative;
    margin-top: 15px;

}
.content-inner
{
    background-color: rgb(255,255,255);
 
}
.step-bar
{
    position: absolute;
    left: 0;
    bottom: -40px;
    width: auto;
    width: 100%;
      
}
.step-bar-inner
{
    height: 23px;
    width: 35%;
    background-color: rgb(255,255,255);
    border-radius: 50px;
}
.step-bar-inner .step-bar-move
{
    background-color: var(--primary-color);
    width: 0%;
    border-radius: inherit;
    height: inherit;
    text-align: right;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    padding-right: 15px;
    line-height: 23px;
    transition: 0.5s;
    color: rgb(255, 255, 255); 
}
.side-area
{
    width: 100%;
    height: 100%;
}
.side-area img
{
    width: 100%;
/*
    height: -webkit-fill-available;
*/
}
.steps-icon
{
    position: absolute;
    top: 15px;
    right: 30px;
    width: auto;
    display: none;
}
.steps-icon img
{
    width: 100%;
}
.wrapper
{
    width: 75%;
    margin-left: 55px;
    height: 100%;
    display: grid;
    align-content: center;
    padding: 20px 0px;
}
.form-text .main-heading
{
    font-size: 26px;
    color: var(--field-text-color);
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}
.form-text .main-text
{
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    color: var(--text-color); 
}
.steps-inner
{
    margin-top: 30px;
}
.radio-field
{
    background-color: var(--field-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    margin-bottom: 14px;
    border: solid 2px transparent;
}
.radio-field input, .radio-select-single input
{
    -webkit-appearance: none;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: 0.3s;
}
.radio-field label, .radio-select-single label
{
    font-size: 16px;
    color: var(--field-text-color);
    font-weight: 600;
    margin-left: 8px;
    font-family: 'Roboto', sans-serif;
    width: 80%;
    padding: 20px 0px;
    cursor: pointer; 
}
.radio-field input:checked, .radio-select-single input:checked
{
    background-color: var(--secondary-color);
}

.radio-field.checked input{
	background-color: var(--secondary-color);
}

.checked
{
    border-color: var(--secondary-color);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 3px 35px 0px rgba(0, 0, 0, 0.14);
    transition: 0.3s;
}
.next-prev
{
    margin-top: 50px;
    width: 100%;
    display: flex;
    height: 65px;
    font-family: 'Roboto', sans-serif;
}
.next-prev .inner
{
    background-color: rgb(38, 38, 37);
    display: flex;
    width: 78%;
    border-radius: 50px;
    height: 100%;

}
#step1 .next-prev button
{
    width: 100% !important;

}

.next-prev button
{
    font-size: 18px;
    color: var(--field-text-color);
    font-weight: bold;
}
.next-prev .prev
{
    color: rgb(255,255,255);
    width: 35%;
    border: 0;
    background-color: transparent;
}
.next-prev .next, .next-prev .apply
{
    width: 100%;
    background-color: var(--secondary-color);
    height: 100%;
    border-radius: 50px;
    border: solid 2px transparent;
    font-family: 'Roboto', sans-serif;
}
.next-prev .skip
{
    color: var(--primary-color);
    text-decoration: underline;
    background: transparent;
    width: 22%;
    border: 0;
    text-align: right;
}
.text-field, .select-field
{
    width: 100%;
    min-height: 73px;
    border-radius: 50px;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}
 .select-country-code
{
    width: 50%;
    min-height: 73px;
    border-radius: 50px;
    display: flex;
    align-items: center;
}
.input-container {
     display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 50px;
    overflow: hidden;
    background: #f9f9f9;
    padding: 5px 10px;
    max-height: 75px;
    margin: 0;
}

.select-country-code {
    border: none;
    outline: none;
    width: 45%;
    background: transparent;
    font-size: 16px;
    font-family: Arial, sans-serif;
    margin-right: 0px;
    padding: 10px 0px;
    text-align: center;
    border-right: 1px solid #ddd;
}

.text-field {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}
.text-field-phone{
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}
.text-field-phone input{
   border: none;
    outline: none;
    width: 100%;
    padding: 17px 15px;
    font-size: 16px;
    background: transparent;
    font-family: Arial, sans-serif;
}
.text-field input {
    border: none;
    outline: none;
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    background: transparent;
    font-family: Arial, sans-serif;
}

.text-field i {
    position: absolute;
    right: 15px;
    color: #888;
    font-size: 16px;
}

.bottom-line
{
    border-bottom: solid 2px var(--field-color);
    margin-bottom: 20px;
}

.text-field input, .select-field select, select#country_code{

    background-color: var(--field-color);
    width: 100%;
    height: 100%;
    border: solid 2px transparent;
    border-radius: inherit;
    color: var(--text-color);
    padding-left: 25px;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.personal-info .text-field input{
	padding-left: 65px;
}

.text-field i, .select-field i
{
    font-size: 16px;
    color: var(--secondary-color-2);
    position: relative;
    z-index: 10;
    pointer-events: none;
    margin-left: 35px;
    transition: 0.3s;
    font-family: 'Font Awesome 5 Free';
}

.select-field select
{
    -webkit-appearance: none;
    cursor: pointer;
    padding-left: 35px;
}
.text-field.p-custom input
{
    padding-left: 35px;
}
.select-field select+span::after
{
    content: "\f0d7";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 16px;
    color: var(--secondary-color-2); 
    position: absolute;
    top: 35%;
    right: 25px;
    transition: 0.3s;
    pointer-events: none;
}
.text-field input:focus, .select-field select:focus
{
    outline: none;
    border-color: var(--secondary-color);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 3px 35px 0px rgba(0, 0, 0, 0.14);
}
.text-field input:focus+i, .select-field select:focus+i
{
    color: var(--secondary-color);
}
.select-field select:focus+span::after
{
    color: var(--secondary-color);
}
.radio-field-2
{
    display: flex;
    align-content: center;
}
.radio-field-1{
    display: flex;
    justify-content: space-between;
}
.radio-single
{
    display: flex;
    align-items: center;
}
.radio-single input
{
    -webkit-appearance: none;
    border: solid 2px rgb(201, 210, 228);
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    width: 21px;
    height: 21px;
    cursor: pointer;
    position: relative;
    transition: 0.3S;
}
.radio-single input:checked::before
{
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 9px;
    color: rgb(255, 255, 255);
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    top: 10%;
    margin: 0 auto;
    width: 13px;
    border-radius: 50%;
    height: 13px;
    background-color: var(--secondary-color-2);
}
.radio-single input:checked
{
    transition: 0.3s;
}

.radio-single label
{
    font-size: 18px;
    color: var(--field-text-color);
    font-weight: bold;
    margin-left: 6px;
}
.field-heading
{
    font-size: 20px;
    color: var(--field-text-color);  
    font-weight: bold;
}
.radio-select
{
    border-radius: 30px;
    background-color: var(--field-color);
    min-height: 100px;
    margin-top: 20px;
    overflow: hidden;
}
.radio-heading
{
    font-size: 18px;
    color: var(--field-text-color);
    font-weight: bold;
    background-color: rgb(250, 250, 250);
    min-height: 55px;
    line-height: 55px;
    padding-left: 35px;
}
.radio-select-inner
{

    padding: 25px 25px;
    display: flex;
    flex-wrap: wrap;
}
.radio-select-single
{
    display: flex;
    width: 33.3333%;
    align-items: center;
    margin-bottom: 20px;
}
.radio-select-single label
{
    font-size: 16px;
    font-weight: 500;
}  
.residence-single
{
    width: 100%;
    height: 150px;
    position: relative;
    margin-top: 20px;
    text-align: center;
    display: grid;
    align-content: center;
    justify-content: center;
}
.residence-single input
{
    -webkit-appearance: none;
    border-radius: 20px;
    border: solid 2px transparent;
    background-color: var(--field-color);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    transition: 0.3s;
}
.residence-single img , .residence-single label
{
    position: relative;
    z-index: 100;
    pointer-events: none;
}
.residence-single label
{
    font-size: 16px;
    color: var(--field-text-color);
    font-weight: bold;
    margin-top: 15px;
      
}
.residence-single input:checked
{
    border-color: var(--secondary-color);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 3px 35px 0px rgba(0, 0, 0, 0.14);

}
.profile
{
    border-radius: 20px;
    background-color: var(--field-color);
    width: 100%;
    min-height: 160px;
    height: 100%;
    position: relative;
}
.profile .profile-img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.profile label
{
    background-color: rgb(255, 255, 255);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
    text-align: center;
    display: grid;
    place-content: center;
}
.profile label img
{
    pointer-events: none;
    width: auto;
}
.profile label input[type=file]
{
    display: none;
}
::-webkit-calendar-picker-indicator
{
    display: none;
}  
#step5 .radio-field-2 .radio-single
{
    width: 50%;
}
.gender
{
    font-size: 15px;
    font-weight: bold;
    color: var(--field-text-color);
    margin-bottom: 20px;
}
.file span
{
    font-size: 15px;
    color: rgb(135, 135, 135);
}

.file .file-inner
{
    background-color: rgb(77, 77, 224);
    width: 155px;
    height: 52px;
    border-radius: 50px;
    margin-top: 5px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    margin-top: 15px;
}
.file .file-inner span
{
    font-size: 18px;
    color: rgb(255, 255, 255);
    font-weight: 500; 
}
.file .file-inner i
{
    margin-left: 8px;
}
.file label[for=file] input
{
    display: none;
}  

.thankyou-page .logo
{
    justify-content: center;
    margin-top: 60px;
}
.thankyou-page .logo .logo-icon img
{
    width: 100%;
}
.thankyou-page .logo-text
{
    font-size: 65px;
}
.thankyou-page .main-inner
{
    background-image: url(../images/thankyou-bg.png) !important;
    background-color: var(--text-color-hover);

}
.thankyou-page article
{
    text-align: center;
    margin-top: 80px;
}
.thankyou-page article h1
{
        font-size: 35px;
        font-weight: bold;
        text-transform: uppercase; 
}
.thankyou-page article h1 span
{
    display: block;
    font-size: 35px;
    font-weight: 900;
    color: var(--primary-color);
}
.thankyou-page article span
{
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 500;
}
.thankyou-page article p
{
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    color: var(--secondary--text-color);
    margin: 0 auto;
    margin-top: 45px;
    width: 39%;
}
.social-media
{
    text-align: center;
    margin: 40px auto;
    background-color: var(--text-color-hover);
    width: 30%;
    padding: 6px 10px;
}
.social-media a
{
    border: solid 1px rgb(244, 244, 244);
    border-radius: 5px;
    background-color: transparent;
    text-decoration: none;
    display: inline-block;
    color: var(--secondary--text-color);
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
}
.social-media a i
{
    margin-right: 10px;
    font-size: 20px;
}
.back-home
{
    width: 188px;
    height: 63px;
    margin: 0 auto;
}
.back-home a
{
    background-color: var(--primary-color);
    border-radius: 50px;
    color: var(--text-color-hover);
    width: 100%;
    height: 100%;
    line-height: 63px;
    display: block;
    text-decoration: none;
    text-align: center;
    font-size: 17px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    border: 0;

}

#sub img
{
    width: 60px;
}

.highlight
{
    border-top: solid 3px var(--primary-color) !important;
    border-bottom: solid 3px var(--primary-color) !important;

}

#error
{
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 20;
}

.invalid
{
  border: solid 2px #ff4444 !important;
  position: relative;
}

@media screen and (min-width: 768px) {
    .logo{
        /*display: flex;
        align-items: center;
        height: auto;*/
        /*margin-left:8.0rem;*/

        /* Container shrinks to fit the image, but never exceeds 300px wide */
        display: inline-block; 
        max-width: 200px;
    }
}

.logo img{
    width: 100% !important; 
    height: auto !important; 
    display: block !important;
}


/* Form consent */

#consent-checkbox{
    position: relative;
    height: 60%;
}

#consent-checkbox > div{
    display: inline-flex;
    align-items: baseline;
    margin-top: auto;
    position: absolute;
    bottom: -15px;
    font-size: 15px;
    font-weight: 500;
}


/* fa adjustments */

.text-field-phone .fa-phone:before{
    font-family: 'Font Awesome 5 Free';
    color: rgb(28, 189, 116);
    right: 10px;
    position: absolute;
    top: 12px;
}
.custom-dropdown {
    position: fixed;
    width: 100%;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 18px  20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

/* Customizing the Select */
.custom-dropdown select {
    width: 30%;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #6c757d;
    outline: none;
    padding: 5px;
    appearance: none;
    font-weight: 500;
    cursor: pointer;
}

/* Custom Dropdown Icon */
.custom-dropdown .dropdown-icon {
    position: absolute;
    right: 15px;
    color: #6c757d;
    font-size: 14px;
    pointer-events: none;
    transition: transform 0.3s ease-in-out;
}

/* On Open: Rotate Arrow */
.custom-dropdown select:focus + .dropdown-icon {
    transform: rotate(180deg);
}


/* Placeholder Style */
.custom-dropdown select:invalid {
    color: #aaa;
}

/* Custom Dropdown Menu Styling */
.custom-dropdown select::-ms-expand {
    display: none;
}

.custom-dropdown select option {
    background: white;
    color: #333;
    font-size: 16px;
    padding: 10px;
}


@media screen and (max-width: 769px) {
.custom-dropdown {
    position: relative;
    width: 100%;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 18px 20px;
    display: flex;
    align-items: end;
    justify-content: unset;
    font-size: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    margin: 10px 0px;
}
/* Customizing the Select */
.custom-dropdown select {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #6c757d;
    outline: none;
    padding: 5px;
    appearance: none;
    font-weight: 500;
    cursor: pointer;
}

/* Custom Dropdown Icon */
.custom-dropdown .dropdown-icon {
    position: absolute;
    right: 15px;
    color: #6c757d;
    font-size: 14px;
    pointer-events: none;
    transition: transform 0.3s ease-in-out;
}

/* On Open: Rotate Arrow */
.custom-dropdown select:focus + .dropdown-icon {
    transform: rotate(180deg);
}


/* Placeholder Style */
.custom-dropdown select:invalid {
    color: #aaa;
}

/* Custom Dropdown Menu Styling */
.custom-dropdown select::-ms-expand {
    display: none;
}
.custom-dropdown select option {
    background: white;
    color: #333;
    font-size: 16px;
    padding: 10px;
}

.custom-modal video { 
    object-fit: none !important;
    width: 100%;
}
.custom-modal.show
{width: 92%;}
div#recap {
    padding-top: 40px;
}
.custom-modal iframe {
    width: 100%;
}

    .input-container {
        margin-top: 14px;
        margin-bottom: 7px;
    }
}



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

/*CSS changes for Steps navigation 17-feb */

.main-content {
    margin-top: 0px;
}
.step-type-single .circle { 
    width: 28px;
    margin-right: 10px;
    line-height: 28px;
}
.step-type-single .step-text {
    padding-top: 6px;
}

.step-type {
    display: inline-flex;
    width: 100%;
    padding-top:15px;
}

.step-type-single{
    display:none;
    text-align: left;
    width: 100%;
    padding: 0px 10px;
}
.step-type-single::after {
	display: none;
}

.step-type-inner
{
    width:100%;
    float:left;
    display:block;
    padding: 10px;
    margin-bottom: 0px;
}

.step-text span {
    font-size: 20px;
    text-transform: capitalize;
    line-height: 1.8;

  }
  .step-type-single.active {
    border-bottom: 1px solid var(--primary-color);
    display:block;
}


}

/* Custom Modal Styles */
.custom-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000000000;
    border-radius: 8px;
}

.custom-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000000000;
}

.custom-modal.show {
    display: block;
}

.custom-modal-overlay.show {
    display: block;
}

.custom-modal-buttons {
    text-align: right;
    margin-top: 20px;
}

.custom-modal-buttons button {
    margin-left: 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.custom-modal-buttons button.confirm {
    color: white;
    width: 100%;
    background-color: var(--secondary-color);
    height: 100%;
    border-radius: 50px;
    border: solid 2px transparent;
    font-family: 'Roboto', sans-serif;

}

.custom-modal-buttons button.cancel {
/*
    background-color: #f0f0f0;
*/
	background-color: var(--secondary-color);
    color: #333;
    height: 100%;
    border-radius: 50px;
    border: solid 2px transparent;
    font-family: 'Roboto', sans-serif;
}
.custom-modal video { 
    object-fit: cover;
}

/* screen 1600 */
@media  screen and (max-width: 1600px) {
.step-text span {
    font-size: 16px;
}

}

@media  screen and (min-width: 1700px) {
.step-text span {
    font-size: 16px;
}

}

   .unmute-button:not(.container) {

       position: absolute;

       top: 50%;

       left: 50%;

       transform: translate(-50%, -50%);

       background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */

       color: white;

       padding: 10px 20px;

       border-radius: 5px;

       cursor: pointer;

       z-index: 10; /* Ensure button is on top of video player */

       font-size: 22px;

   }
.custom-modal .content h4 {
    font-size: 16px;
}
.custom-modal .content h3 {
    font-size: 16px;
}
.custom-modal .content h2 {
    font-size: 20px;
}
.custom-modal .content a {
    color: #00AEC3;
}
.close-button {
    border: none;
    display: inline-block;
    padding: 5px 25px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: inherit;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    font-size: 32px;
}

.topright {
    position: absolute;
    right: -6px;
    bottom: -9px;
}
    .youtube-player {
        width: 360px;
        height: 580px;
    }
.step-type-single .circle:hover {
    background-color: #00545C;
    color: white;
}
