:root{
    ---background_primary: rgb(5 8 22);
    ---color-black: #000000;
    ---color-white: #fff;
    ---color-footer: rgb(14 22 41 / 83%);
    ---background_admin: #1a233a;
    ---color_admin: #bdd1f8;
    ---color-light: rgb(224 242 254);
}

::-webkit-scrollbar {
    width: 15px;
}
::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: rgba(255, 255, 255, .4);
}
.nav-souso-2-component-pesquisa-campo::placeholder{
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-souso-2-component-pesquisa-campo:focus::placeholder {
    transform: translateX(10px); /* Move o placeholder 10px para a direita */
    opacity: 0.5; /* Deixa o placeholder mais claro */
}
.loading-overlay {
    position: fixed; /* Fixa na tela */
    top: 0; /* Alinha ao topo */
    left: 0; /* Alinha à esquerda */
    width: 100vw; /* Largura total da tela */
    height: 100vh; /* Altura total da tela */
    background-color: rgb(0 0 0); /* Fundo semi-transparente */
    display: flex; /* Usar flexbox para centralizar */
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    z-index: 9999; /* Garante que fique acima de outros elementos */
    opacity: 1; /* Opacidade padrão */
    transition: opacity 0.5s ease, visibility 0.5s ease; 
}

.spinner {
    border: 16px solid rgb(0 0 0 / 0%);
    border-top: 16px solid #ffffff;
    border-radius: 50%;
    width: 80px; /* Largura do spinner */
    height: 80px; /* Altura do spinner */
    animation: spin 0.5s linear infinite;
}
.loading {
    animation: loading 1.5s infinite;
    background-color: #a5a5a51a;
}
@keyframes loading {
    0% {
        background-color: #a5a5a51a;
    }
    50% {
        background-color: #a5a5a54d; /* Meio do efeito */
    }
    100% {
        background-color: #a5a5a51a;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
::-webkit-scrollbar-track {
    border-radius: 0;
    background: rgba(0, 0, 0, .2);
}
::-webkit-scrollbar-track {
    border-radius: 0;
    background: rgba(0, 0, 0, .1);
}

body{
    font: 300 16px '__poppins_f68cdc', '__poppins_Fallback_f68cdc', Arial, sans-serif !important;
    color: var(---color-white);
    transition: background-color 1s, color 0.3s;
    box-sizing: border-box;
    background: var(---background_primary);
}
.back-to-top-btn {
    position: fixed;
    bottom: 15px;
    left: 20px;
    z-index: 100;
    display: none; /* Inicialmente escondido */
    background: rgb(65, 152, 238);
    color: white;
    border: none;
    justify-content: center;
    border-radius: 9999px;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.back-to-top-btn:hover {
    background: rgba(65, 151, 238, 0.829); /* Cor mais clara ao passar o mouse */
}
#site-header h1{
    font-size: 25px;
    font-weight: bold;
    font-family: sans-serif;
    text-transform: uppercase;
    color: white;
    list-style: none;
    text-decoration: none;
}

.container {
    max-width: 1600px; /* Largura máxima do contêiner */
    margin: 0 auto; /* Centraliza o contêiner */
  
}

header {
    background-color: var(---color-black);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
    position: fixed;
    right: 0;
    top: 0;
    align-items: center;
    display: flex;
    justify-content: space-between;
    left: 0;
    z-index: 1000;
}

#site-header h1 {
    font-size: 25px;
    font-weight: bold;
    font-family: sans-serif;
    text-transform: uppercase;
    color: white;
    list-style: none;
    text-decoration: none;
}

.nav-souso-2-component-pesquisa {
    background-color: #373535b0;
    display: flex;
}
.nav-souso-2-component-pesquisa-campo {
    font: 300 16px '__poppins_f68cdc', '__poppins_Fallback_f68cdc', Arial, sans-serif;
    color: white;
    height: 20px;
    outline: none;
    width: 400px;
    text-align: start;
    padding: 12px;
    border: none;
    background: #373535b0;
}
.ri-search-line {
    font-size: 20px;
}
header nav ul li a {
    color: #fff;
    transition: color 0.3s ease;
    text-decoration: none;
}
header nav ul li a:hover{
    color: rgba(255, 255, 255, 0.651);
}
nav ul li a i {
    margin-right: 3px;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul {
    display: flex;
    gap: 3px;
    white-space: nowrap;
    list-style: none;
    list-style-position: initial;
    list-style-image: initial;
    list-style-type: none;
    padding: 0;
}

.nav-souso-2-component-pesquisa-botao {
    background-color: #000000b0;
    cursor: pointer;
    color: white;
    border: none;
    padding: 10px;
    position: relative;
}

   /* Estilo para o cabeçalho encolhido */
header.shrink {
    padding: 0; /* Remove o padding para encolher */
    height: 0; /* Define a altura como 0 para esconder */
    opacity: 0; /* Torna o cabeçalho invisível */
    transition: all 0.3s ease; /* Transição suave */
}

header.visible {
    padding: 20px; /* Restaura o padding */
    height: auto; /* Restaura a altura */
    opacity: 1; /* Torna o cabeçalho visível */
}


.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    font-size: 30px;
    cursor: pointer;
    z-index: 1000;
}
img.pagina-img.scroll-up {
    cursor: url('../img/img_components/souso_xans2.png'), auto;
}
.c-breadcrumb .breadcrumb li {
    color: #888;
    display: inline-block;
    font-size: 17px;
}
.image-container {
    position: relative;
    width: 100%; /* Ajusta o tamanho da imagem */
    height: 400px; /* Ajuste o valor para a altura da imagem ou defina como 'auto' dependendo da necessidade */
    background-color: #a5a5a51a;
    animation: loading 1.5s infinite; /* Aplica a animação de fundo */
}

/* Estilos para o texto de carregamento */
.loading {
    font-size: 16px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6); /* Cor de fundo semi-transparente */
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}
@keyframes loading {
    0% {
        background-color: #a5a5a51a;
    }
    50% {
        background-color: #a5a5a54d; /* Meio do efeito */
    }
    100% {
        background-color: #a5a5a51a;
    }
}
.container-component-souso-results_xams21 {
    padding: 1rem;
    justify-content: space-between;
    display: flex;
    background: transparent;
}
@keyframes rotate {
    100% { transform: rotate(360deg) }
}

.idade-label {
    font: 800 10px '__poppins_f68cdc', '__poppins_Fallback_f68cdc', Arial, sans-serif;
    justify-content: center;
    place-content: center;
    align-items: center;
    display: flex;
    color: var(---color-light);
    padding: 5px;
    border-radius: 3px;
    height: 55%;
    width: 22px;
    text-align: center;
}
#closeModal {
    cursor: pointer;
    font-size: 30px;
    cursor: pointer;
    color: white;
    padding: 5px;
    transition: background 0.3s ease-in-out;
    border-radius: 50%;
}
/* Estilo geral para o botão de configurações */
.settings-button {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Estilos para o modal de configurações */
.settings-modal {
    display: none; /* Inicialmente oculto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.label_config{
    color: var(---color_admin);
    font: 700 16px '__poppins_f68cdc', '__poppins_Fallback_f68cdc', Arial, sans-serif;
}

#paginas_container {
    display: grid;
    gap: 16px;
    transition: grid-template-columns 0.3s ease, margin 0.3s ease;/* Transição suave para mudança de layout */
}#zoomSliderContainer {
    width: 100%;
    padding-top: 1rem;
    gap: 5px;
    text-align: start;
    display: flex;
    display: flex;
    flex-direction: column;
}
.fullscreen-btn {
    background-color: transparent;
    border: none;
    padding: 5px;
    cursor: pointer;
    font-size: 24px;
    color: #2196f3; /* Cor do ícone */
    transition: color 0.3s ease, transform 0.3s ease-in-out;
}

