@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700&display=swap');

:root {
    --main-bg-color: #fff;
    --second-bg-color: #111;
    --third-bg-color: #111;
    --fourth-bg-color: #1f1f1f;
    --primary: #c50f28;
    --primary-hover: #b00b21;
    --secondary: #7c1235;
    --font: 'Montserrat', Arial, sans-serif;
    --trasition: .2s all ease-in-out;
    --plyr-color-main: red;
}

/* Scrollbar do Site (Global) */
html::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
html::-webkit-scrollbar-track {
    background: #0d0d0d;
}
html::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--primary);
    border: 2px solid #0d0d0d;
}
html::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #0d0d0d;
}

/* Sidebar Loading */
.sidebar-loading-wrapper {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, .9);
    font-family: var(--font);
}
.sidebar-loading-wrapper i {
    font-size: 26px;
    display: inline-block;
    animation: rotateLoader 1s linear infinite;
    margin-bottom: 8px;
    color: var(--primary);
}
.sidebar-loading-wrapper span {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .06em;
    opacity: .7;
}

/* Preloader */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--third-bg-color);
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	z-index: 2000;
}
.spinner-dots {
	width: 70px;
	text-align: center;
}
.spinner-dots span {
	width: 12px;
	height: 12px;
	background-color: var(--fourth-bg-color);
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: spinner-dots 1.4s infinite ease-in-out both;
	animation: spinner-dots 1.4s infinite ease-in-out both;
}
.spinner-dots .dot1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
.spinner-dots .dot2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
@-webkit-keyframes spinner-dots {
	0%, 80%, 100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	40% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes spinner-dots {
	0%, 80%, 100% {
	-webkit-transform: scale(0);
	transform: scale(0);
	}
	40% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

/* HTML */
body {
    margin: 0;
    padding: 0;
    background: var(--third-bg-color);
    font-family: var(--font);
    color: var(--main-bg-color);
}
a {
    color: inherit;
    text-decoration: none;
}
* {
    box-sizing: border-box;
    outline: none;
}
img {
    max-width: 100%;
}
.poster-image[hidden],
.poster-fallback[hidden] {
    display: none !important;
}
.poster-fallback {
    width: 100%;
    height: 100%;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px;
    background: linear-gradient(145deg, #161616, #090909);
    color: rgba(255, 255, 255, .48);
    text-align: center;
}
.poster-fallback svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.poster-fallback span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* Especiais */
.mwidth {
    max-width: 1290px;
    padding: 0 10px;
    margin: auto;
}
.mauto {
    margin: auto;
}
.mtop {
    margin-top: 10px;
}
.mtop_20 {
    margin-top: 20px;
}
.mtop_30 {
    margin-top: 30px;
}
.mbottom {
    margin-bottom: 10px;
}
.mbottom_20 {
    margin-bottom: 20px;
}
.mbottom_30 {
    margin-bottom: 30px;
}
.tWrap {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.dontShow {
    display: none!important;
}
.fullScreen {
    width: 100%;
    min-height: 100vh;
}
.justMobile {
    display: none;
}
.hidden {
    display: none;
}

/* Flexbox Framework (Lancaster.io) */
.fbox {
    display: flex;
}
.fbox_inline {
    display: inline-flex;
}
.fbox_column {
    flex-direction: column;
}
.fbox_align_center {
    align-items: center;
}
.fbox_space_between {
    justify-content: space-between;
}
.fbox_center {
    justify-content: center;
}
.fbox_right {
    justify-content: flex-end;
}
.fbox_left {
    justify-content: flex-start;
}
.fbox_start {
    align-items: flex-start;
    align-content: flex-start;
}
.fbox_wrap {
    flex-wrap: wrap;
}

/* Icons */
.lio-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + 0.1px), calc(-50% + 0.1px));
}

/* Header */
.header {
    background: var(--second-bg-color);
    height: 120px;
}
.header .mwidth {
    position: relative;
    height: 120px;
}
.logo {
    width: 250px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.logo_natal {
    margin-top: -10px;
}
.logo img {
    width: 100%;
    height: 100%;
    display: block;
}
.menuIconMobile {
    padding: 8px 5px;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 4px;
}
.menuIconMobile.active {
    background: var(--fourth-bg-color);
}
.menuIconMobile.active .menuTop,
.menuIconMobile.active .menuCenter,
.menuIconMobile.active .menuBottom {
    background: rgb(197,15,40);
    background: linear-gradient(90deg, rgba(197,15,40,1) 0%, rgba(124,18,53,1) 100%);
}
.menuIconMobile.active .menuTop {
    margin-left: 20px;
}
.menuIconMobile.active .menuBottom {
    margin: 0;
}
.menuIconMobile .menuTop,
.menuIconMobile .menuCenter,
.menuIconMobile .menuBottom {
    width: 40px;
    height: 5px;
    background: rgb(197,15,40);
    background: linear-gradient(90deg, rgba(197,15,40,1) 0%, rgba(124,18,53,1) 100%);
    border-radius: 2px;
    margin-bottom: 5px;
    transition: var(--trasition);
}
.menuIconMobile .menuTop {
    width: 20px;
}
.menuIconMobile .menuBottom {
    width: 20px;
    margin-left: 20px;
    margin-bottom: 0;
}
.mainMenu {
    position: absolute;
    width: 300px;
    background: var(--fourth-bg-color);
    left: 10px;
    top: 95px;
    z-index: 9;
    padding: 7px;
    border-radius: 6px;
    display: none;
}
.mainMenu::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--fourth-bg-color);
    position: absolute;
    top: -8px;
    left: 15px;
}
.mainMenu a {
    display: flex;
    padding: 10px;
    align-items: center;
    margin-bottom: 5px;
    border-radius: 4px;
    transition: var(--trasition);
}
.mainMenu a:last-child {
    margin-bottom: 0;
}
.mainMenu a:hover {
    background: rgba(255, 255, 255, .03);
}
.menuIcon {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    background: rgb(197,15,40);
    background: linear-gradient(90deg, rgba(197,15,40,1) 0%, rgba(124,18,53,1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}
.mainMenu .menuText {
    width: calc(100% - 55px);
    display: flex;
    flex-direction: column;
}
.mainMenu .menuText span {
    font-size: 10px;
}
.mainMenu .menuText .menuTitle {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
}
.searchContainerHeader {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 9;
}
.searchContainerHeader form {
    border: 1px solid rgba(255, 255, 255, .065);
    border-radius: 6px;
    overflow: hidden;
    background: var(--fourth-bg-color);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.searchContainerHeader form:focus-within {
    border-color: rgba(217, 0, 48, .68);
    box-shadow: 0 0 0 3px rgba(217, 0, 48, .1);
}
.searchContainerHeader form input {
    width: 205px;
    height: 38px;
    padding: 0 15px;
    border: none;
    background: transparent;
    color: #fff;
    font-family: var(--font);
    font-size: 12px;
}
.searchContainerHeader form input::placeholder {
    color: rgba(255, 255, 255, .32);
}
.searchButtonSend {
    height: 38px;
    width: 42px;
    background-color: var(--primary);
    font-size: 16px;
    cursor: pointer;
    border: none;
    color: #fff;
    transition: background-color .2s ease;
}
.searchButtonSend:hover {
    background-color: var(--primary-hover);
}
.searchResultsAjax {
    position: absolute;
    right: 0;
    width: 245px;
    top: 100%;
    background: var(--fourth-bg-color);
    display: none;
}
.searchResultsAjax a {
    background: rgba(255, 255, 255, .03);
    display: block;
    padding: 10px;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .02);
    transition: var(--trasition);
}
.searchResultsAjax a:last-child {
    border: 0;
}
.searchResultsAjax a:hover {
    background: rgba(255, 255, 255, .05);
    border-color: transparent;
}
.searchResultsAjax a.searchResultsAll {
    background: var(--primary);
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 10px;
}
.closeSearchBtn {
    position: fixed;
    top: 60px;
    right: 20px;
    color: #fff;
    background: var(--primary);
    width: 40px;
    height: 40px;
    z-index: 9;
    font-size: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    display: none;
}
.closeSearchBtn:hover {
    background: var(--primary-hover);
}
.search_mobile {
    display: none;
}
.closebutton {
    position: fixed;
    top: 50px;
    right: 20px;
    width: 40px;
    height: 40px;
    z-index: 100;
    transform: rotate(45deg);
    display: none;
}
.closeSquare {
    width: 10px;
    height: 10px;
    background: var(--fourth-bg-color);
    position: absolute;
    box-shadow: 0 0 3px rgba(0, 0, 0, .25);
}
.closeSquare:nth-child(1n+1) {
    top: 0;
    left: 0;
    display: none;
}
.closeSquare:nth-child(2n+2) {
    top: 0;
    left: 15px;
    display: block;
}
.closeSquare:nth-child(3n+3) {
    top: 0;
    left: 30px;
}
.closeSquare:nth-child(4n+4) {
    top: 15px;
    left: 0px;
}
.closeSquare:nth-child(5n+5) {
    top: 15px;
    left: 15px;
    display: block;
}
.closeSquare:nth-child(6n+6) {
    top: 15px;
    left: 30px;
}
.closeSquare:nth-child(7n+7) {
    top: 30px;
    left: 0px;
}
.closeSquare:nth-child(8n+8) {
    top: 30px;
    left: 15px;
}
.closeSquare:nth-child(9n+9) {
    top: 30px;
    left: 30px;
}

/* Microdados */
.microdados_home {
    margin-top: 10px;
    text-align: center;
    padding: 20px 0;
    background: rgba(255, 255, 255, .02);
    border-radius: 4px;
}
.microdados_home h1,
.microdados_home h2,
.microdados_episode h1,
.microdados_episode h2 {
    font-weight: 100;
    margin: 0;
    padding: 0;
    font-size: 15px;
}
.microdados_home h1,
.microdados_episode h1 {
    font-size: 18px;
    font-weight: 800;
    color: var(--fourth-bg-color);
}
.microdados_episode {
    margin-top: 10px;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, .02);
    border-radius: 4px;
}
.microdados_episode h1,
.microdados_episode h2 {
    max-width: 900px;
    margin: auto;
    font-size: 10px;
}

/* Header - Letras */
.containerLetras {
    background: rgba(255, 255, 255, .01);
    padding: 10px 0;
}
.containerLetras.rteam_preloader {
    padding: 0;
    height: 65px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.containerLetras.rteam_preloader i {
    position: absolute;
    font-size: 24px;
    animation: linear .5s rotateLoader infinite;
}
@keyframes rotateLoader {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
.containerLetras.rteam_preloader .mwidth {
    visibility: hidden;
}
.containerLetras a {
    width: 50px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    background: rgba(255, 255, 255, .01);
    display: inline-block;
    margin-right: 10px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    transition: var(--trasition);
}
.containerLetras a:hover, .containerLetras a.active {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
}

/* Index - Tabs */
.abasIndex {
    display: inline-block;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 5px;
}
.tabsContainers {
    position: relative;
}
.tabsContainers.rteam_preloader {
    height: 300px;
}
.tabsContainers.rteam_preloader .rteam_preloader_loader {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}
.tabsContainers.rteam_preloader .rteam_preloader_loader i {
    animation: linear .5s rotateLoader infinite;
}
.tabsContainers.rteam_preloader .aniSliderContainer {
    visibility: hidden;
}
.tabsContainers ul {
    background: var(--second-bg-color);
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}
.tabsContainers ul li {
    padding: 10px 20px;
    cursor: pointer;
    transition: var(--trasition);
}
.tabsContainers ul li.active, .tabsContainers ul li:hover {
    background: var(--fourth-bg-color);
    color: var(--second-bg-color);
}
.aniSliderContainer {
    display: none;
}
.aniSliderContainer.active {
    display: block;
    animation: fadeIn .5s ease forwards;
}
.aniSliderContainer .aniItem {
    width: 203px;
    height: 310px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.home-seo-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    padding: 15px 18px;
    background: linear-gradient(100deg, rgba(217, 0, 48, .14), rgba(255, 255, 255, .025) 55%, rgba(255, 255, 255, .015));
    border: 1px solid rgba(255, 255, 255, .07);
    border-left: 3px solid var(--primary);
    border-radius: 7px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, .14);
}
.home-seo-heading-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(217, 0, 48, .14);
    color: var(--primary);
    font-size: 22px;
}
.home-seo-heading-content {
    min-width: 0;
}
.home-seo-heading h1 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -.01em;
}
.home-seo-heading p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, .56);
    font-size: 12px;
    line-height: 1.55;
}

