/***

====================================================================
   Root Code Variables
====================================================================

***/

/* Theme Color */
:root {

    --pl-primary-color: #e50916;
    --pl-primarydark-color: #b81d24;
    --pl-black-color: #000;
    --pl-white-color:#fff;
    --pl-grey-color:#b3b3b3;
}

/*==========================================================================
1.0 DEFAUL SETTING
========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');


li::marker {
    color: transparent;
}

body {
    max-width: 100%;
    overflow-x: hidden;
    background-color: var(--pl-black-color);
}

img {
    max-width: 100%;
    height: auto;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

b, strong {
    font-weight: 800;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

h1 {
    font-size: 45px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 27px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 18px;
}

p {
    margin-bottom: 20px;
    color: var(--pl-white-color);
    font-weight: 500;
    font-size: 15px;
}

figure {
    margin: 0;
}

a {
    text-decoration: none;
}

textarea:focus, input:focus, .form-control:focus,select:focus-visible {
    outline: none;
    box-shadow: none;
    border-color: transparent;
}

.container {
    max-width: 1430px;
    width: 95%;
}

.pl_main_title_wrapper {
    position: relative;
    margin-bottom: 20px;
}

.pl_main_title h3 {
    margin-bottom: 0;
    font-size: 24px;
    color: var(--pl-white-color);
    font-weight: 500;
}

.pl_main_title h6 {
    color: var(--pl-primary-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
}

/* ----- Header CSS ----- */

#header {
    -webkit-transition: all .5s;
    transition: all .5s;
}

#header.sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    background: var(--pl-black-color);
    box-shadow: 2px 15px 9px -19px var(--pl-white-color);
    -webkit-transition: all .5s;
    transition: all .5s;
}


header.pl_header_wrapper {
    position:absolute;
    width: 100%;
    top: 0;
    z-index: 1;
}

.pl_header_wrapper .logo img {
    max-width: 150px;
    width: 100%;
    /*max-height: 65px;*/
    /*height: 100%;*/
}

.pl_header_wrapper a.nav-link {
    color: var(--pl-white-color);
    font-family: 'Jost', sans-serif;
}

.pl_header_wrapper a.nav-link:hover {
    color: var(--pl-primary-color);
}

.pl_header_wrapper li.nav-item {
    margin-left: 20px;
}

.Pl_header_right {
    display: flex;
    align-items: baseline;
}

.login {
    margin-left: 30px;
}

.Pl_header_right .pl_main_btn_fill {
    margin-left: 30px;
}

.search  {
    margin-left: 30px;
}


.login a.user_icon {
    display: block;
    min-width: 40px;
    width: 100%;
    text-align: center;
    height: 40px;
    border-radius: 50px;
    color: var(--pl-white-color);
    line-height: 40px;
}

.search a {
    color: var(--pl-white-color);
}


.login {
    position: relative;
}

.login:hover .pl_login_content {
    visibility: visible;
    opacity: 1;
}

.pl_login_content {
    position: absolute;
    width: max-content;
    top: 40px;
    visibility: hidden;
    opacity: 0;
    left: -40px;
}

.pl_login_content ul {
    background: var(--pl-black-color);
    padding: 10px 15px;
    box-shadow: 2px 15px 9px -19px var(--pl-white-color);
}

.pl_login_content ul li {
    margin-bottom: 10px;
}

.pl_login_content ul li a {
    color: var(--pl-white-color);
    font-size: 14px;
    font-weight: 500;
}

.pl_login_content ul li a:hover {
    color: var(--pl-primary-color);
}



.pl_header_content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: baseline;
}

.pl_header_inner_content {
    display: flex;
}

.navbar-toggler {
    background-color: var(--pl-primary-color);
}

button.navbar-toggler i {
    color: var(--pl-white-color);
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow:none;
}

#pl_full_searchbar .modal-content {
    background-color: #000;
}

#pl_full_searchbar form {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

#pl_full_searchbar form input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    font-size: 25px;
    background: transparent;
    color: #fff;
    border-bottom-color: #fff;
    border-bottom-width: 1px;
    border-right: 0;
    border-top: 0;
    border-left: 0;
}

