@charset "UTF-8";


/*contact form 7*/

.block-editor .wpcf7-list-item {
    margin: 0 1em 0 0;
    line-height: 2;
}
.block-editor .wp-block-table.table-contact table tr td [type="text"],
.block-editor .wp-block-table.table-contact table tr td [type="email"],
.block-editor .wp-block-table.table-contact table tr td [type="tel"] {
    width: 100%;
    padding: 1.5rem;
    font-size: 18px;
    border: 1px solid #ededed;
    background: #fff9e8;
}
.block-editor .wp-block-table.table-contact table tr td.name [type="text"],
.block-editor .wp-block-table.table-contact table tr td.name [type="tel"]{
     width: 20rem;
     margin: 1rem 0;
}
.block-editor .wp-block-table.table-contact table tr th p,
.block-editor .wp-block-table.table-contact table tr td p{
    margin-bottom: 0;    
}

.block-editor .wp-block-table.table-contact table tr td select {
    position: relative;
    border: 1px solid #CCC;
    background: #FFF;
    margin-right: 0.25em;
    padding: 1.5rem;
    display: inline-block;
    width: 30rem;
    font-size: 1.4rem;
}

.block-editor .wp-block-table.table-contact table tr td textarea {
    height: 100px;
    background: #FFF;
    width: 100%;
    border: 1px solid #ededed;
    background: #fff9e8;
}

.block-editor .contact__btn{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}



.block-editor .contact__btn input[type="submit"] {
    width: 100%;
    max-width: 400px;
    padding: 2rem 10rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    color: #FFF;
    background: #e15b26;
    font-size: 2.4rem;
    border-radius: 200px;
    -webkit-box-shadow: 0 0.5rem 0 #bf4612;
    box-shadow: 0 0.5rem 0 #bf4612;
    transition: 0.3s;
}
.block-editor .contact__btn input[type="submit"]:hover{
    -webkit-transform: translateY(0.5rem);
    transform: translateY(0.5rem);
    -webkit-box-shadow: none;
    box-shadow: none;
}


@media screen and (max-width: 767px){

    .block-editor .wp-block-table.table-contact table tr td {
        border-left: 1px solid #ccc;
        border-right: 1px solid #ccc;
    }

    .block-editor .contact__btn input[type="submit"] {
        margin: 3rem 0 0;
        padding: 1.5rem 6rem;
        font-size: 2rem;
        max-width: 100%;
        width: 100%;
    }
    
    .block-editor .wp-block-table.table-contact table tr td select {
        padding: 1rem;
        display: inline-block;
        width: 7.2rem;
        font-size: 1.4rem;
    }
}