.btn-action {
    background: $button-color;
    border-color: $button-color;
    color: $white;
    font-weight: 500;
    padding: 0 10px;
    letter-spacing: 0px;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 30px;

    &:focus {
        outline: none;
    }

    i {
        margin-right: 5px;
    }

    &:hover {
        background: $button-hover-color;
        color: $white;
    }

    > img {
        vertical-align: middle;
    }
}

.btn-secondary {
    background-color: transparent;
    border-color: $button-color;
    color: rgba(74, 74, 74, 0.8);
    font-weight: 500;
    padding: 0 10px;
    letter-spacing: 0px;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 30px;

    &:hover {
        background-color: transparent;
        color: rgba(74, 74, 74, 1);

        > img {
            opacity: 1;
        }
    }

    &.btn-inverted {
        color: rgba(255, 255, 255, 0.8);

        &:hover {
            color: rgba(255, 255, 255, 1);

            > img {
                opacity: 1;
            }
        }
    }

    > img {
        opacity: 0.7;
        transition: all 0.5s;
        vertical-align: middle;
    }
}
