.button {
  background: none;
  color: #ff7700;
  font-size: 20px;
  font-family: inherit;
  border: 0;
  width: auto;
  transition: opacity 0.2s linear, transform 0.3s ease;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
}
.button[disabled] {
  opacity: 0.5;
  cursor: default;
}
.button:hover {
  opacity: 0.7;
}
.button:active {
  opacity: 0.5;
  transform: scale(0.9675);
}
.button.is-back::before, .button.is-next::after {
  content: "";
  display: inline-block;
  position: relative;
  top: -1.5px;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background: url(/application/assets/images/icon-dash.svg) no-repeat center;
  -webkit-background-size: 14px;
}
.button.is-back::before {
  transform: scaleX(-1);
  margin-right: 5px;
}
.button.is-next::after {
  margin-left: 5px;
}
.button.is-white {
  color: white;
}
.button.is-white.is-next::after {
  -webkit-filter: brightness(0) invert(1);
}
.form-button {
  display: block;
  position: absolute;
  right: 9px;
  top: 9px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  outline: 0;
  font-size: 0;
  transition: opacity 0.2s linear, transform 0.3s cubic-bezier(0.1, 0.7, 0.6, 1);
}
.form-button:hover::before, .form-button:hover::after {
  opacity: 0.7;
}
.form-button:active::before, .form-button:active::after {
  opacity: 0.5;
  transform: scale(0.9);
}
.form-button::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 99px;
  transition: opacity 0.2s linear, transform 0.3s ease;
}
.form-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 2px;
  right: 0;
  bottom: 0;
  background: url(/application/assets/images/icon-dash-red.svg) no-repeat;
  -webkit-background-size: 17px;
  background-position: 57.5% center;
  -webkit-filter: brightness(0) invert(1);
  transition: opacity 0.2s linear, transform 0.3s ease;
}
.button.is-left {
  float: left;
}
div.has-icon::before, a.has-icon::before {
  vertical-align: middle;
  margin-right: 15px;
}
a.has-icon::before {
  margin-top: -5px;
}
.has-icon > .button {
  line-height: 32px;
  vertical-align: middle;
  padding-top: 10px;
}
@media (max-width: 800px) {
  .form-button {
    top: 8px;
    right: 8px;
    width: 33px;
    height: 33px;
  }
  .form-button::after {
    -webkit-background-size: 16px;
  }
  .button {
    font-size: 18px;
  }
}