.fullscreen-btn:hover {
    transform: scale(1.1);
    color: #00bcd4; /* Cor do ícone ao passar o mouse */
}


.close-button-settings:hover{
    background: #00000024;
}
#zoomSliderContainer label {
    margin-right: 10px;
    margin-bottom: 0.1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    color: #727E8C;
    text-align: left;
    font-size: 12px;
}

/* Estilos para a tela cheia (se necessário) */
.fullscreen-btn:active {
    transform: scale(1.1);
}
#zoomSlider {
    margin: 0;
    width: 100%;
    cursor: pointer;
    -webkit-appearance: none; /* Remove estilo padrão do slider */
    appearance: none;
    height: 8px; /* Espessura da linha do slider */
    background: linear-gradient(to right, #00bcd4, #2196f3); /* Gradiente de cores */
    border-radius: 10px; /* Bordas arredondadas */
    transition: background 0.3s ease; /* Transição suave para o background */
}

#zoomSlider::-webkit-slider-runnable-track {
    height: 8px; /* Definir altura da trilha do slider */
    border-radius: 10px; /* Bordas arredondadas da trilha */
}

#zoomSlider::-moz-range-track {
    height: 8px; /* Definir altura da trilha para Firefox */
    border-radius: 10px;
}

#zoomSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%; /* Thumb arredondado */
    background: #2196f3; /* Cor do thumb */
    border: 2px solid #ffffff; /* Borda branca para contraste */
    transition: transform 0.3s ease, background 0.3s ease; /* Transições suaves para o thumb */
}

