html,
body {
    height: 100%;
    overflow-x: hidden;
}

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

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

::-webkit-scrollbar-track {
    background-color: #353535;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #ffffff7e;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #eee;
}

body {
    font-size: 14px;
    line-height: 10px;
    background-color: #353535;
    color: white;

    display: grid;
    grid-template-rows: auto auto 1fr auto;
    min-height: 100vh;

    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
}

.mainbody {
    padding-bottom: 20px;
}

.mainbody .row {
    margin: 0px;
}

.required {
    color: #ff0000;
}

.page-header {
    margin-top: 0px;
    border-bottom: 1px solid #19dccc;
    padding-top: 10px;
    padding-bottom: 0px;
}

.page-header h1 {
    margin-top: 0px;
    font-size: 24px;
}

.panel-body {
    width: 100%;
    margin: 0 auto;
}

.panel-body .col-lg-3 {
    margin: 25px;
    border: 1px solid #05f7c2;
    padding: 10px;
}

.adjustImage {
    border: 1px solid rgba(0, 0, 0, 0.705);
    text-align: center;
    width: auto;
    margin: 0 auto;
}

.adjustImage img {
    max-width: 200px;
    max-height: 200px;
    border: 1px solid rgba(0, 0, 0, 0.705);
}

.textContainer {
    width: 100%;
    padding-top: 10px;
}

.btn-social {
    padding-top: 5px;
}

.footer-copyright {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 17px 0;
    border-radius: 0px;
    height: auto;
    background-color: rgb(88, 10, 10);
}

.footer-copyright a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.form-control:focus {
    color: black;
    border-color: #ff0000;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.795), 0 0 10px rgba(206, 0, 0, 0.6);
}

.about {
    font-size: medium;
    text-decoration: none;
    color: rgb(247, 191, 8);
    line-height: 120%;
}

.about-head {
    color: rgb(236, 104, 15);
}

.sidenav {
    position: absolute;
    right: 0;
    width: 0px;
    display: none;
    z-index: 999;
    background: transparent;
    box-shadow: -10px 10px 512px 256px #000000cc;
    transition: .5s;
    /* .flex-column */
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.modal-content {
    background-color: rgb(0, 0, 0);
}

.overflow-auto {
    overflow: auto;
    height: 100%;
}

#folderList {
    font-size: 23px;
    overflow: hidden;
    padding: 10px 0px;
    margin-left: 20px;
}

#fileList {
    font-size: 20px;
    overflow: hidden;
    padding: 1px 10px 1px 0px;
    margin-left: 25px;
}

#videoWrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

#videoPlayer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    overflow: hidden;
}

video::-internal-media-controls-download-button {
    display: none !important;
}

#VideoPlayerModal {
    background-color: rgb(0, 0, 0);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
    z-index: 9999;
    overflow: hidden !important;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    z-index: 9999;
}