/* Generic Lightbox Styles */
.upsell {
    position: absolute;
    width: 100%;
    height: 100%;
}

.upsell > .upsell_background {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;

    opacity: .7;
    width: 100%;
    height; 100%;
    z-index: 10000;
    background: #333;
}

.upsell > .upsell_lightbox {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;

    width: 100%;
    height; 100%;
    z-index: 10001;
}

.upsell > .upsell_lightbox > .upsell_desktop {
    max-width: 500px;
    display: block;
    background: #FFF;
    margin: 30px auto 10px;
}

.upsell > .upsell_lightbox > .upsell_mobile {
    display: none;
}

@media screen and (max-width: 600px) {
    .upsell > .upsell_lightbox > .upsell_desktop {
        display: none;
    }
}