#zoomSlider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2196f3;
    border: 2px solid #ffffff;
    transition: transform 0.3s ease, background 0.3s ease;
}

#zoomSlider:active::-webkit-slider-thumb {
    transform: scale(1.2); /* Efeito de aumento quando pressionado */
    background: #00bcd4; /* Cor muda quando pressionado */
}

#zoomSlider:active::-moz-range-thumb {
    transform: scale(1.2); /* Efeito de aumento para Firefox */
    background: #00bcd4;
}

/* Adicionando efeito de foco para melhorar a interação */
#zoomSlider:focus {
    outline: none; /* Remove o contorno padrão */
    box-shadow: 0 0 10px rgba(33, 150, 243, 0.7); /* Efeito de destaque com sombra */
}
.action-button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    margin: 10px 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}
.pags.row {
    margin: 10% !important;
    display: grid !important;
    gap: 16px !important;
}
/* Estilo do botão ao passar o mouse */
.action-button:hover {
    background-color: #0056b3;
}
.label-head{
    text-align: start;
    color: var(---color_admin);
    border-bottom: 1px solid #7E8FA3;
}
/* Estilos para o conteúdo do modal */
.modal-content-settings {
    background-color: #272e48;
    width: 350px;
    padding: 20px;
    flex-direction: column;
    display: flex;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
}
.modal {
    position: fixed;
    top: 5rem;
    right: 20px;
    width: 300px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform: translateX(100%); /* Inicialmente fora da tela */
    opacity: 0; /* Invisível inicialmente */
    z-index: 5000;
    border-radius: 5px;
    max-height: 62px;
}
#modal-message {
    color: white;
    margin: 0;
    font-size: 16px;
}
.modal.show {
    transform: translateX(0); /* Move para a posição original */
    opacity: 1; /* Visível */
}

.modal-content.error {
    background-color: #f14e4e;
}

.modal-content.success {
    background-color: #2bd22b;
}
.modal-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 20px;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    justify-content: space-between;
}
/* Estilos para o botão de fechar */
.close-button-settings {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    justify-content: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    color: #727E8C;
    text-align: left;
    transition: background 0.3s ease;
}

/* Estilos para o botão de salvar configurações */
.save-button {
    margin-top: 1rem;
    width: 5rem;
    cursor: pointer;
    border: 1px solid #2c6de9 !important;
    background-color: #5A8DEE !important;
    color: var(---color-white);
    padding: 8px 12px;
    font: 600 13px '__poppins_f68cdc', '__poppins_Fallback_f68cdc', Arial, sans-serif;
    transition: background 0.3s ease, color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#settingsButton{
    position: fixed;
    display: flex;
    bottom: 15px;
    right: 20px;
    z-index: 100;
    background: rgb(65, 152, 238);
    color: white;
    border: none;
    justify-content: center;
    border-radius: 9999px;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s ease, background 0.3s ease;
}

/* Estilo para o seletor de cor */
#backgroundColor {
    margin-top: 10px;
    width: 100%;
    height: 35px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#closeModal:hover{
    background: #00000041;
}

