.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50%;
    max-width: 625px;
    min-width: 250px;
    height: auto;
    z-index: 2000;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity:1;
}

#popup {
    display:none
}

.popup-content {
    color: #fff;
    position: relative;
    border-radius: 3px;
    margin: 0 auto;
    display:none;
}

.popup-content H3 {
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 20px;
}

.popup-text{
    display:block;
    padding-top: 30px !important;
}

.promotion_title {
    font-size: 1.5em;
    color: #db52ea;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.promotion_text{
    font-size: 1em;
    color: #db52ea;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.popup-text-img{
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}

.popup-text-img img{
    width:3em;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    top: 0;
    left: 0;
    z-index: 1000;
    opacity: 0.6;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #b2b2b2;
}

#close {
    background: url(../images/close.png) no-repeat;
    height: 49px;
    width: 49px;
    position: absolute;
    right: -25px;
    top: -25px;
    z-index: 9999;
    cursor: pointer;
    opacity: 1;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}

#close:hover {
    opacity: 0.2;
}
