::placeholder {
    line-height: normal;
}

p {
    color: #999;
}

ul {
    margin: 0px;
    padding: 0px;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.page-margin-top a {
    color: #008FD5
}

p {
    margin-top: 1rem;
}

h1,
h2,
h3,
h4 {
    color: #ffffff
}

.list-menu a {
    opacity: 0.67;
}

.title-section {
    color: #FFFFFF;
}

.title-section h1 {
    color: #FFFFFF;
    font-size: 26px;
}

li.dropdown:hover>.dropdown-menu {
    display: block;
}

ul li.dropdown-menu {
    display: block;
}

.dropdown-menu {
    background: transparent;
    padding-top: 28px;
    position: absolute;
    margin: 0px;
    z-index: 3;
}

.dropdown-menu-ul {
    background: #000;
}

.dropdown-menu ul.dropdown-menu-ul li {
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 0px;
}

.dropdown-menu li {
    margin-top: 15px;
}

.list-menu ul.dropdown-menu li {
    padding-left: 0px;
}

.title-section span {
    color: #D0D0D2;
}

.title-section ul li a {
    font-size: 12px;
    color: #ACACAC;
    display: flex;
}

.title-section ul li:first-child {
    margin-top: 0px;
}

.title-section ul li {
    list-style: none;
    margin-top: 15px;
}

.title-section ul li a span {
    height: 100%;
    display: block;
    vertical-align: middle;
}

.title-section ul li a i {
    font-size: 24px;
    color: #008FD5;
    margin-right: 10px;
}

.title-section ul li a span {
    padding-top: 4px;
}

.title-bar.no-line:before {
    display: none;
}

.title-bar.no-line h4 {
    font-weight: normal;
}


/* ---------------------------------------------------
    Header Button STYLE
----------------------------------------------------- */

a.header-button {
    background-image: linear-gradient(-90deg, #325DD2, #C23483);
    color: #FFFFFF;
    padding: 5px 23px;
    font-size: 14px;
    border-radius: 4px;
}


/* ---------------------------------------------------
    End Header Button STYLE
----------------------------------------------------- */

.search-box {
    position: relative;
    margin-left: auto;
    margin-right: 60px;
}

.search-box button {
    position: absolute;
    right: 10px;
    top: 50%;
    background: transparent;
    border: none;
    margin-top: -13px;
    color: #656565;
}

input.search {
    width: 200px;
    border-radius: 18px;
    height: 40px;
    border: 0;
    padding: 15px;
    /*line-height: 3;*/
}

.navbar {
    padding: 15px 0px;
    background: #fff;
    border: none;
    border-radius: 0;
    position: fixed;
    width: 100%;
    z-index: 111111;
    height: 80px;
    top: 0px;
}

.navbar-btn {
    box-shadow: none;
    outline: none;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

#sidebarCollapse {
    cursor: pointer;
    color: white;
    font-size: 20px;
}

.bg-black {
    background-color: #0C0E16;
}

.navbar>.container {
    justify-content: normal;
}

.list-menu ul li {
    display: inline-block;
    color: #FFFFFF;
    padding-left: 15px;
}

.list-menu ul li:first-child {
    padding-left: 0px;
}

.logo,
.list-menu {
    padding: 0px 15px;
}

.mobile-popup {
    display: none;
}


/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

#sidebar {
    width: 400px;
    position: fixed;
    top: 0;
    left: -400px;
    height: 100vh;
    z-index: 999;
    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    background-image: linear-gradient(#325DD2, #C23483);
    padding: 0px 20px;
    z-index: 111111112;
}

#sidebar.active {
    left: 0;
}

#dismiss {
    padding: 20px 0px;
    cursor: pointer;
}

#dismiss i {
    float: right;
}

.overlay {
    display: block;
    position: fixed;
    width: 0;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease;
    top: 0px;
}

.overlay.active {
    display: block;
    opacity: 0.7;
    width: 100vw;
    height: 100vh;
    transition: .5s ease;
}

#sidebar .menu-close {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-width: 2px;
}

#sidebar svg:hover .menu-close {
    fill: none;
    stroke: #c13583;
    stroke-linecap: round;
    stroke-width: 2px;
}

#sidebar .sidebar-header {
    padding: 20px;
}

#sidebar ul.components {
    padding: 20px 0;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li {
    padding-top: 25px;
}

#sidebar ul li a {
    font-size: 17px;
    display: block;
    font-weight: 400;
    position: relative;
}

#sidebar ul li a:after {
    content: '';
    position: absolute;
    left: 0;
    display: inline-block;
    height: 2px;
    width: 0;
    bottom: 0px;
    border-bottom: 1px solid #fff;
    margin-top: 10px;
    transition: all .35s ease;
}

#sidebar ul li a:hover:after {
    opacity: 1;
    width: 100%;
}

#sidebar ul li.has-submenu>a:after {
    content: "\f067";
    float: right;
    font: normal normal normal 14px/1 FontAwesome;
    position: relative;
    top: 5px;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em;
    padding-left: 30px;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #fff;
    color: #7386D5;
}

a.article,
a.article:hover {
    background: #6d7fcc;
    color: #fff;
}

i.fa-times:before {
    content: "\f00d";
}


/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}

.box_div {
    height: 700px;
    background: transparent;
    width: 100%;
}

.page-margin-top {
    margin-top: 80px;
}

section {
    padding: 50px 0px;
    overflow: hidden;
}

section.light-bg {
    background: #131721;
}

section.slider {
    padding: 0px;
}

.title-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
}

.title-bar:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    border-top: 1px solid #949CB0;
    width: 100%;
    /*  transform: translateY(-50%);*/
    z-index: 0;
}

ul.list-categories li {
    display: inline-block;
    margin-left: 30px;
    vertical-align: -moz-middle-with-baseline;
    vertical-align: -webkit-baseline-middle;
    height: 100%;
}

ul.list-categories li:first-child {
    margin-left: 0px;
}

.title-bar h2 {
    z-index: 1;
    background-color: #0E0D12;
    font-size: 24px;
    color: #FFFFFF;
    padding-right: 30px;
    margin-bottom: 0px;
}

section.light-bg .title-bar h2 {
    background-color: #131721;
}

section.light-bg .title-bar ul {
    background-color: #131721;
    width: auto;
    /*    max-width: 400px;*/
    text-align: right;
    padding-left: 15px;
}

.loader-overlay {
    display: none;
    position: absolute;
    width: 100%;
    background: rgba(0, 0, 0, 0.74);
    z-index: 100;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #008FD5;
    left: 0px;
}

.loader-overlay i {
    font-size: 24px;
    top: 45%;
    position: relative;
}

.btn.sign-up.btn-lg.btn-primary {
    color: #fff;
}

.title-bar ul {
    background-color: #0E0D12;
    padding-left: 2px;
    width: auto;
    /*    max-width: 400px;*/
    position: relative;
    z-index: 1;
    padding-left: 20px;
}

.list-categories li a.active {
    color: #008FD5;
}

.list-categories li a {
    color: #949494;
    font-size: 14px;
}

.grid-item img {
    width: 100%;
    height: 100%;
}

.big-one-grid {
    display: grid;
    grid-gap: 15px 15px;
    grid-template-columns: auto auto auto auto auto;
    background-color: #fff;
    color: #444;
    background: #131721;
    position: relative;
}

.grid-item:first-child {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}

.comman-spacing {
    padding: 70px 0px 0px;
}

.attachment-section {
    padding: 70px 0px 100px 0px;
    background-size: cover;
    background-repeat: no-repeat;
}

