/* Button Styles */

.button {
  display: inline-block;
  padding: 0px 40px;
  color: #FFFFFF;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 50px;
  text-decoration: none;
  background: #454545;
  border: 0px;
  cursor: pointer;
  transition: all ease-in-out 0.12s;
}

.button:hover {
  color: #454545;
  background: #FFFFFF;
  box-shadow: inset 0px 0px 0px 1px #454545;
}

.button-green {
  color: #FFFFFF;
  background: #006C90;
}

.button-green:hover {
  color: #006C90;
  background: #FFFFFF;
  box-shadow: inset 0px 0px 0px 1px #006C90;
}

.button-white {
  color: #313C44;
  background: #FFFFFF;
  box-shadow: inset 0px 0px 0px 1px #313C44;
}

.button-white:hover {
  color: #FFFFFF;
  background: #313C44;
  box-shadow: inset 0px 0px 0px 1px #313C44;
}

.button-block {
  display: block;
  padding: 0px;
  text-align: center;
}

.button-large {
  padding: 0px 100px;
}

.button-round {
  border-radius: 4px;
}

.button-pill {
  border-radius: 25px;
}

/* Image Styles */

img.img-box {
  padding: 2px;
  border: 1px solid #333333;
}

/* Font Styles */

.text-bold {
  font-weight: 700;
}

.text-italic {
  font-style: italic;
}

.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-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;
}