:root {
    color-scheme: dark;
    --primary: #d2ff00;
    --primary-dark: #789200;
    --max-screen: 2600px;
}

* {
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #202020;
    color: #eee;
}

html {
    box-sizing: border-box;
    font-size: 16px;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ol, ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hidden {
    display: none !important;
}

.no-scroll {
    overflow: hidden;
}

/* @media (min-width: 768px) { */
*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #333;
}

*::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #333;
}

*::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #555;
}
/* } */

#content {
    padding: 90px 5vw 20px 5vw;
    max-width: var(--max-screen);
    margin: 0 auto;
}

#notice {
    color: #ccc;
    z-index: 50;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #222;
    padding: 10px;
    border-radius: 5px;
    max-width: 500px;
    width: 100%;
}

#notice .header-notice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 2px dashed #333;
    margin-bottom: 10px;
}

#notice .header-notice .title {
    font-size: 16px;
}

#notice .header-notice .close {
    width: 28px;
    height: 28px;
    font-size: 20px;
    cursor: pointer;
    color: #ccc;
    padding: 0;
    background-color: transparent;
    border: 0;
}
#notice .header-notice .close:hover {
    color: var(--primary);
}

#notice .content-notice {
    border-bottom: 2px dashed #333;
}

#notice .content {
    font-size: 16px;
    padding: 10px 0;
    text-align: center;
}

#notice img {
    border-radius: 5px;
}

#notice .actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

#notice .actions a,
#notice .actions button {
    width: 100%;
    background-color: #333;
    border: 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    color: #ccc;
    border-radius: 5px;
    opacity: 0.9;
    cursor: pointer;
    text-transform: uppercase;
}

#notice .actions a {
    background-color: var(--primary);
    color: #111;
    font-weight: bold;
}

#notice .actions a:hover,
#notice .actions button:hover {
    opacity: 1;
}

#bg-notice {
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    transition: 0.2s all linear;
}

#hd {
    z-index: 20;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0, rgba(33, 33, 33, 0.95) 0%, rgba(11, 11, 11, 0.95) 100%);
}
#hd .container {
    max-width: var(--max-screen);
    margin: 0 auto;
    position: relative;
    height: 70px;
    display: flex;
    justify-content: space-between;
}
#hd .container .bt {
    background-color: transparent;
    width: 80px;
    height: 100%;
    border: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
#hd .container .bt .icon {
    color: #ccc;
    width: 32px;
    height: 32px;
    transition: 0.1s all linear;
    font-size: 22px; 
    display: flex;
    justify-content: center;
    align-items: center;
}
#hd .container .bt:hover .icon {
    color: #9acd32;
}

#hd .container .fp {
    display: flex;
    align-items: center;
}

#hd #logo {
    margin-left: 20px;
}

#hd .container .fp .fx {
    display: flex;
    padding: 0 0 0 30px;
}

@media (max-width: 960px) {
    #hd #logo {
        margin-left: 0;
        position: absolute;
        left: 50%;
        transform: translate(-50%, 0);
    }
    #hd .container .fp .fx {
        display: none;
    }
}

#hd .container .fp .fx a {
    outline: none;
    display: flex;
    height: 46px;
    width: 100%;
    border: 0;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

#hd .container .fp .fx a:after {
    inset: 0;
    z-index: 3;
    content: '';
    position: absolute;
    border: 4px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

#hd .container .fp .fx a:focus,
#hd .container .fp .fx a:hover {
    background-color: #222;
}

#hd .container .fp .fx a:focus:after,
#hd .container .fp .fx a:hover:after {
    border-color: #333;
}

#bg-dark {
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    display: none;
    transition: 0.2s all linear;
}

#bg-dark.open {
    display: block;
}
#nav {
    padding: 120px 20px 20px;
    background-color: #111;
    position: fixed;
    top: 0;
    bottom: 0;
    left: -400px;
    width: 340px;
    z-index: 10;
    overflow-y: auto;
    transition: 0.2s all linear;
}

#nav.open {
    left: 0;
}

#nav .fx {
    display: grid;
    gap: 2px;
    padding: 2px 0;
}

#nav .fx a {
    outline: none;
    display: flex;
    height: 46px;
    width: 100%;
    border: 0;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

#nav .fx a:after {
    inset: 0;
    z-index: 3;
    content: '';
    position: absolute;
    border: 4px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

#nav .fx a:focus,
#nav .fx a:hover {
    background-color: #222;
}

#nav .fx a:focus:after,
#nav .fx a:hover:after {
    border-color: #333;
}

