.ajax-preloader {
  height: 100%;
  width: 100%;
  position: absolute;
  background: #fff;
  opacity: 0.6;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ajax-preloader::after {
  font-family: 'Line Awesome Free';
  font-size: 2rem;
  font-weight: 900;
  content: "\f1ce";
  animation: fa-spin 2s infinite linear;
}

.table-thumb {
  width: 75px;
  height: 75px;
  object-position: center;
  object-fit: contain;
  border-radius: 0.3rem;
  border: 1px solid #ebebeb;
  position: relative;
  padding: 3px;
  background: #fff;
}

@media (max-width: 991px) {
  .table-thumb {
    margin-left: auto;
  }
}

/* Toggle Switch Start */
.switch {
  position: relative;
  display: inline-block;
  width: 58px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked+.slider {
  background-color: #28c76f;
}

input:focus+.slider {
  box-shadow: 0 0 1px #28c76f;
}

input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Toggle Switch End */


.btn-close:focus {
  outline: none !important;
  box-shadow: none !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.cursor-pointer:hover {
  color: #4634ff !important;
}