/* Flickity Modification */
.flickity-button {
    display: inline-flex!important;
    align-items: center!important;
    justify-content: center!important;
    width: 36px!important;
    height: 36px!important;
    top: -36px!important;
    right: 0!important;
    padding: 0!important;
    background: rgba(255, 255, 255, .045)!important;
    border: 1px solid rgba(255, 255, 255, .1)!important;
    border-radius: 7px!important;
    color: rgba(255, 255, 255, .72)!important;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .18)!important;
    transform: none!important;
    transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease!important;
}
.flickity-button:hover {
    background: var(--primary)!important;
    border-color: var(--primary)!important;
    color: #fff!important;
    box-shadow: 0 7px 20px rgba(217, 0, 48, .3)!important;
    transform: translateY(-2px)!important;
}
.flickity-button:focus {
    box-shadow: 0 0 0 3px rgba(217, 0, 48, .18)!important;
}
.flickity-button:disabled {
    opacity: .3!important;
    cursor: not-allowed;
    box-shadow: none!important;
    transform: none!important;
}
.flickity-button-icon {
    position: absolute!important;
    top: 50%!important;
    left: 50%!important;
    width: 14px!important;
    height: 14px!important;
    fill: currentColor!important;
    transform: translate(-50%, -50%)!important;
}
.flickity-prev-next-button.previous {
    left: auto!important;
    right: 58px!important;
}
.flickity-prev-next-button.next {
    right: 10px!important;
}

/* Loop - Anime */
.aniItem {
    width: calc(100% / 6 - 8.4px);
    height: 310px;
    margin-right: 10px;
    position: relative;
    overflow: hidden;
}
.aniStatusBox {
    position: absolute;
    top: 12px;
    left: 10px;
    background: var(--second-bg-color);
    padding: 10px 12px 8px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    z-index: 5;
}
.aniIcoPlay {
    background: var(--second-bg-color);
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    z-index: 5;
}
.aniItemImg {
    width: 100%;
    height: 100%;
}
.aniItemImg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.aniInfos {
    position: absolute;
    width: 100%;
    bottom: -17px;
    z-index: 2;
    padding: 0 10px;
    transition: var(--trasition);
}
.aniTitulo {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 0px;
}
.aniFormato {
    font-weight: 600;
    color: #27ae60;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 3px;
}
.aniEpis {
    font-weight: bold;
    font-size: 15px;
}
.aniItem:hover .aniInfos {
    bottom: 10px;
}

/* Loop - Lançamentos Nao Encontrados */
.notfounded_lancs {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-weight: 100;
    padding: 10px 0;
    font-size: 13px;
}

/* Loop - Anime Nao Encontrado */
.anime_not_found {
    text-align: center;
    font-style: italic;
    width: 100%;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    padding: 25px 0;
}

/* Index - Ultimos Episodios Adicionados */
.lastEpisodes {

}
.titleSection {
    background: var(--fourth-bg-color);
    display: inline-block;
    border-radius: 3px;
    overflow: hidden;
}
.titleSection h4 {
    margin: 0 15px 0 0;
    padding: 0;
    position: relative;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
}
.titleSection h4 i {
    font-weight: 400;
    font-size: 30px;
    margin-right: 10px;
    background: rgba(0, 0, 0, .2);
    padding: 5px 8px;
}
.titleSection-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.titleSection-wrapper .titleSection {
    display: inline-block;
}
.btn-ver-mais {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 110px;
    height: 40px;
    padding: 0 16px;
    overflow: hidden;
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 5px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(217, 0, 48, .16);
    transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.btn-ver-mais:hover,
.btn-ver-mais:focus-visible {
    background: #f20b40;
    border-color: #f20b40;
    color: #fff;
    box-shadow: 0 9px 24px rgba(217, 0, 48, .34);
    transform: translateY(-2px);
}
.btn-ver-mais:active {
    transform: translateY(0) scale(.98);
}
.btn-ver-mais i {
    font-size: 18px;
    line-height: 1;
    transition: transform .22s ease;
}
.btn-ver-mais:hover i,
.btn-ver-mais:focus-visible i {
    transform: translateX(4px);
}
.episContainer {

}

/* Loop - Episódio */
.epiItem {
    width: calc(100% / 5 - 8px);
    height: 180px;
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative;
}
.epiItem:nth-child(5n+5) {
    margin-right: 0;
}
.epiImg {
    width: 100%;
    height: 140px;
    position: relative;
    overflow: hidden;
}
.epiImg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: var(--trasition);
}
.epiItem:hover .epiImg img {
    transform: scale(1.2);
}
.epiInfos {
    position: absolute;
    bottom: 5px;
    width: 100%;
    z-index: 2;
}
.epiAniTitulo {
    width: calc(100% - 50px);
    padding-left: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-size: 14px;
    font-weight: 600;
}
.epiIcoPlay {
    width: 30px;
    height: 30px;
    background: var(--fourth-bg-color);
    position: relative;
    border-radius: 50%;
    margin-right: 10px;
}
.epiRes {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--fourth-bg-color);
    font-weight: 700;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 2px;
}
.epiItem .shadowOverlay {
    height: 75px;
    opacity: .8;
}
.epiData {
    margin: 5px 5px 0 5px;
    font-size: 10px;
    color: #555;
    font-weight: 700;
}
.epiTipo {
    margin: 5px 5px 0 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    color: #555;
}

/* Comentarios */
.ultEpsContainer {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    width: 100%;
}
.ultEpsContainerItem {
    height: 180px;
    position: relative;
    background: var(--fourth-bg-color);
    border-radius: 4px;
    overflow: hidden;
}
.ultEpsContainerItem .epImg {
    width: 100%;
    height: 140px;
    position: relative;
    overflow: hidden;
}
.ultEpsContainerItem .epImg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: var(--trasition);
}
.ultEpsContainerItem:not(:first-child):hover .epImg img {
    transform: scale(1.1);
}
.ultEpsContainerItem .button-hd {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    font-weight: 700;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 2px;
    color: #fff;
    z-index: 2;
}
.ultEpsContainerItem .epInfos {
    padding: 6px 10px;
}
.ultEpsContainerItem .epNome {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 1.4;
}
.ultEpsContainerItem .epNum {
    font-size: 10px;
    color: #999;
    font-weight: 500;
    margin-top: 2px;
}
.comentariosContainer {
    background: rgba(255, 255, 255, .02);
    padding: 10px;
}

/* Paginação */
.paginacaoContainer {
    text-align: center;
}
.paginacao {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 8px;
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 6px;
}
.paginacao .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 11px;
    border-radius: 4px;
    color: rgba(255, 255, 255, .72);
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    transition: var(--trasition);
}
.paginacao .page-numbers:hover {
    background: rgba(255, 255, 255, .07);
    color: #fff;
}
.paginacao .pagination-arrow {
    color: rgba(255, 255, 255, .6);
}
.paginacao .pagination-arrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .2s ease;
}
.paginacao .pagination-arrow[rel="prev"]:hover svg {
    transform: translateX(-2px);
}
.paginacao .pagination-arrow[rel="next"]:hover svg {
    transform: translateX(2px);
}
.paginacao .page-numbers.current {
    background: var(--primary);
    color: #fff;
    cursor: default;
}
.page-numbers i {
    vertical-align: bottom;
    font-size: 16px;
}

/* Ver mais */
.seeAll {

}
.seeAll a {
    background: var(--second-bg-color);
    padding: 10px 15px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 400;
    transition: var(--trasition);
    border-radius: 2px;
}
.seeAll a:hover {
    color: var(--second-bg-color);
    background: var(--fourth-bg-color);
}

