/*
 * 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);
*/
.segment-selector {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1360;
  overflow: hidden;
  background: rgb(255, 255, 255);
}
.segment-selector__logo {
  position: absolute;
  top: 0;
  left: 50%;
  width: 10.625rem;
  margin: 1rem 0 0;
  transform: translateX(-50%);
}
@media (min-width: 1025px) {
  .segment-selector__logo {
    left: 0;
    width: 20.3125rem;
    margin: 1.5rem 2.5rem 0;
    transform: inherit;
  }
}
.segment-selector__option-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media (min-width: 1025px) {
  .segment-selector__option-wrapper {
    flex-direction: row;
  }
}
.segment-selector__option {
  width: 100%;
  height: 50%;
}
@media (min-width: 1025px) {
  .segment-selector__option {
    height: 100%;
  }
}
.segment-selector > .content-asset {
  height: 100%;
}

.segment-selector-option {
  position: relative;
  cursor: pointer;
}
.segment-selector-option__text {
  font-family: "AdFont", sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: rgb(0, 0, 0);
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}
@media (min-width: 1025px) {
  .segment-selector-option__text {
    font-size: 5rem;
  }
}
.segment-selector-option__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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