body {
font-family: Arial;
font-size:14px;
}

.simplePopup {
display:none;
position:fixed;
z-index:999999;
padding:12px;
width:100%;
height: 100vh;
top: 0;
left: 0;
background-color: rgba(0,0,0,0.8);
}


.simplePopupBackground {
display:none;
position:fixed;
height:100%;
width:100%;
top:0;
left:0;
z-index:1;
}

.simplePopupClose{
    position: absolute;
    top: 10px;
    right: 10px;
    display:inline-block;
    width:35px;
    height:35px;
    overflow:hidden;
    border:none;
    background:transparent;
    cursor: pointer;
    z-index: 999;
}
.simplePopupClose:before{
    transform:rotate(45deg)
}
.simplePopupClose:after{
    transform:rotate(-45deg)
}
.simplePopupClose:before,.simplePopupClose:after{
    content:'';
    position:absolute;
    height:2px;
    width:100%;
    top:50%;
    left:0;
    margin-top:-1px;
    background:#fff;
    border-radius:5px;
    margin-top:-6px
}

.simplePopupClose:hover{
    opacity:0.5;
}

.popupform {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 60%;
    min-width: 60%;
    margin: 0 auto;
    background: #fff;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .popupform {
        width: 100%;
        min-width: 100%;
    }

    .popupform .contact_form ul li {
        margin-bottom: 0;
    }

    .formpopup .simplePopupClose:before, 
    .formpopup .simplePopupClose:after {
        background-color: #8b5e3c;
    }
}