@-webkit-keyframes animate-svg-stroke-1 {
    0% {
        stroke-dashoffset: 1514.3897705078125px;
        stroke-dasharray: 1514.3897705078125px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 1514.3897705078125px;
    }
}
@keyframes animate-svg-stroke-1 {
    0% {
        stroke-dashoffset: 1514.3897705078125px;
        stroke-dasharray: 1514.3897705078125px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 1514.3897705078125px;
    }
}
@-webkit-keyframes animate-svg-fill-1 {
    0% {
        fill: transparent;
    }
    100% {
        fill: rgb(255, 255, 255);
    }
}
@keyframes animate-svg-fill-1 {
    0% {
        fill: transparent;
    }
    100% {
        fill: rgb(255, 255, 255);
    }
}
.fm-1 {
    -webkit-animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both,
        animate-svg-fill-1 0.7s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.8s both;
    animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both,
        animate-svg-fill-1 0.7s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.8s both;
}
@-webkit-keyframes animate-svg-stroke-2 {
    0% {
        stroke-dashoffset: 254.2003173828125px;
        stroke-dasharray: 254.2003173828125px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 254.2003173828125px;
    }
}
@keyframes animate-svg-stroke-2 {
    0% {
        stroke-dashoffset: 254.2003173828125px;
        stroke-dasharray: 254.2003173828125px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 254.2003173828125px;
    }
}
.fm-2 {
    -webkit-animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both,
        animate-svg-fill-2 0.7s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.9s both;
    animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both,
        animate-svg-fill-2 0.7s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.9s both;
}
@-webkit-keyframes animate-svg-stroke-3 {
    0% {
        stroke-dashoffset: 254.2003173828125px;
        stroke-dasharray: 254.2003173828125px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 254.2003173828125px;
    }
}
@keyframes animate-svg-stroke-3 {
    0% {
        stroke-dashoffset: 254.2003173828125px;
        stroke-dasharray: 254.2003173828125px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 254.2003173828125px;
    }
}
.fm-3 {
    -webkit-animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both,
        animate-svg-fill-3 0.7s cubic-bezier(0.785, 0.135, 0.15, 0.86) 1s both;
    animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both,
        animate-svg-fill-3 0.7s cubic-bezier(0.785, 0.135, 0.15, 0.86) 1s both;
}

.dad li {
    background-color: rgba(33, 33, 33, 0.8);
    justify-content: space-between;
    display: flex;
}
.dad li a {
    display: block;
    z-index: 10;
    position: relative;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    width: 100%;
}

.dad li button {
    background-color: transparent;
    border: 0;
    z-index: 11;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    padding: 0;
    width: 30px;
    text-align: center;
}
.dad li .icon {
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}
.childs {
    height: 0;
    overflow: hidden;
    gap: 2px;
    padding: 2px 0;
    display: grid;
}
.childs.active {
    height: auto;
    overflow: hidden;
}
.dad li,
.childs li a {
    outline: none;
    display: flex;
    height: 46px;
    width: 100%;
    border: 0;
    white-space: nowrap;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.dad li:after,
.childs li a:after {
    inset: 0;
    z-index: 3;
    content: '';
    position: absolute;
    border: 4px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.dad li:focus,
.dad li:hover,
.childs li a:focus,
.childs li a:hover {
    background-color: #222;
}

.dad li:focus:after,
.dad li:hover:after,
.childs li a:focus:after,
.childs li a:hover:after {
    border-color: #333;
}

/* SEARCH */

#search .loading {
    display: flex;
    justify-content: center;
}
#search {
    padding: 20px 5vw 20px 5vw;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 10;
    background-color: #111;
    display: none;
}

#search.open {
    display: block;
}

#search .container {
    max-width: var(--max-screen);
    margin: 0 auto;
    padding: 0 10px;
    height: calc(100% - 72px);
}

#search .isea input {
    margin-bottom: 22px;
    width: 100%;
    border: 2px solid #222;
    border-radius: 5px;
    height: 50px;
    font-size: 20px;
    padding: 0 20px;
    background-color: #111;
    color: rgba(255, 255, 255, 0.8);
}

#search .isea input:focus {
    background-color: #222;
    outline: 2px solid var(--primary);
}

#search .default {
    padding: 40px 20px;
    display: grid;
    align-items: center;
    justify-content: center;
    color: #666;
}

#search .default .icon {
    width: 100px;
    margin: 0 auto;
}

#search .default .text {
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
}

#search .result {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

