/*===================================================================================*/
/*  Global | Variables | Partial
/*===================================================================================*/
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: 0;
  background: none;
}

.button {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  height: 6rem;
  padding: 0 3rem;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  background: #00aeef;
  font-size: 1.4rem;
  border: 0.1rem solid white;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.button .icon {
  position: relative;
  padding-right: 1.5rem;
  font-size: 1.4rem;
  z-index: 1;
}
.button span, .button::before {
  -webkit-transition: 300ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: 300ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.button span {
  position: relative;
  z-index: 1;
  line-height: 1.3;
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  -webkit-transform: skewX(-10deg) translateX(-110%);
  transform: skewX(-10deg) translateX(-110%);
  z-index: 0;
}
.button:hover, .button:focus, .button:active, .button.is-active {
  color: #00aeef;
}
.button:hover::before, .button:focus::before, .button:active::before, .button.is-active::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.button--primary {
  border-color: #00aeef;
}
.button--secondary {
  background-color: #202243;
  border: none;
  color: white;
}
.button--secondary:hover, .button--secondary:focus, .button--secondary:active, .button--secondary.is-active {
  color: #202243;
}
.button--tertiary {
  background-color: #ffff00;
  border: none;
  color: #585858;
}
.button--tertiary::before {
  background-color: rgb(229.5, 229.5, 0);
}
.button--tertiary:hover, .button--tertiary:focus, .button--tertiary:active, .button--tertiary.is-active {
  color: #202243;
}
.button--white {
  background-color: white;
  border-color: #00aeef;
  color: #00aeef;
}
.button--white::before {
  background-color: #00aeef;
}
.button--white:hover, .button--white:focus, .button--white:active, .button--white.is-active {
  color: white;
}
.button--transparent {
  background-color: rgba(88, 88, 88, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}
.button--transparent::before {
  background-color: #00aeef;
}
.button--transparent:hover, .button--transparent:focus, .button--transparent:active, .button--transparent.is-active {
  color: white;
}
.button:disabled {
  background-color: white;
  border-color: #dedede;
  color: #dedede;
}
.button[class*="--text"] {
  background-color: unset;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom-width: 0.1rem;
  padding: 0;
  height: 2.5rem;
  overflow: visible;
}
.button[class*="--text"]::before {
  content: none;
}
.button[class*="--text"]:not(.button--icon-before):hover span, .button[class*="--text"]:not(.button--icon-before):focus span, .button[class*="--text"]:not(.button--icon-before):active span, .button[class*="--text"]:not(.button--icon-before).is-active span {
  -webkit-transform: translateX(1rem);
  transform: translateX(1rem);
}
.button--text-primary {
  border-bottom-color: #00aeef;
  color: #00aeef;
}
.button--text-primary:has(.icon-arrow-right) span {
  padding-right: 1.5rem;
}
.button--text-primary:hover, .button--text-primary:focus, .button--text-primary:active, .button--text-primary.is-active {
  color: #00aeef;
}
.button--text-white {
  border-bottom-color: white;
  color: white;
}
.button--text-white:hover, .button--text-white:focus, .button--text-white:active, .button--text-white.is-active {
  color: white;
}
.button--icon-before .icon {
  padding-left: 0;
  padding-right: 1.5rem;
}
.button--icon-before .icon::before {
  display: inline-block;
  -webkit-transition: 300ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: 300ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.button--icon-before[class*="--text"]:hover .icon::before {
  -webkit-transform: translateX(1rem);
  transform: translateX(1rem);
}
.button--icon-before:before {
  -webkit-transform: skewX(-10deg) translateX(110%);
  transform: skewX(-10deg) translateX(110%);
}
.button--full-width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.button--full-width span {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 0) and (max-width: 47.9375em) {
  button.button--full-width {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
/*# sourceMappingURL=app-button.css.map */