.box-container h2 {
    color: #FFFFFF;
    font-size: 49px;
    font-weight: bold;
}

.shadow-layer-box img {
    width: 100%;
    position: relative;
}

.small-boxes.shadow-layer-box {
    /*max-height: 248px;*/
    overflow: hidden;
}

.lSSlideOuter .lightSlider {
    height: 100%;
    max-height: 90vh;
}


/* ---------------------------------------------------
    OWL CAROSAL
----------------------------------------------------- */

.carousel-wrap {
    margin: 0px auto;
    padding: 0px;
    width: 100%;
    position: relative;
}


/* fix blank or flashing items on carousel */

.owl-carousel .item {
    position: relative;
    z-index: 100;
    -webkit-backface-visibility: hidden;
}


/* end fix */

.owl-nav>div {
    margin-top: -26px;
    position: absolute;
    top: 50%;
    color: #cdcbcd;
}

.owl-nav i {
    font-size: 52px;
    color: #D0D0D2;
    opacity: 1;
}

.owl-nav .owl-prev {
    left: -30px;
}

.owl-nav .owl-next {
    right: -30px;
}

.owl-item .item img {
    width: 100%;
}

.owl-nav>button {
    margin-top: -26px;
    position: absolute;
    top: 50%;
    color: #cdcbcd;
}

.owl-nav .owl-prev {
    left: -30px;
}

.owl-nav .owl-next {
    right: -30px;
}

.owl-nav .disabled {
    pointer-events: none;
    opacity: .2;
}


/* ---------------------------------------------------
    End OWL CAROSAL
----------------------------------------------------- */


/* ---------------------------------------------------
    small-boxes 
----------------------------------------------------- */

.small-boxes-container {
    display: grid;
    grid-gap: 15px 15px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    position: relative;
}

.two-box-grid {
    position: relative;
}

.small-boxes-container-horizontal {
    display: grid;
    grid-gap: 15px 15px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.small-boxes img,
.small-boxes-container-horizontal img {
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    height: 100%;
}

.small-boxes,
.small-boxes-container-horizontal {
    position: relative;
}

.forgot-pass-text a {
    color: white;
    font-style: italic;
}

ul.pull-right li {
    list-style: none;
    display: inline-block;
    margin: 0px 15px;
    height: 100%;
    vertical-align: middle;
    margin-top: 0px;
}

.pull-right li:last-child {
    margin-right: 0px;
}

.video-title h1 {
    font-size: 26px;
}

.light-bg.padding-10 {
    padding: 10px 0px;
}

.title-section.video-title ul li {
    margin-top: 0px;
}

.dpipe span+span {
    padding-left: 10px;
    position: relative;
    margin-left: 10px;
}

.dpipe span+span:before {
    width: 1px;
    position: absolute;
    left: 0px;
    height: 11px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    background-color: #fff;
    content: "";
}

.vid-description {
    color: #fff;
}


/* .readmore-wrappper a {
    color: #fff !important;
}

.readmore-content {
    color: #FFFFFF;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
} */


/* ---------------------------------------------------
    End small-boxes
----------------------------------------------------- */


/*pop-up css*/


/*.sign-in-sign-up-pop-up {
    display: flex;
    align-items: center;
    vertical-align: middle;
    justify-content: center;
    height: 100vh;
}*/

.pop-up-bg {
    background-image: url('../../../images/sign-in.png');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    height: 100%;
}

.create-account {
    display: flex;
    align-items: center;
    vertical-align: middle;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    position: relative;
    margin: 0px auto;
    display: none;
}

.account-text {
    letter-spacing: 0;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-bottom: 32px;
    font-weight: 300;
}

.sign-up {
    background: #008FD5;
    font-size: 14px;
    padding: 10px 25px;
}

.sign-up:hover {
    background: #008FD5;
    border-color: #008FD5;
}

.sign-up-form {
    background: linear-gradient(180deg, #325DD2 0%, #C23483 100%) 0% 0% no-repeat padding-box;
    height: 100%;
    padding: 65px 40px;
}

.sign-up-form-heading {
    padding: 0px 43px;
    display: flex;
    flex-direction: column;
    vertical-align: middle;
    height: 72vh;
    justify-content: center;
}

.sign-up-text {
    font-size: 20px;
    color: #fff;
    margin: 0;
    position: relative;
    margin-bottom: 45px;
}

.wrapper-input {
    position: relative;
    outline: 0;
    float: left;
    width: 100%;
}

.sign-up-text:after {
    content: '';
    border-bottom: 1px solid #fff;
    position: absolute;
    width: 60%;
    top: 50%;
    right: 0;
    margin: 0px 8px;
}

input.sign-up-input:focus,
input.input-text:focus {
    outline: #fff;
}

.sign-up-input,
.input-text,
.input-text {
    width: 100%;
    border-radius: 18px;
    padding: 15px 17px !important;
    border: 1px solid #fff;
    font-size: 15px;
    height: 45px;
    margin-bottom: 15px;
    display: block;
    overflow: hidden;
    /*line-height: 3;*/
}

input::placeholder {
    color: #A0A0A0;
}

.Forgot {
    margin: 0px 0px 45px;
    color: #fff;
    font-size: 15px;
}

.social-icon-list {
    display: flex;
    list-style: none;
    vertical-align: middle;
    align-items: center;
    height: 100%;
    margin: 0px 0px;
}

.social-icon-list li a {
    color: #fff;
    margin-right: 30px;
    font-size: 20px;
}

.login {
    float: right;
}

.overlay-pop-up {
    background: #00000075 0% 0% no-repeat padding-box;
    padding: 0px;
}

.close-pop-up {
    height: 12px;
    margin: 15px 15px;
    cursor: pointer;
}

.close-btn-pop-up {
    position: absolute;
    z-index: 1;
    right: 0;
}

.wrapper-input img {
    position: absolute;
    right: 17px;
    z-index: 1;
    top: 15px;
    color: #555555;
    font-size: 14px;
    width: 12px;
}

.icon-input i {
    position: absolute;
    right: 17px;
    z-index: 1;
    top: 15px;
    color: #555555;
    font-size: 14px;
    width: 12px;
}

.padding-null-pop-up {
    padding: 0px;
}

div#sign-up-none {
    position: absolute;
    top: 0;
    width: 100%;
    display: none;
}

#login {
    width: 100%;
    display: none;
}

.sign-up-pop-up .modal-dialog {
    max-width: 100%;
    margin: 0px;
}


/*End pop-up css*/


/*subscription plan page*/

.subscrption-plan-page {
    display: flex;
    align-items: center;
    vertical-align: middle;
    justify-content: center;
    height: 100vh;
}

