/**
*Plugin Name: chrisdiferente contact form
* Plugin URI:
* Description:  
* Author:       chrisdiferente
* Version:     1.0
*/
.controls {
  margin-left: 0px;
  margin-right: 20px;
  background: rgba(120, 185, 181, 0.3);
  border-radius: 10px;
  padding: 35px;
}

.form-contact-title {
  text-align: center;
  margin-top: -10px;
  margin-bottom: 10px;
}

.btn-form {
  color: #003666;
  margin-top: 20px;
  margin-left: 20px;
  text-align: center;
  justify-content: center;
  left: 40%;
  cursor: pointer;
  position: relative;
  padding: 10px 20px;
  background: transparent;
  font-size: 1rem;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: all 1s;
}
.btn-form:after, .btn-form:before {
  content: " ";
  width: 10px;
  height: 10px;
  position: absolute;
  border: 0px solid #fff;
  transition: all 1s;
}
.btn-form:after {
  top: -1px;
  left: -1px;
  border-top: 5px solid #003666;
  border-left: 5px solid #003666;
}
.btn-form:before {
  bottom: -1px;
  right: -1px;
  border-bottom: 5px solid #78B9B5;
  border-right: 5px solid #78B9B5;
}
.btn-form:hover {
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.btn-form:hover:before, .btn-form:hover:after {
  width: 100%;
  height: 100%;
}

.btn-form a {
  color: #78B9B5;
  text-decoration: none;
  position: relative;
  z-index: 100;
}

.btn-form a:hover {
  color: #78B9B5;
  text-decoration: none;
}

.form-control {
  display: block;
  width: 250px;
  padding: 0.375rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  color: #245050;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #000000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  height: 50px;
  margin-top: 10px;
}

.divider {
  position: relative;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 40px;
  margin-top: 30px;
}

.divider:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  border: 1px solid #f0f0f0;
  left: 50%;
  margin-left: -15px;
  top: 50%;
  background: #fff;
  margin-top: -15px;
  transform: rotate(45deg);
}

.divider:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #2ca5b9;
  left: 50%;
  margin-left: -10px;
  top: 50%;
  background: #2ca5b9;
  margin-top: -10px;
  transform: rotate(45deg);
}

.float-button {
  text-decoration: none;
  position: relative;
  padding: 10px;
  padding-right: 15px;
  bottom: 0;
  right: 0;
  color: #fff;
  background-color: #003666;
  border-radius: 25px 30px 5px 25px;
  z-index: 100;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 17px;
  animation: whatsapp-animation 0.5s ease-in-out;
  box-shadow: 1px 2px 5px 2px rgba(30, 30, 30, 0.3);
  transition: all 0.3s ease-out;
  margin-left: 220px;
}

.float-button:hover {
  background-color: #78B9B5;
  color: #fff;
}

.fa-whatsapp {
  font-size: 20px !important;
  padding-right: 5px;
  padding-left: 5px;
}

@keyframes whatsapp-animation {
  from {
    opacity: 0%;
  }
  to {
    opacity: 100%;
  }
}
@media screen and (max-width: 545px) {
  /**
  span {
      display: none;
  }
      **/
  .float-button {
    bottom: 15px;
    right: 15px;
    width: 20px;
    border-radius: 20px 20px 5px 20px;
  }
  .fa-whatsapp {
    font-size: 22px !important;
    padding: 4px;
  }
}
.form-div {
  margin-left: -50px;
}/*# sourceMappingURL=style.css.map */