#popup {
    background: #fff;
    padding: 40px;
    margin: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-250%);
    width: 100%;
    max-width: 800px;
    border: 2px solid #FF8F36;
    -webkit-box-shadow: 0 0 200px 0 rgba(0,0,0,.18);
    box-shadow: 0 0 200px 0 rgba(0,0,0,.18);
    text-align: center;
    z-index: 1000000000;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}

#popup.active {
    transform: translateX(-50%) translateY(-50%);
}

#popup h2 {
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
}

#popup img {
    width: 80%;
    margin: 0 auto 15px;
    display: block;
    text-align: center;
}



#popup #close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 5px;
    right: 5px;
    color: #FF8F36;
}

#popup #close:hover {
    cursor:pointer;
}

#popup .pre-order-button {
    background: #FF8F36;
    color: #fff;
    padding: 15px 20px;
    width: 100%;
    max-width: 310px;
    margin: 0 auto 30px;
    display: block;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.18);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.18);
}

#popup .pre-order-button:hover {
    background: #fb9a4d;
    -webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,.18);
    box-shadow: 0 0 15px 0 rgba(0,0,0,.18);
}

@media only screen and (max-width : 768px) {
    #popup {
        max-height: 80vh;
        overflow-y: scroll;
    }

    #popup h2 {
        font-size: 1.4rem;
    }
}