

:root {
    ---color-background-primary: ;
    --color-text-1: white;
    --color-text-2: black;
    --color-text-4: rgb(204, 204, 204);
    --color-text-select: #767676;
    --color-buttom-primary: #ffe484;
    --color-buttom-secundary: #9fff00;
    --color-buttom-terciary: #ff530d; /* Cor terciária */
    --color-input-defalt: #000000b0;
    --color-sidebar-1: #00000085 ;
}
#link-doar{
    display:none;
}

body{
    text-rendering: optimizeLegibility;
    transition: background-color 0.5s ease, color 0.5s ease;
    font: 300 16px '__poppins_f68cdc', '__poppins_Fallback_f68cdc', Arial, sans-serif;
    background-color: #242428;
}
::-webkit-scrollbar {
    width: 8px; /* Largura da barra de rolagem */
}

::-webkit-scrollbar-track {
    background: #4e4e4e; /* Cor de fundo da barra de rolagem */
}

::-webkit-scrollbar-thumb {
    background: #5a2e98; /* Cor do indicador da barra de rolagem */
    border-radius: 5px; /* Borda arredondada do indicador */
}


.modal.show {
    transform: translateX(0);
    opacity: 1;
    max-height: 62px;

}

.modal-content {
    padding: 20px;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
}

.modal-content.error {
    background-color: #f14e4e;
}

.modal-content.success {
    background-color: #2bd22b;
}

.close-button {
    float: right;
    font-size: 20px;
    cursor: pointer;
}

#modal-message {
    color: white;
    margin: 0;
    font-size: 16px;
}
* {
    box-sizing: border-box;
}

.nav-souso-1-botao-lateral{
    height: 100%;
    position: relative;
    display: flex;
    right: 50px;
    margin-left: auto; 
    align-items: center;
    text-align: right;

}

.nav-souso-1-botao-lateral-1 {
    background: transparent;
    border: none;
    font-size: 10px;
    color: rgb(0, 0, 0);
    cursor: pointer;
    border-radius: 10px;
}

.nav-souso-1-botao-lateral-1 i {
    color: rgb(255, 255, 255);
}

.nav-souso-1 {
    list-style: none;
    z-index: 1000;
    align-items: center; 
    display: flex;
    height: 80px;
    top: 0;
    width: 100%;

    position: fixed;
    background: #00000085;
}

.nav-souso-2{
    height: 100%;
    position: absolute;
    display: flex;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Translada o contêiner filho para o centro */
    align-items: center;
    text-align: right;
    justify-content: flex-end;
}

.nav-souso-2-component-pesquisa-campo{
    font: 300 16px '__poppins_f68cdc','__poppins_Fallback_f68cdc',Arial,sans-serif;
    color: white;
    height: 60px;
    outline: none;
    width: 400px;
    text-align: start;
    padding: 12px;
    border: none;
    background: #000000b0;
}

.nav-souso-2-component-pesquisa{
    background-color: #000000b0;
    display: flex;
}

.nav-souso-2-component-pesquisa-botao{
    background-color: #000000b0;
    cursor: pointer;
    color: white;
    border: none;
    padding: 10px;
    position: relative;
}

.ri-menu-line{
    font-size: 35px!important;
}

.ri-search-line{
    font-size: 20px;
}

.modal-error-ep {
    display: none; /* Escondido por padrão */
    position: fixed; /* Fica fixo na tela */
    z-index: 1; /* Sobrepõe outros elementos */
    left: 0;
    top: 0;
    width: 100%; /* Largura total da tela */
    height: 100%; /* Altura total da tela */
    background-color: rgba(0, 0, 0, 0.5); /* Fundo escuro semitransparente */
}

/* Estilo para o modal */
.modal-error-ep {
    display: none; /* Esconde o modal por padrão */
    position: fixed; /* Fica fixo na tela */
    z-index: 1000; /* Coloca o modal acima de outros elementos */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Permite rolagem caso o conteúdo seja muito grande */
    background-color: rgba(0, 0, 0, 0.7); /* Fundo escuro semitransparente */
}

.modal-content-error-ep h2{
    color: #fff;
}

/* Estilo do conteúdo do modal */
.modal-content-error-ep {
    background-color: #171717;
    margin: 10% auto; /* Centraliza verticalmente e horizontalmente */
    padding: 20px;
    border: none;
    width: 80%;
    max-width: 500px; /* Define uma largura máxima */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    animation: emergeCenterEffect 0.3s linear 0s 1 normal none running;
    align-items: center;
    justify-content: center;
}
@keyframes emergeCenterEffect {
    0% {
        opacity: 0;
        transform: scale(0.92);
    }
    60% {
        opacity: 1;
    }
    100% {
        transform: none;
    }
}


/* Estilo do botão de fechar (x) */
.close-error-ep {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-error-ep:hover,
.close-error-ep:focus {
    color: #ffffff;
    text-decoration: none;
}
.modal {
    position: fixed;
    bottom: 20px;
    top: 100px;
    right: 20px;
    width: 300px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform: translateX(100%);
    opacity: 0;
    z-index: 1000;
    border-radius: 5px;
    max-height: 62px;
}

.nav-souso-1-mode-toggle #sunIcon {
    color: #f1c40fb8;
}
/* CSS para ícones de modo claro/escuro */
.nav-souso-1-mode-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease; /* Transição suave no alternador */
}
body.dark-mode {
    background-color: #060606; /* Cor de fundo escura */
    color: #ffffff; /* Cor do texto clara */
}

.controle-menu.dark-mode{
    background: #a1959533;
}

body.light-mode #moonIcon {
    opacity: 0;
}

/* O ícone da lua é visível no modo escuro */
body.dark-mode #sunIcon {
    opacity: 0;
}

#modeToggle i {
    font-size: 24px;
    transition: opacity 2s; /* Adiciona uma transição suave para os ícones */
}
.nav-souso-1-mode-toggle i {
    font-size: 24px;
    margin: 0 10px;
}

