@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* width */

::-webkit-scrollbar {
    width: 15px;
}


/* Track */

::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: #7669fe;
    /* border: 1px solid #f1f1f1; */
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

* {
    font-family: 'Roboto', sans-serif;
}

a {
    font-size: 1em;
}

img {
    max-width: 100%;
}

html,
body {
    width: 100%;
    height: 100%;
    background-color: #141414;
    overflow: hidden;
    position: relative;
}

.clear {
    clear: both;
}


/* MODAL */

.modal {
    background: rgba(0, 0, 0, 0.73);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: 0.4s;
    display: none;
}

.modal-disable-password-adult {
    background: rgba(0, 0, 0, 0.93);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: 0.4s;
    display: none;
}

.modal-content .modal_password_close {
    background: transparent;
    /* outline: none; */
    border: none;
    position: absolute;
    right: 6px;
    top: 6px;
    color: #fff;
    cursor: pointer;
    font-size: 2em;
}

.modal-content img {
    width: 40px;
    height: 40px;
}

.modal-content {
    background-color: #404040;
    width: 60%;
    padding: 20px;
    color: #fff;
    border-radius: 5px;
    position: relative;
}

.modal-content-disable {
    width: 60%;
}

.modal-content-disable form {
    display: flex;
    justify-content: center;
    position: relative;
}

.modal-content-disable form input {
    background: none;
    border: 0;
    border-bottom: 2px solid #fff;
    width: 70%;
    /* outline: 0; */
    padding: 20px 10px;
    color: #fff;
    font-size: 2em;
}

.modal-content-password {
    width: 60%;
}

.modal-content-password form input {
    background: none;
    border: 0;
    border-bottom: 2px solid #fff;
    width: 70%;
    /* outline: 0; */
    padding: 20px 10px;
    color: #fff;
    font-size: 2em;
}

.form-check-password-adult {
    display: flex;
    width: 100%;
    justify-content: center;
    position: relative;
}

#btn-password-adult {
    width: 19%;
    border-radius: 5px;
    background-color: #7669fe;
    padding: 10px 0;
    color: #fff;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    margin-left: 30px;
}

#btn-disable-password {
    width: 19%;
    border-radius: 5px;
    background-color: #7669fe;
    padding: 10px 0;
    color: #fff;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    margin-left: 30px;
}

.btn-cancel-password {
    width: 19%;
    border-radius: 5px;
    background-color: #dd5b5b;
    padding: 10px 0;
    color: #fff;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    margin-left: 10px;
}

.modal-content h1 {
    font-size: 1.4em;
    font-weight: 500;
}

.password_adult {
    margin-top: 30px;
}

.row-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title-form h2 {
    font-size: 1.3em;
    font-weight: 300;
}

.title-form p {
    font-size: 0.9em;
    font-weight: 200;
}

.check input[type="checkbox"] {
    position: relative;
    width: 80px;
    height: 40px;
    -webkit-appearance: none;
    background: #c6c6c6;
    border-radius: 20px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, .2);
    /* transition: .5s; */
}

.check input:checked[type="checkbox"] {
    background: #7669fe;
}

.check input[type="checkbox"]:before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    top: 0;
    left: 0;
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    transform: .5s;
}

.check input:checked[type="checkbox"]:before {
    left: 40px;
}


/* .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    height: 0;
    width: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
}

input:checked+.slider {
    background-color: #7669fe;
}

input:focus+.slider {
    box-shadow: 0 0 1px #7669fe;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
    outline-style: solid;
}

.slider.round:before {
    border-radius: 50%;
} */

.form_password {
    margin-top: 10px;
    display: none;
    transition: 0.4s;
    justify-content: space-between;
    position: relative;
}

.form_password input {
    width: 80%;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 10px 15px;
    color: #fff;
    border: none;
    font-size: 0.9em;
    /* outline: none; */
}

.form_password input::placeholder {
    color: #fff;
}

.form_password button {
    width: 19%;
    border-radius: 5px;
    background-color: #7669fe;
    padding: 15px 0;
    color: #fff;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
}

.form-change-password {
    margin-top: 10px;
    display: none;
    transition: 0.4s;
    justify-content: space-between;
    position: relative;
}

