/**
 * =================================================================================
 * VARIABLES
 * =================================================================================
 */

:root {
    --roboto-condensed: 'Roboto Condensed', sans-serif;
    --rajdhani-font: 'Rajdhani', sans-serif;
    --video-font-family: 'Roboto Condensed', sans-serif;
    --video-brand: #fb0b0b;
    --primary-color: #fb0b0b;
    --secondary-color: #232323;
    --background-color: #fff;
    --secondary-background-color: #eee;
    --off-color: #8e8e8e;
    --discord-color: #5865f2;
    --facebook-color: #139cf7;
    --twitter-color: #1d9bf0;
    --default-radius: 4px 7px 4px 7px;
    --danger-border: #f5c6cb;
    --danger-text: #9d1c24;
    --danger-background: #f8d7da;
    --success-border: #c3e6cb;
    --success-text: #155724;
    --success-background: #d4edda;
    --width-content: 1350px;
}

/**
 * =================================================================================
 * Scrollbar
 * =================================================================================
 */

::-webkit-scrollbar {
    width: 5px;
    transition: width 0.5s;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    transition: background-color 0.5s;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #ff2727;
}

/**
* =================================================================================
* Swiper
* =================================================================================
  */


.recommend .swiper-button-next,
.recommend .swiper-button-prev {
    top: 34%;
    width: 5%;
    color: var(--primary-color);
}

.schedule .swiper-button-next,
.schedule .swiper-button-prev {
    top: 29%;
    width: 5%;
    color: var(--primary-color);
}

/**
 * =================================================================================
 * Authentication
 * =================================================================================
 */

.inputable {
    color: #000 !important;
}

.disabled {
    cursor: no-drop;
}

.hidden {
    width: 0px;
    height: 0px;
    overflow: hidden;
}

.nav-profile-mobile {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    text-decoration: none;
    color: #000;
}

.nav-profile-mobile span {
    font-size: 25px;
    margin-left: 15px;
    text-align: start;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-profile {
    z-index: 2;
    margin: 0px 6px 0px 30px;
}

.nav-profile ul {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: white;
    align-items: flex-start;
    transition: all 0.5s ease;
    width: 12rem;
    right: 1rem;
    top: 5.5rem;
    border-radius: 0.325rem;
    gap: 0;
    padding: 0.5rem 0rem;
    opacity: 0;
    box-shadow: 0px 0px 100px rgba(20, 18, 18, 0.25);
}

.nav-profile ul li p {
    text-align: center;
}

.nav-profile.active ul {
    display: block;
    visibility: visible;
    opacity: 1;
    display: flex;
}

.profile-pic {
    height: 3rem;
    width: 3rem;
    object-fit: cover;
    cursor: pointer;
    border-radius: 50%;
}

.sub-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.725rem;
    cursor: pointer;
    padding: 0.5rem 1.5rem;
}

.sub-item:hover {
    background-color: rgba(232, 232, 232, 0.4);
}

.sub-item:hover i {
    color: var(--primary-color);
    transform: scale(1.08) translateY(-2px);
    cursor: pointer;
}

.sub-item:hover p {
    color: #000;
    cursor: pointer;
}

.sub-item p {
    font-size: 0.85rem;
    color: #888888;
    font-weight: 500;
    margin: 0.4rem 0;
    flex: 1;
}

.switch-auth {
    margin-top: 30px;
    text-align: center;
}

.switch-auth a {
    text-decoration: none;
    color: var(--primary-color);
}

.switch-auth a:hover {
    text-decoration: underline;
}

.profile-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.profile-wrapper i {
    position: absolute;
    margin-top: 108px;
    margin-left: -134px;
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    opacity: 0.8;
    border: 1px solid #8f8f8f;
    cursor: pointer;
    display: none;
}

.profile-pic-big {
    height: 15rem;
    width: 15rem;
    object-fit: cover;
    cursor: pointer;
    border-radius: 50%;
}

.profile-pic-big:hover+i,
.profile-pic-big+i:hover {
    display: inline-block !important;
}

.profile-wrapper i:hover {
    opacity: 1;
}

.profile-pic-big:hover {
    filter: brightness(50%);
}

.login-spacer {
    margin-top: 90px;
}

/**
 * =================================================================================
 * Error Player
 * =================================================================================
 */

.player-error {
    margin: 10px;
    height: 500px;
    background: #000;
    color: white;
    justify-content: center;
    display: flex;
    align-items: center;
}

/**
 * =================================================================================
 * Loading Bar
 * =================================================================================
 */

#page-loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background-color: #e60023;
    z-index: 9999;
    transition: width 2s ease, opacity 0.3s ease;
    opacity: 0;
}

#page-loading-bar.active {
    width: 90%;
    opacity: 1;
}

/**
 * =================================================================================
 * MODIFIERS
 * =================================================================================
 */

.empty-message {
    margin-top: 10px;
}

.empty-message p {
    color: var(--off-color);
}

a.disabled {
    pointer-events: none;
    cursor: default;
}

.rating {
    color: var(--primary-color);
}

.card {
    box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.2);
    border-radius: var(--default-radius);
}

.background--discord {
    background: var(--discord-color) !important;
}

.background--discord:hover {
    background: rgba(88, 101, 242, .89) !important;
}

.background--facebook {
    background: var(--facebook-color) !important;
}

.background--facebook:hover {
    background: rgba(19, 156, 247, .89) !important;
}

.background--twitter {
    background: var(--twitter-color) !important;
}

.background--twitter:hover {
    background: rgba(29, 155, 240, .89) !important;
}

.box--active {
    background: #fff;
    border: 2px solid rgba(11, 171, 252, .35);
}

.box--false {
    color: #888 !important;
}

.box--false:hover {
    background: none !important;
}

.text--active {
    color: var(--primary-color) !important;
}

.mt--none {
    margin-top: 0 !important;
}

.mt--6-5 {
    margin-top: 6.5px !important;
}

.mt--5 {
    margin-top: 5px !important;
}

.mt--10 {
    margin-top: 10px !important;
}

.mt--20 {
    margin-top: 20px !important;
}

.mt--30 {
    margin-top: 30px !important;
}

.mt--40 {
    margin-top: 40px !important;
}

.mb--5 {
    margin-bottom: 5px !important;
}

.mb--10 {
    margin-bottom: 10px !important;
}

.mb--20 {
    margin-bottom: 20px !important;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.mb--40 {
    margin-bottom: 40px !important;
}

.--danger {
    background: var(--danger-background) !important;
    border: 1px solid var(--danger-border) !important;
    color: var(--danger-text) !important;
}

.--success {
    background: var(--success-background) !important;
    border: 1px solid var(--success-border) !important;
    color: var(--success-text) !important;
}

.--toggle-up {
    transform: rotate(0deg);
}

.--toggle-down {
    transform: rotate(-180deg);
}

/**
 * =================================================================================
 * BASE
 * =================================================================================
 */

*,
*::before,
*::after {
    box-sizing: border-box;
    text-rendering: optimizeLegibility !important;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .004) !important;
}

html {
    height: 100%;
    min-height: 100%;
}

body {
    font-family: var(--roboto-condensed);
    min-height: 100%;
}

.collapsible {
    cursor: pointer;
}

/**
 * =================================================================================
 * COMPONENTS
 * =================================================================================
 */

.button {
    background: var(--primary-color);
    border: none;
    border-radius: var(--default-radius);
    color: #fff;
    cursor: pointer;
    font-family: var(--rajdhani-font);
    font-size: 16px;
    font-weight: 700;
    height: 40px;
    line-height: 0;
    text-align: center;
    width: 100%;
}

