.contact_page_overlay{
    background: rgba(211, 211, 211, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99998;
    display: none;
    transition: all .3s ease-in-out;

}
.contact_page_popup{
    position: fixed;
    width: 90%;
    max-width: 1000px;
    min-width: 20%;
    top: 50%;
    left: 50%;
    background: white;
    z-index: 99;
    transform: translate(-50%, -50%);
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 24px;
    /* display: none; */
    opacity: 0;
    transition: all .3s ease-in-out;
    z-index: -1;

}
.show-popup{
    display:block; 
    transition: all .3s ease-in-out;

}
.show-popup-animation{
    opacity: 1;
    transition: all .3s ease-in-out;
    z-index: 99999;

    height: 90%;
    overflow: scroll;
    scrollbar-width: none;

}

.popup_close:after{
    content: '×';
    display: block;
    color: inherit;
    font-size: 1.5rem;
    line-height: 12px;
    opacity: 0.5;
    transition: all ease 0.2s;
    cursor: pointer;

    position: absolute;
    right: 34px;
    top: 17px;
}
.mc4wp-form-fields input[type="submit"] {
    cursor:pointer;
}
.wpcf7 input[type="text"],.wpcf7 input[type="email"],.wpcf7 input[type="tel"]  {
    /* float: right; */
    border-style: solid;
    border-color: gray;
    border-width: 1px;
    border-radius: 10px;
    padding: 6px;
}
.wpcf7 p{
    margin-bottom: 10px;

    display: flex;
    justify-content: space-between;
    width: 100%;
}
.wpcf7 p{
    line-height: 24px;
    font-size: 22px;
}

.wpcf7 input[type="submit"] {
    background: rgba(232, 59, 59);
    color: white;
    width: 100%;
    border-radius: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
}
.note p{
    font-size: 16px;
}
.wpcf7 input[type="checkbox"]{
    margin-right: 10px;

}


@media screen and (max-width:715px) {
    .wpcf7 p{
        font-size: 16px;


    }
    .wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"] {
        width: 145px;

    }
    
}