#search .r-con {
    height: 100%;
    overflow-y: auto;
    padding: 0 4px;
}

#search .r-con::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #333;
}

#search .r-con::-webkit-scrollbar {
    width: 8px;
    background-color: #333;
}

#search .r-con::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #555;
}

#search .bt-card {
    width: 100%;
    padding: 0;
    border: 0;
    background-color: transparent;
}

#search .icon {
    font-size: 75px;
}

@media (max-width: 1799px) {
    #search .result {
        grid-template-columns: repeat(4, 1fr);
    }
    #search .result .search-item:nth-child(9),
    #search .result .search-item:nth-child(10) {
        display: none;
    }
}

@media (max-width: 1439px) {
    #search .result {
        grid-template-columns: repeat(3, 1fr);
    }
    #search .result .search-item:nth-child(9) {
        display: block;
    }
}

@media (max-width: 1079px) {
    #search .result {
        grid-template-columns: repeat(2, 1fr);
    }
    #search .result .search-item:nth-child(10) {
        display: block;
    }
}

@media (max-width: 719px) {
    #search .result {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* FOOTER */

#ft {
    background-color: #111;
    overflow: hidden;
}
#ft .container {
    max-width: var(--max-screen);
    color: #888;
    font-size: 14px;
    margin: 5px auto 20px;
    padding: 0 5vw;
    text-align: center;
}
#ft .container .logo-ft {
    display: flex;
    justify-content: center;
}

/* CARD */

.card {
    background-color: #111;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.card img {
    width: 100%;
}

.card a.pl:after {
    inset: 0;
    z-index: 3;
    content: '';
    position: absolute;
    border: 4px solid transparent;
    border-radius: 8px;
    transition: border 0.3s ease-in-out;
}

.card a.pl:focus:after,
.card a.pl:hover:after {
    border-color: var(--primary);
}
.card a.pl {
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.7);
    text-decoration: none;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    display: flex;
    box-sizing: border-box;
    align-items: end;
    background: rgb(0, 0, 0);
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    padding: 10px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.card a.pl span {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.card span.date {
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 10px;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--primary);
}
.card .live {
    color: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    font-size: 12px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
}

.card .pulse {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.6);
    animation: pulse 2s infinite;
}
.card .pulse:hover {
    animation: none;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(153, 204, 44, 0.4);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(161, 204, 44, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(153, 204, 44, 0);
    }
}
@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(175, 204, 44, 0.4);
        box-shadow: 0 0 0 0 rgba(151, 204, 44, 0.4);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(161, 204, 44, 0);
        box-shadow: 0 0 0 10px rgba(156, 204, 44, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(145, 204, 44, 0);
        box-shadow: 0 0 0 0 rgba(156, 204, 44, 0);
    }
}

/* SLIDE */
.owl-nav {
    height: 0;
}
.car-button {
    opacity: 100;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 55px;
    border: 0;
    background-color: transparent;
    filter: drop-shadow(2px 2px 2px rgb(0 0 0 / 0.6));
    transition: 0.2s all linear;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-size: 30px;
}
.car-button:hover {
    color: var(--primary);
}
.owl-carousel:hover .car-button {
    opacity: 1;
}
.car-button.prev {
    left: 0;
}
.car-button.next {
    right: 0;
}

/* HOME */

#channels {
    overflow: hidden;
    margin: 60px 10px 20px;
    background-color: #000;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    background-repeat: no-repeat;
    background-position: right;
    background-image: url(/web/20240528071622im_/https://futemax.la/images/bg-channels.webp);
    background-size: cover;
}

#channels .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(0deg, rgba(16, 16, 16, 0.9) 0%, rgba(89, 89, 89, 0.5) 80%);
}

#channels .title {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

#channels .description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
}

#channels .button {
    background-color: var(--primary);
    color: #111;
    text-decoration: none;
    font-weight: bold;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    height: 40px;
    border-radius: 5px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
    background: linear-gradient(0deg, var(--primary-dark) 0%, var(--primary) 100%);
    text-transform: uppercase;
    font-size: 14px;
}

#channels .button:hover {
    opacity: 1;
}

@media (max-width: 900px) {
    #channels .container {
        display: grid;
        gap: 20px;
        justify-content: center;
    }

    #channels .description {
        max-width: 100%;
    }

    #channels .button {
        justify-content: center;
    }
}

/* WIDGET */

.widget {
    padding: 20px 10px;
}