/* Single - Default */
.containerTitulo {
    border-top: 1px dashed rgba(255, 255, 255, .04);
    background: rgba(255, 255, 255, .01);
    padding: 15px 0;
}
.containerTitulo h1 {
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
}

/* Single - Episodio */
.episodioSingleContainer {
    display: flex;
    flex-direction: column;
}
.episode-main-content {
    min-width: 0;
}
.episodioSingleContainer .center {
    width: 100%;
}
.episodioSingleContainer .left {
    width: calc(100% - 320px);
}
.episodioSingleContainer .right {
    width: 310px;
}
.episode-top10-sidebar {
    width: 100%;
    min-width: 0;
}
.episode-top10-sidebar > .right {
    width: 100%;
}
.episode-top10-sidebar .top10_ani {
    width: 100%;
}
.episode-bottom-layout {
    width: 100%;
    margin-top: 24px;
}
.episode-bottom-layout > .right {
    width: 100%;
}
.episode-bottom-layout .top10_ani {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-rows: 78px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .055);
    background: #121212;
}
.episode-bottom-layout .top10_title {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    padding: 0 18px;
    background: linear-gradient(90deg, rgba(197, 15, 40, .16), rgba(255, 255, 255, .025));
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.episode-bottom-layout .top10_title h3 {
    margin: 0;
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.episode-bottom-layout .top10_item {
    width: auto;
    min-width: 0;
    background: #151515;
    border-right: 1px solid rgba(255, 255, 255, .055);
    border-bottom: 1px solid rgba(255, 255, 255, .055);
    transition: background .2s ease, transform .2s ease;
}
.episode-bottom-layout .top10_item:hover {
    z-index: 2;
    background: #1b1b1b;
}
.episode-bottom-layout .top10_item.especial {
    grid-column: span 2;
    grid-row: span 3;
    height: auto;
    min-height: 0;
}
.episode-bottom-layout .top10_item.especial .top10_especialThumb,
.episode-bottom-layout .top10_item.especial .poster-fallback {
    height: 234px;
    min-height: 234px;
}
.episode-bottom-layout .top10_item.especial .top10_ani_infos {
    min-height: 86px;
    padding: 14px 12px;
}
.episode-bottom-layout .top10_ani_infos {
    min-height: 77px;
}
.episode-bottom-layout .top10_ani_pos {
    width: 42px;
    min-width: 42px;
    font-size: 22px;
}
.episode-bottom-layout .top10_item.especial .top10_ani_pos {
    width: 54px;
    min-width: 54px;
    font-size: 38px;
}
.episode-bottom-layout .top10_ani_meta {
    min-width: 0;
    padding-right: 12px;
}
.episode-bottom-layout .top10_ani_meta .left {
    width: auto;
}
.episode-bottom-layout .top10_ani_meta .right {
    width: auto;
    min-width: 0;
}
.episode-bottom-layout .top10_ani_thumb {
    width: 46px;
    height: 54px;
    margin-right: 10px;
    border-radius: 2px;
}
.episode-bottom-layout .top10_ani_title {
    padding-right: 0;
    font-size: 11px;
    line-height: 1.4;
}
.episode-bottom-layout .top10_item.especial .top10_ani_title {
    font-size: 14px;
    white-space: normal;
}
.videoInfos {
    width: 100%;
    background: rgba(255, 255, 255, .05);
    position: relative;
    align-items: stretch;
}
.videoTipo {
    width: 90px;
    background: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    color: #fff;
}
.videoTipo span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + 0.1px), calc(-50% + 0.1px));
    white-space: nowrap;
    font-size: 13px;
    letter-spacing: 0.5px;
}
.videoTitleBar {
    width: calc(100% - 90px);
    margin: 0 10px;
    padding: 10px 0;
}
.videoTitleBar span {
    display: block;
}
.videoTitleBar #anime_title {
    font-size: 16px;
    text-transform: uppercase;
}
.videoTitleBar #video_title {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
}
.videoTitleBar h1, .videoTitleBar h2 {
    margin: 0;
    padding: 0;
}
.containerDownload {
    background: var(--fourth-bg-color);
    padding: 30px 10px;
    text-align: center;
    margin-top: 30px;
}
.containerSelectText {
    font-weight: 400;
    text-transform: uppercase;
}
.withoutMirror {
    margin: 40px 0;
}
.withoutMirror i {
    font-size: 80px;
}
.withoutMirror span {
    display: block;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
}
.mirror_name {
    font-size: 20px;
    font-weight: 700;
    background: rgba(255, 255, 255, .05);
    display: inline-block;
    margin: 10px 0;
    padding: 5px 20px;
    border-radius: 2px;
}
.mirror_links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.mirror_links a {
    margin-right: 10px;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 3px;
    margin-bottom: 10px;
}
.mirror_links a:last-child {
    margin-right: 0;
}
.mirror_links a.mirror_1080 {
    background: #2980b9;
}
.mirror_links a.mirror_720 {
    background: #16a085;
}
.mirror_links a.mirror_480 {
    background: #e74c3c;
}
.mirror_links a.mirror_1080:hover {
    background: #3498db;
}
.mirror_links a.mirror_720:hover {
    background: #1abc9c;
}
.mirror_links a.mirror_480:hover {
    background: #c0392b;
}
.playersContainerAdvanced {
    position: relative;
    width: 100%;
    padding-right: 320px;
}
.playersLeft {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    height: 100%;
    min-height: 0;
    background: rgba(255, 255, 255, .012);
    overflow: hidden;
}
.playersLeftHeader {
    background: var(--dark-004);
    height: 40px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    font-weight: 100;
    font-size: 14px;
}
.playersLeftsearchEP {
    padding: 8px;
    background: rgba(255, 255, 255, .025);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.playersLeftsearchEP form {
    position: relative;
}
.playersLeftsearchEP form::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 50%;
    width: 14px;
    height: 14px;
    border: 1.5px solid rgba(255, 255, 255, .48);
    border-radius: 50%;
    transform: translateY(-58%);
    pointer-events: none;
}
.playersLeftsearchEP form::after {
    content: '';
    position: absolute;
    left: 23px;
    top: 22px;
    width: 6px;
    height: 1.5px;
    background: rgba(255, 255, 255, .48);
    transform: rotate(45deg);
    pointer-events: none;
}
.playersLeftsearchEP form input[type=text] {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 3px;
    height: 36px;
    padding: 0 10px 0 34px;
    font-family: var(--font);
    font-weight: 300;
    background: #171717;
    color: #fff;
}
.playersLeftContent {
    height: calc(100% - 40px - 35px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255, 255, 255, .03);
}
.playersLeftContent::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(255, 255, 255, .01);
}

.playersLeftContent::-webkit-scrollbar {
    width: 3px;
    background-color: transparent;
}
.playersLeftContainerItem {
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}
.playersLeftContainerItem a {
    padding: 10px;
    display: flex;
    align-items: center;
    transition: .2s all ease;
}
.playersLeftContainerItem a:hover,
.playersLeftContainerItem a.active {
    background: rgba(197, 15, 40, .18);
}

