.formBtn {
    position: fixed;
    z-index: 9;
    right: -75px;
    top: 50%;
    transform: rotate(90deg);
    cursor: pointer;
    animation: pulse3 1.5s infinite;
    border-radius:0px 0px 50px 10px;
    background: #71b100;
    padding: 10px 25px;
}
.formBtn span i{
    margin-right: 5px;
}
.formBtn span{
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}
@keyframes pulse3 {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255,255,255,.5);
        box-shadow: 0 0 0 0 rgb(0 0 0 / 50%);
    }
    70% {
        -moz-box-shadow: 0 0 0 30px rgba(255,255,255,0);
        box-shadow: 0 0 0 30px rgb(0 0 0 / 0%);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255,255,255,0);
        box-shadow: 0 0 0 0 rgb(0 0 0 / 0%);
    }
}
.form-holder {
    border-radius: 0px 0px 10px 10px;
    line-height: 20px;
    text-align: center;
    width: 320px;
    font-size: 12px;
    position: fixed;
    right: -400px;
    box-sizing: border-box;
    padding: 40px 30px;
    background-color: #fff;
    z-index: 10;
    height: auto;
    display: table;
    top: 50%;
    transition: all .6s cubic-bezier(.42,0,.07,.99);
    transform: translateY(-50%);
    box-shadow: -1px 1px 19px 6px #00000024;
}
.close {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #fff;
    font-size: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 29px 0 rgb(0 0 0 / 30%);
    left: -17px;
    top: -10px;
    color: black;
    cursor: pointer;
}
.form-inner {
    display: table-cell;
    vertical-align: middle;
}
.form-holder .form-title {
    color: #435363;
    text-align: center;
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: 'Questrial', sans-serif;
}
.contact_form>UL {
    margin: 0;
    padding: 0;
}
.contact_form>ul>LI {
    margin: 0 0 7px;
    padding: 0;
    list-style: none;
    font-size: 8pt;
    position: relative;
    color: #fff;
    float: left;
    width: 100%;
    display: inline-block;
}
.contact_form .form-text, .contact_form .form-textarea {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-family: 'Questrial', sans-serif;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    height: 37px;
    line-height: 32px;
    padding-left: 10px;
    background: 0 0;
    border: 0;
    border-bottom: solid 1px #435363;
    resize: none;
    color: #435363;
}
.contact_form ul .lispan {
    width: calc(100% - 25px);
    float: right;
    position: relative;
    top: -4px;
    text-align: left;
    font-family: 'Questrial', sans-serif;
    font-size: 12px;
    color: #435363;
}
.contact_form ul .lispan a{
    color:#435363;
    text-decoration: underline;
}
input[type=checkbox]:not(old), input[type=radio]:not(old) {
    margin: 0;
    padding: 0;
    float: left;
    width: 16px;
    height: 16px;
}
.form-submit {
    width: 100%;
    height: 40px;
    border: 0;
    background-color: #71b100;
    color:#fff;
    text-align: center;
    font-size: 16px;
    margin: auto;
    font-weight: 700;
    -webkit-appearance: none;
    appearance: none;
    margin-top: 10px;
}
.formTel a {
    display: block;
    color: #71b100 !important;
    font-size: 18px;
    font-weight: 700;
}

.contact_form .form-text::placeholder, .contact_form .form-textarea::placeholder {
    color:#435363;
    font-size: 13px;
}
.contact_form .form-textarea {
    height: 69px;
}
.formTel {
    position: relative;
    display: table;
    margin: auto;
    margin-top: 20px;
}
.form-holder.active {
    right: 0;
}
