/* general */
div#modal-window h1,
div#modal-window h2,
div#modal-window h4,
div#modal-window h5,
div#modal-window h6 { text-align: center; margin-bottom: 5px; }

/* overlay */
div#overlay {
    position: absolute;
    background: #000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: alpha(opacity=50);
    opacity: .5;
    z-index: 500;
    cursor: pointer;
}

div#overlay.hide { display: none; }

/* modal window */
div#modal-window {
    position: absolute;
    display: block;
    height: 205px;
    top: 50%;
    left: 50%;
    z-index: 1000;
    background: #EF3200;
    opacity: 0.9;
    padding: 25px 15px 15px;
    border: 1px solid rgba(0,0,0,.2);
    -webkit-transition: top .4s ease-in-out;
    -moz-transition: top .4s linear;
    -o-transition: top .4s linear;
    -ms-transition: top .4s linear;
    transition: top .4s linear;
    width: 80%;
    max-width: 500px;
    border-radius: 6px;
    color: #fff;
    transform: translate(-50%, -50%);
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
    box-shadow: 0 3px 9px rgba(0,0,0,.5);
}

div#modal-window.hide { top: -1000px; display: block; }

/* close button */
div#modal-window .btn {
    float: right;
    cursor: pointer;
}

@media screen and (max-width: 960px) {
    div#modal-window .button { position: absolute; top: 10px; right: 10px; }
}