.form-change-password form {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.form-change-password input {
    width: 38%;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 10px 15px;
    color: #fff;
    border: none;
    font-size: 0.9em;
    /* outline: none; */
}

.form-change-password input::placeholder {
    color: #fff;
}

.form-change-password button {
    width: 19%;
    border-radius: 5px;
    background-color: #7669fe;
    padding: 15px 0;
    color: #fff;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
}


/* LOAD */

.loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    background-color: #000;
    justify-content: center;
    align-items: center;
    display: none;
    opacity: .8;
}

.loading img {
    width: 150px;
}

.loading-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    justify-content: center;
    align-items: center;
    display: none;
    opacity: .8;
}

.loading-video img {
    width: 150px;
}


/*TRIGGER*/

.trigger_container {
    position: absolute;
    right: 0;
    top: 0;
    background: #000;
    z-index: 9999999;
    color: #fff;
    width: 100%;
    padding: 20px;
    display: none;
}

.trigger_container.warning {
    background-color: #ffb72c;
}

.trigger_container.success {
    background-color: #7669fe;
}


/* LOGIN */

#Login {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background-image: url(../../assets/images/bg-login.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.login_container {
    width: 100%;
    height: 100vh;
    padding: 0 150px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0.7021183473389356) 100%);
    display: flex;
    align-items: center;
}

.keyboard_container_login {
    /* border: 2px solid red; */
    display: none;
    flex-direction: column;
    justify-content: center;
    padding: 20px 60px;
    background-color: rgba(0, 0, 0, 0.975);
    min-width: 560px;
    transition: .5s;
}

.keyboard_container_login h1 {
    color: #fff;
    font-size: 0.9em;
    font-weight: 300;
    margin-bottom: 25px;
}

.keyboard_main {
}

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

.keyboard_main .row_login .key {
    flex-basis: 14%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 19px;
    background-color: rgba(255, 255, 255, .1);
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    margin-bottom: 13px;
}

.keyboard_main .row_login_characters {
    display: none;
    justify-content: space-between;
}

.keyboard_main .row_login_characters .key {
    flex-basis: 14%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 19px;
    background-color: rgba(255, 255, 255, .1);
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    margin-bottom: 13px;
}

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

.keyboard_main .row_login_two .key {
    flex-basis: 48.5%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 19px;
    margin-bottom: 13px;
    background-color: rgba(255, 255, 255, .1);
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

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

.keyboard_main .row_login_three .key {
    flex-basis: 31.2%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 19px;
    margin-bottom: 13px;
    background-color: rgba(255, 255, 255, .1);
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

.active_caps {
    visibility: hidden;
    position: absolute;
    top: 5px;
    right: 309px;
    width: 10px;
    height: 10px;
    background: #4BCA81;
    border-radius: 50%;
}

.active_special_caractere {
    visibility: hidden;
    position: absolute;
    top: 5px;
    right: 156px;
    width: 10px;
    height: 10px;
    background: #4BCA81;
    border-radius: 50%;
}

.login_content {
    max-width: 720px;
}

.login_logo {
    max-width: 350px;
    max-height: 85px;
}

.login_index_message {
    color: #eee;
    font-size: 3em;
    font-weight: 500;
    margin: 70px 0;
}

.login_login_form {
    width: 500px;
    position: relative;
}

#keyboard_login_user {
    top: 150px;
}

#keyboard_login_pass {
    top: 150px;
}

.login_input_container {
    width: 100%;
    margin-bottom: 15px;
}

.login_input_container input {
    width: 100%;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 20px 25px;
    color: #fff;
    border: none;
    font-size: 1.2em;
    /* outline: none; */
}

.login_input_container input::placeholder {
    color: #fff;
}

.login_login_form button {
    width: 100%;
    border-radius: 5px;
    background-color: #7669fe;
    padding: 20px 25px;
    color: #fff;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
}

.login_login_form button:hover {
    opacity: 0.8;
}


/* USERS */

.users_container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 8888;
    width: 100%;
    height: 100%;
    padding: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #141414;
}

.users_title p {
    color: #fff;
    font-size: 3em;
    margin-bottom: 30px;
}

.users_content ul {
    list-style: none;
    color: #fff;
    float: left;
}

.users_content li {
    float: left;
    margin: 0 20px;
    margin-bottom: 30px;
}

