body {
    font-family: "Inter", sans-serif;
}
.swiper-slide {
    height: auto !important;
}

h2, h3, h4 {
    font-family: "Rajdhani", sans-serif;
}

.multi-step-form-container {
    max-width: 100vw;
    
    /*margin: 200px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);*/
}
#multi-step-form {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
    min-height: 100vh;
    padding-right: 40px;
}

#multi-step-form .form-progress {
    display: flex;
    flex-direction: column;
    max-width: 30vw;
    width: 100%;
    background-color: #000221;
    color: #fff;
    margin-top: 0;
    padding: 40px 20px;
    justify-content: space-between;
	position:relative;
}

.left-header .dark-mode-toggle-wrap {
	position: absolute;
    right: 20px;
    top: 20px;
}

.left-header .dark-mode-toggle-wrap:not(:first-child) .dark-mode-toggle {
	border:none;
}

.form-progress > a > img {
    max-width: 230px;
}

.progress-steps {
    display: flex;
    gap: 40px;
    flex-direction: column;
}

#multi-step-form .form-progress .progress-step {
    cursor: pointer;
    display: flex;
        gap: 30px;
        align-items: center;
        position: relative;
        font-size: 14px;
        line-height: 1.2;
}
#multi-step-form .form-progress .progress-step h4 {
    margin-bottom: 5px;
    line-height: 1;
}
#multi-step-form .form-progress .progress-step .step-icon {
    background: rgba(223, 223, 225, 0.25);
    border-radius: 100%;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
#multi-step-form .form-progress .progress-step.active .step-icon {
    background: rgba(220, 170, 86, 1);
}
#multi-step-form .form-progress .progress-step.active .step-icon::before {
    background: rgba(220, 170, 86, 0.25);
}
#multi-step-form .form-progress .step-icon::before {
    content: "";
    border-radius: 100%;
    width: 60px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(223, 223, 225, 0.2);
}
#multi-step-form .form-progress .progress-step::after {
    content: "";
    left: 22px;
    top: 31px;
    /* border: 2px solid rgba(220, 170, 86, 0.5); */
    border: 1px dotted rgba(223, 223, 225, 0.2);
    width: 0px;
    height: 50px;
    position: absolute;    
}
#multi-step-form .form-progress .progress-step p {
    margin-bottom: 0;
	font-size:13px;
}
#multi-step-form .form-progress .progress-step:last-child:after {
    display: none;
}
#multi-step-form .form-progress .progress-step.active::after  {
    border: 1px solid rgba(220, 170, 86, 0.5);
}

.bond-flow-left-footer {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 400;
}


.form-slider {
    overflow: hidden;
    display: flex;
    align-items: center;
}

.form-step {
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: normal;
    cursor: pointer;
}
.radio-group input {
    -webkit-appearance: auto;
	margin:0!important;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.form-navigation button,
#greylisted button,
#need-accreditation button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background: rgba(220, 170, 86, 1);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

#greylisted button {
    margin-top: 24px;
}

.form-navigation button:hover,
#greylisted button:hover,
#need-accreditation button:hover  {
    background: rgba(220, 170, 86, .7);
}

.form-navigation button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-success {
    text-align: center;
    padding: 40px 0;
}

.form-success h2 {
    color: #4CAF50;
    margin-bottom: 15px;
}

.form-progress {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
/*
.progress-step {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ddd;
}

.progress-step.active {
    background: #0073aa;
}*/

.select2-container {
    width: 100%!important;
}
.select2-container--default .select2-selection--single {
    height: 42px;
    border: 1px solid #ddd;
}

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

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}



.tooltip {
    position: relative;
    display: inline-block;
}
.tooltip svg {
    width: 23px;
    cursor: pointer;
}
.tooltip-text {
    position: absolute;
    left: 0;
    bottom: -90px;
    width: 350px;
    z-index: -1;
    transition: all .23s ease;
    opacity: 0;
    font-size: 12px;
    font-weight: 400;
    background: #f3f3f3;
    padding: 10px;
    color: #000 !important;
}
.investment-amount .flex .tooltip-text {
    text-align: left;
    right: 0;
    left: auto !important;
}
.tooltip:hover .tooltip-text {
    z-index: 20;
    opacity: 1;
}





#agreement-preview {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    z-index: 2020;
    padding: 60px 20px;
    overflow-y: auto;
    display: none !important;
    color: #000 !important;
}


#agreement-preview.active {
    display: block !important;
}

.close-preview {
    position: fixed;
    right: 40px;
    top: 20px;
    cursor: pointer;
    transition: all .23s ease-in;
}
.agreement-container {
    max-width: 1000px;
    margin: 0 auto;
}
#agreement-preview p {
    margin-bottom: 15px;
}




.page-template-page-template-bondflow header,
.page-template-page-template-bondflow footer {
    display: none;
}





.flex.flex-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.col50 {
    width: 100%;
    max-width: calc(50% - 20px);
    margin-bottom: 0;
}





