/* Button Styles */

a.button {
  display: inline-block;
  padding: 10px 30px;
  color: #FFFFFF;
  text-decoration: none;
}

a.button-blue {
  background: #0090E9;
}

a.button-gold {
  background: #EFBF3C;
}

a.button-large {
  padding: 10px 60px;
}

a.button-round {
  border-radius: 6px;
}

/* Image Styles */

img.img-box {
  padding: 2px;
  border: 1px solid #333333;
}

/* Font Styles */

.text-blue {
  color: #0090E9 !important;
}

.text-gold {
  color: #EFBF3C !important;
}

.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;
}

/* 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;
}

.clear-floats {
  color: inherit;
}

.clear-floats::after {
  content: "";
  display: block;
  clear: both;
}