/* global style */
.no-border {
	border: none !important;
}
.no-border-radius {
	border-radius: 0px !important;
	-moz-border-radius: 0px !important;
	-webkit-border-radius: 0px !important;
}
.no-border-radius-bottom-left {
	border-bottom-left-radius: 0px !important;
	-moz-border-bottom-left-radius: 0px !important;
	-webkit-border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
	-moz-border-bottom-right-radius: 0px !important;
	-webkit-border-bottom-right-radius: 0px !important;
}
.border-top-left.radius-3px {
	border-radius: 3px 0px 0px 3px;
	-o-border-radius: 3px 0px 0px 3px;
	-ms-border-radius: 3px 0px 0px 3px;
	-moz-border-radius: 3px 0px 0px 3px;
	-webkit-border-radius: 3px 0px 0px 3px;
}
/* border with 1px*/
.border-w-1px {
	border-width: 1px;
}
.border-bt-1px-e2 {
	border-bottom: 1px solid #e2e2e2;
}

.border-w-2px {
	border-width: 2px;
}
/* border style libs */
.border-style-solid {
	border-style: solid;
}
.border-top-style-solid {
	border-top-style: solid;
}
.border-right-style-solid {
	border-right-style: solid;
}
.border-bottom-style-solid {
	border-bottom-style: solid;
}
.border-left-style-solid {
	border-left-style: solid;
}

.border-style-dashed {
	border-style: dashed;
}
.border-top-style-dashed {
	border-top-style: dashed;
}
.border-right-style-dashed {
	border-right-style: dashed;
}
.border-bottom-style-dashed {
	border-bottom-style: dashed;
}
.border-left-style-dashed {
	border-left-style: dashed;
}
/* border color libs */
.border-color-e2 {
	border-color: #e2e2e2;
}
.border-color-d2 {
	border-color: #d2d2d2;
}
.border-color-cec7a0 {
	border-color: #cec7a0;
}
.border-color-1976d2 {
	border-color: #1976d2;
}
.border-color-dd3b3b {
	border-color: #dd3b3b;
}
/* Border style, color */
.border-solid-e2 {
	border: 1px solid #e2e2e2;
}
.border-solid-d4 {
	border: 1px solid #d4d4d4;
}
.border-solid-b6 {
	border: 1px solid #b6b6b6;
}
.border-dashed-e2 {
	border: 1px dashed #e2e2e2;
}
.border-dashed-b6 {
	border: 1px dashed #b6b6b6;
}
.border-dotted-e2 {
	border: 1px dotted #e2e2e2;
}
.border-dotted-b6 {
	border: 1px dotted #b6b6b6;
}
/* Border radius style */
.border-radius-3 {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.border-radius-4,
md-select > .md-select-value {
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
.border-radius-5 {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.border-radius-100 {
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
}