.modal_background {
    background-color: #00000077;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    z-index: 4;
}
.modal_background.modal-open {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
}
/* The side navigation menu */

.contact-form-outer {
    display: block;
    margin: 0 auto;
    position: fixed;
    top: 50%;
    left: 50%;
    padding: 24px 70px;
    max-width: 100%;
    background: #ffffff;
    box-sizing: border-box;
    border-radius: 6px;
    z-index: 999999999;
    box-shadow: 0 32px 68px rgb(0 0 0 / 30%);


    -webkit-transform: translate(-50%, 100%);
    -moz-transform: translate(-50%, 100%);
    -ms-transform: translate(-50%, 100%);
    -o-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);

    visibility: hidden;
    transition-duration: 1s;
    transition-timing-function: ease;
    transition-delay: 0s;
    transition-property: all;
}
.contact-form-outer.modal-open {

    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    visibility: visible;
    transition-duration: 1s;
    transition-timing-function: ease;
    transition-delay: 0s;
    transition-property: all;
}
.contact-form-outer input{
    padding: 13px 7px;
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid #333333;
    font-size: 22px;
    color: #777777;
    width: 280px;
}
.contact-form-outer label{
    font-size: 120%;
    font-weight: bold;
}
.contact-form-outer p{
    font-size: 70%;
}
.contact-form-outer textarea{
    padding: 13px 7px;
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid #333333;
    font-size: 22px;
    color: #777777;
    width: 280px;
    height: 130px;
}
@media (min-width: 782px){
    .contact-form-outer {
        max-width: 66%;
    }
}
@media (max-width: 783px){
    .contact-form-outer {
        max-width: 100%;
    }
}

.contact_button {
    position: fixed;
    display: flex !important;
    align-items: center;
    justify-content: center;
    right: 2px;
    top: 50%;
    height: 50px;
    width: 50px;
    background-color: var(--dark-green);
    box-shadow: 15px 3px 45px #00000066;
    border-radius: 50px;
    z-index: 99999999;
}
.contact_button a{
    padding: 0 !important;
    background-color: transparent !important;
    height: 20px;
}
.contact_button a svg{
    fill: none;
    stroke: var(--white);
}
