body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td {
    margin: 0;
    padding: 0
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

fieldset,img {
    border: 0;
    max-width: 100%
}

address,caption,cite,code,dfn,em,strong,th,var,optgroup,i {
    font-style: none;
    font-weight: none
}

del,ins {
    text-decoration: none
}

li {
    list-style: none
}

caption,th {
    text-align: left
}

:root {
    --bg:        #111;
    --bg2:       #1e1e1e;
    --bg3:       #2a2a2a;
    --bg4:       #333;
    --text:      #d8d8d8;
    --text-muted:#777;
    --accent:    #e53935;
    --accent-dk: #b71c1c;
    --orange:    #f90;
    --radius:    6px;
    --radius-sm: 4px;
    --shadow:    0 2px 8px rgba(0,0,0,.5);
    --shadow-lg: 0 6px 22px rgba(0,0,0,.75);
    --trans:     .2s ease
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: arial, sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased
}

footer {
    display: grid;
    clear: both
}

ul {
    list-style: none
}

div.clear {
    clear: both
}

a {
    text-decoration: none;
    color: var(--text);
    transition: color var(--trans)
}

a:hover {
    color: #fff
}

p.sitename {
    text-align: center;
    font-size: 17px;
    text-transform: capitalize
}

.hidden {
    display: none!important
}

#wrapper {
    margin: 0 auto;
    position: relative;
    max-width: 1150px;
    border: 1px solid rgba(255,255,255,.06)
}

#container {
    display: block
}

#logo {
    transition: opacity var(--trans)
}

#logo:hover {
    opacity: 1
}

#primary-nav {
    border-top: 1px solid rgba(255,255,255,.07);
    margin: 0 6px;
    padding: inherit;
    background: var(--bg);
    font-size: 13px;
    font-weight: 500
}

#primary-nav .menu {
    list-style: none;
    overflow: hidden;
    z-index: 999
}

#primary-nav .menu li a {
    float: left;
    display: inline-flex;
    align-items: center;
    padding: 4px 11px;
    line-height: 18px;
    margin-right: 4px;
    margin-top: 6px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    color: var(--text);
    border-radius: 20px;
    z-index: 999;
    transition: background var(--trans), border-color var(--trans), color var(--trans)
}

#primary-nav .menu li:hover a,
.menu li:hover a:active {
    background: rgba(229,57,53,.12);
    border-color: rgba(229,57,53,.45);
    color: var(--accent)
}

span.icon {
    display: inline-flex
}

.icon-home:before {
    content: '';
    background-image: url(../images/icon-home.svg);
    width: 16px;
    height: 16px;
    background-size: 16px;
    background-repeat: no-repeat;
    margin-right: 1px;
    margin-top: -1px;
}

.icon-verify:before {
    content: '';
    background-image: url(../images/icon-verify.svg);
    width: 16px; height: 16px;
    background-size: 16px;
    background-repeat: no-repeat;
    margin-right: 2px; margin-top: 2px
}

.icon-fire:before {
    content: '';
    background-image: url(../images/icon-fire.svg);
    width: 16px; height: 16px;
    background-size: 16px;
    margin-right: 1px;
    background-repeat: no-repeat
}

.icon-hashtag:before {
    content: '';
    background-image: url(../images/icon-hashtag.svg);
    width: 16px; height: 16px;
    background-size: 16px;
    background-repeat: no-repeat;
    margin-right: 3px; margin-top: 2px
}

.icon-japan:before {
    content: '';
    background-image: url(../images/icon-japan.svg);
    width: 16px; height: 16px;
    background-size: 16px;
    margin-right: 3px;
    background-repeat: no-repeat
}

.icon-usa:before {
    content: '';
    background-image: url(../images/icon-us.svg);
    width: 16px; height: 16px;
    background-size: 16px;
    margin-right: 3px;
    background-repeat: no-repeat
}

.icon-china:before {
    content: '';
    background-image: url(../images/icon-cn.png);
    width: 16px; height: 16px;
    background-size: 16px;
    margin-right: 3px;
    background-repeat: no-repeat
}

.icon-vn:before {
    content: '';
    background-image: url(../images/icon-vn.svg);
    width: 13px; height: 18px;
    margin-left: -5px;
    padding-right: 7px;
    background-size: 18px;
    margin-right: 3px;
    background-repeat: no-repeat
}

.icon-hocsinh:before {
    content: '';
    background-image: url(../images/icon-hocsinh.svg);
    width: 16px; height: 16px;
    background-size: 17px;
    margin-right: 2px;
    background-repeat: no-repeat;
    display: inline-flex
}

