body.show-lightbox {
    height: 100%;
    width: 100%;
    overflow: hidden ;
}

.lightbox-wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9300;
}

.lightbox-close {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.lightbox-close-icon:hover {
    background: rgba(0, 0, 0, 0.9);
}

.lightbox-nav {
    position: absolute ;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 80px;
    z-index: 300;
}

.lightbox-close-icon,
.lightbox-nav div {
    position: absolute ;
    font-size: 8rem;
    width: 46px;
    line-height: 1;
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: background ease 0.3s;
    border-radius: 10px;
    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 {
    left:50%;
    margin-left:-20px;
    top: 1rem;
    width: 40px;
    border-radius: 0;
    font-weight: 300;
    font-size: 4rem;
    z-index: 300;
    text-shadow: 0px 0px 3px #000;
    background:#00000052;
}

.lightbox-nav div:hover {
    opacity: 0.9;
}

.lightbox-prev {
    left: -46px;
}

.lightbox-next {
    right: -46px;
}

.lightbox-inner {
    position: absolute;
    top: 50%;
    width: calc(90% - 46px);
    left: 50%;
    box-sizing: border-box ;
    margin-left: calc(-45% + 23px);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: .5rem;
    border-radius: 1rem;
    cursor: pointer;
}

.responsive-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    min-height: 80vh;
}

.responsive-container.video-embed {
    min-height: auto;
}

.responsive-container iframe,
.responsive-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden ;
}
 
.responsive-container img {
    padding: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: auto;
    object-fit: contain;
    max-height: 800px;
    width: 100%;
    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;
}