.playersLeftContainerItemThumbnail {
    width: 75px;
    height: 50px;
    overflow: hidden;
    margin-right: 10px;
}
.playersLeftContainerItemThumbnail img,
.playersLeftContainerItemThumbnail .poster-fallback {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
    transition: var(--trasition);
}
.playersLeftContainerItemThumbnail .poster-fallback {
    display: flex;
    gap: 2px;
    padding: 4px;
}
.playersLeftContainerItemThumbnail .poster-fallback svg {
    width: 20px;
    height: 20px;
}
.playersLeftContainerItemThumbnail .poster-fallback span {
    display: none;
}
.playersLeftContainerItem:hover .playersLeftContainerItemThumbnail img {
    transform: scale(1.2);
}
.playersLeftContainerItemInfos {
    width: calc(100% - 100px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.playersLeftContainerItem a.active {
    background: rgba(255, 255, 255, .04);
}
.playersLeftContainerItemEpi {
    font-size: 13px;
    font-weight: 100;
}
.playersLeftContainerItemTitulo {
    font-size: 10px;
    opacity: .5;
}

.playersLeftContent::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--primary);
}
.playersLeftContent::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}
.playersContainer {
    width: 100%;
    min-width: 0;
    position: relative;
}
.abasPlayersContainer {
    width: 100%;
    margin-bottom: 10px;
}
.abasPlayers {
    min-width: 132px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-right: 6px;
    padding: 0 14px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .04);
    border-radius: 3px;
    color: rgba(255, 255, 255, .72);
    font-family: var(--font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--trasition);
}
.abasPlayers svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.abasPlayers.active,
.abasPlayers:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    font-weight: 700;
}
.playersContainer {
    position: relative;
}
.playersContainer video {
    width: 100%;
    height: auto;
}
.playerBoxInfra {
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 56.25%;
}
.playerBoxInfra iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.playerOnLoading {
    background: var(--dark-002);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    height: 100%;
}
.playerLoadingMsg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + 0.1px), calc(-50% + 0.1px));
    text-align: center;
    margin-top: 25px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
}
.playerOnLoading .wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + 0.1px), calc(-50% + 0.1px));
    text-align: center;
    margin-top: -75px;
}
.circle {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 50%;
    animation: loading 1.5s cubic-bezier(.8, .5, .2, 1.4) infinite;
    transform-origin: bottom center;
    position: relative;
}
@keyframes loading {
  0% {
    transform: translateY(0px);
    background-color: rgba(0, 0, 0, 0);
  }
  50% {
    transform: translateY(50px);
    background-color: var(--color-001);
  }
  100% {
    transform: translateY(0px);
    background-color: rgba(0, 0, 0, 0);
  }
}
.circle-1 {
    animation-delay: 0.1s;
}
.circle-2 {
    animation-delay: 0.2s;
}
.circle-3 {
    animation-delay: 0.3s;
}
.circle-4 {
    animation-delay: 0.4s;
}
.circle-5 {
    animation-delay: 0.5s;
}
.circle-6 {
    animation-delay: 0.6s;
}
.circle-7 {
    animation-delay: 0.7s;
}
.circle-8 {
    animation-delay: 0.8s;
}
.episodioControlesContainer {
    background: rgba(255, 255, 255, .01);
    overflow: hidden;
}
.episodioControleItem {
    text-align: center;
    transition: var(--trasition);
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.episodioControleItem:hover {
    background: rgba(255, 255, 255, .02);
}
.episodioControleItem i {
    font-size: 19px;
}
.episodioControleItem.prev span {
    margin-left: 5px;
}
.episodioControleItem.next span {
    margin-right: 5px;
}
.episodioControleItem span {
    font-size: 13px;
}
.reportContainer,
.downloadItem {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    font-size: 13px;
}
.downloadItem {
    background: var(--primary);
    transition: var(--trasition);
}
.downloadItem:hover {
    background: var(--primary-hover);
}
.reportContainer:hover {
    background: rgba(255, 255, 255, .02);
}
.reportContainer i,
.downloadItem i {
    margin-right: 5px;
    font-size: 17px;
}
.without_video {
    display: block;
}
.comentariosTitle {

}
.comentariosTitle span {
    display: inline-block;
    background: rgba(255, 255, 255, .02);
    font-size: 13px;
    text-transform: uppercase;
    padding: 10px;
}
.comentariosTitle span i {
    vertical-align: middle;
    margin-right: 5px;
    display: inline-block;
    margin-top: -3px;
}

/* Single - Sidebar */
.discordInvite {
    background: var(--second-bg-color);
}
.discordInvite img {
    max-width: 100%;
    display: block;
}

/* Single - Sidebar ADS */
.myAdsContainer {

}
.myAdsTitleContainer {
    padding: 10px;
    font-size: 13px;
    background: var(--second-bg-color);
    display: inline-block;
}
.myAdsTitleContainer i {
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -3px;
    display: inline-block;
    font-size: 15px;
}
.myAdsBox {
    overflow: hidden;
    padding: 5px;
    background: var(--second-bg-color);
}
.myAdsBox * {
    max-width: 100%;
}
.myAdsBoxWithoutBG {
    background: transparent!important;
}

/* Single - Anime */
.animeContainer {

}
.animeContainer .left {
    width: 320px;
}
.animeContainer .leftAnime {
    background: rgba(255, 255, 255, .01);
}
.animeContainer .left .animeImg {
    width: 100%;
    height: 475px;
    position: relative;
}
.animeContainer .left .shadowOverlay {
	background: rgba(0,0,0,0);
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(20, 20, 20, 1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(100%, rgba(20, 20, 20, 1)));
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(20, 20, 20, 1) 100%);
	background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(20, 20, 20, 1) 100%);
	background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(20, 20, 20, 1) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(20, 20, 20, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
	transition: .2s all ease-in-out;
}
.animeContainer .left .animeImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sinopseAnime {
    border-top: 1px solid rgba(255, 255, 255, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    padding: 10px 0;
    margin-bottom: 10px;
}
.sinopseAnime span {
    text-transform: uppercase;
    font-weight: 200;
    margin-bottom: 5px;
    display: block;
}
.animeSinopse {
    padding: 0;
    margin: 0;
    font-weight: normal;
    font-size: 13px;
    text-align: justify;
}
.animeSinopse span {
    text-transform: none;
    font-size: 12px;
    color: #999;
    font-weight: 500;
    display: inline;
}
.animeStats {
    padding: 10px;
}
.animeStatsItem {
    width: calc(100% / 3);
    background: rgba(255, 255, 255, .02);
    height: 80px;
    position: relative;
    text-align: center;
    border-radius: 2px;
    font-weight: 600;
}
.animeStatsItem:nth-child(3n+3) {
    margin-right: 0;
}
.animeStatsItem b {
    text-transform: uppercase;
    font-size: 10px;
}
.animeStatsItem span {
    font-size: 25px;
    display: block;
}
.animeInfos {

}
.animeInfosItemGeneros {
    border-top: 1px solid rgba(255, 255, 255, .03);
    border-bottom: 1px solid rgba(255, 255, 255, .03);
    padding: 10px;
}
.animeInfosItemGeneros b {
    margin-bottom: 5px !important;
}
.animeInfosItemGeneros span {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 5px 10px;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 13px;
    background: var(--fourth-bg-color);
    color: #fff !important;
    border-radius: 2px;
}
.animeInfos span {
    color: #999;
    font-size: 12px;
}
.animeInfos span.without {
    background: transparent;
    font-size: 12px;
    padding: 0;
    display: block;
    margin-top: 2px;
}
.animeInfosItemSingle {
    padding: 5px 10px;
}
.anime-status-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 0 18px;
    padding: 15px 18px;
    overflow: hidden;
    border: 1px solid rgba(197, 15, 40, .58);
    border-radius: 8px;
    background: linear-gradient(125deg, rgba(197, 15, 40, .92), rgba(151, 10, 31, .78) 62%, rgba(74, 6, 18, .92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09), 0 10px 28px rgba(197, 15, 40, .18);
    color: #fff;
}
.anime-status-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -25px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 83, 106, .24);
    filter: blur(5px);
    pointer-events: none;
}
.anime-status-card.is-complete {
    border-color: rgba(197, 15, 40, .42);
    background: linear-gradient(125deg, rgba(79, 13, 25, .96), rgba(117, 12, 31, .88) 60%, rgba(38, 8, 14, .96));
}
.anime-status-sidebar {
    width: calc(100% - 20px);
    margin: 12px 10px 8px;
    padding: 12px 13px;
    border-radius: 6px;
    box-sizing: border-box;
}
.anime-status-sidebar .anime-status-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 10px;
}
.anime-status-sidebar .anime-status-content b {
    font-size: 15px;
}
.anime-status-sidebar .anime-status-content > span:last-child {
    font-size: 10px;
}
.anime-status-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    background: rgba(30, 2, 8, .24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 6px 16px rgba(45, 2, 10, .18);
}
.anime-status-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.anime-status-card.is-airing .anime-status-icon svg {
    fill: currentColor;
    stroke: none;
}
.anime-status-content {
    position: relative;
    z-index: 1;
    min-width: 0;
}
.anime-status-content .anime-status-label {
    display: block;
    margin: 0 0 3px;
    color: rgba(255, 255, 255, .58);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
}
.anime-status-content b {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}
.anime-status-content > span:last-child {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    line-height: 1.3;
}
.animeInfos b {
    display: block;
    font-size: 17px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: -3px;
}
.tempAnterior {
    display: block;
    background: rgba(255, 255, 255, .01);
    padding: 10px;
    font-weight: 200;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: var(--trasition);
}
.tempAnterior:hover {
    background: rgba(255, 255, 255, .02);
    color: var(--primary);
}
.tempAnterior i {
    vertical-align: middle;
    margin-top: -2px;
    display: inline-block;
}
.tempProxima {
    display: block;
    background: rgba(255, 255, 255, .01);
    padding: 10px;
    text-align: right;
    font-weight: 200;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: var(--trasition);
}
.tempProxima:hover {
    background: rgba(255, 255, 255, .02);
    color: var(--primary);
}
.tempProxima i {
    vertical-align: middle;
    margin-top: -2px;
    display: inline-block;
}
.animeContainer .right {
    width: calc(100% - 330px);
}
.anime-season-navigation {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    padding: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255, 255, 255, .04);
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 8px;
}
.anime-season-navigation::-webkit-scrollbar {
    height: 7px;
}
.anime-season-navigation::-webkit-scrollbar-track {
    margin: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025);
}
.anime-season-navigation::-webkit-scrollbar-thumb {
    min-width: 48px;
    border: 2px solid transparent;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), #ff4762) padding-box;
    box-shadow: 0 0 10px rgba(237, 27, 55, .28);
}
.anime-season-navigation::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #ff304d, #ff6379) padding-box;
}
.anime-season-navigation::-webkit-scrollbar-button {
    display: none;
}
.anime-season-navigation a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 6px;
    background: rgba(255, 255, 255, .035);
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    transition: var(--trasition);
}
.anime-season-navigation a span {
    color: var(--primary);
    font-size: 13px;
}
.anime-season-navigation a:hover,
.anime-season-navigation a.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}
.anime-season-navigation a:hover span,
.anime-season-navigation a.active span {
    color: #fff;
}
.abasAnimeContent {
    background: rgba(255, 255, 255, .03);
    border-radius: 2px;
    overflow: hidden;
}
.abaAnimeItem {
    padding: 10px 15px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--trasition);
}
.abaAnimeItem.active, .abaAnimeItem:hover {
    background: var(--primary);
}
.animeVideosContainer {
    display: none;
}
.animeVideosContainer.active {
    display: block;
}
.animeVideosScrollArea {
    max-height: 700px;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255, 255, 255, .03);
}
.animeVideosScrollArea::-webkit-scrollbar {
    width: 3px;
    background-color: transparent;
}
.animeVideosScrollArea::-webkit-scrollbar-button {
    display: none;
}
.animeVideosScrollArea::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--primary);
}
.animeVideosScrollArea::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}
.animeVideosScrollArea::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(255, 255, 255, .01);
}
.animeVideosScrollArea::-webkit-scrollbar-corner {
    background: transparent;
}
.animeVideosContainer > .paginacaoContainer {
    position: relative;
    z-index: 2;
    margin-top: 12px;
    padding: 10px 0 2px;
    background: var(--second-bg-color);
}

