.button {
    display: inline-block;
    cursor: pointer;
    border: 0;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.2s ease-in;
}
.button:focus {
    outline: 2px solid var(--color-custom-barely-teal);
    outline-offset: 1px;
}
.button--small {
    padding: 10px 16px;
    font-size: 12px;
}
.button--medium {
    padding: 11px 20px;
    font-size: 14px;
}
.button--large {
    padding: 12px 24px;
    font-size: 16px;
}
.button--icon {
    padding: 8px;
}
.button--icon img,
.button--icon svg {
    height: 1.25rem;
    width: 1.25rem;
}
.button--block {
    display: block;
    width: 100%;
    padding: 12px 24px;
    text-align: center;
}
.button--primary {
    background-color: var(--color-custom-teal-me-no-lies);
    color: #000 !important;
}
.button--primary:hover {
    background-color: #087173;
    color: #FFF !important;
}
.button--primary:active {
    background-color: #075d5e;
    color: #FFF !important;
}
.button--white {
    background-color: #FFF;
    color: #000 !important;
}
.button--white:hover {
    background-color: #DDD;
}
.button--white:active {
    background-color: #CCC;
}
.button--black {
    background-color: #000;
    color: #FFF !important;
}
.button--black:hover {
    background-color: #222;
}
.button--black:active {
    background-color: #333;
}
.button--white-outline {
    background-color: transparent;
    color: #FFF;
    box-shadow: #FFF 0 0 0 2px inset;
}
.button--white-outline:hover {
    background-color: rgba(0, 0, 0, 0.1);
}
.button--white-outline:active {
    background-color: rgba(0, 0, 0, 0.15);
}
.button--black-outline {
    background-color: transparent;
    color: #FFF;
    box-shadow: #FFF 0 0 0 2px inset;
}
.button--white-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.button--white-outline:active {
    background-color: rgba(255, 255, 255, 0.15);
}
