.button {
  background-color: var(--btnPrimaryBgColor, #fff);
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  color: var(--btnPrimaryColor, var(--textcolor));
  border: 1px solid var(--btnPrimaryBorderColor, var(--textcolor));
  padding: 7px 17px 8px;
  box-sizing: border-box;
  appearance: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0, -0.042, 0.391, 0.932);
  isolation: isolate;
  position: relative;
  font-size: 16px;
  line-height: 1.625;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.button:after {
  content: '';
  width: 18px;
  height: 18px;
  background-color: var(--btnIconColor, var(--textcolor));
  -webkit-mask-size: var(--btnIconWidth, 18px);
          mask-size: var(--btnIconWidth, 18px);
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: var(--btnIconUrl, url(/images/btn-arrow.svg));
          mask-image: var(--btnIconUrl, url(/images/btn-arrow.svg));
  transition: all 0.4s cubic-bezier(0, -0.042, 0.391, 0.932);
}
@media (hover: hover) and (pointer: fine) {
  .button:hover:after,
  .button:focus:after {
    background-color: var(--btnIconColorHover, var(--accentcolor));
  }
}
@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .button:focus {
    border-color: var(--btnPrimaryBorderColorHover, var(--textcolor));
    color: var(--btnPrimaryColorHover, #fff);
    background-color: var(--btnPrimaryBgColorHover, var(--textcolor));
    --btnIconColorHover: #fff;
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
/*# sourceMappingURL=./screen-medium.css.map */