#page-title {
    display: block;
    margin: 12px 4px 6px;
}

.breadcrumb {
    font-size: 15px;
    font-weight: 500;
    margin: 0 4px 2px;
    padding: 10px 0 10px 8px;
    border-left: 3px solid var(--accent);
    border-bottom: 1px solid rgba(255,255,255,.06);
    text-transform: uppercase;
    letter-spacing: .02em;
    color: #dadada;
}

.breadcrumb span a {
    color: var(--text);
    transition: color var(--trans)
}

.breadcrumb span a:hover {
    color: #fff;
    text-decoration: none
}

span.icon-search {
    display: inline-flex;
    background: var(--bg2);
    padding: .32rem .4rem;
    color: var(--text);
    opacity: .55;
    transition: opacity var(--trans)
}

span.icon-search:before {
    content: '';
    background-image: url(../images/icon-search.svg);
    width: 14px; height: 14px;
    background-size: 14px;
    background-repeat: no-repeat
}

.search .searchTxt {
    width: 100%;
    background: #181818;
    padding: 6px 6px;
    color: var(--text);
    font-size: 13px;
    font-family: arial, sans-serif;
    outline: 0;
    border: 0;
    -webkit-appearance: none;
    transition: background var(--trans)
}

.search .searchTxt:focus {
    background: #111111;
}

.search .searchTxt::placeholder {
    color: var(--text-muted)
}

.search .searchBtn {
    background: rgba(234, 67, 53, 0.6);
    color: #dadada;
    border: 0;
    outline: 0;
    float: left;
    font-size: 13px;
    font-weight: 500;
    font-family: arial, sans-serif;
    padding: 6px 6px;
    cursor: pointer;
    letter-spacing: .02em;
    -webkit-appearance: none;
    transition: background var(--trans)
}

.search .searchBtn:hover {
    background: var(--accent-dk)
}

.telexx {
    font-size: 15px;
    background: var(--bg2);
    margin: 4px;
    padding: 6px;
    display: none;
    border-radius: var(--radius-sm)
}

.category-info {
    background: var(--bg2);
    font-size: 13px;
    padding: 8px 12px;
    margin: 0 8px 8px;
    line-height: 1.6;
    border-radius: var(--radius);
    border-left: 3px solid var(--bg4)
}

#video {
    margin: 0 5px
}

#video-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px 6px;
    padding: 10px 8px 6px;
    margin: 0
}

.video-item {
    position: relative
}

.video-item > a:first-child {
    position: relative;
    display: block;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--bg2)
}

.video-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .28s ease, filter .28s ease;
}

.video-item:hover > a:first-child {
    box-shadow: 0 8px 22px rgba(0,0,0,.65)
}

.video-item:hover .video-image {
    transform: scale(1.05);
    filter: brightness(1.12)
}


#video-list > h2 {
    grid-column: 1 / -1;
    margin-bottom: 4px
}

.ribbon {
    font-size: .68em;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    position: absolute;
    top: 4px;
    left: 4px;
    padding: 2px 6px;
    background: rgba(229,57,53,.45);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: var(--radius-sm);
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,.9);
    z-index: 2;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(0,0,0,.35)
}

.video-rank {
    font-size: .68em;
    font-weight: 700;
    letter-spacing: .03em;
    position: absolute;
    top: 7px;
    left: 7px;
    padding: 3px 8px;
    background: rgba(229,57,53,.45);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: var(--radius-sm);
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,.9);
    z-index: 2;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(0,0,0,.35)
}

.video-rank span {
    display: inline-flex;
    align-items: center
}

.video-name {
    padding: 6px 2px 0;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 400;
    text-align: center;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #aaa;
    transition: color var(--trans)
}

.video-item:hover .video-name {
    color: #fff
}

.video-name a {
    color: inherit;
    display: block
}

.video-name p {
    margin-top: 3px;
    height: 15px;
    overflow: hidden;
    margin-bottom: 3px
}

.video-content {
    display: block
}

.video-description {
    display: block;
    padding: 6px 0;
    line-height: 1.5;
    word-wrap: break-word;
    color: #c0c0c0
}

.video-info {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 4px
}

.video-code {
    padding: 4px 8px;
    background: var(--bg2);
    color: var(--text);
    white-space: nowrap;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: background var(--trans), color var(--trans)
}

.video-code:hover {
    color: #fff;
    background: var(--bg3)
}

.video-link {
    display: inline-block;
    background: var(--bg2);
    color: var(--accent);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, .08);
    white-space: nowrap;
    transition: background var(--trans), color var(--trans)
}

