/*===========================
 =  Table of Contents
 0. Keyframes
 1. General
 1.1. Typography
 1.2. Section spacings
 1.3. Forms
 1.4. Buttons
 1.5. Colors & Badges
 1.6. Modals & Popups
 1.7. Tables
 1.8. Tabs
 1.9. Dropdowns
 1.10. Cards
 2. Header
 3. Footer & Main
 4. Banner
 5. Subheader
 6. Shortcodes
 6.0. Channels List
 6.1. Video
 6.2. Channel Card
 6.3. Categories
 7. Misc
 8. Pages
 8.0. Channel Page
 8.1. Single Video
 8.2. My Channel - Playlists
 8.3. My Channel - About
 8.4. My Channel - Watch Later
 8.5. My Channel - History
 8.6. My Channel - Account Management
 8.7. My Channel - Settings
 8.8. About Us
 8.9. Legal
 8.10. Help Center
 8.11. Membership
 8.12. Login & Register
 9. Responsive
 10. Dark Mode
===========================*/
/* Google Fonts */
/*@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Poppins:400,600,700&display=swap");

@font-face {
    font-family: 'NPSfontBold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2310@1.0/NPSfontBold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'AppleSDGothicNeo';
    src: url('fonts/AppleSDGothicNeoL.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('fonts/HelveticaNeue Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}*/
.left_dropitem{
	display:none;
}
.line{
	width:100%;
	height:1px;
	background:#fff;
}
.small{
	width:80%;
}
.small .row{
	margin-right: 0;
    margin-left: 0;
}
.small .section{
	margin-right: 0;
    margin-left: 0;
}
.small .section-title-wrap{
	margin-left:0;
}

.small .main_right_video_list{
    padding-right: 1px;
    padding-left: 10px;
	margin-bottom:10px;
}

.small .main_right_video_list h6 a{
    text-align:center;
}

.small-right{
	width:18%;
    padding: 0;
    margin-left: 20px;
}

.small-right .row{
	margin-right: 0;
    margin-left: 0;
}

.small-right .section{
	margin-right: 0;
    margin-left: 0;
}

.small-right .section-title-wrap{
	margin-left:10px;
}

.small-right .main_right_video_list{
	flex: 0 0 50%;
    max-width: 50%;
    padding-right: 1px;
    padding-left: 10px;
}

.small-right .main_right_video_list h6 a{
    text-align:center;
}

.small-right .icon_category{
	display:none;
}
/*-------------------------------------------------------------------*/
/* === Keyframes === */
@keyframes pulse {
  0%{
    opacity: .4;
    transform: scale(0);
  }
  100%{
    opacity: 0;
    transform: scale(1.4);
  }
}
.sub_category{
	margin:5px auto;
}
.category_btn{
    background: #fff;
    color: #000;
    padding: 2px;
    border-radius: 3px;
    font-size: 13px;
}
.category_btn:hover{
    background: #ff153c;
    color: #fff;
}
/*======================
1.0. General
========================*/

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body,
canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed,
fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup,
html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p,
pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table,
tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video{
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  font-family: "Noto Sans", sans-serif;
}

.opacity-0 {
  opacity: 0;
}

.opacity-25 {
  opacity: .25;
}

.opacity-50 {
  opacity: .50;
}

.opacity-75 {
  opacity: .75;
}

.opacity-100 {
  opacity: 1;
}
.img-sm{
  width: 45px;
}

