.fixButton {
    bottom: 0;
    height: 45px;
    width: 100%;
    text-align: center;
    line-height: 50px;
    font-size: 16px;
    &-primary {
        background-color: @primary-color;
        color: #fff;
        &:active {
            background-color: darken(@primary-color, -5%);
        }
    }
    &-disable {
        background-color: @btn-disable-color;
        color: #fff;
    }
    &-error {
        background-color: #fff;
        color: @error-color;
    }
}