/* Loop - Anime Videos */
.animeVideosItem {
    width: calc(100% / 4 - 7.5px);
    height: 200px;
    margin-right: 10px;
    padding: 10px;
    background: rgba(0, 0, 0, .5);
    margin-bottom: 10px;
    transition: var(--trasition);
}
.animeVideosItem:hover {
    background: #fff;
}
.animeVideosItem:nth-child(4n+4) {
    margin-right: 0;
}
.animeVideosItemImg {
    width: 100%;
    height: 117px;
    position: relative;
    margin-bottom: 10px;
}
.animeVideosItemImg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.animeVideosItemImg i {
    opacity: 0;
    transition: var(--trasition);
    font-size: 23px;
}
.animeVideosItem:hover .animeVideosItemImg i {
    opacity: 1;
}
.animeVideosItemInfos {
    border-top: 5px solid rgba(255,255,255,.02);
    padding-top: 10px;
}
.animeVideosItem:hover .animeVideosItemInfos {
    border-color: rgba(0,0,0,.1);
}
.animeVideosItemInfosItem {
    font-size: 13px;
    font-weight: 700;
}
.animeVideosItem:hover .animeVideosItemInfosItem {
    color: #000;
}
.animeVideosItemInfosItem span {
    margin-top: 5px;
    color: #999;
    font-size: 12px;
    display: block;
    font-weight: 300;
}

/* Top 10 */
.top10_ani {
    overflow: hidden;
    background: #151515;
    border-radius: 4px;
}
.top10_item {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.top10_item:last-child {
    border-bottom: 0;
}
.top10_item > a {
    position: relative;
    display: block;
}
.top10_ani_infos {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: 66px;
}
.top10_ani_pos {
    width: 48px;
    min-width: 48px;
    color: var(--primary);
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}
.top10_ani_meta {
    min-width: 0;
    flex: 1;
    display: flex;
    align-items: center;
}
.top10_ani_meta .left {
    width: auto;
}
.top10_ani_meta .right {
    min-width: 0;
    width: auto;
    flex: 1;
}
.top10_ani_thumb {
    width: 48px;
    height: 48px;
    margin-right: 10px;
    overflow: hidden;
    border-radius: 3px;
}
.top10_ani_thumb .poster-image,
.top10_ani_thumb .poster-fallback {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}
.top10_ani_thumb .poster-fallback span {
    display: none;
}
.top10_ani_title {
    overflow: hidden;
    padding-right: 10px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.top10_item.especial {
    min-height: 190px;
    overflow: hidden;
}
.top10_item.especial .top10_especialThumb,
.top10_item.especial .poster-fallback {
    transition: transform .35s ease;
}
.top10_item.especial:hover .top10_especialThumb,
.top10_item.especial:hover .poster-fallback {
    transform: scale(1.06);
}
.top10_item.especial .top10_ani_infos {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .95), transparent);
}
.top10_item.especial .top10_ani_pos {
    color: #fff;
    font-size: 38px;
}
.top10_especialThumb,
.top10_item.especial .poster-fallback {
    width: 100%;
    height: 190px;
    min-height: 190px;
    display: block;
    object-fit: cover;
}
.top10_item:hover .top10_ani_pos {
    color: #fff;
}
.top10_item.normal .top10_ani_thumb {
    overflow: hidden;
    border-radius: 2px;
}
.top10_item.normal .top10_thumb,
.top10_item.normal .top10_ani_thumb .poster-image,
.top10_item.normal .top10_ani_thumb .poster-fallback {
    transition: transform .35s ease;
    display: block;
}
.top10_item.normal:hover .top10_thumb,
.top10_item.normal:hover .top10_ani_thumb .poster-image,
.top10_item.normal:hover .top10_ani_thumb .poster-fallback {
    transform: scale(1.1);
}

/* Loop - Anime Downloads */
.episode-filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 4px;
}
.episode-filter-search {
    height: 38px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1 1 220px;
    padding: 0 11px;
    background: #171717;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 3px;
    color: rgba(255, 255, 255, .55);
}
.episode-filter-search svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}
.episode-filter-search input {
    width: 100%;
    background: transparent;
    border: 0;
    color: #fff;
    font-family: var(--font);
    font-size: 12px;
    appearance: textfield;
    -moz-appearance: textfield;
}
.episode-filter-search input::-webkit-outer-spin-button,
.episode-filter-search input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
}
.episode-order-dropdown {
    position: relative;
    flex: 0 1 220px;
}
.episode-order-trigger {
    width: 100%;
    height: 38px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 11px;
    background: #171717;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 3px;
    color: #fff;
    font-family: var(--font);
    font-size: 12px;
    cursor: pointer;
}
.episode-order-trigger > svg:first-child {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: rgba(255, 255, 255, .55);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.episode-order-trigger span {
    flex: 1;
    overflow: hidden;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.episode-order-chevron {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform .2s ease;
}
.episode-order-dropdown.open .episode-order-chevron {
    transform: rotate(180deg);
}
.episode-order-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 30;
    display: none;
    overflow: hidden;
    padding: 5px;
    background: #171717;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 4px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .42);
}
.episode-order-dropdown.open .episode-order-menu {
    display: block;
}
.episode-order-option {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 0;
    border-radius: 3px;
    color: rgba(255, 255, 255, .72);
    font-family: var(--font);
    font-size: 12px;
    text-align: left;
    cursor: pointer;
}
.episode-order-option:hover,
.episode-order-option.active {
    background: var(--primary);
    color: #fff;
}
.episode-filter-clear {
    height: 38px;
    padding: 0 15px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 4px;
    color: rgba(255, 255, 255, .72);
    font-family: var(--font);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
    opacity: 0.5;
    pointer-events: none;
    transition: var(--trasition);
}
.episode-filter-clear.show {
    opacity: 1;
    pointer-events: auto;
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.animeVideosDownloadItem {
    width: 100%;
    margin-bottom: 6px;
    background: rgba(255, 255, 255, .02);
    border-radius: 3px;
    transition: var(--trasition);
}
.animeVideosDownloadItem:hover {
    background: rgba(255, 255, 255, .04);
}
.animeVideosDownloadItem a {
    display: flex;
    align-items: center;
    padding: 7px;
}
.aniVideoDownLeft {
    width: 100px;
    height: 55px;
    margin-right: 10px;
}
.aniVideoDownLeft img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.aniVideoDownRight {
    width: calc(100% - 115px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.aniVideoDownText {
    max-width: calc(100% - 165px);
    width: 100%;
    display: flex;
    flex-direction: column;
}
.aniVideoDownText span:first-child {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 2px;
}
.aniVideoDownText span:last-child {
    font-size: 11px;
    color: #999;
}
.aniVideoDownBtns {
    max-width: 155px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.btn_action_download {
    padding: 6px 14px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-radius: 4px;
    color: rgba(255, 255, 255, .82);
    transition: var(--trasition);
}
.btn_action_download:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 12px rgba(197, 15, 40, .28);
}
.btn_action_download i {
    margin-right: 5px;
}
.btn_action_watch {
    gap: 6px;
}
.btn_action_watch svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

/* Catálogo de animes */
.catalog-page {
    padding-top: 32px;
    padding-bottom: 40px;
    min-height: 620px;
}

/* Tutorial e Páginas Estáticas */
.page_container {
    padding-top: 32px;
    padding-bottom: 40px;
    min-height: 620px;
}
.page_header {
    margin-bottom: 24px;
}
.page_header h1,
.page_header span {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
.page_section {
    background: linear-gradient(180deg, #191919, #151515);
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 7px;
    padding: 30px 25px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .18);
}
.tutorial_container {
    gap: 30px;
}
.tutorial_etapa {
    width: 100%;
    max-width: 800px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 6px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.tutorial_etapa.warning {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
}
.tutorial_etapa_num {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.tutorial_etapa.warning .tutorial_etapa_num {
    color: #ef4444;
}
.tutorial_etapa_desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .8);
}
.tutorial_etapa_desc b,
.tutorial_etapa_desc strong {
    color: #fff;
}
.tutorial_etapa_img {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
}
.tutorial_etapa_img img {
    width: 100%;
    display: block;
    height: auto;
}
.catalog-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}
.filterBox,
.page_lista_de_animes_itens {
    min-width: 0;
}
.filterBox {
    overflow: visible;
    background: linear-gradient(180deg, #191919, #151515);
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 7px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .18);
}
.filterBox .tituloSection,
.page_lista_de_animes_itens > h1 {
    margin: 0;
    padding: 15px 16px;
    background: rgba(255, 255, 255, .035);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}
.section-heading-content {
    display: flex;
    align-items: center;
    gap: 8px;
}
.section-heading-content .ui-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}
.episode-list-heading {
    margin-bottom: 18px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .035);
    border-left: 3px solid var(--primary);
    border-radius: 3px;
}
.episode-list-heading h1 {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}
.episode-list-heading .ui-icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
}
.filterBoxContent {
    padding: 16px;
}
.filterLetras > a.todos {
    display: flex;
    justify-content: center;
    padding: 10px;
    margin-bottom: 9px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.letras_fbox {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
}
.letras_fbox a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 31px;
    background: rgba(255, 255, 255, .035);
    border: 1px solid transparent;
    border-radius: 4px;
    color: rgba(255, 255, 255, .62);
    font-size: 10px;
    text-transform: uppercase;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.filterLetras a:hover {
    background: rgba(217, 0, 48, .12);
    border-color: rgba(217, 0, 48, .34);
    color: #fff;
    transform: translateY(-1px);
}
.filterLetras a.current {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(217, 0, 48, .18);
}
.filterSelect {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.catalog-search-field,
.filterSelectItem {
    display: block;
    margin: 0;
}
.catalog-filter-label {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, .48);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}
.catalog-search-control {
    position: relative;
    display: flex;
    align-items: center;
}
.catalog-search-control .ui-icon {
    position: absolute;
    left: 12px;
    z-index: 1;
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, .38);
    pointer-events: none;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.catalog-search-control input {
    width: 100%;
    height: 42px;
    padding: 0 13px 0 38px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .065);
    border-radius: 5px;
    color: #fff;
    font-family: var(--font);
    font-size: 12px;
    outline: none;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.catalog-search-control input::placeholder {
    color: rgba(255, 255, 255, .32);
}
.catalog-search-control input:focus {
    background: rgba(255, 255, 255, .065);
    border-color: rgba(217, 0, 48, .68);
    box-shadow: 0 0 0 3px rgba(217, 0, 48, .1);
}
.catalog-search-control input::-webkit-search-cancel-button {
    filter: invert(1);
    opacity: .45;
}
.custom-select-wrapper {
    position: relative;
    z-index: 1;
}
.custom-select-wrapper.open {
    z-index: 50;
}
.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    height: 42px;
    padding: 0 13px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .065);
    border-radius: 5px;
    color: rgba(255, 255, 255, .82);
    font-family: var(--font);
    font-size: 12px;
    text-align: left;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.custom-select-trigger > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.custom-select-trigger:hover,
.custom-select-wrapper.open .custom-select-trigger {
    background: rgba(255, 255, 255, .065);
    border-color: rgba(217, 0, 48, .65);
}
.custom-select-wrapper.open .custom-select-trigger {
    box-shadow: 0 0 0 3px rgba(217, 0, 48, .09);
}
.custom-select-trigger .select-arrow {
    flex: 0 0 auto;
    width: 9px;
    height: 6px;
    fill: currentColor;
    opacity: .62;
    transition: transform .2s ease, opacity .2s ease;
}
.custom-select-wrapper.open .select-arrow {
    opacity: 1;
    transform: rotate(180deg);
}
.custom-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    display: none;
    width: 100%;
    max-height: 220px;
    margin: 0;
    padding: 5px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #202020;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .42);
    list-style: none;
}
.custom-select-wrapper.open .custom-options {
    display: block;
    animation: catalogSelectOpen .16s ease;
}
.custom-option {
    display: flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 10px;
    border-radius: 4px;
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
    cursor: pointer;
    transition: background .16s ease, color .16s ease, padding-left .16s ease;
}
.custom-option:hover {
    padding-left: 13px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
}
.custom-option.selected {
    background: rgba(217, 0, 48, .16);
    color: #fff;
}
.custom-option.selected::after {
    width: 6px;
    height: 6px;
    margin-left: auto;
    background: var(--primary);
    border-radius: 50%;
    content: '';
}
.custom-options {
    scrollbar-width: thin;
    scrollbar-color: rgba(217, 0, 48, .6) transparent;
}
.custom-options::-webkit-scrollbar {
    width: 3px;
}
.custom-options::-webkit-scrollbar-track {
    background: transparent;
}
.custom-options::-webkit-scrollbar-thumb {
    background: rgba(217, 0, 48, .6);
    border-radius: 99px;
}
.catalog-filter-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    height: 40px;
    margin-top: 2px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 5px;
    color: rgba(255, 255, 255, .28);
    font-family: var(--font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: not-allowed;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.catalog-filter-clear.active {
    border-color: rgba(217, 0, 48, .32);
    color: rgba(255, 255, 255, .76);
    cursor: pointer;
}
.catalog-filter-clear.active:hover {
    background: rgba(217, 0, 48, .12);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}
@keyframes catalogSelectOpen {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.page_lista_de_animes_itens {
    overflow: hidden;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 5px;
}
#listaAnimesGrid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 16px;
    transition: opacity .2s ease;
}
#listaAnimesGrid .ultAnisContainerItem {
    width: auto;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 3px;
    background: #111;
}
#listaAnimesGrid .ultAnisContainerItem > a {
    display: block;
    min-width: 0;
}
#listaAnimesGrid .ultAnisContainerItem .aniImg {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #0b0b0b;
}
#listaAnimesGrid .ultAnisContainerItem .aniImg > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#listaAnimesGrid .ultAnisContainerItem .aniPlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .35);
    color: #fff;
    font-size: 30px;
    opacity: 0;
    transition: var(--trasition);
}
#listaAnimesGrid .ultAnisContainerItem:hover .aniPlay {
    opacity: 1;
}
#listaAnimesGrid .ultAnisContainerItem .aniEps {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px;
    overflow: hidden;
    padding: 6px 8px;
    background: rgba(10, 10, 10, .88);
    border-radius: 2px;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    text-overflow: ellipsis;
}
#listaAnimesGrid .ultAnisContainerItem .aniInfos {
    position: static;
    width: auto;
    padding: 10px 9px 12px;
}
#listaAnimesGrid .ultAnisContainerItem .aniNome {
    overflow: hidden;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    white-space: nowrap;
    text-overflow: ellipsis;
}
#paginationWrap {
    padding: 0 16px 20px;
}
.anime-filter-empty,
.empty-state-modern {
    grid-column: 1 / -1;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px;
    text-align: center;
    color: rgba(255, 255, 255, .65);
}
.anime-filter-empty-icon .ui-icon {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.anime-filter-empty strong {
    color: #fff;
    font-size: 17px;
}
.anime-filter-empty p {
    max-width: 430px;
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
}
.anime-filter-empty button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 5px;
    padding: 10px 15px;
    background: var(--primary);
    border: 0;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    font-family: var(--font);
}
.anime-filter-empty button .ui-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* Página 404 */
.page_404 {
    min-height: 610px;
    padding-top: 70px;
    padding-bottom: 80px;
    text-align: center;
}
.page_404 .page-error-icon {
    width: 118px;
    height: 118px;
    margin-bottom: 24px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 1.15;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.page_404 h1 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 34px;
}
.page_404 h2 {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, .9);
    font-size: 17px;
    font-weight: 500;
}
.page_404 .whats_happen {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
}
.page_404 ul {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
    line-height: 1.8;
}
.page_404 ul li::before {
    content: '•';
    margin-right: 7px;
    color: var(--primary);
}
.page_404 > a {
    padding: 11px 18px;
    background: var(--primary);
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    transition: var(--trasition);
}
.page_404 > a:hover {
    background: var(--primary-hover);
}

