﻿:root {
    --indigo-blue: #0A243E; /* titulos, categorias */
    --steel-light-blue: #C9D5E7; /* borders e separadores */
    --chalk-white: #FFFFFF; /* fundos */
    --frost-white: #F2F4F8; /* fundo tema selcionado*/
    --caixa-blue: #0071CE; /* temas */
    --dark-slate-gray: #3F5B78; /* perguntas */
    --dark-blue: #00559A; /* hover dos temas e tema no detalhe */
    --primary-fado: #0A243E; /* Título na pesquisa */
}


.hidden {
    display: none;
}

.faqsgeral-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 1260px;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 100px;
}

.faqsgeral-content {
    display: flex;
    column-gap: 50px;
}




.faqsgeral-subtitulo {
    font-family: 'Spartan';
    font-weight: 600;
    line-height: 30px;
    font-size: 20px;
    color: var(--indigo-blue);
    margin-bottom: 16px;
}

.faqsgeral-titulo {
    font-family: 'Spartan';
    font-weight: 700;
    line-height: 56px;
    font-size: 46px;
    color: var(--indigo-blue);
    margin-bottom: 28px;
}

.faqsgeral-search-results {
    font-family: 'Spartan';
    font-weight: 600;
    line-height: 22px;
    font-size: 16px;
    color: var(--indigo-blue);
    margin-bottom: 6px;
    height: 22px;
}

.faqsgeral-leftnavbar {
    width: 250px;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.faqsgeral-pesquisa-wrapper {
    order: -1;
}

.faqsgeral-detalhe {
    flex-grow: 1;
    min-width: 0;
}

.faqsgeral-tema-nav {
    background-color: var(--chalk-white);
    height: 37px;
    font-family: 'Spartan';
    font-weight: 600;
    line-height: 21px;
    font-size: 16px;
    color: var(--caixa-blue);
    display: flex;
    justify-content: space-between;
    padding: 0px 8px 0px 8px;
    align-items: center;
    cursor: pointer;
}


    .faqsgeral-tema-nav:hover {
        color: var(--dark-blue);
    }

    .faqsgeral-tema-nav:after {
        font-family: 'icomoon';
        content: '\e9af';
        font-size: 24px;
        font-weight: 100;
    }


.faqsgeral-tema-nav-wrapper.open .faqsgeral-tema-nav {
    background-color: var(--frost-white);
}

    .faqsgeral-tema-nav-wrapper.open .faqsgeral-tema-nav:after {
        font-family: 'icomoon';
        content: '\e9b0';
    }

.faqsgeral-tema-nav-categoria-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    padding: 5px 0 5px 0;
    display: none;
}


.faqsgeral-tema-nav-wrapper.open .faqsgeral-tema-nav-categoria-wrapper {
    display: flex;
}

.faqsgeral-categoria-nav {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    display: flex;
    align-items: center;
    background-color: var(--chalk-white);
    color: var(--indigo-blue);
    padding: 4px 8px 4px 8px;
    cursor: pointer;
}

    .faqsgeral-categoria-nav:hover {
        background-color: var(--frost-white);
    }

    .faqsgeral-categoria-nav.open {
        background-color: var(--steel-light-blue);
    }


.faqsgeral-tema-detalhe {
    font-family: 'Spartan';
    font-weight: 700;
    font-size: 23px;
    line-height: 30px;
    margin-bottom: 25px;
    color: var(--dark-blue);
}

.faqsgeral-categoria-detalhe {
    font-family: 'Spartan';
    font-weight: 700;
    font-size: 19px;
    line-height: 28.5px;
    margin-bottom: 17px;
    color: var(--indigo-blue);
}

.faqsgeral-perguntas-wrapper {
    display: flex;
    flex-direction: column;
}

.faqsgeral-perguntas-pergunta-wrapper {
    display: flex;
    flex-direction: column;
    font-family: 'Roboto';
    font-weight: 400;
}



