body {
    background-color: #f8f7f7;
    font-family: 'nikosh';
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 3px solid #eee;
}

.navbar {
    box-shadow: 0px 0px 14px -7px #000d;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    margin-right: 5px;
}

.navbar-brand span {
    font-weight: bold;
    color: rgb(61 61 61 / 90%);
}

.navbar-content {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.navbar-nav {
    flex-direction: row !important;
}

.nav-item {
    padding-left: 10px;
}

.container>.row {
    margin-top: 75px;
}

.container .card {
    box-shadow: 0px 0px 10px -9px #000;
}

.playable-div {
    min-height: 82vh;
    max-height: 82vh;
    overflow: hidden;
}

.playable-video-content {
    border: 1px solid #ddd;
    border-radius: 7px;
}

.playable-video {
    width: 100%;
    height: 420;
    border-radius: 7px;
}

.playable-title {
    font-size: 2rem;
    line-height: 3rem;
}

.playable-description {
    border-radius: 12px;
    background-color: lightgray;
    max-height: calc(82vh - 490px);
    overflow: hidden;
    text-overflow: ellipsis;
}

.playable-description>p {
    font-size: 1.1rem;
}

.list-div {
    min-height: 82vh;
    max-height: 82vh;
    overflow: hidden;
}

.playlist {
    position: relative;
    height: calc(82vh - 18px);
    overflow: hidden;
    padding-bottom: 110px;
}

.stack1--medium {
    position: absolute;
    top: -4px;
    width: calc(100% - 16px);
    height: 100%;
    left: 8px;
    right: 8px;
    border-radius: 8px;
}

.stack1 {
    background-color: rgb(153, 153, 153);
    margin-top: -1px;
    border-top: 1px solid #fff;
}

.stack2 {
    background-color: rgb(153, 153, 153);
    opacity: 50%;
    position: absolute;
    top: -8px;
    width: calc(100% - 24px);
    height: 100%;
    left: 12px;
    right: 12px;
    border-radius: 12px;
}

.category-box {
    position: relative;
    overflow: hidden;
    border-radius: 7px;
}

.category-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0000001f;
}

.playlist-img-size {
    height: 70px;
    width: 100%;
    object-fit: contain;
    opacity: 0.1;
}

.category-content {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-content>p {
    white-space: nowrap;
    width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.8rem;
    font-weight: bold;
}

.category-content>strong {
    font-size: 2.0rem;
    font-weight: bold;
}

.video-list {
    position: relative;
    height: calc(82vh - 18px);
    overflow: hidden;
    padding-bottom: 110px;
}

.video-box {
    position: relative;
    overflow: hidden;
    border-radius: 7px;
}

.video-active {
    background: lightgray;
}

.video-img-container {
    flex: 0 0 25%;
    max-width: 25%;
    padding-right: 5px;
}

.video-img-size {
    height: fit-content;
    object-fit: cover;
    border-radius: 7px;
}

.video-content {
    flex: 0 0 65%;
    max-width: 65%;
}

.video-title {
    white-space: normal;
    width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.1rem;
}

.video-description {
    white-space: nowrap;
    width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.0rem;
    color: gray;
}

.footer-wrapper {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    background-image: linear-gradient(90deg, rgba(62, 90, 12, .52157), rgb(230 238 215));
}


@media screen and (max-width: 576px){
    .navbar-brand span {
        display: none;
    }
    .navbar-nav {
        margin: 0!important;
    }
    .playable-video {
        height: 300px;
    }
    .playable-div {
        min-height: 54vh;
        max-height: 54vh;
    }
    .p-sm-0 {
        padding: 0;
    }
}