.raised-button{
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background: transparent;
    outline: none;
    display: inline-block;
    line-height: rem(24);
    padding: rem(6) rem(8);
    min-width: rem(88);
    margin:0;
    border: none;
    cursor: pointer;
    position: relative;
    color: rgba(0, 0, 0, 0.87);
    font-weight: $fontWeightMedium;
    text-transform: uppercase;
    font-size: $fontStyleButtonFontSize;
    box-sizing: border-box;
    overflow: hidden;
    background-color: $backgroundColor;
    color: $textColor;
    @include box-shadow-multiple(0, rem(1), rem(6), rgba(0, 0, 0, 0.12), 0, rem(1), rem(4), rgba(0, 0, 0, 0.24));
}

.raised-button-primary{
    color: $textColorPimary;
    background-color: $backgroundColorPrimary;
}
.raised-button-secondary{
    color: $textColorPimary;
    background-color: $backgroundColorSecondary;
}

.raised-button-label{
    padding: 0 rem(8);
    display:inline-block;
    line-height: rem(24);
    box-sizing: border-box;
    vertical-align: middle;
}

.raised-button:active, .raised-button:focus{
    @include box-shadow-multiple(0, rem(3), rem(10), rgba(0, 0, 0, 0.16), 0, rem(3), rem(10), rgba(0, 0, 0, 0.23));
}
.raised-button-tap {
    @include button-tap();
    &.tap-active {
        border-radius: 0;
    }
}