.faqsgeral-perguntas-pergunta {
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.5px;
    border-top: 1px solid var(--steel-light-blue);
    color: var(--dark-slate-gray);
    padding: 10px 16px 10px 16px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

    .faqsgeral-perguntas-pergunta:hover {
        background-color: var(--frost-white);
    }


.faqsgeral-perguntas-pergunta-wrapper.open .faqsgeral-perguntas-pergunta {
    background-color: var(--frost-white);
}

.faqsgeral-perguntas-wrapper > .faqsgeral-perguntas-pergunta-wrapper:last-child {
    border-bottom: 1px solid var(--steel-light-blue);
}

    .faqsgeral-perguntas-wrapper > .faqsgeral-perguntas-pergunta-wrapper:last-child:hover {
        border-bottom: 1px solid var(--frost-white);
    }

    .faqsgeral-perguntas-wrapper > .faqsgeral-perguntas-pergunta-wrapper:last-child.open {
        border-bottom: none;
    }




.faqsgeral-perguntas-pergunta:after {
    font-family: 'icomoon';
    content: '\e9ad';
    font-size: 24px;
    font-weight: 100;
}

.faqsgeral-perguntas-pergunta-wrapper.open .faqsgeral-perguntas-pergunta:after {
    font-family: 'icomoon';
    content: '\e9af';
}


.faqsgeral-perguntas-resposta {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.25px;
    padding: 24px;
    display: none;
}


.faqsgeral-perguntas-pergunta-wrapper.open .faqsgeral-perguntas-resposta {
    display: block;
}


.faqsgeral-detalhe-categoria-wrapper {
    display: none;
}

    .faqsgeral-detalhe-categoria-wrapper.open {
        display: block;
    }


.faqsgeral-pesquisa-wrapper {
    height: 55px;
}

.faqsgeral-pesquisa-controls {
    display: flex;
    align-items: center;
    column-gap: 10px;
}


.faqsgeral-pesquisa-searchbox {
    height: 40px;
    flex-grow: 1;
    min-width: 0;
    display: grid;
}

.faqsgeral-pesquisa-searchbox-input {
    border: 1px solid var(--steel-light-blue) !important;
    border-radius: 8px;
    background-color: var(--chalk-white) !important;
    color: var(--caixa-blue) !important;
    height: 100%;
    width: 100%;
    outline-color: var(--dark-blue);
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    grid-column: 1;
    grid-row: 1;
    padding-left: 40px !important;
}

    .faqsgeral-pesquisa-searchbox-input:hover {
        color: var(--dark-blue) !important;
        border-color: var(--dark-blue) !important;
        background-color: var(--frost-white) !important;
        border-width: 2px !important;
    }

    .faqsgeral-pesquisa-searchbox-input:focus {
    }

    .faqsgeral-pesquisa-searchbox-input:not(:placeholder-shown) {
        background-color: var(--frost-white) !important;
    }


.faqsgeral-pesquisa-searchbox-loupe {
    font-family: 'icomoon';
    font-size: 24px;
    line-height: 24px;
    color: var(--caixa-blue);
    height: 40px;
    width: 40px;
    grid-column: 1;
    grid-row: 1;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
}

    .faqsgeral-pesquisa-searchbox-loupe:has(+ .faqsgeral-pesquisa-searchbox-input:hover),
    .faqsgeral-pesquisa-searchbox-loupe:has(+ .faqsgeral-pesquisa-searchbox-input:focus) {
        color: var(--dark-blue);
    }



.faqsgeral-pesquisa-searchbox-button {
    font-family: 'icomoon';
    font-size: 24px;
    line-height: 24px;
    height: 40px;
    width: 40px;
    border: 1px solid var(--steel-light-blue);
    border-radius: 8px;
    background-color: var(--chalk-white);
    color: var(--caixa-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .faqsgeral-pesquisa-searchbox-button:hover {
        color: var(--dark-blue);
        border: 2px solid var(--dark-blue);
        background-color: var(--frost-white);
        cursor: default;
    }

    .faqsgeral-pesquisa-searchbox-button.searched {
        font-size: 20px;
    }


.faqsgeral-pesquisa .area-flow {
    border-bottom: unset;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: -125px;
}

.faqsgeral-pesquisa .wrapper {
    display: flex;
}

.faqsgeral-pesquisa .faqsgeral-pesquisa-results-wrapper {
    position: relative;
}

.faqsgeral-pesquisa .faqsgeral-pesquisa-results {
    position: absolute;
    top: 10px;
    right: 50px;
    left: 0;
    background-color: var(--chalk-white);
    filter: drop-shadow(1px 1px 2px #000000);
    border-radius: 8px;
    z-index: 1;
}

.faqsgeral-search-titulo {
    font-family: 'Spartan';
    font-weight: 600;
    line-height: 28.5px;
    font-size: 19px;
    color: var(--primary-fado);
    margin-bottom: 16px;
}

.faqsgeral-pesquisa-content {
    display: flex;
    flex-direction: column;
}

.faqsgeral-pesquisa-searchresult {
    min-height: 55px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.5px;
    color: var(--dark-slate-gray);
}

    .faqsgeral-pesquisa-searchresult:not(.faqsgeral-pesquisa-noresults):hover {
        color: var(--dark-blue);
        background-color: var(--frost-white);
    }


.faqsgeral-pesquisa-viewall {
    color: var(--caixa-blue);
}

    .faqsgeral-pesquisa-viewall:hover {
        color: var(--dark-blue);
    }

.faqsgeral-pesquisa-searchresults .faqsgeral-pesquisa-searchresult:first-child:hover,
.faqsgeral-pesquisa-results .faqsgeral-pesquisa-noresults:hover {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.faqsgeral-pesquisa-results .faqsgeral-pesquisa-viewall:hover,
.faqsgeral-pesquisa-results .faqsgeral-pesquisa-noresults:hover {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}


.faqsgeral-pesquisa-searchresults a:hover,
a.faqsgeral-pesquisa-viewall-link:hover {
    color: var(--dark-blue);
}

/* Classes para a editor part */
.faq_custom_settings_container {
    display: flex;
    flex-direction: column;
    width: 252px;
    padding-bottom: 10px;
}

    .faq_custom_settings_container .UserDottedLine {
        margin-top: 10px;
    }


    .faq_custom_settings_container .lbTemas {
        min-height: 350px;
    }

.settings_label {
    margin-top: 10px;
    margin-bottom: 5px;
}


/* Para repor o highlight das options selected quando o select não está em foco */
#MSOTlPn_MainTD .faq_custom_settings_container select.lbCategorias option[selected='selected'] {
    background-color: light-dark(rgb(206, 206, 206), rgb(84, 84, 84));
    color: light-dark(rgb(16, 16, 16), rgb(255, 255, 255));
}

.faqsgeral-pesquisa-temas {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

.faqsgeral-pesquisa-tema {
    height: 28px;
    font-family: Spartan;
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;
    text-align: left;
    color: var(--caixa-blue);
}

    .faqsgeral-pesquisa-tema-link:hover,
    .faqsgeral-pesquisa-tema:hover {
        color: var(--dark-blue);
    }

/* mudar a margem de auto para 30px para menter no minimo os 30px de margem */
@media (max-width: 1320px) {
    .faqsgeral-wrapper {
        margin-left: 30px;
        margin-right: 30px;
    }
}

@media (max-width: 1004px) {
    .faqsgeral-wrapper {
        margin-left: 30px;
        margin-right: 30px;
    }

    .faqsgeral-pesquisa .area-flow {
        margin-bottom: unset;
    }
}

@media (max-width: 767px) {
    .faqsgeral-wrapper {
        margin-left: 30px;
        margin-right: 30px;
    }

    .faqsgeral-content {
        flex-direction: column;
        row-gap: 30px;
    }

    .faqsgeral-leftnavbar {
        width: 100%;
    }

    .faqsgeral-pesquisa-temas {
        margin-top: 20px;
        flex-direction: column;
        row-gap: 10px;
        column-gap: 0;
        align-items: center;
    }

    .faqsgeral-pesquisa .faqsgeral-pesquisa-results {
        right: 0;
    }


    .faqsgeral-pesquisa-searchresult-separator {
        height: 1px;
        background-color: var(--dark-slate-gray);
        margin: 0 10px;
        filter: opacity(0.3);
    }
}

@media (min-width: 768px) {
    .faqsgeral-leftnavbar {
        position: sticky;
        align-self: flex-start;
        top: 111px;
        overflow-y: auto;
    }
}
