.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: #0F0F0F !important;

}

.sidebar-link,
a.sidebar-link {
  background: #0F0F0F;
}

.sidebar-link:hover {
  background: linear-gradient(90deg, rgba(198, 151, 73, .1), rgba(198, 151, 73, .088) 50%, transparent);
  border-left-color: #e3b934;
  color: #e9ecef;
  transition: all 500ms;
}

.sidebar-item.active .sidebar-link:hover,
.sidebar-item.active>.sidebar-link {
  background: linear-gradient(90deg, rgba(198, 151, 73, .1), rgba(198, 151, 73, .088) 50%, transparent);
  border-left-color: #e3b934;
  color: #e9ecef;
  transition: all 500ms;
}

/* HTML: <div class="loader"></div> */
.orders-loader {
  width: 15px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l5 1s infinite linear alternate;
}
@keyframes l5 {
    0%  {box-shadow: 20px 0 #000, -20px 0 #0002;background: #000 }
    33% {box-shadow: 20px 0 #000, -20px 0 #0002;background: #0002}
    66% {box-shadow: 20px 0 #0002,-20px 0 #000; background: #0002}
    100%{box-shadow: 20px 0 #0002,-20px 0 #000; background: #000 }
}