.box-header {
    text-align: center;
    padding: 30px 0px 40px;
    background: transparent linear-gradient(180deg, #325DD2 0%, #C23483 100%) 0% 0% no-repeat padding-box;
    border-bottom-left-radius: 70%;
    border-bottom-right-radius: 70%;
    width: 100%;
}

.box-header-content {
    font-size: 19px;
    color: #fff;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 10px;
}

.box-header-content:after {
    content: '';
    border-bottom: 1.5px solid;
    width: 35px;
    text-align: center;
    position: absolute;
    bottom: 0px;
    max-width: 100%;
    margin: auto;
    left: 44%;
    /* top: 35px; */
}

.box {
    padding: 15px;
    display: inline-flex;
}

.box-content {
    text-align: center;
    display: table-cell;
    padding: 25px 31px;
}

input::placeholder {
    font-size: 14px;
}

.box-content p {
    font-size: 13px;
    letter-spacing: 0;
    color: #FFFFFF;
}

.box-wrapper {
    width: 100%;
    background: #1C212E 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 6px #00000029;
    border-radius: 4px;
    overflow: hidden;
    padding-bottom: 50px;
    position: relative;
}

.month-prise {
    text-align: center;
    font-size: 20px;
    letter-spacing: 0;
    color: #FFFFFF;
}

.month-plan {
    margin-top: 25px;
}

.month {
    color: #ADADAD;
    font-size: 13px;
    bottom: 1px;
}

.month-wrapper {
    position: absolute;
    bottom: 33px;
    left: 0;
    text-align: center;
    width: 100%;
}

.box-wrapper:hover {
    background: #AF398D;
}

.fadeIn-top {
    top: 20%;
}

.subscrption-btn {
    text-align: center !important;
    width: 100%;
    margin: 30px 0px;
}


/*End subscription plan*/


/*footer css*/

footer {
    background: #0A0D14;
    padding: 23px 0px 0px;
}

footer hr {
    margin-top: 6px;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid #CDCDCD;
}

.movie-categories p {
    color: #535355;
    font-size: 17px;
}

.movie-categories {
    margin: 30px 0px;
}

.channel-categories-list {
    list-style: none;
    padding: 0;
    border-right: 1px solid #CDCDCD;
    padding: 35px 0px 0px;
    margin-right: 0px;
}

.channel-categories-list li {
    margin-bottom: 10px;
}

.channel-categories-list li a {
    color: #949CB0;
    font-size: 14px;
}

.footer-channel-categories {
    margin-bottom: 57px;
}

.wrapper-footer {}

.footer-support-list {
    list-style: none;
}

.footer-support-list li a {
    color: #949CB0;
    font-size: 15px;
}

.footer-support-list h4 {
    color: red
}

.footer-support-list li {
    text-transform: capitalize;
}

.footer-support-list h4 {
    color: red;
    color: #535355;
    font-size: 17px;
    margin: 0;
    text-transform: capitalize;
}

.copy-right-section {
    background: #06090F;
    padding: 23px 0px;
}

.footer-copy-right .text-right h5 {
    color: #fff;
}

.footer-copy-right h5 {
    font-size: 11px;
    color: #5E6573;
    margin: 0;
}

.footer-support-list li {
    margin-top: 13px;
}

.social-icon-footer ul {
    display: flex;
    margin: auto;
    list-style: none;
    color: #555F64;
    justify-content: center;
}

.social-icon-footer i {
    margin: 0px 7px;
    font-size: 17px;
    vertical-align: top;
    opacity: 0.7;
}

.social-icon-footer ul li {
    margin-left: 32px;
    font-size: 13px;
    color: #949CB0;
}


/*End footer*/


/*primeum*/

.shadow-layer-box .premium img {
    width: 15px;
    margin-right: 5px;
}

.owl-stage-outer .premium img {
    width: 15px;
    display: inline-block;
}

.premium {
    font-size: 12px;
    /* position: absolute;
    top: 10px;
    
    right: 10px; */
    z-index: 11;
    background: transparent linear-gradient(270deg, #F2A513 0%, #E67D13 100%) 0% 0% no-repeat padding-box;
    color: #fff;
    padding: 3px 7px;
    border-radius: 2px;
}

.shadow-layer-box {
    position: relative;
    cursor: pointer;
    overflow: visible;
}

table {
    color: white;
}

.watch-now {
    margin: 40px 0px 0px 0px;
    display: flex;
}

.play-btn {
    float: right;
    margin-right: 74px;
    position: relative;
    z-index: 11;
}


/*end primeum*/

.shadow-layer-box:after {
    content: "";
    position: absolute;
    bottom: -1px;
    width: 100%;
    height: 100%;
    left: 0;
    pointer-events: none;
    z-index: 1;
    background: -moz-linear-gradient(to bottom, rgba(30, 87, 153, 0) 0%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(to bottom, rgba(30, 87, 153, 0) 0%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(to bottom, rgba(30, 87, 153, 0) 0%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#000', endColorstr='#000', GradientType=0);
}

.aria-hidden {
    display: none;
    position: absolute;
    width: 280px;
    max-width: 300px;
    top: 0px;
    left: 100%;
    background: black;
    z-index: 22;
    transition: opacity 1s ease-out;
    opacity: 0;
}

.grid-item.shadow-layer-box.box-container-1:nth-of-type(4)>.aria-hidden,
.grid-item.shadow-layer-box.box-container-1:nth-of-type(7)>.aria-hidden {
    position: absolute;
    width: 280px;
    max-width: 300px;
    top: 0px;
    left: -100% !important;
    background: black;
    z-index: 12;
}

.grid-item.shadow-layer-box.box-container-1:hover>.aria-hidden {
    display: block;
    opacity: 1;
}

.box-hover {
    background-color: #0E0D12;
    border: none;
}

.box-hover p {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 0px;
}

.box-hover p>p {
    margin-top: 0px;
}

.box-hover p>p:last-child {
    display: none
}

.tooltipster-sidetip .tooltipster-box {
    background: transparent;
    border: none;
    border-radius: 0px;
    box-shadow: none;
}

.tooltipster-sidetip .tooltipster-content {
    padding: 0px;
    background: transparent;
    border: none;
    border-radius: 0px;
    box-shadow: none;
}


/*.box-hover {
    position: absolute;
    top: -20px;
    left: 100%;
    background-color: #0E0D12;
    overflow: hidden;
    width: 0;
    height: auto;
    z-index: 1111;
}*/


/*.grid-item:hover .box-hover {
    opacity: 1;
    width: 267px;
    right: 0px;
}*/

.play-btn-wrapper {
    color: #FFFFFF;
    font-size: 14px;
    margin: 14px 0px;
}

.wrapper-hover {
    padding: 25px;
}

.wrapper-hover h4 {
    font-size: 16px;
    color: #008FD5;
    font-weight: 600;
}

.wrapper-hover p {
    font-size: 12px;
    color: #FFFFFF;
}

.play-btn-wrapper img {
    width: 48px;
    margin-right: 15px;
}

.hover-btn .sign-up {
    width: 100%;
}

.wrapper-hover h6 {
    margin: 0px 0px 15px 0px;
    color: #008FD5;
    font-size: 16px;
    font-weight: bold;
}

.live {
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: #fff;
    background: #F01B12 0% 0% no-repeat padding-box;
    padding: 3px 6px 2px;
    font-size: 10px;
    opacity: 1;
    text-transform: uppercase;
}

.image-date-title {
    position: absolute;
    bottom: 0;
    padding: 15px 0px 0px 15px;
    color: #fff;
    z-index: 11;
    width: 95%;
    overflow: hidden;
    pointer-events: none;
}

.image-date-title h5 {
    font-size: 12px;
    margin-bottom: 3px;
    color: #AEB4BF;
}

.image-date-title h6 {
    font-size: 14px;
    color: #FFFFFF;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

hr {
    margin-top: 22px;
    margin-bottom: 5px;
    border-top: 1px solid #3A3C44;
}

.profile-box {
    display: flex;
    align-items: center;
    /*    cursor: pointer;*/
    position: relative;
}

.navbar .profile-box:after {
    content: "\f107";
    color: #9a9a9a;
    font-family: FontAwesome;
    margin-left: 10px;
}

.profile-box span {
    font-size: 22px;
    color: white;
    margin-left: 27px;
}

.profile-box span a {
    color: #A8A8A8;
    font-size: 14px;
}

.tablist {}

.tablist ul li {}

.tablist ul li.active {}

.tablist ul li a {}

.tablist ul li.active a {}

.owl-dots {
    display: none;
}

.view-more a {
    float: right;
    font-size: 13px;
    color: #949CB0;
}

.modal-dialog {
    pointer-events: visible;
}

.modal {
    z-index: 9999999;
    top: 0px;
    /*padding: 5% 0px;*/
}


/*.video-banner{height: calc(100vh - 100px); width: 100%;}*/

.video-banner {
    height: 90vh;
    width: 100%;
    position: relative;
}

button:disabled {
    pointer-events: none;
}

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

.profile-bg {
    background: #1C212E
}

.tablist ul li a {
    color: #A8A8A8;
    padding-bottom: 15px;
    display: inline-block;
}

.tablist ul li.active a {
    color: #008FD5;
}

.tablist {
    padding-top: 70px;
}

.tablist ul li {
    list-style: none;
    display: inline-block;
    margin-left: 20px;
}

.remove-bottom-padding {
    padding-bottom: 0px;
}

.tablist ul li.active {
    border-bottom: 2px solid #008FD5;
}

.tablist ul li:first-child {
    margin-left: 0px;
}

.billbox {
    padding-top: 20px;
}

.dark-section {
    background: #131721
}

.billbox span {
    color: #A8A8A8;
}

.billbox h5 {
    color: #FFFFFF;
}

.table {
    color: #CCCCCC;
}

.table td,
.table th {
    border-bottom: 1px solid #dee2e6;
    border-top: none;
}

.table thead th {
    border-bottom: 1px solid #dee2e6;
}

#Watchlist {
    display: none;
}

.camera-class {
    position: relative;
    text-align: center;
}

.camera-class span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding-top: 20px;
    width: 100%;
    float: left;
}

.concert-cont {
    padding: 70px 0px 0px;
}

.cat-date {
    margin-bottom: .5rem;
}

p {
    color: #ffffff;
    text-align: left;
}

.box-container {
    position: relative;
    z-index: 11;
}

input:focus {
    outline: 0;
}

.search-btn {
    left: 7px;
    font-size: 18px;
}

.search-close-btn {
    font-size: 18PX;
}

.search-input-btn::placeholder {
    padding-left: 40px;
    color: #2E2E2E;
    font-weight: 800;
}

.sign-in-sign-up-pop-up .social-icon {
    width: 50%;
    height: 43px;
    display: block;
    vertical-align: middle;
}

#login form {
    overflow: hidden;
}

#CreateAccount,
.sign-up-box-cont {
    display: block;
    display: flex;
    align-items: center;
    vertical-align: middle;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    position: relative;
    margin: 0px auto;
}

.half-width {
    width: 48%;
    float: left;
}

.half-width:nth-child(2) {
    margin-left: 24px;
}

.tooltipster-base.tooltipster-sidetip {
    z-index: 20 !important;
}


/**** slider css ****/


/* .homeSlider {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 100vh;
    max-height: 100vh !important;
    position: absolute;
} */

.home-pageCategory-wrapper .homeSlider {
    width: 100%;
    position: absolute;
    overflow: hidden;
    /* height: 100vh; */
    max-height: 87vh;
    max-height: 100vh !important;
    /* position: absolute; */
}

.homeSlider {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.homeSlider ul {
    list-style: none outside none;
    padding-left: 0;
    margin-bottom: 0;
}

.homeSlider li {
    display: block;
    float: left;
    margin-right: 6px;
    cursor: pointer;
    position: relative;
}

.homeSlider .homeSlider-image {
    display: block;
    max-height: 100vh;
    object-fit: cover;
    width: 100%;
}

.homeSlider .lSSlideOuter .lSPager.lSGallery {
    max-width: 550px;
    float: right;
    position: absolute;
    bottom: 86px;
    right: calc(5% - 15px);
    overflow: visible;
}

.homeSlider .lSSlideOuter .lSPager.lSGallery li {
    width: 82px !important;
    height: 124px;
}

.lSSlideOuter .lSPager.lSGallery img {
    height: 100% !important;
    max-width: 100%;
    object-fit: cover;
}

.homeSlider .content-box-layout {
    position: absolute;
    z-index: 10;
    display: flex;
    height: 100%;
    color: #fff;
    top: 0px;
    max-width: 490px;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.lslide {
    position: relative;
}

.homeSlider .overlay-slider {
    display: block;
}

.homeSlider .overlay-slider {
    display: block;
    background-color: rgb(0, 0, 0, 0.4);
    position: absolute;
    z-index: 9;
    height: 100%;
    width: 100%;
    top: 0px;
    border-bottom: 1px solid #3A3C44;
}

.content-box-layout p {
    font-size: 64px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

.content-box-layout button,
.content-box-layout a {
    max-width: 200px;
    margin: 0px auto;
}


/* .video-banner .premium {
    right: 12%;
    top: 29px;
} */

.video-banner .play-btn {
    float: right;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    margin: 0;
    margin-left: -90px;
    margin-top: -90px;
}

.video-banner h5 {
    margin-top: 15px;
    color: #fff;
    text-align: center;
}

.banner-text-live {
    position: absolute;
    top: 50%;
    margin-top: -54px;
    left: 32%;
    margin-left: -136px;
    z-index: 2;
}

.shadow-layer-box.overlay-bg:after {
    opacity: 0.78;
    background: #000;
    outline: 0;
    bottom: 0;
}

.banner-text-live h4.text-white {
    font-size: 28px;
}

.red-text {
    color: #F01B12;
}

.overlay-bg .live {
    bottom: 30px;
    z-index: 2;
    top: unset;
    height: fit-content;
    left: unset;
    margin-left: 13px;
}

.navbar .profile-box img {
    width: 100%;
    object-fit: cover;
    height: 35px;
}

.navbar .profile-box.cursor {
    width: 38px;
}

.profile-box-live-prmium span {
    margin-left: 10px;
}

.camera-class img {
    width: 100%;
}

#forget-pass .sign-up-text:after {
    content: '';
    border-bottom: 1.5px solid #A0A0A0;
    position: absolute;
    width: 55%;
    top: 50%;
    right: 0;
    margin: 0px 8px;
}

.bactoLogin {
    float: right;
}

.fpass {
    float: left;
}

.otp-box {
    width: 10%;
    float: left;
    margin-left: 20px;
}

.form-data {
    overflow: hidden;
}

.popup-container {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.submit-form-btn {
    display: inline-flex;
    justify-content: center;
    position: relative;
}

.otp-box .sign-up-input {
    border-radius: 4px;
}

#otp .close-btn-pop-up,
.allform-container .close-btn-pop-up {
    right: 10px;
    top: 10px;
}

.otp-container {
    width: 100%;
    overflow: hidden;
    justify-content: center;
}

.sign-up-form .otp-container {
    display: flex;
}

.otp-form,
.allform-container {
    max-width: 600px;
    margin: 0px auto;
    width: 100%;
    padding: 50px;
    background: linear-gradient(180deg, #325DD2 0%, #C23483 100%) 0% 0% no-repeat padding-box;
    position: relative;
}

.otp-box input.input-text {
    border-radius: 4px;
}

div#myModal {
    z-index: 111111;
}

#otp p {
    text-align: center;
}

.otp-submit {
    display: flex;
    justify-content: center;
}

.mobile-search {
    display: none;
}

.search-box-mobile {
    display: none;
}

.seasons-cont {
    width: 100%;
    display: block;
}

ul.profile-list {
    margin-top: 12px;
}

ul.profile-list li:first-child {
    margin-left: 0px;
}

ul.seasons-list li:first-child {
    margin-left: 0px;
}

ul.profile-list li {
    display: inline-block;
    list-style: none;
    margin-left: 10px;
}

ul.profile-list li a:hover {
    background-color: #008FD5;
    border: 1px solid #008fd5;
}

ul.profile-list li:hover a {
    color: #fff;
}

ul.seasons-list li {
    display: inline-block;
    list-style: none;
    padding: 3px 22px;
    border: 1px solid #008FD5;
    margin-left: 10px;
    border-radius: 15px;
}

ul.seasons-list li.activeSeasons {
    background: #008FD5;
}

ul.seasons-list li.activeSeasons a {
    color: #fff;
}

.title-bar.no-line h4 {
    margin-bottom: 0px;
}

.seasons-cont {
    margin-bottom: 30px;
}

.title-section.video-title ul li a i {
    font-size: 18px;
    font-weight: bold;
    margin: 0px;
}

ul.profile-list li a {
    display: block;
    vertical-align: middle;
    padding: 5px 12px;
    width: 164px;
    text-align: center;
    border: 1px solid;
    border-radius: 5px;
}

ul.seasons-list li a {
    display: block;
    vertical-align: middle;
}

#changePass .sign-up-text:after {
    width: 50%;
}

#changePass .otp-container {
    flex-direction: column;
}

#changePass .overlay-pop-up,
#signout-confirm .overlay-pop-up {
    max-width: 600px;
    margin: 0px auto;
}

#signout-confirm p {
    text-align: center;
}

.signoutButton {
    width: 100px;
    margin: 10px;
}

.signout-container {
    width: 100%;
    overflow: hidden;
    justify-content: center;
    display: flex;
}

button.btn.sign-up.login.btn-lg.btn-primary.signoutButton {
    background: transparent;
    border-color: #fff;
}

button.btn.sign-up.login.btn-lg.btn-primary.signoutButton:hover {
    background: #008FD5;
    border-color: #008FD5;
}

.EditProfileContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.EditProfileContainer .profile-box>span {
    margin-bottom: 20px;
}

.EditProfileContainer .profile-box {
    justify-content: center;
    margin: 30px 0;
    flex-direction: column;
}

.EditProfileContainer .profile-box .pro-username {
    font-size: 22px;
    color: white;
}

.EditProfileContainer .profile-box .pro-email {
    color: #A8A8A8;
    font-size: 14px;
}

.saveBtn-editProfile {
    width: 100%;
    display: block;
}

.saveBtn-editProfile button,
.submit-form-btn button,
.submit-wrapper button {
    margin-top: 20px;
}

.editProfile {
    display: flex;
    justify-content: center;
    text-align: center;
}

.ProfileText {
    font-size: 22px;
    color: #A8A8A8;
    padding: 30px 0px 70px;
}

.ProfileImage img {
    max-width: 200px;
    object-fit: cover;
}

.saveBtn-editProfile {
    display: flex;
    justify-content: center;
}

.saveBtn-editProfile button {
    width: 100px;
}

.editProfile form {
    max-width: 600px;
    width: 100%;
}

.contact-textarea {
    vertical-align: bottom;
    display: flex;
    height: 100%;
    padding-top: 70px;
}

.contact-textarea textarea {
    width: 100%;
    border-radius: 10px;
    padding: 15px 20px;
}

.area-text {
    display: block;
    vertical-align: bottom;
}

.wrapper-input.contact-box:nth-child(4) input {
    margin: 0px;
}

.contact-submit {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.contact-submit button {
    width: 100px;
    margin-top: 35px;
}

#contact-form h2:after {
    width: 50%;
}

.light-bg.gradiant-bg {
    background: linear-gradient(180deg, #325DD2 0%, #C23483 100%) 0% 0% no-repeat padding-box;
}

.light-bg.gradiant-bg .title-bar:before {
    width: 60%;
    left: 40%;
    border-top: 1px solid #fff;
    background: #fff;
}

.light-bg.gradiant-bg .title-bar h2 {
    background-color: transparent;
}

.form-warper {
    display: block;
    width: 100%;
    overflow: hidden;
}

.all-forms {
    max-width: 600px;
    width: 100%;
    margin: 0px auto;
}

.err-container {
    width: 100%;
    float: left;
    color: red;
    margin-bottom: 20px;
    display: none;
}

.all-forms .title-bar {
    justify-content: flex-start;
}

.title-bar a {
    color: #fff;
}

#signup {
    display: none;
}

.submit-wrapper {
    display: flex;
    justify-content: space-between;
}

#sidebar ul ul a {
    font-size: 12px;
    padding-left: 0px;
}

