@charset "utf-8";

.policyTable {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 18px;
}

.policyTable th,
.policyTable td {
  padding: 8px 10px;
  border: 1px solid #d9d9d9;
  text-align: left;
  vertical-align: top;
}

.policyTable th {
  background-color: #f4f4f4;
  font-weight: 500;
}

.policyTable tr:nth-child(even) td {
  background-color: #fafafa;
}

.contactForm {
  margin-top: 24px;
}

.contactForm__notice {
  margin: 0 0 16px;
  padding: 10px 12px;
  border-left: 4px solid;
  background: #f6f6f6;
}

.contactForm__notice--success {
  border-left-color: #1f7a1f;
}

.contactForm__notice--error {
  border-left-color: #b31c1c;
}

.contactForm__row {
  margin-bottom: 14px;
}

.contactForm__row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contactForm__field {
  margin: 0;
}

.contactForm label {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 400;
}

.contactForm input,
.contactForm textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #c8c8c8;
  border-radius: 3px;
  font: inherit;
  box-sizing: border-box;
}

.contactForm textarea {
  min-height: 132px;
  resize: vertical;
}

.contactForm__actions {
  margin: 18px 0 0;
}

.contactForm button {
  background-color: white;
  background-image: url("../images/icons/link.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto auto;
  box-shadow: var(--shadow-elevation-medium);
  display: inline-block;
  padding: 10px 20px 10px 40px;
  text-decoration: none;
  transition: all 0.75s ease;
  color: black;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 0 0 0 5px;
  border: 0;
  cursor: pointer;
}

.contactForm button:hover,
.contactForm button:focus-visible {
  box-shadow: var(--shadow-elevation-high);
  transition: all 0.25s ease;
}

@media only screen and (max-width: 1080px) {
}

@media only screen and (max-width: 780px) {
  .contactForm__row--two {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
