/* DR_Verlauf_mint_pink */
/* DR_Verlauf_mint_blau */
@property --x {
  syntax: '<percentage>';
  initial-value: 90%;
  inherits: false;
}
@property --y {
  syntax: '<percentage>';
  initial-value: 90%;
  inherits: false;
}
@property --rX {
  syntax: '<percentage>';
  initial-value: 90%;
  inherits: false;
}
@property --rY {
  syntax: '<percentage>';
  initial-value: 90%;
  inherits: false;
}
@property --mix1 {
  syntax: '<percentage>';
  initial-value: 100%;
  inherits: true;
}
@property --mix2 {
  syntax: '<percentage>';
  initial-value: 0%;
  inherits: true;
}
.button {
  appearance: none;
  text-decoration: none;
  display: inline-block;
  padding: 10px 25px;
  box-sizing: border-box;
  text-align: center;
  background-color: transparent;
  border: solid 2px var(--btnBorderColor, transparent);
  background-image: var(--btnGradient, linear-gradient(to right, #1077FF, #E63BFF));
  background-origin: border-box;
  border-radius: 100vw;
  isolation: isolate;
  position: relative;
  cursor: pointer;
  color: var(--btnLinkColor, #1077FF);
  font-weight: 500;
}
.button:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 100vw;
  background-color: var(--btnPseudoBg, #fff);
  transition: all 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  z-index: -1;
}
@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .button:focus {
    color: var(--btnLinkColorHov, #fff);
  }
  .button:hover:before,
  .button:focus:before {
    opacity: var(--btnPseudoOpacity, 0);
    background-color: var(--btnPseudoBgHov, #fff);
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
/*# sourceMappingURL=./screen-medium.css.map */