body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    color: #ffffff;
    font-weight: 400;
    background: #29303a url(../images/backgrounds/main.png) no-repeat fixed 244px center;
    font-size: 15px;
}

body.login {
    background: #29303a url(../images/backgrounds/main.png) no-repeat fixed center center;
}

a,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

aside.menu {
    height: 100vh;
    max-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 2000;
}




.bg-green {
    background: #2bc48a;
}

.text-green {
    color: #2bc48a;
}

.menubar {
    height: 100%;
    width: 250px;
    background: #1d2127;
    position: relative;
}

.menubar .profile {
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
}

.menubar .profile img.user-image {
    height: 100px;
}

.profile-status {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    top: 10px;
    right: 10px;
}

.profile-status.online {
    background: #c0d64a;
    box-shadow: 0px 0px 12px 1px #c0d64a;
}


.profile-status.offline {
    background: #d64a4a;
    box-shadow: 0px 0px 12px 1px #d64a4a;
}

.menubar .profile .name {
    font-weight: 400;
    font-size: 1.1rem;
}

.menubar .profile .actions {
    margin-top: 1.2rem;
}

.menubar .profile .actions li {
    display: inline-block;
    margin-right: 7px;
}

.menubar .profile .actions li img {
    height: 30px;
}

.menubar .nav li {
    margin-bottom: 10px;
    position: relative;
    padding: 0;
}

.menubar .nav li a {
    font-size: 1.1rem;
    background: transparent !important;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    /* padding-left: 3rem; */
    position: relative;
    padding: 10px 0;
    flex-wrap: wrap;
}

.menubar .nav li a>span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding-left: 2rem;
}

.menubar .nav li a:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 90%;
    content: '';
    z-index: 1;
    border-radius: 0 10px 10px 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;

}

.menubar .nav li a.active:before,
.menubar .nav li a:hover:before {
    background: #2bc48a;
}

.menubar .nav li a.active span.icon,
.menubar .nav li a:hover span.icon {
    color: #ffffff;
}

.menubar .nav li a span.icon {
    text-align: left;
    display: flex;
    flex: 0 0 25%;
    justify-content: center;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    color: #2bc48a;
}

.menubar .nav li img {
    height: 30px;
    width: auto;
}

.menubar .active img {
    filter: brightness(0) invert(1);
}

.menubar .nav li:hover  img {
    filter: brightness(0) invert(1);
}

main {
    flex: 1 1 auto;
    display: flex;
    /* flex-wrap: wrap; */
    padding: 15px 30px 15px 250px;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;

}



body.login main {
    padding: 15px;
}

body.login main .page-content {
    padding: 0;
}

.topbar .profile {
    position: relative;
    display: flex;
    align-items: center;
}

.topbar .profile img {
    height: 45px;
}

.topbar .search input[type=text] {
    background-color: #272e48;
    padding: 10px 15px 10px 70px;
    border-radius: 10px;
    border: 0;
    box-shadow: none;
    color: #fff;
    background-image: url(../images/icons/search.png);
    background-size: 25px 25px;
    background-position: 20px center;
    background-repeat: no-repeat;
    font-size: 14px;
}

.topbar .search input::placeholder {
    color: #fff;
}

.topbar .notification svg {
    height: 30px;
}

.topbar .notification .badge {
    position: absolute;
    top: -6px;
    right: -7px;
    display: flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.topbar .notification a {
    color: #fff;
}

.topbar .notification a:hover {
    color: #ccc;
}

.page-content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 2rem 3rem;
    flex: 1 1 auto;
    justify-content: center;
    width: 100%;
}

.page-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.page-title span {
    font-weight: 400;
}

.tv-content {
    width: 90%;
}

.tv-content .video {
    height: 462px;
    border-radius: 10px;
    background-color: #1E2128;
}

.tv-content .tv-playlist {
    border-radius: 10px;
    background-color: #1E2128;
}

.tv-content .tv-playlist .title {
    padding: 15px 20px;
    font-weight: 600;
}


