﻿.ko__lightbox-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.75);
    z-index: 997;
}

.ko-lightbox-flex-container {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    z-index: 998;
}

.ko__lightbox-content-wrapper {
    display: block;
    max-height: 85%;
    max-width: 85%;
    z-index: 999;
    overflow-y: auto;
    margin-top: -4rem; /* Offsets the popup window. It looks better higher like this */
    -webkit-transform: translate3d(0,0,0); /* Fixes Lightbox issues on Safari */
}

.ko__lightbox-content {
    padding: 1rem;
}

.ko__lightbox-close-button {
    position: fixed;
    right: 0.5rem;
    top: 0.4rem;
    cursor: pointer;
    color: #d32929;
    font-size: 1.5rem;
    width: 2rem;
    height: 2rem;
    text-align: right;
    line-height: 2rem;
    z-index: 10;
    /*font-weight: bold;
    line-height: 0px;*/
}

    /*.ko__lightbox-close-button:before {
        content: "Git!";
    }*/

.ko__lightbox-content-wrapper-fullscreen {
    width: calc(100% - 7rem);
    height: calc(100% - 7rem);
    max-height: none;
    margin-top: 0;
}

.ko__lightbox-content-fullscreen {
    height: 100%;
    padding: 0;
}

@media (max-width: 736px) {
    .ko__lightbox-content-wrapper {
        margin: 0;
        max-width: 100%;
    }
    .ko__lightbox-content-wrapper-fullscreen {
        width: 100%;
    }
}