@charset "utf-8";
/* CSS Document */

/* mPopup box style */
.mpopup {
    display: none;
    position: fixed;
    z-index: 12000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    
}
.mpopup-content {
    position: relative;
    background-color: #029246;
    margin: auto;
    padding: 0;
    max-width: 650px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
	border-radius: 2rem;
}

.mpopup-head {
    padding:0px;
    color: white;
	height:auto;
}
.mpopup-main {padding: 1.5rem; background-color: #029246; border-radius: 1rem;     max-height:500px;
    overflow: hidden;}
    
.mpopup-main input[type="text"]{

}
.mpopup-main input[type="submit"]{
    padding: 5px;
    font-size: 15px;
    font-weight: bold;
    background-color: #333;
    outline: none;
    border: none;
    color: #fff;
    cursor: pointer;

}
.mpopup-foot {
    padding: 2px 16px;
    background-color: #1e357b;
    color: #ffffff;
}

/* add animation effects */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* close button style */

.close{

position: absolute;
top:10px;
right:10px;
z-index:10009;

}

.close {
    color: #fff;
    
    font-weight: bold;
	
}
.close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}


::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: black;
}
::-moz-placeholder { /* Firefox 19+ */
  color: black;
}
:-ms-input-placeholder { /* IE 10+ */
  color: black;
}
:-moz-placeholder { /* Firefox 18- */
  color: black;
}