﻿/* OLD CHECKOUT.CSS */
#overlayBackground {
    background-color: black;
    width: 100%;
    height: 1px;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    position: absolute;
    opacity: 0.6;
}


.overlay-flex-parent {
    display: flex;
    width: 100%;
    height: 1px;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    position: absolute;
    -webkit-flex-flow: column;
    flex-flow: column;
    -webkit-box-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
}
 .overlay-flex-parent .overlay-wrapper { 
        width: 450px;
        background: #fff;
        border-radius: 5px;
        position: relative;
    }
  .overlay-flex-parent .overlay-wrapper.no-header .header-wrapper {
            display: none;
        }
#overlayContainer { 
    position: relative;
    overflow: visible !important;
}

.glow-dark {
    box-shadow: 0px 60px 80px 5px rgba(0, 0, 0, 0.85);
    position: relative;
    z-index: 10;
}


@media only screen and (max-width: 800px) and (min-width: 450px) and (max-height: 625px) {
    .overlay-flex-parent {
        display: block;
        padding-left: 5px;
        padding-right: 5px;
        padding-top: 5px;
        box-sizing: border-box;
    }

        .overlay-flex-parent .overlay-wrapper {
            position: static;
            margin-left: auto;
            margin-right: auto;
        }
}


/* View for mobile devices*/
@media only screen and (max-width: 450px) {
    .overlay-flex-parent {
        display: block;
        padding-left: 5px;
        padding-right: 5px;
        padding-top: 5px;
        box-sizing: border-box;
    }

        .overlay-flex-parent .overlay-wrapper {
            width: 100%;
            position: static;
        }

}