.light-mode #sunIcon {
    display: inline;
}

.light-mode #moonIcon {
    display: none;
}

.dark-mode #sunIcon {
    display: none;
}

.dark-mode #moonIcon {
    color: #f0f8ff9e;
    display: inline;
}

/* Estilo da textarea */
#errorDescription {
    width: 100%;
    color: white;
    outline: none;
    resize: none;
    border: none;
    height: 100px;
    background: var(--color-input-defalt);
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    box-sizing: border-box;
}
.success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4CAF50; /* Verde para sucesso */
    color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-size: 16px;
}
.souso-cadatro{
    text-align: center !important;
    cursor: pointer;
    color: white;
    font-family: sans-serif;
}

.icon-park-solid--correct::after {
    display: inline-block;
    width: 1.3rem;
    height: 1.3rem;
    vertical-align: -0.125em;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%235fc60c' fill-rule='evenodd' stroke='%235fc60c' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.3' d='m4 24l5-5l10 10L39 9l5 5l-25 25z' clip-rule='evenodd'/%3E%3C/svg%3E");
  }
.material-symbols-light--close-small-outline-rounded {
    display: inline-block;
    width: 1.8rem; /* Tamanho do ícone */
    height: 1.8rem; /* Tamanho do ícone */
  
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.5' d='m12 12.727l-3.592 3.592q-.16.16-.354.15T7.7 16.3t-.16-.364q0-.203.16-.363L11.273 12L7.681 8.433q-.16-.16-.15-.364t.169-.363t.364-.16q.203 0 .363.16L12 11.298l3.567-3.592q.16-.16.354-.16t.354.16q.166.165.166.366t-.166.36L12.702 12l3.592 3.592q.16.16.16.354t-.16.354q-.165.166-.366.166t-.36-.166z'/%3E%3C/svg%3E");
    background-color: red;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}
.status-icon {
    margin-left: 10px;
}

.status-available {
    color: green !important;
}

.status-unavailable {
    color: red !important;
}



.modal-error-ep {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content-error-ep {
    margin: 15% auto;
    padding: 20px;
    border: none;
    width: 80%;
    max-width: 500px;
}

.close-error-ep {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-error-ep:hover,
.close-error-ep:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Estilo do botão de enviar */
#sendErrorButton {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #ff6a1d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 2s ease;
    width: 100%;
}

#sendErrorButton:hover {
    background: #ff681dc4;
}

/* Estilo para o texto do link */
.container-souso-bax span {
    color: white;
    font-weight: 200;
}

/* Adicione transição para o modal */
.modal-error-ep {
    transition: opacity 0.3s ease-in-out;
}

.modal-error-ep.show {
    top: 0%;
    display: block;
    opacity: 1;
}

.modal-error-ep.hide {
    opacity: 0;
    display: none;
}

.container-souso-bax {
    display: flex;
    justify-content: space-between; /* Garante que as divs fiquem espaçadas uniformemente */
    align-items: center; /* Alinha verticalmente os itens no centro */
    padding: 15px;
    font-family: sans-serif;
}

.download-button i{
    margin-right: 5px;
}

.container-souso-bax > div {
    flex: 1; /* Garante que todas as divs tenham a mesma largura */
    text-align: center; /* Centraliza o conteúdo dentro das divs */
}

.souso-controle-download .download-button {
    display: flex;
    font-size: 15px;
    align-items: center;
    place-content: center;
    color: white;
    color: inherit;
    text-decoration: none;
}

.souso-controle-download .download-button svg {
    fill: #ffffff; /* Define a cor do SVG como branco */
    width: 20px; /* Ajuste a largura do ícone SVG conforme necessário */
    height: auto;
    margin-right: 5px; /* Espaçamento entre o ícone e o texto */
    vertical-align: middle; /* Alinha o ícone com o texto */
}

.souso-reportar-div{
    padding: 4.5px;
}

.souso-reportar-div span a {
    color: #ffffff; /* Define a cor do link */
    text-decoration: none; /* Remove o sublinhado do link */
}


.container-souso-bax a{
    color: white;
    text-decoration: none;
    list-style: none;

}

#reportErrorLink{
    cursor: pointer;
}


.container-souso-bax{
    padding: 15px;
    align-items: center;
    font-family: sans-serif;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.nav-souso-1-conteudo-animes {
    border-radius: 3px;
    background: #222020a6;
    width: auto;
    padding-top: 30px;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 0.62rem;
    flex-wrap: wrap;
    position: relative; /* Adicionado */
}
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: transparent; /* Cor de fundo da barra de carregamento */
    z-index: 9999; /* Certifique-se de que a barra de carregamento fique acima de outros elementos */
    display: none; /* Inicialmente escondido */
}
  
#loader-progress {
    width: 0%;
    height: 100%;
    background-color: #7412ff; /* Cor da barra de progresso */
    transition: width 0.4s ease; /* Animação de transição suave */
}

.scroll-to-top {
    position: fixed;
    bottom: 15px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: #7f14ff;
    color: #fff;
    border: none;
    border-radius: 20%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 15px;
    z-index: 1000;
    transition: opacity 0.3s;
}

