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

/* Variáveis */
: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;
}

/* 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%;
}

/* 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 input {
    width: 205px;
    height: 40px;
    padding: 0 20px;
    border: none;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    background: var(--fourth-bg-color);
    color: #fff;
    font-family: var(--font);
}
.searchButtonSend {
    height: 40px;
    width: 40px;
    background-color: var(--primary);
    font-size: 20px;
    cursor: pointer;
    border: none;
    color: #fff;
}
.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.THEME_preloader {
    padding: 0;
    height: 65px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.containerLetras.THEME_preloader i {
    position: absolute;
    font-size: 24px;
    animation: linear .5s rotateLoader infinite;
}
@keyframes rotateLoader {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
.containerLetras.THEME_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.THEME_preloader {
    height: 300px;
}
.tabsContainers.THEME_preloader .THEME_preloader_loader {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}
.tabsContainers.THEME_preloader .THEME_preloader_loader i {
    animation: linear .5s rotateLoader infinite;
}
.tabsContainers.THEME_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;
    }
}

/* Flickity Modification */
.flickity-button {
    background: var(--primary)!important;
    border: none!important;
    color: #ffffff!important;
    width: 30px!important;
    height: 30px!important;
    top: -30px!important;
    right: 0!important;
    border-radius: 2px!important;
}
.flickity-prev-next-button.previous {
    left: initial!important;
    right: 40px!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;
}
.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 */
.comentariosContainer {
    background: rgba(255, 255, 255, .02);
    padding: 10px;
}

/* Paginação */
.paginacaoContainer {
    text-align: center;
}
.paginacao {
    background: rgba(255, 255, 255, .01);
    overflow: hidden;
    border-radius: 40px;
}
.paginacao .page-numbers {
    padding: 10px 20px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}
.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 {
    flex-wrap: wrap;
}
.episodioSingleContainer .center {
    width: 100%;
}
.episodioSingleContainer .left {
    width: calc(100% - 320px);
}
.episodioSingleContainer .right {
    width: 310px;
}
.videoInfos {
    width: 100%;
    background: rgba(255, 255, 255, .05);
    position: relative;
    align-items: stretch;
}
.videoTipo {
    width: 80px;
    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));
}
.videoTitleBar {
    width: calc(100% - 80px);
    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 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}
.playersLeft {
    width: 320px;
    background: rgba(255, 255, 255, .012);
    height: 300px;
    overflow: hidden;
}
.playersLeftHeader {
    background: var(--dark-004);
    height: 40px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    font-weight: 100;
    font-size: 14px;
}
.playersLeftsearchEP {

}
.playersLeftsearchEP form {

}
.playersLeftsearchEP form input[type=text] {
    width: 100%;
    border: none;
    height: 35px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-weight: 300;
    background: rgba(255, 255, 255, .03);
    color: #fff;
}
.playersLeftContent {
    height: calc(100% - 40px - 35px);
    overflow-y: auto;
}
.playersLeftContent::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 0;
	background-color: rgba(255, 255, 255, .03);
}

.playersLeftContent::-webkit-scrollbar {
	width: 6px;
	background-color: rgba(255, 255, 255, .03);
}
.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: var(--color-001);
}

.playersLeftContainerItemThumbnail {
    width: 75px;
    height: 50px;
    overflow: hidden;
    margin-right: 10px;
}
.playersLeftContainerItemThumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--trasition);
}
.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: 0;
	background-color: var(--color-001);
}
.playersContainer {
    width: calc(100% - 320px);
}
.abasPlayersContainer {
    width: 100%;
    margin-bottom: 10px;
}
.abasPlayers {
    text-align: center;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    display: flex;
    width: 100px;
    height: 35px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--trasition);
    letter-spacing: 1px;
    white-space: nowrap;
    margin-right: 5px;
    background: rgba(255, 255, 255, .03);
}
.abasPlayers.active, .abasPlayers:hover {
    background: var(--primary-hover);
    font-weight: 700;
}
.playersContainer {
    position: relative;
}
.playersContainer video {
    width: 100%;
    height: auto;
}
.playerBoxInfra {
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 56%;
}
.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;
}
.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);
}
.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;
    max-height: 700px;
    overflow-y: auto;
    padding-right: 10px;
}
.animeVideosContainer.active {
    display: block;
}
.animeVideosContainer::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.animeVideosContainer::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}
.animeVideosContainer::-webkit-scrollbar-thumb {
    background: var(--primary);
    border: 0px none #ffffff;
    border-radius: 50px;
}
.animeVideosContainer::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}
.animeVideosContainer::-webkit-scrollbar-thumb:active {
    background: var(--primary-hover);
}
.animeVideosContainer::-webkit-scrollbar-track {
    background: #666666;
    border: 0px none #ffffff;
    border-radius: 50px;
}
.animeVideosContainer::-webkit-scrollbar-track:hover {
    background: #666666;
}
.animeVideosContainer::-webkit-scrollbar-track:active {
    background: #333333;
}
.animeVideosContainer::-webkit-scrollbar-corner {
    background: transparent;
}

/* 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;
}

/* Loop - Anime Downloads */
.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: 8px 10px;
    background: var(--primary);
    display: flex;
    align-items: center;
    font-size: 13px;
    border-radius: 3px;
    transition: var(--trasition);
}
.btn_action_download:hover {
    background: var(--primary-hover);
}
.btn_action_download i {
    margin-right: 5px;
}

/* 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 */
.loopCalendarioAnimes {

}
.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: 10s 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;
}

/*
Código de mostrar mais ou menos da sinopse
Retirado de: https://codepen.io/jovanivezic/pen/ZLgXPJ
Adaptado por: Saory Lancaster
*/
.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;
    }
}

/* 900 */
@media (max-width: 900px) {
    .reportContainer {
        width: 275px;
    }
    .episodioControles {
        width: calc(100% - 285px);
    }
}

/* 830 */
@media (max-width: 830px) {
    .animeContainer {
        flex-direction: column;
    }
    .animeContainer .left {
        margin: 0 auto 10px;
    }
    .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 {
        flex-direction: column-reverse;
    }
    .playersContainerAdvanced .playersLeft {
        width: 100%;
    }
    .playersContainerAdvanced .playersContainer {
        width: 100%;
        margin-bottom: 10px;
    }
    .episodioSingleContainer {
        flex-direction: column;
    }
    .episodioSingleContainer .left {
        width: 100%;
        margin-bottom: 10px;
    }
    .episodioSingleContainer .right {
        width: 100%;
    }
    .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) {
    .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) {
    .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) {
    .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: calc(100% - 10px);
        padding: 0px;
        margin: 0 auto 10px;
    }
    .titleSection h4 {
        font-size: 10px;
    }
}

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

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