.daft-overlay{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    top: 0px;
    left: 0px;
    z-index: 9998;
}

.daft-popup-form{
    display: none;
    position: fixed;
    width: 400px;
    height: auto;
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    top: 0;
    left: 50%;
    margin: 100px 0 0 -200px;
    z-index: 9999;
}

.daft-popup-form textarea{
    height: 100px !important;
}

.daft-close{
    position: absolute;
    top: -10px;
    right: -10px;
    background: white;
    display: block;
    border-radius: 100%;
    width: 29px;
    height: 29px;
    text-align: center;
    line-height: 24px;
    font-size: 18px;
    border: 3px solid #73af46;
}

.btn-daft-popup{
    cursor: pointer;
}

@media screen and (max-width: 900px) {
    .daft-popup-form{
        width: 90%;
        margin: 20px 0 0 -45%;
    }
}