/* Button Styles */

.button {
  display: inline-block;
  padding: 10px 40px;
  color: #FFFFFF;
  font-family: var(--theme-font-family);
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  background: #454545;
  border: 0px;
  cursor: pointer;
  transition: all ease-in-out 0.12s;
}

.button:hover {
  color: #454545;
  background: #FFFFFF;
}

.button-primary {
  color: #FFFFFF;
  background: var(--theme-color-primary);
}

.button-primary:hover {
  color: var(--theme-color-primary);
  background: #FFFFFF;
}

.button-primary-border:hover {
  box-shadow: inset 0px 0px 0px 1px var(--theme-color-primary);
}

.button-secondary {
  color: var(--theme-color-primary);
  background: var(--theme-color-secondary);
}

.button-secondary:hover {
  color: var(--theme-color-secondary);
  background: var(--theme-color-primary);
}

.button-secondary-border:hover {
  box-shadow: inset 0px 0px 0px 1px var(--theme-color-primary);
}

.button-tertiary {
  color: #FFFFFF;
  background: var(--theme-color-tertiary);
}

.button-tertiary:hover {
  color: var(--theme-color-tertiary);
  background: #FFFFFF;
}

.button-tertiary-border:hover {
  box-shadow: inset 0px 0px 0px 1px var(--theme-color-tertiary);
}

.button-arrow {
  padding: 10px 20px;
  color: #FFFFFF;
  background: var(--theme-color-tertiary);
}

.button-arrow:hover {
  color: #FFFFFF;
  background: #0C3371;
}

.button-arrow::after {
  content: "";
  display: inline-block;
  width: 90px;
  height: 35px;
  margin-left: 8px;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3Csvg%20width%3D%2290%22%20height%3D%2235%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cline%20x1%3D%220%22%20y1%3D%2217.5%22%20x2%3D%2290%22%20y2%3D%2217.5%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20/%3E%3Cline%20x1%3D%2290%22%20y1%3D%2217.5%22%20x2%3D%2280%22%20y2%3D%2210%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20/%3E%3Cline%20x1%3D%2290%22%20y1%3D%2217.5%22%20x2%3D%2280%22%20y2%3D%2225%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20/%3E%3C/svg%3E") no-repeat;
  background-size: auto;
  background-size: contain;
}

.button-arrow-invert {
  color: var(--theme-color-tertiary);
  background: #FFFFFF;
  box-shadow: inset 0px 0px 0px 1px var(--theme-color-primary);
}

.button-arrow-invert::after {
  background: url("data:image/svg+xml,%3Csvg%20width%3D%2290%22%20height%3D%2235%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cline%20x1%3D%220%22%20y1%3D%2217.5%22%20x2%3D%2290%22%20y2%3D%2217.5%22%20stroke%3D%22%230e3c85%22%20stroke-width%3D%222%22%20/%3E%3Cline%20x1%3D%2290%22%20y1%3D%2217.5%22%20x2%3D%2280%22%20y2%3D%2210%22%20stroke%3D%22%230e3c85%22%20stroke-width%3D%222%22%20/%3E%3Cline%20x1%3D%2290%22%20y1%3D%2217.5%22%20x2%3D%2280%22%20y2%3D%2225%22%20stroke%3D%22%230e3c85%22%20stroke-width%3D%222%22%20/%3E%3C/svg%3E") no-repeat;
}

.button-arrow-invert:hover {
  color: #FFFFFF;
}

.button-arrow-invert:hover::after {
  background: url("data:image/svg+xml,%3Csvg%20width%3D%2290%22%20height%3D%2235%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cline%20x1%3D%220%22%20y1%3D%2217.5%22%20x2%3D%2290%22%20y2%3D%2217.5%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20/%3E%3Cline%20x1%3D%2290%22%20y1%3D%2217.5%22%20x2%3D%2280%22%20y2%3D%2210%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20/%3E%3Cline%20x1%3D%2290%22%20y1%3D%2217.5%22%20x2%3D%2280%22%20y2%3D%2225%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20/%3E%3C/svg%3E") no-repeat;
}

.button-block {
  display: block;
  padding: 0px;
  text-align: center;
}

.button-large {
  padding: 20px 100px;
}

.button-round {
  border-radius: 4px;
}

.button-pill {
  border-radius: 100vmax;
}

/* Image Styles */

img.img-box {
  padding: 2px;
  border: 1px solid #333333;
}

/* Font Styles */

.text-primary {
  color: var(--theme-color-primary);
}

.text-secondary {
  color: var(--theme-color-secondary);
}

.text-tertiary {
  color: var(--theme-color-tertiary);
}

.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-bold {
  font-weight: 700;
}

.text-italic {
  font-style: italic;
}

/* 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::before,
.clear-floats::after {
  content: "";
  display: block;
  clear: both;
}

/* Other Styles */

.label-yes {
  color: #009900;
  font-weight: bold;
}

.label-no {
  color: #FF0000;
  font-weight: bold;
}