.forgot-pass-text a h5 {
    padding-right: 5px;
    font-size: 12px;
}

.forgot-pass-text a h5:hover {
    text-decoration: underline;
}

.homeSlider .lSSlideOuter .lSPager.lSGallery li.active {
    box-shadow: none;
    border: 3px solid #008FD5;
    position: relative;
    overflow: visible;
}

.lSAction {
    display: none !important;
}

.img-wrap img {
    width: 100%;
}

.wapper-title {
    color: #fff;
    display: block;
    vertical-align: middle;
    margin-bottom: 10px;
}

.wapper-title h4 {
    font-weight: 600;
}

.wapper-cast span {
    color: #fff;
}

.social-icon-desc {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social-icon-desc i {
    margin-right: 20px;
    font-size: 24px;
    color: #008FD5;
}

.social-icon-desc i:last-child {
    margin-right: 0px;
}

.btn-primary {
    border-color: transparent;
}

.camera {
    position: relative;
}

.camera i {
    color: #555555;
    top: -42px;
    position: absolute;
    margin-left: 42px;
    font-size: 23px;
    background-color: #fff;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
}

button:focus {
    outline: 0px dotted;
    outline: 0px auto -webkit-focus-ring-color;
}

.btn-primary.focus,
.btn-primary:focus {
    box-shadow: unset !important;
}

.content-box-layout.max-content {
    justify-content: center;
    max-width: 560px;
    bottom: 86px;
    height: auto;
    display: block;
    top: inherit;
}

.max-content {
    display: flex;
    vertical-align: middle;
    justify-content: flex-end;
    flex-direction: column;
    height: 50vh;
}

.max-content-bg {
    height: 90vh;
    padding: 0;
    overflow: hidden;
}

.lightSlider.lsGrab>* {
    height: max-content;
}

.lightSlider.lsGrab>* {
    cursor: initial;
}

.homeSlider .lSSlideOuter .lSPager.lSGallery li.active::after {
    content: " ";
    position: absolute;
    right: 42%;
    top: -8px;
    border-top: none;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 5px solid #008FD5;
    background: #008FD5 0% 0% no-repeat padding-box;
    opacity: 1;
    margin: auto;
}

.owl-item:last-child {
    margin-right: 0px !important;
}

.btn.btn-lg.btn-primary {
    display: flex;
    justify-content: center;
    background: #008FD5;
    font-size: 14px;
    padding: 9px 36px;
    font-weight: normal;
    text-transform: uppercase;
    cursor: pointer;
}

.btn.btn-lg.btn-primary:hover,
.btn.btn-lg.btn-primary:focus {
    background-image: linear-gradient(-90deg, #325DD2, #C23483);
    border: 1px solid transparent;
}

.homeSlider .btn.btn-lg.btn-primary,
.attachment-section.shadow-layer-box .btn.btn-lg.btn-primary {
    padding: 19px 36px;
    font-weight: bold;
}

.box-hover .btn.btn-lg.btn-primary {
    font-weight: 500;
    padding: 11px 13px;
}


/*
.homeSlider img{
    height: 700px;
}*/

.lSSlideWrapper.usingCss+.lSPager.lSGallery {
    /*    display: none;*/
}

.big-one-grid .grid-item:first-child img {
    object-fit: cover;
    height: 100%;
}

.wrapper {
    margin-top: 80px;
}

.view-more {
    overflow: hidden;
}

.list-menu a:hover {
    color: #008FD5;
}

@media (min-width: 992px) {
    .container {
        max-width: 90%;
    }
}

@media (max-width:1199px) {
    .content-box-layout p {
        font-size: 45px;
    }
    .homeSlider .lSSlideOuter .lSPager.lSGallery,
    .content-box-layout.max-content {
        bottom: 40px;
    }
}


/*
.content-box-layout.max-content {
        max-width: 37%;
}
*/

.modal-dialog {
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: auto;
}

@media(max-width: 768px) {
    .modal-dialog {
        min-height: calc(100vh - 20px);
    }
}

.desc-wrap .col-md-3 {
    max-width: 20%;
}

.list-menu ul li span a:hover {
    color: #008FD5 !important;
}

.lSSlideOuter {
    position: relative;
}

.cursor {
    cursor: pointer
}

#sidebar svg {
    float: right;
}

.homeSlider li button {
    margin-top: 30px;
}

.watermark {
    position: relative;
}

.watermark:before {
    content: "";
    height: 100%;
    position: absolute;
    right: 0px;
    width: 90%;
    top: 0px;
    left: 0px;
    background: url(/assets/images/vuuzle-watermark.png) no-repeat right top;
    background-size: contain;
    margin: auto;
}

.bitmovinplayer-poster {
    background-size: cover !important;
    background-position: top center !important;
}

.title-bar h2.auth-class.active {
    font-size: 24px;
    line-height: 20px;
}

.title-bar h2.auth-class {
    font-size: 18px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
    line-height: 24px;
}

.bitmovinplayer-container>canvas,
.bitmovinplayer-container object,
.bitmovinplayer-container video {
    background-color: #000;
}

.bmpui-ui-volumeslider .bmpui-seekbar .bmpui-seekbar-playbackposition-marker,
.bmpui-seekbar-playbackposition {
    background-color: #4d8fd6 !important;
}

.bmpui-seekbar:hover .bmpui-seekbar-backdrop,
.bmpui-seekbar:hover .bmpui-seekbar-bufferlevel,
.bmpui-seekbar:hover .bmpui-seekbar-seekposition,
.bmpui-seekbar:hover .bmpui-seekbar-playbackposition {
    height: .4125em !important;
}

.bmpui-ui-hugeplaybacktogglebutton .bmpui-image {
    background: url(/assets/images/play.svg) no-repeat center center !important;
}

.bmpui-image {
    background: url(/assets/images/play.svg) no-repeat center center !important;
}

.unauthorized:hover .bmpui-image {
    background: url(/assets/images/play-hover.svg) no-repeat center center !important;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9999999;
    width: 200px;
    height: 200px;
    margin-left: -100px;
    margin-top: -100px;
}

.bmpui-ui-hugeplaybacktogglebutton:hover .bmpui-image {
    background: url(/assets/images/play-hover.svg) no-repeat center center !important;
}

.unauthorized .bmpui-image {
    background: url("/assets/images/play.svg") no-repeat center center !important;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 11;
    width: 200px;
    height: 200px;
    margin-left: -100px;
    margin-top: -100px;
}

.unauthorized .bmpui-image {}

.del-fav {
    position: absolute;
    z-index: 222;
    right: 0px;
    padding: 8px;
    bottom: 0;
}


/*sign-in form page*/

.sign-in-form-wrapper .overlay-pop-up {
    padding: 0px 15px;
}

.sign-in-form-wrapper .sign-up-form {
    height: 100%;
    /*padding: 100px 40px 0px;*/
    min-height: 100vh;
}

.sign-in-sign-up-pop-up .sign-in-form-wrapper .social-icon {
    width: auto;
    height: auto;
}

.sign-in-sign-up-pop-up .btn {
    opacity: 1;
}


/*table*/

td {
    padding: 15px 30px;
    border-bottom: 0.5px solid #80808030;
    border-right: 0.5px solid #80808030;
    color: #fff3f39c;
}

tr {
    transition: 0.5s;
}

#date-listing {
    border-bottom: 0px;
    border: 1px solid;
    max-width: 1184px;
    margin: 0px auto;
}

