/* BEGIN Stores/WebContent/Common/AjaxButton/ajaxbutton.scss */
.ajaxbutton {
  cursor: pointer;
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ajaxbutton * {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
}

.ajaxbutton__loader-image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url("https://assets.persol.com/extra/image/Persol/icons/ajax-loader_white.gif");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  /* Set spinner size here */
  cursor: default;
}

.ajaxbutton--default {
  padding: 15px 12px;
  display: inline-block;
  line-height: 2;
  text-transform: uppercase;
}

.ajaxbutton--styled-blue {
  padding: 15px 12px;
  display: inline-block;
  line-height: 2;
  text-transform: uppercase;
}

.ajaxbutton[aria-disabled=true] {
  color: currentColor;
  cursor: not-allowed;
  text-decoration: none;
  pointer-events: none;
}

/* END Stores/WebContent/Common/AjaxButton/ajaxbutton.scss */
/*# sourceMappingURL=ajaxbutton.css.map */