.widget .container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.widget .title {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 20px;
    padding: 30px 0;
    height: 40px;
    border: 10px solid;
    border-image-slice: 1;
    border-width: 4px;
    border-image-source: linear-gradient(to right, var(--primary), transparent);
    border-left: 0;
    border-right: 0;
    border-top: 0;
    display: flex;
    white-space: nowrap;
    align-items: center;
    justify-content: space-between;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
}

.widget .title a {
    display: flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
    padding: 5px 10px 5px 5px;
    border-radius: 5px;
    white-space: nowrap;
}

.widget .title a:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.widget .title a span {
    display: block;
    height: 20px;
}

.widget .title a span:nth-child(1) {
    width: 20px;
}

.widget .title a span i {
    font-size: 14px;
    margin: 2px 0 0 2px;
}

.widget .title h1,
.widget .title h2,
.widget .title h3 {
    text-transform: uppercase;
    font-size: 16px;
}

.widget .live {
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
}

.widget .pulse {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.6);
    animation: pulse 2s infinite;
}
.widget .pulse:hover {
    animation: none;
}

@media (max-width: 1799px) {
    .widget .container {
        grid-template-columns: repeat(4, 1fr);
    }
    .widget .container .widget-item:nth-child(9),
    .widget .container .widget-item:nth-child(10) {
        display: none;
    }
}

@media (max-width: 1439px) {
    .widget .container {
        grid-template-columns: repeat(3, 1fr);
    }
    .widget .container .widget-item:nth-child(9) {
        display: block;
    }
}

@media (max-width: 1079px) {
    .widget .container {
        grid-template-columns: repeat(2, 1fr);
    }
    .widget .container .widget-item:nth-child(10) {
        display: block;
    }
}

@media (max-width: 719px) {
    .widget .container {
        grid-template-columns: repeat(1, 1fr);
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(153, 204, 44, 0.4);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(161, 204, 44, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(153, 204, 44, 0);
    }
}
@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(175, 204, 44, 0.4);
        box-shadow: 0 0 0 0 rgba(151, 204, 44, 0.4);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(161, 204, 44, 0);
        box-shadow: 0 0 0 10px rgba(156, 204, 44, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(145, 204, 44, 0);
        box-shadow: 0 0 0 0 rgba(156, 204, 44, 0);
    }
}

/* PLAYER */

#player {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    background-color: #111;
    margin: 0 10px;
}
#player #fp {
    width: 65%;
    position: relative;
    z-index: 5;
}
#player .container-player {
    padding-top: 56.25%;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    position: relative;
}
#player .container-player #pl {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
}
#player .container-player #pl .msg-pl {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
#player .container-player #pl .msg-pl .title {
    color: var(--primary);
    font-size: 20px;
}
#player .container-player #pl .msg-pl .description {
    color: #999;
    font-size: 16px;
}
#player #options {
    padding: 20px;
    border-bottom: 1px solid #222;
    overflow-x: auto;
    width: 65%;
    z-index: 5;
}
#player #options .container-options {
    display: flex;
    margin: 0 auto;
    width: fit-content;
    gap: 10px;
}
#player #options button {
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    background-color: #333;
    border: 0;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    white-space: nowrap;
}
#player #options button:hover,
#player #options button.active {
    background-color: var(--primary);
    color: #111;
}
#player #aside-player {
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 35%;
    padding: 20px;
    z-index: 5;
}

#player #aside-player .container-relateds {
    display: grid;
    gap: 10px;
    height: max-content;
}

#player #aside-player .container-channels {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    height: max-content;
}

#player #aside-player .channel-item {
    border-radius: 5px;
    overflow: hidden;
    height: max-content;
    position: relative;
}

#player #aside-player .channel-item a:after {
    inset: 0;
    z-index: 3;
    content: '';
    position: absolute;
    border: 4px solid transparent;
    border-radius: 8px;
    transition: border 0.3s ease-in-out;
}

#player #aside-player .channel-item a:focus:after,
#player #aside-player .channel-item a:hover:after, #player #aside-player .channel-item.active a:after {
    border-color: var(--primary);
}

#player #aside-player .relateds-item {
    position: relative;
}

#player #aside-player .relateds-item.active a:after {
    border-color: var(--primary);
}

