/* Button Styles */

a.button,
button.button {
  display: inline-block;
  padding: 15px 50px;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border: 0px;
  box-sizing: border-box;
  transition: all ease-in-out 0.12s;
  cursor: pointer;
}

a.button-blue,
button.button-blue {
  color: #FFFFFF;
  background: #165683;
}

a.button-border-blue,
button.button-border-blue {
  color: #165683;
  box-shadow: inset 0px 0px 0px 2px #165683;
}

a.button-pink,
button.button-pink {
  color: #FFFFFF;
  background: #A30A47;
}

a.button-border-pink,
button.button-border-pink {
  color: #A30A47;
  box-shadow: inset 0px 0px 0px 2px #A30A47;
}

a.button-block,
button.button-block {
  display: block;
  text-align: center;
}

a.button-big,
button.button-big {
  font-size: 18px;
}

a.button-bold,
button.button-bold {
  font-weight: 700;
}

a.button-pill,
button.button-pill {
  padding-top: 0px;
  padding-bottom: 0px;
  line-height: 60px;
  border-radius: 30px;
}

a.button-round,
button.button-round {
  border-radius: 6px;
}

.button-borderless,
.button-borderless:hover {
  box-shadow: none !important;
}

.button-transparent,
.button-transparent:hover {
  background: transparent !important;
}

.button-blue:hover {
  color: #165683 !important;
  background: #FFFFFF !important;
  box-shadow: inset 0px 0px 0px 2px #165683;
}

.button-border-blue:hover {
  color: #FFFFFF !important;
  background: #165683 !important;
  box-shadow: inset 0px 0px 0px 2px #165683;
}

.button-pink:hover {
  color: #A30A47 !important;
  background: #FFFFFF !important;
  box-shadow: inset 0px 0px 0px 2px #A30A47;
}

.button-border-pink:hover {
  color: #FFFFFF !important;
  background: #A30A47 !important;
  box-shadow: inset 0px 0px 0px 2px #A30A47;
}

/* 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-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;
}