/* Button Styles */

a.button,
button.button,
input.button {
  display: inline-block;
  padding: 10px 20px !important;
  color: #000000 !important;
  text-decoration: none;
  border: 0px;
  cursor: pointer;
}

a.button-blue,
button.button-blue,
input.button-blue {
  color: #FFFFFF !important;
  background: #0090E9 !important;
}

a.button-green,
button.button-green,
input.button-green {
  color: #FFFFFF !important;
  background: #21AA4C !important;
}

a.button-border,
button.button-border,
input.button-border {
  border: 1px solid #FFFFFF;
}

a.button-large,
button.button-large,
input.button-large {
  padding: 15px 50px !important;
}

a.button-large-text,
button.button-large-text,
input.button-large-text {
  font-size: 24px;
}

a.button-round,
button.button-round,
input.button-round {
  border-radius: 6px;
}

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;
}

/* Box Styles */

.border-box {
  display: block;
  padding: 2px 10px;
  border: 1px solid #DBDEE1;
}

.border-round {
  border-radius: 4px;
}

/* Misc Styles */

.no-margin {
  margin: 0px !important;
}

.no-padding {
  padding: 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;
}

.border-bottom {
  border-bottom: 1px solid #999999;
}

.clear-floats {
  color: inherit;
}

.clear-floats::after {
  content: "";
  display: block;
  clear: both;
}