/*
 * Colors: Base
\* -------------------------------------------------------------------------- */
/*
 * Colors: System color
\* -------------------------------------------------------------------------- */
/*
 * Colors: Overrides
\* -------------------------------------------------------------------------- */
/*
 * Colors: ADN-club
\* -------------------------------------------------------------------------- */
/** System monospace */
/**
 * Returns a rem value from a number of pixels.
 * Its uses 16px as root font-size
 */
/* -- Not on redesign -- */
/* 1025 is used instead of 1024 because touch devices design is not specified */
/* Scrollbars customization */
/**
 * Returns an url encoded SVG with the given color
 * @param {String} $icon - SVG code
 * @param {String} $color - Final color
 * @return {String} URL encoded svg
 */
/* stylelint-disable function-parentheses-newline-inside */
/* stylelint-enable function-parentheses-newline-inside */
/*
 * https://allyjs.io/tutorials/hiding-elements.html#2017-edition-of-visuallyhidden
 */
/* Mixin to use if touch devices design is specified */
/** Vertical scrollbar with custom color & size
*     @include ad-scrollbars(color, size);
*/
/** Horizontal scrollbar with custom color & size
*     @include ad-scrollbars();
*     @include ad-scrollbars-horizontal(color, size);
*/
.contact-us-signup-message {
  position: fixed;
  top: 25%;
  left: 50%;
  z-index: 1070;
  transform: translate(-50%, -50%);
}

.contact-us-signup-alert {
  padding: 1em;
  animation: fade 5s linear forwards;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.contact-us-signup-alert.show {
  display: block;
}

.contact-us-landing-page {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .contact-us-landing-page {
    margin-top: 3.5rem;
  }
}
@media (min-width: 1025px) {
  .contact-us-landing-page {
    margin-top: 5rem;
    margin-bottom: 10rem;
  }
}
.contact-us-landing-page .section-title {
  font-family: "AdFont", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.37;
  color: rgb(0, 0, 0);
  font-weight: 600;
  margin-top: 0;
}

.contact-us-image {
  margin-bottom: 2.5rem;
}

@media (min-width: 1025px) {
  .contact-us-info {
    padding-left: 5%;
  }
}
@media (min-width: 1440px) {
  .contact-us-info {
    padding-left: 8%;
  }
}
.contact-us-info__section {
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .contact-us-info__section {
    margin-bottom: 3rem;
  }
}

.contact-method {
  display: flex;
  flex-direction: row;
  margin-top: 2rem;
}
.contact-method__icon {
  width: 1.375rem;
  height: 1.375rem;
  margin-right: 1rem;
}
.contact-method__link {
  font-family: "AdFont", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgb(0, 0, 0);
  font-weight: 600;
}
.contact-method__schedule {
  font-family: "AdFont", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgb(0, 0, 0);
  font-weight: 400;
}

.contact-us-form__limiter p:first-child {
  margin-top: 0;
}

.data-protection-info-container {
  margin: 2rem 0 1rem;
  border: 1px solid rgb(224, 224, 224);
  border-collapse: collapse;
}
@media (min-width: 1025px) {
  .data-protection-info-container {
    margin-top: 2.5rem;
  }
}
.data-protection-info-container__more-info {
  display: block;
}
.data-protection-info-container th,
.data-protection-info-container td {
  font-family: "AdFont", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgb(0, 0, 0);
  padding: 0.5rem;
  border: 1px solid rgb(224, 224, 224);
}
@media (min-width: 1025px) {
  .data-protection-info-container th,
  .data-protection-info-container td {
    padding: 0.5rem 1rem;
  }
}
.data-protection-info-container th {
  font-weight: 600;
  background-color: rgb(245, 245, 245);
}
.data-protection-info-container td {
  font-weight: 400;
}

/*# sourceMappingURL=contactUs.css.map*/