.actionButton {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: var(--buttonPadding);
  border-radius: var(--buttonRadius);
  font-family: var(--basicfont);
  font-size: var(--fontsize);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  line-height: 30px;
}
.actionButton:before {
  content: '\e5c8';
  transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out;
  font-family: var(--symbol);
  font-size: var(--iconsize);
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  width: 1px;
  height: auto;
  overflow: hidden;
}
@media (hover: hover) {
  .actionButton:hover:before {
    opacity: 1;
    width: 30px;
    height: auto;
  }
}
@media (max-width: 56em) {
  .actionButton {
    width: 100%;
  }
  .actionButton:before {
    display: none;
  }
}
.actionButton.standard {
  background: var(--color2);
  color: #fff;
}
.actionButton.alternative {
  background: var(--color1);
  color: #fff;
}
.sectionColor1 .actionButton.alternative,
.sectionColorRaaakSelect .actionButton.alternative {
  background: #fff;
  color: var(--color1);
}
.actionButton.white {
  background: #fff;
  color: var(--color1);
}
.actionButton.outline {
  color: var(--color1);
  box-shadow: 0 0 0 1px var(--color1);
}
.sectionColor1 .actionButton.outline,
.coverImageDark .actionButton.outline,
.sectionColorRaaakSelect .actionButton.outline {
  color: #fff;
  box-shadow: 0 0 0 1px #fff;
}
.actionButton.outlineOrange {
  color: var(--color2);
  box-shadow: 0 0 0 1px var(--color2);
}
.actionButton.textlink {
  padding: 0;
  background: none;
  color: var(--color2);
}
.actionButton.textlink:after {
  text-align: right;
  content: "\e5c8";
  transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out;
  font-family: var(--symbol);
  font-size: var(--iconsize);
  -moz-osx-font-smoothing: grayscale;
  opacity: 1;
  width: 30px;
  height: auto;
  overflow: hidden;
}
@media (hover: hover) {
  .actionButton.textlink:hover {
    background-color: transparent;
    color: var(--buttonHover);
  }
  .actionButton.textlink:hover:after {
    opacity: 0;
    width: 1px;
    height: auto;
  }
}
.actionButton.small {
  padding: 4px 20px;
  margin-top: 5px;
  font-weight: 500;
  font-size: var(--xxs-fontsize);
  background: #fff;
  color: var(--color1);
}
a[target="_blank"]:after {
  content: '\e923' !important;
  font-family: var(--symbol);
  font-size: 14px !important;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 10px;
  font-weight: 100;
  width: auto !important;
}
footer .footerBottom .footerContainer a[target="_blank"]:after {
  display: none;
}
footer .symbol:after {
  display: none;
}
.sectionButtons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--gutter);
}
@media (max-width: 56em) {
  .sectionButtons {
    flex-direction: column;
    align-items: center;
  }
  .sectionButtons .item {
    width: 100%;
  }
}