#pl_full_searchbar form button {
    position: absolute;
    right: 15px;
    bottom: 8px;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 30px;
}


.modal-header .btn-close {
    margin: 0;
    padding: 0;
    background-image: none;
    font-size: 20px;
    color: #fff;
    left: 3%;
    top: 30px;
    position: absolute;
    opacity: 1;
    background: #817979;
    padding: 10px;
    line-height: 0;
    border-radius: 50px;
}


/* ----- Banner CSS ----- */

.pl_banner_wrapper {
    background: url(../images/banner-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height:100vh;
    position: relative;
}

.pl_banner_wrapper:before {
    content: '';
    position: absolute;
    top:0;
    left:0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to right, #000 , transparent);
}

.pl_banner_content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 700px;
    width: 100%;
}

.pl_banner_content h1 {
    color: var(--pl-white-color);
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 29px;
    font-weight: 800;
}

.pl_banner_content h1 span {
    color: var(--pl-primary-color);
    border-bottom: 2px solid;
}

.pl_banner_meta {
    margin: 30px 0 50px 0;
}

.pl_banner_meta ul li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.lable-red {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.pl_banner_meta ul li {
    margin-right: 18px;
}

.pl_banner_meta ul li.quality > span {
    font-size: 11px;
    text-transform: uppercase;
    color: #21232b;
    background: var(--pl-white-color);
    font-weight: 700;
    padding: 7px 11px;
    line-height: 1;
}

.pl_banner_meta ul li.quality > span:last-child {
    background: transparent;
    color: var(--pl-white-color);
    margin-left: 9px;
    border: 2px solid var(--pl-white-color);
    padding: 5px 10px;
}

.banner-meta ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-right: 18px;
}

.pl_banner_meta ul li.category > a {
    font-size: 14px;
    font-weight: 500;
    color: #e3dfdf;
}

.pl_banner_meta ul li.category > a + a {
    margin-left: 5px;
}

.pl_banner_meta ul li:last-child {
    margin-right: 0;
}

.pl_banner_meta ul li.release_time > span {
    font-size: 14px;
    font-weight: 500;
    color: #e3dfdf;
}

.pl_banner_meta ul li.release_time > span > i {
    font-size: 12px;
    margin-right: 5px;
    color: var(--pl-primary-color);
}

.pl_banner_meta ul li.release_time > span + span {
    margin-left: 15px;
}


.pl_main_btn a {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.5;
    padding: 10px 25px;
    text-align: center;
    border: 2px solid;
    color: var(--pl-white-color);
    display: inline-block;
}

.pl_main_btn_fill a {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.5;
    padding: 7px 25px;
    text-align: center;
    border: 2px solid var(--pl-primary-color);
    color: var(--pl-white-color);
    background-color: var(--pl-primary-color);
    display: inline-block;
}

/* ----- Upcoming CSS ----- */

.upcoming_wrapper {
    margin-top: 55px;
}

.upcoming_wrapper .pl_main_title_wrapper {
    position: relative;
    margin-bottom: 30px;
}

.upcoming_wrapper .pl_main_title {
    margin-bottom: 30px;
}

.category_tabs span {
    border-bottom: 2px solid transparent;
    color: var(--pl-white-color);
    cursor: pointer;
    font-size: 20px;
    letter-spacing: 1px;
    margin-right: 35px;
    display: inline-block;
}
.category_tabs span:last-child {
    margin: 0;
}
.category_tabs .active {
    border-color: var(--pl-primary-color);
    color: var(--pl-primary-color);
}

.pl_category_box_content {
    margin-top: 10px;
}

.pl_category_img img {
    width: 100%;
    height: 165px;
    object-fit: cover;
}

.pl_category_img {
    position: relative;
}

.pl_share_content {
    position: absolute;
    width: 100%;
    top:0;
}

.pl_share_content ul {
    display: flex;
    flex-direction: column;
    align-items: end;
    padding: 0 10px;
    margin-left: auto;
    width: max-content;
    line-height: 30px;
}

.pl_share_content ul li a {
    color: var(--pl-white-color);
}

.share {
    position: relative;
}

