/**
**  Official Font sizes
------------------------------- */
/**
** Line-heights
------------------------------- */
: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;
}