:root {
    --primary-color: #20a4f3;
    --dark-color: #182b3a;
}

.main-home {
    width: 100%;
    height: 100vh;
    background: url("../images/hero-bg.jpg") top center;
    background-size: cover;
    position: relative;
    padding: 0;
    background-repeat: no-repeat;
    overflow: scroll;
}

a {
    color: #ffffff;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    text-decoration: none;
}

.home-background {
    background: rgba(13, 20, 26, 0.5);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0.4;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: none;
}

::-webkit-scrollbar-thumb {
    background: #f0f0f0;
    border-radius: 20px;
}

.menu-content {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: scroll;
    padding: 30px;
    justify-content: safe center;
    width: 100%;
    -webkit-overflow-scrolling: touch;
      position: sticky;
  top: 50%;   
margin-left: auto;
  margin-right: auto;
  transform: translateY(-50%); 
left: 0;
  right: 0;}

.menu-content .block {
    background-color: #182b3a;
    background-image: linear-gradient(315deg, #182b3a 0%, #20a4f3 74%);
    min-width: 160px;
    text-align: center;
    border-radius: 20px;
    text-decoration: none;
    padding: 10px 20px;
    min-height: 160px;
    overflow: scroll;
}

.menu-content .block::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.menu-content .block {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.menu-content .block:hover {
    transform: scale(1.05);
}

.menu-content .block img {
    width: 90px;
    height: 90px;
}
/* 
.menu-content::-webkit-scrollbar-thumb{
    display: none;
} */

.menu-content .block h1 {
    font-size: 20px;
    color: black;
    margin-top: 10px;
margin-bottom: 0px;
}

.stream-content {
    background: black;
    min-height: 100vh;
}

.category-list-area {
    display: flex;
    width: 100%;
    background: #101011;
    padding: 15px 20px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 20px;
    gap: 10px;
}

.category-item-list {
    display: flex;
    gap: 10px;
    align-items: center;
    overflow-x: scroll;
}

.category-list-area .category-item {
    background: #29282b;
    font-size: 15px;
    text-transform: uppercase;
    text-align: center;
    padding: 9px 15px 8px 15px;
    font-weight: 700;
    border-radius: 4px;
    margin: 5px 0;
    display: inline-block;
    color: white;
    cursor: pointer;
    text-wrap: nowrap;
}

.category-list-area .category-item:hover,
.category-list-area .category-item.selected,
.player-back-button:hover {
    background-color: var(--primary-color) !important;
}

.stream-content .single-video {
    margin-top: 10px;
    margin-bottom: 10px;
}

.stream-content .single-video a {
    text-decoration: none;
}

.stream-content .video-img {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.stream-content .video-img img {
    width: 100%;
    /* object-fit: cover; */
    -webkit-transition: transform 0.8s ease;
    transition: transform 0.8s ease;
}
.single-video:hover .video-img:after {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}

.stream-content .video-img:after {
    content: "";
    width: 100%;
    height: 80%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: -webkit-linear-gradient(
        top,
        rgba(255, 0, 0, 0),
        rgba(0, 0, 0, 0.8)
    );
    background: -o-linear-gradient(
        bottom,
        rgba(255, 0, 0, 0),
        rgba(0, 0, 0, 0.8)
    );
    background: -moz-linear-gradient(
        bottom,
        rgba(255, 0, 0, 0),
        rgba(0, 0, 0, 0.8)
    );
    background: linear-gradient(
        to bottom,
        rgba(255, 0, 0, 0),
        rgba(0, 0, 0, 0.8)
    );
    background: linear-gradient(
        to bottom,
        rgba(255, 0, 0, 0),
        rgba(0, 0, 0, 0.8)
    );
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
    -webkit-transform-origin: bottom 0 0;
    transform-origin: bottom 0 0;
}

.single-video .season-title-item {
    padding: 10px 5px;
}

.single-video a:hover .video-img img {
    transform: scale(1.12);
    -webkit-transform: scale(1.12);
    -webkit-transition: transform 0.8s ease;
    transition: transform 0.8s ease;
}

.single-video:hover .season-title-item h3 {
    color: var(--primary-color);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.single-video .season-title-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
    width: 95%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: block;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.video-img span.video-item-content {
    background: linear-gradient(
        60deg,
        var(--primary-color),
        var(--dark-color)
    ) !important;
    bottom: 0;
    color: #fff;
    font-size: 15px;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    width: auto;
    padding: 10px 12px;
    line-height: 18px;
    font-weight: 600;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: block;
    z-index: 2;
    opacity: 0;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.single-video:hover .video-img span.video-item-content {
    opacity: 1;
}

.plyr--video {
    height: 100vh;
    width: 100vw;
}

.player-back-button {
    position: fixed;
    left: 20px;
    top: 20px;
    z-index: 200;
    background: #29282b;
    text-align: center;
    padding: 5px 10px;
    border-radius: 10px;
}

.player-sidebar-menu {
    left: 80px;
    cursor: pointer;
}

.player-sidebar {
    position: fixed;
    z-index: 1000;
    left: 0px;
    height: 100vh;
    overflow-y: scroll;
    width: 400px;
    border-radius: 10px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5));
    display: none;
}

.player-sidebar .live-block {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    gap: 20px;
    font-size: 20px;
    padding: 10px 20px;
    text-decoration: none;
}

.player-sidebar .live-block:hover {
    transform: scale(1.07);
}

.player-sidebar .live-block img {
    width: 150px;
    max-height: 100px;
}

.player-sidebar form {
    display: flex;
    justify-content: end;
    gap: 20px;
    align-items: center;
    margin: 10px 20px;
}
.player-sidebar .close-player-sidebar {
    cursor: pointer;
}

.website-logo {
    max-width: 400px;
    height: 125px;
    margin: 10px 30px;
}

.vod-image {
    height: 250px;
}

.live-video-block .video-img {
    width: 190px;
    height: 170px;
    padding: 10%;
}

.live-video-block .video-img .live-image {
    height: 100%;
    border-radius: 6px;
}

.live-video-block .season-title-item {
    padding: 0px 10%;
}

.vod-video-block {
    width: 169px;
    margin: 0px 10px;
}

#loader-container {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#loader {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 9999;
}

@keyframes animation {
    0% {
        stroke-dasharray: 1 98;
        stroke-dashoffset: -105;
    }
    50% {
        stroke-dasharray: 80 10;
        stroke-dashoffset: -160;
    }
    100% {
        stroke-dasharray: 1 98;
        stroke-dashoffset: -300;
    }
}

#spinner {
    transform-origin: center;
    animation-name: animation;
    animation-duration: 1.2s;
    animation-timing-function: cubic-bezier;
    animation-iteration-count: infinite;
}

#category-mobile-form {
    display: none;
}