.share .pl_share_social {
    position: absolute;
    top: 80%;
    right: -10px;
    background-color: var(--pl-white-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: .5s;
}

.share .pl_share_social:after {
    top: -16px;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #ffffff;
    border-width: 8px;
    margin-left: -6px;
}

.share .pl_share_social li {
    text-align: center;
}


.pl_share_social li a i{
    color: var(--pl-black-color);
}


.share:hover .pl_share_social {
    opacity: 1;
    visibility: visible;
    transform: translateY(9%);
}

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

.pl_category_box_info h4 a {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    text-overflow: ellipsis;
    color: var(--pl-white-color);
    overflow: hidden;
    /*white-space: nowrap;*/
    font-family: 'Jost', sans-serif;
}

.pl_category_box_info h4{
    line-height: 22px;
}

.pl_category_box_qal span {
    border: 1px solid var(--pl-white-color);
    color: var(--pl-primary-color);
    padding: 3px 5px;
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
}

.pl_category_box_meta_holder ul {
    display: flex;
}

.pl_category_box_meta_holder ul li {
    list-style: none;
    margin: 0 15px 0px 0;
    padding: 0 15px 0px 0;
    font-size: 14px;
    line-height: normal;
    display: inline;
    align-items: center;
    color: #cecfd1;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.pl_category_box_meta_holder ul li:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -2px;
    right: -2px;
    height: 4px;
    width: 4px;
    display: inline-block;
    background: var(--pl-white-color);
    opacity: 0.8;
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
}

.pl_category_box_meta_holder ul li:last-child:before {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
    background: transparent;
}

.pl_category_box_meta_holder ul li a {
    color: var(--pl-primary-color);
    font-weight: 500;
}

/* ----- Upcoming CSS ----- */

.category_wrapper  {
    margin-top: 75px;
}

.category_wrapper .pl_main_btn_fill {
    text-align: end;
}

.category_wrapper .pl_main_btn_fill a {
    font-size: 13px;
    padding: 4px 14px;
}

.slick-prev, .slick-next {
    top: 50%;
}

.slick-prev:before, .slick-next:before {
    display: none;
}

.slick-slider {
    margin:0 -15px;
}

.slick-slide {
    margin-right:15px;
    margin-left:15px;
}

/* ----- Footer CSS ----- */

footer {
    background: #221f1f;
    margin-top: 75px;
    padding-top: 35px;
}

.pl_footer_logo img {
    max-width: 150px;
    width: 100%;
    max-height: 65px;
    height: 100%;
}

.pl_footer_content p {
    margin-top: 30px;
}

.pl_footer_widget .pl_footer_title {
    margin-bottom: 30px;
    color: var(--pl-white-color);
    padding: 0;
    font-size: 24px;
    position: relative;
    line-height: 34px;
    font-weight: 500;
}


.pl_app_box {
    display: flex;
}

.pl_app_box a img {
    max-width: 120px;
    width: 100%;
}

.pl_app_store_logo {
    margin-left:20px ;
}

.pl_social ul {
    display: flex;
    margin-top: 30px;
}

.pl_social ul li {
    margin-right: 30px;
}

.pl_social ul li a {
    color: var(--pl-white-color);
    font-size: 18px;
}

.pl_bottom_footer {
    margin-top: 35px;
}

.pl_bottom_footer_content {
    background: var(--pl-primary-color);
    padding: 5px 0;
}

.pl_bottom_footer_content span {
    color: var(--pl-white-color);
    font-size: 14px;
}

.pl_bottom_footer_content span a {
    color: var(--pl-white-color);
}

.pl_bottom_footer_menu {
    display: flex;
    justify-content: end;
}

.pl_bottom_footer_menu li {
    margin-right: 20px;
    position: relative;
    padding-left: 12px;
}

.pl_bottom_footer_menu li:before {
    content: "";
    position: absolute;
    top: 5px;
    bottom: 0;
    left: 0;
    width: 4px;
    height: 4px;
    display: inline-block;
    background: var(--pl-white-color);
    margin: auto 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.pl_bottom_footer_menu li a {
    color: var(--pl-white-color);
    font-size: 14px;
}



/* ----- Login/Register CSS ----- */

.pl_submit_wrapper {
    filter: blur(6px);
    -webkit-filter: blur(6px);
    background-size: cover !important;
    background-position: center center !important;
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100vh;
    z-index: -1
}

.pl_acceess_form_content {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
#pms_login {
    padding: 30px;
    background: var(--pl-black-color);
    position: relative;
    z-index: 9;
    max-width: 500px;
    width: 100%;
    display: inline-block;
    text-align: left;
}

.register #pms_login {
    max-width: 750px;
    width: 100%;
}

#pms_login h4 {
    color: #fff;
    font-weight: 500;
    margin-bottom: 30px;
    font-size: 24px;
}

