/* ---------------------------------
-----  dimension variables --------
---------------------------------- */
/* ------  standard elements padding & margin  ------- */
/* spacing */
/**
**  Official Font sizes
------------------------------- */
/**
** Line-heights
------------------------------- */
/*
  Mixin to progressively-enhance :focus-visible, keeping :focus where not supported
  Add an arbitrary list of selectors into the arguments, and the styling in the block.
  I you pass no selectors to the mixin the parent ("ampersand") operator is used instead.

  There are two mixins:
  - focus-visible: a generic focus-visible, giving you "slots" to decide what to render for :focus, :focus reset, and :focus-visible
  - focus-visible-outline: a focus-visible, which only resets the outline. If you don't need more custom resets, use this one!

  Use focus-visible:
  The key thing here is checking which slot is being rendered.
  For example, you can reset box-shadow here, or anything else.

  @include focus-visible using ($slot) {
      @if $slot == focus {
          outline: 2px solid transparent;
          box-shadow: 0 0 0 4px blue;
      }
      @if $slot == focusReset {
          box-shadow: none;
      }
      @if $slot == focusVisible {
          box-shadow: 0 0 0 4px blue;
      }
  }

  Use focus-visible-outline:
  @include focus-visible-outline("button", "a[href]") {
      outline: 2px solid blue;
  }

  Resulting CSS (compressed):

  button:focus,
  a[href]:focus {
      outline: 2px solid blue;
  }

  button:focus:not(:focus-visible),
  a[href]:focus:not(:focus-visible) {
      outline: none;
  }
  button:focus-visible,
  a[href]:focus-visible {
      outline: 2px solid blue;
  }
*/
:host {
  font-family: Frutiger-Light, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  font-weight: 400;
  background-color: #bbd03a;
  color: #fff;
  font-size: 20px;
  line-height: 1.4;
  padding: 10px 20px;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 97;
}
:host::after {
  background-color: transparent;
  border-bottom: transparent 15px solid;
  border-left: #bbd03a 15px solid;
  bottom: -15px;
  content: "";
  position: absolute;
  right: 0;
  width: 0;
}

:host([variant=blue]) {
  background-color: #285172;
}
:host([variant=blue])::after {
  border-left-color: #285172;
}

:host([variant=round]) {
  font-family: Frutiger-Roman, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  font-weight: 400;
  align-items: center;
  border-radius: 50%;
  box-sizing: content-box;
  color: #fff;
  display: inline-block;
  display: flex;
  font-size: 15px;
  justify-content: center;
  max-height: 200px;
  max-width: 200px;
  min-height: 120px;
  min-width: 120px;
  padding: 15px;
  text-align: center;
}
:host([variant=round])::before {
  content: "";
  display: inline-block;
  height: 0;
  padding-top: 100%;
  vertical-align: middle;
}
:host([variant=round])::after {
  display: none;
}

:host([variant=bold]) {
  font-family: Frutiger-Roman, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  font-weight: 400;
}

:host([variant=plain]) {
  font-family: Frutiger-Roman, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  font-weight: 400;
  font-size: 15px;
  right: 0;
  top: 15px;
  max-width: 250px;
}
@media only screen and (min-width: 768px) {
  :host([variant=plain]) {
    top: 30px;
    max-width: 100%;
  }
}
:host([variant=plain])::after {
  content: none;
}