.body {
    overflow: hidden;
    margin-top: 10px;
}
.heading-movies{
    margin: 0 0 1.5rem 0;
}
.title-movies{
    margin: 0;
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    position: relative;
    display: inline-block;
    line-height: 1.5;
}
.more-movie{
    font-size: 16px;
    color: #fff;
    float: right;
    margin-top: 11px;
}
.more-movie svg,.load-more svg{
    width: 1.5rem;
    height: 1.5rem;
    margin-left: 5px;
}
.more-movie:hover,.load-more a:hover{
    color: rgb(232 51 129/1);
}
.load-more{
    margin-top: 1.25rem;
    text-align: center;
}
.load-more a{
    font-size: 16px;
    color: #fff;
}
ul {
    list-style-position: outside;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.list-movies {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 1.25rem;
}
li.item-movie {
    position: relative;
}
li.item-movie .image {
    position: relative;
    padding: 29% 0;
}
.movie-play:before {
    content: "\f04b";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffc107;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 3rem;
    height: 3.2rem;
    line-height: 3.2rem;
    padding-left: 3px;
    border-radius: 50%;
    text-align: center;
    font-size: 1.1rem;
    z-index: 2;
    transform: scale(0);
    background-color: rgba(0,0,0,.4);
    box-shadow: 0 0 0 2px #fff, 0 0 10px rgba(0,0,0,.5);
    transition: .2s;
    opacity: 0;
}
.movie-play:after {
    content: "";
    background-color: #263238;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: .2s;
    opacity: 0;
}
li.item-movie:hover .movie-play:after {
    opacity: .6;
}
li.item-movie:hover .movie-play:before {
    opacity: 1;
    transform: scale(1);
}
li.item-movie .image .movie-thumbnail {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: revert;
    background-position: center center;
    border-radius: 6px;
    object-fit: cover;
}
li.item-movie:hover .cripple {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    border-radius: 50%;
    border: 1px solid #fff;
    animation: ripple 900ms ease-out infinite;
}
@keyframes ripple{0%{transform:scale(1)}40%{transform:scale(1.25);opacity:1}90%{transform:scale(1.5)}100%{transform:scale(1.75);opacity:0}}
span.view-onl {
    position: absolute;
    bottom: .25rem;
    right: .25rem;
    background: rgb(31 41 55/0.75);
    color: #fff;
    font-weight: 700;
    padding: .25rem .5rem;
    line-height: 14px;
    font-size: 12px;
    opacity: .8;
    -moz-border-radius: 0 5px 5px 0;
    -webkit-border-radius: 2px;
}
li.item-movie .label,.popular-post .label {
    position: absolute;
    top: 6px;
    left: 3px;
    background: #f44336;
    color: #fff;
    padding: 2px;
    line-height: 15px;
    font-size: 13px;
    opacity: .9;
    -moz-border-radius: 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0;
    border-radius: 0 5px 5px 0;
    font-weight: normal;
    margin: 0;
}
li.item-movie .title-movie {
    margin-top: 8px;
    margin-bottom: 0;
    font-weight: 400;
    text-align: left;
    font-size: .875rem;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #c3c3c3;
}
li.item-movie:hover .title-movie {
    color: rgb(232 51 129/1);
}
.cs-pagination{
	text-align: center;
    padding: 30px 0 0;
    margin: 0;
    width: 100%;
}
.cs-pagination a,.cs-pagination span{
	margin: 2px;
    display: inline-block;
    border-radius: 3px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 35px;
    box-sizing: border-box;
    min-width: 35px;
    background: #282828;
}
.cs-pagination span{
	margin: 0 2px;
    background: rgb(232 51 129/1);
}
.cs-pagination .pagination{
	align-items: center;
	justify-content: center;
}
.tab-movies1 {
    display: block;
    margin-top: 12px;
    overflow: hidden;
}
.body.player.has-sidebar{
    width: 70%;
    float: left;
}
.sidebar {
    float: right;
    width: 29%;
    margin-top: 10px;
}
.sidebar.hidden{
	display: none;
}
.popular-post .item {
    clear: both;
    margin-bottom: 1.5rem;
    padding-right: 10px;
    line-height: 0;
    list-style-type: none;
    overflow: hidden;
}
.popular-post .item:last-child {
    margin-bottom: 0;
}
.popular-post .item-link {
    display: block;
    overflow: hidden;
    position: relative;
    margin-right: 12px;
    padding: 0;
    float: left;
}
.popular-post h3.title {
    color: #adb5bd;
    cursor: pointer;
    margin: 4px 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-flex: 1;
    -webkit-box-orient: vertical;
}
.popular-post .viewsCount {
    font-size: .625rem;
    margin-top: 5px;
    display: inline-block;
    line-height: 20px;
    background-color: #24262b;
    vertical-align: top;
    padding: 0 0.6rem;
    border-radius: 10px;
    font-weight: 500;
}
.popular-post .post-thumb {
    float: left;
    width: 165px;
    border-radius: 4px;
    height: 92px;
    object-fit: cover;
}
.popular-post{
	margin-bottom: 6px;
	position:relative;
}
.popular-post .item:hover h3 {
    color: #ffc107;
}
.sidebar .widget-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 11px;
    display: block;
    margin: 13px 0 8px;
    position: relative;
    text-transform: uppercase;
    border-top: 1px solid rgba(255,255,255,.08);
}
.sidebar .widget-title span {
    position: relative;
    font-weight: 400;
    float: left;
    margin-top: -16px;
    margin-bottom: 6px;
    border: 1px solid rgb(30 32 36);
    background: #121111;
    font-size: 13px;
    padding: 10px 6px 9px;
    color: rgb(255 255 255/80%);
}
.sidebar .widget-title span:before {
    content: "";
    background: #0a0a0a;
    border-radius: 100%;
    position: absolute;
    padding: 6px;
    border: 1px solid rgba(255,255,255,.08);
    margin-left: 2px;
    top: 8px;
    right: -16px;
}
.sidebar .widget-title span:after {
    content: "";
    background: #0a0a0a;
    border-radius: 100%;
    position: absolute;
    padding: 4px;
    border: 1px solid rgba(255,255,255,.08);
    margin-left: 12px;
    top: 10px;
    right: -26px;
}
.single-title{
	font-size: 18px;
	line-height: 1.5;
	margin: 15px 0;
}
#video {
    background-color: #222;
    background-image: radial-gradient(#323232,#111);
    background-image: -webkit-radial-gradient(#323232,#111);
    background-image: -moz-radial-gradient(#323232,#111);
    background-image: -o-radial-gradient(#323232,#111);
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 57%;
}
#video iframe,#video video,#video .video-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.info-movie {
    margin-top: 10px;
}
.user-action {
    float: right;
}
.icon-view {
    color: rgb(255 255 255/80%);
    cursor: pointer;
    font-size: 13px;
    padding: 5px 10px 4px;
    display: inline-block;
    margin-right: 4px;
    background: #252525;
    border-radius: 4px;
}
.download-link {
    color: rgb(255 255 255/80%);
    cursor: pointer;
    font-size: 13px;
    padding: 5px 10px 4px;
    display: inline-block;
    margin-left: 4px;
    background: #252525;
    border-radius: 4px;
}
.download-link:hover{
    background: #2a2828;
    color: #37de0d;
}
span.button.zoom {
    color: rgb(255 255 255/80%);
    cursor: pointer;
    font-size: 13px;
    padding: 5px 5px 3px;
    margin-right: 4px;
    display: inline-block;
    background: #252525;
    border-radius: 4px;
}
.btn-viewxx {
    background: #2b2b2b;
    padding: 5px 6px 2.5px;
    display: inline-flex;
    border-radius: 4px;
    vertical-align: top;
}
.btn-viewxx i{
	margin-right: 5px;
    margin-top: 2px;
}
.item-content-toggle {
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    position: relative;
    padding-top: 2px;
    box-shadow: 0 -19px 20px 0 rgba(0,0,0,.51);
    margin: 4px -10px 10px;
}
.item-content-toggle .show-more {
    border: 1px solid rgba(255,255,255,.08);
    border-top: none;
    border-radius: 0 0 3px 3px;
    padding: 4px 10px;
    cursor: pointer;
    font-size: 13px;
}
article {
    font-size: 14px;
    max-height: 0;
    overflow: hidden;
}
article.toggled {
    max-height: none!important;
}
img.thumb-bv {
    margin-right: 6px!important;
    float: left;
    vertical-align: middle;
    display: block;
    width: 105px;
    height: 75px;
    margin-top: 8px!important;
    margin-bottom: 6px!important;
}
.entry-content{
    font-size: 16px;
    line-height: 1.5;
}
#extras{
    margin-bottom: 15px;
}
#extras p{
	margin-bottom: 10px;
    font-weight: 500;
    font-size: 16px;
}
#extras p a:after{
    content: ",";
    margin-right: 5px;
}
#extras p a:last-child:after{
    content: "";
    display: none;
}
#extras a {
    display: inline-block;
    color: #ebcb8b;
}
.item-pc{
    margin: 5px 0;
}
.catfish-image{
    position: fixed;
    z-index: 2;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: max-content;
    max-width: 90%;
}
.close-catfish{
    position: absolute;
    color: #ad891c;
    background: #000;
    top: -30px;
    right: 0;
    text-align: center;
    font-size: 12px;
    line-height: 30px;
    padding: 0 5px;
    cursor: pointer;
    font-weight: 700;
}
.video-js {
    width: 100% !important;
    height: 100% !important;
}
.screen-reader-text {
    display: none !important;
}
.server-title{
    background-color: #2e2e38;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: inline-block;
    text-align: center;
    padding: 5px;
    color: #d9d9d9;
    font-size: 12px;
    text-transform: uppercase;
}
.list-server{
    margin-bottom: 15px;
}
.server-wrap{
    display: inline-block;
}
.video-server{
    background: #23232a;
    border-radius: 7.5px;
    transition: 0.6s all;
    font-size: 13px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    padding: 4px 10px;
    text-align: center;
}
.video-server:hover,.video-server.bt_active{
    background: linear-gradient(140deg, rgba(27, 27, 27, 0.25) 0%, rgba(128, 49, 0, 0.25) 50%, rgba(179, 68, 0, 0.25) 75%, rgba(255, 98, 0, 0.25) 100%);
}
.list-backup{
    margin: 10px 5px;
    text-align: center;
}
.list-backup span {
    background: linear-gradient(140deg, rgba(26, 26, 32, 0.25) 0%, rgba(0, 77, 102, 0.25) 50%, rgba(0, 134, 179, 0.25) 75%, rgba(0, 191, 255, 0.25) 100%);
    margin: 2px;
    padding: 6px 10px;
    font-size: 11px;
    border-radius: 2px;
    color: #fff;
    transition: .5s all;
    cursor: pointer;
    display: inline-block;
}
.home-search{
    max-width: 36rem;
    text-align: center;
    margin: 0 auto;
    padding: 4rem 0;
    font-family: Halant;
}
.home-search-title{
    color: #fff;
    font-size: 2.25rem;
    margin-bottom: 15px;
    line-height: 1.5;
}
.home-search input{
	height: 46px;
	border-radius: 0;
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}
.home-search button i{
	color: rgb(156 163 175/1);
}
.home-search button{
	height: 46px;
	border-radius: 0;
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
    min-width: fit-content;
    background-color: #fff;
}
.center-title{
	text-align: center;
	margin-bottom: 25px;
	display: block;
}
footer .menu{
	display: flex;
	flex-wrap: wrap;
}
footer .menu li{
	flex: 0 0 50%;
}