/* lightbox css */
.remove-scroll {
    overflow: hidden
}

.lightbox-hide {
    top: -9999px;
    left: -9999px;
    position: absolute;
    visibility: hidden
}

.lightbox-container {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2em;
    z-index: 9999;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    position: fixed;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #1d1d1d;
    background-color: rgba(29, 29, 29, .8)
}

.lightbox-wrapper {
    position: relative
}

.lightbox-image {
    max-height: 100vh;
    vertical-align: middle
}

.lightbox-btn {
    width: 2.2em;
    height: 2.2em;
    position: absolute;
    border-radius: 50%;
    -webkit-transition: all .3s;
    transition: all .3s;
    background-color: #000;
    background-position: center;
    background-repeat: no-repeat
}

.lightbox-btn:disabled {
    cursor: initial;
    background-color: #adadad
}

.lightbox-btn-close {
    border: 0;
    top: -.8em;
    right: -.8em;
    background-size: 40%;
    background-image: url(../images/icons/icon-lightbox-close.svg)
    
}


.lightbox-btn-next,
.lightbox-btn-previous {
    border: 0;
    top: calc(50% - (2.2em / 2));
    background-size: 25% 80%;
    background-image: url(../images/icons/icon-lightbox-arrow.svg)
}

.lightbox-btn-previous {
    left: 1.5em;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg)
}

.lightbox-btn-next {
    right: 1.5em
}

.lightbox-video-wrapper {
    width: 80vw;
    overflow: hidden;
    position: relative;
    padding-bottom: 56.25%
}

.lightbox-video-player {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@-webkit-keyframes createBox {
    from {
        -webkit-transform: scale(0);
                transform: scale(0)
    }

    to {
        -webkit-transform: scale(1);
                transform: scale(1)
    }
}

@keyframes createBox {
    from {
        -webkit-transform: scale(0);
                transform: scale(0)
    }

    to {
        -webkit-transform: scale(1);
                transform: scale(1)
    }
}

@-webkit-keyframes deleteBox {
    from {
        -webkit-transform: scale(1);
                transform: scale(1)
    }

    to {
        -webkit-transform: scale(0);
                transform: scale(0)
    }
}

@keyframes deleteBox {
    from {
        -webkit-transform: scale(1);
                transform: scale(1)
    }

    to {
        -webkit-transform: scale(0);
                transform: scale(0)
    }
}