/**
 * @preserve jQuery modal plugin v1.0
 * @email ongi.ua@gmail.com
 * (c) 2014, Alexandra Bespalova
 */

.overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 99;
    top: 0;
    left: 0;
}
.modal {
    opacity: 0;
    visibility: hidden;
    text-align: center;
    top: 17%;
    width: 380px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    color: #000;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 25px 20px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);

}

.open-modal {
    transition: opacity .5s;
    opacity: 1;
   visibility: visible;
    -webkit-animation: zoomIn .8s;
    animation: zoomIn .8s;
    z-index: 111;
    position: fixed;
}
@-webkit-keyframes pulse {
    0% {transform: scale(1);}
    50% {transform: scale(1.09);}
    0% {transform: scale(1);}
}

@keyframes pulse {
    0% {transform: scale(1);}
    50% {transform: scale(1.09);}
    0% {transform: scale(1);}
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 10px;
    cursor: pointer;
    width: 20px;
    text-indent: -9999px;
    background: url(../img/close.png) no-repeat;
    transition: 0.5s;
    height: 20px;
    z-index: 1;
}
.modal-close:hover{
    transform: scale(1.1);
}

.modal br{
    display: none;
}
.modal form{
    width: 80%;
    margin: 10px auto;
}
.modal input{
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #c7c7c7;
    margin: 10px 0;
}
.modal .btn{
    min-width: 100%;
    margin: 20px 0;
}
@media screen and (max-width: 650px) {
   .modal{
       width: 98%;
       padding: 10px;
   }
    .modal iframe{
        width: 100%;
    }


}







 







