:root {
  --s-textcolor: #000;
  --s-sitecolor: #F1D300;
  --s-linkcolor: #000;
  --s-linkcolor-hov: #D7BC03;
  --s-btn-border: #000;
  --s-btn-circle: #F1D300;
  --s-btn-bg: #fff;
  --s-btn-txt: #000;
  --s-btnarrow-txt: #000;
  --s-btn-border-hov: #000;
  --s-btn-bg-hov: #000;
  --s-btn-txt-hov: #fff;
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
.button {
  cursor: pointer;
  color: var(--s-btn-txt);
  padding: 11px 27px 10px;
  -webkit-appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  position: relative;
  isolation: isolate;
}
.button:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 19px;
  border: 1px solid var(--s-btn-border);
  left: 0;
  top: 0;
  box-sizing: border-box;
  z-index: -1;
}
.button:after {
  content: '';
  right: -4px;
  top: -8px;
  z-index: -2;
  position: absolute;
  width: 27px;
  height: 27px;
  border-radius: 100%;
  background-color: var(--s-btn-circle);
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
@media (hover: hover) and (pointer: fine) {
  .button:active:after,
  .button:hover:after,
  .button:focus:after {
    right: -8px;
    top: -12px;
    position: absolute;
    width: 35px;
    height: 35px;
  }
}
/*# sourceMappingURL=./screen-medium.css.map */