/*-------- VIDEO GALLERY -----------*/

.ytb_gallery {
    margin: 3vw 0;
}
.ytb_gallery .item {
    position: relative;
    z-index: 1;
    display: inline-block;
}
.ytb_gallery .item:before {
    content: "";
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    position: absolute;
    height: 40px;
    width: 40px;
    display: block;
    z-index: 1;
    background-size: cover;
    /* background-image: url("https://image.flaticon.com/icons/svg/482/482059.svg"); */
    background-image: url("../img/youtube.svg");
}

.lbx {
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    z-index: 99;
}
.lbx.enabled {
    display: block;
}
.lbx .toggle_button {
    padding: 10px;
    left: 60px;
    z-index: 100;
    color: rgb(255, 0, 0);
    padding: 90px;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.lbx .lbx_content {
    position: fixed;
    max-height: 80vh;
    max-width: 80vw;
    transform: translate(-50%, -50%);
    top: 60%;
    left: 50%;
    height: 100%;
    width: 100%;
}
.lbx iframe {
    height: 90%;
    width: 100%;
    border: none;
    outline: 0;
}

/*-------- END VIDEO GALLERY -----------*/