.livre {
    background-color: green; /* Fundo verde para livre */
}
.manga-item:hover{
    transform: translateY(-5px);
    background: #131313;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
.manga-capa {
    flex-shrink: 0;
    margin-right: 20px;
}
.manga-info-titulo-component {
    max-width: 35rem;
    text-align: start;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.dez {
    background-color: blue; /* Fundo azul para +10 */
}
.manga-info {
    gap: 1rem;
    flex-grow: 1;
    flex-direction: row;
    display: flex;
    align-items: center;
}
.doze {
    background-color: orange; /* Fundo laranja para +12 */
}

.quatorze {
    background-color: #FFA500; /* Fundo alaranjado para +14 */
}

.dezesseis {
    background-color: #FFD700; /* Fundo dourado para +16 */
}

.dezoito {
    background-color: rgb(0, 0, 0); /* Fundo vermelho para +18 */
}
.manga-info-titulo-component span {
    color: rgb(153, 153, 153);
    font-size: 12px;
    display: inline-block;
    max-width: 35rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.manga-info h3 {
    list-style: none;
    text-decoration: none;
    font-size: 20px;
    margin: 0 0 10px;
    font: 300 16px '__poppins_f68cdc', '__poppins_Fallback_f68cdc', Arial, sans-serif;
    color: var(---color-light);
}
.mangas-container {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin: 20px 20px;
}
.manga-item {
    justify-content: space-between;
    display: flex;
    align-items: center;
    background-color: #1c1c1ce6;
    border-radius: 8px;
    cursor: pointer;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background 0.2s ease-in-out;
}
.container-component-souso-results.show {
    opacity: 1;
    visibility: visible;
}
.manga-item a {
    display: flex;
    text-decoration: none;
    border: none;
    justify-content: space-between;
    flex-direction: row;
}
.manga-capa img {
    width: 32px;
    height: 51px;
    border-radius: 4px;
}
.container-component-souso-results {
    margin-left: 3rem;
    position: absolute;
    top: 100%;
    margin-right: 3rem;
    left: 0;
    right: 0;
    margin-top: 0;
    background: #373535fa;
    border-radius: 4px;
    max-height: 450px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
@keyframes prixClipFix {
    0% { clip-path: polygon(50% 50%,0 0,0 0,0 0,0 0,0 0) }
    25% { clip-path: polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0) }
    50% { clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%) }
    75% { clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%) }
    100% { clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0) }
}


.loading-animation {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite;
}

.loading-animation::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid #FFF;
    animation: prixClipFix 2s linear infinite;
}
/* Animação de fade-in para o texto de carregamento */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.c-breadcrumb .breadcrumb {
    margin-bottom: 0;
    background-color: transparent;
    display: inline-block;
}
.c-breadcrumb {
    margin: 0 -15px;
}
.c-breadcrumb .breadcrumb li a{
    transition: 0.4s ease-in-out;
}

.c-breadcrumb .breadcrumb li a:hover{
    color: #bdbaba;
}
.c-breadcrumb .breadcrumb li+li:before {
    content: "/";
    padding: 0 2px;
}
.single-wp-manga .c-breadcrumb-wrapper {
    margin-bottom: 20px;
}
.c-breadcrumb-wrapper {
    padding-top: 16px;
}
.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: .25rem;
}
.c-breadcrumb .breadcrumb li a {
    text-decoration: none;
    list-style: none;
    color: #888;
}
img.pagina-img.scroll-down {
    cursor: url('../img/img_components/souso_xans1.png'), auto;
}
.titulo_capitulo a{
    transition: all 0.3s ease-in-out;
}

.titulo_capitulo a:hover{
    color: rgb(255, 255, 255);
}

/* Inicialmente mostrar o ícone de sol e esconder o de lua */
/* Inicialmente mostrar o ícone de lua e esconder o de sol */
#moon-icon {
    display: inline; /* Mantenha o ícone da lua visível por padrão */
}

#sun-icon {
    display: none; /* Esconder o ícone do sol por padrão */
}

/* Estilo para ambos ícones */
.theme-toggle i {
    color: #ffcc00; /* Cor padrão (sol) */
}

.theme-toggle i:hover {
    transform: scale(1.2);
}

/* Modo escuro (dark mode) */
body.dark-mode {
    background-color: rgb(5 8 22);
    color: #ffffff;
}

body.dark-mode .theme-toggle i {
    color: #ffffff; /* Cor para ícone no modo escuro */
}

body.dark-mode #sun-icon {
    display: none; /* Esconder o ícone do sol no modo escuro */
}

body.dark-mode #moon-icon {
    display: inline; /* Mostrar o ícone da lua no modo escuro */
}

.back-to-top-btn {
    position: fixed;
    bottom: 15px;
    left: 20px;
    z-index: 100;
    display: none;
    background: rgb(65, 152, 238);
    color: white;
    border: none;
    justify-content: center;
    border-radius: 9999px;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s ease, background 0.3s ease;
}

main {
    position: relative;
    top: 10rem;
}

.container_menu {
    position: fixed;
    bottom: 10px;
    width: 80%;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000000ad;
    padding: 10px;
    border-radius: 10px;
    justify-content: space-between;
    display: flex;
    gap: 10px;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    z-index: 1000;
}
.menu_button {
    border: none;
    background: transparent;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}



/* Inicialmente oculto */
.container_menu.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(100px);
}


.menu_button[disabled] {
    background-color: #8f1f1f00;
    cursor: not-allowed;
    color: #ffffff70;
}

.container_menu a{
    list-style: none;
    text-decoration: none;
    color: var(---color-light);
}

.capitulo_label_menu{
    color: #ffffffc2;
    font: 300 14px '__poppins_f68cdc', '__poppins_Fallback_f68cdc', Arial, sans-serif !important;
}

