.button {
    background-color: #363636;
    max-width: 400px;
    padding: 6px 16px 6px 16px;
    border: none;
    border-radius: 0;
    color: #ffffff;
    font-size: 1.188rem;
    font-family: 'Oswald', sans-serif !important;
    text-transform: uppercase;
    font-weight: 600;
    transition: .2s background-color ease-in-out;
    cursor: pointer;
    display: block;
    text-align: center;
}

a.button {
    text-decoration: none;
    color: #ffffff !important;
}

.button:hover, .button:focus {
    background-color: #000000;
}


a.button:hover {
    color: #ffffff;
}

.button--green {
    background-color: #02AA54 !important;
    color: #fff !important;
}

.button--green:hover, .button--green:focus {
    background-color: #363636 !important;
}

.button--full {
    max-width: unset;
    width: 100%;
}

.button .icon {
    margin-left: 10px;
    transform: translateY(-2px);
}

.button--disabled {
    background-color: transparent;
    border: 1px solid #C7C7C7;
    color: #C7C7C7 !important;
    cursor: not-allowed;
}

a.button--disabled {
    color: #C7C7C7 !important;
}

.button--disabled .icon {
   display: none;
}

.button--disabled:hover {
    background-color: transparent;
    border: 1px solid #C7C7C7;
    color: #C7C7C7 !important;
}

.button--disabled:hover a {
    color: #C7C7C7 !important;
}
