/* 1025 is used instead of 1024 because touch devices design is not specified */
/* Mixin to use if touch devices design is specified */
/* Ignore, hover Device with limited pointing accuracy (touch) */
/**
 * Map with all possible units to be used by other utilities (i.e. fluid value)
 */
/**
 * Adds unit to a number
 * @param {Number} $value - Value to add unit to
 * @param {String} $unit - String representation of the unit
 * @return {Number} - `$value` expressed in `$unit`
 */
/**
 * Returns a number without units
 */
/**
 * Returns a rem value from a number of pixels.
 * Its uses 16px as root font-size
 */
/**
 * Returns a px value from a number of rems.
 * Its uses 16px as root font-size
 */
/**
 * Returns a rem value from a map
 */
/**
 * Returns a fluid value between two points in the viewport variable dimension.
 * This linear function can be applied to any property (width, font-size, ...).
 * @param {Number} $v1 - Value at init point - Linear function's Y1
 * @param {Number} $v2 - Value at end point - Linear function's Y2
 * @param {Number} $init - Init point in pixels - Linear function's X1
 * @param {Number} $end - End point in pixels - Linear function's X2
 * @param {Number} $var-dim - Variable dimension: 100vw as default, or 100vh, 100%
 * examples:
 * width: byl-linear-fluid-value(70vw, 58vw, 810px, 1024px);
 * padding-bottom: byl-linear-fluid-value(24px, 48px, 1025px, 1920px, 100%);
 * font-size: byl-linear-fluid-value(1rem, 2rem, 320px, 768px),
 * letter-spacing: byl-linear-fluid-value(0, 1px, 768px, 1024px),
 */
/*
 * Colors
 * (Named using "Name that color") - http://chir.ag/projects/name-that-color
 * -------------------------------------------------------------------------- */
/**
 * @tokens Colors Base
 * @presenter Color
 */
/**
 * @tokens Colors Promo
 * @presenter Color
 */
/**
 * @tokens Colors System
 * @presenter Color
 */
/**
 * @tokens Colors Others
 * @presenter Color
 */
/**
 * @tokens Font Families
 * @presenter FontFamily
 */
/** System monospace */
/**
 * @tokens Font Weights
 * @presenter FontWeight
 */
/**
 * @tokens Font Sizes
 * @presenter FontSize
 */
/* -------------------------------------------------------------------------- *\
 *  INSETS
 * --------------------------------------------------------------------------
 *  An inset offers indents content on all four sides like the matte of the
 *  framed photo on a wall
 *
 *  $inset-X : a b;
 *  $inset-stack-X : a;
 *  $inset-inline-X : b;
 *
 *  -----------------------
 *  |          a          |
 *  |   ---------------   |
 *  | b |             | b |
 *  |   ---------------   |
 *  |          a          |
 *  -----------------------
 *
\* -------------------------------------------------------------------------- */
/**
 * @tokens Inset Block
 * @presenter Spacing
 */
/**
 * @tokens Inset Inline
 * @presenter Spacing
 */
/**
 * @tokens Insets
 * @presenter Spacing
 */
/* -------------------------------------------------------------------------- *\
 *  Main header
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Footer
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Main content
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Landing pages
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Account pages
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Form Login content
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Product Page
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Cart/Minicart
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Home Page
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Customizer
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  CTA static buttons
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  IOS navigator bottom spacing
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Rest of variables
 * -------------------------------------------------------------------------- */
@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
}
.dropzone, .dropzone * {
  box-sizing: border-box;
}

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px;
}
.dropzone.dz-clickable {
  cursor: pointer;
}
.dropzone.dz-clickable * {
  cursor: default;
}
.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}
.dropzone.dz-started .dz-message {
  display: none;
}
.dropzone.dz-drag-hover {
  border-style: solid;
}
.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}
.dropzone .dz-message {
  text-align: center;
  margin: 2em 0;
}
.dropzone .dz-message .dz-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}
.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}
.dropzone .dz-preview:hover {
  z-index: 1000;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}
.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-image-preview {
  background: white;
}
.dropzone .dz-preview.dz-image-preview .dz-details {
  transition: opacity 0.2s linear;
}
.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}
.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}
.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}
.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}
.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}
.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}
.dropzone .dz-preview:hover .dz-image img {
  transform: scale(1.05, 1.05);
  filter: blur(8px);
}
.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}
.dropzone .dz-preview .dz-image img {
  display: block;
}
.dropzone .dz-preview.dz-success .dz-success-mark {
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}
.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}
.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  transition: all 0.2s linear;
}
.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}
.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  animation: pulse 6s ease infinite;
}
.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}
.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width 300ms ease-in-out;
}
.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}
.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}
.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: rgb(190, 38, 38);
  background: linear-gradient(to bottom, rgb(190, 38, 38), rgb(168.75, 33.75, 33.75));
  padding: 0.5em 1.2em;
  color: white;
}
.dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgb(190, 38, 38);
}