.value_chapters_avaliables{
    color: #ffffffc2;
    font: 300 12px '__poppins_f68cdc', '__poppins_Fallback_f68cdc', Arial, sans-serif !important;
}

#prevChapter a i {
    margin-right: 4px;
}

.container_menu_tools{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 3px;
}

.container_capitulos_info{
    margin: 2rem;
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.container-info-capitulos{
    display: flex;
    gap: 3px;
    flex-direction: column;
}

.container-info-capitulos h2{
   padding: 0;
   margin: 0;
   opacity: .6;
} 

.container-info-capitulos h1{
    padding: 0;
    margin: 0;
}


#prevChapter i {
    margin-right: 4px;
}

footer {
    margin-top: 5rem !important;
    background-color: var(---color-footer);
    color: var(---color-white);
    text-align: center;
    padding: 1px 0;
    font-size: 12px;
    position: relative;
    bottom: 0;
    font: 300 12px '__poppins_f68cdc', '__poppins_Fallback_f68cdc', Arial, sans-serif !important;
    width: 100%;
}
.container-info-capitulos h1 a{
    list-style: none;
    text-decoration: none;
    color: #ffffffcf;
}

.container-info-capitulos h2{
    color: var(---color-light);
}

@media only screen and (max-width: 768px) {
    .manga_card_main {
        align-items: center;
        display: flex;
        position: relative;
        justify-content: center;
        display: flex;
        gap: 3rem;
        flex-wrap: wrap;
    }
    .menu_button{
        padding: 10px !important;
        font-size: 14px;
    }
    .container_menu{
        width: 90%;
    }

    .container {
        max-width: 1600px;
        margin: 0 auto;
    }
    #site-header h1{
        font-size: 18px;
    }
    .form-group{
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    #settingsButton {
        position: fixed;
        top: 35%;
        right: 15px;
        z-index: 100;
        background: rgb(65, 152, 238);
        color: white;
        border: none;
        justify-content: center;
        border-radius: 9999px;
        width: 2.5rem;
        height: 2.5rem;
        align-items: center;
        cursor: pointer;
        transition: opacity 0.3s ease, background 0.3s ease;
    }
    header {
        background-color: var(---color-black);
        color: #fff;
        padding: 20px 0;
        text-align: center;
        padding: 20px;
        transition: all 0.3s ease;
        position: fixed;
        right: 0;
        top: 0;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        left: 0;
        z-index: 1000;
        gap: 10px;
    }

    .container_capitulos_info {
        margin-left: 5px;
        margin-bottom: 2rem;
        display: flex;
        gap: 1rem;
        flex-direction: column;
    }
    .c-breadcrumb .breadcrumb{
        display: flex !important;
    }

    .c-breadcrumb .breadcrumb li {
        color: #888;
        display: inline-block;
        font-size: 14px;
    }
    .theme-toggle{
        display: none;
    }
    .back-to-top-btn{
        display: none !important;
    }
    header nav ul li {
        display: inline;
        margin: 0 7px;
    }
    header nav ul {
        display: flex;
        margin-left: 0;
        justify-content: space-between;
        flex-flow: wrap;
        font-size: 14px;
        margin-top: 1rem;
        margin-right: 0;
        white-space: normal;
        list-style: none;
        list-style-position: initial;
        list-style-image: initial;
        list-style-type: none;
        padding: 0;
    }

    .container-info-capitulos h1 a{
        font-size: 20px;
    }

    .container-info-capitulos h2{
        font-size: 17px;
    }
    .nav-souso-2-component-pesquisa-campo {
        font: 300 16px '__poppins_f68cdc', '__poppins_Fallback_f68cdc', Arial, sans-serif;
        color: white;
        height: 20px;
        outline: none;
        width: 250px;
        text-align: start;
        padding: 12px;
        border: none;
        background: #000000b0;
    }

}

@media only screen and (orientation: landscape) {

    .titulo-capitulo{
        margin-right: 5px;
        max-width: 20rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    header nav ul {
        display: flex;
        margin-left: 0;
        justify-content: end;
        flex-flow: wrap;
        font-size: 14px;
        margin-top: 1rem;
        margin-right: 0;
        white-space: normal;
        gap: 5px;
        list-style: none;
        list-style-position: initial;
        list-style-image: initial;
        list-style-type: none;
        padding: 0;
    }

    header{
        flex-direction: row;
    }

    #site-header h1 a{
        text-decoration: none;
        white-space: nowrap;
        color: inherit;
    }
}