.dash_loading {
height: 100%;
position: fixed;
width: 100%;
background: rgba(12, 36, 60, 0.85);
z-index: 3006;
/* //display: none; */
}
.filter-option-inner-inner{
    white-space: normal;
}
.load-item{
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  border-radius: 50%;
  border-top: 2px solid #ffc107;
  position: absolute;
  animation: a1 1s linear infinite;
  right: 20px;
  top: 20px;
  position: fixed;
}

.load-item::before,.loading::after{
  content: '';
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: -2px;
  box-sizing: border-box;
  border-radius: 50%;
}

.load-item::before{
  border-top: 2px solid #e67e22;
  transform: rotate(120deg);
}

.load-item:after{
  border-top: 2px solid #3498db;
  transform: rotate(240deg);
}

@keyframes a1 {
  to{
    transform: rotate(360deg);
  }
}

@keyframes a2 {
  to{
    transform: rotate(-360deg);
  }
}
.dropdown-menu .dropdown-item{
  max-width: unset;
}
.filter-option-inner-inner {
  color: #3e3e3e;
}
.select2 {
  width: 100% !important;
}
.select2 .dropdown-menu{
  display: grid !important;
}
.form-control {
  background: #fff;
}
.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
    position: absolute;
    display: inline-block;
    left: 13px;
    top: 5px;
}