@media (max-width: 2400px) {
    #player #fp,
    #player #options {
        width: 70%;
    }
    #player #aside-player {
        width: 30%;
    }
    #player #aside-player .container-channels {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 2200px) {
    #player #fp,
    #player #options {
        width: 75%;
    }
    #player #aside-player {
        width: 25%;
    }
    #player #aside-player .container-channels {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 2000px) {
    #player #fp,
    #player #options {
        width: 80%;
    }
    #player #aside-player {
        width: 20%;
    }

    #player #aside-player .container-channels {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1240px) {
    #player #options {
        padding: 10px;
    }
    #player {
        display: grid;
    }
    #player #fp,
    #player #options {
        width: 100%;
    }
    #player #aside-player {
        position: relative;
        width: 100%;
        overflow-y: hidden;
        overflow-x: auto;
        padding: 10px;
    }
    #player #aside-player .container-relateds {
        grid-template-columns: repeat(auto-fill, 200px);
        grid-auto-flow: column;
        width: max-content;
        grid-template-rows: calc(2 * 56.25px);
    }
    #player #aside-player .container-channels {
        grid-template-columns: repeat(auto-fill, 100px);
        grid-auto-flow: column;
        grid-template-rows: 56.25px 56.25px;
        width: max-content;
    }
    #player #aside-player .channel-item {
        width: 100px;
    }
    #player #aside-player .relateds-item {
        width: 200px;
    }
}

/* CONTENT */

#content-page {
    background-color: #111;
    border-radius: 5px;
    margin-top: 20px;
    margin: 20px 10px 0;
    padding: 20px;
}

#content-page .title {
    border-bottom: 2px dashed #222;
    padding-bottom: 20px;
}

#content-page .title .date-pub {
    color: #999;
    font-weight: normal;
    font-size: 14px;
    margin-top: 10px;
    display: block;
}

#content-page .title .categories {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

#content-page .title .categories a {
    text-decoration: none;
    color: var(--primary);
    font-size: 14px;
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 2px 8px;
}

#content-page .title .categories a:hover {
    background-color: var(--primary);
    color: #111;
}

#content-page .title h1 {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 4px;
}

#content-page .title h2 {
    font-size: 16px;
    color: #999;
}

#content-page .share {
    padding: 20px 0 0;
}

#content-page .ct-p {
    margin-top: 20px;
    font-size: 16px;
    color: #999;
    display: grid;
    gap: 10px;
}
#content-page .ct-p a {
    opacity: 0.9;
    color: var(--primary);
}
#content-page .ct-p a:hover {
    opacity: 1;
    text-decoration: underline;
}
#content-page .ct-p h2 {
    color: #ccc;
    font-size: 18px;
}
#content-page .ct-p h3 {
    font-size: 16px;
}
#content-page .ct-p .msgShare {
    color: #ccc;
}
#content-page .ct-p .msgShare strong {
    font-weight: normal;
}

.share-buttons {
    display: flex;
    gap: 5px;
}
.share-buttons a {
    border-radius: 50%;
    overflow: hidden;
    height: 28px;
    width: 28px;
    background-color: #333;
    padding: 4px;
    color: #999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
}
.share-buttons a:hover {
    color: var(--primary);
    background-color: #444;
}

/* CATEGORY */

.widget .title-category {
    border-bottom: 2px dashed #333;
    padding-bottom: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.widget .title-category h1 {
    font-size: 20px;
    color: #ccc;
}

.widget .title-category h2 {
    font-size: 16px;
    color: #999;
}

/* PAGINATION */

#info-page {
    color: #999;
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}
#pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
#pagination a {
    display: flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    color: #444;
    opacity: 0.8;
}
#pagination a:hover {
    opacity: 1;
}
#pagination a.number {
    background-color: #444;
    border-radius: 50%;
    color: #aaa;
}

#pagination a.selected {
    background-color: var(--primary);
    color: #222;
    font-weight: bold;
}

#pagination .arrow {
    font-size: 20px;
}

/* PWA MESSAGE */

.offline-message,
	.app-message {
		background-color: var(--primary);
		color: #111;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 20;
		margin: 0 10px 20px;
		padding: 10px;
		border-radius: 5px;
		font-weight: bold;
	}

    .offline-message {
        background-color: #900;
        color: #eee;
    }

	.app-message button {
		background-color: #111;
		border: 0;
		border-radius: 5px;
		padding: 5px 10px;
		margin-left: 10px;
		cursor: pointer;
		white-space: nowrap;
		text-transform: uppercase;
		font-weight: bold;
		color: var(--primary);
	}

	.app-message button:hover {
		background-color: #222;
	}

	@media (max-width: 768px) {
		.app-message button {
			margin: 0;
			padding: 10px;
		}
		.offline-message,
		.app-message {
			display: grid;
			text-align: center;
			gap: 10px;
		}
	}