.chanel-list ul {
    padding: 30px 0px;
}

.container .chanel-list ul li {
    margin-left: 0px !important;
    padding: 12px 18px;
    color: white;
    cursor: pointer;
}

.center-form-wrapper {
    display: flex;
    vertical-align: middle;
    justify-content: center;
    height: inherit;
    flex-direction: column;
    max-width: 570px;
    margin: 0px auto;
}

.footerdesc a {
    color: #007bff;
}

li.listingData-img img {
    width: 100%;
}

#chanel-listing {
    background: transparent;
    margin-bottom: 50px;
}

.chanel-list ul {
    background: transparent;
}

.chanel-list ul {
    padding: 0px;
}

.removeFromFavarite {
    position: absolute;
    z-index: 22;
    right: 10px;
    bottom: 0px;
}

.wapper-cast.dpipe a {
    cursor: auto;
}

.footer-support-list h4 {
    color: #0A0D14;
}

.datepicker thead tr:first-child th,
.datepicker tfoot tr th {
    color: black !important;
}

.datepicker.dropdown-menu th,
.datepicker.dropdown-menu td {
    color: black;
}

li.listingData-img {
    max-width: 160px;
}

#chanel-listing ul li {
    border-right: 1px solid white;
}

.listingData-img {
    border: 1px solid #80808030;
    position: relative;
    top: 4px;
    padding: 15px !important;
}

