/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.form-main-heading {
    color: #222;
    font-family: 'Montserrat';
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 78px;
}

.form-section-heading {
    color: #222;
    font-family: 'Montserrat';
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-sm-heading {
    color: #222;
    font-family: 'Montserrat';
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 20px;
}

.summary-label {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
}

.summary-text {
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 500;
}

.form-btn {
    color: #FFF;
    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: 700;
    border-radius: 60px;
    outline: none;
    border: none;
    padding: 10px 100px;
    transition: all 0.2s ease-in-out;
}

.form-btn:hover {
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}

.form-btn.primary {
    background-color: #009CE0;
}

.form-btn.dark{
    background-color: #222222;
}

a.form-btn.primary:hover {
    color: #fff;
    text-decoration: none;
}

.form-btn.secondary {
    padding: 10px 40px;
    font-size: 14px;
    font-weight: 600;
    background-color: #249D35;
}

button.text-btn {
    color: #000000;
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 600;
    outline: none;
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

button.text-btn svg{
    width: 16px;
}

.multi-step-body {
    background-image: url(../assets/main-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 6%;
    overflow-y: auto;
}

.multi-step-wrapper {
    display: flex;
    align-items: start;
    background: #F3F6FF;
    border-radius: 6px;
    overflow: hidden;
    max-width: 1400px;
    width: 100%;
}

.multi-step-wrapper .left-wrapper {
    background-color: #FFFFFF;
    height: 100%;
    width: 100%;
    flex: 0 0 410px;
    overflow-y: auto;
    padding: 40px;
}

.multi-step-wrapper .right-wrapper {
    background-color: #F3F6FF;
    flex: 2;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

/* steps start */

.form-stepper-wrapper .steps {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-radius: 12px;
    padding-top: 50px;
}

.form-stepper-wrapper .vertical-progress-bar {
    position: relative;
    width: 4px;
    background-color: #CCC;
    margin: 0 20px;
    border-radius: 5px;
    height: 60px;
    overflow: hidden;
}

.form-stepper-wrapper .vertical-progress-bar.active {
    background-color: #249D35;
}

.form-stepper-wrapper .vertical-progress-bar-fill {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0;
    background-color: #CCC;
    transition: height 0.3s ease-in-out;
}

.form-stepper-wrapper .step {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    border: 2px solid #249D35;
    background-color: #FFFFFF;
    flex-shrink: 0;
}

.form-stepper-wrapper .step.active .inside-step {
    background-color: #249D35;
    border: 4px solid #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-stepper-wrapper .stepInfo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.form-stepper-wrapper .lastStep {
    visibility: hidden;
}

.form-stepper-wrapper .stepInfo .label {
    color: #A8AABC;
    font-family: 'Roboto';
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
}

.form-stepper-wrapper .stepInfo .info {
    color: #333;
    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

/* steps stop */

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    color: #000;
    font-family: 'Montserrat';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.form-group label.sm {
    font-size: 13px;
    font-weight: 500;
}


input[type="text"].input-field,
input[type="email"].input-field {
    border: 1px solid #D8D6DE;
    border-radius: 45px;
    padding: 10px 20px;
    background-color: #FFFFFF;
    color: #000000;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
}

input[type="text"].input-field::placeholder,
input[type="email"].input-field::placeholder {
    color: #aaa;
}

.autocomplete-group input{
    height: 46px;
}

textarea.textarea-field {
    border: 1px solid #D8D6DE;
    border-radius: 15px;
    padding: 10px 20px;
    background-color: #FFFFFF;
    color: #000000;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    resize: none;
}

textarea.textarea-field::placeholder{
     color: #aaa;
}

input[type="text"]:focus-visible.input-field,
input[type="email"]:focus-visible.input-field,
textarea.textarea-field {
    border: 1px solid #D8D6DE;
    outline: none;
    box-shadow: none;
}

select.select-field {
    border: 1px solid #D8D6DE;
    border-radius: 45px;
    padding: 10px 20px;
    background-color: #FFFFFF;
    color: #000;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 400;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 7.4L0 1.4L1.4 0L6 4.6L10.6 0L12 1.4L6 7.4Z' fill='%23666666'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px 8px;
}

select.select-field:focus-visible {
    border: 1px solid #D8D6DE;
    outline: none;
    box-shadow: none;
}

label.radio-field {
    background-color: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: 10px;
    position: relative;
    border: 1px solid #fff;
    margin-bottom: 30px;
}

label.radio-field-sm {
    background-color: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    border: 1px solid #fff;
    margin-bottom: 30px;
}

label.radio-field-sm h4 {
    margin-bottom: 0;
    color: #999;
    font-weight: 600;
}

.radio-field:has(input[type="radio"]:checked) {
    border: 1px solid #009CE0;
}

.radio-field-sm:has(input[type="radio"]:checked) {
    border: 1px solid #009CE0;
    box-shadow: 0px 3px 20px 0px rgba(0, 156, 224, 0.21);
}

.radio-field-sm:has(input[type="radio"]:checked) h4 {
    color: #009CE0;
}

label.radio-field .radio-main-img {
    height: 70px;
    width: 70px;
    object-fit: contain;
}

label.radio-field-sm .radio-main-img {
    height: 56px;
    width: 56px;
    object-fit: contain;
}

label.radio-field .radio-top-img {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
}

.form-navigations {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

span.validation-error {
    color: red;
}

.disabled-btn {
    pointer-events: none !important;
}

.accept-terms {
    display: flex;
    align-items: start;
    gap: 10px;
    color: #000;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0.4px;
}

.accept-terms input{
    margin-top: 8px;
}

.accept-terms label{
    user-select: none;
}

.location-starter{
    display: inline-flex;
    margin-bottom: 10px !important;
}

@media (max-width: 1200px) {
    .multi-step-wrapper {
        flex-direction: column;
    }

    .multi-step-wrapper .left-wrapper {
        overflow-y: visible;
    }

    .multi-step-wrapper .left-wrapper,
    .multi-step-wrapper .right-wrapper {
        padding: 20px;
    }
}

@media (max-width: 992px) {

    .form-stepper-wrapper .steps {
        padding-top: 20px;
    }

    .form-stepper-wrapper .stepInfo .info {
        font-size: 14px;
    }

    .form-main-heading {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .form-section-heading {
        font-size: 18px;
    }

    .form-sm-heading {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .form-main-heading {
        font-size: 24px;
    }

    .form-btn {
        font-size: 14px;
    }

    .hide-below-md{
        display: none;
    }
}

@media (min-width: 767px){
    .location-starter{
        display: none;
    }
}

@media (max-width: 576px){
    .form-navigations {
        flex-direction: column;
    }
}


/* Counter css start */
.counter-component {
    display: flex;
    align-items: center;
    border: 1px solid #D8D6DE;
    padding: 10px 14px;
    border-radius: 50px;
    background: #FFFFFF;
    justify-content: space-between;
    gap: 10px;
}

.counter-component span {
    cursor: pointer;
}

.counter-component input {
    width: 100%;
    border: none;
    text-align: center;
    padding: 0px;
    margin: 0;
}

.counter-component input:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

/* Counter css stop */

/* Checkbox Css start */

.checkbox-group {
    margin-bottom: 20px;
    width: max-content;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 500;
    user-select: none;
}

.checkbox-group input[type="checkbox"]+label:before {
    content: '';
    border-radius: 4px;
    display: inline-block;
    border: 1px solid #009CE0;
    padding: 0px 3px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M10.7072 2.99996L4.50007 9.20705L1.29297 5.99995L2.00007 5.29285L4.50007 7.79285L10.0001 2.29285L10.7072 2.99996Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.checkbox-group input[type="checkbox"]:checked+label:before {
    background-color: #009CE0;
}

/* Checkbox Css stop */


/* add files input start */

.document-upload-input {
    border-radius: 3px;
    border: 1px dashed #848484;
    background: #fff;
    padding: 40px;
    text-align: center;
}

.document-upload-input img {
    margin-bottom: 10px;
}

.document-upload-input p {
    color: #999;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 500;
}

.cstm-file-uploader {
    border-radius: 3px;
    border: 1px dashed #848484;
    background: #fff;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

.cstm-file-uploader img{
    width: 60px;
}

.cstm-file-uploader p{
    color: #999;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 500;
}

/* add files input stop */


/* cargo details table start */

.cargo-table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}

.cargo-table {
    min-width: 800px;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

table.cargo-table td {
    border: solid 1px #CBCCCC;
    border-style: none solid solid none;
    padding: 16px 10px;
}

table.cargo-table tr:first-child td:first-child {
    border-top-left-radius: 10px;
}

table.cargo-table tr:first-child td:last-child {
    border-top-right-radius: 10px;
}

table.cargo-table tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

table.cargo-table tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

table.cargo-table tr:first-child td {
    border-top-style: solid;
}

table.cargo-table tr td:first-child {
    border-left-style: solid;
}

.cargo-table tr:first-of-type {
    background-color: #F4FAFF;
    color: #000;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 400;
}

.cargo-table tr {
    background-color: #fff;
    color: #000;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 400;
}

.table-header-switch {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 12px;
    font-weight: 500;
}

.table-select-wrapper select {
    border: none;
    color: #000;
    font-family: 'Montserrat';
    font-size: 12px;
    font-weight: 500;
}

.table-select-wrapper select:focus {
    border: none;
    outline: none;
}

.cargo-table-select-boxes {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.cargo-table-select-boxes .checkbox-group {
    margin-bottom: 0;
}

.cargo-table-select-boxes .checkbox-group label {
    font-size: 12px;
    margin-bottom: 0;
}

.cargo-table-select-boxes .checkbox-group input[type="checkbox"]+label:before {
    width: 16px;
    height: 16px;
}

.cargo-table-select-boxes .hazardous-add {
    cursor: pointer;
}

.cargo-table-select-boxes span.hazardous-remove {
    border: 1px solid #C3C3C3;
    width: 20px;
    height: 22px;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.cargo-table-select-boxes span.hazardous-remove > svg{
    width: 18px;
    height: 20px;
}

input.table-input-field {
    height: 50px;
    width: 100%;
    border: none;
    outline: none;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 10px;
}

input.table-input-field:focus,
input.table-input-field:focus-visible {
    border: none;
    outline: none;
}

/* cargo details table stop */


/* switch input start */

.switch-input input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
}

.switch-input label {
    cursor: pointer;
    text-indent: -9999px;
    width: 36px;
    height: 20px;
    background: #FFFFFF;
    display: block;
    border-radius: 100px;
    position: relative;
    border: 0.84px solid #A8AABC;
    margin-bottom: 0;
}

.switch-input label:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 19px;
    height: 19px;
    background: #249D35;
    border-radius: 90px;
}

.switch-input input:checked+label:after {
    left: 100%;
    transform: translateX(-100%);
}

/* switch input stop */


/* timeline css start */

.timeline-wrapper {
    position: relative
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    z-index: 0;
    justify-content: space-evenly;
    justify-items: center;
    align-content: center;
    align-items: center;
    text-align: center;
}

.timeline-wrapper.half-size .timeline::after{
    left: 12%;
    width: 26%;
    top: 54%;
}

.timeline-wrapper .middle-card-item {
    position: absolute;
    z-index: 2;
}

.card-item {
    position: relative;
}

.card-item .timeline-dot {
    position: relative;
    z-index: 4;
}

.timeline::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 75%;
    top: 55%;
    z-index: 1;
    background: linear-gradient(to right, transparent 50%, #249D35 50%);
    background-size: 16px 2px, 100% 2px;
}

@media (max-width: 768px) {
    .timeline {
        display: none !important;
    }

    .timeline::after {
        display: none !important;
    }
}

/* timeline css stop */


/* datepicker css start */

.datepicker-wrapper input {
    width: 100%;
    border: none;
    font-size: 14px;
}

.datepicker-wrapper input:focus {
    border: none;
    outline: none;
}

.datepicker-wrapper {
    margin-top: 10px;
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid #D8D6DE;
    padding: 10px 16px;
    border-radius: 50px;
    background-color: #FFFFFF;
}

/* datepicker css stop */


/* countrys locations show start */

.locations-show-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.locations-show-wrapper.last-end{
    justify-content: end;
}

.locations-show-wrapper .locations-details {
    display: flex;
    align-items: center;
    gap: 10px;
}

.locations-show-wrapper .locations-details div h6 {
    color: #000;
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.locations-show-wrapper .locations-arrows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.locations-show-wrapper .locations-details div p {
    color: #000;
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

.country-icon-wrapper {
    background-color: #fff;
    padding: 6px;
    border-radius: 50%;
}

.country-icon-wrapper>img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.country-icon-wrapper>svg {
    width: 40px;
}

@media (max-width: 576px) {
    .locations-show-wrapper {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .locations-show-wrapper .locations-arrows {
        flex-direction: row
    }

    .locations-show-wrapper .locations-arrows img {
        transform: rotate(92deg)
    }
}

@media (max-width: 1200px){
    .locations-show-wrapper.last-end{
        justify-content: start;
    }
}

/* countrys locations show stop */

/* autocomplete choices css start */


.autocomplete-form-input .choices{
    border-radius: 45px;
    background-color: #fff;
}

.autocomplete-form-input .choices.is-open .choices__inner{
    border-radius: 45px !important;
}

.autocomplete-form-input .choices__inner {
    border: none;
    border-radius: 45px;
    border: 1px solid #D8D6DE;
    background-color: #fff;
    padding-left: 16px;
    padding-right: 20px;
    color: #000;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
}

.autocomplete-form-input .choices[data-type*=select-one]::after{
    right: 20px;
}

.autocomplete-form-input .choices__list.choices__list--dropdown.is-active {
    z-index: 20;
}


/* autocomplete choices css stop */


/* documents show css start */

.document-show-wrapper {
    border-radius: 5px;
    border: 1px solid #F0DEDE;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 20px;
}

.document-show-wrapper img{
    margin-bottom: 14px;
    width: 40px;
    object-fit: contain;
}

.document-show-wrapper .document-title{
    color: #000;
    text-align: center;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.4px;
}

.document-section-title{
    color: #000;
    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 20px;
}

@media (max-width: 768px){
    .document-show-wrapper{
        margin-bottom: 20px;
    }
}

/* documents show css stop */

/* thank you css start */

.thank-you-step {
    background: #F3F6FF;
    border-radius: 6px;
    max-width: 1400px;
    width: 100%;
    display: flex ;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap:20px;
    padding: 20px;
}

.thank-you-step h1{
    color: #222;
    font-family: 'Montserrat';
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 43px;
}

.thank-you-step p{
    color: #000;
    font-family: 'Montserrat';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; 
}

@media (max-width: 768px) {
    .thank-you-step h1{
        font-size: 36px;
    }
}

/* thank you css stop */


/* loader css start */

.loader-overlay,
#submit-loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* loader css stop */

/* alpine autocomplete css start */

.form-group.autocomplete-group {
    position: relative;
}

.form-group.autocomplete-group ul.autocomplete-list-wrapper {
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 4;
    list-style-type: none;
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    background-color: #fff;

    max-height: 240px;
    overflow-y: auto;
}

.form-group.autocomplete-group ul.autocomplete-list-wrapper.no-options {
   display: none;
}

.form-group.autocomplete-group .autocomplete-item {
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 10px;
}

.form-group.autocomplete-group .autocomplete-item:hover {
    background-color: #F2F2F2;
}

.form-group.autocomplete-group .autocomplete-item.selected {
    background-color: #F2F2F2;
    font-weight: bold;
}


@media (max-width: 768px) {
    .form-group.autocomplete-group ul.autocomplete-list-wrapper {
        top: 86px;
    }
}

/* alpine autocomplete css stop */

/* Insurex form start */

.insurex-form-body {
    background-image: url(../assets/insurex-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 6%;
    overflow-y: auto;
}

.insurex-step-wrapper {
    background: #F3F6FF;
    border-radius: 6px;
    overflow: hidden;
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.insurex-step-wrapper .header{
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* steps start */

.insurex-steps{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px 60px;
}

.insurex-steps .steps {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-radius: 12px;
    padding-top: 50px;
}

.insurex-steps .horizontal-progress-bar {
    position: relative;
    width: 4px;
    background-color: #CCC;
    margin: 0 20px;
    border-radius: 5px;
    height: 60px;
    overflow: hidden;
}

.insurex-steps .horizontal-progress-bar-fill {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0;
    background-color: #CCC;
    transition: height 0.3s ease-in-out;
}

.insurex-steps .step {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    border: 2px solid #249D35;
    background-color: #FFFFFF;
    flex-shrink: 0;
}

.insurex-steps .step.active .inside-step {
    background-color: #249D35;
    border: 4px solid #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.insurex-steps .stepInfo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.insurex-steps .lastStep {
    visibility: hidden;
}

.insurex-steps .stepInfo .label {
    color: #A8AABC;
    font-family: 'Roboto';
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
}

.insurex-steps .stepInfo .info {
    color: #333;
    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.insurex-steps .stepInfo .subtitle {
    color: #333;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
}

.insurex-step-wrapper  .welcome-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.insurex-form-body .step-content{
    padding: 20px 40px;
}

.insurex-step-wrapper .welcome-step>div {
    text-align: center;
}

.insurex-step-wrapper .welcome-step h4 {
    color: #222;
    font-family: 'Montserrat';
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
}

.insurex-step-wrapper .welcome-step h2{
    color: #222;
    font-family: 'Montserrat';
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 40px;
}

.border-heading {
    color: #222;
    font-family: 'Montserrat';
    font-size: 22px;
    font-weight: 700;
    padding-left: 10px;
    position: relative;
}

.border-heading:before{
    content: '';
    width: 4px;
    height: 18px;
    background-color: #009CE0;
    position: absolute;
    left: 0;
    top: 4px;
}

.insurex-form-body .step-content .card{
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.05);
    width: 100%;
    padding: 30px 40px;
    margin: 16px 0 16px 0;
}

.description-text{
    color: #666;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.insurex-step-wrapper .step-3-boxes {
    display: flex;
    gap: 20px;
}

.insurex-step-wrapper .step-3-boxes>div:first-of-type{
    flex-basis: 640px;
}

.form-radio-field span.circle {
    border: 1px solid #009CE0;
    width: 16px;
    height: 16px;
    display: flex;
    border-radius: 50%;
    flex-shrink: 0;
}

label.form-radio-field {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.form-radio-field input[type="radio"]:checked + .circle {
  position: relative;
}

.form-radio-field input[type="radio"]:checked + .circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #009CE0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.form-radio-field strong{
    font-family: 'Montserrat';
}

.radio-label-subtitle {
    color: #444;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 400;
}

.special-conditions-checkboxes{
    display: flex;
    flex-wrap: wrap;
    gap: 0px 30px;
}

.special-conditions-checkboxes .checkbox-group label {
    color: #000000;
}

.currency-select-input {
    position: relative;
}

.currency-select-input select{
    border: none;
    position: absolute;
    left: 18px;
    top: 9px;
    color: #222222;
}

.currency-select-input input{
    border: 1px solid #D8D6DE;
    border-radius: 45px;
    padding: 10px 10px 10px 92px;
    width: 100%;
    color: #000000;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
}

.currency-select-input input:focus-visible,
.currency-select-input select:focus-visible{
    outline:none;
}

.currency-select-input input::placeholder{
    color: #aaa;
}

.currency-select-input span.middle-line {
    position: absolute;
    left: 80px;
    top: 0;
    width: 1px;
    background-color: #D8D6DE;
    height: 42px;
}

.review-step-header {
    margin: 0 auto;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.review-step-header h5{
    color: #222;
    font-family: 'Montserrat';
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0;
}

.review-step-header p{
    color: #222;
    text-align: center;
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 400;
}

.review-step-content p{
    color: #222;
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 600;
}

.review-step-content span{
    color: #666;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 600;
}

.create-field-btn {
  position: relative;
  border: 1px solid #009CE0;
  padding: 10px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.3s ease;
  user-select: none;
}

.create-field-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #009CE0;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.create-field-btn:hover::before {
  opacity: 0.15; 
}

.create-field-btn > * {
  position: relative;
  z-index: 1; 
}

label.error {
    color: red;
}

.form-group .loading_box {
    position: relative;
}

.form-group .loading_box input{
    width: 90%;
}

.form-group .loading_box svg{
    width: 24px;
    height: 24px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 9px;
}

.insurex-step-wrapper.step-3.without-special-condition .review-step-content {
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
}

.timeline-insurex-list .timeline {
    grid-template-columns: repeat(7, 1fr);
}

.timeline-insurex-list .timeline::after {
    width: 85%;
}

.timeline-insurex-list {
    border-radius: 20px;
    background: #F6F8F6;
    padding: 40px;
    margin: 60px 0;
}

.timeline-insurex-list .timeline-insurex-content{
    text-align: center;
}

.timeline-insurex-list .timeline-insurex-content p {
    color: #000;
    font-family: 'Montserrat';
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 6px
}

.timeline-insurex-list .timeline-insurex-content strong {
    color: #000;
    font-family: 'Montserrat';
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
}

.without-contitions-header h5{
    color: #222;
    font-family: 'Montserrat';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.without-contitions-header p{
    color: #222;
    font-family: 'Montserrat';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 0;
}

.without-contitions-pricing {
    text-align: center;
    margin-bottom: 40px;
}

.without-contitions-pricing h5{
    color: #333;
    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: 600;
}

.without-contitions-pricing h3{
    color: #333;
    font-family: Montserrat;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.without-contitions-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.without-contitions-btns button {
    padding: 10px 30px;
}

img#travel-icon {
    height: 32px;
    position: relative;
    top: 3px;
}

.insurex-step-wrapper img.insurex-header-logo {
    width: 150px;
}

.welcome-step.step-content .form-wave-hand {
    width: 80px;
}

.success-payment-btns {
    display: flex;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 1024px) {
    .insurex-form-body .step-content,
    .insurex-form-body .step-content .card{
        padding: 20px;
    }

    .insurex-steps{
        flex-direction: column;
        padding: 20px;
    }

    .insurex-steps .horizontal-progress-bar{
        height: 4px;
        width: 60px;
    }

    .insurex-step-wrapper .step-3-boxes>div:first-of-type{
        flex-basis: auto;
        margin-bottom: 0;
    }

    .insurex-step-wrapper .step-3-boxes{
        flex-direction: column;
        gap: 0;
    }

    .special-conditions-checkboxes{
        flex-direction: column;
    }

    .insurex-step-wrapper .welcome-step h2{
        font-size: 24px;
    }

    .insurex-step-wrapper .welcome-step h4{
        font-size: 18px;
    }

    .timeline-insurex-list{
        margin: 20px 0;
        padding: 10px 10px 30px 10px;
    }

    .without-contitions-pricing h5{
        font-size: 14px;
    }

    .without-contitions-pricing h3{
        font-size: 24px;
    }

    .without-contitions-btns {
        flex-direction: column;
    }

    .without-contitions-pricing,
    .timeline-insurex-list .timeline-insurex-content,
    .without-contitions-header div
    {
        margin-bottom: 20px;
    }

}

/* steps stop */


/* selectize css start */

.form-group .selectize-input.items.has-options.full.has-items,
.form-group  .selectize-input.items.has-options.not-full,
.form-group  .selectize-input.items.not-full{
    border: 1px solid #D8D6DE;
    border-radius: 45px;
    width: 100%;
    color: #000000;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    background-color: #FFFFFF !important;
    padding: 10px 20px;
    background-image: none;
}

.form-group .selectize-dropdown-content .option.selected {
    background-color:#F2F2F2;
    color: #000;
    font-weight: 600;
}

.form-group .selectize-input input{
    width: 100% !important;
}

/* selectize css stop */

/* Insurex form stop */