.scroll-to-top.hidden {
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.loading-overlay {
    border-radius: 8px;
    padding: 5px;
    position: relative;
    color: transparent;
    overflow: hidden; /* Para esconder o conteúdo que exceder o contêiner */
    background: linear-gradient(135deg, #ffffff12, #050010, #41009d, #000000cc, #000000);
    background-size: 300% 300%;
}
#erro-carregamento{
    padding-right: 250px;
    padding-left: 250px;
    color: white;
    text-align: center;
    flex: 1;
    flex-direction: column;
    display: flex;
}
.titulo-numeros{
    color: #ffff48;
}

.loader {
    font-size: 5px; /* Tamanho reduzido */
    width: 8px; /* Largura menor */
    height: 8px; /* Altura menor */
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    animation: mulShdSpin 0.7s infinite ease;
    transform: translateZ(0);
  }
  @keyframes mulShdSpin {
    0%,
    100% {
      box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.5), -1.8em -1.8em 0 0em rgba(255,255,255, 0.7);
    }
    12.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.5);
    }
    25% {
      box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.5), 1.8em -1.8em 0 0em rgba(255,255,255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
    }
    37.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.5), 2.5em 0em 0 0em rgba(255,255,255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
    }
    50% {
      box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.5), 1.75em 1.75em 0 0em rgba(255,255,255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
    }
    62.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.5), 0em 2.5em 0 0em rgba(255,255,255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
    }
    75% {
      box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.5), -1.8em 1.8em 0 0em rgba(255,255,255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
    }
    87.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.5), -2.6em 0em 0 0em rgba(255,255,255, 0.7), -1.8em -1.8em 0 0em #ffffff;
    }
  }
  
.loading-video-souso-component {
    position: absolute;
    justify-content: center;
    flex-direction: column;
    top: 50%;
    width: 100%;
    background: black;
    align-items: center;
    border-radius: 10px;
    left: 50%;
    align-content: center;
    flex: 1;
    height: 100%;
    transform: translate(-50%, -50%);
    text-align: -webkit-center;
    font-family: Arial, sans-serif;
    color: #fff;
    z-index: 2;
}

/* Texto animado */
.loading-text {
    margin-bottom: 2rem;
    font-size: 1.7em;
    font: 300 20px '__poppins_f68cdc', '__poppins_Fallback_f68cdc', Arial, sans-serif;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Estilo da animação de carregamento */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}


.video-components-souso-xamsq{
    display: flex;
    position: relative;
    flex-direction: column;
}
/* Quando o vídeo estiver carregado, ocultar a mensagem */
#animeVideo {
    width: 100%;
    height: auto;
    opacity: 1;
    transition: opacity 0.5s ease;
}
#erro-carregamento ul,
#erro-carregamento div{
    text-align: start;
}

.content-label-checkbox label{
    color: #ffffffb8;
}

.fade-in-p {
    color: rgba(255, 255, 255, 0.734); /* Cor do texto após o fade-in */
}

.fade-in {
    opacity: 1;
    color: #d5d5d5; /* Cor do texto após o fade-in */
    transition: color 0.3s ease-in-out; /* Transição suave para a mudança de cor */
}

.fade-in.initial {
    color: white; /* Cor inicial transparente */
}

@keyframes gradientBackground {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.souso-reportar-div{
    place-content: center;
    align-items: center;
    display: flex;
}

/* Estilos para o conteúdo dentro do .loading-overlay */
.loading-content {
    opacity: 0; /* Iniciar com opacidade 0 para o conteúdo */
    animation: fadeInContent 1.5s ease-out forwards;
}

/* Estilo para o texto de status de download */
.download-status {
    margin: 0;
    font-size: 16px;
    color: #ffffff;
}

/* Estilo para o botão de download */
.download-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: background 0.4s ease-in;
    color: #ffffff; /* Cor do texto */
    font-weight: bold;
    padding: 5px 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, color 0.3s; /* Transição suave */
}

/* Estilo para o ícone dentro do botão */
.download-button svg {
    width: 16px;
    fill: white;
    height: 16px;
    margin-right: 5px; /* Espaçamento entre o ícone e o texto */
}

/* Estilo para o botão de download quando não disponível */
.download-button.not-available {
    background-color: #f8d7da; /* Cor de fundo para não disponível */
    color: #721c24; /* Cor do texto para não disponível */
    border-color: #f5c6cb; /* Borda para não disponível */
}

.download-button.not-available svg {
    fill: #721c24; /* Cor do ícone para não disponível */
}

#reloadButton:hover{
    background: rgba(255, 255, 255, 0.089);
    color: #ffffff;
    text-decoration: none;
}

/* Estilo para hover no botão de download */
.download-button:hover {
    background: rgba(255, 255, 255, 0.089);
    color: #ffffff;
    text-decoration: none;
}



@keyframes fadeInContent {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.share-submenu {
    display: none;
    position: absolute;
    border-radius: 5px;
    top: 70px;
    cursor: pointer;
    right: 10px;
    background: #1d1d1df7;
    color: white;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.info_video_container_label{
    color: white;
    font-family: sans-serif;
    font-weight: 700;
    font-size: 25px;
}

.info_video_container{
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-modal {
    position: fixed;
    bottom: 20px;
    top: 15%;
    left: 20px;
    width: 300px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform: translateX(100%);
    opacity: 0;
    z-index: 9999 !important;
    border-radius: 5px;
    max-height: 62px;
}

.custom-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;
}

.custom-modal-content.error {
    background-color: #f14e4e;
}

.custom-modal-content.success {
    background-color: #2bd22b;
}

.custom-modal.show {
    transform: translateX(0);
    opacity: 1;
    max-height: 62px;
}

.custom-close-button {
    float: right;
    font-size: 20px;
    cursor: pointer;
}

#custom-modal-message {
    color: white;
    margin: 0;
    font-size: 16px;
}



.souso-compartillhar:hover{
    color: rgba(255, 255, 255, 0.472);
}
.souso-compartillhar{
    transition: color 0.3s ease;
    display: flex;
    position: absolute;
    align-self: end;
    cursor: pointer;
}
.share-submenu:hover{
    background: #323232f7;
}

.share-submenu a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.share-submenu a:hover {
    background-color: #575757;
}
.reloadButton i{
    color: rgba(255, 255, 255, 0.734);
}

#reloadButton{
    cursor: pointer;
    animation: fadeInContent 1.5s ease-out forwards;
    border: none;
    transition: 0.4s ease-in;
    background: transparent;
    width: 100%;
    background-size: 300% 300%;
    padding: 11px;
    color: rgba(255, 255, 255, 0.734);
}
.nav-souso-3-site-nome-1{
    font-weight: bold;
    font-family: sans-serif;
    cursor: pointer;
    left: 20px;
    font-size: 25px;
    position: relative;
    color: white;
}