.video-link:hover {
    color: #fff;
    background: var(--accent-dk)
}

#video-actions {
    margin-top: 6px;
    display: block;
    font-weight: 400
}

#video-actions ul {
    margin-top: 0
}

#video-actions .video-server {
    cursor: pointer;
    padding: 5px 10px;
    margin-bottom: 5px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, .08);
}

#video-actions .video-server:hover {
    background: var(--accent);
    color: #fff
}

#video-actions .likes {
    cursor: pointer;
    background: var(--bg2);
    margin-bottom: 5px;
    padding: 5px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, .08);
    display: inline-flex;
}

#video-actions .dislikes {
    cursor: pointer;
    background: var(--bg2);
    margin-bottom: 5px;
    padding: 5px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, .08);
    display: inline-flex
}

#video-actions .likes:hover,
#video-actions .dislikes:hover {
    background: var(--accent);
    color: #fff
}

#video-actions .rating {
    cursor: pointer;
    background: var(--bg2);
    padding: 5px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, .08);
}

span.likes:after {
    content: '';
    background-image: url(../images/icon-like.svg);
    width: 16px; height: 16px;
    background-size: 16px;
    background-repeat: no-repeat;
    margin-left: 3px; margin-top: -1px
}

span.dislikes:after {
    content: '';
    background-image: url(../images/icon-dislike.svg);
    width: 16px; height: 16px;
    background-size: 16px;
    background-repeat: no-repeat;
    margin-left: 3px
}

span.dislikes.active:after {
    background-image: url(../images/icon-disliked.svg)
}

span.rating:after {
    content: '';
    background-image: url(../images/icon-heart.svg);
    width: 16px; height: 16px;
    background-size: 16px;
    background-repeat: no-repeat;
    margin-left: 3px
}

span.views {
    cursor: pointer;
    background: var(--bg2);
    margin-bottom: 5px;
    border-radius: var(--radius-sm);
    padding: 5px 8px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .08);
}

span.views:after {
    content: '';
    display: block;
    background: url(../images/icon-views.svg) no-repeat;
    width: 16px; height: 16px;
    background-size: 16px;
    margin-left: 3px
}

span.likes-rank:after {
    content: '';
    background-image: url(../images/icon-like.svg);
    width: 14px; height: 14px;
    background-size: 14px;
    background-repeat: no-repeat;
    margin-left: 2px; margin-top: -1px;
    opacity: .9
}

span.likes.active:after {
    background-image: url(../images/liked.svg)
}

.bt_normal {
    background: var(--bg2);
    transition: background var(--trans), color var(--trans)
}

.bt_active {
    background: rgba(234, 67, 53, 0.6);
    color: #fff
}

.video-tags {
    display: inline-block;
    list-style-type: none;
    margin-bottom: 5px;
    width: 100%;
    font-weight: 400
}

.category-tag a {
    display: inline-flex;
    align-items: center;
    padding: 5px 8px;
    margin-top: 5px;
    white-space: nowrap;
    background: var(--bg2);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-sm);
    transition: background var(--trans), color var(--trans)
}

.category-tag a:before {
    content: '';
    background-image: url(../images/icon-hashtag.svg);
    background-size: 15px;
    height: 15px; width: 15px;
    margin-right: 4px;
    background-repeat: no-repeat
}

.category-tag a:hover {
    background-color: var(--accent);
    color: #fff
}

.actress-tag {
    list-style-type: none;
    margin: 0
}

.actress-tag a {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    margin-top: 5px;
    white-space: nowrap;
    background: var(--bg2);
    border-left: 3px solid var(--orange);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    transition: background var(--trans), color var(--trans)
}

.actress-tag a:hover {
    background-color: var(--accent);
    color: #fff
}

.search-history {
    list-style-type: none;
    margin: 0 5px;
    overflow: hidden
}

.search-history a {
    display: inline-block;
    font-size: 14px;
    padding: 5px 10px;
    margin-top: 5px;
    white-space: nowrap;
    background: var(--bg2);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: background var(--trans), color var(--trans)
}

.search-history a:hover {
    background-color: var(--accent);
    color: #fff
}

.pagenavi {
    text-align: center;
    margin: 6px 0 20px
}

.pagenavi a {
    margin-top: 5px;
    border: 1px solid rgba(255,255,255,.12);
    padding: 6px 15px;
    margin-right: 4px;
    border-radius: 20px;
    display: inline-block;
    font-size: 14px;
    transition: background var(--trans), color var(--trans), border-color var(--trans)
}

