:root {
    --theme_color: #D9000D;
}

body.scroll {
    overflow: hidden;
  }

.video-img-container {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.video-img-container-itm {
    width: 350px;
    height: 200px;
    margin: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    transition: .3s ease-in-out;
    cursor: pointer;
}

.video-img-container-itm .iconify {
    color: #fff;
    position: absolute;
    width: 60px;
    height: 60px;
}

.video-img-container-itm .player {
    width: 120%;
    height: 100%;
}

.lightbox {
    background-color: #000;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    user-select: none;
    transform: scale(0);
    transition: .3s ease-in-out;
    user-select: none;
}

.lightbox.active {
    transform: scale(1);
}

.lightbox-top {
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
}

.lightbox-top-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lightbox-top-right-count {
    color: rgb(173, 173, 173);
    font-size: 18px;
    margin-right: 20px;
}

.lightbox-top-right-count span {
    color: rgb(173, 173, 173);
    font-size: 18px;
}

.lightbox-top .iconify {
    width: 25px;
    height: 25px;
    color: #fff;
    cursor: pointer;
}

.lightbox-top .iconify:hover {
    color: var(--theme_color);
}

.lightbox-controller {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
}

.lightbox-controller .iconify {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 10px;
    color: #fff;
}

#prev-btn {
    left: 0;
}

#prev-btn:hover > .prev-btn-ico {
    background-color: rgba(255, 255, 255, 0.164);
    color: var(--theme_color);
}

#next-btn {
    right: 0;
}

#next-btn:hover .next-btn-ico {
    background-color: rgba(255, 255, 255, 0.164);
    color: var(--theme_color);
}

.lightbox-viewer {
    width: 100%;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-viewer img,
.lightbox-viewer audio,
.lightbox-viewer video {
    max-width: 100%;
    max-height: 100%;
}