.users_content a {
    float: left;
    border-radius: 10px;
    margin-bottom: 15px;
    width: 150px;
    height: 150px;
    text-align: center;
}

.users_content span {
    display: block;
    text-align: center;
    font-size: 1.3em;
    color: #ccc;
}

.users_content img {
    width: 150px;
    height: 150px;
}

.users_modal_container {
    z-index: 8889;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #141414;
}

.manage_users_modal_container {
    z-index: 8889;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #141414;
}

.manage_users {
    margin-top: 40px;
}

.btn_manage_users {
    text-decoration: none;
    border: 1px solid grey;
    color: grey;
    letter-spacing: 4px;
    padding: 0.5em 1.5em;
    cursor: pointer;
    transition: 0.3s;
}

.btn_manage_users:hover {
    color: white;
    border: 1px solid white;
}

.btn_manage_users_concluded {
    text-decoration: none;
    background: white;
    color: black;
    letter-spacing: 4px;
    padding: 0.5em 1.5em;
    cursor: pointer;
    transition: 0.3s;
}

.btn_manage_users_concluded:hover {
    background-color: #7669fe;
    color: white;
}

.bg-edit {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(0, 0, 0, 0.7);
}

.bg-edit img {
    filter: invert(1);
    width: 25px;
}

.users_modal_box {
}

.users_modal_content {
}

.manage_users_modal_content {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.manage_users_modal_content h1 {
    color: #fff;
    font-weight: 400;
    font-size: 2.9em;
    margin-bottom: 30px;
}

.users_modal_content input {
    width: 100%;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 20px 25px;
    color: #fff;
    border: none;
    font-size: 1.2em;
}

.users_modal_content input::placeholder {
    color: #fff;
}

.users_modal_content button {
    width: 100%;
    border-radius: 5px;
    background-color: #7669fe;
    padding: 20px 25px;
    color: #fff;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 10px;
}

.users_modal_content button:hover {
    opacity: 0.8;
}

.form_avatar {
    position: relative;
}

#keyboard_avatar {
    top: -270px;
}


/* PLAYER */

#Player {
    width: 100%;
    height: 100%;
    background-color: #141414;
    overflow: hidden;
    position: relative;
}

.menu_container {
    float: left;
    width: 150px;
    min-height: 100vh;
    height: 100%;
    background-color: #1c1c1c;
    padding: 45px;
    position: relative;
    overflow: auto;
}

.profile_container {
    position: absolute;
    top: 0px;
    left: 150px;
    background-color: #1c1c1c;
    padding: 50px 70px;
    z-index: 7777;
    text-align: center;
    display: none;
}

.avatar_container {
    width: 70px;
    height: 70px;
    display: inline-block;
}

.profile_container p {
    color: #fff;
    margin: 10px 0;
}

.profile_container a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: block;
    font-size: .8em;
}

.profile_container a:hover {
    opacity: .6;
}

.profile_container .config {
    background-color: #404040;
    margin-bottom: 5px;
}

.profile_container .exit {
    background-color: #dd5b5b;
}

.profile_container .config {
    margin-top: 12px;
}

.profile_content {
}

.menu_content {
    list-style: none;
}

.menu_content li {
    margin-bottom: 35px;
}

.menu_content img {
    filter: invert(1);
    width: 50px;
}

.menu_content a {
    text-align: center;
    color: #fff;
    text-decoration: none;
    display: block;
}

.menu_content span {
    display: block;
    margin-top: 5px;
}

.menu_content a.active img {
    filter: invert(70%) sepia(52%) saturate(6898%) hue-rotate(159deg) brightness(92%) contrast(103%);
}

.page_container {
    float: right;
    width: calc(100% - 150px);
}

.page_topnav {
    width: 100%;
    border-bottom: 1px solid #404040;
    color: #fff;
    float: left;
    padding: 30px;
}

.page_topnav img {
    float: left;
    max-width: 150px;
    max-height: 36px;
}

.page_topnav p {
    float: right;
    margin-top: 10px;
}

.search_container {
    float: left;
    margin-left: 30px;
    position: relative;
    width: 250px;
    visibility: hidden;
}