.tv-content .tv-playlist .list a {
    display: block;
    color: #fff;
    padding: 4px 45px;
    border-bottom: 2px solid #24272d;
    position: relative;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.tv-content .tv-playlist .list a:last-child {
    border-bottom: 0;
}

.tv-content .tv-playlist .list a:active,
.tv-content .tv-playlist .list a:hover {
    color: #2bc48a;
}

.tv-content .tv-playlist .list a:before {
    content: '';
    width: 8px;
    height: 8px;
    background: #2bc48a;
    position: absolute;
    left: 20px;
    top: 10px;
    border-radius: 100%;
    box-shadow: 0 0 0 3px #1e2128, 0 0 0 5px #2bc48a;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-thumb {
    background: #2bc48a;
    border: 0px none #ffffff;
    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2bc48a;
}

::-webkit-scrollbar-thumb:active {
    background: #2bc48a;
}

::-webkit-scrollbar-track {
    background: #444b54;
    border: 0px none #ffffff;
    border-radius: 50px;
}

::-webkit-scrollbar-track:hover {
    background: #444b54;
}

::-webkit-scrollbar-track:active {
    background: #444b54;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

.plan-content {
    width: 90%;
}


.price-item {
    border-radius: 10px;
    background-color: #1d2127;
    padding: 2.5rem 2rem;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
}

.price-item .title {
    margin-bottom: 1.5rem;
    width: 100%;
}

.price-item .list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
}

.price-item .list li {
    display: block;
    position: relative;
    font-size: .8rem;
    padding: 12px 0 12px 18px;
    border-bottom: 2px solid #24272d;
    color: #ffffff;
    font-weight: 200;
    background: url(../images/icons/check.svg) left 16px no-repeat;
    background-size: 11px 11px;
}

.price-item .btn {
    border-width: 2px;
    color: #fff;
}

.price-item .price {
    font-weight: 300;
}

.price-item .price span {
    font-size: .75rem;
}

.owl-nav.disabled {
    display: none;
}



.account-content .detail {
    border-radius: 15px;
    background-color: #40444c;
    padding: 3rem;
}

.account-content form label {
    font-size: .85rem;
}

.account-content .btn {
    border-radius: 15px;
    font-weight: 600;
    padding-left: 2rem;
    padding-right: 2rem;
}

.select-box:focus,
.select-box:active,
.select-box {
    background: #1e2128;
    color: #7d7e81;
    border: 1px solid #2bd092;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbG5zOnN2Z2pzPSJodHRwOi8vc3ZnanMuY29tL3N2Z2pzIiB4PSIwIiB5PSIwIiB2aWV3Qm94PSIwIDAgMTIzLjk1OSAxMjMuOTU4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyIiB4bWw6c3BhY2U9InByZXNlcnZlIj48Zz48Zz48cGF0aCBkPSJNMTE3Ljk3OSwyOC4wMTdoLTExMmMtNS4zLDAtOCw2LjQtNC4yLDEwLjJsNTYsNTZjMi4zLDIuMyw2LjEsMi4zLDguNDAxLDBsNTYtNTYmIzEwOyYjOTsmIzk7QzEyNS45NzksMzQuNDE3LDEyMy4yNzksMjguMDE3LDExNy45NzksMjguMDE3eiIgZmlsbD0iI2ZmZiIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIvPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48L2c+PC9zdmc+");
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 16px 12px !important;
    box-shadow: none;
}

.select-box option {
    background: #1e2128 !important;
    color: #7d7e81 !important;
    border: 1px solid #2bd092 !important;
}

.font-weight-thin {
    font-weight: 400;
}

.w-auto {
    width: auto !important;
}

.films-bg {
    background-color: #21262c;
    width: calc(100% + 30px);
}


.films-container {
    padding: 0 3rem;

}


.film {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    margin-top: 30px;
    margin-bottom: 30px;
}

.film:hover {
    transform: translateY(-20px);
}

.film .film-img {
    border-radius: 12px;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.2);
}

.film .film-title {
    margin-top: 11px;
    margin-bottom: 0.1rem !important;
    width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;

}

.film .film-category {
    color: #2BC48A;
    font-size: 12px;
}

.films .film-rate {
    position: absolute;
    top: 15px;
    left: 15px;
    border-radius: 71%;
    border: 1px solid #2bd092;
    background: #32363bf2;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bouqet-content {
    width: 95%;
}

.bouqet-content .content {
    border-radius: 12px;
    background-color: #40444c;
    padding: 2rem;
    margin-bottom: -23px;
}

.channel-item {
    position: relative;
    padding: 9px;
    background-color: #FFFFFF;
    border-radius: 10px;
    color: #3c3c3c;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 30px;
}

.channel-item .title {
    font-size: .85rem;
    margin-bottom: 0;
}

.toggle .toggle-handle:after,
.toggle .toggle-handle:before {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
}

.toggle .toggle-handle:after {
    margin-left: -3px;
}

.toggle .toggle-handle:before {
    margin-left: 3px;
}

.toggle.off .toggle-handle {
    margin-left: 33px;
    background-color: #8f8f8f !important;
}

.bouqet-content .btn-success {
    border-radius: 15px;
    font-weight: 600;
    padding-left: 2rem;
    padding-right: 2rem;
}