/* Page - Lista de Animes */
.anilistaContainer {

}
.anilistaContainer .left {
    width: 320px;
    background: rgba(255, 255, 255, .03);
    border-radius: 4px;
}
.anilistaContainer .left .filterTitle {
    padding: 10px;
    background: rgba(255, 255, 255, .03);
}
.anilistaFilter {
    padding: 15px;
}
.anilistaFilter span {
    font-size: 10px;
    margin-bottom: 5px;
    display: block;
}
.anilistaFilter:nth-child(2n+1) {
    background: rgba(255, 255, 255, .05);
}
.anilistaContainer .left .filterSearchForm {

}
.anilistaContainer .left .filterSearch input[type=text] {
    width: calc(100% - 50px);
    padding: 10px;
    border: none;
    background: rgba(255, 255, 255, .06);
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    font-weight: 600;
    font-family: var(--font);
    color: #fff;
}
.anilistaContainer .left .filterSearch button[type=submit] {
    position: relative;
    width: 50px;
    height: 36px;
    border: none;
    background: var(--primary);
    vertical-align: top;
    color: #fff;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    cursor: pointer;
}
.anilistaContainer .yesnoContainer {
    border-radius: 4px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
}
.anilistaContainer .yesnoContainer.noActive {
    background: #c0392b;
}
.anilistaContainer .yesnoContainer.yesActive {
    background: #27ae60;
}
.anilistaContainer .yesnoOption {
    width: 40%;
    padding: 10px;
    cursor: pointer;
    color: rgba(255, 255, 255, .5);
}
.anilistaContainer .yesnoOption.active {
    color: #fff;
}
.anilistaContainer .yesnoContainer .yesnoOption:last-child {
    text-align: right;
}
.anilistaContainer .yesnoIcon {
    font-size: 25px;
    position: relative;
}
.anilistaContainer .yesnoIcon i {
    opacity: 0;
    transition: all .5s cubic-bezier(.8, 0, .2, 1);
}
.anilistaContainer .yesnoIcon i.active {
    opacity: 1;
    transform: translate(calc(-50% + 0.1px), calc(-50% + 0.1px)) rotate(360deg);
}
#anime_filter_submit {
    width: 100%;
    background: var(--primary);
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-size: 12px;
    padding: 10px;
    border: none;
    border-radius: 3px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
}
.anilistaContainer .selectize-input {
    background: rgba(255, 255, 255, .06);
    border: none;
    padding: 10px;
}
.anilistaContainer .selectize-control.single .selectize-input:after {
    border-color: #fff transparent transparent transparent;
}
.anilistaContainer .right {
    width: calc(100% - 330px);
}
.anilistaContainer .right .anilistaLoop .aniItem {
    width: calc(100% / 4 - 7.5px);
    height: auto;
    margin-bottom: 10px;
}
.anilistaContainer .right .anilistaLoop .aniItem:nth-child(4n+4) {
    margin-right: 0;
}
.anilistaContainer .right .anilistaLoop .aniItem:nth-child(6n+6) {
    margin-right: 10px;
}