.search_container input {
    float: left;
    padding: 10px 15px;
    background: #1c1c1c;
    border: none;
    /* outline: none; */
    color: #fff;
    font-size: 1.1em;
    padding-right: 40px;
    width: 100%;
    border-radius: 5px;
}

.search_container button {
    background: transparent;
    border: none;
    float: right;
    width: 20px;
    position: absolute;
    right: 10px;
    top: 10px;
    filter: invert(30%);
    cursor: pointer;
}

.search_container img {
}

.keyboard_container {
    position: absolute;
    /* width: 420px; */
    top: 42px;
    z-index: 999;
    background: #000;
    padding: 17px;
    border-radius: 9px;
}

.keyboard_content {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.keyboard_content .row {
    display: flex;
}

.keyboard_content .row .key {
    width: 50px;
    margin: 0 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-bottom: 6px;
    background-color: rgba(255, 255, 255, .1);
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

.keyboard_content .row-special-characters {
    display: none;
}

.keyboard_content .row-special-characters .key {
    width: 50px;
    margin: 0 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-bottom: 6px;
    background-color: rgba(255, 255, 255, .1);
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

.keyboard_content .row .key:first-of-type {
    margin-left: 0;
}

.keyboard_content .row-special-characters .key:first-of-type {
    margin-left: 0;
}

.keyboard_content .row-center {
    justify-content: center;
}

.page_content {
    float: left;
    width: 100%;
}

.carousel_section_generic_container {
    width: 100%;
    float: left;
    padding-top: 30px;
    position: relative;
}

.carousel_section_generic_content {
    width: 100%;
}

.carousel_section_generic_title {
    padding-left: 30px;
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 500;
}

.section_top_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section_new_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container-arrows img {
    filter: invert(1);
    width: 32px;
    cursor: pointer;
    padding: 0 10px;
}

.arrows-series {
    text-align: right;
    margin: 15px 0;
    display: none;
}

.arrows-series.active {
    display: block;
    position: absolute;
    bottom: -10px;
    right: 29px;
}

.arrows {
    float: right;
    margin-top: 10px;
}

.arrows i {
    font-size: 3em;
    color: #fff;
    cursor: pointer;
    margin: 0 4px;
}

.carousel_section_generic_content ul {
    list-style: none;
    padding-left: 30px;
    padding-bottom: 10px;
    padding-top: 5px;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: 400px;
    display: flex;
}

.hide_scrollbar::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.carousel_section_generic_content li {
    float: left;
    margin-right: 20px;
}

.carousel_section_generic_content a {
    display: block;
    width: 200px;
    height: 300px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-decoration: none;
    border-radius: 10px;
    position: relative;
}

.carousel_section_generic_content a.live {
    background-size: contain;
    background-size: 90px;
    background-color: rgba(0, 0, 0, .5);
}

.carousel_section_generic_content.small a {
    width: 157px;
    height: 235px;
}

.carousel_section_generic_content .position_number {
    color: #fff;
    font-size: 2em;
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #7669fe;
    width: 48px;
    height: 48px;
    text-align: center;
    border-radius: 10px;
    padding: 4px;
}

.carousel_section_generic_content .name {
    color: #fff;
    display: block;
    margin-top: 5px;
    font-size: .8em;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 100%;
}

.scroll-horizon.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
    transform: scale(.99);
}


/* .scroll-vertical.active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
  transform: scale(.99);
} */


/* CHANNELS */

.channels_categories {
    background-color: #202020;
    float: left;
    height: 100%;
}

.channels_categories ul {
    list-style: none;
    max-width: 250px;
    width: 250px;
    max-height: calc(100vh - 101px);
    overflow-y: auto;
}

.channels_categories li {
    font-size: .8em;
}

.channels_categories a {
    text-decoration: none;
    color: #fff;
    padding: 15px;
    display: block;
}

.channels_categories a:hover,
.channels_categories a.active {
    background-color: #7669fe;
}

.channels_list {
    background-color: #191919;
    float: left;
    height: 100%;
}

.channels_list ul {
    list-style: none;
    max-width: 350px;
    width: 300px;
    max-height: calc(100vh - 101px);
    overflow-y: auto;
}

.channels_list li {
    font-size: .8em;
    position: relative;
}

.channels_list li .icon-lock {
    position: absolute;
    top: 17px;
    right: 10px;
    filter: invert(1);
}

.channels_list a {
    text-decoration: none;
    color: #fff;
    padding: 15px;
    display: block;
}

.channels_list a:hover,
.channels_list a.active {
    background-color: #7669fe;
}

.channels_list img {
    max-width: 40px;
    max-height: 15px;
    margin-right: 5px;
}

.channels_view_container {
    float: right;
    width: calc(100% - 700px);
    margin: 30px;
    text-align: center;
    max-width: 600px;
}

.channels_view_content {
    background-color: #202020;
    width: 100%;
    /* padding-top: 56.25%; */
    position: relative;
}

.channels_view_content .play {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.channels_view_content img {
    filter: invert(.5);
    width: 100px;
}

.epg_ul {
    list-style: none;
    margin-top: 30px;
    text-align: left;
    overflow: auto;
    max-height: 300px;
    display: block;
    width: 100%;
}

.epg_ul li {
    margin-bottom: 20px;
}

.epg_ul .title {
    font-size: 1.1em;
    color: #fff;
}

.epg_ul .time {
    color: #7669fe;
    font-size: .7em;
}

.epg_ul .description {
    color: #6c6c6c;
    font-size: .87em;
    margin-top: 5px;
}


/* MOVIES */

.movies_content {
    width: calc(100% - 250px);
    float: left;
}

.movies_content ul {
    list-style: none;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 400px;
    padding: 30px;
    width: 100%;
    max-height: calc(100vh - 101px);
}

.movies_content li {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    position: relative;
}

.icon-lock-vod {
    position: absolute;
    top: 17px;
    right: 10px;
    filter: invert(1);
    width: 25px;
}

.movies_content a {
    display: block;
    width: 143px;
    height: 213px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-decoration: none;
    position: relative;
    border-radius: 10px;
}

.movies_content .name {
    color: #fff;
    display: block;
    margin-top: 5px;
    font-size: .8em;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 100%;
}

.favorites_container {
    width: 100%;
    height: calc(100vh - 101px);
    overflow: auto;
}

.modal_vod_container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 50px;
}

.modal_vod_box {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
    max-height: calc(100vh - 100px);
    overflow: auto;
}

.modal_vod_box.big {
    max-width: 100%;
}

.modal_vod_content {
    border-radius: 10px;
    padding: 30px;
    background-color: rgba(0, 0, 0, .9);
    position: relative;
    z-index: 999 !important;
}

.modal_vod_close {
    background: transparent;
    /* outline: none; */
    border: none;
    position: absolute;
    right: 20px;
    top: 20px;
    filter: invert(1);
    cursor: pointer;
}

.modal_vod_close i {
    /* width: 40px;
    height: 40px; */
    font-size: 3.2em;
}

.vod_cover {
    float: left;
    width: 215px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.vod_cover .rate {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #7669fe;
    padding: 5px;
    color: #fff;
}

.vod_description {
    float: left;
    width: calc(100% - 215px);
    color: #fff;
    padding-left: 25px;
}

.vod_description .title {
    font-size: 2em;
    font-weight: 700;
    padding-right: 40px;
}

.vod_description .genre {
    margin: 10px 0 20px 0;
    font-size: .8;
}

.vod_description .director {
    font-size: .87em;
    margin-bottom: 5px;
}

.vod_description .cast {
    font-size: .87em;
}

.btn_watch {
    border: none;
    background: #7669fe;
    color: #fff;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    margin-top: 30px;
    float: left;
}

.btn_watch:hover {
    opacity: .8;
}

.btn_watch img {
    filter: invert(1);
    width: 20px;
    margin-right: 10px;
}

.btn_watch span {
    display: block;
    display: flex;
    align-items: center;
    font-size: 1.2em;
}

.btn_favorite {
    border: none;
    background: transparent;
    filter: invert(1);
    margin-right: 15px;
    margin-top: 35px;
    float: left;
    cursor: pointer;
}

.btn_favorite:hover {
    opacity: .8;
}

.btn_favorite i {
    /* width: 30px; */
    font-size: 2.3em;
}

.vod_resume {
    width: 100%;
    float: left;
    color: #fff;
    margin-top: 30px;
    padding: 15px;
    background-color: rgba(0, 0, 0, .5);
    border-radius: 5px;
    font-size: .87em;
}

.seasons_container {
    float: left;
    width: 100%;
    margin-top: 30px;
}

.seasons_content {
}

.seasons_ul {
    display: flex;
    list-style: none;
    overflow: auto;
}

.seasons_li {
    white-space: nowrap;
}

.seasons_li .title {
    color: #fff;
    font-size: .9em;
    margin-bottom: 5px;
}

.seasons_li a {
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    display: inline-block;
}

.seasons_li a:hover,
.seasons_li a.active {
    border-bottom: 2px solid #7669fe;
}

.carousel_section_generic_content .episodes_ul {
    list-style: none;
    min-width: 150px;
    max-height: 350px;
    overflow: auto;
    background-color: rgba(0, 0, 0, .5);
    margin-right: 5px;
    display: none;
}

.episodes_li {
}

.episodes_ul a {
    color: #fff;
    text-decoration: none;
    padding: 7px 10px;
    /* font-size: .87em; */
    display: block;
}


/* VIDEO */

.player_video_container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background-color: #000;
    /* visibility: hidden; */
    display: none;
}

.title_vod {
    position: absolute;
    padding: 20px 80px;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 9998;
    text-align: center;
    visibility: hidden;
    background-color: rgba(20, 20, 20, .85);
}

.title_vod h1 {
    color: #fff;
}

.player_video_content {
    width: 100%;
    height: 100%;
    position: relative;
}

.player_video_close {
    position: absolute;
    background-color: transparent;
    padding: 25px;
    top: 0;
    left: 0;
    cursor: pointer;
    border: none;
    /* outline: none; */
    width: 77px;
    height: 77px;
    z-index: 9999;
    visibility: hidden;
    /* display: none; */
}

.player_video_close:hover {
    background-color: #7669fe;
}

.player_video_prev {
    position: absolute;
    left: 0;
    top: 41%;
    cursor: pointer;
    border: none;
    /* outline: none; */
    width: 80px;
    z-index: 9999;
    background-color: transparent;
    padding: 20px;
}

.player_video_next {
    position: absolute;
    right: 0;
    top: 41%;
    cursor: pointer;
    border: none;
    /* outline: none; */
    width: 80px;
    z-index: 9999;
    background-color: transparent;
    padding: 20px;
}

.player_btn_next {
    position: absolute;
    z-index: 9999;
    display: flex;
    align-items: center;
    padding: 8px;
    border: none;
    background: #fff;
    border-radius: 3px;
    cursor: pointer;
    right: 39px;
    bottom: 102px;
    transition: 0.5s;
    display: none;
}

.control-player {
    display: none;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(20, 20, 20, .85);
    width: 100%;
    padding: 21px;
}

.control-player .play-button {
    background: none;
    border: 0;
    padding: 5px 15px;
    cursor: pointer;
}

.play-button img {
    width: 35px;
    filter: invert(1);
}

.control-player .full-screen-button {
    background: none;
    border: 0;
    padding: 5px;
    cursor: pointer;
}

.full-screen-button img {
    width: 35px;
    filter: invert(1);
}

.video-progress {
    display: flex;
    width: calc(100% - 300px);
    height: 16px;
    transition: 0.3s;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    margin: 0 10px;
}

.volume-container {
    padding: 0 10px;
    display: flex;
    position: relative;
}

.volume-container .volume {
    -webkit-appearance: none;
    height: 3px;
    width: 100%;
    background-color: #ddd;
    border-radius: 5px;
    /* outline: none; */
    border: none;
}

.volume-container .volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    background-color: #7669fe;
    border-radius: 50%;
    cursor: pointer;
}

.control-player .time {
    white-space: nowrap;
}

.video-progress-filled {
    width: 0;
    background: #7669fe;
}

.time {
    color: #fff;
    padding: 0 10px;
}

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

.player_video_prev img {
    filter: invert(1);
    width: 65%;
}

.player_video_close img {
    filter: invert(1);
    width: 100%;
}

.player_video_next img {
    filter: invert(1);
    width: 65%;
}

#video-source {
    width: 100%;
    height: 100%;
}

