.bootbox.modal .modal-header {
  padding: 0.5rem 1rem;
}

.bootbox.modal .bootbox-body p {
  font-size: 16px;
  font-weight: bold;
}

.bootbox.modal .modal-content {
  box-shadow: 4px 4px 8px 1px black;
}

/*.simplebar-offset {
  position: sticky;
  top: 70px;
}*/

.pagination {
  margin-top: 10px;
}

.pagination a.paginate_button, i.dotted_pointer {
  position: relative;
  display: block;
  color: #74788d;
  background-color: #fff;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ced4da;
  position: relative;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
}
.pagination a.paginate_button:hover {
  z-index: 2;
  color: #1f2acc;
  text-decoration: none;
  background-color: #edf1f5;
  border-color: #ced4da;
}

.pagination a.paginate_button.current {
  background-color: red;
  border-color: red;
  color: #fff;
}
.pagination a.paginate_button:not(.current) {
  cursor: default;
}

a.page-link {
  border-radius: 0 !important;
}

a.page-link.active {
  background-color: red;
  color: #fff;
  border-color: red;
  z-index: 3;
}

.ce-pointer {
  cursor: pointer;
}

/* The switch - the box around the slider */
.toggle_switch .switch {
  font-size: 15px;
  position: relative;
  display: inline-block;
  width: 3.5em;
  height: 2em;
}

/* Hide default HTML checkbox */
.toggle_switch .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.toggle_switch .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #ffa3a3;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toggle_switch .slider:before {
  position: absolute;
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2em;
  width: 2em;
  inset: 0;
  background-color: white;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toggle_switch .switch input:checked + .slider {
  background: #ff0000cf;
}

.toggle_switch .switch input:focus + .slider {
  box-shadow: 0 0 1px #0974f1;
}

.toggle_switch .switch input:checked + .slider:before {
  transform: translateX(1.6em);
}

.modal-backdrop.show {
    opacity: .7;
}

.card-row-image {
  width: 80px;
  height: 80px;
  background: white;
  padding: .2em;
  border-radius: 6px;
  transition: transform 0.5s ease;
}

.card-row-image .card-image {
  background-color: rgb(236, 236, 236);
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.card-row-image:hover {
  transform: translateY(-10%);
}

.vertical-collpsed .vertical-menu .simplebar-content-wrapper {
    overflow: hidden scroll !important;
}

body.loader {
  overflow: hidden;
}

body.loader:before {
  position: fixed;
  background: url(../images/loader.svg) !important;
  z-index: 999999 !important;
  content: '';
  top: 0;
  bottom: 0;
  margin: auto;
  background-repeat: no-repeat !important;
  left: 0;
  right: 0;
  width: 160px !important;
  height: 160px !important;
  background-size: contain !important;
}

body.loader:after {
  background-size: cover;
  background-repeat: no-repeat !important;
  background: #2a2d9a80 !important;
  left: 0;
  content: '';
  width: 100%;
  z-index: 99999 !important;
  bottom: 0;
  margin: auto;
  position: fixed;
  top: 0;
  height: 100%;
}

.transform_upper {
    text-transform: uppercase !important;
}


@media only screen and (max-width: 599px) {
    .pagination span a.paginate_button:not(.current), .pagination span .dotted_pointer {
        display: none;
    }
}