.pagenavi a.active {
    background: rgba(234, 67, 53, 0.6);
    color: #fff;
    border-color: rgba(234, 67, 53, 0.6);
}

.pagenavi a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent)
}

.footer-wrap {
    font-weight: 500;
    margin: 5px;
    background: var(--bg);
    line-height: 1.5;
    border-top: 1px solid rgba(255,255,255,.07)
}

.footer-wrap a {
    color: var(--accent);
    opacity: .8;
    transition: opacity var(--trans), color var(--trans)
}

.footer-wrap a:hover {
    color: var(--accent-dk);
    opacity: 1
}


.intrinsic-container {
    position: relative;
    height: 0;
    overflow: hidden
}

.intrinsic-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%
}

p.infosite {
    padding: 4px
}

.web-link {
    display: none;
    list-style-type: none;
    margin: 0 5px;
    overflow: hidden
}

.web-link a {
    display: inline-block;
    font-size: 13px;
    padding: 4px 10px;
    margin-top: 5px;
    margin-bottom: 4px;
    white-space: nowrap;
    background: var(--bg2);
    border-radius: var(--radius-sm);
    transition: background var(--trans), color var(--trans)
}

.web-link a:hover {
    background: var(--bg3);
    color: #fff
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    #video-list {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media only screen and (min-width: 768px) {
    header {
        height: 70px
    }

    #logo {
        float: left;
        margin: 18px 0 0 5px;
        opacity: .8
    }

    #search-box {
        margin: 5px;
        display: inline-flex;
        float: right
    }

    .search {
        width: 100%;
        max-width: 300px;
        float: right;
        border: 1px solid rgba(255,255,255,.1);
        display: flex;
        overflow: hidden;
        border-radius: var(--radius-sm)
    }

    .copyright {
        font-size: 12px;
        color: var(--text);
        opacity: .6
    }

    .video-player {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 40%!important
    }

    .jw-aspect.jw-reset {
        padding-top: 40%!important
    }

    .video-description {
        font-size: 15px
    }

    .footer-wrap {
        font-size: 15px
    }
}

@media only screen and (max-width: 767px) {
    #logo {
        text-align: center;
        padding: 12px 5px 2px;
        margin: 5px;
        opacity: .8
    }

    .web-link {
        display: block!important;
        list-style-type: none;
        margin: 0 5px;
        overflow: hidden
    }

    #video-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 6px;
        padding: 8px 6px 4px
    }

    #search-box {
        margin: 5px;
        padding: 5px 0;
        border-top: 1px solid rgba(255,255,255,.07)
    }

    .search {
        width: 100%;
        border: 1px solid rgba(255,255,255,.1);
        display: flex;
        overflow: hidden;
        border-radius: var(--radius-sm)
    }

    #page-title {
        margin: 5px
    }

    .copyright {
        font-size: 12px;
        text-align: center;
        color: var(--text);
        opacity: .6
    }

    .video-player {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%!important
    }

    .intrinsic-container-16x9 {
        padding-bottom: 56.25%
    }

    .video-description {
        font-size: 14px
    }

    .footer-wrap {
        font-size: 14px
    }


    .video-name {
        font-size: 14px;
        padding: 5px 2px 0
    }
}

#vlxx.jw-error {
    height: 56.25%!important
}

.jw-icon.jw-icon-inline.jw-button-color.jw-reset.jw-icon-pip {
    display: none!important
}

.jw-icon.jw-icon-inline.jw-button-color.jw-reset.jw-icon-rewind {
    display: none!important
}

.jw-toggle.jw-off {
    color: #d8d8d8
}

.jw-controlbar.jw-background-color.jw-reset {
    background: linear-gradient(180deg,transparent,rgba(0,0,0,.25) 30%,rgba(0,0,0,.4) 70%,rgba(0,0,0,.5))
}

.jw-rightclick {
    display: none!important
}

.jw-logo.jw-logo-top-right.jw-reset {
    width: 200px!important;
    height: 57px!important;
    margin: 5px!important
}

