body {
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
}

.nav-bar {
    display: flex;
    align-items: center;
    background-color: #00385b;
    color: #FFFFFF;
    font-size: 12px;
}

.nav-bar-logo {
    display: flex;
    align-items: center;
}

.nav-bar-phone-container > .nav-bar-phone {
    display: flex;
    align-items: center;
    margin-right: 10px;
    text-decoration: none;
    color: #FFFFFF;
}

.nav-bar-phone > .phone-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f26e22;
    border-radius: 50%;
    margin-right: 10px;
}

.nav-bar-phone > .phone-icon-container > .phone-icon {
    height: 50%;
}

.wrapper-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.previous-step {
    align-self: center;
    width: 20px;
    margin-right: 50px;
}

.previous-step:hover {
    cursor: pointer;
}

.main-container {
    display: flex;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-step {
    font-weight: 700;
    color: #f26e22;
}

.header-title {
    font-weight: 700;
    color: #00385b;
}

.header-description {
    margin-top: 10px;
    color: #00385b;
}

.footer-buttons-container {
    display: flex;
}

.footer-submit-button {
    align-self: flex-end;
    background-color: #f26e22;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    color: #FFFFFF;
    cursor: pointer;
}

.footer-disabled-button {
    opacity: 20%;
    cursor: not-allowed;
}

.info-assistance-container {
    display: flex;
    justify-content: flex-end;
}

.info-assistance {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 5px;
    color: #525151;
    font-size: 14px;
    font-weight: 400;
}

.info-assistance:hover {
    cursor: pointer;
}

.info-assistance .info-icon {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #525151;
    border-radius: 50%;
    width: 15px;
    height: 15px;
}

.tooltip-icon {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #525151;
    border-radius: 50%;
    width: 15px;
    height: 15px;
}

.modal {
    display: none;
    flex-direction: column;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFFFFF;
    z-index: 10;
    box-sizing: border-box;
}

.show-modal {
    display: flex !important;
}

.modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
}

.modal-content > .close-btn {
    align-self: flex-end;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    color: #A5ADBA;
    font-size: 30px;
    cursor: pointer;
}

.modal-content > .modal-title {
    font-weight: 700;
}

.modal-content > .modal-description {
    line-height: 25px;
    text-align: center;
}

.overlay {
    position: fixed;
    opacity: 0;
    background-color: rgba(0, 0, 0, .5);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* osano consent modal*/
.osano-cm-close {
    display: none;
}

.osano-cm-list-item label {
    font-size: 20px;
}

.osano-cm-button--type_accept {
    order: 3;
}

.osano-cm-button--type_save {
    order: 1;
    background-color: white;
    color: #737373;
    border-color: #737373;
}

.osano-cm-button--type_denyAll {
    order: 2;
    background-color: #fff;
    color: #737373;
    border-color: #737373;
}

.osano-cm-button--type_denyAll:hover, .osano-cm-button--type_save:hover {
    background-color: #f0f0f0;
}

.osano-cm-dialog--type_box {
    background: #fff;
    box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.66);
}

.osano-cm-info-dialog__info .osano-cm-info-dialog-header__header {
    color: #000000;
}

.osano-cm-info-dialog__info p {
    color: #004467;
}

.blur {
    filter: blur(2px);
    pointer-events: none;
    position: fixed;
    width: 100%;
    height: 100%;
}

/*osano end*/


@media (max-width: 992px) {
    .nav-bar {
        justify-content: space-between;
        position: sticky;
        top: 0;
        height: 80px;
        padding: 5px 20px;
        z-index: 5;
    }

    .nav-bar-logo > .logo-icon {
        height: 40px;
    }

    .nav-bar-phone-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 0;
    }

    .nav-bar-phone > .phone-icon-container {
        width: 32px;
        height: 32px;
    }

    .nav-bar-phone > .nav-bar-text {
        display: none;
    }

    .wrapper-container {
        height: auto;
    }

    .previous-step {
        display: none;
    }

    .main-container {
        flex-direction: column;
        margin-top: 10px;
        margin-bottom: 15px;
        width: 92vw;
    }

    .header-step {
        font-size: 18px;
    }

    .header-title {
        font-size: 30px;
        margin-top: 15px;
    }

    .header-description {
        font-size: 15px;
    }

    .footer-buttons-container {
        justify-content: space-between;
        column-gap: 5px;
        margin-top: 30px;
    }

    .footer-submit-button {
        width: 100%;
        height: 50px;
        font-size: 16px;
    }

    .footer-back-button {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
        width: 60px;
        height: 50px;
    }

    .footer-back-button-img {
        max-height: 100%;
    }

    .info-assistance-container {
        order: 3;
        margin-top: 8px;
    }

    .modal {
        width: 100vw;
        padding: 10px 10px 20px 10px;
    }

    .modal-content .modal-img {
        width: 100%;
    }
}

@media (min-width: 992.1px) and (max-width: 1440px) {
    .nav-bar {
        justify-content: right;
        height: 40px;
        padding: 5px;
    }

    .nav-bar-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-bar-phone > .phone-icon-container {
        width: 27px;
        height: 27px;
    }

    .main-container {
        gap: 30px;
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .main-section {
        width: 560px;
    }

    .header-step {
        font-size: 15px;
    }

    .header-title {
        font-size: 20px;
        margin-top: 10px;
    }

    .header-description {
        font-size: 13px;
    }

    .footer-buttons-container {
        justify-content: flex-end;
        margin-top: 20px;
    }

    .footer-submit-button {
        width: 205px;
        height: 32px;
        font-size: 14px;
    }

    .info-assistance-container {
        order: 2;
    }

    .modal {
        width: 800px;
        padding: 20px 20px 40px 20px;
    }
}

@media (min-width: 1440.1px) {
    .nav-bar {
        justify-content: right;
        height: 60px;
        padding: 5px;
    }

    .nav-bar-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-bar-phone > .phone-icon-container {
        width: 27px;
        height: 27px;
    }

    .main-container {
        gap: 30px;
        margin-top: 40px;
        margin-bottom: 25px;
    }

    .main-section {
        width: 730px;
    }

    .header-step {
        font-size: 18px;
    }

    .header-title {
        font-size: 30px;
        margin-top: 15px;
    }

    .header-description {
        font-size: 15px;
    }

    .footer-buttons-container {
        justify-content: flex-end;
        margin-top: 40px;
    }

    .footer-submit-button {
        width: 205px;
        height: 50px;
        font-size: 16px;
    }

    .info-assistance-container {
        order: 2;
    }

    .modal {
        width: 800px;
        padding: 20px 20px 40px 20px;
    }
}