.dropzone {
  display: block;
  min-height: 3.375rem;
  margin-bottom: 16px;
  padding: 12px 8px;
  background-color: hsl(0, 0%, 96%);
  border: medium none currentColor;
  border: initial;
}
@media (min-width: 575px) {
  .dropzone {
    min-height: 160px;
  }
}
.dropzone .fallback {
  display: none;
}
.dropzone .dz-preview.dz-error .dz-error-message {
  top: 9.375rem;
  padding: 0.5em;
  opacity: 1;
}
.dropzone .dz-preview .dz-image {
  width: 6.25rem;
  height: 6.25rem;
}
.dropzone .dz-message {
  --uses-typography: "forms-textarea";
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  margin: 0;
  color: hsl(0, 0%, 33%);
  text-align: left;
}
.dropzone.dz-started .dz-message {
  display: block;
}

.contact-us a {
  color: hsl(0, 0%, 0%);
}
.contact-us .contact-purchase {
  padding-bottom: 8px;
}
.contact-us .subscribe-contact-us {
  cursor: pointer;
}
.contact-us__title {
  margin: 0;
  padding-bottom: 4px;
}
.contact-us__title,
.contact-us__title .link {
  --uses-typography: "contact-title";
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}
@media (min-width: 575px) {
  .contact-us__title,
  .contact-us__title .link {
    font-size: calc(0.0044609665 * 100vw + 15.4349442379px);
  }
}
@media (min-width: 1920px) {
  .contact-us__title,
  .contact-us__title .link {
    font-size: 1.5rem;
  }
}
.contact-us__title:last-child {
  padding-bottom: 0;
}
.contact-us__header {
  --uses-typography: "contact-base";
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
}
@media (min-width: 575px) {
  .contact-us__header {
    font-size: calc(0.0044444444 * 100vw + 9.4444444444px);
  }
}
@media (min-width: 1025px) {
  .contact-us__header {
    font-size: 0.875rem;
  }
}
.contact-us__header p {
  margin: 0;
}
.contact-us__header a {
  display: block;
  color: hsl(0, 0%, 0%);
  text-decoration: underline;
}
.contact-us__header .phone-button {
  color: revert;
  text-decoration: none;
}
@media (min-width: 1025px) {
  .contact-us__header .phone-button {
    color: hsl(0, 0%, 0%);
    text-decoration: underline;
  }
}
.contact-us__header .phone-button::before {
  color: hsl(0, 0%, 0%);
}
.contact-us__header .phone-button__text {
  color: hsl(0, 0%, 0%);
}
.contact-us__header .phone-button__number {
  text-decoration: underline;
}
@media (min-width: 1025px) {
  .contact-us__header-actions {
    padding-top: 8px;
  }
}
.contact-us__header-actions > * {
  max-width: -moz-max-content;
  max-width: max-content;
  padding-top: 16px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .contact-us__header-actions > * {
    padding-top: 8px;
  }
}
.contact-us__faqs {
  padding-top: 48px;
}
@media (min-width: 810px) {
  .contact-us__faqs {
    padding-bottom: 0;
  }
}
.contact-us__topic, .contact-us__topic--store, .contact-us__topic--online {
  display: none;
  display: initial;
}

.contact__comment {
  margin-top: 32px;
}
.contact__comment textarea {
  min-height: 212px;
  margin-bottom: -48px;
  color: hsl(0, 0%, 33%);
}
@media (min-width: 810px) {
  .contact__comment textarea {
    min-height: 160px;
    margin-bottom: 0;
  }
}
.contact__comment textarea::-moz-placeholder {
  opacity: 1;
}
.contact__comment textarea::placeholder {
  opacity: 1;
}
.contact__comment .field-textarea__counter {
  margin-bottom: 8px;
}

.contact__terms-conditions {
  --uses-typography: "forms-terms-conditions";
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.6875rem;
  font-style: normal;
  font-weight: 700;
}
.contact__terms-conditions a {
  color: hsl(0, 0%, 0%);
}

.contact__submit {
  margin-bottom: 0;
}

@media (min-width: 1025px) {
  .content-asset > .contact-form {
    max-width: 80%;
  }
}
.content-asset .form {
  padding-top: 16px;
}
@media (min-width: 1025px) {
  .content-asset .interaction--check:first-child {
    padding-right: 80px;
  }
}
.content-asset .field-radio-group {
  padding-bottom: 8px;
}
.content-asset .field-radio-group--row .field-radio {
  flex-basis: auto;
}

.purchase-type {
  font-weight: 700;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-style: italic;
}
.purchase-type.contact-us__field {
  margin: 2.5rem 0 0;
}
@media (min-width: 1025px) {
  .purchase-type.contact-us__field {
    margin: 1.5rem 0 0;
  }
}
.purchase-type__title {
  margin: 0 0 1rem;
  font-size: 0.875rem;
}

.customer-service {
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-style: italic;
}
.customer-service__info {
  font-size: 0.8125rem;
}
.customer-service__phone {
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
}

/* Remaining SFRA styles */
.contact-us-signup-message {
  position: fixed;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-us-signup-alert {
  padding: 1em;
  /* stylelint-disable-next-line color-named */
  box-shadow: 1px 1px 5px grey;
  animation: fade 5s linear forwards;
}
.contact-us-signup-alert.show {
  display: block;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (min-width: 810px) {
  .footer--contact {
    margin-top: 0;
  }
}

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