.md-modal {
position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.md-show {
visibility:visible;
}

.md-overlay {
display: none;
position:fixed;
width:100%;
height:100%;
top:0;
left:0;
z-index:1000;
opacity:0.8;
background:#000;
transition:all 0.3s;
}

.md-show ~.md-overlay {
opacity:0.8;
visibility:visible;
}

.md-content {
color:#000;
background:#fff;
width: 600px;
margin: 30px auto;
}

.pt-15 {
    padding: 0px 0px 0px 15px !important;
}

.md-close {
width:30px;
height:30px;
cursor:pointer;
float: right;
font-size: 29px;
font-weight: 700;
line-height: 1;
color: #e92229;
text-shadow: 0 1px 0 #fff;
filter: alpha(opacity=20);
}

.md-trigger {
cursor:pointer;
}

.md-effect-1 .md-content {
/*-ms-transform:scale(0.7);
transform:scale(0.7);*/
opacity:0;
transition:all 0.3s;
}

.md-show.md-effect-1 .md-content {
-ms-transform:scale(1);
transform:scale(1);
opacity:1;
}

.popup {
    padding: 15px;
}

.popup input[type='text'] {
    height: 45px;
    margin: 0;
    border: 1px solid #dadbdd;
    outline: none;
    border-radius: 3px;
    font-size: 16px;
    float: left;
}
.popup textarea {
    height: 70px;
    margin: 0;
    padding: 10px;
    border: 1px solid #dadbdd;
    outline: none;
    border-radius: 3px;
    font-size: 16px;
    margin: 0 0 20px 0;
    float: left;
}

button.red {
background-color:#e92229;
color:#ffffff;
border:2px solid #e92229;
font-size:24px;
text-decoration:none;
padding:0px 40px;
border-radius:5px;
}

button.red:hover {
cursor:pointer;
background-color:red;
border:2px solid red;
}

.popup select {
    /* float: left; */
    clear: left;
    height: 45px;
    /* width: 250px; */
    padding: 0 5px;
    font-size: 16px;
    margin: 0px 0px 20px 0px;
    border: solid 1px #dadbdd;
}

@media screen and (max-width: 800px) {
.md-content {
    color: #000;
    background: #fff;
    width: auto;
    margin: 10px;
}
}

.modal1_error
{
color: #e92229;
}