/* Button Styles */

.button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.button-black {
  color: #FFFFFF !important;
  background: #000000;
  border: 1px solid #000000;
}

.button-orange {
  color: #FFFFFF !important;
  background: #EF721E;
  border: 1px solid #EF721E;
}

.button-white {
  color: #666666 !important;
  background: #FFFFFF;
  border: 1px solid #666666;
}

.button-transparent {
  color: #FFFFFF !important;
  background: rgba(204, 204, 204, 0.5);
  border: 1px solid rgba(204, 204, 204, 1);
}

.button-round {
  border-radius: 6px;
}

.button-pill {
  border-radius: 100vmax;
}

/* Image Styles */

img.img-box {
  padding: 2px;
  border: 1px solid #333333;
}

/* Font Styles */

.text-gray {
  color: #999999 !important;
}

.text-green {
  color: #339933 !important;
}

.text-orange {
  color: #EF721E !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;
}

.align-left-on-mobile,
.align-center-on-mobile,
.align-right-on-mobile {
  text-align: inherit;
}

.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;
}