.pl_acceess_form_content input, .pl_acceess_form_content input.form-control {
    background: #fff;
    border: 1px solid #b3b3b3;
    color: var(--white-color);
    width: 100%;
    float: left;
    font-size: 14px;
    padding: 0 15px;
    height: 40px;
    line-height: 40px;
    outline: none;
    margin-bottom: 25px;
}
.pl_acceess_form_content.register input {
    margin-bottom: 0px;
}

.pl_acceess_form_content label {
    display: inline-block;
    color: #b3b3b3;
    font-size: 17px;
    margin-bottom: 5px;
    width: 100%;
    font-family: 'Jost', sans-serif;
}

.select_label input {
    max-width: 15px;
    margin-right: 7px;
    margin-top: -8px;
}

.select_label label {
    font-size: 16px;
}

.pl_acceess_form_content .button {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.5;
    padding: 7px 25px;
    text-align: center;
    border: 2px solid var(--pl-primary-color);
    color: var(--pl-white-color);
    background-color: var(--pl-primary-color);
    display: inline-block;
    margin-bottom: 15px
}

.pl_acceess_form_content p a {
    color:var(--pl-primary-color);
}

.pl_acceess_form_content p a i {
    font-size: 13px;
}


.pl_acceess_form_content input[type="radio"], .pl_acceess_form_content input[type="checkbox"] {
    width: auto;
    height: auto;
    float: none;
    margin-right: 5px;
}

.pms-subscription-plan label {
    height: 25px;
}

.pms-field-subscriptions {
    margin-bottom: 30px;
}

.pl_acceess_form_bottom p span {
    color: #b3b3b3;
}

.register .row.pl_acceess_form_bottom {
    margin-top: 20px;
}







.pl_country_section_wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pl_location_form_content {
    padding: 30px;
    background: var(--pl-black-color);
}

.pl_country_section_wrapper form {
    margin-top: 30px;
}

.country-select.inside .flag-dropdown {
    right: auto;
    left: 0;
    top: 0;
}

.pl_country_section_wrapper .form-item {
    display: flex;
    column-gap: 10px;
}

.pl_country_section_wrapper .country-select.inside {
    max-width: 500px;
    width: 100%;
    margin-right: 20px;
}

.pl_country_section_wrapper .country-select.inside input[type=text] {
    width: inherit;
    height: 100%;
}

.pl_country_section_wrapper input[type="submit"] {
    max-width: 130px;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.5;
    padding: 7px 25px;
    text-align: center;
    border: 2px solid var(--pl-primary-color);
    color: var(--pl-white-color);
    background-color: var(--pl-primary-color);
    display: inline-block;
}







.pl_inner_banner_wrapper {
    margin-top: 100px;
}

.pl_inner_banner_content {
    max-width: 500px;
    width: 100%;
    padding-top: 20px;
}

.pl_inner_banner_content h1 {
    font-size: 35px;
    font-weight: 500;
    color: var(--pl-white-color);
}

.pl_inner_banner_content .description p {
    color: var(--pl-grey-color);
    margin-bottom: 50px;
}

.carousel-control-next {
    justify-content: end;
    right: -40px;
}

.carousel-control-prev {
    justify-content: left;
    left: -40px;
}










.pl_inner_banner_wrapper .container {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 70px 15px;
}


.pl_watchlist_bottom_banner_content {
    margin-top: 100px;
}

.pl_play_btn a {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}

.pl_play_btn a i {
    background-color: var(--pl-primary-color);
    max-width: 40px;
    width: 100%;
    height: 40px;
    border-radius: 50px;
    text-align: center;
    line-height: 40px;
    margin-right: 20px;
}