#chanel-listing .chanel-list ul li {
    padding: 15px !important;
}

.listingData-img.active {
    border: 1px solid #008FD5;
}

.unauthorized {
    position: relative;
    cursor: pointer;
    height: 90vh;
    overflow: hidden;
}

img.play_btn_unauthorized {
    position: absolute;
    /* top: 0px; */
    left: 50%;
    width: 50px;
    height: 50px;
    top: 50%;
    margin-top: -25px;
    margin-left: -25px;
}

.blk_overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 20;
}

.play_forword_backward_button {
    width: 120px;
}

.watch-now a.showbtn-play:nth-child(1) {
    margin-left: 0px !important;
}

.watch-now a.showbtn-play button.btn.sign-up.btn-lg.btn-primary {
    width: 140px;
    border-radius: 0;
    font-weight: 700;
    text-align: left;
}

.showbtn-play i {
    margin-right: 15px;
    font-size: 25px;
}

.showbtn-play button.btn.sign-up.btn-lg.btn-primary {
    display: flex;
    align-items: center;
}

.watch-now .watch-trailer {
    margin-left: 30px;
}

.image-date-title h6 a {
    color: #fff;
}

.video-error .img-video-banner {
    height: -webkit-fill-available;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    display: flex;
    align-items: center;
    vertical-align: middle;
    justify-content: center;
    flex: column;
    height: 90vh;
}

.wrapper-video {
    background: #1317217a;
    width: 100%;
    text-align: center;
    padding: 50px 0px 80px;
}

.eyes-img img {
    margin: 40px 0px 50px;
    width: 75px;
    opacity: 0.7;
}

