.contact,
.contact-us {
  aside {
    display: none;
  }

  .contact-content {
    width: 100%;
    padding-bottom: 50px;
    text-align: left;

    @media (min-width: 768px) {
      display: flex;
    }

    section {
      @media (min-width: 768px) {
        display: flex;
        max-width: 100%;
      }
    }
  }

  .contact-form {
    @media (min-width: 768px) {
      width: 50%;
      padding-right: 50px;
    }
  }

  .office-info {
    @media (min-width: 768px) {
      width: 50%;
    }
  }

  h2 {
    font-size: 28px;
    text-transform: none;
  }

  .gmaps {
    width: 100%;
    margin-bottom: 16px;

    iframe {
      width: 100%;
      height: 400px;
    }
  }

  .contact-information {
    @media (min-width: 768px) {
      display: flex;
    }

    > div,
    > address {
      @media (min-width: 768px) {
        font-size: 14px;
        width: 50%;
      }

      @media (min-width: 1060px) {
        font-size: 16px;
      }
    }
  }

  .location-details {
    width: 100%;
    padding-bottom: 20px;

    span {
      display: block;
    }
  }

  .location-hours {
    padding-bottom: 20px;

    .hours-each {
      display: flex;

      > div {
        width: 50%;
      }
    }
  }
}

.gmaps {
  width: 100%;
  margin-bottom: 16px;
  border: 1px solid rgb(from var(--dark-color) r g b / 0.2);

  iframe {
    display: block;
    width: 100%;
    height: 200px;
  }
}

form {
  .text-inputtype,
  .email-inputtype,
  .tel-inputtype {
    width: 100%;
    height: 48px;
    padding-left: 10px;
    background: var(--light-color);
  }

  select {
    width: 100%;
    height: 38px;
    appearance: none;
    padding-left: 10px;
    border-radius: 0;
    margin-bottom: 16px;
    background: url('images/svg/select-arrow.svg');
    background-position: right 18px center;
    background-repeat: no-repeat;
    background-size: 17px 11px;
    background-color: #f9f9f9;
    border: 1px solid rgb(from var(--dark-color) r g b / 0.2);
  }

  textarea {
    width: 100%;
    margin-bottom: 16px;
    padding-left: 10px;
    padding-top: 10px;
    border: 1px solid #c9c9c9;
  }

  input[type="radio"] {
    margin-right: 10px;
  }

  .type-text {
    font-size: 12px;
  }

  .button {
    border: none;
  }

  .type-singlelinetext,
  .type-textarea {
    label {
      display: block;
      position: absolute;
      left: -10000px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    input {
      margin-bottom: 1em;
      padding: 1em;
      border: 1px solid rgb(from var(--dark-color) r g b / 0.2);
    }
  }

  .stopyenoh {
    position: absolute;
  }
}

.disclaimer {
  font-size: 12px;
  line-height: 1.5em;
  font-style: italic;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-3px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(4px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-8px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(8px, 0, 0);
  }
}

/* Converted local SCSS variable to standard CSS root variable */
:root {
  --red: #E74C3C;
}

.field-wrap {
  position: relative;
}

.error {
  border: 1px solid var(--red) !important;
  outline: none !important;
  box-shadow: 0 0 10px var(--red) !important;
  animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

span.error {
  border: none !important;
  box-shadow: none !important;
  font-size: 0;
  top: 28px;
  right: 0;
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url('images/svg/error.svg');
  background-size: 7px 20px;
  background-repeat: no-repeat;
  background-position: center;
}

.confirmation-light {
  .seaforms_confirmation_message {
    color: var(--light-color);
  }
}

.contact {
  .heading {
    text-align: left;
    padding: 0 20px;

    @media (min-width: 1060px) {
      padding: 0 40px;
    }

    @media (min-width: 1290px) {
      /* NEED CLARIFICATION: @include contain($full, 0); */
			padding-right: calc(40px + (50vw - (1210px / 2)));
			padding-left: calc(40px + (50vw - (1210px / 2)));
    }

    h1 {
      margin: 0;
    }
  }

  .location-details {
    font-size: 16px;
    line-height: 1.5em;

    .name {
      font-family: var(--secondary-font);
      color: var(--primary-color);
    }
  }
}