$s-button-active-opacity:0.75 !default;
$s-button-loading-text-margin-left:4px !default;
$s-button-text-color: #FFFFFF !default;
$s-button-text-plain-error-color:$s-error !default;
$s-button-text-plain-warning-color:$s-warning !default;
$s-button-text-plain-success-color:$s-success !default;
$s-button-text-plain-info-color:$s-info !default;
$s-button-text-plain-primary-color:$s-primary !default;
.s-button {
	&--active {
		opacity: $s-button-active-opacity;
	}
	
	&--active--plain {
		background-color: rgb(217, 217, 217);
	}
	
	&__loading-text {
		margin-left:$s-button-loading-text-margin-left;
	}
	
	&__text,
	&__loading-text {
		color:$s-button-text-color;
	}
	
	&__text--plain--error {
		color:$s-button-text-plain-error-color;
	}
	
	&__text--plain--warning {
		color:$s-button-text-plain-warning-color;
	}
	
	&__text--plain--success{
		color:$s-button-text-plain-success-color;
	}
	
	&__text--plain--info {
		color:$s-button-text-plain-info-color;
	}
	
	&__text--plain--primary {
		color:$s-button-text-plain-primary-color;
	}
}