.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
  font-weight: 400;
  padding: 10px 15px;
  margin: 10px auto;
  transition: background 0.2s ease-in-out;
  box-sizing: border-box;
  gap: 10px;
}
.button--small {
  font-size: 14px;
  line-height: 16px;
  padding: 6px 8px;
}
.button--small .material-icons {
  font-size: 16px !important;
  margin-right: 4px;
}
.button:hover {
  text-decoration: none;
}
.button--block {
  display: flex;
}
.button .material-icons {
  font-size: 22px;
  margin-right: 4px;
}
.button--default {
  color: #DB864E;
  background: transparent;
}
.button--default:hover {
  color: #DB864E;
  background: #eee;
}
.button--primary {
  color: #fff;
  background: #315470;
}
.button--primary:hover {
  color: #fff;
  background: #4a7296;
}
.button--primary-outline {
  color: #315470;
  box-shadow: inset 0px 0px 0px 1px #315470;
  background: transparent;
}
.button--primary-outline:hover {
  color: #315470;
  background: #f0f5f6;
}
.button--secondary {
  color: #fff;
  background: #DB864E;
}
.button--secondary:hover {
  color: #fff;
  background: #e9874d;
}
.button--secondary-outline {
  color: #DB864E;
  box-shadow: inset 0px 0px 0px 1px #DB864E;
  background: transparent;
}
.button--secondary-outline:hover {
  color: #DB864E;
  background: #fdf7f3;
}
.button--teal {
  color: #fff;
  background: #5c9aa3;
}
.button--teal:hover {
  color: #fff;
  background: #69b0bb;
}
.button--teal-outline {
  color: #5c9aa3;
  box-shadow: inset 0px 0px 0px 1px #5c9aa3;
  background: transparent;
}
.button--teal-outline:hover {
  color: #5c9aa3;
  background: #f7fafa;
}
.button--red {
  color: #fff;
  background: #8D3F2B;
}
.button--red:hover {
  color: #fff;
  background: #B05A44;
}
.button--red-outline {
  color: #8D3F2B;
  box-shadow: inset 0px 0px 0px 1px #8D3F2B;
  background: transparent;
}
.button--red-outline:hover {
  color: #8D3F2B;
  background: #F9EDED;
}
.button--facebook {
  color: #fff;
  background: #3b5998;
}
.button--facebook:hover {
  color: #fff;
  background: #5270AF;
}
.button--facebook-outline {
  color: #3b5998;
  box-shadow: inset 0px 0px 0px 1px #3b5998;
  background: transparent;
}
.button--facebook-outline:hover {
  color: #3b5998;
  background: #eee;
}
.button--instagram {
  color: #fff;
  background: #FF0069;
}
.button--instagram:hover {
  color: #fff;
  background: #cc0055;
}/*# sourceMappingURL=button.css.map */