.p5-button {
	font-size: 14px;
	padding: 12px 20px;
	background: #fff;
	border: 1px solid #bbb;
	border-radius: 3px;
	box-sizing: border-box;
	outline: none;
	margin: 0;
	display: inline-block;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
	-webkit-appearance: none;
	text-align: center;
	transition: 0.1s;
	font-weight: 500;
	user-select: none;
	color: #666;
	position: relative;
	transition: color .2s linear, background-color .2s linear, border .2s linear, opacity .2s linear,;
	// height: 32px;;
}

.p5-button-default:hover:not(.p5-button-isdisables) {
	@include color;
	@include brcolor;
}
.p5-button-text {
	border: none;
	// color: #5c9dec;
	@include color;
	background: transparent;
	padding-left: 0;
	padding-right: 0;
}
.p5-button-small {
	padding: 9px 15px;
	font-size: 12px;
}
.p5-button-large {
	padding: 17px 26px;
}


.p5-button{
	&.p5-button-type {
		color: #fff;
		&:hover:not(.p5-button-isdisables) {
			opacity: 0.8;
		}
	}
	&-primary {
		background-color: #719cf3;
		border-color: #719cf3;
	}
	&-success {
		background-color: #41c27e;
    	border-color: #41c27e;
	}
	&-info {
		background-color: #9fa4b0;
    	border-color: #9fa4b0;
	}
	&-warning {
		background-color: #ffb345;
    	border-color: #ffb345;
	}
	&-danger {
		background-color: #f6001e;
    	border-color: #f6001e;
	}
}
.p5-button.p5-button-isdisables {
	cursor: not-allowed;
	color: #c0c4cc;
	background-image: none;
	background-color: #fff;
	border-color: #ebeef5;
}