.content-video p {
    font-size: 30px;
    color: #acacac;
    margin: 0;
    text-align: center;
    opacity: 0.7;
}

.small-boxes .active {
    border: 3px solid #008FD5;
}

.btn.disabled,
.btn:disabled {
    opacity: .65 !important;
}

.play_forword_backward_button svg:hover {
    transform: scale(1.2);
    transition: 0.3s;
}

i#facebook {
    font-size: 22px;
    color: #008FD5;
}

i#twitter {
    font-size: 22px;
    color: #008FD5;
}

#video-page-top-bar ul {
    text-align: right;
}

i#facebook:hover {
    background: -webkit-linear-gradient(#325DD2, #C23483);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

i#twitter:hover {
    background: -webkit-linear-gradient(#325DD2, #C23483);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#video-page-top-bar ul li {
    display: inline-block;
    margin-top: 0px;
}

#video-page-top-bar ul li:first-child {
    margin-top: 0px;
    margin-right: 30px;
}

.social-bar-icon {
    text-align: right;
    margin-top: 10px;
}

.set-img-click {
    height: 100%;
    padding: 0px;
    width: 100%;
}

.set-click {
    position: absolute;
    bottom: 0;
    padding-left: 15px;
    width: 100%;
}

.set-click h6 {
    width: 70%;
}

.aboutus_text .footerdesc p,
.aboutus_text .footerdesc p *,
.aboutus_text .footerdesc ul li {
    color: #fff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
}

.aboutus_text .footerdesc a {
    color: #007bff !important;
}

.aboutus_text .footerdesc h1 {
    font-size: 24px;
    position: relative;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif !important;
    color: #fff !important;
}

.aboutus_text .footerdesc h1:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    border-top: 1px solid #949CB0;
    width: 84%;
    /* transform: translateY(-50%); */
    z-index: 0;
    left: 16%;
}

.aboutus_text {
    padding: 50px 0px 0px;
}

.vid-description .aboutus_text {
    padding: 0;
}

.wrapper-input.half-width.icon-input.auth-input-tag {
    margin-left: 21px;
}

.rounded-circle {
    border-radius: 50% !important;
    object-fit: cover;
}

.page-margin-top td p {
    text-align: center;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    margin: 5px 0px 0px 0px;
}

.bmpui-ui-uicontainer.bmpui-controls-shown .bmpui-ui-hugeplaybacktogglebutton:focus {
    box-shadow: 0px 0px #49aaf500 !important;
}

.video_slider_banner {
    position: absolute;
    width: 100%;
    height: 100%;
    background: black;
    top: 0;
}

.home-pageCategory-wrapper section.slider {
    height: 60vh;
}

section.slider {
    /* position: relative; */
    height: auto;
}

.owl-carousel .owl-stage {
    display: flex !important;
}

.owl-carousel .owl-item .item img {
    height: 100% !important;
    object-fit: cover;
}

.owl-carousel .item {
    height: 100%;
}


/* #vod_cont{
    position: absolute;
    height: 103vh;
    top:0;
    width: 100%;
} */

.hide-slide {
    display: none;
}

.show-slide {
    display: block;
}

#vod_cont .bmpui-ui-controlbar {
    display: none !important;
}

#vod_cont .bmpui-ui-hugeplaybacktogglebutton {
    display: none !important;
}


/* 
#vod_cont .bmpui-controls-hidden {
	all: unset !important;
}
	
#vod_cont .bmpui-ui-controlbar.bmpui-hidden {
	visibility: unset !important;
	opacity: unset !important;
}
	
#vod_cont .bmpui-ui-titlebar.bmpui-hidden {
	visibility: unset !important;
	opacity: unset !important;
} */

.bitmovinplayer-ad-container video,
.bitmovinplayer-container video {
    object-fit: cover !important;
    object-position: center;
}

#slider-vod #bitmovin-player {
    max-height: 100vh;
}

.btn-wrapper-video {
    position: absolute;
    top: 50%;
    max-width: 80%;
    left: 5%;
    z-index: 1;
}

.home-pageCategory-wrapper .container.btn-wrapper-video.title_button_home {
    top: 30%;
}

.btn-wrapper-video .video-title h1 {
    font-size: 50px;
    font-weight: 700;
    text-decoration: none !important;
    color: #fff !important;
    outline: none;
    line-height: 1.2;
    width: 400px;
}

.homeSlider:after {
    content: "";
    background: -webkit-linear-gradient(right, transparent, transparent 1%, transparent 0, transparent 0, rgba(0, 0, 0, .4));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.speaker.true i {
    font-size: 30px;
}

.speaker img {
    width: 40px;
    cursor: pointer;
}

.empty-genre-title {
    display: none;
}

.label {
    /* position: absolute; */
    z-index: 10;
    display: flex;
    height: 100%;
    color: #fff;
    top: 0px;
    max-width: 490px;
    /* justify-content: center; */
    flex-direction: column;
}


/* premium content css start*/

.content-box-layout.max-content.premium-content {
    position: absolute;
    max-width: 32%;
    z-index: 111;
}

.premium-content p {
    font-size: 32px;
    font-weight: 100;
    line-height: 1.5;
    text-align: left;
}


/* .video-banner .premium {
    border-radius: 0px;
    padding: 5px 10px;
} */

.video-banner .premium img {
    width: 12px;
}

#premium-id .paid-btn.container {
    padding-top: 20px !important;
}

.premium-content .btn.btn-lg.btn-primary {
    background-color: #203b5370 !important;
}

.premium-content .btn.btn-lg.btn-primary:hover,
.premium-content .btn.btn-lg.btn-primary:focus {
    background-color: #203b5370 !important;
    background-image: unset !important;
}

.premium-vod .bmpui-ui-controlbar {
    display: none !important;
}

.premium-vod .play_forword_backward_button {
    display: none !important;
}

.paid-btn {
    display: flex;
    justify-content: flex-end;
    top: 10px;
    position: relative;
}

button.premium {
    border: none;
}

button.premium.rent {
    background: none;
    margin-left: 40px;
    border: 1px solid;
}

.payment-box {
    background: linear-gradient(180deg, #325DD2 0%, #C23483 100%) 0% 0% no-repeat padding-box;
    padding: 20px;
}

.payment-table button {
    background: none;
    border: 1px solid;
    padding: 4px 15px;
}

.payment-table li {
    display: flex;
    justify-content: space-between;
    /* border-bottom: 1px dashed #000; */
    align-items: center;
    padding: 15px;
}

#rent-list .close-pop-up {
    height: 12px;
    margin: 0px 0px;
    cursor: pointer;
}

#Billing-Details .table td,
.table th {
    border-bottom: 1px solid #dee2e6;
    border-top: none;
    outline: none;
    border-top: none;
    border-right: none;
}

.payment-table li strong {
    font-size: 25px;
}

.payment-table li span {
    font-size: 15px;
    line-height: 2;
    font-weight: 600;
}

.payment-table li button {
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
}

#rent-list .close-btn-pop-up {
    right: 40px;
    /* background: #070d12b0; */
    padding: 5px;
}

.premium-vod .premium img {
    width: 15px;
    margin-right: 5px;
}


/* premium content css end*/


/* push */

#sidebar ul li a.active:after {
    opacity: 1;
    width: 100%;
}

.remove_margin {
    margin-left: 0px !important;
}

#contact-form .form-validation {
    margin: 0px;
    padding: 10px 0px;
}

#contact-form .contact-textarea textarea {
    margin-bottom: 10px;
}

#contact-form .wrapper-input.contact-box:nth-child(4) input {
    margin-bottom: 15px !important;
}