.alert-message {
    align-items: center;
    border: 1px solid #cacaca;
    border-radius: var(--default-radius);
    display: flex;
    font-family: var(--rajdhani-font);
    font-size: 14px;
    font-weight: 500;
    justify-content: center;
    margin: 20px 0 0 0;
    padding: 12px 10px 12px 10px;
}

/**
 * =================================================================================
 * SIDENAV
 * =================================================================================
 */

.window-overlay {
    background: rgba(46, 46, 46, .58);
    height: 100%;
    position: fixed;
    display: none;
    width: 100%;
    z-index: 12;
}

.sidenav {
    position: absolute;
    left: -290px;
    background: var(--background-color);
    box-shadow: 2px 0px 2.97px 0.03px rgba(0, 0, 0, 0.22);
    height: 100vh;
    overflow: auto;
    transition: .5s;
    width: 290px;
}

.sidenav__top {
    align-items: center;
    border-bottom: 1px solid #ff0000;
    display: flex;
    height: 96px;
    justify-content: space-between;
    padding: 0 20px 0 20px;
    width: 100%;
}

.sidenav__logo {
    background: url(../img/logo/logo-mini.png) center no-repeat;
    height: 60px;
    text-indent: -9999px;
    width: 182px;
}

.sidenav__close-button {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.close-button__line {
    background: var(--primary-color);
    border-radius: 2px;
    height: 28px;
    transform: rotate(45deg);
    width: 4px;
    z-index: 1;
}

.sidenav__close-button .close-button__line>.close-button__line {
    transform: rotate(90deg);
    z-index: 2;
}

.sidenav__nav {
    margin: 10px 0 90px 0;
    padding: 0 20px 0 20px;
}

.sidenav__menu {
    margin: 0 0 20px 0;
}

.sidenav-menu__list {
    display: flex;
    flex-direction: column;
}

.sidenav-menu__item {
    border-bottom: 1px solid #e8e8e8;
    padding: 17px 0 17px 0;
}

.sidenav-menu__link {
    color: #000;
    font-family: var(--rajdhani-font);
    font-size: 18px;
    font-weight: 500;
    padding: 0 0 0 16px;
    text-decoration: none;
}

.sidenav-menu__link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.sidenav__search {
    position: relative;
}

.sidenav-search__input {
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    color: #000;
    font-family: var(--roboto-condensed);
    font-size: 16px;
    font-weight: 300;
    height: 40px;
    outline: none;
    padding: 0 55px 0 15px;
    width: 100%;
}

.sidenav-search__input::placeholder {
    color: rgba(0, 0, 0, 0.88);
}

.sidenav-search__button {
    background: var(--primary-color);
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    height: 40px;
    line-height: 0;
    position: absolute;
    right: 0;
    width: 40px;
}

.sidenav-search__icon {
    color: #fff;
    font-size: 26px;
}

/**
 * =================================================================================
 * HEADER
 * =================================================================================
 */

.header {
    background: var(--background-color);
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0px 2px 6px 0.3px rgb(54 54 54);
    height: 80px;
    /* Sticky */
    position: fixed;
    z-index: 11;
    width: 100%;
}

.header__container {
    align-items: center;
    background: var(--background-color);
    display: flex;
    height: 100%;
    justify-content: start;
    margin: 0 auto;
    max-width: var(--width-content);
    padding: 0 8px 0 8px;
    width: 100%;
}

.header__mobile-button {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.mobile-button__line {
    background: var(--primary-color);
    border-radius: 4px;
    height: 4px;
    width: 28px;
}

.header__logo {
    background: url(../img/logo/logo-mini.png) no-repeat;
    height: 60px;
    margin: 0 0 0 16px;
    text-indent: -9999px;
    width: 100%;
    background-position: left;
    background-size: contain;
}

.header__nav {
    display: none;
}

.header__menu {
    margin: 0 45px 0 0;
}

.header-menu__list {
    display: flex;
    gap: 30px;
}

.header-menu__link {
    color: #000;
    font-family: var(--rajdhani-font);
    font-size: 22px;
    font-weight: 500;
    text-decoration: none;
}

.header-menu__link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.header__search {
    position: relative;
}

.header-search__input {
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    color: var(--secondary-color);
    font-family: var(--roboto-condensed);
    font-size: 16px;
    font-weight: 300;
    height: 40px;
    outline: none;
    padding: 0 55px 0 15px;
    width: 230px;
}

.header-search__input::placeholder {
    color: rgba(206, 206, 206, .88);
}

.header-search__button {
    background: var(--primary-color);
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    height: 40px;
    line-height: 0;
    position: absolute;
    right: 0;
    width: 40px;
}

.header-search__icon {
    color: #ffffff;
    font-size: 26px;
}

.sticky-gap {
    margin-top: 100px;
}

/**
 * =================================================================================
 * BREADCRUMBS
 * =================================================================================
 */

.breadcrumbs {
    align-items: center;
    display: flex;
    height: 16px;
    margin: 20px auto -10px;
    max-width: var(--width-content);
    opacity: .97;
    padding: 0 8px 0 8px;
    width: 100%;
}

.breadcrumbs__text {
    color: #000;
    font-family: var(--roboto-condensed);
    font-size: 14px;
    font-weight: 400;
    width: inherit;
    word-break: break-word;
}

.breadcrumbs__link {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumbs__link:hover {
    text-decoration: underline;
}

.breadcrumbs__arrow {
    color: #6e6e6e;
}

/**
 * =================================================================================
 * MAIN
 * =================================================================================
 */

.main {
    margin: 38px 0 90px 0;
    /* Sticky */
    position: fixed;
    top: 53px;
    left: 0;
    right: 0;
    bottom: -98px;
    overflow-y: scroll;
}

/**
 * =================================================================================
 * WRAPPER
 * =================================================================================
 */

.wrapper {
    display: flex;
    flex-direction: column;
    margin: 50px auto 0;
    max-width: var(--width-content);
    padding: 0 8px 0 8px;
    width: 100%;
}


/**
 * =================================================================================
 * SECTION (BASE)
 * =================================================================================
 */

.section {
    width: 100%;
}

.section__title {
    color: var(--off-color);
    font-family: var(--rajdhani-font);
    font-size: 27px;
    font-weight: 700;
    margin: 0;
    cursor: pointer;
    background: none;
    border: none;
}

.section__title.active {
    color: var(--primary-color);
    font-family: var(--rajdhani-font);
    font-size: 27px;
    font-weight: 700;
    margin: 0;
    border-bottom: 3px solid var(--primary-color);
    background: none;
    cursor: default;
}

/**
 * =================================================================================
 * FEATURED (BASE)
 * =================================================================================
 */

.section.bookmark {
    padding: 0;
}

.featured {
    margin: 0 auto;
    max-width: var(--width-content);
    padding: 0 8px 0 8px;
    width: 100%;
}

/**
 * =================================================================================
 * FEATURED (SWIPER)
 * =================================================================================
 */


.swiper {
    width: 100%;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    width: 147px;
}

.swiper-slide__cover {
    background: #cecece;
    border-radius: var(--default-radius);
    height: 250px;
    width: inherit;
}

.swiper-slide__cover:hover {
    filter: brightness(50%);
}

.swiper-slide__title {
    color: var(--primary-color);
    font-family: var(--rajdhani-font);
    font-size: 19px;
    font-weight: 700;
    margin: 10px 0 10px 0;
    text-align: center;
    text-decoration: none;
    word-break: break-word;
}

.swiper-slide__title:hover {
    text-decoration: underline;
}

/**
 * =================================================================================
 * LETTERS (BASE)
 * =================================================================================
 */

.letters {
    margin: 0 auto;
    max-width: var(--width-content);
    padding: 0 8px 0 8px;
    width: 100%;
}

/**
 * =================================================================================
 * LETTERS (BOX)
 * =================================================================================
 */

.letters-box {
    background: var(--background-color);
    border-radius: var(--default-radius);
    padding: 10px 14px 10px 14px;
}

.letters-box__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.letters-box__link {
    align-items: center;
    border-radius: var(--default-radius);
    color: var(--primary-color);
    display: flex;
    font-family: var(--rajdhani-font);
    font-size: 14px;
    font-weight: 700;
    height: 30px;
    justify-content: center;
    text-decoration: none;
    width: 30px;
}

.letters-box__link:hover {
    background: #fff;
}

/**
 * =================================================================================
 * SEARCH-BOX 'N SEARCH RESULT
 * =================================================================================
 */

.search-box {
    background: var(--background-color);
    border-radius: var(--default-radius);
    display: flex;
    margin: 0 0 30px 0;
    padding: 18px 10px 0px 10px;
    width: 100%;
}

.search-box__form {
    position: relative;
    width: 100%;
}

.search-box__input {
    background: #fff;
    border: 1px solid #cacaca;
    border-radius: var(--default-radius);
    color: #6e6e6e;
    font-family: var(--roboto-condensed);
    font-size: 17px;
    font-weight: 400;
    height: 48px;
    outline: none;
    padding: 0 58px 0 18px;
    width: 100%;
}

.search-box__button {
    background: none;
    border: none;
    cursor: pointer;
    height: 48px;
    line-height: 0;
    position: absolute;
    right: 0;
    width: 48px;
}

.search-box__icon {
    color: var(--primary-color);
    font-size: 20px;
}

/**
 * =================================================================================
 * ANIME LIST
 * =================================================================================
 */

.anime-list {
    flex: 0;
}

.anime-list__item {
    background: var(--background-color);
    border-radius: var(--default-radius);
    display: flex;
    width: 100%;
    margin: 0 0 30px 0;
    padding: 28px 10px 28px 10px;
}

.anime-list__cover {
    background-color: #cecece;
    border-radius: var(--default-radius);
    /* height: 146px; */
    margin: 0 12px 0 0;
    width: 160px;
    position: relative;
}

.anime-list__cover:hover {
    opacity: .92;
}

.anime-list__cover:hover .play__circle {
    display: block;
}

.anime-list__img {
    border-radius: var(--default-radius);
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.anime-list__info {
    flex: 1;
    width: 100%;
}

.anime-list__title {
    color: var(--primary-color);
    display: block;
    font-size: 23px;
    font-weight: 700;
    margin: 6px 0 10px 0;
    text-decoration: none;
    word-break: break-word;
}

.anime-list__title:hover {
    text-decoration: underline;
}

.anime__language-box {
    background: var(--secondary-background-color);
    border-radius: var(--default-radius);
    color: var(--primary-color);
    display: inline-block;
    font-family: var(--rajdhani-font);
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 10px 0;
    padding: 4px 10px 4px 10px;
}

.anime-genres__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.anime-genres__link {
    align-items: center;
    background: var(--primary-color);
    border-radius: var(--default-radius);
    color: #fff;
    display: flex;
    font-family: var(--rajdhani-font);
    font-size: 14px;
    font-weight: 700;
    height: 24px;
    padding: 0 12px 0 12px;
    text-decoration: none;
}



/**
 * =================================================================================
 * SERVER LIST
 * =================================================================================
 */

.anime-server__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.anime-server__link {
    align-items: center;
    box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.2);
    border-radius: var(--default-radius);
    color: var(--primary-color);
    display: flex;
    font-family: var(--rajdhani-font);
    font-size: 14px;
    font-weight: 700;
    height: 24px;
    padding: 0 12px 0 12px;
    text-decoration: none;
    border: var(--secondary-color);
}

.anime-server__link:hover {
    background: var(--secondary-background-color);
}

.anime-server__link.active {
    background: var(--primary-color);
    color: #fff;
}

/**
 * =================================================================================
 * PAGINATION
 * =================================================================================
 */

.pagination {
    display: flex;
    justify-content: center;
    width: 100%;
}

.pagination__container {
    background: var(--background-color);
    border-radius: var(--default-radius);
    display: flex;
    justify-content: center;
    padding: 10px 20px 10px 20px;
    width: max-content;
}

.pagination__list {
    display: flex;
    gap: 10px;
}

.pagination__link {
    align-items: center;
    border-radius: var(--default-radius);
    color: var(--primary-color);
    display: flex;
    font-family: var(--rajdhani-font);
    font-size: 14px;
    font-weight: 700;
    height: 30px;
    justify-content: center;
    text-decoration: none;
    width: 30px;
}

.pagination__link:hover {
    background: #fff;
}

/**
 * =================================================================================
 * SINGLE ANIME (BASE)
 * =================================================================================
 */

.single-anime {
    margin: 0 auto;
    max-width: var(--width-content);
    padding: 0 8px 0 8px;
}

/**
 * =================================================================================
 * SINGLE ANIME (SUMMARY)
 * =================================================================================
 */

.anime-summary {
    background: var(--background-color);
    border-radius: var(--default-radius);
    display: grid;
    grid-template-areas: 'summary-cover' 'summary-info' 'summary-synopsis';
    padding: 28px 10px 28px 10px;
    row-gap: 16px;
}

.anime-summary__cover {
    border-radius: var(--default-radius);
    display: flex;
    grid-area: summary-cover;
    justify-content: center;
    width: 100%;
}

.anime-summary__img {
    background: #cecece;
    border-radius: var(--default-radius);
    height: 353px;
    width: 235px;
    object-fit: cover;
}

.anime-summary__img {
    background: #cecece;
    border-radius: var(--default-radius);
    object-fit: cover;
}

.anime-summary__info {
    grid-area: summary-info;
    width: 100%;
}

.anime-summary__title {
    color: var(--primary-color);
    font-family: var(--rajdhani-font);
    font-size: 27px;
    font-weight: 700;
    margin: 10px 0 10px 0;
    word-break: break-word;
}

.anime-summary__synopsis {
    color: var(--off-color);
    font-family: var(--roboto-condensed);
    font-size: 14px;
    font-weight: 400;
    grid-area: summary-synopsis;
    text-align: justify;
    width: 100%;
}

/**
 * =================================================================================
 * SINGLE ANIME (DATASHEET)
 * =================================================================================
 */

.anime-datasheet {
    background: var(--background-color);
    border-radius: var(--default-radius);
    display: none;
    margin: 30px 0 0 0;
    padding: 28px 20px 28px 20px;
}

.datasheet__table {
    border-bottom: 1px solid #cacaca;
    border-top: 1px solid #cacaca;
    font-family: var(--rajdhani-font);
    font-size: 16px;
    font-weight: 700;
    width: 100%;
}

.datasheet__tr {
    border-bottom: 1px solid #cacaca;
    vertical-align: middle;
}

.datasheet__td {
    color: var(--off-color);
    padding: 10px 20px 10px 20px;
}

.datasheet__td:first-child {
    color: var(--primary-color);
    width: 38%;
}

.datasheet__link {
    color: var(--off-color);
    text-decoration: none;
}

.datasheet__link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/**
 * =================================================================================
 * SINGLE ANIME (EPISODES)
 * =================================================================================
 */

.episodes {
    margin: 0 auto;
    max-width: var(--width-content);
    padding: 0 8px 0 8px;
    width: 100%;
}

.anime-episodes {
    column-gap: 19.2px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 14px;
    /* End Grid */
    max-height: 311px;
    overflow: auto;
    background: var(--background-color);
    border-radius: var(--default-radius);
    padding: 28px 10px 28px 10px;
}

.anime-episodes__item {
    align-items: center;
    /* border-bottom: 1px solid #cacaca; */
    display: flex;
    /* padding: 20px 20px 0px 20px; */
    padding: 20px;
}

/* .anime-episodes__item:first-child {
    padding: 0 0 20px 0;
}

.anime-episodes__item:last-child {
    border-bottom: none;
    padding: 20px 0 0 0;
} */

.anime-episodes__thumbnail-box {
    height: 60px;
    margin: 0 20px 0 0;
    width: 106px;
}

.anime-episodes__thumbnail-box:hover {
    opacity: .92;
}

.anime-episodes__thumbnail-img {
    background: #cecece;
    border-radius: var(--default-radius);
    height: 60px;
    width: 100%;
}

.anime-episodes__division {
    background: #cacaca;
    display: block;
    height: 40px;
    margin: 0 20px 0 0;
    width: 1px;
}

.anime-episodes__title {
    color: var(--primary-color);
    font-family: var(--rajdhani-font);
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
}

.anime-episodes__info {
    display: flex;
    flex-direction: column;
}

.anime-episodes__title:hover {
    text-decoration: underline;
}

.anime-episodes-time {
    color: var(--off-color);
    font-family: var(--roboto-condensed);
    font-size: 14px;
    font-weight: 400;
    margin: 6px 0 0 0;
    text-align: justify;
}

.anime-episodes-box-time {
    color: var(--off-color);
    font-family: var(--roboto-condensed);
    font-size: 9px;
    font-weight: 400;
    margin: 6px 0 0 0;
    text-align: justify;
}

.anime-episodes-box-time.active {
    color: #fff;
}

.episode-box__item:hover .anime-episodes-box-time,
.anime-episodes-box-time:hover {
    color: var(--off-color);
}

.anime-episodes__date {
    color: var(--off-color);
    font-family: var(--roboto-condensed);
    font-size: 11px;
    font-weight: 400;
    margin: 3px 0 0 0;
}

.anime-episodes__episode {
    align-items: center;
    display: none;
    justify-content: center;
    margin: 0 20px 0 0;
    width: 60px;
}

.episode__link {
    width: 78px;
    color: var(--primary-color);
    font-family: var(--rajdhani-font);
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.episode__link:hover {
    background-color: var(--secondary-background-color);
    border-radius: var(--default-radius);
}

.episode__link.watched {
    color: #fff;
    background-color: var(--primary-color);
    border-radius: var(--default-radius);
}

.episode__link.watched span {
    color: #fff;
}

/**
 * =================================================================================
 * EPISODE (BASE)
 * =================================================================================
 */

.episode {
    flex: 0;
}

.episode.wrapper {
    position: flex;
    flex-direction: column;
}

/**
 * =================================================================================
 * EPISODE (PLAYER BOX)
 * =================================================================================
 */

.episode-box {
    background: var(--background-color);
    border-radius: var(--default-radius);
    display: flex;
    flex-direction: column;
    margin: 0 0 10px 0;
    width: 100%;
}

.episode-box__heading {
    display: flex;
    justify-content: center;
}

.episode-box__title {
    color: var(--primary-color);
    font-family: var(--rajdhani-font);
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.episode-box__player {
    align-items: center;
    background: #cecece;
    display: flex;
    height: 162px;
    justify-content: center;
    width: 100%;
}

.episode-box__player-button {
    border-radius: var(--default-radius);
    color: var(--primary-color);
    font-size: 64px;
}

.episode-box__guide {
    display: flex;
    gap: 10px;
    height: 30px;
    justify-content: center;
    margin: 8px 0 0 0;
}

.episode-box__button {
    align-items: center;
    border-radius: var(--default-radius);
    color: var(--primary-color);
    display: flex;
    height: 30px;
    justify-content: center;
    text-decoration: none;
    width: 30px;
}

.episode-box__button:hover {
    background: #fff;
}

/**
 * =================================================================================
 * EPISODE (ANIME INFO)
 * =================================================================================
 */

.server-info {
    border-radius: var(--default-radius);
    display: flex;
    padding: 15px 0px 15px 0px;
}

.anime-info {
    background: var(--background-color);
    border-radius: var(--default-radius);
    display: flex;
    padding: 28px 10px 28px 10px;
}

.anime-info__cover {
    background: #cecece;
    border-radius: var(--default-radius);
    display: none;
    height: 146px;
    margin: 0 12px 0 0;
    width: 98px;
}

.anime-info__cover:hover {
    opacity: .92;
}

.anime-info__img {
    border-radius: var(--default-radius);
    height: 100%;
    width: 100%;
}

.anime-info__title {
    color: var(--primary-color);
    font-family: var(--rajdhani-font);
    font-size: 23px;
    font-weight: 700;
    margin: 6px 0 10px 0;
    text-decoration: none;
    word-break: break-word;
}

.anime-info__title:hover {
    text-decoration: none;
}

.anime-info__summary {
    flex: 1;
    width: 100%;
}

.anime-info__synopsis {
    color: var(--off-color);
    font-family: var(--roboto-condensed);
    font-size: 14px;
    font-weight: 400;
    margin: 6px 0 0 0;
    text-align: justify;
}

/**
 * =================================================================================
 * EPISODE (COMMENTS)
 * =================================================================================
 */

.comments-box {
    background: var(--background-color);
    border-radius: var(--default-radius);
    /* padding: 18px 10px 18px 10px; */
    width: 100%;
}

.comments-box__content {
    align-items: center;
    background: #fff;
    border-radius: var(--default-radius);
    /* display: flex; */
    /* justify-content: center; */
    padding: 2px 0px 0px 0px;
}

.comments-box__p {
    color: var(--off-color);
    font-family: var(--roboto-condensed);
    font-size: 18px;
    font-weight: 700;
}

.comment {
    display: flex;
    margin: 12px;
    padding: 5px 0px 0px 0px;
    /* border: 1px solid #ddd; */
    border-radius: 8px;
}

.user-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.user-info {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
}

.comment-content {
    flex: 1;
}

.comment-date {
    color: #888;
    margin-left: 8px;
    font-size: 12px;
}

.comment-content p {
    margin: 10px 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    width: 58vw;
}

.comment-actions {
    display: flex;
    align-items: center;
    width: 120px;
    justify-content: space-between;
}

.comment-actions a,
.comment-actions a span {
    cursor: pointer;
    text-decoration: none;
    color: #888;
}

.comment-actions a:hover,
.comment-actions a:hover span {
    color: var(--primary-color);
    text-decoration: none;
}

.like-icon {
    margin-right: 10px;
    cursor: pointer;
}

.reply-link {
    color: #3498db;
    cursor: pointer;
}

.comment-actions span:hover {
    text-decoration: underline;
}

.user .comment-content {
    display: flex;
    width: 100%;
}

.user .comment-content .input--area {
    width: 75%;
}

.user .comment-content .send--button {
    display: flex;
    width: 35%;
    padding: 7px;
    justify-content: center;
    align-items: center;
    background-color: #ededed;
    border-radius: 0px 5px 5px 0px;
}


.user .comment-content .send--button a {
    cursor: pointer;
    text-decoration: none;
    color: var(--primary-color);
}

.user .comment-content .send--button a.disabled {
    text-decoration: none;
    color: #888;
}

.user .comment-content textarea {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 5px 0px 0px 5px;
    outline: none;
    appearance: none;
    font-family: var(--roboto-condensed);
    background-color: #ededed;
    padding: 8px 0 8px 12px;
    width: 100%;
    height: 100%;
    font-size: 14px;
    line-height: 18px;
    color: #000;
    outline: none;
    overflow: hidden;
    resize: none;
    grid-area: 1 / 1 / 2 / 2;
}

.comment-header {
    display: flex;
    justify-content: space-between;
}

.comment-header .comment--option a {
    text-decoration: none;
    cursor: pointer;
    opacity: 0.6;
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 11px;
}

.comment-header .comment--option a.active {
    opacity: 1;
    text-decoration: underline;
    cursor: default;
}

.like_comment.active,
.like_comment.active span {
    color: var(--primary-color);
}

.reply_comment.active,
.reply_comment.active span {
    color: var(--primary-color);
}

.comment-reply {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
}

.comment-reply:hover {
    text-decoration: underline;
}

.comment .delete-button {
    padding: 0;
    margin-left: auto;
    display: none;
}

.comment:hover .delete-button {
    display: block;
}

.comment-section {
    display: none;
}

.mobile-comment-section {
    display: inline;
}

/**
 * =================================================================================
 * AUTH (BASE)
 * =================================================================================
 */

.auth {
    margin: 35px auto;
    max-width: 510px;
    padding: 0 8px 0 8px;
}

/**
 * =================================================================================
 * AUTH (AUTH BOX)
 * =================================================================================
 */


.auth-box {
    background: var(--background-color);
    border-radius: var(--default-radius);
    padding: 28px 10px 28px 10px;
}

.form-control__label {
    color: var(--primary-color);
    display: block;
    font-family: var(--rajdhani-font);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.form-control__input {
    border: 1px solid #cacaca;
    border-radius: var(--default-radius);
    color: #6e6e6e;
    font-family: var(--roboto-condensed);
    font-size: 15px;
    font-weight: 400;
    height: 42px;
    margin: 0 0 18px 0;
    outline: none;
    padding: 0 18px 0 18px;
    width: 100%;
}

.form-control__textarea {
    border: 1px solid #cacaca;
    border-radius: var(--default-radius);
    color: #6e6e6e;
    font-family: var(--roboto-condensed);
    font-size: 15px;
    font-weight: 400;
    height: 118px;
    margin: 0 0 18px 0;
    outline: none;
    padding: 16px 18px 16px 18px;
    resize: none;
    width: 100%;
}

/**
 * =================================================================================
 * CARDS (NEW EPISODES)
 * =================================================================================
 */

.cards {
    flex: 0;
    margin: 0 0 40px 0;
}

.cards__container {
    column-gap: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
}

.episode-card {
    background: var(--background-color);
    border-radius: var(--default-radius);
    width: 100%;
}

.episode-card__thumbnail-box {
    height: auto;
    position: relative;
}

.episode-card__thumbnail-box:hover {
    opacity: .92;
}

.episode-card__thumbnail-img {
    border-radius: 4px 7px 0 0;
    height: 100%;
    width: 100%;
}

.episode-card__thumbnail-box:hover .play__circle {
    display: flex;
}

.play__circle {
    text-decoration: none;
    align-items: center;
    display: none;
    height: 40px;
    justify-content: center;
    left: calc(50% - 20px);
    position: absolute;
    top: calc(50% - 20px);
    width: 40px;
}

.play__icon {
    color: var(--primary-color);
    font-size: 37px;
}

.episode-card__rating-box {
    align-items: baseline;
    background: var(--primary-color);
    bottom: 6px;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-family: var(--rajdhani-font);
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
    left: 4px;
    padding: 4px 5px 4px 5px;
    position: absolute;
    z-index: 2;
}

.episode-card__status-box {
    align-items: baseline;
    background: var(--primary-color);
    bottom: 6px;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-family: var(--rajdhani-font);
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
    right: 4px;
    padding: 4px 5px 4px 5px;
    position: absolute;
    z-index: 2;
}

.episode-card__status-box.ongoing {
    color: #fff;
    background-color: var(--facebook-color);
}

.episode-card__status-box.completed {
    color: #fff;
    background-color: var(--secondary-color);
}

.recommend-status {
    position: relative;
}

.episode-card__info {
    padding: 10px 8px 12px 8px;
}

.episode-card__title {
    color: var(--primary-color);
    font-size: 15px;
    font-family: var(--rajdhani-font);
    font-weight: 700;
    text-decoration: none;
    word-break: break-word;
}

.episode-card__title:hover {
    text-decoration: underline;
}

.episode-card__description {
    color: var(--primary-color);
    font-size: 11px;
    font-family: var(--roboto-condensed);
    margin: 5px 0 0 0;
    word-break: break-word;
}

/**
 * =================================================================================
 * Bookmark
 * =================================================================================
 */

section.bookmark {
    padding-left: 20px;
    padding-right: 20px;
}

.history.cards__container {
    column-gap: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
}

.history-card {
    background: var(--background-color);
    border-radius: var(--default-radius);
    width: 100%;
}

.history-card__thumbnail-box {
    height: 118px;
    position: relative;
}

.history-card__thumbnail-box:hover {
    opacity: .92;
}

.history-card__thumbnail-img {
    border-radius: 4px 7px 0 0;
    height: 121px;
    width: 100%;
    object-fit: cover;
}

.history-card__thumbnail-box:hover .play__circle {
    display: flex;
}

.history-card__progress {
    position: relative;
}

.history-card__progress .progressbar {
    width: 0%;
    background-color: var(--primary-color);
    border-radius: 5px;
    height: 5px;
}

.history-card__info {
    padding: 3px 8px 12px 8px;
}

.history-card__title {
    color: var(--primary-color);
    font-size: 15px;
    font-family: var(--rajdhani-font);
    font-weight: 700;
    text-decoration: none;
    word-break: break-word;
}

.history-card__title:hover {
    text-decoration: underline;
}

.history-card__description {
    color: var(--primary-color);
    font-size: 11px;
    font-family: var(--roboto-condensed);
    margin: 5px 0 0 0;
    word-break: break-word;
}

/**
 * =================================================================================
 * History
 * =================================================================================
 */


@keyframes float {
    0% {
        text-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        transform: translatey(0px);
    }

    50% {
        text-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
        transform: translatey(-10px);
    }

    100% {
        text-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        transform: translatey(0px);
    }
}

.bookmark.cards__container {
    column-gap: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
}

.bookmark-card {
    background: var(--background-color);
    border-radius: var(--default-radius);
    width: 100%;
}

.bookmark-card__thumbnail-box {
    height: auto;
    position: relative;
}

.bookmark-card__thumbnail-box:hover {
    opacity: .92;
}

.bookmark-card__thumbnail-img {
    border-radius: 4px 7px 0 0;
    height: 270px;
    width: 100%;
    object-fit: cover;
}

.bookmark-card__thumbnail-box:hover .play__circle {
    display: flex;
}

.bookmark-card__language-box {
    align-items: baseline;
    background: var(--primary-color);
    bottom: 6px;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-family: var(--rajdhani-font);
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
    left: 4px;
    padding: 4px 5px 4px 5px;
    position: absolute;
}

.bookmark-card__info {
    padding: 10px 8px 12px 8px;
}

.bookmark-card__title {
    color: var(--primary-color);
    font-size: 15px;
    font-family: var(--rajdhani-font);
    font-weight: 700;
    text-decoration: none;
    word-break: break-word;
}

.bookmark-card__title:hover {
    text-decoration: underline;
}

.bookmark-card__description {
    color: var(--primary-color);
    font-size: 11px;
    font-family: var(--roboto-condensed);
    margin: 5px 0 0 0;
    word-break: break-word;
}

.bookmark-area {
    float: right;
    color: var(--primary-color);
    cursor: pointer;
}

.bookmark-area {
    animation: float 6s ease-in-out infinite;
}

.bookmark-area.bookmark-episode {
    animation: none;
}

.bookmark-area .bookmark-button,
.bookmark-area .bookmark-button-active {
    padding: 12px;
}

.bookmark-button .fa-plus {
    position: absolute;
    right: 17.9px;
    top: 15.5px;
}

.bookmark-button-active .fa-circle-check {
    color: var(--background-color);
    position: absolute;
    right: 17.1px;
    top: 16.5px;
}

.bookmark-button:hover {
    color: #ff5d5d;
    animation: none;
}

.delete-button {
    float: right;
    padding: 6px;
    color: var(--primary-color);
    cursor: pointer;
}

.delete-button:hover {
    color: #ff5d5d;
}

.download-area {
    float: right;
    color: var(--primary-color);
    cursor: pointer;
}

.download-area .download-button,
.download-area .download-button-active {
    padding: 12px;
}

.download-button:hover {
    color: #ff5d5d;
    animation: none;
}


/**
 * =================================================================================
 * ASIDE
 * =================================================================================
 */

.divider {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    padding: 0;
}

.aside {
    flex-basis: 300px;
    width: 100%;
}

.aside__title {
    color: var(--primary-color);
    font-family: var(--rajdhani-font);
    font-size: 27px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.aside__box {
    background: var(--background-color);
    border-radius: var(--default-radius);
    padding: 28px 10px 30px 10px;
}

.aside-eps__box {
    background: var(--background-color);
    border-radius: var(--default-radius);
    padding: 19px 9px 16px 22px
}

/**
 * =================================================================================
 * GENRES-LIST
 * =================================================================================
 */

.genres-box__list {
    column-gap: 10px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 30px 0;
    row-gap: 10px;
}

.genres-box__item {
    display: none;
}

.genres-box__link {
    align-items: center;
    border-radius: var(--default-radius);
    color: var(--primary-color);
    display: flex;
    font-family: var(--rajdhani-font);
    font-size: 14px;
    font-weight: 700;
    height: 36px;
    padding: 0 8px 0 8px;
    text-decoration: none;
    width: max-content;
    word-break: break-word;
}

.genres-box__link:hover {
    background: var(--secondary-background-color);
    color: var(--primary-color) !important;
}

/**
 * =================================================================================
 * EPISODE-LIST
 * =================================================================================
 */

.episode-box__list {
    column-gap: 18px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0 0;
    row-gap: 10px;
    max-height: 180px;
    overflow: auto;
}

.episode-box__item {
    cursor: pointer;
    display: block;
}

.episode-box__link {
    align-items: center;
    justify-content: center;
    border-radius: var(--default-radius);
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    height: 51px;
    width: 51px;
}

.episode-box__link:hover {
    background: var(--secondary-background-color) !important;
    color: var(--primary-color) !important;
}

.episode-box__link a {
    font-family: var(--rajdhani-font);
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-color);
    padding: 0 8px 0 8px;
    text-decoration: none;
    word-break: break-word;
}

.episode-box__link:hover a,
.episode-box__link a:hover {
    color: var(--primary-color) !important;
}


.episode-box__link.box--active {
    background: var(--primary-color);
    border: #fff 1px solid !important;
}

.episode-box__link.box--active a {
    color: #fff;
}

/**
 * =================================================================================
 * FILTER
 * =================================================================================
 */

.filter {
    margin: 0 0 40px 0;
}

.filter__item {
    margin: 0 0 30px 0;
}

.filter__item:last-child {
    margin: 0 0 0 0;
}

.filter__heading {
    align-items: center;
    border-bottom: 1px solid #cacaca;
    display: flex;
    justify-content: space-between;
    padding: 0 0 10px 0;
}

.filter__title {
    color: var(--primary-color);
    font-family: var(--rajdhani-font);
    font-weight: 700;
    font-size: 23px;
}

.filter__chevron {
    background: url(../img/icons/chevron-up.svg) center no-repeat;
    filter: invert(40%) sepia(94%) saturate(7464%) hue-rotate(353deg) brightness(96%) contrast(116%);
    font-weight: bold;
    height: 15px;
    width: 15px;
    transition: all .5s .2s
}

.filter__options {
    color: var(--primary-color);
    font-family: var(--roboto-condensed);
    font-size: 16px;
    font-weight: 700;
    max-height: 0;
    overflow: hidden;
    padding: 10px 0 0 0;
    transition: .5s;
}

.filter__nav {
    max-height: 0;
    overflow: hidden;
    transition: .5s;
}

.filter-nav__list {
    display: flex;
    flex-direction: column;
}

.filter-nav__item {
    color: var(--off-color);
    margin: 13px 0 0 0;
    font-family: var(--rajdhani-font);
    font-weight: 700;
    font-size: 19px;
}

.filter-nav__link {
    color: var(--off-color);
    text-decoration: none;
}

.filter-nav__link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.label-checkbox {
    cursor: pointer;
    display: flex;
    height: 14px;
    margin: 0 0 10px 0;
    padding: 0 0 0 24px;
    position: relative;
    user-select: none;
}

.label-checkbox:last-child {
    margin: 0;
}

.label-checkbox input {
    cursor: pointer;
    height: 0;
    opacity: 0;
    position: absolute;
    width: 0;
}

.label-checkbox input:checked~.checkbox {
    background: url(../img/icons/checked.png) center no-repeat;
}

.label-checkbox input:checked~.checkbox:after {
    display: block;
}

.checkbox {
    background: var(--background-color);
    border: 2px solid var(--primary-color);
    height: 14px;
    left: 0;
    position: absolute;
    top: 0;
    width: 14px;
}

.checkbox:after {
    content: '';
    display: none;
    position: absolute;
}

.label-radio {
    cursor: pointer;
    display: flex;
    height: 14px;
    margin: 0 0 10px 0;
    padding: 0 0 0 24px;
    position: relative;
    user-select: none;
}

.label-radio:last-child {
    margin: 0;
}

.label-radio input {
    cursor: pointer;
    opacity: 0;
    position: absolute;
}

.label-radio input:checked~.radio {
    background: var(--primary-color);
}

.label-radio input:checked~.radio::after {
    display: block;
}

.label-radio .radio:after {
    background: var(--background-color);
    border-radius: 50%;
    height: 6px;
    left: 4px;
    top: 4px;
    width: 6px;
}

.radio:after {
    content: '';
    display: none;
    position: absolute;
}

.radio {
    background: #cacaca;
    border-radius: 50%;
    height: 14px;
    left: 0;
    position: absolute;
    top: 0;
    width: 14px;
}

.filter-button {
    display: flex;
    flex-direction: row;
}

.clear-filter {
    color: var(--primary-color);
    background: none;
    border: none;
    cursor: pointer;
    margin: auto;
    padding-left: 15px;
}

/**
 * =================================================================================
 * POPULAR
 * =================================================================================
 */

.popular {
    display: none !important;
}

.popular-box {
    padding: 5px 0px 0px 0px;
}

.popular-load {
    align-items: center;
    justify-content: center;
}

.popular-item {
    /* align-items: center; */
    display: flex;
    /* padding: 20px 10px 20px 10px; */
    /* border-bottom: 1px solid #cacaca; */
    margin-bottom: 10px;
}

/* .popular-item:first-child {
    padding: 0 0 20px 0;
} */

.popular-item:last-child {
    padding: 20px 0 0 0;
    border-bottom: none;
}

.popular-item__rank {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 44px;
    font-size: 20px;
    color: var(--primary-color);
    font-family: var(--rajdhani-font);
    font-weight: 700;
    margin: 0 10px 0 0;
}

.popular-item__cover {
    background: #cecece;
    border-radius: var(--default-radius);
    height: 120px;
    width: 80px;
    margin: 0 10px 0 0;
}

.popular-item__cover:hover {
    opacity: .92;
}

.popular-item__img {
    border-radius: var(--default-radius);
    height: 100%;
    width: 100%;
}

.popular-item__info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.popular-item__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--rajdhani-font);
    text-decoration: none;
    word-break: break-word;
}

.popular-item__title:hover {
    text-decoration: underline;
}

.popular-item__description {
    font-size: 12px;
    color: var(--off-color);
    font-family: var(--roboto-condensed);
    font-weight: 400;
    margin: 6px 0 0 0;
}

.popular--header {
    display: flex;
    justify-content: space-between;
}

.popular--header .popular--navigation i {
    color: var(--primary-color);
    opacity: 0.4;
}

.popular--header .popular--navigation i.available {
    cursor: pointer;
    opacity: 1;
}

/**
 * =================================================================================
 * Schedule
 * =================================================================================
 */


.schedule-panel {
    margin: 3px 5px 5px 3px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.schedule-panel .day {
    text-align: center;
    margin: 35px 20px 0px 20px;
    font-size: 25px;
    font-weight: 500;
    font-family: var(--rajdhani-font);
    text-decoration: none;
    word-break: break-word;
}

.schedule-panel .week {
    color: var(--secondary-color);
    font-family: var(--rajdhani-font);
    text-align: center;
    font-weight: 500;
}

.schedule-panel .day.active,
.schedule-panel .day.active+.week {
    color: var(--primary-color);
    font-weight: 700;
}


.schedule-panel .anime-list {
    margin: 0px 0px 10px 0px;
    text-align: center;
}

.schedule-panel .anime-list .anime-item {
    margin-top: 35px;
}

.schedule-panel .anime-list .anime-item a {
    text-decoration: none;
}

.schedule-panel .anime-list .anime-item a:hover {
    text-decoration: underline;
}

.schedule-panel .anime-list .anime-item .title {
    /* position: absolute;
    left: 20%;
    width: 60%; */
    padding: 10px 10px 10px 10px;
    color: var(--primary-color);
    font-family: var(--rajdhani-font);
    font-size: 20px;
    font-weight: 700;
    text-shadow: -1px 1px 0px #fff !important;
}

/**
 * =================================================================================
 * LOADER
 * =================================================================================
 */

.lds-hourglass {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-hourglass:after {
    content: " ";
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    margin: 8px;
    box-sizing: border-box;
    background-color: var(--primary-color);
    border: 32px solid var(--background-color);
    border-color: var(--background-color) transparent var(--background-color) transparent;
    animation: lds-hourglass 1.2s infinite;
}

@keyframes lds-hourglass {
    0% {
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    50% {
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    100% {
        transform: rotate(1800deg);
    }
}

/**
 * =================================================================================
 * FOOTER
 * =================================================================================
 */

.footer {
    background: var(--background-color);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0px -2px 2.97px 0.03px rgba(204, 204, 204, 1);
    margin-top: auto;
}

.footer__container {
    background: var(--background-color);
    max-width: var(--width-content);
    margin: 0 auto;
    padding: 0 8px 0 8px;
}

.footer__top {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 30px 0 45px 0;
}

.footer__logo {
    background: url(../img/logo/logo-mini.png) center no-repeat;
    height: 60px;
    text-indent: -9999px;
    width: 182px;
}

.footer__division {
    background: var(--secondary-color);
    display: none;
    height: 60px;
    margin: 0 22px 0 24px;
    width: 1px;
}

.footer__socials {
    display: none;
    flex: 1;
}

.socials__list {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.socials__link {
    align-items: center;
    border-radius: 5px;
    color: #fff;
    display: flex;
    font-size: 16px;
    height: 32px;
    justify-content: center;
    text-decoration: none;
    width: 32px;
}

.footer__copy {
    padding: 12px 0 12px 0;
}

.copy__text {
    color: #000;
    font-family: var(--rajdhani-font);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.copy__link {
    color: var(--primary-color);
    text-decoration: none;
}

.copy__link:hover {
    text-decoration: underline;
}

/**
 * =================================================================================
 * MEDIA QUERIES (MOBILE FIRST)
 * =================================================================================
 */

@media screen and (min-width: 320px) {
    .history.cards__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .bookmark.cards__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .header__logo {
        background: url(../img/logo/logo-mini.png) no-repeat;
        width: 100px;
        margin-right: auto;
        background-position: left;
        background-size: contain;
    }

    .footer__logo {
        background: url(../img/logo/logo-single.png);
        width: 145px;
        height: 75px;
        background-repeat: no-repeat;
    }

    .anime-datasheet {
        display: none;
    }
}

@media screen and (min-width: 420px) {
    .user .comment-content .input--area {
        width: 80%;
    }

    .user .comment-content .send--button {
        width: 25%;
    }

    .comment-content .reply--area .input--area {
        width: 80%;
    }

    .comment-content .reply--area .send--button {
        width: 25%;
    }

    .cards__container {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .history.cards__container {
        grid-template-columns: repeat(3, 1fr);
    }

    .bookmark.cards__container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 480px) {
    .nav-profile ul {
        right: 2rem;
    }

    .user .comment-content .input--area {
        width: 75%;
    }

    .user .comment-content .send--button {
        width: 25%;
    }

    .comment-content .reply--area .input--area {
        width: 75%;
    }

    .comment-content .reply--area .send--button {
        width: 25%;
    }

    .header__container {
        padding: 0 10px 0 10px;
    }

    .header__logo {
        background: url(../img/logo/logo-large.png);
        width: 100px;
        height: 60px;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .breadcrumbs {
        padding: 20px 10px 0 10px;
    }

    .section.bookmark {
        padding: 0;
    }

    .featured {
        padding: 0 10px 0 10px;
    }

    .swiper-slide {
        width: 140px;
    }

    .swiper-slide__cover {
        width: 198px;
        object-fit: cover;
    }

    .episode-card__status-box {
        right: 23px;
    }

    .single-anime {
        padding: 0 10px 0 10px;
    }

    .anime-summary {
        column-gap: 18px;
        grid-template-areas: 'summary-cover summary-info' 'summary-synopsis summary-synopsis';
        grid-template-columns: 134px auto;
        padding: 28px 20px 28px 20px;
    }

    .anime-summary__cover {
        height: 201px;
        width: 134px;
    }

    .anime-summary__img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .episodes {
        padding: 0 10px 0 10px;
    }

    .anime-episodes {
        padding: 28px 20px 28px 20px;
    }

    .anime-episodes__episode {
        display: flex;
    }

    /* .episode-box {
        padding: 28px 20px 28px 20px;
    } */

    .episode-box__title {
        font-size: 22px;
    }

    .episode-box__player {
        height: 238px;
    }

    .anime-info {
        padding: 28px 20px 28px 20px;
    }

    .auth {
        padding: 0 10px 0 10px;
    }

    .auth-box {
        padding: 28px 20px 28px 20px;
    }

    .letters {
        padding: 0 10px 0 10px;
    }

    .aside__box {
        padding: 28px 20px 30px 20px;
    }

    .popular__box {
        padding: 5px 0px 0px 0px;
    }

    .anime-list__item {
        padding: 28px 20px 28px 20px;
    }

    .search-box {
        padding: 28px 20px 6px 20px;
    }

    .footer__container {
        padding: 0 10px 0 10px;
    }

    .footer__top {
        justify-content: start;
    }

    .footer__division {
        display: block;
    }

    .footer__socials {
        display: block;
    }
}

@media screen and (min-width: 570px) {
    .episode-card__info {
        padding: 12px 10px 12px 10px;
    }
}

@media screen and (min-width: 592px) {
    .user .comment-content .input--area {
        width: 80%;
    }

    .user .comment-content .send--button {
        width: 20%;
    }

    .comment-content .reply--area .input--area {
        width: 80%;
    }

    .comment-content .reply--area .send--button {
        width: 20%;
    }

    .episode-card__title {
        font-size: 18px;
    }

    .episode-card__description {
        font-size: 13px;
    }
}

@media screen and (min-width: 660px) {
    .user .comment-content .input--area {
        width: 85%;
    }

    .user .comment-content .send--button {
        width: 15%;
    }

    .comment-content .reply--area .input--area {
        width: 85%;
    }

    .comment-content .reply--area .send--button {
        width: 15%;
    }

    .cards__container {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .history.cards__container {
        grid-template-columns: repeat(5, 1fr);
    }

    .bookmark.cards__container {
        grid-template-columns: repeat(5, 1fr);
    }

    .episode-card__info {
        padding: 10px 8px 12px 8px;
    }

    .episode-card__title {
        font-size: 15px;
    }

    .episode-card__description {
        font-size: 11px;
    }
}

@media screen and (min-width: 768px) {
    .nav-profile ul {
        right: 3rem;
    }

    .header__container {
        padding: 0 20px 0 20px;
    }

    .header__nav {
        align-items: center;
        display: flex;
        flex: 1;
        justify-content: end;
    }

    .header__menu {
        display: none;
    }

    .breadcrumbs {
        padding: 20px 20px 0 20px;
    }

    .section.bookmark {
        padding: 0 10px 0 10px;
    }

    .featured {
        padding: 0 20px 0 20px;
    }

    .swiper-slide {
        width: 167px;
    }

    .swiper-slide__cover {
        width: 198px;
        object-fit: cover;
    }

    .episode-card__status-box {
        right: 23px;
    }

    .swiper-slide__title {
        font-size: 21px;
    }

    .single-anime {
        padding: 0 20px 0 20px;
    }

    .anime-summary {
        column-gap: 22px;
        grid-template-areas: 'summary-cover summary-info' 'summary-cover summary-synopsis';
        grid-template-columns: 257px auto;
        grid-template-rows: auto 1fr;
    }

    .anime-summary__cover {
        height: auto;
        width: auto;
    }

    .anime-summary__title {
        font-size: 32px;
    }

    .anime-datasheet {
        display: block;
    }

    .episodes {
        padding: 0 20px 0 20px;
    }

    .episode {
        flex: 1;
    }

    .episode-box__player {
        height: 202px;
    }

    .letters {
        padding: 0 20px 0 20px;
    }

    .wrapper {
        flex-direction: row;
        gap: 30px;
        /* padding: 0 20px 0 20px; */
    }

    .cards {
        flex: 1;
        margin: 0 0 0 0;
    }

    .cards__container {
        grid-template-columns: 1fr 1fr;
    }

    .history.cards__container {
        grid-template-columns: repeat(3, 1fr);
    }

    .bookmark.cards__container {
        grid-template-columns: repeat(3, 1fr);
    }

    .episode-card__title {
        font-size: 17px;
    }

    .episode-card__description {
        font-size: 13px;
    }

    .aside {
        flex-basis: 300px;
    }

    .filter {
        margin: 0 0 0 0;
    }

    .popular {
        display: block !important;
    }

    .anime-list {
        flex: 1;
        margin: 0 0 0 0;
    }

    .footer__container {
        padding: 0 20px 0 20px;
    }
}

@media screen and (min-width: 830px) {
    .cards__container {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .history.cards__container {
        grid-template-columns: repeat(5, 1fr);
    }

    .bookmark.cards__container {
        grid-template-columns: repeat(5, 1fr);
    }

    .episode-card__title {
        font-size: 15px;
    }

    .episode-card__description {
        font-size: 11px;
    }
}

@media screen and (min-width: 894px) {
    .episode-card__title {
        font-size: 17px;
    }

    .episode-card__description {
        font-size: 13px;
    }
}

@media screen and (min-width: 1024px) {
    .comment-section {
        display: inline;
    }

    .mobile-comment-section {
        display: none;
    }

    .header__container {
        padding: 0 30px 0 30px;
    }

    .header__mobile-button {
        display: none;
    }

    .header__logo {
        margin: 0 0 0 0;
    }

    .header__menu {
        display: block;
    }

    .breadcrumbs {
        padding: 20px 30px 0 30px;
    }

    .section.bookmark {
        padding: 0 20px 0 20px;
    }

    .featured {
        padding: 0 30px 0 30px;
    }

    .swiper-slide {
        width: 177px;
    }

    .swiper-slide__cover {
        width: 198px;
        object-fit: cover;
    }

    .episode-card__status-box {
        right: 19px;
    }

    .swiper-slide__title {
        font-size: 22px;
    }

    .single-anime {
        padding: 0 30px 0 30px;
    }

    .episodes {
        padding: 0 30px 0 30px;
    }

    .episode.wrapper {
        flex-direction: row;
    }

    .episode-box__title {
        font-size: 23px;
    }

    .episode-box__player {
        height: 305px;
    }

    .anime-info__cover {
        display: block;
    }

    .letters {
        padding: 0 30px 0 30px;
    }

    .footer__container {
        padding: 0 30px 0 30px;
    }
}

@media screen and (min-width: 1042px) {
    .cards__container {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .history.cards__container {
        grid-template-columns: repeat(6, 1fr);
    }

    .bookmark.cards__container {
        grid-template-columns: repeat(6, 1fr);
    }

    .episode-card__info {
        padding: 11px 10px 11px 10px;
    }

    .episode-card__title {
        font-size: 16px;
    }

    .episode-card__description {
        font-size: 12px;
    }
}

@media screen and (min-width: 1200px) {

    .user .comment-content .input--area {
        width: 90%;
    }

    .user .comment-content .send--button {
        width: 10%;
    }

    .comment-content .reply--area .input--area {
        width: 90%;
    }

    .comment-content .reply--area .send--button {
        width: 10%;
    }

    .swiper-slide {
        width: 173px;
    }

    .swiper-slide__cover {
        width: 198px;
        object-fit: cover;
    }

    .episode-card__status-box {
        right: 4px;
    }

    .swiper-slide__title {
        font-size: 21px;
    }

    .episode-box__player {
        height: 435px;
    }

    .episode-box__title {
        font-size: 25px;
    }
}