.pl_play_btn a i:hover{
    background-color: #9b000a;
}

.pl_watchlist_content a {
    text-align: center;
}

.pl_watchlist_content a  span {
    display: block;
    color: #fff;
}

.pl_watchlist_wrapper {
    background: #ffffff12;
    padding: 12px;
    border-radius: 10px;
}

.modal-body {
    padding: 0 45px 40px 45px;
    display: grid;
    align-items: center;
    width: 100%;
}

.modal-content {
    background-color: #232020;
}

.modal-header {
    border-bottom: 0;
    padding: 30px;
}

.modal-backdrop {
    z-index: 0;
}



.pl_account_wrapper {
    /* margin-top: 200px; */
    height: 100vh;
    display: flex;
    align-items: center;
}

.pl_account_menu ul li {
    margin-bottom: 20px;
    border-bottom: 1px solid;
    padding-bottom: 10px;
}

.pl_account_menu ul li a {
    color: var(--pl-white-color);
    font-size: 18px;
}

.pl_account_menu ul li a:hover {
    color: var(--pl-primary-color);
}


.pl_account_detail .pl_main_title {
    border-bottom: 1px solid #ffffff61;
    padding-bottom: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
}


.pl_profile_form {
    max-width: 600px;
    width: 100%;
    margin-left: 40px;
}

.profile_img {
    text-align: center;
    margin-bottom: 25px;
}

.profile_img img {
    max-width: 100px;
    width: 100%;
    display: none
}


.c-link {
    color: var(--pl-primary-color);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}




.l-section input, .l-section textarea, .l-section select {
    display: block;
    width: 100%;
    margin: 5px 0;
    padding: 10px 15px;
    border-radius: 2px;
    border: 1px solid #efefef;
    outline: none;
    margin-bottom: 25px;
    -webkit-appearance: none;
    transition: all 0.2s ease-in-out;
}

.l-section button {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.5;
    width: 100%;
    padding: 7px 25px;
    text-align: center;
    color: var(--pl-white-color);
    background-color: var(--pl-primary-color);
    display: inline-block;
    margin-top: 30px;
}

.l-section .form--disabled button {
    background: #ffffff59;
}

.l-section input:focus {
    border-color: #888;
}
.l-section label {
    display: inline-block;
    color: #b3b3b3;
    font-size: 17px;
    margin-bottom: 5px;
    width: 100%;
    font-family: 'Jost', sans-serif;
    text-transform: capitalize;
}

.l-section .form--disabled input, .l-section .form--disabled textarea, .l-section .form--disabled select {
    background: #ffffff59;
    color: #fff;
    width: 100%;
    float: left;
    font-size: 14px;
    padding: 0 10px;
    height: 40px;
    line-height: 40px;
    outline: none;
    border: 0;
    margin-bottom: 25px;
}

.pl_inner_banner_img img{
    width: 100%;
    height: 500px;
}

.pl_catagory_wrapper{
    min-height: 100vh;
    padding: 100px 0px 50px 0px;
    display: flex;
    align-items: center;
}

.pl_catagory_wrapper .pl_catagory_tilte{
    font-size: 28px;
    font-weight: 500;
    margin-top: 10px;
    color: #fff;
}

.pl_catagory_wrapper .pl_catagory_content{
    text-align: center;
}

.pl_catagory_wrapper .pl_catagory_content p{
    font-weight: 100;
}

.red-line{
    height: 5px;
    width: 100%;
    background-color: #e50916;
}

/*.pl_main_title_wrapper{*/
/*    text-align: center;*/
/*}*/

.pl_main_title_wrapper h3{
    font-size: 30px;
}

.slick-track{
    margin: 0 !important;
}


.pl_watchlist_wrapper:hover{
    background-color: #ffffff47;
}

.text-nowrap{
    white-space: nowrap !important;
}
.pl_watchlist_content a span i{
    font-size: 20px;
}

.slick-prev, .slick-next{
    opacity: 0.4 !important;
}

.slick-prev:hover, .slick-next:hover{
    opacity: 1 !important;
}