.live-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.iframe-video-block .video-img img {
    border-radius: 6px;
    width: 100%;
    height: 100%;
}

.iframe-video-block .single-video .season-title-item {
    padding: 0px 5%;
}

.iframe-video-block .video-img {
    padding: 5%;
}

.player-loading {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    width: 100px;
    color: #fff;
    margin: auto;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.player-loading p {
    font-size: 20px;
}
.player-loading span {
    position: absolute;
    height: 10px;
    width: 84px;
    top: 50px;
    overflow: hidden;
}
.player-loading span > i {
    position: absolute;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    -webkit-animation: wait 4s infinite;
    -moz-animation: wait 4s infinite;
    -o-animation: wait 4s infinite;
    animation: wait 4s infinite;
}
.player-loading span > i:nth-of-type(1) {
    left: -28px;
    background: rgb(0, 255, 170);
}
.player-loading span > i:nth-of-type(2) {
    left: -21px;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    background: rgb(144, 150, 238);
}

@-webkit-keyframes wait {
    0% {
        left: -7px;
    }
    30% {
        left: 52px;
    }
    60% {
        left: 22px;
    }
    100% {
        left: 100px;
    }
}
@-moz-keyframes wait {
    0% {
        left: -7px;
    }
    30% {
        left: 52px;
    }
    60% {
        left: 22px;
    }
    100% {
        left: 100px;
    }
}
@-o-keyframes wait {
    0% {
        left: -7px;
    }
    30% {
        left: 52px;
    }
    60% {
        left: 22px;
    }
    100% {
        left: 100px;
    }
}
@keyframes wait {
    0% {
        left: -7px;
    }
    30% {
        left: 52px;
    }
    60% {
        left: 22px;
    }
    100% {
        left: 100px;
    }
}

.vod-video-block {
    position: relative;
}

.vod-video-block .languages-section {
    position: absolute;
    top: 10px;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: end;
    width: 100%;
    flex-wrap: wrap;
    left: -5px;
}

.vod-video-block .languages-section .content {
    background: #29282b;
    font-size: 15px;
    color: white;
    padding: 5px;
    margin-top: 5px;
    border-radius: 5px;
    font-weight: 500;
}

.owl-carousel {
    position: relative;
    height: 100%;
}

.owl-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    margin: 0px 10px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    left: 0;
    right: 0px;
}

.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: -30px;
    justify-content: center;
    position: relative;
}

.owl-carousel .owl-dots button {
    width: 10px;
    height: 10px;
    background: white !important;
    border-radius: 100%;
    opacity: 0.6;
}

.owl-carousel .owl-dots button.active {
    opacity: 1;
}

.notification-block {
    padding: 10px 30px;
}

.notification-lg{
    min-height: 50%;
    align-items: center;
}

.owl-carousel .owl-stage-outer,
.owl-carousel .owl-stage-outer .owl-stage,
.owl-carousel .owl-stage-outer .owl-stage .owl-item,
.owl-carousel .owl-stage-outer .owl-stage .owl-item .carousel-block,
.owl-carousel .owl-stage-outer .owl-stage .owl-item img {
    height: 100%;
    border-radius: 20px;
}