#animeVideo{
    border-radius: 10px;
    width: 100%;
}
/* Adicione seu CSS aqui */
.souso-conteudo-detalhes-1 {
    display: flex;
    justify-content: center;
    margin-top: 10%;
    background: transparent;
    position: relative;
    display: flex;
    margin: 10px;
    flex-wrap: wrap;
    gap: 20px;
}
.capa-container {
    text-align: center;
    align-content: center;
    flex: 1;
    max-width: 300px; /* Ajuste conforme necessário */
}

.back-links {
    margin-top: 10px;
    color: white;
    cursor: pointer;
    font: none;
    list-style: none;
    display: flex;
    text-decoration: none;
}


.back-links p {
    color: white;
    cursor: pointer;
    font: none;
    list-style: none;
    display: flex;
    text-decoration: none;
}

.souso-sociais{
    justify-content: right;
    display: flex;
    margin-top: 10px;
}

.back-links p a {
    font-size: 12px;
    color: white;
    cursor: pointer;
    font: none;
    list-style: none;
    display: flex;
    text-decoration: none;
}

.capa-container img {
    width: 100%;
    height: auto;
}
.info-container {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.controle-proximo{
    transition: background 5s, color 0.3s;
    background: #4d4d4d3b;
    border-radius: 0px;
}

.controle-anterior{
    transition: background 5s, color 0.3s;
    background: #4d4d4d3b;
    border-radius: 0px;
}
.split-text {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 4px;
    flex-direction: column;
    margin-bottom: 10px;
}

.split-text span {
    flex: 1;
    color: white;
    font-size: 12px;
}
.titulo-container {
    overflow: hidden;
    max-width: 100%;
    color: white;
}
.extra-info {
    font-size: 13px;
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-postado{
    color: rgb(119, 119, 119);
    font-size: 14px;
    margin-left: 3px;
    font-family: sans-serif;
}

.view-container i{
    margin-right: 3px;
}



.info-postado i{
    margin-right: 4px;
}
.souso-component-1 i{
    color: rgb(119, 119, 119);
}
.souso-component-1 {
    display: flex;
    flex-direction: column; /* Alinha os elementos verticalmente */
    align-items: start; /* Centraliza os elementos horizontalmente */
    text-align: center; /* Alinha o texto centralmente */
    margin-top: 20px; /* Ajuste de margem superior, se necessário */
}


 


.sinopse-container{
    padding: 0.5rem;
    overflow: auto;
    height: 105px;
    margin: 1rem 20px;
    font-size: 14px;
    color: white;
}

.capa-container img{
    object-fit: cover;
    width: 174px;
    height: 280px;
    border-radius: 5px;
    transition: all 0.3s ease 0s;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 20px 0px, rgba(0, 0, 0, 0.12) 0px 0px 2px 0px;
}

.conteudo{
    position: absolute;
    top: 10%;
}

.episodios-container{
    border-radius: 3px;
    background: #0201015f;
    width: auto;
    padding: 130px;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 0.62rem;
    flex-wrap: wrap;
    position: relative;
}
.episodio-capa {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: relative;
    overflow: hidden;
}

.container-tags h2{
    font-weight: bold;
    color: white;
    font-size: 15px;
}
.episodio-card{
    height: 200px;
    margin-bottom: 5px;
    border-radius: 5%;
    padding: 10px;
    background-color: rgba(20, 20, 20, 0.8);
    text-align: center;
    width: 150px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.episodio-card img:hover{
    transform: scale(1.1); /* Aplica o zoom na imagem ao passar o mouse */
}

.container-ads {
    color: white;
    display: flex;
    margin-top: 5%;
    font-weight: 700;
    gap: 10px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}


.episodio-card h3 {
    cursor: pointer;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    width: 130px;
    align-content: center;
    border-radius: 3px;
    background: linear-gradient(87deg, #2721275e 0, #716b6b26 100%);
    cursor: pointer;
    color: rgb(255, 255, 255);
    text-overflow: ellipsis;
    height: 50px;
    font-size: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.episodio-card p {
    cursor: pointer;
    margin: 0;
}

.episodio-card img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.filtros-container {
    max-width: 15%;
    outline: none;
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

#pesquisar-episodio {
    color: white;
    outline: none;
    background-color: transparent;
    border: 1px solid rgb(48, 48, 48);
    padding: 5px;
    font-size: 16px;
    flex: 1;
}
/* Estilos para o modal */
#continueModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semitransparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Garantir que fique no topo */
}

.content-label-checkbox{
    margin-top: 15px;
}

/* Estilos para o conteúdo do modal */
.modal-content-save-video {
    background-color: rgba(20, 20, 20, 0.8);
    padding: 20px;
    border: 4px solid #6f6f6f57;
    width: 400px;
    border-radius: 10px 10px / 10px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease;
}

/* Estilo para o texto dentro do modal */
.modal-content-save-video p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff; /* Cor do texto */
}

/* Estilos para os botões */
.modal-content-save-video button {
    background-color: #ff530d; /* Cor de fundo do botão */
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.modal-content-save-video button:hover {
    background-color: #e04b0d; /* Cor de fundo ao passar o mouse */
}

/* Animação de fade-in para o modal */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
#filtrar-episodios {
    max-width: 20%;
    border-radius: 3px;
    flex-direction: row-reverse;
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: transparent;
    cursor: pointer;
    color: white;
    border: none;
    padding: 10px;
    position: relative;
}

#filtrar-episodios:hover{
    background: #5a2e98;
    transition: background 500ms ease-in-out;
}

.container-detalhes-tags h1{
    font-size: 10px;

}

#videoContent iframe{
    border-radius: 10px !important;
    height: 500px;
}

#videoContent {
    height: auto;
}

