.button {
  background-color: #8B979A;
  font-size: clamp(0.75rem, 0.78431373vw + 0.59313725rem, 1.25rem);
  line-height: clamp(1.25rem, 0.98039216vw + 1.05392157rem, 1.875rem);
  font-family: inherit;
  cursor: pointer;
  color: #fff;
  padding: 12px 20px;
  appearance: none;
  border-radius: 100000px;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.button:hover {
  background-color: var(--buttonBackgroundHover);
}
@media (max-width: 767px) {
  .button {
    padding: 8px 16px;
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
/*# sourceMappingURL=./screen-medium.css.map */