.button {
  appearance: none;
  text-decoration: none;
  display: inline-block;
  padding: 2px 14px;
  box-sizing: border-box;
  text-align: center;
  background-color: var(--btnBgColor, #8AA9C5);
  border-radius: 2px;
  border: 1px solid #FFF;
  isolation: isolate;
  position: relative;
  cursor: pointer;
  letter-spacing: 0.07em;
  font-weight: 600;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  text-transform: uppercase;
  color: var(--btnLinkColor, #fff);
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (max-width: 767px) {
  .button {
    font-size: 14px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .button:focus {
    color: var(--btnLinkColorHov, #000000);
    background-color: var(--btnBgColorHov, #8AA9C5);
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
/*# sourceMappingURL=./screen-large.css.map */