.active-border {
    border: 2px solid #7669fe;
}

.menu_mobile {
    visibility: hidden;
}

.menu_close_mobile {
    display: none;
}

.active_menu_mobile {
    display: block !important;
    position: absolute;
    z-index: 2;
}

#show-menu-btn-movies,
#show-menu-btn-series,
#show-menu-btn-live {
    display: none;
    cursor: pointer;
}

/* MOBILE */

@media (min-width: 991px) {
    .menu_mobile,
    .menu_close_mobile {
        visibility: hidden;
        display: none;
    }

    .menu_container {
        transition: none;
    }

    .channels_list,
    .channels_view_container {
        display: block !important;
    }
}

@media (max-width: 990px) {
    .vod_categories_ul {
        max-width: none !important;
        width: 100% !important;
    }

    .page_topnav img {
        max-width: 80px;
    }

    .carousel_section_generic_content a {
        width: 160px;
        height: 250px;
    }

    .menu_container {
        display: none;
    }

    .page_container {
        width: 100%;
    }

    .carousel_section_generic_content.small a {
        width: 160px;
        height: 250px;
    }

    .page_topnav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .page_topnav p {
        display: none;
    }

    .menu_mobile {
        visibility: visible;
        font-size: 2rem;
    }

    .menu_close_mobile {
        font-size: 2rem;
    }

    .modal_vod_content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .vod_description {
        flex-basis: 100%;
    }

    .lives_container {
        display: flex;
        flex-wrap: wrap;
    }

    .channels_categories {
        flex-basis: 100%;
    }

    .channels_list {
        display: none;
    }

    .channels_list {
        flex-basis: 100%;
    }

    .channels_view_container {
        flex-basis: 100%;
        margin-top: 3rem;
    }

    .channels_list ul {
        max-width: none;
        width: 100%;
    }

    .page_content {
        display: flex;
    }

    .movies_content {
        width: auto;
        margin-top: 20px;
    }

    .movies_content ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .movies_content a {
        width: 213px;
        height: 313px;
    }

    .vod_description .title {
        font-size: 1.3em;
    }

    .title_vod h1 {
        font-size: 1em;
    }

    .users_container {
        padding: 20px;
    }

    .users_title p {
        text-align: center;
    }

    .users_modal_container {
        padding: 20px;
    }

    .users_content {
        width: 100%;
    }

    .avatar_list {
        display: flex;
        overflow: auto;
        width: 100%;
    }

    .users_content li {
        flex-basis: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .avatar_list_manager {
        display: flex;
        width: 100%;
        overflow: auto;
    }

    .manage_users_modal_container {
        padding: 20px;
    }

    .manage_users_content {
        width: 50%;
    }

    .users_content a {
        position: relative;
    }

    .login_content {
        max-width: none;
        display: flex;
        flex-direction: column;
    }

    .login_login_form {
        width: auto;
    }

    .login_index_message {
        font-size: 1.5em;
    }

    .login_logo {
        max-width: 200px;
    }

    .login_container {
        padding: 20px;
        justify-content: center;
    }
}

@media (min-width: 652px) {
    #show-menu-btn-movies,
    #show-menu-btn-series,
    #show-menu-btn-live {
        display: none !important;
    }

    .vod_categories_ul {
        display: block !important;
    }
}

@media (max-width: 651px) {
    #show-menu-btn-series {
        position: fixed;
        left: 0;
        z-index: 1;
        width: 100%;
        padding: 14px;
        margin-top: 10px;
        background: #7669fe;
        border: none;
        color: #fff;
        top: 68px;
    }

    #show-menu-btn-live {
        position: fixed;
        left: 0;
        z-index: 1;
        width: 100%;
        padding: 14px;
        margin-top: 10px;
        background: #7669fe;
        border: none;
        color: #fff;
        top: 68px;
    }

    #show-menu-btn-movies {
        position: fixed;
        left: 0;
        z-index: 1;
        width: 100%;
        padding: 14px;
        margin-top: 10px;
        background: #7669fe;
        border: none;
        color: #fff;
        top: 68px;
    }

    .page_content {
        flex-direction: column;
    }

    .channels_categories ul {
        width: 100%;
        max-width: none;
    }

    .movies_content ul {
        padding: 8px;
    }

    .movies_content a {
        width: 157px;
        height: 213px;
    }

    .movies_content li a {
        flex-basis: 49%;
    }
}