.text-carousel {
    background: #ffffff;
    padding: 20px 50px;
    overflow-y: scroll;
    text-decoration: none !important;
    display: block;
    color: black !important;
    border-radius: 20px;
}

.text-carousel a {
    color: black !important;
}

.carousel-block {
    text-align: center;
}

.carousel-block .parapgraph {
    margin-top: 20px;
    font-size: 18px;
}

.notification-mobile {
    display: none;
}

.notification-detail {
    padding: 20px;
    min-height: 80vh;
    text-align: center;
}

.main-home .container {
    height: 100%;
}

.notification-mobile .carousel-block .text-carousel {
    max-height: 200px;
}

.owl-carousel {
    height: 300px;
}

.home-container {
    max-width: 1600px;
    margin: auto;
    height: 100%;
}

.user-avatar {
    position: absolute;
    top: 20px;
    right: 90px;
    z-index: 3;
}

.user-avatar i{
    font-size: 40px;
    color: #6B7280;
    font-weight: 600;
}

.notification-drop {
    color: black;
    position: absolute;
    top: 10px;
    right: 40px;
    width: 100%;
}
.notification-drop .item {
    padding: 10px;
    font-size: 18px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: end;
}
.notification-drop .item:hover {
    cursor: pointer;
}
.notification-drop .item .notification-bell {
    margin-left: 10px;
    color: #6B7280;
    font-size: 40px;
}
.notification-drop .item ul {
    list-style: none;
    display: none;
    position: absolute;
    top: 100%;
    background: #fff;
    right: 0;
    z-index: 100000;
    border-top: 1px solid #ddd;
    color: black;
    padding: 0px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 500px;
    max-height: 500px;
    overflow-y: scroll;
}
.notification-drop .item ul li {
    font-size: 16px;
}
.notification-drop .item ul li:hover {
    background: #ddd;
    color: rgba(0, 0, 0, 0.8);
}

.notification-drop .item a {
    font-size: 20px;
    font-weight: 600;
    color: black !important;
    text-decoration: none !important;
    width: 100%;
    display: block;
}

.notification-bell {
    font-size: 20px;
}

.notice {
    position: relative;
    background: #f9f9f9;
    padding: 1em 1em 1em 2em;
    border-left: 4px solid #ddd;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125);
}

.notice p {
    margin: 0px;
}
.notice:before {
    position: absolute;
    top: 50%;
    margin-top: -13px;
    left: 2px;
    background-color: #ddd;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    font-family: Georgia;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
}

.toast-notification {
    text-align: left;
    padding: 21px 0;
    background-color: #fff;
    border-radius: 4px;
    max-width: 500px;
    top: 0px;
    position: relative;
    box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.2);
}

.toast-notification:hover{
    background: #ddd;
}

.toast-notification:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.toast__icon {
    position: absolute;
    top: 50%;
    left: 22px;
    transform: translateY(-50%);
    padding: 7px;
    border-radius: 50%;
    display: flex;
    color: white;
}

.toast__type {
    color: #3e3e3e;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
}

.toast__message {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 0;
    color: #878787;
}

.toast__content {
    padding-left: 70px;
    padding-right: 10px;
}

.toast__close {
    position: absolute;
    right: 22px;
    top: 50%;
    width: 14px;
    cursor: pointer;
    height: 14px;
    fill: #878787;
    transform: translateY(-50%);
}

.toast--blue .toast__icon {
    background-color: var(--primary-color);
}

.toast--blue:before {
    background-color: var(--primary-color);
}

.form-modal .modal-content{
    border-radius: 50px !important;
    padding: 3rem 2rem !important;
}

.form-modal .col-md-6{
    margin-bottom: 25px;
}

.form-modal input{
    height: 45px;
}

.form-modal .btn{
    height: 45px;
    font-size: 20px;
}
.form-modal .btn-primary{
    background-color: var(--primary-color) !important;
}
.back-button{
    background: var(--primary-color);
}

.notification-content{
    margin-top: 50px;
    padding: 2rem 4rem;
}

.notification-content h1{
    font-size: 4rem;
}

.notification-content .paragraph{
    font-size: 2rem;
}

iao-alert{
    cursor: pointer;
}

iao-alert p{
    margin: 0px;
}

.mp3-content{
    background: #D9D8D4 !important;
}

.simple-content{
    background: #D9D8D4 !important;
}

.simple-content .video-img{
    box-shadow: none !important;
}

.simple-content .category-list-area{
    background: none;
}

.simple-content .single-video:hover .video-img:after{
    opacity: 0;
}
.simple-content .single-video .season-title-item h3{
    color: black !important;
}

.simple-content .category-item-list{
    padding: 0px 5px;
}

.simple-content .category-list-area .category-item{
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    color: black;
}