.menu-button {
    font-size: 25px;
    cursor: pointer;
    color: white;
    display: table-cell;
    vertical-align: middle;
}

.menu-content {
    width: 250px;
    position: fixed;
    top: 0;
    background-color: #101214;
    transition: all 0.5s;
    z-index: 1001;
}

#left-menu {
    left: -250px;
    height: 100%;
}

#right-menu {
    right: -250px;
}

#language-menu {
    right: -250px;
}

.menu-header {
    height: 60px;
    width: 100%;
    border-bottom: 2px solid #27292b;
}

.menu-content a,
.menu-content p {
    padding: 15px 20px;
    text-decoration: none;
    /* text-transform: uppercase; */
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    transition: 0.3s;
    font-family: 'Krub', sans-serif;
    border-bottom: 2px solid #27292b;
}

.menu-content a:hover {
    color: #fff;
}

.menu-content .menu-closebtn {
    padding: 5px;
    padding-top: 12px;
    font-size: 25px;
    border-bottom: none;
}

#left-menu .menu-closebtn {
    text-align: right;
    margin-right: 10px;
}

#right-menu .menu-closebtn {
    text-align: left;
    margin-left: 10px;
}

.menu-options p {
    color: white;
    border-bottom: 2px solid #27292b;
    margin: 0;
    padding: 20px 25px;
}

.menu-options .menu-selected {
    border-left: 5px solid #9fbfdf;
    padding-left: 0;
    color: #fff;
}

.menu-options .selected a {
    color: #fff;
}

.menu-header-logo {
    text-align: center;
}

.menu-header-logo img {
    max-height: 50px;
    max-width: 200px;
    width: auto;
    height: auto;
    margin-top: 3px;
    margin-bottom: -3px;
}

div.categories-list {
    padding-left: 0;
    border-bottom: 2px solid #27292b;
}

div.categories-list div.category-item {
    padding: 0;
}

div.categories-list div.category-item a {
    border: 0;
    background: #27292b;
    font-size: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

#all-channels-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item-left-container {
    display: flex;
    align-items: center;
    justify-content: start;
}

div.categories-list div.category-item a span {
    font-size: 20px;
    font-weight: 700;
    margin-right: 5px;
}

div.categories-list div.category-item .category-item-inital a span {
    width: 150px;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*Scroll*/
.menu-list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #27292b;
}

.menu-list::-webkit-scrollbar {
    width: 5px;
    background-color: #27292b;
}

.menu-list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: white;
}

.menu-list {
    height: 100%;
    overflow-y: scroll;
    cursor: pointer;
}

.category-channels-list {
    display: none;
    min-width: 240px;
    max-width: 240px;
    overflow-y: auto;
    overflow-x: hidden;
}

.category-item > a {
    display: flex; 
    justify-content: flex-start;
    align-items: center;
}

.category-item > a i{
    margin-right: 10px;
}

.category-item > a img {
    margin-right: 10px;
}

.category-item > a span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 200px;
}

/* 
#left-menu .category-item:hover .category-channels-list {
    display: block;
} */

.category-item-text-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #27292b;
    padding-right: 10px;
}

.category-item-final > i {
    color: white;
    width: 17.5px;
    height: 21px;
}

div.categories-list div.category-item .category-channels-list a {
    padding-left: 40px;
    background-color: #0f1216;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.loader {
    border: 4px solid rgba(98, 104, 109, 0.7);
    border-top: 4px solid rgb(32, 37, 41);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