.souso-header-1{
    padding: 30px;
    top: 100px;
    position: relative;
}

.souso-header-component{
    text-align: center;
    font-size: 14px;
    color: white;
}

.souso-header-component p{
    margin-top: 0;
    margin-bottom: 1rem;
}

.Parceiros{
    white-space: nowrap;
}

.Parceiros i{
   cursor: pointer;
   list-style-type: none;
   text-decoration: none;
   outline: none;
   list-style: none;
   color: white;
}
.nav-souso-1-btn-recolhimento{
    display: none;
}
  
.Parceiros i a{
    cursor: pointer;
    list-style-type: none;
    text-decoration: none;
    outline: none;
    list-style: none;
    color: #ffbb1c;
}

.div-souso-3-barra-lateral {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 300px; /* Defina a largura do menu lateral */
    background: #000000eb;
    z-index: 900;
    transform: translateX(-100%); /* Inicialmente fora da tela */
    transition: transform 0.3s ease-in-out; /* Transição suave */
    overflow-y: auto;
}

.div-souso-3-barra-lateral.show {
    transform: translateX(0); /* Visível na tela */
}

.body-no-scroll {
    overflow: hidden;
}

.ri-close-line{
    cursor: pointer;
    font-size: 45px;
    border: none;
    background-color: transparent;
    border: 1px white;
    color: white;
}

.div-souso-3-barra-lateral {
    display: none;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 900;
    height: 100%;
    width: 100%;
    background: #000000eb;
    padding-top: 20px;
}

.conteudo,
.div-souso-3-barra-lateral,
.nav-souso-1{
    right: 0;
    left: 0;
    width: 100%; /* Você pode ajustar isso para uma largura fixa desejada, por exemplo: 800px; */
    max-width: 2000px; /* Largura máxima para evitar que se estenda indefinidamente */
    margin: 0 auto; /* Centraliza o conteúdo */
    padding: 20px;
    box-sizing: border-box; /* Garante que o padding não incremente a largura total */
}

.submenu {
    display: none;
    list-style-type: none;
    padding-left: 20px;
}

.ul-souso-3-barra-lateral li:hover .submenu {
    display: block;
}

.submenu li {
    padding: 5px 0;
}

.submenu li a {
    color: white;
    text-decoration: none;
}

.submenu li a:hover {
    color: #ccc;
}


.ul-souso-3-barra-lateral a{
    color: white;
    list-style-type: none;
    text-decoration: none;
    outline: none;
    list-style: none;
}


.ul-souso-3-barra-lateral li:hover .submenu {
    display: block;
}

.ul-souso-3-barra-lateral {
    right: 40px;
    position: relative;
    top: 40px;
    float: right;
    list-style-type: none;
    padding: 0;
}

.ul-souso-3-barra-lateral :hover {
    transition: color 0.4s ease;
    color: rgba(255, 255, 255, 0.741);
}

.souso-component-div{
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    justify-content: space-between;
    display: flex;
}

.ul-souso-3-barra-lateral li {
    transition: color 0.4s ease;
    padding: 10px;
    text-align: left;
    list-style: none;
}

.view-container{
    color: rgb(119, 119, 119);
    font-size: 14px;
    font-family: sans-serif;
}

.capa-resultados img {
    user-select: none;
}


.ul-souso-3-barra-lateral{
    transition: color 0.4s ease;
    list-style: none;
    text-decoration: none;
}

.ul-souso-3-barra-lateral :hover {
    transition: color 0.4s ease;
    color: rgba(255, 255, 255, 0.741);
}

.mascot{
    z-index: 100;
    position: absolute;
    right: 0;
    bottom: 0;
    background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiAWkPOxJVqkc0xIyKBoulfxbN9BXFI1j6jQMc9SnV2HjiESbR7VvDZM6FheAGZ86P57AnIEhX0Wy8HFw0xkd8lGV4svCOHtD9oecMQr22ItBvEVrLcJMixvPtvN31uIZZY-z0clWZD4iPkQ8A7Gpo_JkJkI9tW0dOvw9nmT1Lr1znL3xKJaLbq49s_Yw/s1600/IMG_20220521_032343.png);
    background-size: contain;
    width: 260px;
    height: 370px;
    background-repeat: no-repeat;
}



.ul-souso-3-barra-lateral li a {
    text-decoration: none;
    margin: 3px;
    list-style: none;
    color: white;
    display: block;
    transition: color 0.4s ease;
}

.ul-souso-3-barra-lateral li a:hover {
    color: rgba(255, 255, 255, 0.741);
}

.souso-titulo-episodio{
    width: 100%;
    padding: 5px;
    background: #05164f8d;
    color: rgb(255, 255, 255);
    border-radius: 10px;
}

.container-detalhes-ep{
    width: 100%;
    margin: 5px;
    padding: 10px;
}

