/* 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;
}

#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;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #000;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}


[loader_body] {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999999999999999999999999999999;
  background: rgba(0, 0, 0, 0.36);
}

[loader_body] > div {
  position: fixed;
  top: calc(50% - 64px);
  left: calc(50% - 40px);
}
[loader_body] > div:after {
  position: absolute;
  content: "Mohon Tunggu...";
  width: 200px;
  color: white;
  font-size: 16px;
  font-family: verdana;
  margin: -14px 0px 0px -25px;
  text-shadow: 0px 2px 1px #000;
}