/* Page - Calendario */
.calendar-page {
    padding-top: 24px;
}
.calendario_dias {
    width: 100%;
    overflow-x: auto;
}
.calendario_dias_container {
    display: grid;
    grid-template-columns: repeat(7, minmax(110px, 1fr));
    gap: 6px;
    min-width: 760px;
}
.calendario_dia {
    padding: 12px 10px;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .045);
    border-radius: 3px;
    color: #aaa;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--trasition);
}
.calendario_dia:hover,
.calendario_dia.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.calendario_container {
    width: 100%;
    overflow: hidden;
}
.calendario_header {
    margin-bottom: 16px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .035);
    border-left: 3px solid var(--primary);
    border-radius: 3px;
}
.calendario_header h1 {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}
.calendario_header h1 i {
    color: var(--primary);
    font-size: 17px;
}
.calendario_header h1 strong {
    padding: 4px 9px;
    background: rgba(197, 15, 40, .16);
    border-radius: 3px;
    color: #e33850;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}
.calendario_section {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    align-items: start;
}
.calendario_section .ultAnisContainerItem {
    width: 100%;
    min-width: 0;
    height: auto;
    margin: 0;
    overflow: hidden;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, .045);
    border-radius: 3px;
}
.calendario_section .ultAnisContainerItem > a {
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
}
.calendario_section .ultAnisContainerItem .aniImg {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #0b0b0b;
}
.calendario_section .ultAnisContainerItem .aniImg > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}
.calendario_section .ultAnisContainerItem:hover .aniImg > img {
    transform: scale(1.04);
}
.calendario_section .ultAnisContainerItem .aniPlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .36);
    color: #fff;
    font-size: 28px;
    opacity: 0;
    transition: opacity .2s ease;
}
.calendario_section .ultAnisContainerItem:hover .aniPlay {
    opacity: 1;
}
.calendario_section .calendar-poster-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(145deg, #151515, #0b0b0b);
    color: var(--primary);
}
.calendario_section .calendar-poster-fallback[hidden] {
    display: none;
}
.calendario_section .calendar-poster-fallback svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.calendario_section .calendar-poster-fallback span {
    color: #777;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}
.calendario_section .ultAnisContainerItem .aniInfos {
    position: static;
    width: 100%;
    bottom: auto;
    z-index: auto;
    padding: 10px;
    background: #151515;
}
.calendario_section .ultAnisContainerItem .aniNome {
    overflow: hidden;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.calendario_load_msg {
    grid-column: 1 / -1;
    min-height: 180px;
    gap: 8px;
    color: #999;
}
.loopCalendarioAnimes .aniItem {
    height: auto;
    margin-bottom: 10px;
}
.loopCalendarioAnimes .aniItem:nth-child(6n+6) {
    margin-right: 0;
}
.diasAbas {
    border-radius: 4px;
    overflow: hidden;
}
.diasAbas .diaItem {
    background: var(--fourth-bg-color);
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--trasition);
}
.diasAbas .diaItem:hover, .diasAbas .diaItem.active {
    background: var(--primary-hover);
}

/* Page - Search */
.searchContainer {

}
.searchTitle {
    background: rgba(255, 255, 255, .02);
    padding: 15px 10px;
    border-left: 5px solid var(--fourth-bg-color);
    font-weight: 600;
    font-size: 14px;
}
.searchResults .aniItem {
    height: auto;
    margin-bottom: 10px;
}
.searchResults .aniItem:nth-child(6n+6) {
    margin-right: 0;
}

/* ReportBox */
.dynamicReportBox {
    background: var(--second-bg-color);
    padding: 10px;
}
.dynamicReportItem {

}
.dynamicReportItem span {
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
}
.dynamicReportItem input[type=text] {
    width: 100%;
    padding: 10px;
    border-radius: 3px;
    border: none;
    margin-bottom: 10px;
    background: rgba(0, 0, 0, .3);
    color: #fff;
}
.dynamicReportItem select {
    width: 100%;
    padding: 10px;
    border-radius: 3px;
    border: none;
    margin-bottom: 10px;
    background: rgba(0, 0, 0, .3);
    color: #fff;
}
.dynamicReportItem textarea {
    width: 100%;
    padding: 10px;
    border-radius: 3px;
    border: none;
    margin-bottom: 10px;
    background: rgba(0, 0, 0, .3);
    color: #fff;
    min-height: 75px;
}
.dynamicReportBox input[type=submit] {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-radius: 3px;
    background: var(--fourth-bg-color);
    color: var(--second-bg-color);
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    transition: var(--trasition);
}
.dynamicReportBox input[type=submit]:hover {
    background: #e0a24b;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, .03);
    padding-top: 50px;
    margin-bottom: -20px;
    margin-top: 30px;
}
.footerItem {
    width: calc(100% / 4);
    margin-right: 20px;
    margin-bottom: 40px;
}
.footerItem:nth-child(4n+4) {
    margin-right: 0;
}
.footerItem {
    text-align: center;
    position: relative;
}
.footerItem .logoFooter {
    width: 150px;
    display: block;
    margin: auto;
}
.footerItem h3 {
    margin: 0 0 15px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 3px;
    position: relative;
}
.footerItem h3::before {
    content: '';
    display: block;
    position: absolute;
    bottom: -5px;
    width: 25px;
    overflow: hidden;
    border-radius: 40px;
    background: #fff;
    height: 2px;
    left: 50%;
    transform: translateX(calc(-50% + 0.1px));
}
.footerItem ul {
    margin: 0;
    padding: 0;
    font-size: 13px;
}
.footerItem ul li {
    display: block;
    margin-bottom: 5px;
}
.footerSocial a {
    margin-right: 10px;
    background: rgba(255, 255, 255, .05);
    border-radius: 2px;
    width: 40px;
    height: 40px;
    display: inline-block;
    position: relative;
    color: #fff;
    transition: var(--trasition);
}
.footerSocial a:hover {
    background: var(--primary);
}
.footerSocial a:last-child {
    margin-right: 0;
}
.footerSocial a i {
    font-size: 30px;
    font-weight: 400;
}
.footerItem span {
    font-size: 12px;
    display: block;
    word-wrap: break-word;
}
.creditos {
    padding: 25px 0;
    font-size: 10px;
    font-weight: 600;
    background: rgba(255, 255, 255, .02);
}
.creditos_left {
    margin-right: 20px;
}
.creditos_left img {
    width: 150px;
}
.creditos_text {
    color: #555;
}
.creditos_text p {
    margin: 0;
}

/* Protetor */
.protetor {
    max-width: 500px;
    width: 100%;
    margin: auto;
}
.titleProtetor {
    background: rgba(255, 255, 255, .03);
    padding: 15px;
    font-weight: 300;
    text-align: center;
    margin-top: 20px;
}
.containerProtetor {
    overflow: hidden;
    background: rgba(255, 255, 255, .01);
}
.counterContainer {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary);
    border-radius: 50%;
    margin: 20px auto;
    font-size: 30px;
    font-weight: 400;
    color: var(--primary);
    position: relative;
    overflow: hidden;
}
.counterContainer span {
    z-index: 1;
}
.counterContainer::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .1);
    opacity: 1;
}
.counterContainer.active::before {
    animation: 5s decreaseHeight linear forwards;
}
@keyframes decreaseHeight {
    from {
        height: 100%;
    }
    to {
        height: 0;
    }
}
.btn_nextStep {
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-radius: 4px;
    font-weight: 400;
    cursor: pointer;
    transition: .2s all ease;
    margin: 20px;
}
.btn_nextStep:hover {
    background: var(--primary-hover);
}
.btn_nextStep i {
    font-size: 25px;
}
.btn_await {
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-radius: 4px;
    font-weight: 400;
    transition: .2s all ease;
    margin: 20px;
}
.btn_await i {
    margin-left: 10px;
    animation: 3s infinite rotateLoader linear;
}
.await_icon {
    animation: 3s infinite rotateLoader linear;
}
@keyframes rotateLoader {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Lancaster.io - Assets */
.shadowOverlay {
	width: 100%;
	height: 175px;
	position: absolute;
	bottom: 0;
	background: rgba(0,0,0,0);
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(20, 20, 20, 1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(100%, rgba(20, 20, 20, 1)));
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(20, 20, 20, 1) 100%);
	background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(20, 20, 20, 1) 100%);
	background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(20, 20, 20, 1) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(20, 20, 20, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
	transition: .2s all ease-in-out;
}

.toggle-text-content span {
    display: none;
}
.toggle-text-link {
    color: #fff;
    font-weight: 600;
    margin-left: 5px;
}
.toggle-text-link:hover {

}

/* Media Queries */
/* 1060 */
@media (max-width: 1060px) {
    .animeVideosItem {
        width: calc(100% / 3 - 10px);
    }
    .animeVideosItem:nth-child(4n+4) {
        margin-right: 10px;
    }
    .animeVideosItem:nth-child(3n+3) {
        margin-right: 0px;
    }
    .loopCalendarioAnimes .aniItem {
        width: calc(100% / 4 - 7.5px);
    }
    .loopCalendarioAnimes .aniItem:nth-child(6n+6) {
        margin-right: 10px;
    }
    .loopCalendarioAnimes .aniItem:nth-child(4n+4) {
        margin-right: 0px;
    }
}

/* 1015 */
@media (max-width: 1015px) {
    .episodioControleItem span {
        display: none;
    }
}

/* 960 */
@media (max-width: 960px) {
    .epiItem {
        width: calc(100% / 3 - 8px);
    }
    .epiItem:nth-child(5n+5) {
        margin-right: 10px;
    }
    .epiItem:nth-child(3n+3) {
        margin-right: 0px;
    }
    .animeVideosItem {
        width: calc(100% / 2 - 5px);
    }
    .animeVideosItem:nth-child(3n+3) {
        margin-right: 10px;
    }
    .animeVideosItem:nth-child(2n+2) {
        margin-right: 0px;
    }
    .footer .mwidth {
        flex-wrap: wrap;
    }
}

