/**
 * @file
 * Styles for Minimal+'s buttons.
 */
span.mt-button,
a.mt-button,
.mt-button > a,
button.mt-button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  font-size: 14px;
  font-weight: 500;
  padding: 16px 40px 16px;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  border-width: 2px;
  border-style: solid;
  background-color: transparent;
  -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: 0;
  text-align: center;
  background-color: transparent;
  color: #ffffff;
}
span.mt-button:hover,
span.mt-button:focus,
a.mt-button:hover,
a.mt-button:focus,
.mt-button > a:hover,
.mt-button > a:focus,
button.mt-button:hover,
button.mt-button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="button"]:hover,
input[type="button"]:focus {
  background-color: transparent;
}
button.mt-button {
  -webkit-appearance: none;
}
.region--dark-typography span.mt-button.mt-button--outline,
.region--dark-typography a.mt-button.mt-button--outline,
.region--dark-typography .mt-button.mt-button--outline > a,
.region--dark-typography input[type="submit"].mt-button--outline,
.region--dark-typography input[type="reset"].mt-button--outline,
.region--dark-typography input[type="button"].mt-button--outline {
  background-color: transparent;
}
.region--dark-typography span.mt-button.mt-button--outline:hover,
.region--dark-typography a.mt-button.mt-button--outline:hover,
.region--dark-typography .mt-button.mt-button--outline > a:hover,
.region--dark-typography input[type="submit"].mt-button--outline:hover,
.region--dark-typography input[type="reset"].mt-button--outline:hover,
.region--dark-typography input[type="button"].mt-button--outline:hover,
.region--dark-typography span.mt-button.mt-button--outline:focus,
.region--dark-typography a.mt-button.mt-button--outline:focus,
.region--dark-typography .mt-button.mt-button--outline > a:focus,
.region--dark-typography input[type="submit"].mt-button--outline:focus,
.region--dark-typography input[type="reset"].mt-button--outline:focus,
.region--dark-typography input[type="button"].mt-button--outline:focus {
  color: #ffffff;
}
a.mt-button.mt-button--small,
.mt-button.mt-button--small > a,
button.mt-button.mt-button--small {
  font-size: 14px;
  padding: 6px 20px;
  border-width: 2px;
  text-transform: none;
}
.headings-wide-spacing-enabled span.mt-button,
.headings-wide-spacing-enabled a.mt-button,
.headings-wide-spacing-enabled .mt-button > a,
.headings-wide-spacing-enabled button.mt-button,
.headings-wide-spacing-enabled input[type="submit"],
.headings-wide-spacing-enabled input[type="reset"],
.headings-wide-spacing-enabled input[type="button"] {
  letter-spacing: 0.25em;
}
input[type="submit"] + input[type="submit"],
.mt-button + .mt-button {
  margin-left: 20px;
}
@media (max-width: 767px) {
  .text-center .mt-button + .mt-button {
    margin-right: 5px;
  }
  .text-center .mt-button {
    margin-right: 5px;
    margin-left: 5px;
  }
}
.region--light-typography span.mt-button,
.region--light-typography a.mt-button,
.region--light-typography .mt-button > a,
.region--light-typography button.mt-button,
.region--light-typography input[type="submit"],
.region--light-typography input[type="reset"],
.region--light-typography input[type="button"] {
  color: #ffffff;
  border-color: #ffffff;
  background-color: transparent;
}
.region--light-typography span.mt-button:hover,
.region--light-typography span.mt-button:focus,
.region--light-typography a.mt-button:hover,
.region--light-typography a.mt-button:focus,
.region--light-typography .mt-button > a:hover,
.region--light-typography .mt-button > a:focus,
.region--light-typography button.mt-button:hover,
.region--light-typography button.mt-button:focus,
.region--light-typography input[type="submit"]:hover,
.region--light-typography input[type="submit"]:focus,
.region--light-typography input[type="reset"]:hover,
.region--light-typography input[type="reset"]:focus,
.region--light-typography input[type="button"]:hover,
.region--light-typography input[type="button"]:focus {
  color: #424242;
  background: #ffffff;
  border-color: #ffffff;
}
span.mt-button-operator {
  margin: 0 10px 0 5px;
}
span.mt-button .svg-inline--fa
a.mt-button .svg-inline--fa {
  margin-right: 10px;
}
span.mt-button--no-margins,
a.mt-button--no-margins {
  margin: 0;
}

/*Buttons hover style 2*/
span.mt-button.mt-button--hover-style-2,
a.mt-button.mt-button--hover-style-2,
.mt-button.mt-button--hover-style-2 > a {
  position: relative;
  z-index: 1;
  border-width: 2px;
}
a.mt-button.mt-button--hover-style-2:hover,
.mt-button.mt-button--hover-style-2 > a:hover {
  background: transparent;
}
span.mt-button.mt-button--hover-style-2:before,
a.mt-button.mt-button--hover-style-2:before,
.mt-button.mt-button--hover-style-2 > a:before {
  content:"";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
  border-radius: inherit;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
}
span.mt-button.mt-button--hover-style-2:hover:before,
span.mt-button.mt-button--hover-style-2:focus:before,
a.mt-button.mt-button--hover-style-2:hover:before,
a.mt-button.mt-button--hover-style-2:focus:before,
.mt-button.mt-button--hover-style-2 > a:hover:before,
.mt-button.mt-button--hover-style-2 > a:focus:before {
  transform: scaleX(1);
}
.region--light-typography span.mt-button.mt-button--hover-style-2:before,
.region--light-typography a.mt-button.mt-button--hover-style-2:before,
.region--light-typography .mt-button.mt-button--hover-style-2 > a:before {
  background-color: #ffffff;
}
