.contact-form-container {
    color: black;
    line-height: normal;
    width: 100%;
}


.contact-form-form {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    width: 300px;
}

.contact-form-name, .contact-form-email, .contact-form-textarea {
    margin-top: 20px;
    flex: 1 1 100%;
    width: 100%;
}

.contact-form-textarea {
    resize: none;
    border: none;
    background-color: #F3F2F2 !important;
    color: #7E7979;
    padding-top: 15px;
    padding-left: 15px;
}

.contact-form-textarea:focus {
    outline: none;
}

.contact-form-name, .contact-form-email {
    height: 53px;
    background-color: #F3F2F2 !important;
    border: none;
    border-bottom: 1px solid #fff;
    color: #7E7979;
    padding-left: 15px;
}

.contact-form-email {
    margin-top: 1.5em;
}

.contact-form-name:focus, .contact-form-email:focus {
    outline: none;
}

.contact-form-name::placeholder, .contact-form-email::placeholder {
  color: #7E7979;
}

.contact-form-name {
}

.contact-form-email {
}

.contact-form-checkbox {
    margin-top: 10px;
    flex: 1 1 5%;
    border: none;
    cursor: pointer;
    display: none;
}

.contact-form-checkbox + label::before {
  border: 1px solid #fff;
  border-radius: 2px;
  content: "\00a0";
  display: inline-block;
  padding: 0;
  width: 15px;
  margin-right: 5px;
  line-height: 1em;
}

.contact-form-checkbox:checked + label:before {
  color: black;
  content: "x";
  line-height: 1em;
}

.contact-form-checkbox  + label {
   margin-top: 5px;
   display:inline-block;
   user-select: none;
   cursor: pointer;
}

.contact-form-checkbox:checked + label {
    display:inline-block;
}

.contact-form-button {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    color: inherit;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: bold;
    border-radius: 0;
    border: 0 !important;
    padding: 15px 80px 15px 60px;
    background-color: white;
}

.contact-form-button-wrap {
  margin-bottom: 9px;
  
}

.contact-form-button-prewrap {
  justify-content: flex-end;
  align-items: end;
  position: absolute;
  bottom: 0;
  right: 0;

  @media screen and (max-width: 576px) {
    justify-content: flex-start;
    margin-top: 10px;
    position: unset;
  }
}


.contact-form-button:hover {
    background-color: black;
}

.contact-form-hr {
    display: inline-block !important;
    width: 100%;
    height: 1px;
    background-color: #33cc66;
    border: none;
    margin-top: 0;
}

.err_msg {
  width: 100%;
  text-align: left;
  margin-top: 5px;
  padding-left: 15px;
  font-size: 14px;
}

/* SHAPES */

.triangle-up-right {
  position: absolute;
  right: 0;
  top: 0;
}

.triangle-down-left {
  position: absolute;
  left: 0;
  top: 0;
}

.contact-form-wrapper {
  display: flex;
  position: relative;
  overflow: hidden;
}

.recaptcha {
  margin-top: 20px;
}

@media screen and (max-width: 55em) {
  .triangle-up-right,
  .triangle-down-left {
    display: none;
  }
}