@media (max-width: 1050px) {
    .catalog-layout {
        grid-template-columns: 220px minmax(0, 1fr);
    }
    #listaAnimesGrid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


/* 900 */
@media (max-width: 1100px) {
    .calendario_section {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .playersContainerAdvanced {
        padding-right: 260px;
    }
    .playersLeft {
        width: 260px;
    }
    .episode-bottom-layout .top10_ani {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .episode-bottom-layout .top10_item.especial {
        grid-column: span 2;
        grid-row: span 3;
    }
}

@media (max-width: 900px) {
    .calendario_section {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    .letras_fbox {
        grid-template-columns: repeat(9, 1fr);
    }
    #listaAnimesGrid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .reportContainer {
        width: 275px;
    }
    .episodioControles {
        width: calc(100% - 285px);
    }
}

/* 830 */
@media (max-width: 830px) {
    .animeContainer {
        width: calc(100% - 20px);
        max-width: 100%;
        flex-direction: column;
        overflow: hidden;
    }
    .animeContainer .left,
    .animeContainer .right {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
    .animeContainer .left {
        margin: 0 0 14px;
    }
    .animeContainer .leftAnime {
        width: 100%;
        overflow: hidden;
    }
    .animeContainer .left .animeImg {
        height: auto;
        aspect-ratio: 2 / 3;
        max-height: 520px;
    }
    .anime-status-sidebar {
        width: calc(100% - 20px);
        max-width: none;
        margin: 14px 10px 8px;
        box-sizing: border-box;
    }
    .animeStats {
        width: 100%;
        box-sizing: border-box;
    }
    .animeStatsItem {
        min-width: 0;
    }
    .animeVideosContainer,
    .animeVideosScrollArea,
    .episode-filter-bar {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .animeVideosScrollArea {
        padding-right: 4px;
    }
    .animeContainer .right {
        width: 100%;
    }
    .animeVideosItem {
        width: calc(100% / 4 - 10px);
    }
    .animeVideosItem:nth-child(4n+4) {
        margin-right: 0px;
    }
    .animeVideosItem:nth-child(2n+2) {
        margin-right: 10px;
    }
    .playersContainerAdvanced {
        display: flex;
        flex-direction: column-reverse;
        padding-right: 0;
    }
    .playersContainerAdvanced .playersLeft {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 300px;
        min-height: 300px;
    }
    .playersContainerAdvanced .playersContainer {
        width: 100%;
        margin-bottom: 10px;
    }
    .discordInvite img {
        margin: auto;
        display: block;
    }
    .episodioControleItem span {
        display: none;
    }
    .anilistaContainer .right .anilistaLoop .aniItem {
        width: calc(100% / 2 - 5px);
        height: auto;
        margin-bottom: 10px;
    }
    .anilistaContainer .right .anilistaLoop .aniItem:nth-child(4n+4) {
        margin-right: 10;
    }
    .anilistaContainer .right .anilistaLoop .aniItem:nth-child(2n+2) {
        margin-right: 0px;
    }
    .searchResults .aniItem {
        width: calc(100% / 4 - 7.5px);
        height: auto;
        margin-bottom: 10px;
    }
    .searchResults .aniItem:nth-child(6n+6) {
        margin-right: 10px;
    }
    .searchResults .aniItem:nth-child(4n+4) {
        margin-right: 0px;
    }
}

/* 768 */
@media (max-width: 768px) {
    #release.flickity-enabled {
        cursor: grab;
        touch-action: pan-y;
    }
    #release.flickity-enabled:active {
        cursor: grabbing;
    }
    #release .flickity-viewport {
        overflow: hidden;
    }
    #release .aniItem {
        width: 178px;
        height: 274px;
    }
    #release .flickity-button {
        display: none!important;
    }
    .searchContainerHeader {
        width: 100%;
        height: 100vh;
        position: fixed;
        right: 0;
        background: #111;
        display: flex;
        justify-content: center;
        align-items: center;
        display: none;
    }
    .search_mobile {
        width: 40px;
        height: 40px;
        background: rgb(197,15,40);
        background: linear-gradient(90deg, rgba(197,15,40,1) 0%, rgba(124,18,53,1) 100%);
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 23px;
        border-radius: 3px;
        transition: var(--trasition);
    }
    .footerItem {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 50px;
    }
    .creditos .mwidth {
        flex-direction: column;
        text-align: center;
    }
    .mirror_name {
        width: 100%;
    }
    .mirror_links a {
        margin-right: 0;
        width: 100%;
    }
}

/* 700 */
@media (max-width: 700px) {
    .animeVideosItem {
        width: calc(100% / 2 - 5px);
    }
    .animeVideosItem:nth-child(2n+2) {
        margin-right: 0px;
    }
    .anilistaContainer {
        flex-direction: column;
    }
    .anilistaContainer .left {
        width: 100%;
        margin-bottom: 10px;
    }
    .anilistaContainer .right {
        width: 100%;
    }
    .anilistaContainer .right .anilistaLoop .aniItem {
        width: calc(100% / 3 - 7.5px);
        height: auto;
        margin-bottom: 10px;
    }
    .anilistaContainer .right .anilistaLoop .aniItem:nth-child(2n+2) {
        margin-right: 10px;
    }
    .anilistaContainer .right .anilistaLoop .aniItem:nth-child(3n+3) {
        margin-right: 0;
    }
    .loopCalendarioAnimes .aniItem {
        width: calc(100% / 2 - 5px);
    }
    .loopCalendarioAnimes .aniItem:nth-child(4n+4) {
        margin-right: 10px;
    }
    .loopCalendarioAnimes .aniItem:nth-child(2n+2) {
        margin-right: 0px;
    }
    .diasAbas {
        width: 100%;
        flex-direction: column;
        text-align: center;
    }

}

/* 600 */
@media (max-width: 600px) {
    .home-seo-heading {
        align-items: flex-start;
        gap: 11px;
        margin-top: 15px;
        padding: 13px 14px;
    }
    .home-seo-heading-icon {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
        font-size: 19px;
    }
    .home-seo-heading h1 {
        font-size: 14px;
    }
    .home-seo-heading p {
        font-size: 11px;
    }
    .calendar-page {
        padding-top: 16px;
    }
    .calendario_section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    .calendario_header h1 {
        align-items: flex-start;
        flex-wrap: wrap;
        font-size: 13px;
    }
    .episode-bottom-layout .top10_ani {
        grid-template-columns: 1fr;
    }
    .episode-bottom-layout .top10_item {
        border-right: 0;
    }
    .episode-bottom-layout .top10_item.especial {
        grid-column: auto;
        grid-row: span 3;
        height: auto;
        min-height: 0;
    }
    .episode-bottom-layout .top10_item.especial .top10_especialThumb,
    .episode-bottom-layout .top10_item.especial .poster-fallback {
        height: 234px;
        min-height: 234px;
    }
    .episode-filter-bar {
        align-items: stretch;
        flex-direction: column;
    }
    .episode-filter-search,
    .episode-order-dropdown {
        flex-basis: auto;
        width: 100%;
    }
    .lastEpisodes .episContainer .epiItem:last-child {
        display: none;
    }
    .epiItem {
        width: calc(100% / 2 - 8px);
    }
    .epiItem:nth-child(3n+3) {
        margin-right: 10px;
    }
    .epiItem:nth-child(2n+2) {
        margin-right: 0px;
    }
    .episodioControlesContainer {
        flex-direction: column;
    }
    .episodioControles {
        margin-bottom: 10px;
        width: 100%;
    }
    .reportContainer {
        width: 100%;
    }
    .searchResults .aniItem {
        width: calc(100% / 2 - 5px);
        height: auto;
        margin-bottom: 10px;
    }
    .searchResults .aniItem:nth-child(4n+4) {
        margin-right: 10px;
    }
    .searchResults .aniItem:nth-child(2n+2) {
        margin-right: 0px;
    }
}

/* 500 */
@media (max-width: 500px) {
    .catalog-page {
        padding-top: 18px;
    }
    .paginacao {
        gap: 5px;
        padding: 6px;
    }
    .paginacao .page-numbers {
        min-width: 34px;
        height: 34px;
        padding: 0 9px;
    }
    .letras_fbox {
        grid-template-columns: repeat(6, 1fr);
    }
    #listaAnimesGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 10px;
    }
    .page_lista_de_animes_itens > h1 {
        font-size: 11px;
    }
    .page_404 {
        min-height: 520px;
        padding-top: 50px;
    }
    .page_404 .page-error-icon {
        width: 88px;
        height: 88px;
    }
    .page_404 h1 {
        font-size: 28px;
    }
    .page_404 h2 {
        font-size: 14px;
    }
    .anilistaContainer .right .anilistaLoop .aniItem {
        width: calc(100% / 2 - 5px);
        height: auto;
        margin-bottom: 10px;
    }
    .anilistaContainer .right .anilistaLoop .aniItem:nth-child(3n+3) {
        margin-right: 10px;
    }
    .anilistaContainer .right .anilistaLoop .aniItem:nth-child(2n+2) {
        margin-right: 0px;
    }
}

/* 440 */
@media (max-width: 440px) {
    .tabsContainers ul li {
        font-size: 10px;
        padding: 10px 8px;
    }
    .lastEpisodes .episContainer .epiItem:last-child {
        display: block;
    }
    .epiItem {
        width: calc(100%);
        margin-right: 0px;
    }
    .epiItem:nth-child(3n+3), .epiItem:nth-child(5n+5) {
        margin-right: 0px;
    }
    .animeVideosItem {
        width: 100%;
        margin-right: 0px;
    }
    .animeVideosItem:nth-child(3n+3) {
        margin-right: 0px;
    }
    .abaAnimeItem {
        padding: 10px 5px;
        font-size: 10px;
    }
    .animeContainer .left {
        width: 100%;
        padding: 0;
        margin: 0 0 10px;
    }
    .anime-status-sidebar {
        width: calc(100% - 16px);
        gap: 10px;
        margin: 12px 8px 8px;
        padding: 11px;
    }
    .anime-status-sidebar .anime-status-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }
    .anime-status-sidebar .anime-status-content {
        max-width: calc(100% - 46px);
    }
    .anime-status-sidebar .anime-status-content b,
    .anime-status-sidebar .anime-status-content span {
        overflow-wrap: anywhere;
    }
    .animeStats {
        padding: 8px;
    }
    .animeStatsItem {
        height: 70px;
    }
    .animeStatsItem span {
        font-size: 21px;
    }
    .animeStatsItem b {
        font-size: 8px;
    }
}

/* 425 */
@media (max-width: 425px) {
    .logo {
        max-width: 170px;
    }
    .flickity-button {
        top: -34px!important;
    }
    .aniVideoDownText {
        width: 100%;
        max-width: 100%;
    }
    .aniVideoDownBtns {
        display: none;
    }
}

.telegram-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #229ED9;
    color: #fff;
    border-radius: 50px;
    padding: 10px 18px 10px 14px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(34,158,217,.45);
    transition: background .2s, box-shadow .2s, transform .15s;
    white-space: nowrap;
}
.telegram-fab:hover {
    background: #1a86b8;
    box-shadow: 0 6px 24px rgba(34,158,217,.6);
    transform: translateY(-2px);
    color: #fff;
}
.telegram-fab svg {
    flex-shrink: 0;
}
@media (max-width: 480px) {
    .telegram-fab span { display: none; }
    .telegram-fab { padding: 12px; border-radius: 50%; }
}

@media (max-width: 960px) {
    .ultEpsContainer { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .ultEpsContainer { grid-template-columns: repeat(2, 1fr); }
}

/* 350 */
@media (max-width: 350px) {
    .logo {
        width: 125px;
    }
    .logo img {
        max-width: 100%;
    }
}