/* 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: #38A17D;
}

.button-green:hover {
  color: #38A17D;
  background: #FFFFFF;
  box-shadow: inset 0px 0px 0px 1px #38A17D;
}

.button-border-green {
  color: #38A17D;
  background: #FFFFFF;
  box-shadow: inset 0px 0px 0px 1px #38A17D;
}

.button-border-green:hover {
  color: #FFFFFF;
  background: #38A17D;
  box-shadow: inset 0px 0px 0px 1px #38A17D;
}

.button-orange {
  color: #FFFFFF;
  background: #DE6E00;
}

.button-orange:hover {
  color: #DE6E00;
  background: #FFFFFF;
  box-shadow: inset 0px 0px 0px 1px #DE6E00;
}

.button-white {
  color: #313131;
  background: #FFFFFF;
  box-shadow: inset 0px 0px 0px 1px #313131;
}

.button-white:hover {
  color: #FFFFFF;
  background: #313131;
  box-shadow: inset 0px 0px 0px 1px #FFFFFF;
}

.button-block {
  display: block;
  padding: 0px;
  text-align: center;
}

.button-large {
  padding: 0px 100px;
}

.button-round {
  border-radius: 4px;
}

.button-pill {
  border-radius: 25px;
}

/* Heading Styles */

.border-bottom {
  border-bottom: 1px solid #CCCCCC;
}

/* Image Styles */

img.img-box {
  padding: 2px;
  border: 1px solid #479178;
}

.column img,
.flex-column img {
  max-width: 100%;
  height: auto;
}

/* 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;
}

.text-green {
  color: #38A17D;
}

/* 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;
}