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.6);
    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: 36px;
}

.lightbox-close-icon,
.lightbox-nav div {
    position: absolute ;
    background: rgba(0, 0, 0, 0.6);
    font-size: 12pt;
	width: 36px;
    line-height: 1;
    text-align: center;
    color: #fff;
    padding: .5rem;
    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 {
    right: 4px;
    top: 4px;
    width: 40px;
}

.lightbox-nav div:hover {
    background: rgba(0, 0, 0, 0.9);
}

.lightbox-prev {
    left: 4px;
}

.lightbox-next {
    right: 4px;
}

.lightbox-inner {
    position: absolute;
    top: 50%;
    width: calc(90% - 36px);
    left: 50%;
    box-sizing: border-box ;
    margin-left: calc(-45% + 18px);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: .5rem;
    overflow: hidden ;
    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;
}