.data-utilization-notice b {
    font-family: "Rajdhani", sans-serif;
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.data-utilization-notice {
    font-size: 14px;
    line-height: 1.3;
    background: #f3f3f3;
    padding: 20px;
    margin-top: 40px;
}

.email-confirmation {
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000221;
    color: #fff;
    align-items: center;
    padding: 40px;
    z-index: 2015;
    text-align: center;
}
.email-confirmation p {
    margin-bottom: 20px;
}
.email-confirmation input,
.email-confirmation label {
    margin: 0!important;
}
.email-confirmation .wpcf7-submit {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background: rgba(220, 170, 86, 1);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 15px;
}
.wpcf7 label > span:first-child {
    left: 0;
}
.email-confirmation .wpcf7-form {
    display: flex;
    flex-direction: column;
    align-items: center;
	gap:10px;
}
.email-confirmation .wpcf7-form input {
    max-width: 84vw;
    width: 400px!important;
    border-radius: 2px!important;
}
.email-confirmation .wpcf7-submit:hover {
    background: rgba(220, 170, 86, .7);
}
.email-confirmation .sent .wpcf7-response-output {
    color: #35dcc2;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 50px;
}
#blacklisted, #greylisted, #need-accreditation {
    z-index: -1;
    transition: all .23s ease-in;
    opacity: 0;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000221;
    color: #fff;
    align-items: center;
    padding: 40px;
}
#blacklisted > div, #greylisted > div, #need-accreditation > div,
.email-confirmation > div {
    max-width: 750px;
    margin: auto;
}
#blacklisted.active, #greylisted.active, #need-accreditation.active {
    opacity: 1;
    z-index: 2020;
}
#blacklisted h4, #greylisted h4, #need-accreditation h4 {
    font-size: 27px;
}
.close-blacklisted, .close-greylisted, .close-accreditation {
    position: fixed;
    right: 15px;
    top: 10px;
    cursor: pointer;
    transition: all .23s ease-in;
}
#need-accreditation ul {
    padding-left: 20px;
    margin-bottom: 20px;
}
#need-accreditation {
    overflow-y: auto;
}



.form-group embed {
    width: 100%;
    min-height: 70vh;
}


.file-requirements {
    font-size: 12px;
}


.languages {
    z-index: 2015;
    position: fixed;
    gap: 20px;
    display: flex;
        top: 2rem;
        right: 4rem;
        list-style: none;
}
.languages img {
    width: 30px!important;
    height: auto!important;
    transition: all .23s ease-in;
}
.languages a:hover img {
    opacity: .84;
    transform: scale(1.05);
}

.left-header img {
	max-width:223px;
}


body[data-theme="dark"] .data-utilization-notice {
	    background: #000221;
}

.ppm-agreement {
	display: flex;
    align-items: flex-start;
    line-height: 1.3;
    font-weight: 400 !important;
    font-size: 16px;
    gap: 10px;
}
.ppm-agreement label {
	font-weight:400!important;
}

.agreement-container h3 {
color:#000!important;
}
.show-preview {
	cursor:pointer;
	    min-height: 35px;
    display: inline-flex;
    align-items: center;
    font-size: 15px!important;
    font-weight: 400!important;
    margin-top: 5px;
}

.swiper-slide h2 {
	margin-bottom:20px;
}





@media only screen and (max-width:768px) {
    body .col50 {
        max-width: 100%!important;
    }
}

@media only screen and (max-width:767px) {
    body #multi-step-form {
        gap: 20px!important;
        padding-right: 20px!important;
    }
    #multi-step-form .form-slider {
        padding-top: 80px;
    }
    .progress-step > div {
        display: none!important;
    }

    #multi-step-form .form-progress {
        max-width: 87px!important;
    }
    #multi-step-form .form-progress .left-header > a {
        display: none;
    }
    .bond-flow-left-footer {
        font-size: 10px!important;
        hyphens: auto;
    }
	.page-template-page-template-bondflow .languages {
        right: 20px!important;
        top: 15px!important;
    }
	
	.page-template-page-template-bondflow .flex.flex-wrap {
        gap: 20px!important;
    }
    .page-template-page-template-bondflow .form-group label {
        margin-bottom: 4px;
        font-weight: 500;
        font-size: 16px;
    }
	
	.tooltip-text {
		left:-90px!important;
        bottom:-90px!important;
	}
}


#agreement-preview h1,
#agreement-preview h2 {
    color: #000!important;
}



.woocommerce-order-received .woocommerce-order-details {display:none!important;}
.a-individual, .a-entity {
    display: none;
}

.a-entity.active,
.a-individual.active {
    display: block;
}

#site-header {
    display: none!important;
}




.wpcf7  input:-webkit-autofill,
.wpcf7 input:-webkit-autofill:hover, 
.wpcf7 input:-webkit-autofill:focus,
.wpcf7 input:-webkit-autofill:active,
body[data-theme="dark"] input:-webkit-autofill,
body[data-theme="dark"] input:-webkit-autofill:hover,
body[data-theme="dark"] input:-webkit-autofill:focus,
body[data-theme="dark"] input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #2c5282 !important;
}

/* Or force specific colors */
.wpcf7 input:-webkit-autofill,
body[data-theme="dark"] input:-webkit-autofill{
    -webkit-box-shadow: 0 0 0px 1000px #e8f0fe inset !important;
    -webkit-text-fill-color: #2c5282 !important;
    transition: background-color 5000s ease-in-out 0s;
}

body[data-theme="dark"] .tooltip svg path {
	fill:#fff;
}