.video-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
}

.container-inner {
    display: flex;
    min-height: 100vh;
    height: 100vh;
    width: 100%;
    padding: 50px 0 20px;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
}

.container-inner .video-modal__wrapper {
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
}

.container-inner .video-modal__wrapper .close-btn-box {
    line-height: 2rem;
}

.container-inner .video-modal__wrapper .close-btn-box .close-btn {
    border: 0 none;
    outline: 0 none;
    background-color: transparent;
    font-size: 1.75rem;
    font-family: PMZD, PH Regular;
    color: #fff;
    line-height: 2rem;
    display: flex;
    align-items: center;
}

.container-inner .video-modal__wrapper .close-btn-box .close-btn:hover {
    cursor: pointer;
}

.container-inner .video-modal__wrapper .close-btn-box .close-btn:hover::before {
    margin-right: 15px;
}

.container-inner .video-modal__wrapper .close-btn-box .close-btn::before {
    content: '';
    display: inline-block;
    height: 1px;
    width: 45px;
    background-color: #fff;
    vertical-align: super;
    margin-right: 20px;
    transition: .3s;
}

.container-inner .video-modal__wrapper .video-player-inner {
    width: 100%;
    height: 100%;
}

.container-inner .video-modal__wrapper .video-player-inner .wrapper {
    /* width: 100%; */
    max-width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    /* overflow: hidden; */
}

.container-inner .video-modal__wrapper .video-player-inner .wrapper .video-js {
    width: 100%;
    height: auto;
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: rgb(31, 31, 31);
}

body::-webkit-scrollbar-track {
    border-radius: 5px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.8);
    width: 10px;
    background-color: rgba(31, 31, 31, 0.8);
}

body::-webkit-scrollbar-thumb {
    border-radius: 2px;
    box-shadow: inset 0 0 6px rgba(0, 162, 255, 0.8);
    width: 10px;
}