/* Button Styles */

a.button {
  display: inline-block;
  padding: 5px 20px;
  color: #FFFFFF;
  text-decoration: none;
}

a.button-gold {
  color: #FFFFFF;
  background: #CAAD26;
}

a.button-border {
  border: 1px solid #FFFFFF;
}

a.button-large {
  padding: 10px 50px;
}

a.button-large-text {
  font-size: 24px;
}

a.button-round {
  border-radius: 6px;
}

/* 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;
}

/* 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;
}