

.wrapper_insurance{ 
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: var(--gray-color-2);
}

@media (min-width: 992px) {
    .wrapper_insurance{
        flex-direction: row;
    }
}

.wrapper_insurance .header_insurance,
.wrapper_insurance .footer_insurance{
    background: var(--white);
    padding: 20px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
}

@media(min-width: 992px) {
    .wrapper_insurance .header_insurance{
       padding-top: 5vh;
       width: 20%;
       min-width: 300px; 
       display: flex;
       flex-direction: column; 
    }

    .wrapper_insurance .header_insurance .inner{
        display: flex;
       flex-direction: column;
        height: 100%;
    }

    .wrapper_insurance .steps{
        display: flex;
        flex-direction: column; 
    }
    .wrapper_insurance .header_insurance .steps{
        display: flex;
        flex-direction: column;
        height: 100%; 
        padding-top: 100px;
        padding-top: 5vh;
    }
}

.wrapper_insurance .header_insurance .logo-link{
    display: block;
    width: 90%;
    margin: 0 auto;
    max-width: 200px;
}

.wrapper_insurance .header_insurance .steps{
    margin-top: 32px;
    display: none;
}

@media(min-width: 992px) {
    .wrapper_insurance .header_insurance .steps{
        display: flex;
    }
}

.wrapper_insurance .content_insurance .steps{
    margin-top: 32px;
    display: flex;
    flex-direction: column;
}

@media(min-width: 992px) {
    .wrapper_insurance .content_insurance .steps{
        display: none;
    }
}

.wrapper_insurance .steps .step{
    position: relative;
    display: flex;
    gap: 16px;
}

.wrapper_insurance .steps .step:not(:last-child){
    padding-bottom: 6px;
}

@media(min-width: 992px) {
    .wrapper_insurance .steps .step:not(:last-child){
        padding-bottom: 24px;
    }
}

.wrapper_insurance .steps .step:not(:last-child)::after{
    content: "";
    position: absolute;
    left: 12px;
    top: 20px;
    bottom: 0;
    width: 2px;
    margin-left: -1px;
    background: var(--gray-color-4);
}

.wrapper_insurance .steps .step_marker{
    position: relative;
    z-index: 1;
    width: 24px;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    flex: 0 0 20px;
    border: 2px solid var(--gray-color-4);
    background: var(--gray-color-5);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(min-width: 992px) {

.wrapper_insurance .steps .step:not(:last-child)::after{
    content: "";
    position: absolute;
    left: 20px;
    top: 26px;
    bottom: 0;
    width: 2px;
    margin-left: -1px;
    background: var(--gray-color-4);
}

    .wrapper_insurance .steps .step_marker{ 
        width: 40px;
        min-width: 40px;
        height: 40px;
        border-radius: 50%;
        flex: 0 0 30px;
    }
}

.wrapper_insurance .steps .step_content{
    padding-top: 1px;
}

.wrapper_insurance .steps .step_label{
    display: block;
    font-size: 16px;
    line-height: 1.2;
    color: var(--gray-color-6);
    margin-bottom: 2px;
    font-weight: normal;
}

.wrapper_insurance .steps .step_title{
    margin: 0;
    font-size: 18px;
    line-height: 1.08;
    color: var(--gray-color-1); 
    font-family: "Geologica", sans-serif;
    font-weight: normal;
    font-style: normal;
}

.wrapper_insurance .steps .step_substeps{
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
}

.wrapper_insurance .steps .step_substeps li{
    position: relative;
    margin: 0 0 8px; 
    font-size: 14px;
    line-height: 1.3;
    color: var(--gray-color-6);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Geologica", sans-serif;
    font-weight: normal;
    font-style: normal;
}

.wrapper_insurance .steps .step_substeps li::before{
    content: "";
    width: 20px;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--gray-color-4);
    background: var(--gray-color-5);
}

.wrapper_insurance .steps .step_substeps li.is-complete{
    color: var(--green-color-1);
}

.wrapper_insurance .steps .step_substeps li.is-complete::before{
    content: "\2713";
    border-color: var(--green-color-1);
    background: var(--white);
    color: var(--green-color-1);
    font-size: 12px;
    font-weight: 700;
    line-height: 17px;
    text-align: center;
}

.wrapper_insurance .steps .step.is-active .step_marker{
    border-color: var(--green-color-1);
    background: var(--green-color-1);
}

