.form_submit {
    height: 325px;
    overflow: hidden;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1003;
}

#test_form {
    position: relative;
}

.submit_ok {
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    display: block;
    color: red;
    font-family: monospace;
    background-color: #03ff03;
    margin: 0 auto;
    width: 90%;
}

.submit_back {
    width: 100%;
    top: 0px;
    right: 0px;
    left: 0px;
    position: fixed;
    background-color: #000000a1;
    margin: 0 auto;
    height: 1000px;
    z-index: 1001;
}

#close_form {
    cursor: pointer;
    right: 0px;
    position: absolute;
    float: right;
    font-size: 25px;
}

.add_close {
    position: absolute;
    top: 15px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    z-index: 50;
}

.submit_note {
    margin: 5px;
    font-weight: 700;
}

.submit_font {
    margin: 15px;
    font-size: 18px;
    font-family: monospace;
}

.carousel-control .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 44px;
    color: #f3e0a8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    line-height: 1;
}

.enquiry_loader {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid #d9d9d9;
    border-top-color: #1b5e20;
    border-radius: 50%;
    animation: enquiry_spin 0.8s linear infinite;
    margin: 0 auto 8px auto;
}

@keyframes enquiry_spin {
    to {
        transform: rotate(360deg);
    }
}

@media(max-width:500px) {
    .form_submit {
        overflow-Y: scroll;
    }

    .submit_note {
        margin: 2px;
        font-weight: 100;
        font-size: 12px;
    }

    .submit_font {
        margin: 10px;
        font-size: 12px;
        font-family: monospace;
    }
}