body.show-lightbox {
    height: 100%;
    width: 100%;
}

.lightbox-wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9300;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-nav {
    position: absolute;
    width: 100%;
    max-width: 1450px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 36px;
    z-index: 1;
}

.lightbox-close-icon, .lightbox-nav div {
    position: absolute;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-size: 16px;
    font-family: sans-serif;
    width: 30px;
    height: 30px;
    line-height: 1;
    text-align: center;
    color: #000;
    cursor: pointer;
    transition: ease opacity 0.3s;
    border-radius: 100rem;
    font-weight: 600;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.lightbox-close-icon {
    right: 1rem;
    top: 1rem;
}

.lightbox-close-icon:hover, .lightbox-nav div:hover {
    opacity: 0.5;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-inner {
    box-sizing: border-box;
    cursor: pointer;
    padding: 0;
        width: 100%;
    height: 100%;
}

.responsive-container {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.responsive-container.video-embed {
    min-height: auto;
}

.responsive-container iframe, .responsive-container img {
    top: 0;
    left: 0;
    width: 85%;
    height: 85%;
    max-width: 1350px;
    max-height: 900px;
}

.responsive-container img {
    object-fit: contain;
    object-position: center;
    box-sizing: border-box;
}

.responsive-container .lightbox-caption {
    position: absolute;
    width: 70%;
    left: 50%;
    margin-left: -35%;
    line-height: 1;
    bottom: 1.5rem;
    text-align: center;
    color: #fff;
    padding: .5rem 2rem;
    cursor: pointer;
    border-radius: 10px;
    font-weight: 600;
    box-sizing: border-box;
    font-family: sans-serif;
    font-size: 12px;
    text-shadow: 0px 0px 2px #000;
}
