/* Button Styles */

a.button {
  display: inline-block;
  padding: 5px 20px;
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
}

a.button-gray {
  color: #9DA50E;
  background: #F5F5F5;
  border: 1px solid #C4C4C4;
}

a.button-green {
  color: #EBF189;
  background: #00A24E;
  border: 1px solid #00A24E;
}

a.button-large {
  padding: 10px 50px;
}

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;
  line-height: 16px !important;
}

.text-medium {
  font-size: 20px !important;
  line-height: 26px !important;
}

.text-large {
  font-size: 28px !important;
  line-height: 34px !important;
}

.text-x-large {
  font-size: 36px !important;
  line-height: 42px !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;
}