
img{
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}
img:hover,
img:focus {
    border: none!important;
    opacity: 1;
}

video{
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}
video:hover,
video:focus {
    border: none!important;
    opacity: 1;
}
.lightbox {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0 0 0 / 80%);
    display: none;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}
.lightbox__close {
    background-color: rgb(89, 10, 163);
    color: #ffffff;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.8rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    border: none;
    transition: all .6s;
}
.lightbox__close:hover{
    color: #000;
    background-color: #ffffff;
    transition: all .6s;
}
.lightbox img{
    max-height: 90%;
    max-width: 50%;
}
.lightbox video{
    max-height: 90%;
    max-width: 80%;
}
.overflow-hidden {
    overflow: hidden;
}