.dark-overlay,
.primary-overlay{
  position: relative;
  z-index: 1;
}
.dark-overlay::before,
.primary-overlay::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.4);
  z-index: -1;
  -webkit-transition: background-color .3s;
  -o-transition: background-color .3s;
  transition: background-color .3s;
}
.dark-overlay.dark-overlay-2::before{
  background-color: rgba(0,0,0,.6);
}
.primary-overlay::before{
  background-color: transparent;
  background-image: linear-gradient(to bottom right, #ff153c, rgba(0,0,0,.5));
}

body {
  font-family: "Noto Sans", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  color: #515151;
  background-color: #f9f9f9;
  overflow-x: hidden;
}
hr{
  margin: 30px 0;
}
img {
  max-width: 100%;
  height: auto;
}

.cursor-pointer {
  cursor: pointer;
}

.close-btn {
  border: 0;
  background-color: transparent;
  padding: 0;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
}

.close-btn:focus {
  outline: none;
}

.close-btn span {
  position: absolute;
  width: 2px;
  height: 15px;
  display: block;
  background-color: #fff;
  opacity: 0.6;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.close-btn.close-dark span {
  background-color: #1D2228;
}
.close-btn.close-danger span {
  background-color: #ff2929;
}

.close-btn span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.close-btn:hover span {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.close-btn:hover span:nth-child(2) {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.close-btn.dark span {
  background-color: #1D2228;
}

.icon-2x {
  font-size: 2rem;
}

.icon-3x {
  font-size: 3rem;
}

.icon-4x {
  font-size: 4rem;
}

.border-0 {
  border: 0;
}

.bg-cover {
  background-size: cover;
}
.bg-parallax{
  background-attachment: fixed;
}
.bg-contain {
  background-size: contain;
}

.bg-norepeat {
  background-repeat: no-repeat;
}

.bg-center {
  background-position: center;
}

/*======================
1.1. Typography
========================*/

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  line-height: 28px;
  color: #333;
}
h1 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
}
h2 {
  font-size: 34px;
  line-height: 44px;
}
h3 {
  font-size: 28px;
  line-height: 36px;
}
h4 {
  font-size: 22px;
  line-height: 30px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}
p {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 15px;
  color: #515151;
}
a {
  color: #ff153c;
  text-decoration: none;
  transition: color .3s;
}
a:hover,
a:focus {
  color: #dc5050;
  text-decoration: none;
  outline: none;
}
b,
strong{
  font-weight: 700;
}
label{
  margin-bottom: 10px;
  font-weight: 600;
  color: #1D2228;
}
ol,
ul {
  list-style: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 20px;
}
ul li,
ol li {
  margin: 10px 0 0;
  position: relative;
}
.vl-list{
  margin-bottom: 20px;
}
.vl-list li{
  position: relative;
  margin-top: 10px;
  padding-left: 25px;
}
.vl-list li::before{
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-rendering: auto;
  line-height: 28px;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #1ec1b0;
}
.vl-list-decimal{
  list-style: decimal;
  padding-left: 15px;
}
.small, small{
  line-height: 21px;
}
blockquote {
  background-color: #fff;
  position: relative;
  padding: 30px;
  margin: 20px 0;
  border-left: 3px solid #ff153c;
  font-size: 18px;
  font-family: "Noto Sans", sans-serif;
}

blockquote p{
  margin-bottom: 0;
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
}

.fs-12 {
  font-size: 12px !important;
}
.fs-14 {
  font-size: 14px !important;
}
.fs-15 {
  font-size: 15px !important;
}
.fs-16 {
  font-size: 16px !important;
}
.fs-18 {
  font-size: 18px !important;
}

.fw-400 {
  font-weight: 400 !important;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.out_btn{
	background: #ff153c;
    text-align: center;
    border-radius: 8px;
    height: 40px;
    line-height: 40px;
	margin:10px auto;
}
.out_btn:hover{
	background: #cc1030;
}

.out_btn span{
	color:#fff;
}

.out_btn2{
	background: #f33d5b;
    text-align: center;
    border-radius: 8px;
    height: 40px;
    line-height: 40px;
	margin:10px auto;
}
.out_btn2:hover{
	background: #cc1030;
}

.out_btn2 span{
	color:#fff;
}

/*======================
1.2 Section Spacings
========================*/
.section {
  position: relative;
  padding: 0;
  margin: 0;
}
.section-padding{
  padding: 50px 0;
}
.section.section-margin{
  margin: 10px 0 0;
}
.section-light{
  background-color: #f8f9fa;
}
.page-title{
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-title h1{
  margin: 0;
}
.section-title-wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  margin-top: 10px;
}
.section-title-wrap h3{
  margin: 0;
  font-size: 24px;
}
.section-title-wrap h4{
  margin: 0;
}
.section-title-wrap-lg{
  margin-bottom: 80px;
}
.section-title-wrap-lg h1{
  font-size: 70px;
  line-height: 78px;
}
.section-title-wrap
.section-controls,
.section-controls .arrows{
  display: flex;
  align-items: center;
}
.section-controls a{
  font-weight: 600;
  color: #6c757d;
  margin-right: 0;
}
.section-controls a:hover{
  color: #545454;
}
.section-controls .arrows .swiper-button-next,
.section-controls .arrows .swiper-button-prev{
  position: relative;
  outline: none;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  margin: 0 0 0 10px;
}

/*==================
1.3. Forms
====================*/
textarea{
  resize: none;
}
.form-control::-webkit-input-placeholder{
  color: #a5a5a5;
}
.form-control::-moz-placeholder{
  color: #a5a5a5;
}
.form-control:-ms-input-placeholder{
  color: #a5a5a5;
}
.form-control::-ms-input-placeholder{
  color: #a5a5a5;
}
.form-control::placeholder{
  color: #a5a5a5;
}
.form-control {
  height: 48px;
  padding: 10px;
  border-radius: 8px;
  width: 100%;
  color: #6e6e6e;
  background-color: #fff;
  border: 1px solid #f2f2f2;
  letter-spacing: 0.1px;
  font-size: 14px;
  transition: .3s;
}
.form-control:focus {
  border: 1px solid #e4e4e4;
  background-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-control-light{
  background-color: #f2f2f2;
}
.form-control-light:focus{
  background-color: #e4e4e4;
}
.form-group{
  margin-bottom: 20px;
}
.input-with-icon{
  position: relative;
}
.input-with-icon input,
.input-with-icon select{
  padding-left: 40px;
}
.input-with-icon i{
  position: absolute;
  top: 50%;
  left: 15px;
  font-size: 18px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #a5a5a5;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.input-with-icon input:focus + i,
.input-with-icon select:focus + i{
  color: #454545;
}
.custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::before,
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before{
  background-color: #30ca71;
  border-color: #30ca71;
}
.custom-control label{
  line-height: 23px;
}
.ag-form-notice{
  display: block;
  font-size: 13px;
  line-height: 20px;
  margin-top: 5px;
  color: #848486;
}
.custom-switch .custom-control-input:checked~.custom-control-label::before{
  background-color: #30ca71;
  border-color: #30ca71;
}
.custom-control-input:not(:disabled):active~.custom-control-label::before{
  background-color: transparent;
}

/*==================
1.4. Buttons
====================*/
.btn-custom {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  position: relative;
	background-color: #ff153c;
  line-height: 24px;
  border: 0;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 24px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
  border-radius: 8px;
  z-index: 1;
}
.btn-custom.btn-icon{
  padding: 10px 16px;
}
.btn-custom:hover,
.btn-custom:focus{
  background-color: #cc1030;
  color: #fff;
  outline: none;
}
.btn-custom.primary{
  background-color: #ff153c;
}
.btn-custom.primary:hover,
.btn-custom.primary:focus{
  background-color: #cc1030;
  color: #fff;
  outline: none;
}
.btn-custom.secondary{
  background-color: #ffdcdc;
  color: #ff153c;
}
.btn-custom.secondary:hover,
.btn-custom.secondary:focus{
  background-color: #ff153c;
  color: #fff;
}
.btn-custom.light{
  background-color: #e6e6e6;
  color: #333;
}
.btn-custom.light:hover,
.btn-custom.light:focus{
  background-color: #dad9d9;
  color: #333;
}
.btn-custom.tertiary{
  background-color: #fff;
  color: #ff153c;
  box-shadow: 0 3px 12px rgba(0,0,0,.1);
}
.btn-custom.tertiary:hover,
.btn-custom.tertiary:focus{
  background-color: #ff153c;
  color: #fff;
}

.input-group-append .btn-custom,
.input-group-append .btn-custom::before{
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-custom i{
  margin-right: 5px;
}
.btn-link{
  font-weight: 600;
  color: #1D2228;
}
.btn-link:hover,
.btn-link:focus{
  color: #dc5050;
  text-decoration: none;
}

.btn-custom.btn-sm{
  padding: 8px 20px;
  font-size: 12px;
}
.btn-custom.btn-lg{
  font-size: 16px;
  padding: 16px 24px;
}
input[type="submit"]:disabled, button[type="submit"]:disabled {
  background-color: #e4e3e8;
  border-color: #e4e3e8;
  cursor: not-allowed;
}

/*==================
1.5. Colors & Badges
====================*/
.custom-primary{
  color: #ff153c;
}
.custom-secondary{
  color: #ff6767;
}
.custom-dark{
  color: #333 !important;
}
.twitter {
  background-color: rgba(44, 170, 225, 0.4);
  color: #2caae1;
}
.twitter:hover{
  background-color: #2caae1;
  color: #fff;
}

.facebook {
  background-color: rgba(59, 87, 157, 0.4);
  color: #3b579d;
}
.facebook:hover{
  background-color: #3b579d;
  color: #fff;
}

.google {
  background-color: rgba(220, 74, 56, 0.4);
  color: #dc4a38;
}
.google:hover{
  background-color: #dc4a38;
  color: #fff;
}

.linkedin{
  background-color: rgba(1, 119, 181, 0.4);
  color: #0177b5;
}
.linkedin:hover{
  background-color: #0177b5;
  color: #fff;
}

.pinterest {
  background-color: rgba(204, 33, 39, 0.4);
  color: #cc2127;
}
.pinterest:hover{
  background-color: #cc2127;
  color: #fff;
}

.youtube{
  background-color: rgba(229, 45, 39, 0.4);
  color: #e52d27;
}
.youtube:hover{
  background-color: #e52d27;
  color: #fff;
}

.github {
  background-color: rgba(51, 51, 51, 0.4);
  color: #333333;
}
.github:hover{
  background-color: #333333;
  color: #fff;
}

.behance {
  background-color: rgba(23, 105, 255, 0.4);
  color: #1769ff;
}
.behance:hover{
  background-color: #1769ff;
  color: #fff;
}

.dribbble {
  background-color: rgba(234, 76, 137, 0.4);
  color: #ea4c89;
}
.dribbble:hover{
  background-color: #ea4c89;
  color: #fff;
}

.reddit{
  background-color: rgba(255, 69, 0, 0.4);
  color: #ff4500;
}
.reddit:hover{
  background-color: #ff4500;
  color: #fff;
}

.light-bg{
  background-color: #f7f4ee;
}

/* Badges */
[class*='badge-'] {
  position: relative;
  color: #fff;
  font-weight: 400;
  padding: 6px 9px;
  font-size: 13px;
}
.badge.badge-primary {
  background-color: #ff153c;
}
.badge.badge-secondary {
  background-color: #aa66cc;
}
.badge.badge-success {
  background-color: #1ec1b0;
}
.badge.badge-warning {
  background-color: #fda600;
}
.badge.badge-danger {
  background-color: #ff737b;
}
.badge.badge-info {
  background-color: #5a9ee0;
}

/*======================
1.6 Modal & Popups
========================*/
.modal-header .close{
  background-color: #020232;
  opacity: 1;
  margin: 0;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  padding: 0;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-shadow: none;
}
.modal-header{
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-header .close:not(:disabled):not(.disabled):hover{
  background-color: #dd3333;
  opacity: 1;
}

/*======================
1.7 Tables
========================*/
table th,
table td {
  padding: 15px;
  vertical-align: middle;
}
table th{
  font-weight: 600;
  color: #fff;
  background-color: #1D2228;
  font-family: "Noto Sans", sans-serif;
}
table {
  width: 100%;
  margin-bottom: 30px;
}
table td{
  background-color: #f7f4ee;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
table img{
  width: 40px;
  border-radius: 8px;
}

/*======================
1.8 Tabs
========================*/
.tab-content{
  margin-top: 10px;
}
.nav-item{
  margin: 0;
}
.nav-link{
  padding: 10px 10px;
  background-color: #f7f4ee;
  font-weight: 600;
  margin-right: 5px;
  border-radius: 8px;
  color: #1D2228;
  font-size:.8em;
  width: 65px;
  text-align: center;
}
.nav-link.active{
  background-color: #ff153c;
  color: #fff;
}

.nav-link.active:hover{
  background-color: #cc1030;
}

.nav-link2{  
  padding: 10px 10px;
  font-weight: 600;
  margin-right: 5px;
  border-radius: 8px;
  font-size:.8em;
  width: 65px;
  text-align: center;
  color: #fff !important;
  background-color: #1a1a1a !important;
  border:none !important;
}

.nav-link2.active{
  background-color: #1a1a1a;
  color: #fff;
  border:none !important;
  text-align: left;
}

.nav-link2.active:hover{
  background-color: #1a1a1a;
  border:none !important;
}
/*======================
1.9. Dropdowns
========================*/
.dropdown-menu{
  padding: 0;
  color: #333;
  box-shadow: 0 3px 12px rgba(0,0,0,.1);
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 8px;
  margin: 0;
  min-width: 15rem;
}
.main-content-inner .dropdown-menu{
  min-width: 12rem;
}
.dropdown-menu-lg.dropdown-menu{
  min-width: 24rem;
}
.dropdown-menu .dropdown-header{
  padding: 10px 20px;
  color: #333;
  font-size: 15px;
  font-weight: 700;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-top: 2px solid #5a5a5a;
}
.dropdown-menu .dropdown-header.dropdown-header-lg{
  padding: 20px 20px 10px 20px;
}
.dropdown-menu .dropdown-item{
  display: flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 14px;
  color: #6c757d;
  white-space: normal;
  transition: 0s;
}

.dropdown-menu .dropdown-item span{
  margin-left: auto;
}
.dropdown-menu .dropdown-item span i{
  margin: 0;
  font-size: 12px;
}
.dropdown-menu .dropdown-item:first-child{
  border-radius: 8px 8px 0 0;
}
.dropdown-menu .dropdown-item:last-child{
  border-radius: 0 0 8px 8px;
}
.dropdown-menu .dropdown-header + .dropdown-item{
  border: 0;
}
.dropdown-menu .dropdown-item i{
  margin-right: 10px;
}
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active,
.dropdown-menu .dropdown-item:hover{
  background-color: #f3f3f3;
  color: #333;
}
.navbar-controls > ul .dropdown-menu{
  margin-top: 10px;
}
.dropdown-toggle::after{
  vertical-align: middle;
}
.dropdown-footer .dropdown-item{
  justify-content: center;
  text-decoration: underline;
}

.btn_main {
	background:#ff153c;
	border:1px solid #ff153c;
	color:#fff;
    border-radius: .2rem !important;
}
.btn_main:focus,.btn_main:hover {
	background:#cc1030;
	border:1px solid #cc1030 !important;
	color:#fff
}
.mega-menu .dropdown-menu{
  width: 60vw;
  max-width: 80vw;
  padding: 0;
  max-height: calc(100vh - 100px);
}
.mega-menu .dropdown-menu .mega-menu-inner{
  display: flex;
  justify-content: space-between;
}
.mega-menu .dropdown-menu .mega-menu-inner ul{
  padding: 20px 30px;
}
.mega-menu .dropdown-menu .mega-menu-inner ul li.mega-menu-title{
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
}

.form_control {
	background-clip:padding-box;
	background-color:#454545;
	border:1px solid #454545;
	border-radius:.25rem;
	color:#fff;
	display:block;
	font-size:1.1rem;
	font-weight:400;
	line-height:1.5;
	padding:.8rem 1rem;
	transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	width:100%
}

/*======================
1.10. Cards
========================*/
.card{
  border-radius: 8px;
  border: 0;
  box-shadow: 0 3px 12px -4px rgba(0,0,0,.1);
  margin-bottom: 30px;
}
.card-header{
  background-color: #fff;
}
.card-header:first-child{
  border-radius: 8px 8px 0 0;
}
.card-header h6{
  margin: 0;
}
.card-body{
  padding: 0px 30px 30px 30px;
  border-radius: 8px 8px 0 0;
  border-top: 2px solid #5a5a5a;
}
.collapse_item{
	padding: 8px 0;
	cursor:pointer;
}
.collapse_item:hover{
	background:#4d4d4d;
}

/*======================
2. Header
========================*/

.nav-wrapper{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height:70px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 998;
  box-shadow: 0 3px 12px -8px rgba(0,0,0,.1);
}
.nav-wrapper-inner{
	width:1680px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
}
.navbar-logo{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo a{
  width: 90px;
}
.navbar-menu{
  margin: 0 auto 0 1%;
  position: relative;
}
.navbar-menu > ul,
.navbar-controls > ul{
  display: flex;
  align-items: center;
  margin: 0;
}
.navbar-menu ul li,
.navbar-controls ul li{
  margin: 0;
}
.navbar-menu > ul > li > a{
  position: relative;
  padding: 10px;
  display: block;
  font-weight: 600;
  transition: color .3s;
}
.pc_menu{
	display:block;
    padding: 0 10px;
}
.m_menu{
	display:none;
    padding: 0 10px;
}
.m_menu_moadl{
	display:none;
}
.m_menu_moadl .menu_drop{
	height: auto;
    top: 100px;
    background-color: #313131;
    position: absolute;
    width: 100%;
}
.m_menu_moadl .menu_drop a{
	color:#fff;
}
.m_menu_moadl .menu_drop a:hover{
	color:#fff;
	background-color: #5a5959;
}
@media(max-width:1500px) {
	.navbar-search{
		display:block;
	}
	
	.title-search{
		display:block;
	}
	.dropdown-menu .dropdown-item {
		font-size: .9em;
	}
}
@media (max-width: 991px) {
	.pc_menu{
		display:none;
	}
	.m_menu{
		display:block;
		padding: 0 10px;
	}
	.navbar-menu{
		position: absolute !important;
		white-space: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar;
		-moz-overflow-scrolling: touch;
		-o-overflow-scrolling: touch;
		overflow-scrolling: touch;
	}
	.dropdown-menu.show {
		/*position: fixed !important;
		top: 10px !important;
	    transform: unset !important;
		z-index: 99999999;*/
	}
	.navbar-menu > ul > li > a{
		padding: 0 10px !important;
		font-size:1em !important;
	}
}
.navbar-menu > ul > li > a{
  position: relative;
  padding: 10px;
  display: block;
  font-weight: 600;
  transition: color .3s;
  color:#fff;
}

.navbar-menu > ul > li > a:hover{
  color:#ff153c !important;
}

.navbar-menu ul li a:hover,
.navbar-menu ul li a:focus,
.navbar-menu ul li a.active{
  color: #ff153c;
}
.navbar-menu ul li a::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  border-radius: 8px;
  background-color: #ff153c;
}
.navbar-menu ul li a.active::before{
  width: 100%;
}

.navbar-controls > ul > li > a{
  padding: 10px;
  margin: 10px 0;
  display: block;
  border-radius: 3px;
  font-size: 18px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-controls ul li a.btn-custom{
  padding: 8px 24px;
  font-size: 14px;
  width: auto;
  height: auto;
  color: #fff;
}
.navbar-controls ul li a.btn-custom:hover{
  background-color: #dc5050;
  color: #fff;
}
.navbar-controls ul li a:hover{
  background-color: #f3f3f3;
}

.navbar-controls ul li a,
.navbar-menu ul li a{
  color: #6c757d;
}

.navbar-search{
	margin: 0 auto;
}
.navbar-search form{
    width: auto;
}
.navbar-search form .btn-custom{
  padding: 4px 14px;
}
.navbar-search form .form-control{
  height: auto;
  background-color: #f2f2f2;
  padding: 8px 15px;
}
.navbar-search form .form-control:focus{
  background-color: #e4e4e4;
}


.title-search{
  margin: 0;
}
.title-search form{
  width: auto;
}
.title-search form .btn-custom{
  padding: 4px 14px;
}
.title-search form .form-control{
  height: auto;
  background-color: #f2f2f2;
  padding: 8px 15px;
}
.title-search form .form-control:focus{
  background-color: #e4e4e4;
}

.user-info img{
  width: 35px;
}

/* Aside */
.aside-toggler{
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-right: 30px;
  cursor: pointer;
}
.aside-toggler span{
  display: block;
  width: 20px;
  height: 2px;
  background-color: #333;
  margin-bottom: 4px;
  transition: .3s;
}

.aside-toggler span:first-child{
  width: 10px;
  margin-left: -5px;
}
.aside-toggler span:last-child{
  width: 10px;
  margin-right: -5px;
}
.aside-toggler:hover span{
  width: 20px;
  margin-left: 0;
  margin-right: 0;
}
.sidebar{
  position: fixed;
  top: 68px;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #fff;
  z-index: 999;
  transition: left .3s;
}
.sidebar-wrapper.open .sidebar{
  left: 0px;
}
.sidebar-wrapper.open + .main-content{
  padding-left: 0;
}

.aside-section{
  padding: 20px 0;
  margin: 0 0 20px;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.aside-section + .aside-section{
  padding-top: 0;
}
.aside-section:last-child{
  border-bottom: 0;
  margin-bottom: 0;
}
.aside-title{
  text-transform: uppercase;
  display: block;
  font-size: 14px;
  font-weight: 700;
  font-family: "Noto Sans", sans-serif;
  padding: 0 15px;
  margin-bottom: 10px;
  color: #545454;
  opacity: .7;
}
.aside-button{
  padding: 0 15px;
  margin-top: 10px;
}
.aside-button .btn-custom{
  width: 100%;
  display: block;
}
.sidebar ul {
  margin: 0;
}
.sidebar ul li a{
  padding: 0 15px;
}

.sidebar .aside-menu li{
  margin: 0;
}
.sidebar .aside-menu li a{
  color: #6c757d;
  font-weight: 600;
  display: block;
  padding: 10px 15px;
  font-size:16px;
}
.sidebar .aside-menu li a:hover{
  background-color: #f3f3f3;
}
.sidebar .aside-menu li a.active{
  color: #ff153c;
}
.sidebar .aside-menu li a i{
  color: #6c757d;
  transition: .3s;
  margin-right: 15px;
}
.sidebar .aside-menu li a.active i{
  color: #ff153c;
}

/*======================
3. Footer & Main
========================*/

.main-content{
  padding-left: 0;
  padding-top: 68px;
  transition: padding .3s;
}
.main-content.no-sidebar{
  padding-left: 0;
}

.main-content-inner{
  padding: 30px 0 0 0;
}
.boxed .main-content-inner,
.boxed .page-subheader-controls-inner{
  max-width: 1500px;
  margin: 0 auto;
}

.footer{
  width:100%;
  padding-top: 30px;
  background-color: #1a1a1a;
  margin: 60px 0 0;
  padding: 20px;
  border-radius: 8px 8px 0 0;
}
.footer p{
  color: #fff;
  font-size: 13px;
}
.footer .footer-top img{
  margin-bottom: 20px;
  width: 110px;
}
.footer .footer-bottom{
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.copyright{
  margin-bottom: 0;
}
.copyright i{
  color: #ff899e;
  margin: 0 3px;
}
.footer .social-media{
  justify-content: flex-end;
}

/* Style 2 */
.boxed .footer.footer-2{
  padding: 20px 0;
  border-radius: 0;
}
.boxed .footer.footer-2 .footer-inner{
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 30px;
}

/*======================
4. Banner
========================*/

.banner-1 {
  width: 100%;
}

.banner-1 .banner-item {
  position: relative;
  width: 600px;
  height: 300px;
  border-radius: 8px;
  pointer-events: none;
}
.banner-1 .banner-item.swiper-slide-active{
  pointer-events: all;
}

.banner-1 .banner-item .banner-item-inner{
  position: absolute;
  right: 0;
  height: 100%;
  padding: 15px;
  width: 270px;
  background-color: #fff;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.banner-1 .banner-item .media{
  margin-bottom: 15px;
}
.banner-1 .banner-item .media h6 a {
  color: #333;
}
.banner-1 .banner-item .media h6 a:hover{
  color: #ff153c;
}
.banner-1 .banner-item .banner-thumbnail{
  position: relative;
  width: calc(100% - 270px);
  height: 100%;
  position: absolute;
  background-position: center;
  background-size: cover;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 15px;
}
.banner-1 .banner-item .banner-thumbnail .play-btn{
  position: absolute;
  bottom: 15px;
  left: 15px;
}
.banner-1 .banner-item .banner-thumbnail .video-duration{
  position: absolute;
  bottom: 15px;
  right: 15px;
}
.banner-1 .banner-item .banner-thumbnail .video-control,
.banner-1 .banner-item .banner-thumbnail .play-btn,
.banner-1 .banner-item .banner-thumbnail .video-duration{
  opacity: 0;
  visibility: hidden;
}
.banner-1 .banner-item.swiper-slide-active .banner-thumbnail .video-control,
.banner-1 .banner-item.swiper-slide-active .banner-thumbnail .play-btn,
.banner-1 .banner-item.swiper-slide-active .banner-thumbnail .video-duration{
  opacity: 1;
  visibility: visible;
}
.banner-1 .banner-item p{
  margin: 0;
}
.banner-1 .banner-item .video-categories{
  margin-bottom: 13px;
}

.banner-1 .banner-item .video-categories a{
  display: inline-block;
  margin: 0 5px 2px 0;
  background-color: rgba(0,0,0,.05);
  color: rgba(0,0,0,.7);
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 25px;
}
.banner-1 .banner-item .video-categories a:hover{
  background-color: rgba(0,0,0,.1);
}

/*======================
5. Subheader
========================*/
.page-subheader-inner{
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.page-subheader-inner h1{
  color: #fff;
  margin: 0;
}
.page-subheader-inner video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-subheader-controls{
  border-bottom: 1px solid rgba(0,0,0,.1);
  background-color: #fff;
}
.page-subheader-controls-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}
.page-subheader-controls .channel-thumbnail{
  margin: -50px 20px -50px 0;
  border: 2px solid #fff;
  border-radius: 50%;
}
.page-subheader-controls .channel-thumbnail img{
  border-radius: 50%;
}
.page-subheader-nav{
  margin-right: auto;
}
.page-subheader-nav ul{
  margin: 0;
  display: flex;
  align-items: center;
}
.page-subheader-nav ul li{
  margin: 0;
}
.page-subheader-nav > ul > li > a{
  display: block;
  padding: 20px;
  color: #6c757d;
  font-weight: 600;
}
.page-subheader-nav ul li a.active,
.page-subheader-nav ul li a:hover{
  color: #ff153c;
}
.page-subheader-nav ul li a::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  border-radius: 8px 8px 0 0;
  background-color: #ff153c;
}
.page-subheader-nav ul li a.active::before{
  width: 100%;
}
.page-subheader-right{
  display: flex;
  align-items: center;
}
.page-subheader-right .btn-custom{
  margin-left: 20px;
}
.page-subheader-inner form{
  margin-top: 40px;
  width: 600px;
}
/*======================
6. Shortcodes
========================*/

/* 6.0. Channels List */
.recommended-channels li{
  position: relative;
  margin: 0 0 10px;
  padding: 10px 0;
}
.recommended-channels li:last-child{
  margin: 0;
}
.recommended-channels li img{
  width: 35px;
}
.recommended-channels li.live .media-body::before{
  content: '';
  position: absolute;
  top: 0;
  left: -25px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ff2929;
  border: 1px solid #fff;
  display: block;
}
.recommended-channels li:hover{
  background-color: #f3f3f3;
}

.recommended-channels .media{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recommended-channels .media-body{
  width: 150px;
}
.recommended-channels .media-body h6{
  font-size: 14px;
  line-height: 1;
}
.recommended-channels .media-body h6,
.recommended-channels .media-body span{
  overflow: hidden;
  text-overflow: ellipsis;
}
.media-body span + span{
  margin-top: 5px;
}

/* 6.1. Video */
#iframe_video{
	max-height:793px;
}
.video .video-js{
	max-height:793px;
	padding-top: 56.25% !important;
}
.video{
  border-radius: 8px;
  margin-bottom: 0;
  max-height: 830px;
}

.video .video-thumbnail{
  position: relative;
  padding-top:142%;
}

.video .video-thumbnail-inner{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  text-align:center;
}
.video .video-thumbnail img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.video .video-thumbnail .video-duration,
.video .video-thumbnail .watch-later-btn,
.video .video-thumbnail .play-btn{
  position: absolute;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
}
.video .video-thumbnail .play-btn{
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  font-size: 14px;
}
.video .video-thumbnail .watch-later-btn{
  top: 15px;
  right: 15px;
}
.video .video-thumbnail .video-duration{
  bottom: 15px;
  right: 15px;
}
.video .video-thumbnail:hover .video-duration,
.video .video-thumbnail:hover .watch-later-btn,
.video .video-thumbnail:hover .play-btn{
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.video .video-thumbnail_ho{
  position: relative;
  padding-top:65%;
}
.video .video-thumbnail_ho img{
  width: auto;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: .3s ease-in-out;
}
.video .video-thumbnail_ho img:hover{
	transform: scale(1.05);
    transition-property: all;
    transition-duration: 0.3s;
}
.video .video-thumbnail_ho .video-duration,
.video .video-thumbnail_ho .watch-later-btn,
.video .video-thumbnail_ho .play-btn{
  position: absolute;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
}
.video .video-thumbnail_ho .play-btn{
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  font-size: 14px;
}
.video .video-thumbnail_ho .watch-later-btn{
  top: 15px;
  right: 15px;
}
.video .video-thumbnail_ho .video-duration{
  bottom: 15px;
  right: 15px;
}
.video .video-thumbnail_ho:hover .video-duration,
.video .video-thumbnail_ho:hover .watch-later-btn,
.video .video-thumbnail_ho:hover .play-btn{
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}








.recommend_list{
  border-radius: 8px;
  margin-bottom: 0;
  max-height: 793px;
}

.recommend_list .video-thumbnail{
  position: relative;
  padding-top:142%;
}

.recommend_list .video-thumbnail-inner{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.recommend_list .video-thumbnail img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.recommend_list .video-thumbnail .video-duration,
.recommend_list .video-thumbnail .watch-later-btn,
.recommend_list .video-thumbnail .play-btn{
  position: absolute;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
}
.recommend_list .video-thumbnail .play-btn{
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  font-size: 14px;
}
.recommend_list .video-thumbnail .watch-later-btn{
  top: 15px;
  right: 15px;
}
.recommend_list .video-thumbnail .video-duration{
  bottom: 15px;
  right: 15px;
}
.recommend_list .video-thumbnail:hover .video-duration,
.recommend_list .video-thumbnail:hover .watch-later-btn,
.recommend_list .video-thumbnail:hover .play-btn{
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.recommend_list .video-thumbnail_ho{
  position: relative;
  padding-top:65%;
}
.recommend_list .video-thumbnail_ho img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.recommend_list .video-thumbnail_ho .video-duration,
.recommend_list .video-thumbnail_ho .watch-later-btn,
.recommend_list .video-thumbnail_ho .play-btn{
  position: absolute;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
}
.recommend_list .video-thumbnail_ho .play-btn{
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  font-size: 14px;
}
.recommend_list .video-thumbnail_ho .watch-later-btn{
  top: 15px;
  right: 15px;
}
.recommend_list .video-thumbnail_ho .video-duration{
  bottom: 15px;
  right: 15px;
}
.recommend_list .video-thumbnail_ho:hover .video-duration,
.recommend_list .video-thumbnail_ho:hover .watch-later-btn,
.recommend_list .video-thumbnail_ho:hover .play-btn{
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}





.play-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background-color: rgba(0,0,0,.6);
  color: #fff;
  transition: .3s;
}
.play-btn:hover,
.video-control:hover{
  background-color: rgba(0,0,0,.8);
  color: #fff;
}
.video-control{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background-color: rgba(0,0,0,.6);
  color: #fff;
  transition: .3s;
  font-size: 14px;
}
.video-duration{
  border-radius: 8px;
  padding: 6px 16px;
  background-color: rgba(0,0,0,.6);
  font-size: 13px;
  line-height: 21px;
  color: #fff;
  text-align: center;
  display: inline-block;
  font-weight: 600;
  transition: .3s;
}
.video-content .media{
	margin-top: 5px;
	margin-bottom: 10px;
}
.video-content .media .video-author{
  font-weight: 600;
}
.video-content .media .video-author i{
  color: #ffa22e;
  margin-right: 5px;
}
.video-content .media img{
  width: 35px;
}
.video .video-meta{
  margin-top: 5px;
  font-size: 13px;
  line-height: 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.live-flag{
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  background-color: #ff2929;
  color: #fff;
  padding: 1px 6px;
  border-radius: 8px;
  z-index: 2;
}

/* List View */
.video.video-list{
  display: flex;
    padding:10px 0;
}
.video.video-list .media h6 a{
  font-size: 17px;
}
.video.video-list .video-content .media img{
  display: none;
}
.video.video-list .media-body span + span{
  margin: 0;
}
.video.video-list .video-content {
  flex: 1;
}
.video.video-list .video-thumbnail{
  width: 200px;
  height: 110px;
  margin-right: 15px;
  padding-top:0;
}
.video.video-list .video-content .media{
  margin: 0;
}
.video.video-list .video-thumbnail .watch-later-btn{
  top: 5px;
  left: 5px;
}
.video.video-list .video-thumbnail .play-btn{
  bottom: 5px;
  left: 5px;
}
.video.video-list .video-thumbnail .video-duration{
  bottom: 5px;
  right: 5px;
}

/* With Controls */
.video.video-with-controls{
  position: relative;
}
.video.video-with-controls .media-body h6{
  padding-right: 30px;
}
.video.video-with-controls .ellipses-dropdown{
  position: absolute;
  top: 5px;
  right: 0;
  z-index: 2;
}

/* 6.2. Channel Card */
.channel-card{
  text-align: center;
}
.channel-card .channel-thumb{
  margin-bottom: 15px;
  align-items: center;
}
.channel-card .channel-thumb img{
  width: 50px;
  border-radius: 50%;
  margin: 0;
}
.channel-card .channel-thumb{
  position: relative;
}
.channel-card .channel-thumb i{
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  margin: 0;
  width: 20px;
  height: 20px;
  background-color: #ffa22e;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.channel-card .channel-meta + .channel-info{
  margin-top: 15px;
}
.channel-card .channel-meta h5{
  margin-bottom: 5px;
}
.channel-card .channel-meta h5 a{
  color: #333;
}
.channel-card .channel-meta h5 a:hover{
  color: #ff153c;
}
.channel-card .channel-info p{
  margin: 0;
}
.channel-card .ellipses-dropdown{
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}

/* Style 2 */
.channel-card.channel-card-profile{
  text-align: left;
}
.channel-card.channel-card-profile .channel-info h6{
  margin-bottom: 5px;
}
.channel-card.channel-card-profile .channel-meta h5{
  margin-bottom: 15px;
}
.channel-card.channel-card-profile .channel-meta-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.channel-card.channel-card-profile .channel-meta-item:last-child{
  margin-bottom: 0;
}
.channel-card.channel-card-profile .channel-meta-item span:first-child{
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
}

/* Style 3 */
.channel-card.channel-list{
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.channel-card.channel-list:last-child{
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}
.channel-card.channel-list img{
  width: 35px;
}
.channel-card.channel-list .media{
  align-items: center;
}

/* 6.3. Categories */
.category-item{
  display: block;
  margin-bottom: 30px;
}
.swiper-slide .category-item{
  margin-bottom: 0;
}
.category-item .category-thumb{
  position: relative;
  z-index: 1;
}
.category-item .category-thumb,
.category-item .category-thumb img{
  border-radius: 8px 8px 0 0;
}
.category-item .category-thumb::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0;
  background-color: rgba(0,0,0,.4);
  transition: .3s;
}
.category-item .category-thumb:hover::before{
  background-color: rgba(0,0,0,.6);
}
.category-item .category-thumb span{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 700;
}
.category-item .category-info{
  background-color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 0 0 8px 8px;
  border-bottom: 2px solid #5a5a5a;
}
.category-item .category-info h6{
  margin: 0 0 5px;
}
.category-item .category-info p{
  margin-bottom: 0;
}
/*======================
7. Misc
========================*/
.ellipses-dropdown > a{
  width: 30px;
  height: 30px;
  transition: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #333;
  font-size: 12px;
}
.ellipses-dropdown > a:hover,
.ellipses-dropdown > a:focus{
  background-color: #f2f2f2;
}

.dark-mode-toggle{
  cursor: pointer;
}
.dark-mode-toggle .custom-control{
  margin-left: auto;
}
.dark-mode-toggle .custom-switch .custom-control-label::before{
  left: -1.5rem;
}
.dark-mode-toggle .custom-switch .custom-control-label::after{
  left: calc(-1.5rem + 2px);
}
.pulse-video{
  position: relative;
  z-index: 1;
}
.pulse-video::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  background-color: #ff2929;
  border-radius: 50%;
  z-index: -1;
  opacity: .4;
  animation-name: pulse;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  animation-fill-mode: both;
  transform: scale(0);
}
.new-notification{
  position: relative;
}
.new-notification::before{
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: #6c7eff;
  border-radius: 50%;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after{
  color: #333;
  font-size: 14px;
  font-weight: 700;
}
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after{
  content: "\f053";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.swiper-button-next,
.swiper-button-prev{
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background-color: #fff;
  transition: .3s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #dedede;
}

.media img{
  margin-right: 15px;
  border-radius: 50%;
}
.media-body{
  position: relative;
}
.media-body h6{
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  text-align:center;
}
.media-body h5{
  margin-bottom: 10px;
}
.media-body span{
  display: block;
  font-size: 13px;
  line-height: 20px;
  color: #545454;
}
.media-body h6 a{
  font-size: 15px;
  color: #333;
}
.media-body h5 a{
  font-size: 18px;
}
.media-body a{
  display: block;
  font-size: 13px;
  line-height: 24px;
  color: #545454;
}
.media-body a:hover{
  color: #ff153c;
}

/* pagination */
.pagination{
  margin-top: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.pagination .page-item{
  margin: 0;
}

.pagination .page-item:last-child .page-link,
.pagination .page-item:first-child .page-link,
.pagination .page-item .page-link{
  border-radius: 8px;
}

.pagination .page-link{
  color: #1D2228;
  border: 0;
  background-color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 20px;
  margin-left: 10px;
}
.pagination .page-item.active .page-link{
  background-color: #ff153c;
}
.pagination .page-item:not(.active) .page-link:hover,
.pagination .page-item:not(.active) .page-link:focus{
  color: #ff153c;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.video_pagination{
    text-align: center;
    margin-top: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
	display: flex;
    flex-wrap: wrap;
}

.video_pagination span{
    color: #fff;
    text-decoration: none;
    margin: 5px;
    cursor: pointer;
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 15px 20px;
	font-size: 14px;
    font-weight: 600;
}

.video_pagination span:hover{
	color:#ff153c;
}
.item_category{
    background: #393939;
    padding: 5px;
}
/* Accordion */
.accordion .card {
  margin-bottom: 0;
}
.accordion .card .card-header {
  position: relative;
  background-color: #fff;
  border-bottom: 0;
  padding: .75rem 1.25rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: none;
  font-weight: 700;
  color: #1D2228;
}

.accordion .card-header[aria-expanded="true"] {
  background-color: #f8f9fa;
  color: #1D2228;
}

.accordion .card-header::after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1.25rem;
  width: 10px;
  height: 2px;
  background-color: #848486;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

.accordion .card-header::before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1.25rem;
  width: 10px;
  height: 2px;
  background-color: #848486;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.accordion .card-header[aria-expanded="true"]::before {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  opacity: 0;
}

.accordion .card-header[aria-expanded="true"]::after, .accordion .card-header[aria-expanded="true"]::before {
  background-color: #1D2228;
}

.accordion .card-header i {
  position: relative;
  top: 0;
  left: 0;
  margin-right: 10px;
  font-size: 20px;
}

.accordion .card-header[aria-expanded="true"] i {
  color: #ff153c;
}

.accordion .card {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.accordion .card .card-body{
  border-top: 0;
}
.accordion.with-gap .card-header {
  border-radius: 3px 3px;
}

.accordion.with-gap .card {
  margin-bottom: 20px;
}
.accordion.with-gap .card:first-of-type, .accordion.with-gap .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Rating */
.vl-rating-wrapper{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.vl-rating-wrapper > span{
  margin-left: 10px;
  color: #848486;
  font-size: 13px;
}
.vl-rating{
  margin-bottom: 5px;
}
.vl-rating i{
  margin-right: 5px;
  font-size: 12px;
  color: #848486;
}
.vl-rating i.active{
  color: #ffa80a;
}

/* filter */
.page-subheader-controls.filter{
  margin-bottom: 30px;
}
.page-subheader-controls.filter p{
  margin: 0;
  font-weight: 600;
}
.page-subheader-controls.filter .toggle-view{
  display: flex;
  align-items: center;
}
.page-subheader-controls.filter .toggle-view span{
  cursor: pointer;
}
.page-subheader-controls.filter .dropdown > a,
.page-subheader-controls.filter .toggle-view > span{
  display: block;
  padding: 5px 12px;
  margin: 10px 0;
  color: #333;
  font-weight: 600;
  border-radius: 8px;
  text-transform: uppercase;
}
.page-subheader-controls.filter .dropdown > a:hover,
.page-subheader-controls.filter .dropdown > a:focus,
.page-subheader-controls.filter .toggle-view > span:hover,
.page-subheader-controls.filter .toggle-view > span:focus{
  background-color: #f3f3f3;
}
.page-subheader-controls.filter .dropdown > a i{
  margin-right: 5px;
}

/* Social Media */
.social-media{
  display: flex;
  align-items: center;
  margin: 0;
}
.social-media li{
  margin: 0;
}
.social-media li a{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 10px;
  background-color: #fff;
  transition: .3s;
}
.social-media li a:hover{
  background-color: #ff153c;
  color: #fff;
}
.iframe-wrapper iframe{
  border-radius: 8px;
  width: 100%;
  height: 100%;
}
.embed-responsive-16by9{
  background-color: #c5c5c5;
  border-radius: 8px;
  width: 75%;
  margin: 0 auto;
}
.embed-responsive-16by9 iframe{
  border-radius: 8px;
}

.video_box_div{
	background:#1a1a1a;
    padding: 15px 30px;
    margin-bottom: 20px;
}

/*======================
8. Pages
========================*/

/* 8.0. Channel Page */
.about-channel{
  display: flex;
  align-items: flex-start;
}
.about-channel .iframe-wrapper{
  flex: 1;
  height: 400px;
}
.about-channel .about-channel-inner{
  margin-left: 30px;
  flex: 1;
}
.about-channel-inner .video-meta{
  margin: 20px 0;
}
.about-channel-inner .video-meta span{
  font-weight: 600;
}
.about-channel-wrapper{
  border-top: 0;
}

/* 8.1. Single Video */
.iframe-wrapper{
  height: 500px;
}

.single-video-wrapper{
  display: flex;
}
.single-video-content{
  flex: 1;
  margin: 30px auto;
}

.single-video-sidebar{
  width: 100%;
  margin-bottom: 25px;
}

.video-title{
  font-size: 26px;
  line-height: 32px;
  margin: 10px 0;
}

.single-video-meta{
  margin-bottom: 5px;
  padding-bottom: 5px;
}
.single-video-author img{
  width: 50px;
}
.single-video-description{
  margin-bottom: 5px;
  padding-bottom: 5px;
}

.show-more-content{
  display: none;
}
.show-more-content.active{
  display: block;
}
.show-more-trigger{
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: #6c757d;
}

.single-video-controls{
  margin-bottom: 20px;
}
.single-video-controls-inner a{
	background-color: #454545 !important;
}
.single-video-controls-inner i{
  margin: 0;
}
.single-video-controls{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.single-video-controls-inner a:last-child{
  margin-left: 20px;
}

.single-video-category-item .media{
  align-items: center;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #e6e6e6;
  border-radius: 8px;
}
.single-video-category-item .media > i{
  background-color: #fff;
  border-radius: 50%;
  margin-right: 15px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.single-video-category-item .media span{
  font-weight: 600;
  font-size: 14px;
}
.single-video-category-item .media span i{
  font-size: 12px;
  margin-left: 5px;
  transition: .3s;
}
.single-video-category-item .media:hover span i{
  transform: translateX(5px);
}

.single-video-sidebar .video.video-list .media h6 a{
  font-size: 14px;
}
.single-video-sidebar .video.video-list:last-child{
  margin-bottom: 0;
}
.single-video-stats{
  display: flex;
  align-items: center;
}
.single-video-stat-item{
  margin-right: 20px;
  font-size: 15px;
}
.single-video-stat-item i{
  margin-right: 5px;
}

.comments-list {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.comments-list ul{
  margin: 0;
}
.comments-list h4 {
  margin-bottom: 30px;
}
.comments-list .comment-item{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.comments-list .comment-item .comment-body{
  flex: 1;
}
.comments-list .comment-item img {
  width: 65px;
  margin-right: 20px;
  border-radius: 8px;
}
.comments-list .comment-item h6{
  margin-bottom: 0;
}
.comments-list .comment-item span {
  display: inline-block;
  margin-bottom: 15px;
  color: #848486;
  font-size: 13px;
  line-height: 21px;
}
.comments-list .comment-item p {
  margin-bottom: 15px;
 }
.comments-list li {
  margin-bottom: 30px;
 }
.comments-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.comment-form{
  margin-bottom: 30px;
}
.comment-form h4 {
  margin-bottom: 30px;
}

/* 8.2. My Channel - Playlists */
.card.playlist-card{
  height: 100%;
  margin: 0;
}
.card.playlist-card .card-header{
  border: 0;
  padding: 0;
}
.card.playlist-card .card-body{
  border-top: 0;
  padding-top: 40px;
  text-align: center;
}
.card.playlist-card .playlist-thumb{
  position: relative;
  height: 120px;
  background-size: cover;
  background-position: center;
  z-index: 1;
  border-radius: 8px 8px 0 0;
}
.card.playlist-card .playlist-thumb::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.4);
  border-radius: 8px 8px 0 0;
}

.card.playlist-card .playlist-thumb a{
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
}
.card.playlist-card .playlist-thumb a img{
  border-radius: 50%;
}
.card.playlist-card .playlist-meta h5{
  margin: 0 0 5px;
}
.card.playlist-card .playlist-meta{
  margin-bottom: 15px;
}

/* 8.3. My Channel - About */
.user-meta  h3{
  margin-bottom: 10px;
}
.user-meta > span{
  margin-right: 10px;
  font-weight: 600;
  color: #545454;
}
.user-meta .user-description{
  margin-top: 20px;
}
.user-stats{
  margin-bottom: 20px;
}
.user-stat-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.user-stat-item:last-child{
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

/* 8.4. My Channel - Watch Later */
.page-options{
  position: relative;
}
.page-options h5{
  margin-bottom: 20px;
}
.page-options .ellipses-dropdown{
  position: absolute;
  top: 0;
  right: 0;
}
.page-options h3{
  margin-bottom: 15px;
}
.page-options .page-options-meta{
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.page-options .page-options-meta span{
  margin-right: 10px;
  font-weight: 600;
  color: #545454;
}

/* 8.5. My Channel - History */

.history-item{
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.history-item:last-child{
  margin: 0;
  padding: 0;
  border: 0;
}

/* 8.6. My Channel - Account Management */
.btn-file-upload-wrapper{
  display: block;
  width: 150px;
  margin: 0 0 20px;
}
.btn-file-upload-wrapper img{
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.user-img-upload{
  position: relative;
}
.user-img-upload input{
  opacity: 0;
  visibility: hidden;
  display: none;
}
.user-img-upload .btn-file-upload{
  position: absolute;
  right: 35px;
  transform: translateY(-50%);
  top: 50%;
}
.btn-file-upload.btn-custom{
  padding: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

/* 8.7. My Channel - Settings */
.settings-card .col-form-label{
  padding-top: 0;
}

.setting-item{
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.setting-item .setting-item-description{
  line-height: 23px;
  margin-left: 20px;
}
.setting-item h6{
  font-size: 14px;
  font-weight: 600;
  line-height: 23px;
  margin-bottom: 0;
}
.setting-item span{
  font-size: 13px;
}
.settings-card .form-group + .form-group{
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,.1);
}
.settings-card .form-group .setting-item:last-child{
  margin-bottom: 0;
}

/* 8.8. About Us */
.intro-video-description {
  max-width: 700px;
  margin: 50px auto 0;
  text-align: center;
}
.intro-video-description p{
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 40px;
}

/* 8.9. Legal */
.legal-section{
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.legal-section:last-child{
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.legal-section p:last-child{
  margin-bottom: 0;
}

/* 8.10. Help Center */
.help-card .media i{
  width: 40px;
  height: 40px;
  font-size: 34px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff153c;
}
.help-card .media h6,
.help-card .media ul{
  margin-bottom: 30px;
}
.help-card .media .media-body a{
  display: inline-block;
}

/* 8.11. Membership */
.pricings{
  margin: 0;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 12px -4px rgba(0,0,0,.1);
}
.pricing-item{
  padding: 0;
  border-right: 1px solid rgba(0,0,0,.1);
  text-align: center;
}
.pricings .pricing-item:last-child{
  border-right: 0;
}
.pricing-item .pricing-icon{
  margin-bottom: 50px;
}
.pricing-item .pricing-icon i{
  font-size: 70px;
  line-height: 1;
  color: #ff153c;
}
.pricing-item .pricing-meta{
  margin-bottom: 30px;
}
.pricing-item .pricing-meta h6{
  color: #6c757d;
}
.pricing-item .pricing-content ul{
  margin: 0;
}
.pricing-item .pricing-content{
  margin-bottom: 50px;
}

/* 8.12. Login & Register */
.auth-wrapper{
  display: flex;
  box-shadow: 0 3px 12px -4px rgba(0,0,0,.1);
}
.auth-description{
  width: 600px;
  padding: 30px;
  background-color: #ff153c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 8px 0 0 8px;
}
.auth-description-inner{
  text-align: center;
  max-width: 400px;
}
.auth-description-inner h2{
  margin: 0;
  color: #fff;
}
.auth-description-inner p{
  margin: 30px 0;
  color: #fff;
}
.auth-description-inner .btn-custom{
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.auth-description-inner .btn-custom:hover{
  background-color: #fff;
  color: #333;
}
.auth-form{
  flex: 1;
  background-color: #fff;
  border-radius: 0 8px 8px 0;
  padding: 60px;
  text-align: center;
}
.auth-form h2{
  margin-bottom: 50px;
}
.auth-form form{
  max-width: 400px;
  margin: 0 auto;
}
.auth-form .btn-custom{
  margin-top: 20px;
}
.auth-form a{
  display: block;
  color: #333;
  text-decoration: underline;
}
.auth-seperator{
  margin: 30px 0;
  text-align: center;
}
.auth-seperator span{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #848486;
  font-size: 13px;
  font-weight: 500;
}
.auth-seperator span::before{
  content: '';
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: rgba(0,0,0,.1);
  height: 1px;
  margin-right: 20px;
}
.auth-seperator span::after{
  content: '';
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: rgba(0,0,0,.1);
  height: 1px;
  margin-left: 20px;
}
.vl-social-login{
  cursor: pointer;
  display: block;
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 24px;
  border: 0;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 3px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.vl-social-login i{
  margin-right: 5px;
}

#mypage_link li a {
    width: 85px;
}
/*======================
9. Repsonsive
========================*/

@media(max-width: 1300px){
  .about-channel{
    display: block;
  }
  .about-channel .about-channel-inner{
    margin: 30px 0 0;
  }

  .single-video-wrapper{
    display: block;
  }
  .single-video-content{
    margin: 30px auto;
  }

  .single-video-sidebar{
    width: 100%;
  }
}

@media(max-width: 1200px){
	
  .navbar-search form{
	width: 175px;
  }
  
  .title-search form{
    width: auto;
  }

  .pricings .pricing-item:last-child{
    margin-top: 30px;
  }
  .pricing-item:nth-child(2){
    border: 0;
  }

  .auth-description{
    width: 450px;
  }

}
@media (max-width: 1690px) {
	.main-content{
		padding-left: 0;
		padding-top: 110px !important;
	}
	.navbar-menu{
    position: fixed;
    top: 69px;
    background-color: #333;
    width: 100%;
    left: 0;
    margin: 0;
    z-index: 990;
  }
  .navbar-menu > ul{
    justify-content: space-between;
    padding: 0 10px;
    line-height: 40px;
  }
  .navbar-menu > ul > li > a{
    padding: 0 5px;
    text-align: center;
    color: #fff;
    font-size: .9rem;
  }
	.navbar-search{
		margin: 0 auto;
		width: 100%;
		display: flex;
		justify-content: flex-end;
	}
	
	.navbar-search form{
		width: 175px;
		margin-right:5px;
	  }
}
.pc_menu:hover .dropdown-menu {
	display:block
}
@media (max-width: 991px) {

  .main-content{
    padding-left: 0;
    padding-top: 110px;
  }
  .main-content-inner{
    padding: 0px 15px 0;
  }
  .aside-toggler{
    margin-right: 15px;
  }
  .navbar-menu{
    position: fixed;
    top: 69px;
    background-color: #333;
    width: 100%;
    left: 0;
    margin: 0;
    z-index: 990;
  }
  .navbar-menu > ul{
    justify-content: space-between;
    padding: 0 10px;
    line-height: 40px;
  }
  .navbar-menu > ul > li > a{
    padding: 0 5px;
    text-align: center;
    color: #fff;
    font-size: .9rem;
  }
  .icon_category {
	font-size: .7rem;
  }
  
  .actor_list .icon_category {
	font-size: .7rem;
  }
  .nav-wrapper{
    padding: 0 15px;
  }
  .navbar-controls > ul > li > a{
    padding: 5px;
    margin: 5px 0;
    width: 40px;
    height: 40px;
  }

  .navbar-search{
    margin: 0 auto;
	width: 100%;
	display: flex;
	justify-content: flex-end;
  }
  
  .title-search{
    display: block;
  }

  .sidebar{
    top: 0;
    left: -250px;
  }
  .sidebar-overlay{
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
  }
  .sidebar-wrapper.open .sidebar-overlay{
    opacity: 1;
    visibility: visible;
  }
  .sidebar-wrapper.open .sidebar{
    left: 0;
  }
  .sidebar-wrapper.open + .main-content{
    padding-left: 0;
  }
  .footer{
    margin: 30px 0 0;
  }

  .page-subheader-controls-inner{
    padding: 0 15px;
  }

  .media-body h6,
  .media-body h6 a,
  .video.video-list .media h6 a{
    font-size: 14px;
  }

  .card.playlist-card{
    height: auto;
  }
  .user-meta,
  .page-options{
    margin-bottom: 30px;
  }
  .section-padding{
    padding: 30px 0;
  }
  .section-title-wrap-lg{
    margin-bottom: 60px;
  }
  .section-title-wrap-lg h1{
    font-size: 50px;
    line-height: 58px;
  }
  .intro-video-description{
    margin: 30px auto 0;
  }
  .intro-video-description p{
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 30px;
  }

  .auth-wrapper{
    flex-direction: column;
  }
  .auth-form{
    border-radius: 0 0 8px 8px;
  }
  .auth-description{
    width: 100%;
    border-radius: 8px 8px 0 0;
  }

}

@media (max-width: 768px){

  h1 {
    font-size: 30px;
    line-height: 38px;
  }
  h2 {
    font-size: 28px;
    line-height: 36px;
  }
  h3 {
    font-size: 24px;
    line-height: 32px;
  }
  h4 {
    font-size: 20px;
    line-height: 28px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 16px;
  }
  .section-title-wrap h3{
    font-size: 16px;
  }
  .banner-1 .banner-item{
    width: 100%;
    height: auto;
  }
  .banner-1 .banner-item .banner-item-inner{
    height: auto;
    bottom: 0;
    width: 100%;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    position: relative;
  }
  .banner-1 .banner-item .banner-thumbnail{
    width: 100%;
    position: relative;
    height: 200px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-right-radius: 8px;
  }
  .section-mobile{
    margin-top: 0;
    padding-top: 0;
  }
  .footer{
    text-align: center;
  }
  .footer .copyright{
    margin-bottom: 20px;
  }
  .footer .social-media{
    justify-content: center;
  }
  .page-title a{
    display: none;
  }
  .page-subheader-controls{
    border-bottom: 0;
  }
  .page-subheader-controls-inner{
    padding: 15px 15px 0;
  }
  .page-subheader-controls-inner{
    flex-wrap: wrap;
    flex-direction: column-reverse;
    border-bottom: 1px solid rgba(0,0,0,.1);
  }
  .page-subheader-controls .channel-thumbnail{
    max-width: 70px;
    margin: -77px 0 0;
    position: absolute;
    top: 0;
    left: 15px;
  }
  .page-subheader-right{
    width: 100%;
    justify-content: space-between;
  }
  .page-subheader-nav{
    margin: 0;
    width: 100%;
    border-top: 1px solid rgba(0,0,0,.1);
    margin-top: 20px;
  }
  .page-subheader-right .social-media li a{
    margin: 0 10px 0 0;
  }
  .page-subheader-nav ul li a{
    padding: 20px 10px;
  }
  .about-channel-wrapper{
    margin-top: 0;
    padding-top: 0;
  }

  .page-subheader-controls.filter .page-subheader-controls-inner{
    padding: 0 15px;
    flex-direction: row;
  }

  .iframe-wrapper{
    height: 300px;
  }

  .comments-list .comment-item img{
    width: 45px;
  }
  .comments-list .comment-item span{
    position: relative;
  }
  .comments-list .comment-item h5 {
    margin-bottom: 0;
  }
  .pricings .pricing-item{
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,.1);
  }
  .pricings .pricing-item:last-child{
    padding: 0;
    margin: 0;
    border: 0;
  }

}

@media (max-width: 575px){

  .nav-wrapper .dropdown-menu-lg.dropdown-menu,
  .nav-wrapper .dropdown-menu{
    min-width: 0;
    width: calc(100vw - 30px);
  }

  .section-title-wrap{
    display: block;
  }
  .section-controls{
    margin-top: 15px;
  }

  .page-subheader-inner,
  .about-channel .iframe-wrapper,
  .iframe-wrapper{
    height: 180px;
  }

  .pagination .page-link{
    padding: 10px;
  }

  /*.single-video-controls{
    display: block;
  }*/
  .single-video-controls-inner{
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
  .single-video-controls-inner a{
    margin-right: 5px;
  }
  .single-video-controls-inner a:last-child{
    margin-left: auto;
    margin-right: 0;
  }

  .help-card .media {
    display: block;
  }
  .help-card .media i{
    margin-bottom: 15px;
  }

  .auth-form{
    padding: 30px;
  }

}

@media (max-width: 420px){

  .video .video-thumbnail{
    height: 150px;
  }
  .video.video-list .video-thumbnail{
    width: 120px;
    height: 80px;
  }

}

/*======================
10. Dark Mode
========================*/
.dark-mode h1, .dark-mode h2, .dark-mode h3, .dark-mode h4, .dark-mode h5, .dark-mode h6,
.dark-mode .media-body h6 a, .dark-mode .channel-card .channel-meta h5 a,
.dark-mode p, body.dark-mode, .dark-mode .banner-1 .banner-item .media h6 a,
.dark-mode .banner-1 .banner-item .video-categories a,
.dark-mode .swiper-button-next::after, .dark-mode .swiper-button-prev::after,
.dark-mode .btn-custom.tertiary, .dark-mode .dropdown-menu .dropdown-header,
.dark-mode .pagination .page-link, .dark-mode .accordion .card-header[aria-expanded="true"],
.dark-mode .accordion .card .card-header, .dark-mode .btn-custom.light,
.dark-mode .btn-custom.secondary:hover, .dark-mode label,
.dark-mode .ellipses-dropdown > a{
  color: #fff;
}
.dark-mode .media-body span, .dark-mode .page-options .page-options-meta span, .dark-mode .user-meta > span,
.dark-mode .media-body a, .dark-mode .media-body span, .dark-mode .aside-title, .dark-mode .section-controls a:hover,
.dark-mode .comments-list .comment-item span{
  color: #d8d8d8;
}
.dark-mode .pricing-item .pricing-meta h6,
.dark-mode .show-more-trigger,
.dark-mode .page-subheader-nav > ul > li > a,
.dark-mode .sidebar .aside-menu li a i,
.dark-mode .sidebar .aside-menu li a,
.dark-mode .navbar-controls ul li a,
.dark-mode .navbar-menu ul li a,
.dark-mode .dropdown-menu .dropdown-item,
.dark-mode .section-controls a,
.dark-mode .page-subheader-controls.filter .dropdown > a,
.dark-mode .page-subheader-controls.filter .toggle-view > span{
  color: #fff;
}
.dark-mode .aside-toggler span,
.dark-mode .accordion .card-header[aria-expanded="true"]::after, .dark-mode .accordion .card-header[aria-expanded="true"]::before{
  background-color: #fff;
}
.dark-mode,
.dark-mode .banner-1 .banner-item .video-categories a,
.dark-mode .social-media li a{
  background-color: #000000;
}
.dark-mode .nav-wrapper,
.dark-mode .sidebar,
.dark-mode .card,
.dark-mode .banner-1 .banner-item .banner-item-inner,
.dark-mode .swiper-button-next, .dark-mode .swiper-button-prev,
.dark-mode .btn-custom.tertiary,
.dark-mode .category-item .category-info,
.dark-mode .dropdown-menu,
.dark-mode .page-subheader-controls,
.dark-mode .pagination .page-link,
.dark-mode .pricings,
.dark-mode .accordion .card .card-header,
.dark-mode .auth-form,
.dark-mode .btn-custom.light,
.dark-mode .single-video-category-item .media,
.dark-mode .ellipses-dropdown > a:hover, .dark-mode .ellipses-dropdown > a:focus{
  background-color: #1a1a1a;
}
.dark-mode .accordion .card-header[aria-expanded="true"]{
  background-color: #252525;
}
.dark-mode .navbar-search form .form-control,
.dark-mode .title-search form .form-control,
.dark-mode .form-control-light,
.dark-mode .form-control{
  background-color: #414141;
  border-color: #414141;
  color: #fff;
}
.dark-mode .navbar-search form .form-control:focus,
.dark-mode .title-search form .form-control:focus,
.dark-mode .form-control-light:focus,
.dark-mode .form-control:focus{
  background-color: #3a3a3a;
  border-color: #3a3a3a;
}
.dark-mode .navbar-controls ul li a:hover,
.dark-mode .title-controls ul li a:hover,
.dark-mode .recommended-channels li:hover,
.dark-mode .sidebar .aside-menu li a:hover,
.dark-mode .dropdown-menu .dropdown-item.active,
.dark-mode .dropdown-menu .dropdown-item:active,
.dark-mode .dropdown-menu .dropdown-item:hover,
.dark-mode .custom-control-label::before,
.dark-mode .page-subheader-controls.filter .dropdown > a:hover,
.dark-mode .page-subheader-controls.filter .toggle-view > span:hover,
.dark-mode .page-subheader-controls.filter .dropdown > a:focus,
.dark-mode .page-subheader-controls.filter .toggle-view > span:focus,
.dark-mode .single-video-category-item .media > i{
  background-color: #414141;
}
.dark-mode .dropdown-divider{
  border-top: 1px solid #414141;
}
.dark-mode .dropdown-menu .dropdown-header,
.dark-mode .card-body{
  border-top: 2px solid #fff;
}
.dark-mode .navbar-menu > ul > li > a:hover, .navbar-menu > ul > li > a:focus,
.dark-mode .navbar-menu ul li a.active,
.dark-mode .sidebar .aside-menu li a:hover,
.dark-mode .sidebar .aside-menu li a:hover i,
.dark-mode .media-body a:hover,
.dark-mode .channel-card .channel-meta h5 a:hover,
.dark-mode .banner-1 .banner-item .media h6 a:hover,
.dark-mode .btn-custom.tertiary:hover,
.dark-mode .page-subheader-nav > ul > li > a:hover,
.dark-mode .page-subheader-nav ul li a.active,
.dark-mode .btn-custom.secondary{
  color: #cc1030;
}
.dark-mode .social-media li a:hover{
  background-color: #ff153c;
}
.icon_category{
	background: #000 0 0 no-repeat padding-box;
    border-radius: 3px;
    color: #fff;
    font-size: .8rem;
    opacity: .8;
    padding: 0 5px;
    bottom: 10px;
}

.icon_category{
	right:20px;
	position:absolute;
	z-index:100;
}
.icon_new{
	left:10px;
	position:absolute;
	z-index:100;
}
.icon_new{
	bottom:10px
}
.w20px {
    width: 20px;
}

.video_list>li {
	flex:0 0 25%;
	max-width:25%
}
.font-size-13{
	font-size:13px;
}

.navbar-menu::-webkit-scrollbar {
	width:5px;
	height:1px;
}
.navbar-menu::-webkit-scrollbar-thumb {
    background-color: #313131;
}
.navbar-menu::-webkit-scrollbar-track {
    background-color: #313131;
}

.scroll {
	/*white-space: nowrap;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	-moz-overflow-scrolling: touch;
	-o-overflow-scrolling: touch;
	overflow-scrolling: touch;*/
}
.banner_list {
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-start
}
.banner_list>.banner_item {
	max-width:50%
}
.banner_list>.banner_item,.swiper-wrapper>.banner_item {
	padding-left:1px;
	padding-right:1px;
	padding-top:1px;
	text-align:center
}
.long{
	margin-left:0;
	margin-right:0;
}
.long .banner_list>.banner_item{
	max-width:100%;
}
.banner_list {
	flex-direction:row
}
.banner_list>.banner_item {
	max-width:50%;
	width:33.33%
}
.banner_list>.banner_size_100 {
	max-width:100%;
	width:100%
}
.banner_list>.banner_size_50 {
	max-width:100%;
	width:49%;
}
.banner_list>.banner_size_25 {
	max-width:25%;
	width:25%
}
.banner_list>.banner_size_20 {
	max-width:20%;
	width:20%
}
.banner_img_size_100{
	width:100%;
}
.banner_img_size_50{
	width:765px;
}
.prev_next span{
	font-size:15px;
}
#recommend_video ul{
	display:flex;
    flex-wrap: wrap;
}
#recommend_video .centered img{
	max-height: 180px;
    width: 100%;
    object-fit: fill;
}

.actor_list{
	text-align:center;
}

.actor_list li {
	flex:0 0 25%;
	max-width:25%;
    padding-left: 10px;
    padding-right: 10px;
	margin-top: 15px;
}

.actor_list .lists {
	padding-top: 125%;
	position: relative;
}

.actor_list li .centered{
	position: absolute;
	top: 0;
	left: 0;
	width: 97%;
	height: 100%;
}

.actor_list .centered .user_img {
	width: 100%;
	height: 100%;
    border-radius: 8px;
	/*object-fit: cover;*/
	transition: transform .2s;
}

.actor_list .centered .user_img:hover{
	transform: scale(1.05);
    transition-property: all;
    transition-duration: 0.3s;
}

.actor_list .icon_category{
	background: #000 0 0 no-repeat padding-box;
    border-radius: 3px;
    color: #fff;
    font-size: .9rem;
    opacity: .6;
    padding: 0 10px 0 10px;
    right: 10px;
    left: unset;
    position: absolute;
    z-index: 100;
}

.actor_list .list_rank, .actor_list .list_new{
	left:10px;
	position:absolute;
	z-index:100;
}
.actor_list .list_rank{
	top: 40px;
}
.actor_list .list_rank img{
	width:120px;
	height:100%;
}

.actor_list .list_rank span{
	font-size: 6.5em;
    color: #ff153c;
    font-family: "Fugaz One", sans-serif;
    font-weight: 400;
    font-style: normal;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;
}

.video_week .list_rank{
	left:10px;
	position:absolute;
	z-index:100;
}
.video_week .list_rank{
	top: 40px;
}
.video_week .list_rank img{
	width:120px;
	height:100%;
}

.video_week .list_rank span{
	font-size: 6.5em;
    color: #ff153c;
    font-family: "Fugaz One", sans-serif;
    font-weight: 400;
    font-style: normal;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;
}

.video_week .icon_category{
	right:10px;
    left: unset;
}

.actor_list .list_new{
    bottom: 10px;
}

.actor_list .actor_title{
    width: 100%;
    text-align: left;
}

.actor_list .actor_title:hover{
	color:#ff9595;
}

.actor_list .actor_title .middle_name{
	font-size: .8em;
}
.actor_list .actor_title .names{
    font-size: 15px;
	color:#fff;
	text-align:center;
    margin: 10px auto;
	font-weight: bold;
}
.actor_list .actor_title .names:hover{
	color:#ff153c;
}

.actor_list .actor_title .btns{
	width:100%;
	/*
    height: 70%;
    display: flex;
    align-items: flex-end;
	*/
}

.actor_list .btns .btn{
	padding: 10px 10px;
    background-color: #f7f4ee;
    font-weight: 600;
    margin-right: 5px;
    border-radius: 8px;
    color: #1D2228;
    font-size: .8em;
    width: auto;
	height: 40px;
    text-align: center;
	margin-bottom:5px;
	transition: transform .2s;
}
.actor_list .btns .btn:hover{
	transform: scale(1.1);
}
.single-actor-wrapper{
  display: flex;
}

.search_txt{
	color: #ff153c;
    border-radius: 5px;
}
.single-actor-content{
  width:50%;
  margin-right: 30px;
}
.single-actor-content img{
	width:100%;
}

.single-actor-content2{
  width:100%;
  margin-right: 30px;
}
.single-actor-content2 img{
	width:100%;
}

.single-actor-sidebar{
  width: 100%;
}
.actor-title{
	font-size: 1.2em;
	margin: 10px 0;
	background: #1a1a1a;
}
.actor-title span{
	margin: 0 10px;
}

.single-actor-description{
	margin-bottom: 5px;
	padding: 10px;
	background: #1a1a1a;
}

.single-actor-description pre{
  color:#fff;
}

.single-actor-pic-content{
    width:100%;
}
.single-actor-pic-content ul{
	width: 100%;
}
.single-actor-pic-content ul li{
	width: 32.7%;
	float: left;
    margin: 5px 3px 0;
}

.single-actor-pic-content ul li img{
    width: 100%;
	height:30em;
}

@keyframes blink {
 0% {color: red;}
 50% {color: yellow;}
}

.swiper-wrapper{
	transition-timing-function: linear;
}

/* for Chrome, Safari */
@-webkit-keyframes blink {
 0% {color: red;}
 50% {color: yellow;}
}
.blink_color{
	animation: blink 1s step-end infinite;
	-webkit-animation: blink 1s step-end infinite;
}
.actor_up_btn{
	display:none;
}

.actor_floating_btn{
	display:none;
}
.ad_banner,.common_list {
	position:relative;
	margin-bottom:20px;
}
.banner_controller {
	display:flex;
	height:0;
	position:absolute;
	top:40%;
	width:100%;
	z-index:2
}
.banner_controller .banner_btn_next,.banner_controller .banner_btn_prev {
	color:#fff;
	cursor:pointer;
	height:30px;
	margin-top:-17px;
	position:absolute;
	text-align:center;
	top:50%;
	width:30px
}
.banner_controller .banner_btn_next svg,.banner_controller .banner_btn_prev svg {
	width:15px
}
.banner_controller .banner_btn_prev {
	left:0
}
.banner_controller .banner_btn_next {
	right:0
}

.actor_roll_list .thumbnail {
	background-color:#101010;
	overflow:hidden;
}
@media (max-width: 420px) {
    .actor_roll_list .thumbnail {
		height: 150px;
	}
}
.height-100 {
    height: 100%;
}
.swiper_out_line {
    padding-left: 0;
    padding-right: 0;
}
.actor_roll_list .thumbnail .img_centered{
	padding-top: 142%;
	position:relative
}

.actor_roll_list .thumbnail .centered {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 8px;
}

.actor_roll_list .thumbnail .user_img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
	transition: .3s ease-in-out;
}

.actor_roll_list .thumbnail .user_img:hover{
	transform: scale(1.05);
    transition-property: all;
    transition-duration: 0.3s;
}

.actor_roll_list .list_rank, .actor_roll_list .list_new{
	left:10px;
	position:absolute;
	z-index:100;
}
.actor_roll_list .list_rank{
	top: 40px;
}
.actor_roll_list .list_rank img{
	width:120px;
	height:100%;
}

.actor_roll_list .list_rank span{
	font-size: 6.5em;
    color: #ff153c;
    font-family: "Fugaz One", sans-serif;
    font-weight: 400;
    font-style: normal;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;
}

.actor_roll_list .list_new{
    bottom: 10px;
}

.actor_roll_list .ellipsis_multiLine{
	-webkit-box-orient:vertical;
	display:block;
	display:-webkit-box;
	font-size:.9rem;
	line-height:1.5;
	overflow:hidden;
	text-overflow:ellipsis;
	word-break:break-all;
	-webkit-line-clamp:2 !important;
	height:2.5rem !important;
	color: #fff;
    text-align: center;
    font-weight: bold;
}
.actor_roll_list .video_title:hover{
    color: #ff153c;
}



.video_roll_list .thumbnail {
	background-color:#101010;
	overflow:hidden;
	position:relative
}
.video_roll_list .thumbnail .img_centered{
	padding-top: 65%;
	position:relative
}

.video_roll_list .thumbnail .centered {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 8px;
}



.video_roll_list .thumbnail .user_img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
	transition: .3s ease-in-out;
}

.video_roll_list .thumbnail .user_img:hover{
	transform: scale(1.05);
    transition-property: all;
    transition-duration: 0.3s;
}

.video_roll_list .list_rank, .video_roll_list .list_new{
	left:10px;
	position:absolute;
	z-index:100;
}

.video_roll_list .list_rank{
	top: 40px;
}

.video_roll_list .list_rank img{
	width:120px;
	height:100%;
}

.video_roll_list .list_rank span{
	font-size: 6.5em;
    color: #ff153c;
    font-family: "Fugaz One", sans-serif;
    font-weight: 400;
    font-style: normal;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;
}

.video_roll_list .list_new{
    bottom: 10px;
}

.video_roll_list .list_catregory{
    bottom: 10px;
	right:20px;
	position:absolute;
	z-index:100;
	background:#000 0 0 no-repeat padding-box;
	border-radius:3px;
	color:#fff;
	font-size:.9rem;
	opacity:.6;
	padding:0 10px 0 10px;
}

.video_roll_list .ellipsis_multiLine{
	-webkit-box-orient:vertical;
	display:block;
	display:-webkit-box;
	font-size:.9rem;
	line-height:1.5;
	overflow:hidden;
	text-overflow:ellipsis;
	word-break:break-all;
	-webkit-line-clamp:2 !important;
	height:2.5rem !important;
    color: #fff;
    text-align: center;
	font-weight: bold;
}
.video_roll_list .video_title:hover{
    color: #ff153c;
}

@media(min-width:992px) {
	.common_list .swiper {
		overflow:hidden
	}
}
@media(max-width:991px){
	.banner_controller{
		display:none !important;
	}
}
@media(max-width:992px) {
	#mypage_link {
        margin-left: 15px;
    }
	.embed-responsive-16by9{
	  width: 100%;
	}
	.single-actor-content{
	  width:100%;
	}
	
	.single-actor-content2{
	  width:100%;
	}
	.single-actor-wrapper{
	  display: block;
	}
	.single-actor-pic-content ul li {
		width: 100%;
		margin: 5px 5px 5px 0;
		float: left;
	}
	.actor_list li {
		flex:0 0 50%;
		max-width:50%;
		padding-left: 0px;
		padding-right: 5px;
	}
	
	.actor_roll_list .thumbnail .img_centered{
	    padding-top: 142%;
		position:relative
	}
	
	.actor_roll_list .thumbnail .centered {
	    position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border-radius: 8px;
	}
	
	.actor_roll_list .thumbnail .user_img{
	    width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.actor_roll_list .list_rank, .actor_roll_list .list_new{
		left:10px;
		position:absolute;
		z-index:100;
	}
	.actor_roll_list .list_rank{
		top: 15px;
	}
	.actor_roll_list .list_rank img{
		width:40px;
		height:100%;
	}
	
	.actor_roll_list .list_rank span{
		font-size:2.5em;
		color:#fff;
		font-family: "Fugaz One", sans-serif;
		font-weight: 400;
		font-style: normal;
	    -webkit-text-stroke-width: 2px;
		-webkit-text-stroke-color: #ff153c;
	}
	
	.video_roll_list .thumbnail .img_centered{
	    padding-top: 65%;
		position:relative
	}
	
	.video_roll_list .thumbnail .centered {
	    position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border-radius: 8px;
	}
	
	.video_roll_list .thumbnail .user_img{
	    width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.video_roll_list .list_rank, .video_roll_list .list_new{
		left:10px;
		position:absolute;
		z-index:100;
	}
	.video_roll_list .list_rank{
		top: 15px;
	}
	.video_roll_list .list_rank img{
		width:40px;
		height:100%;
	}
	
	.video_roll_list .list_rank span{
		font-size:2.5em;
		color:#fff;
		font-family: "Fugaz One", sans-serif;
		font-weight: 400;
		font-style: normal;
		-webkit-text-stroke-width: 2px;
		-webkit-text-stroke-color: #ff153c;
	}

	.video_roll_list .list_new{
		bottom: 10px;
	}
	
	.video_week .list_rank{
		top: 15px;
	}
	.video_week .list_rank img{
		width:40px;
		height:100%;
	}
	.video_week .list_rank span{
		font-size:2.5em;
		color:#fff;
		font-family: "Fugaz One", sans-serif;
		font-weight: 400;
		font-style: normal;
		-webkit-text-stroke-width: 2px;
		-webkit-text-stroke-color: #ff153c;
	}

	.video_week .icon_category{
		right:10px;
		left: unset;
	}

	.video_roll_list .list_catregory{
		bottom: 10px;
		right:20px;
		position:absolute;
		z-index:100;
		background:#000 0 0 no-repeat padding-box;
		border-radius:3px;
		color:#fff;
		font-size:.9rem;
		opacity:.6;
		padding:0 10px 0 10px;
	}
	
	.actor_up_btn{
		display: block;
		position: fixed;
        right: 10px;
        bottom: 10px;
		background: #fff;
        padding: 10px;
        border-radius: 25px;
	}
	
	.actor_up_btn img{
		width: 30px;
		height: 30px;
	}
	
	.actor_floating_btn{
		display: block;
		position: fixed;
        right: 10px;
        bottom: 65px;
		background: #fff;
        padding: 10px;
        border-radius: 25px;
	}
	
	.actor_floating_btn img{
		width: 30px;
		height: 30px;
	}
	
	.actor_list .actor_li_1{
		flex:0 0 100%;
		max-width:100%;
	}

	.actor_list .actor_li_2{
		flex:0 0 50%;
		max-width:50%;
	}

	.actor_list .actor_li_3{
		flex:0 0 33%;
		max-width:33%;
	}

	.actor_list .actor_li_4{
		flex:0 0 25%;
		max-width:25%;
	}
	.actor_list .lists {
		padding-top: 142%;
		position: relative;
	}
	
	.actor_list li .centered{
	    position: absolute;
		top: 0;
		left: 0;
		width: 97%;
		height: 100%;
	}
	
	.actor_list .centered .user_img {
	    width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform .2s;
	}
	.actor_list .actor_title{
		width:100%;
		text-align:left;
		padding-left: 5px;
		padding-right: 5px;
	}
	
	.actor_list .actor_title .names{
		margin-bottom:5px;
		font-size: 1.1em;
	}
	
	.actor_list .icon_category{
		background: #000 0 0 no-repeat padding-box;
		border-radius: 3px;
		color: #fff;
		font-size: .9rem;
		opacity: .6;
		padding: 0 10px 0 10px;
		right: 10px;
		left: unset;
		position: absolute;
		z-index: 100;
	}

	.actor_list .list_rank, .actor_list .list_new{
		left:10px;
		position:absolute;
		z-index:100;
	}
	.actor_list .list_rank{
		top: 15px;
        display: inline-flex;
	}
	.actor_list .list_rank img{
		width:40px;
		height:100%;
	}
	
	.actor_list .list_rank span{
		font-size:2.5em;
		color:#fff;
		font-family: "Fugaz One", sans-serif;
		font-weight: 400;
		font-style: normal;
		-webkit-text-stroke-width: 2px;
		-webkit-text-stroke-color: #ff153c;
	}

	.actor_list .list_new{
		bottom: 40px;
	}

	.single-actor-pic-content ul li img{
		width: 100%;
		height:auto;
	}

	.m-small{
		width:100%;
	}
	.small-right{
		width:100%;
	}
	.banner_list {
		flex-direction:row
	}
	.banner_list>.banner_item {
		max-width:100%;
		width:100%
	}
	.banner_list>.banner_size_100 {
		max-width:100%;
		width:100%
	}
	.banner_list>.banner_size_20 {
		max-width:20%;
		width:20%
	}
	.prev_next span{
		font-size:12px;
	}
	#recommend_video ul{
		display:flex;
		flex-wrap: wrap;
	}
	#recommend_video ul li{
	    flex: 0 0 50%;
		max-width: 50%;
		padding-right: 5px;
		padding-left: 5px;
	}

	.m_search_btn{
		display:none;
		position: absolute;
		right: 20px;
	}

	.navbar-search .form-control{
	    margin-top: 5px;
		height: 35px !important;
		font-size: 12px;
	}
	.navbar-search .input-group-append{
	    margin-top: 5px;
		height: 35px;
		font-size: 12px;
	}
	.navbar-search .input-group-append i{
	    position: relative;
		top: 0;
	}
	
	.title-search .form-control{
	    margin-top: 5px;
		height: 35px !important;
		font-size: 12px;
	}
	.title-search .input-group-append{
	    margin-top: 5px;
		height: 35px;
		font-size: 12px;
	}
	.title-search .input-group-append i{
	    position: relative;
		top: 0;
	}

	.banner_list>.banner_size_50 {
		max-width:100%;
		width:100%;
	}
	.banner_img_size_50{
		width:100%;
	}
	
	.aside-scroll{
		overflow: auto;
		max-height: 85%;
	}
	.icon_category{
		font-size:.65rem;
		padding:0 5px 0 5px;
	}
	
	.actor_list .icon_category{
		font-size:.8rem;
		padding:0 10px 0 10px;
	}
	
	.navbar-search{
	  margin: 0;
	}
	.navbar-search input{
		width:130px !important;
	}
	
	.title-search{
	  margin: 0;
	}
	.title-search input{
		width:130px !important;
	}
	
	.small-right .main_right_video_list {
		flex: 0 0 100%;
		max-width: 100%;
	}
	
	.video_pagination span{
		padding: 15px;
	}
}
.m_search_btn{
	display:none;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.color-white{
	color:#fff;
}

#float {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    background: #181818;
	z-index: 999;
}

#float ul {
}

#float ul li {
    display: block;
    float: left;
    width: 20%;
}

#float ul li a {
    display: block;
    text-align: center;
    color: #999;
}

#float ul li a .icon {
    font-size: 20px;
}

#float ul li .active{
	color:#ffcae1 !important;
}

@media(max-width:991px){
	#float {
		display: block;
	}
	.partner_btn{
		display:none !important;
	}

}

.swiper-slide .ellipsis_multiLine, .video .ellipsis_multiLine {
	-webkit-box-orient:vertical;
	display:block;
	display:-webkit-box;
	font-size:.9rem;
	line-height:1.5;
	overflow:hidden;
	text-overflow:ellipsis;
	word-break:break-all;
	-webkit-line-clamp:1;
	height:1.5rem
}

.single-video-sidebar .ellipsis_multiLine{
	-webkit-box-orient:vertical;
	display:block;
	display:-webkit-box;
	font-size:.9rem;
	line-height:1.5;
	overflow:hidden;
	text-overflow:ellipsis;
	word-break:break-all;
	-webkit-line-clamp:2;
	height:2.5rem
}
.series_btn .series_btn_data.open{
	display:flex;
}
.series_btn .series_btn_data{
	display:none;
}
.series_btn button{
	width:60px;
    height: 40px;
	border: 1px #b3b3b3 solid;
    background: #737373;
}
.series_btn button.active{
	border: 1px #898989 solid;
    background: #474747;
}