.container-detalhes-ep h2{
    font-size: 13px;
}
.souso-titulo-episodio {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 8px;
    background: transparent;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.souso-conteudo-dealhes-visu{
    position: relative;
    margin-top: 5%;
}
.souso-titulo-episodio-capa {
    flex-shrink: 0;
    margin-right: 15px;
    position: relative;
}
.souso-titulo-episodio-capa img {
    cursor: pointer;
    margin: 5px;
    height: 100px;
    width: auto;
    border-radius: 4px;
}
.cookie-popup {
    user-select: none; /* Evita a seleção de texto */
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #000000ed;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
.cookie-popup p a {
    user-select: none; /* Evita a seleção de texto */
    color: rgb(106 6 213 / 95%);
    font-weight: 700;
}

.cookie-popup p {
    user-select: none; /* Evita a seleção de texto */
    color: white;
}

#accept-cookies {
    user-select: none; /* Evita a seleção de texto */
    background-color: rgb(106 6 213 / 95%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 60px;
    cursor: pointer;
}
.souso-titulo-episodio-titulo{
    font-size: 80%;
    flex: 1;
}

.souso-titulo-episodio-titulo strong{
    font-size: 20px;
}

.episodios-container p{
    color: white;
}

.container-episodio-views-link{
    display: flex;
    justify-content: center;
}

.titulo-container .titulo{
    font-size: 25px;
}

.container-capa-ep-views-link{
    cursor: pointer;
    display: flex;
    justify-content: center;
}
.container-capa-ep-views-link img{ 
    border: 3px solid #33333396;
    width: 95%;
    height: auto;
}

.container-capa-ep-views-link{
    width: 80%;
    height: auto;
}

#souso-titulo-episodio-nome{
    cursor: pointer;
}

.episodios-detalhes-visu{
    width: 100%;
}

.container-tags{
    opacity: 0.4;
}

.container-controles-souso {
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
}

.container-controles-souso a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* Estilo geral dos botões */
.btn {
    padding: 5px 10px;
    margin: 5px;
    border: 1px solid #cccccc7d;
    background-color: transparent;
    color: #cccccc7d;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.4s ease-in-out, color 0.4s ease-in-out;
}

/* Estilo quando o botão estiver "ativo" */
.btn.active {
    background: var(--color-buttom-terciary); /* Cor de fundo verde */
    color: white; /* Cor do texto branco */
    border-color: var(--color-input-defalt); /* Borda correspondente à cor de fundo */
}

/* Efeito hover para os botões */
.btn:hover {
    color: var(--color-input-defalt);
    background: rgb(146 175 211 / 1);
}

.component-souso-xcsdw{
    background-color: rgba(0, 0, 0, 0.35);
    margin-top: 0.5rem;
    padding: 0.35rem;
    display: flex;
    align-items: center;
    border-radius: 8px;
    font-size: 16px;
    justify-content: space-between;
}

.container-controles-souso .controle-anterior,
.container-controles-souso .controle-proximo,
.container-controles-souso .controle-menu {
    transition: background 0.4s, color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    color: #ffffff;
    font-size: 20px;
    padding: 10px;
}
.lista-de-favoritos{
    transition: color 0.4s ease;
    cursor: pointer;
    padding: 10px;
    align-items: center;
    display: flex;
    color: white;
    justify-content: right;
}
.container-controles-souso .controle-anterior span,
.container-controles-souso .controle-proximo span {
    font-size: 12px;
    margin-top: 5px;
}
.ul-souso-3-barra-lateral a.active {
    position: relative;
    background: linear-gradient(87deg, #ff5a00 0%, #ffad42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: background 0.5s ease, -webkit-background-clip 0.5s ease, -webkit-text-fill-color 0.5s ease;
}
.ul-souso-3-barra-lateral a.active::after {
    border-radius: 5px 4px 0 0;
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px; /* Mantém a altura da barra constante */
    background: linear-gradient(87deg, #b94100 0%, #ff9100 100%);
    transition: background 0.5s ease;
}

.ul-souso-3-barra-lateral a.active:hover {
    background: linear-gradient(87deg, #e55a00 0%, #f8a042 100%); /* Gradiente escurecido para hover */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.ul-souso-3-barra-lateral a.active:hover::after {
    background: linear-gradient(87deg, #a94100 0%, #d58100 100%); /* Gradiente escurecido para hover */
}
.controle-menu{
    background: linear-gradient(87deg, #ff5a00 0, #c97200 100%);
}
.container-controles-souso .controle-anterior:hover,
.container-controles-souso .controle-proximo:hover{
    transition: background 4ms, color 0.3s; /* Transições suaves para mudanças de background e color */
    background: #4d4d4dc4; /* Fundo com gradiente linear */
    color: #979797cd; /* Cor do texto */
}
.show-comments {
    cursor: pointer;
    border: none;
    color: white;
    background: linear-gradient(135deg, #3a3a3a54, #23232369);
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    gap: 10px;
    transition: background 2s ease, box-shadow 2s ease, transform 0.5s ease;
}
.show-comments:hover {
    background: linear-gradient(135deg, #343434bf, #2b2b2ba5);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.show-comments:active {
    transform: translateY(2px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

#seçao_comentarios{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#disqus_thread {
    width: 80%; /* Defina a largura desejada, por exemplo, 80% */
    margin: 0 auto; /* Isso centralizará o elemento horizontalmente na página */
    margin-top: 150px; /* Adiciona uma margem superior de 150px */
}

.souso-container-resultado{
    border-radius: 3px;
    background: #222020a6;
    width: auto;
    padding-top: 30px;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 0.62rem;
    flex-wrap: wrap;
    position: relative;
}

.catalog-item{
    height: 280px;
    margin-bottom: 5px;
    border-radius: 5%;
    padding: 10px;
    background-color: rgba(20, 20, 20, 0.8);
    text-align: center;
    width: 150px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.catalog-item img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.catalog-item img:hover{
    transform: scale(1.1); /* Aplica o zoom na imagem ao passar o mouse */
}

.catalog-item h3{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    width: 130px;
    align-content: center;
    border-radius: 3px;
    background: linear-gradient(87deg, #2721275e 0, #716b6b26 100%);
    cursor: pointer;
    color: rgb(255, 255, 255);
    text-overflow: ellipsis;
    height: 50px;
    font-size: 11px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capa-resultados{
    height: 250px;
    object-fit: cover;
    position: relative;
    overflow: hidden;
}
.div-souso-header-component-name{
    display: flex;
    justify-content: center;
}
.terno-pesquisado{
    color: white;
}

.nav-souso-3-site-nome-1 a{
    color: white;
    list-style: none;
    text-transform: uppercase;
    text-decoration: none;
}

.container-detalhes-ep p{
    font-size: 10px;
}

.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;
}

@keyframes rotate {
    100% { transform: rotate(360deg) }
}

@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) }
}
.container-caoa-titulo{
    width: 100%;
    margin: 5px;
    padding: 10px;
    display: flex;
}

.tags{
    display: none;
    color: white;
    margin: 70px;
    padding: 10px;
    height: auto;
    margin-top: 100px;
}
/* Posiciona o spinner no canto superior direito */
.spinner-container {
    position: fixed;
    top: 100px;
    display: none;
    left: 30px;
    color: rgba(255, 255, 255, 0.185);
    margin: 1rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Estiliza o spinner */
.spinner-container svg {
    width: 2rem; /* Ajusta o tamanho do spinner */
    height: 2rem;
    animation: spin 0.2s linear infinite; /* Animação de rotação contínua */
    fill: #ff9913; /* Cor do spinner, você pode ajustar conforme necessário */
}

/* Define a animação de rotação */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Oculta o texto para leitores de tela */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.tag{
    font-weight: bold;
    font-size: 15px;
}

.container-detalhes-tags{
    margin-top: 5px;
}

.container-detalhes-tags span{
    font-weight: bold;
}

.container-detalhes-Sinopse span{
    font-weight: bold;
}

.container-detalhes-ep hr{
    width: 100%;
}


.container-souso{
    width: 100%;
}
@media only screen and (max-width: 768px) {
    .container-detalhes-Sinopse{
        overflow: overlay;
        max-height: 70px;
    }
    .container-detalhes-tags {
        overflow: hidden;
        max-height: 60px;
        margin-top: 5px;
        font-size: 10px;
    }

    #videoContent iframe{
        height: 200px;
    }
    
    .nav-souso-1 {
        transition: height 0.2s linear;
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 20px;
        height: auto;
    }
    #errorDescription {
        width: 100%;
        color: white;
        outline: none;
        resize: none;
        border: none;
        height: 100px;
        background: var(--color-input-defalt);
        margin-top: 10px;
        padding: 10px;
        border-radius: 4px;
        box-sizing: border-box;
    } 
    .nav-souso-1-btn-recolhimento{
        display: block;
    }
    .nav-souso-1-botao-lateral-1, .nav-souso-1-btn-recolhimento a {
        background: none;
        border: none;
        margin-top: 10px;
        color: white;
        font-size: 24px;
        cursor: pointer;
    }
    .expanded .nav-souso-1-btn-recolhimento {
        margin-top: -60px;
        transform: rotate(180deg);
    }

    .mascot{
        display: none;
    }
    .split-text {
        width: 100%;
        display: flex;
        justify-content: space-between;
        gap: 4px;
        flex-direction: column;
        margin-bottom: 10px;
    }
    .nav-souso-0 {
        display: flex;
        align-items: baseline;
        width: 60%;
        justify-content: center;
        margin-bottom: 10px;
    }

    .nav-souso-1-botao-lateral {
        position: absolute;
        top: 10px;
    }
    .modal-error-ep.show {
        top: 25%;
        display: block;
        opacity: 1;
    }
    .nav-souso-3-site-nome{
        width: 100%;
    }
    .div-souso-4 {
        margin-top: 120px;
        color: white;
        text-align: center;
    }
    .div-souso-2-titulo h2 i{
        margin-right: 10px;
        color: #ffffff;
    }
    .div-souso-4 h2{
        white-space: nowrap;
        font-size: 20px;
    }

    .div-souso-2-titulo h2{
        white-space: nowrap;
        font-size: 18px;
    }
    .souso-titulo-episodio-titulo {
        top: 0;
        display: flex;
        /* margin: 0; */
        flex-flow: column;
        align-self: baseline;
        font-size: 70%;
        position: relative;
    }
    
    #souso-titulo-episodio-nome {
        margin: 0;
        color: #ffffff99;
        cursor: pointer;
    }
    .souso-titulo-episodio {
        display: flex;
        align-items: center;
        padding: 5px;
        border-radius: 8px;
        background:  transparent;
        margin-bottom: 0px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }



    .container-tags{
        display: flex;
        text-align: center;
    }
    .back-links p a {
        font-size: 12px;
        color: white;
        cursor: pointer;
        font: none;
        list-style: none;
        display: flex;
        text-decoration: none;
    }
    .back-links p {
        color: white;
        cursor: pointer;
        margin: 0;
        font: none;
        list-style: none;
        display: flex;
        text-decoration: none;
    }

    .back-links {
        margin-top: 10px;
        color: white;
        cursor: pointer;
        font: none;
        flex-direction: column;
        list-style: none;
        display: flex;
        text-decoration: none;
    }
    .titulo-container .titulo {
        font-size: 18px;
    }
    .ul-souso-3-barra-lateral {
        right: 0px;
        position: relative;
        top: 180px;
        float: right;
        list-style-type: none;
        padding: 0;
    }
    .container-caoa-titulo{
        width: 90%;
        margin: 5px;
        padding: 10px;
        display: flex;
    }
    

    .episodios-container {
        border-radius: 3px;
        background: #0201015f;
        width: auto;
        align-items: center;
        display: flex;
        padding: 0px;
        justify-content: center;
        gap: 0.62rem;
        flex-wrap: wrap;
        position: relative;
    }
    .container-capa-ep-views-link img{ 
        width: 95%;
        border: 3px solid #fe8b00;
        height: auto;
    }

    .container-souso-bax span{
        font-size: 13px;
    }
    .nav-souso-3-site-nome-1 {
        margin: 10px;
        justify-content: center;
        cursor: pointer;
        font-size: 18px;
        left: 0px;
        display: flex;
        align-items: center;
        position: relative;
        color: white;
    }

    
    .div-souso-3-barra-lateral {
        width: 100%;
    }
    .div-souso-2 {
        margin: 0px;
        margin-top: 250px;
        position: relative;
    }
    .nav-souso-2 {
        width: 100%;
        position: relative;
        margin-top: 50px;
        justify-content: center;
    }
    #reloadButton:hover{
        background: rgba(255, 255, 255, 0.027);
        color: #ffffff;
        text-decoration: none;
    }
    .download-button:hover {
        background: rgba(255, 255, 255, 0.027);
        color: #ffffff;
        text-decoration: none;
    }
    .loading-video-souso-component {
        position: absolute;
        justify-content: center;
        flex-direction: column;
        top: 50%;
        min-height: 200px;
        width: 100%;
        background: black;
        align-items: center;
        border-radius: 10px;
        left: 50%;
        align-content: center;
        flex: 1;
        height: 100%;
        transform: translate(-50%, -50%);
        text-align: -webkit-center;
        font-family: Arial, sans-serif;
        color: #fff;
        z-index: 2;
    }
    
    .loader {
        font-size: 5px; /* Tamanho reduzido */
        width: 7px; /* Largura menor */
        height: 7px; /* Altura menor */
        border-radius: 50%;
        position: relative;
        text-indent: -9999em;
        animation: mulShdSpin 0.7s infinite ease;
        transform: translateZ(0);
      } 
    .container-detalhes-ep{
        padding: 0;
        margin: 0;
    }
    .conteudo {
        padding: 0px;
        position: absolute;
        top: 10%;
    }
    .component-botao-ver-todos a{
        padding-top: 7px;
        padding-right: 7px;
        color: white;
        text-decoration: none;
        cursor: pointer;
        outline: none;
        list-style: none;
        font-size: 16px;
        font-weight: 400;
        border: none;
        background-color: #242428;
        display: flex;
        justify-content: end;
    }
    .nav-souso-2-component-pesquisa-campo {
        height: 50px;
        width: calc(100% - 60px); /* Espaço suficiente para o padding e o botão de pesquisa */
    }
    .container-souso-bax {
        margin-bottom: 30px;
    }
    .nav-souso-2-component-pesquisa {
        width: 100%;
        justify-content: center;
    }
    .loading-text {
        margin-bottom: 2rem;
        font-size: 1.0em;
        animation: blink 1.5s infinite;
    }
    .container-controles-souso .controle-anterior,
    .container-controles-souso .controle-proximo,
    .container-controles-souso .controle-menu {
        transition: background 0.4s, color 0.3s;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 50px;
        color: #ffffff;
        font-size: 20px;
        padding: 10px;
    }
    .custom-modal {
        position: fixed;
        bottom: 20px;
        top: 31%;
        right: 20px;
        width: 300px;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        transform: translateX(100%);
        opacity: 0;
        z-index: 1000;
        border-radius: 5px;
        max-height: 62px;

    }
    .nav-souso-1-botao-lateral {
        display: flex;
        right: 3%;
        margin-left: auto;
        align-items: baseline;
        text-align: right;
        position: absolute;
        top: 0px;
    }

    .souso-conteudo-detalhes-1 {
        margin-top: 10%;
        background: transparent;
        position: relative;
        display: flex;
        margin: 0px;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 200px;
    }

    .container-souso {
        width: 95%;
    }
    .extra-info div{
        margin-left: 10px;
    }
    .capa-container {
        padding-top: 30px;
        text-align: center;
        align-content: center;
        flex: 1;
        max-width: 100%;
    }
    .container-controles-souso {
        background-color: transparent;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 25px;
        margin-left: 10px; 
        margin-right: 10px; 
    }
    .episodios-container {
        border-radius: 3px;
        background: #0201015f;
        width: auto;
        align-items: center;
        display: flex;
        padding: 15px;
        justify-content: center;
        gap: 0.62rem;
        flex-wrap: wrap;
        position: relative;
    }
    .spinner-container {
        position: fixed;
        top: 230px;
        display: none;
        left: 30px;
        color: rgba(255, 255, 255, 0.185);
        margin: 1rem;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .sinopse-container {
        padding: 0.5rem;
        overflow: auto;
        height: 105px;
        margin: 1rem 5px;
        font-size: 12px;
        color: white;
    }
    .titulo-container {
        font-size: 10px;
        text-align: center;
        color: white;
    }

    .container-detalhes-tags h1 {
        font-weight: 100;
        font-size: 10px;
    }
    .modal-content-save-video {
        margin-top: 100px;
        background-color: rgba(20, 20, 20, 0.8);
        padding: 20px;
        border: 4px solid #6f6f6f57;
        width: 300px;
        border-radius: 10px 10px / 10px;
        text-align: center;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        animation: fadeIn 0.3s ease;
    }

    .modal {
        position: fixed;
        bottom: 20px;
        top: 230px;
        right: 20px;
        width: 300px;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        transform: translateX(100%);
        opacity: 0;
        z-index: 1000;
        border-radius: 5px;
        max-height: 62px;
    }
    .filtros-container {
        margin-top: 20px;
        padding-right: 80%;
        max-width: 100%;
        outline: none;
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
        padding-left: 10px;
    }
    .container-capa-ep-views-link {
        width: 100%;
        height: auto;
    }
    .container-controles-souso .controle-anterior,
    .container-controles-souso .controle-proximo {
        display: flex;
        border: none;
        justify-content: center;
        align-items: center;
        width: 100%;
        border-radius: 3px;
        height: 50px;
        color: #ffffff;
        font-size: 15px;
        transition: background-color 0.3s, color 0.3s;
        padding: 10px;
    }

    .controle-menu{
        background: linear-gradient(87deg, #ff5a00 0, #c97200 100%);
    }
    .container-controles-souso .controle-anterior:hover,
    .container-controles-souso .controle-proximo:hover {
        background: #4d4d4dc4;
        color: #fff;
    }
    .extra-info {
        width: 100%;
        font-size: 13px;
        overflow: hidden;
        color: white;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
}













