/* Button Styles */

.button {
  display: inline-block;
  padding: 10px 20px;
  color: #FFFFFF;
  font-weight: 700;
  font-stretch: 75%;
  text-decoration: none;
  background: #454545;
  border: 0px;
  cursor: pointer;
  transition: all ease-in-out 0.12s;
}

.button:hover {
  color: #454545;
  background: #FFFFFF;
  box-shadow: inset 0px 0px 0px 1px #454545;
}

.button-red {
  color: #FFFFFF;
  background: #AE2126;
}

.button-red:hover {
  color: #AE2126;
  background: #FFFFFF;
  box-shadow: inset 0px 0px 0px 1px #FFFFFF;
}

.button-red-border:hover {
  box-shadow: inset 0px 0px 0px 1px #AE2126;
}

.button-green {
  color: #FFFFFF;
  background: #108E47;
}

.button-green:hover {
  color: #108E47;
  background: #FFFFFF;
  box-shadow: inset 0px 0px 0px 1px #FFFFFF;
}

.button-green-border:hover {
  box-shadow: inset 0px 0px 0px 1px #108E47;
}

.button-transparent {
  color: #FFFFFF;
  background: transparent;
  box-shadow: inset 0px 0px 0px 1px #FFFFFF;
}

.button-transparent:hover {
  color: #000000;
  background: #FFFFFF;
  box-shadow: inset 0px 0px 0px 1px #FFFFFF;
}

.button-transparent-border:hover {
  box-shadow: inset 0px 0px 0px 1px #000000;
}

.button-transparent-red {
  color: #AE2126;
  background: transparent;
  box-shadow: inset 0px 0px 0px 1px #AE2126;
}

.button-transparent-red:hover {
  color: #FFFFFF;
  background: #AE2126;
  box-shadow: inset 0px 0px 0px 1px #AE2126;
}

.button-transparent-red-border:hover {
  box-shadow: inset 0px 0px 0px 1px #AE2126;
}

.button-block {
  display: block;
  width: 100%;
  text-align: center;
}

.button-large {
  padding: 10px 60px;
}

.button-round {
  border-radius: 4px;
}

.button-pill {
  border-radius: 100vmax;
}

/* Image Styles */

img.img-box {
  border: 1px solid #BABABA;
}

img-img-box-padding {
  padding: 2px;
}

/* Heading Styles */

.heading-border {
  border: 1px solid #CCCCCC;
  border-width: 1px 0;
}

/* Font Styles */

.text-small {
  font-size: 12px !important;
}

.text-medium {
  font-size: 20px !important;
}

.text-large {
  font-size: 28px !important;
}

.text-x-large {
  font-size: 36px !important;
}

.text-bold {
  font-weight: 700;
}

.text-italic {
  font-style: italic;
}

.text-green {
  color: #108E47 !important;
}

/* Misc Styles */

.no-margin {
  margin: 0px !important;
}

.no-margin-top {
  margin-top: 0px !important;
}

.no-margin-bottom {
  margin-bottom: 0px !important;
}

.no-padding {
  padding: 0px !important;
}

.no-padding-top {
  padding-top: 0px !important;
}

.no-padding-bottom {
  padding-bottom: 0px !important;
}

.align-left {
  text-align: left !important;
}

.align-center {
  text-align: center !important;
}

.align-right {
  text-align: right !important;
}

.float-left {
  float: left;
  margin: 0px 35px 20px 0px;
}

.float-right {
  float: right;
  margin: 0px 0px 20px 35px;
}

.clear-floats {
  color: inherit;
}

.clear-floats::after {
  content: "";
  display: block;
  clear: both;
}