/**
 * @file
 * Styles for Style+'s buttons.
 */
a.button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 15px 25px;
  color: #ffffff;
  display: inline-block;
  line-height: 1;
  border-width: 1px;
  border-style: solid;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin: 10px 5px 10px 0;
  text-align: center;
  text-decoration: none;
}
span.button-operator {
  margin: 0 10px 0 5px;
}

/*Buttons hover style 2*/
a.button.button--hover-style-2 {
  position: relative;
  z-index: 1;
}
a.button.button--hover-style-2:before {
  content:"";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a.button.button--hover-style-2:hover {
  background-color: transparent;
}
a.button.button--hover-style-2:hover:before {
  transform: scaleX(1);
}
a.button--black.button--hover-style-2:hover {
  background-color: transparent;
}

/*Colored Regions*/
.region--colored-background a.button,
.region--colored-background input[type="submit"],
.region--colored-background input[type="reset"],
.region--colored-background input[type="button"] {
  color: #ffffff;
  border-color: #232323;
  background-color: #232323;
}
.region--light-background a.button:hover,
.region--light-background input[type="submit"]:hover,
.region--light-background input[type="reset"]:hover,
.region--light-background input[type="button"]:hover {
  color: #ffffff;
  border-color: #232323;
  background-color: #232323;
}
.region--light-background a.button--white.button {
  border-color: #ffffff;
}
.region--light-background a.button--white.button:hover {
  background-color: transparent;
}

/*Colored Regions style 2*/
.region--colored-background a.button.button--hover-style-2:hover,
.region--black-background a.button.button--hover-style-2:hover {
  background-color: transparent;
}
.region--light-background a.button.button--hover-style-2:before {
  background-color: #232323;
}
.region--light-background a.button.button--white.button--hover-style-2:hover {
  border-color: #ffffff;
}
.region--light-background a.button.button--white.button--hover-style-2:before {
  background-color: #ffffff;
}
