/*
 * 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);
*/
.chat {
  position: fixed;
  top: 58vh;
  right: 0;
  z-index: 1030;
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem 0.75rem 0.75rem;
  background-color: rgb(255, 255, 255);
  border-radius: 28px 0 0 28px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1025px) {
  .chat {
    top: 80vh;
  }
}
.chat__button {
  width: 2rem;
  height: 2rem;
  border: 0 none;
  cursor: pointer;
}

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