.wrapper_insurance .steps .step.is-active .step_label{
    color: var(--gray-color-6);
}

.wrapper_insurance .steps .step.is-active .step_title{
    color: var(--gray-color-1);
}

.wrapper_insurance .steps .step.is-upcoming .step_marker{
    background: var(--gray-color-5);
    border-color: var(--gray-color-4);
}

.wrapper_insurance .steps .step .step_marker::before{
    content: "\2713";
    color: var(--white);
    text-align: center;
    font-size: 16px;
    line-height: 29px;
    font-weight: 700;
}

.wrapper_insurance .steps .step.is-upcoming .step_marker::before{ 
    color: var(--gray-color-4); 
}

@media (max-width: 991.98px) {
    .wrapper_insurance .steps{
        margin-top: 20px;
    }

    .wrapper_insurance .steps .step_title{
        font-size: 18px;
    }

    .wrapper_insurance .steps .step_substeps li{
        font-size: 14px;
    }
}

.wrapper_insurance .content_insurance{
    flex: 1;
    display: flex;
    flex-direction: column; 
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
}

@media(min-width: 992px) { 
    .wrapper_insurance .content_insurance > div{
        padding-left: 20px;
        padding-right: 20px; 
    } 
}



.wrapper_insurance .top_bar{
    background: var(--white);
    padding-top: 20px;
    padding-bottom: 20px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
}

.wrapper_insurance .content_insurance .inner{
    padding-top: 20px;
    padding-bottom: 20px;
    /* overflow-y: auto; */
    /* height: 100%; */
    width: 100%; 
    display: flex;
    flex-direction: column; 
    align-items: center;
}

@media(min-width: 992px) {
    .wrapper_insurance .content_insurance .inner{
        padding-top: 50px;
    }
}

@media(min-width:768px) {
    .wrapper_insurance .top_bar .col-back{
    width: fit-content;
}
    .wrapper_insurance .top_bar .col-search{
        width: fit-content;
        margin-left: auto;
        padding-right: 0;
    }
    
    .wrapper_insurance .top_bar .col-actions{
        width: fit-content;
        padding-left: 0;
    }
}


.wrapper_insurance .step-title{
    padding: 20px;
    margin-bottom: 20px;
    background: var(--gray-color-5);
}

.wrapper_insurance .form-wrapper sup{
    display: inline-block;
    margin-left: 5px;
    color: var(--red-color-1);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    vertical-align: middle;
    position: relative;
    top: -1px;
    margin-bottom: 1px;
}

.wrapper_insurance .form-wrapper .btn{
    text-transform: uppercase;
    font-size: 16px;
}
 

.wrapper_insurance .form-wrapper .btn-outline-secondary {
    border-color: var(--gray-color-6);
    color: var(--gray-color-6);
    background: var(--white);
    opacity: 0.75;
    &:hover {
        border-color: var(--gray-color-6);
        color: var(--gray-color-6);
        background: var(--white);
        opacity: 1;
    }
}

@media(min-width: 992px) {
    .wrapper_insurance .form-wrapper .row .col-input{
        padding-right: 50px;
        padding-left: calc(var(--bs-gutter-x) * .5);
     }
     .wrapper_insurance .form-wrapper .row .col-input:nth-child(even){
        padding-left: 50px;
        padding-right: calc(var(--bs-gutter-x) * .5);
     }
}




.wrapper_insurance .carousel-info .actions{
   position: relative;
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-top: 20px;
}

.wrapper_insurance .carousel-info .actions .carousel-control{
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    opacity: 1;
    transition: all 0.3s ease;
    color: var(--gray-color-7);
}

.wrapper_insurance .carousel-info .actions .carousel-control:hover{
    color: var(--green-color-1);
}

.wrapper_insurance .carousel-info .actions .carousel-control .ico{
    display: block;
    width: 24px; 
    object-fit: contain;
    object-position: center;
}


.wrapper_insurance .card-info{
    background: var(--white);
    border-radius: 30px; 
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
    border: none;
}
.wrapper_insurance .card-info .card-header{
    border-radius: 30px 30px 0 0;
    padding-top: 20px;
    padding-bottom: 20px;
    background: var(--green-color-1);
    color: var(--white);
}
.wrapper_insurance .card-info .card-header h5{
    color: var(--white);
    font-weight: normal;
}