div#floating-content {
    display: none;
    position: fixed;
    left: -270px;
    top: 25%;
    z-index: 9;
    padding: 15px;
    background: #E14938;
    width: 270px;
    transition: 500ms ease all;
}
div#floating-content .fc-button {
    background: #E14938;
    color: #fff;
    font-size: 18px;
    padding: 10px 15px;
    position: absolute;
    right: -67px;
    top: 26%;
    z-index: 9;
    transform: rotateZ(90deg);
    cursor: pointer;
}
div#floating-content.fc-show {
    left: 0;
}
div#floating-content .wpcf7 input.wpcf7-submit {
    float: left;
    color: #fff;
}
div#floating-content .wpcf7 span.wpcf7-not-valid-tip {
    color: #FFF;
    display: inline-block;
}
div#floating-content .wpcf7 div.wpcf7-response-output {
    color: #fff;
}
@media (min-width: 767px) {
  div#floating-content {
      display: block;
  }
}