body.lb-disable-scrolling {
    overflow: hidden;
}

.lightboxOverlay {

    top: 0;
    left: 0;
    z-index: 9999;
    background-color: white;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    /*opacity: 0.8;*/
    display: none;
    height: 100% !important;
    position: fixed !important;
    width: 100% !important;
}

.lightbox {
    left: 0;
    width: 100%;
    z-index: 10000;
    text-align: center;
    line-height: 0;
    font-weight: normal;
    outline: none;
    display: flex;
    flex-direction: column-reverse;
    align-content: center;
    align-items: center;
    height :100%;
    position: fixed !important;
    top: 0 !important;
    justify-content: center;
}

.lightbox .lb-image {
    display: block;
    height: auto;
    max-width: inherit;
    max-height: 680px;
    border-radius: 16px;
    object-fit: cover;

    /* Image border */
    border: 4px solid white;
}

.lightbox a img {
    border: none;
}

.lb-outerContainer {
    position: relative;
    *zoom: 1;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 4px;

    /* Background color behind image.
       This is visible during transitions. */
    background-color: white;
}

.lb-outerContainer:after {
    content: "";
    display: table;
    clear: both;
}

.lb-loader {
    position: absolute;
    top: 43%;
    left: 0;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
}

.lb-cancel {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background: url(../img/loading.gif) no-repeat;
}

.lb-nav {
    position: absolute;
    bottom: -82px;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    max-height: 64px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    max-width: 392px;
    width: 100%;
}

.lb-container > .nav {
    left: 0;
}

.lb-nav a {
    outline: none;
    background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
    width: 64px;
    height: 64px;
    transition: .4s ease-in-out;
    cursor: pointer;
    display: block;
}

.lb-nav a.lb-prev {
    left: 0;
    float: left;
    background: #FDDBD2 url(../img/prev.png) center no-repeat;
    transition: .4s ease-in-out;
    border-radius: 32px 8px 8px 32px;
}

.lb-nav a.lb-prev:hover {
    cursor: pointer;
    background: #F7471E url(../img/prev-hover.png) center no-repeat;
    transition: .4s ease-in-out;
}

.lb-nav a.lb-next {
    right: 0;
    float: right;
    background: #FDDBD2 url(../img/next.png) center no-repeat;
    transition: .4s ease-in-out;
    border-radius: 8px 32px 32px 8px;
}

.lb-nav a.lb-next:hover {
    cursor: pointer;
    background: #F7471E url(../img/next-hover.png) center no-repeat;
    transition: .4s ease-in-out;
}

.lb-dataContainer {
    margin: 0 auto 26px;
    padding-top: 5px;
    *zoom: 1;
    width: 100%;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.lb-dataContainer:nth-child(2) {
    margin: 0 auto;
    padding-top: 0;
    width: 100%;
    position: relative;
}

.lb-dataContainer:after {
    content: "";
    display: table;
    clear: both;
}

.lb-data {
    padding: 0;
    color: #ccc;
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    position: absolute;
    right: 0;
    top: -70px;
    height: 806px;
    justify-content: flex-end;
}

.lb-data .lb-details {
    width: 100%;
    text-align: center;
    letter-spacing: 0.005em;
    font-size: 16px;
    line-height: 24px;
    color: #212121;
    font-weight: normal;
    font-family: 'Roboto', sans-serif;
    position: absolute;
    bottom: -11px;
}

.lb-data .lb-caption {
    font-size: 13px;
    font-weight: bold;
    line-height: 1em;
}

.lb-data .lb-caption a {
    color: #4ae;
}

.lb-data .lb-number {
    display: block;
    clear: left;
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    color: #36485C;
}

.lb-data .lb-close {
    display: block;
    float: right;
    width: 64px;
    height: 64px;
    background-image: url(../img/close.png);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 24px;
    text-align: right;
    outline: none;
    transition: .0s ease-in-out;
    cursor: pointer;
}

.lb-data .lb-close:hover {
    transform: scale(1.1);
    transition: 0s ease-in-out;
}

.lb-number::first-letter {
    color: #F7471E;
}