/*
|--------------------------------------------------------------------------
| Spinner dos vídeos
|--------------------------------------------------------------------------
*/

.video-loading-wrapper {
    position: relative;
}

.video-loading-spinner {
    position: absolute;
    inset: 0;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, .6);
}

.video-loading-spinner.hidden {
    display: none;
}

/*
|--------------------------------------------------------------------------
| Accordion Pai (Elementor)
|--------------------------------------------------------------------------
*/

.e-n-accordion-item-title {
    position: relative;

    height: 50px !important;
    min-height: 50px !important;
    max-height: 50px !important;

    overflow: hidden;
    border-bottom: none !important;

    box-shadow: 0 0 13px 4px rgba(0, 0, 0, 0.11);
}

/* Fechado */

.e-n-accordion-item-title[aria-expanded="false"] {
    border-radius: 12px;
}

.e-n-accordion-item-title[aria-expanded="false"]::after {
    content: '';

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;

    background: #d9d9d9;
}

/* Aberto */

.e-n-accordion-item-title[aria-expanded="true"] {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    box-shadow: 0 -4px 13px 4px rgba(0, 0, 0, 0.11) !important;
}

.e-n-accordion-item-title[aria-expanded="true"]::after {
    content: '';

    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;

    height: 1px;

    background: #d9d9d9;
}

/*
|--------------------------------------------------------------------------
| Accordion Filho
|--------------------------------------------------------------------------
*/

/* Títulos */

h5 {
    margin-bottom: 2px !important;
    color: #fff !important;
}

/* Botões */

button:hover,
button:focus {
    color: #fff;
}

/* Container */

.revisa-accordion {
    padding: 12px 20px 10px 20px;
    overflow: hidden;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 0 13px 4px rgba(0, 0, 0, 0.11);
}

/* Gradientes */

.blue-gradient {
    background: linear-gradient(
        90deg,
        #037EEB,
        #153EB6
    );
}

.green-gradient {
    background: linear-gradient(
        90deg,
        #88C949,
        #169736
    );
}

.orange-gradient {
    background: linear-gradient(
        90deg,
        #F98840,
        #E95620
    );
}

/* Header */

.revisa-accordion-header {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    cursor: pointer;
    margin-bottom: 5px;
    border: none;
    background: transparent;
    box-shadow: none;
    color: #fff;
}

.revisa-accordion-header span {
    font-size: 18px !important;
    font-weight: 800;
}

.revisa-accordion-header span:hover {
    color: #fff;
}

/* Ícone */

.revisa-accordion-header i {
    transition: transform .35s ease;
}

.revisa-accordion.open .revisa-accordion-header i {
    transform: rotate(0deg);
}

.revisa-accordion:not(.open) .revisa-accordion-header i {
    transform: rotate(180deg);
}

/* Conteúdo */

.revisa-accordion-body {
    height: 0;

    overflow: hidden;

    transition: height .35s ease;
}