/* Spinner */
.spinner {
	margin: 100px auto;
	width: 50px;
	height: 40px;
	text-align: center;
	font-size: 10px;
}

.spinner>div {
	background-color: #00b1e1;
	height: 100%;
	width: 6px;
	display: inline-block;

	-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
	animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}

.spinner .rect3 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

.spinner .rect4 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}

.spinner .rect5 {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {

	0%,
	40%,
	100% {
		-webkit-transform: scaleY(0.4)
	}

	20% {
		-webkit-transform: scaleY(1.0)
	}
}

@keyframes sk-stretchdelay {

	0%,
	40%,
	100% {
		transform: scaleY(0.4);
		-webkit-transform: scaleY(0.4);
	}

	20% {
		transform: scaleY(1.0);
		-webkit-transform: scaleY(1.0);
	}
}

/* Others */

.sidebar-footer .pull-left {
	width: 50%;
}

.header-content .breadcrumb-wrapper .breadcrumb,
.header-content .breadcrumb-wrapper .breadcrumb a {
	font-size: 12px;
	color: #999;
}

.header-content .breadcrumb-wrapper .breadcrumb a,
.header-content .breadcrumb-wrapper .breadcrumb span {
	padding-left: 3px;
}

.header-content .breadcrumb-wrapper .breadcrumb i {
	width: 1.25em;
	text-align: center;
}

.callout-info:before {
	content: "\f00c";
}

.callout.vcenter p {
	padding: 15px 0px;
}

.form-group.detail {
	font-size: 12pt;
}

.no-data:before {
	font-family: "fontawesome";
	content: "\f119";
	display: block;
	font-size: 110px;
	margin-bottom: 5px;
}

.form-horizontal .form-group.detail {
	margin: 0px;
}

.table tbody tr td>button {
	margin-right: 5px;
}

.table tbody tr td>a,
.table tbody tr td>button {
	margin-bottom: 5px;
}

.m0 {
	margin: 0px !important;
}

.table tbody tr td>a i.fa {
	color: #fff;
}

.table tbody>tr.row-strike>td.text-strike {
	text-decoration: line-through;
}

.table tbody>tr.row-strike>td.strike-danger {
	color: #E9573F !important;
}

.select2.select2-container .select2-selection,
.select2.select2-container span.select2-selection__arrow {
	height: 34px;
}

.select2.select2-container span.select2-selection__rendered {
	line-height: 34px;
}

.form-body .form-group:not(.detail) {
	min-height: 64px;
}

.text-nowrap {
	white-space: nowrap;
}

input.form-control.datepicker {
	padding: 6px 12px;
}

input.form-control.datetimepicker {
	padding: 6px 12px;
}

#reset-style {
	all: initial;

	* {
		all: unset;
	}
}

/* Lain */
.w20px {
	width: 20px;
}

.w30px {
	width: 30px;
}

.w40px {
	width: 40px;
}

.w50px {
	width: 50px;
}

.w60px {
	width: 60px;
}

.w70px {
	width: 70px;
}

.w80px {
	width: 80px;
}

.w100px {
	width: 100px;
}

.w100 {
	width: 100%;
}

.mtop5 {
	margin-top: 5px;
}

.mtop10 {
	margin-top: 10px;
}

.hand {
	cursor: pointer;
}