.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: #3498db;
  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);
  }
}


.form-control:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.25);
}

.result-item {
  transition: all 300ms;
}

.result-item:hover {
  transform: translateX(24px);
  
}

.select2-selection {
  min-height: 36px !important;
}
.select2-selection__rendered{
  margin-top: 4px !important;
}
.select2-search__field {
  border-radius: 5px !important;

}
.select2-search__field:focus{
  outline: none !important;



}

input[readonly] {
  background-color: #dcdcdc !important;
  cursor: not-allowed;
}



.icon-menu {
  font-size: 20px !important;
}

.sidebar,
.sidebar-content {
  background: #fff !important;

}

.sidebar-link,
a.sidebar-link {
  background: #fff;
  color: #808080;
}

.sidebar-link:hover {
  background: linear-gradient(90deg, rgba(9, 139, 111, 0.1), rgba(73, 198, 177, 0.088) 50%, transparent);
  border-left-color: #075e54;
  color: #808080;
  transition: all 500ms;
}

.sidebar-item .sidebar-link i{
  color: #808080 !important;
}

.sidebar-item.active .sidebar-link:hover,
.sidebar-item.active>.sidebar-link {
  background: linear-gradient(90deg, rgba(9, 139, 111, 0.1), rgba(73, 198, 177, 0.088) 50%, transparent);
  border-left-color: #075e54;
  color: #808080;
  transition: all 500ms;
}

.sidebar-header{
  color: #075e54;
  font-weight: bold;
}

.slider {
	position: relative;
	z-index: 1;
	height: 10px;
	margin: 0 15px;
}
.slider > .track {
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border-radius: 5px;
	background-color: #7b9d99;
}
.slider > .range {
	position: absolute;
	z-index: 2;
	left: 25%;
	right: 25%;
	top: 0;
	bottom: 0;
	border-radius: 5px;
	background-color: #075e54;
}
.slider > .thumb {
	position: absolute;
	z-index: 3;
	width: 30px;
	height: 30px;
	background-color: #075e54;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(98,0,238,.1);
	transition: box-shadow .3s ease-in-out;
}
.slider > .thumb.left {
	left: 25%;
	transform: translate(-15px, -10px);
}
.slider > .thumb.right {
	right: 25%;
	transform: translate(15px, -10px);
}
.slider > .thumb.hover {
	box-shadow: 0 0 0 20px rgba(98,0,238,.1);
}
.slider > .thumb.active {
	box-shadow: 0 0 0 40px rgba(98,0,238,.2);
}

input[type=range] {
	position: absolute;
	pointer-events: none;
	-webkit-appearance: none;
	z-index: 2;
	height: 10px;
	width: 100%;
	opacity: 0;
}
input[type=range]::-webkit-slider-thumb {
	pointer-events: all;
	width: 30px;
	height: 30px;
	border-radius: 0;
	border: 0 none;
	background-color: red;
	-webkit-appearance: none;
}