/* Button Styles */

a.button,
button.button,
input.button {
  display: inline-block;
  padding: 10px 30px;
  color: #FFFFFF !important;
  text-decoration: none;
  background: #454545;
  border: 0px;
  cursor: pointer;
  transition: all ease-in-out 0.12s;
}

a.button:hover,
button.button:hover,
input.button:hover {
  color: #454545 !important;
  background: #FFFFFF;
  box-shadow: inset 0px 0px 0px 1px #454545;
}

a.button-blue,
button.button-blue,
input.button-blue {
  color: #FFFFFF !important;
  background: #005C9C;
}

a.button-blue:hover,
button.button-blue:hover,
input.button-blue:hover {
  color: #005C9C !important;
  background: #FFFFFF;
  box-shadow: inset 0px 0px 0px 1px #005C9C;
}

a.button-red,
button.button-red,
input.button-red {
  color: #FFFFFF !important;
  background: #CD222B;
}

a.button-red:hover,
button.button-red:hover,
input.button-red:hover {
  color: #CD222B !important;
  background: #FFFFFF;
  box-shadow: inset 0px 0px 0px 1px #CD222B;
}

a.button-block,
button.button-block,
input.button-block {
  display: block;
  padding: 0px;
  text-align: center;
}

a.button-large,
button.button-large,
input.button-large {
  padding: 20px 100px;
}

a.button-round,
button.button-round,
input.button-round {
  border-radius: 4px;
}

a.button-pill,
button.button-pill,
input.button-pill {
  border-radius: 100vmax;
}

/* Image Styles */

img.img-box {
  padding: 2px;
  border: 1px solid #333333;
}

/* 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-grey {
  color: #AEAEAE;
}

/* 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;
}