/*========================== POPUP ==========================*/

.moeb-popup{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index:999999;
}
.moeb-popup .moeb-popup-shadow{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.moeb-popup .moeb-popup-dialog{
    background-repeat: no-repeat;
    background-position: 25px center;
    background-size: auto 185px;
    border-radius: 5px;
    padding: 30px 30px 30px 115px;
    position: absolute;
    left: 0;
    right: 0;
    margin:80px auto;
    min-width:320px;
    width: 480px;
    
}
@media (max-width: 480px){
    .moeb-popup .moeb-popup-dialog{
        padding:15px;
        width:100%;
    }
}

.moeb-popup .moeb-popup-dialog .moeb-popup-title{
    font-size:2.2rem;
    padding: 15px 0;
}
.moeb-popup .moeb-popup-dialog .moeb-popup-content{
    font-size:1.4rem;
    padding: 15px 0;
}
.moeb-popup .moeb-popup-dialog .moeb-popup-footer{
    padding-top: 15px;
}
.moeb-popup .moeb-popup-dialog .moeb-popup-footer .btn{
    font-weight:bold;
    margin:0 15px 0 0;
    min-width:96px;
}

/*========================== COLORS ==========================*/
.moeb-popup .moeb-popup-shadow{
    background-color:rgba(0,0,0,0.5);
}
.moeb-popup .moeb-popup-dialog{
    background-color:#fff;
    box-shadow: 0 0 10px -7px #333;
}

.moeb-popup .moeb-popup-footer .btn-close{
    background:#bbb;
    border-color:#bbb;
}

.moeb-popup .moeb-popup-footer .btn-close:active,
.moeb-popup .moeb-popup-footer .btn-close:focus,
.moeb-popup .moeb-popup-footer .btn-close:hover{
    background:#999;
    border-color:#999;
}

.moeb-popup.moeb-popup-warning .moeb-popup-dialog{
    background-image:url('../img/icon-warning.png');
    border:2px solid #F3A211;
}
.moeb-popup.moeb-popup-warning .moeb-popup-dialog .moeb-popup-title{
    color:#F3A211;
}

.moeb-popup.moeb-popup-error .moeb-popup-dialog{
    background-image:url('../img/icon-error.png');
    border:2px solid #FF5722;
}
.moeb-popup.moeb-popup-error .moeb-popup-dialog .moeb-popup-title{
    color:#FF5722;
}

.moeb-popup.moeb-popup-info .moeb-popup-dialog{
    background-image:url('../img/icon-success.png');
    border:2px solid #5CB85C;
}
.moeb-popup.moeb-popup-info .moeb-popup-dialog .moeb-popup-title{
    color:#5CB85C;
}

.moeb-popup.moeb-popup-question .moeb-popup-dialog{
    background-image:url('../img/icon-info.png');
    background-position: 7px center;
    border:2px solid #19C0D6;
}
.moeb-popup.moeb-popup-question .moeb-popup-dialog .moeb-popup-title{
    color:#19C0D6;
}