@media only screen and (max-width: 876px) {
    .telexx {
        font-size: 15px;
        background: var(--bg2);
        margin: 4px;
        padding: 6px;
        display: block;
        border-radius: var(--radius-sm)
    }

    .banner-catfish-bottomd {
        display: none
    }

    .catfish-bottom-close {
        padding: 10px!important
    }

    .hide-mobile {
        display: none
    }

    .banner-preload-container>a {
        width: 300px;
        margin: calc(50vh - 125px) auto;
        display: block;
        height: 250px
    }

    .banner-preload .banner-preload-container .banner-preload-close {
        position: absolute;
        top: calc(50vh - 125px);
        right: calc(50vw - 150px);
        padding: 0 10px;
        font-size: 16px;
        color: var(--text);
        background-color: var(--bg2);
        border: 1px solid var(--text);
        opacity: .8;
        cursor: pointer
    }

    .ads-header {
        margin: 0 5px;
        text-align: center
    }

    .ads-footer {
        text-align: center;
        margin: 5px 0 -2px
    }

    .catfish-top {
        height: auto!important;
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(0,0,0,.55);
        z-index: 9999999;
        text-align: center
    }

    .banner-catfish-top {
        max-width: 300px;
        margin-top: 5px!important;
        box-shadow: 0 0 8px rgba(255,255,255,.15);
        margin: auto
    }

    .catfish-top-close {
        display: inline-block;
        position: absolute;
        top: auto!important;
        right: 0;
        bottom: 0;
        padding: 0 10px;
        font-size: 16px;
        color: var(--text);
        background-color: var(--bg2);
        border: 1px solid var(--text);
        box-shadow: 0 0 5px #fff;
        opacity: .8;
        cursor: pointer
    }
}

@media only screen and (min-width: 877px) {
    .banner-catfish-bottomm {
        display: none
    }

    .hide-desktop {
        display: none
    }

    .banner-preload-container>a {
        max-width: 400px;
        height: auto;
        margin: calc(50vh - 170px) auto;
        display: block
    }

    .banner-preload .banner-preload-container .banner-preload-close {
        position: absolute;
        top: calc(50vh - 170px);
        right: calc(50vw - 200px);
        padding: 0 10px;
        font-size: 16px;
        color: var(--text);
        background-color: var(--bg2);
        border: 1px solid var(--text);
        box-shadow: 0 0 5px #fff;
        opacity: .8;
        cursor: pointer
    }

    .ads-header {
        margin: 6px auto 2px;
        text-align: center;
        max-width: 728px
    }

    .ads-footer {
        text-align: center;
        margin: 5px 0 2px;
    }

    .catfish-top {
        position: fixed;
        height: auto!important;
        width: 100%!important;
        text-align: center;
        left: 0; top: 0;
        background: rgba(0,0,0,.35);
        z-index: 9999999
    }

    .catfish-top.hide-mobile img {
        max-width: 728px
    }

    .banner-catfish-top {
        display: inline-flex;
        max-width: 50%;
        margin: auto;
        box-shadow: 0 0 8px rgba(255,255,255,.15)
    }

    .catfish-top-close {
        display: inline-block;
        position: absolute;
        right: 0; top: 0!important;
        padding: 0 10px;
        font-size: 16px;
        color: var(--text);
        background-color: var(--bg2);
        border: 1px solid var(--text);
        box-shadow: 0 0 5px #fff;
        opacity: .8;
        cursor: pointer
    }
}

.banner-catfish-bottomd {
    position: fixed;
    height: auto!important;
    width: 100%!important;
    text-align: center;
    left: 0; bottom: 0;
    background: rgba(0,0,0,.85);
    z-index: 999
}

.banner-catfish-bottomd img {
    max-width: 728px
}

.banner-catfish-bottomm {
    position: fixed;
    height: auto!important;
    bottom: 0; width: 100%;
    text-align: center;
    background: rgba(0,0,0,.55);
    line-height: 0;
    z-index: 999
}

.catfish-bottom-close {
    display: inline-block;
    position: absolute;
    right: 0; top: 0!important;
    padding: 0 10px;
    font-size: 16px;
    color: var(--text);
    background-color: var(--bg2);
    border: 1px solid var(--text);
    box-shadow: 0 0 5px #fff;
    opacity: .8;
    cursor: pointer
}

.banner-preload {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    z-index: 1000
}

.banner-preload .banner-preload-container {
    background: rgba(0,0,0,.85);
    box-shadow: var(--shadow-lg);
    position: absolute;
    width: 100vw;
    margin: 0 auto;
    cursor: pointer
}

.banner-preload .banner-preload-container .banner-preload-close:hover {
    opacity: 1
}

.banner-preload .banner-preload-container img {
    width: 100%;
    height: 100%
}

.under-player {
    margin: 5px;
    text-align: center
}

img.hidden-stats {
    display: none!important
}

b.\32 257 {text-transform: capitalize;}

#btn-load-more {
    cursor: pointer;
    padding: 7px 12px;
    background: rgba(234, 67, 53, 0.6);
    color: #dadada;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: background var(--trans)
}

#btn-load-more:hover {
    background: var(--accent-dk)
}