.all_page_container {
    position: relative;
    min-height: 80vh;
}

app-root {
    min-height: 100vh;
}

app-home {
    min-height: 100vh;
}


/* carousel */

.stactic-img {
    position: absolute;
    top: 0px;
}

.loader-static {
    position: relative;
}

.loader-dynamic {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
}


/* shine */

.main-loader-overlay {
    min-height: 100%;
}

.main-container {
    min-height: 80vh;
    /* background: #131721; */
}

.page-margin-top.main-container {
    min-height: 50vh;
    background: #131721;
}

app-root {
    min-height: 100vh;
}

app-home {
    min-height: 100vh;
}


/* / carousel / */

.owl-carousel-wrapper {
    position: relative;
}

#sync1 .owl-item {
    height: 100vh !important;
}

#sync2 {
    width: 40%;
    position: absolute;
    bottom: 15%;
    right: 5%;
}

#sync2 .owl-item.active.current {
    box-shadow: none;
    border: 3px solid #008FD5;
    position: relative;
    overflow: visible;
}

#sync2 .owl-item.active.current::after {
    content: " ";
    position: absolute;
    right: 50%;
    top: -13px;
    border-top: none;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 5px solid #008FD5;
    background: #008FD5 0% 0% no-repeat padding-box;
    opacity: 1;
    margin: 5px;
    transform: translateX(10px);
}

#sync2 .owl-stage-outer {
    padding: 10px 0px;
}

#sync1 .content-box-layout.max-content {
    bottom: 160px;
}

#sync2 .owl-item {
    height: 20vh;
    margin: 0px 3px;
    border-radius: 5px;
    width: 100% !important;
}


/* video-page */

.video-poster-wrapper {
    position: relative;
}

.video-poster-image {
    position: absolute;
    top: 0;
    height: 100vh;
    z-index: 1;
    width: 100%;
}

#premium-id.premium-vod .player-container {
    position: unset;
}

#premium-id.premium-vod .paid-btn.container {
    z-index: 1111;
}

#premium-id.premium-vod .content-box-layout.max-content.premium-content {
    z-index: 1111;
}

.video-poster-image::before {
    content: '';
    background-image: linear-gradient(to bottom, rgba(30, 87, 153, 0) 0%, rgba(0, 0, 0, 0.85) 60%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 1) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
}

.listing_wrapper {
    background: #131721;
}

.one_image {
    max-width: 43.5%;
}

.two_image {
    max-width: 61%;
}

.three_image {
    max-width: 81%;
}


/* static-image */

.desc-wrap .img-wrap {
    position: absolute;
    z-index: 1;
}

.desc-wrap img.stactic-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.hidden-image .img-wrap img {
    height: 100%;
    object-fit: fill;
}

.hidden-image .img-wrap {
    height: 100%;
}

.player-container {
    height: 100% !important;
}

.fixed-player .pip-close-icon {
    display: block !important;
}

.fixed-player {
    position: relative;
}

.pip-close-icon {
    position: absolute;
    top: 5px;
    z-index: 11;
    right: 5px;
}

.pip-close-icon img {
    width: 15px;
    cursor: pointer;
}

.title_button_home {
    z-index: 1111;
}

.shadow_remove::before {
    background: #0000001c;
    content: '';
}

.custom .loader-static {
    background-size: cover !important;
    border-radius: 50%;
    background-position: center !important;
}

.custom .shadow-layer-box:after {
    background: transparent;
}

.custom .image-date-title {
    position: relative;
}


/* custom css */

.transperent-layout .add-backcolor {
    background-color: #0C0E16 !important;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.transperent-layout .bg-black {
    background-color: transparent;
}

.transperent-layout .wrapper {
    margin: 0px;
}

.title_button_home a {
    float: left;
    margin-right: 20px;
}


/* .carousel-pageCategory section.light-bg:first-child h2{ 

    background-color:transparent !important;
}
.carousel-pageCategory section.light-bg:first-child ul{ 

    background-color:transparent !important;
} */

.first-pageCategory section {
    background: transparent linear-gradient(0deg, #131721 0%, #000000 52%, #00000000 100%) 0% 0% no-repeat padding-box;
    opacity: 1;
    position: relative;
    z-index: 1;
}


/* .carousel-pageCategory span:nth-child(1) section {
    background: transparent linear-gradient(0deg, #131721 0%, #000000 52%, #00000000 100%) 0% 0% no-repeat padding-box;
    opacity: 1;
    position: relative;
    z-index: 1;
} */


/* .carousel-pageCategory section.light-bg:nth-child(1) .title-bar::before {
    border: 0px;
} */

.first-pageCategory section .title-bar::before {
    border: 0px !important;
}

.first-pageCategory section h2 {
    background-color: transparent !important;
}

.first-pageCategory section ul {
    background-color: transparent !important;
}

.transperent-layout button.btn.sign-up.btn-lg.btn-primary {
    /* background: #55376e; */
    background: #008fd580 0% 0% no-repeat padding-box;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 11px;
}

.transperent-layout .speaker img {
    width: 30px;
}

.transperent-layout .bg-black input#searchInput {
    background: #ffffff3d;
    /* opacity: 0.16; */
}

.transperent-layout .list-menu a {
    color: #F8F8F8;
}

.transperent-layout .search-box button {
    color: #f8f8f882;
}

.custom .item.shadow-layer-box {
    text-align: center;
}

img.custom-round-image {
    border-radius: 50%;
}

.video-poster-size {
    height: 90vh;
}

section.custom {
    z-index: 11111 !important;
}


/* second layer */

.second-layer {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.second-layer {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 11111;
    background: #0e0d12;
}

.second-layer img {
    /* width: 25px; */
    height: auto !important;
    cursor: pointer;
    /* animation: spin 7s linear infinite; */
    /*Set our animation play state to paused initially */
    /* animation-play-state: paused; */
}


/* .second-layer img:hover {
    animation-play-state: running;
} */


/* @keyframes spin {
    100% {
        transform: rotate(1turn);
    }
} */

.icon-wrapper-autoplay-page span {
    margin: 0px 10px;
}


/* .second-layer p::before {
    content: '';
    width: 100px;
    position: absolute;
    height: 2px;
    background: #008fd5;
    bottom: -2px;
    left: 50%;
    margin-left: -50px;
} */

.fixed-player .img-video-banner {
    height: 37vh;
}

.fixed-player .img-video-banner .wrapper-video {
    padding: 20px 0px;
}

.fixed-player .img-video-banner .wrapper-video img {
    width: 35px;
    margin: 0px 0px 20px;
}

.fixed-player .img-video-banner .wrapper-video .content-video p {
    font-size: 20px;
}

.player-switch-second-layer.unauthorized.video-error {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 11;
    background: #0e0d12;
}

.cookies-set {
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    bottom: 0px;
    width: 100%;
    padding: 10px 0px;
    z-index: 99999999;
    color: #fff;
}

.cookies-set .btn {
    padding: 10px 25px !important;
    background: #008FD5 !important;
    text-transform: none !important;
    font-size: 12px !important;
}
button.vjs-big-play-button {
    text-align: center !important;
    position: absolute;
    left: 50% !important;
    top: 45% !important;
    width: 160px !important;
    height: 60px !important;
    margin: -30px 0 0 -80px !important;
}
.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-play-control  .vjs-paused  .vjs-ended .vjs-icon-placeholder:before, .vjs-icon-play:before {
    content: "\f101";
    font-size: 50px !important;
    margin-top: 5px !important;
}