@charset "UTF-8";

:root {

    .header-menu .menu-nav>.menu-item .menu-submenu {
        border-radius: 1rem;
    }

    .header-menu .menu-nav>.menu-item>.menu-link {
        border-radius: 1rem;
    }

    .btn {
        border-radius: 1rem;
    }

    .form-control {
        border-radius: 1rem;
    }

    .form-control-sm {
        border-radius: 0.8rem;
    }

    .card-rounded {
        border-radius: 1.5rem;
    }

    .rounded {
        border-radius: 1.5rem !important;
    }

    .rounded-top {
        border-top-left-radius: 1.5rem !important;
        border-top-right-radius: 1.5rem !important;
    }

    .rounded-top-lg {
        border-top-left-radius: 0.85rem !important;
        border-top-right-radius: 0.85rem !important;
    }

    .rounded-right {
        border-top-right-radius: 1.5rem !important;
        border-bottom-right-radius: 1.5rem !important;
    }

    .rounded-lg-right {
        border-top-right-radius: 0.85rem !important;
        border-bottom-right-radius: 0.85rem !important;
    }

    .rounded-bottom {
        border-bottom-right-radius: 1.5rem !important;
        border-bottom-left-radius: 1.5rem !important;
    }

    .rounded-left {
        border-top-left-radius: 1.5rem !important;
        border-bottom-left-radius: 1.5rem !important;
    }

    .rounded-lg-left {
        border-top-left-radius: 0.85rem !important;
        border-bottom-left-radius: 0.85rem !important;
    }

    .form-group label {
        font-size: 0.8rem;
        font-weight: 400;
        color: #3F4254;
        text-transform: uppercase;
    }

    .option-cities {
        position: absolute;
        width: 92%;
        bottom: 0;
        /* começa embaixo */
        height: 0;
        z-index: 999;
        border: 1px solid #c4c4c4;
        overflow: auto;
        opacity: 0;
        transition: opacity 0.4s ease, height 0.4s ease, bottom 0.4s ease;
    }

    .option-cities.reveal {
        opacity: 1;
        height: auto;
        max-height: 180px;
        bottom: 70px;
        /* sobe */
    }


    input[type="radio"] {
        margin-top: 3px;
    }

    .disabled {
        background-color: #f8f9fd !important;
    }

    .invalid-feedback {
        transition: opacity 0.4s ease, height 0.4s ease, border 0.4s ease, background-color 0.4s ease, display 0.4s ease;
    }

    .is-invalid {
        transition: opacity 0.4s ease, height 0.4s ease, border 0.4s ease, background-color 0.4s ease;
    }

    .bg-danger-o-10 {
        transition: opacity 0.4s ease, height 0.4s ease, border 0.4s ease, background-color 0.4s ease;
    }

    .bg-white {
        transition: opacity 0.4s ease, height 0.4s ease, border 0.4s ease, background-color 0.4s ease;
    }

    .border-damger {
        transition: opacity 0.4s ease, height 0.4s ease, border 0.4s ease, background-color 0.4s ease;
    }

    .listbox {
        position: absolute;
        bottom: 0px;
        width: 100%;
        background: #fff;
        cursor: pointer;
        z-index: 999;

        transition: opacity 0.4s ease, height 0.4s ease, border 0.4s ease, background-color 0.4s ease, display 0.4s ease;
    }

    .form-group {
        margin-bottom: 0.75rem;
    }

    .header-menu .menu-nav>.menu-item .menu-submenu>.menu-subnav>.menu-item>.menu-link {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        cursor: pointer;
        padding: 8px;
        border-radius: 12px;
    }

    .header-menu .menu-nav>.menu-item .menu-submenu.menu-submenu-classic {
        padding: 12px;
        margin-top: 8px;
    }

    .accordion .card .card-header{
        border-radius: 24px;
    }

    /* Aplica no <i class="fa-solid fa-circle dotPulseSuccess"></i> */

    .dotPulseSuccess,
    .dotPulseDanger {
        animation: dotPulseRadarShadow 1.4s ease-out infinite;
        /* garante que a sombra siga a cor do ícone */
        box-shadow: 0 0 0 0 currentColor;
    }

    .dotPulseSuccess {
        color: #22c55e;
    }

    .dotPulseDanger {
        color: #ef4444;
    }

    @keyframes dotPulseRadarShadow {
        0% {
            box-shadow: 0 0 0 0 currentColor;
        }

        70% {
            box-shadow: 0 0 0 14px rgba(0, 0, 0, 0);
        }

        100% {
            box-shadow: 0 0 0 18px rgba(0, 0, 0, 0);
        }
    }

    @media (prefers-reduced-motion: reduce) {

        .dotPulseSuccess,
        .dotPulseDanger {
            animation: none;
        }
    }

}