.login-box {
    padding: 1.4rem;
    background-color: #121929;
    border-radius: 15px;
    padding-bottom: 4rem;
    margin-bottom: -30px;
}

.login-form .form-control {
    background-color: #272E48;
    color: #64688b;
    border-radius: 15px;
    border: 0;
    background-position: calc(100% - 10px) center;
    background-repeat: no-repeat;
    background-size: 25px;
    padding-right: 40px;
}

.login-form .form-control.username {
    background-image: url(../images/icons/login/fingerprint.png);
}

.login-form .form-control.password {
    background-image: url(../images/icons/login/lock.png);
}

.login-form label.custom-checkbox {
    font-size: .85rem;
    font-weight: 300;
}


.login-form .forgot-password {
    font-size: .8rem;
    color: #fff;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.login-form .forgot-password:hover {
    color: #2BC48A;
}

.custom-checkbox {
    display: inline-block;
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: .85rem;
    font-weight: 300;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #272e48;
    border-radius: 5px;
    border: 2px solid #575b7d;
}



.custom-checkbox input:checked~.checkmark {
    background-color: #2dc78a;
    border-color: #2dc78a;
}

.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.login-content .btn-success {
    border-radius: 40px;
    font-weight: 600;
    padding-left: 2rem;
    padding-right: 2rem;
}

.text-smaller {
    font-size: .85rem;
}

.settings-content {
    width: 70%;

}

.settings-content .select-box:active,
.settings-content .select-box:focus,
.settings-content .select-box {
    appearance: none;
    background-color: #252B32;
    background-image: url(../images/icons/down.svg);
    border-radius: 15px;
    padding: 10px 50px 10px 25px;
    color: #fff;
    font-size: .85rem;
}

.settings-content .select-box option:hover {
    background-color: #cccccc;
    color: #fff !important;
    border: 1px solid #2bc48a !important;
}

.settings-content .detail .form-control {
    background-color: #1E2128;
    border: 0;
    color: #6e6e6e;
}

.settings-content .detail .form-control.with-icon {
    background-image: url(../images/icons/security-lock.png);
    background-position: 16px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-left: 50px;
}


.settings-content .detail .custom-checkbox .checkmark {
    background-color: transparent;
    border: 1px solid #2bc48a;
}

.settings-content .detail .custom-checkbox .checkmark:after {
    left: 8px;
    top: -3px;
    width: 9px;
    height: 15px;
    border: solid #2bc48a;
    border-width: 0 3px 3px 0;
}

.toggle-menu {
    width: 40px;
    height: 40px;
    color: #1d2127;
    font-size: 23px;
    line-height: 40px;
    text-align: center;
    background: #2bc48a;
    position: absolute;
    top: 22px;
    border-radius: 5px;
    right: -50px;
}


.toggle-menu:hover {
    color: #1d2127;
}

aside.menu.opened {
    left: 0;
}


.category-card .category-text {
    z-index: 1;
}

.category-card {
    background-color: #1d2128;
    overflow: hidden;
}

.card-bg-icon img {
    width: 90px !important;
}

@media (max-width:1024px) {
    .card-bg-icon {
        position: absolute;
        bottom: -12px;
        right: -39px;
        transform: rotate(332deg);
    }
}

.card-bg-icon {
    position: absolute;
    bottom: 13px;
    right: 0;
    transform: rotate(308deg);
    z-index: 0;
}

.owl-dots {
    margin-top: 25px !important;
}

.font-weight-bold-lg {
    font-weight: 800;
}

.font-weight-bold-md {
    font-weight: 700;
}


.film-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -35px;
    margin-top: -35px;
}

.film-play-button img {
    width: 70px;
}

.film-play-button i {
    font-size: 34px;
}


.film-detail-img img {
    border-radius: 12px;
}

.film-badge {
    background-color: white;
    padding: 7px;
    color: black;
    margin: 5px;
    font-size: 12px;
}

.film-content {
    padding: 0 15px;
    width: 70%;
    margin: 0 auto;
}

.dropdown-item.active,
.dropdown-item:active {
    color: white !important;
    text-decoration: none;
    background-color: #2bc48a;
}

.webSearch {
    display: block;
}

.mobileSearch {
    display: none;
}


@media (max-width:992px) {
    .topbar .profile img {
        height: 37px;
    }

    .user-name {
        display: none !important;
    }

    .mobileSearchBlock {
        background-color: #272e489e;
        padding: 1em;
        border-radius: 9px;
    }

    .mobileSearch {
        display: block;
        width: 25px;
    }

    .modal-dialog {
        top: 35% !important;
        padding: 2em;

    }

    .modal-body-bg {
        background-color: #272e48f2;
    }

    .webSearch {
        display: none;
    }
}
