﻿.nlaOverlay {
    position: absolute;
    top: 0px;

    width: 100%;
    min-width: 50px;
    max-width: 100px;
}

.nlaOverlayContainer {
    position: absolute;
    top:0px;
    left: 0px;
    right: 0px;

    width: calc(100% - 30px);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.shadow-box {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;

    background-color: black;
    opacity: 0.4;

    z-index: 2000;
}

.shadow-box-contents {
    position: fixed;
    top: 50%;
    margin-top: -262px; /* (514/2) + 5 */
    margin-left: -205px; /* (400/2) + 5 */
    left: 50%;

    box-sizing: content-box;
    width: calc(100vw - 40px);
    max-width: 400px;
    height: calc((100vw - 40px) * 9 / 7);
    max-height: 514px;
    padding: 5px;
    border-radius: 5px;

    background-color: rgba(0,0,0,0.5);
    box-shadow: 0px 0px 10px 10px rgba(0,0,0,0.5);

    z-index: 2001;
}

.item > img.product-image,
img.product-image {
    max-width: 100%;
}

.product-carousel {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 440px) {
    .shadow-box-contents {
        left: 0px;
        margin-left: 15px;
        top: 0px;
        margin-top: calc(50vh - 50% - 30px);
    }
}