.badge-default {
  color: #fff;
}

.badge-secondary {
  background-color: theme-color("secondary");
  color: color-yiq(theme-color("secondary"));
  color: #5974a2;
  background-color: #e4e8ed;
}

.badge-primary {
  color: #5974a2;
  background-color: #eaecfb;
}

.badge-primary[href]:focus {
  color: color-yiq(#5e72e4);
  text-decoration: none;
  background-color: #2a44db;
}

.badge-primary[href]:hover {
  color: color-yiq(#5e72e4);
  text-decoration: none;
  background-color: #2a44db;
}

.badge-secondary[href]:focus {
  color: color-yiq(#8392ab);
  text-decoration: none;
  background-color: #617390;
}

.badge-secondary[href]:hover {
  color: color-yiq(#8392ab);
  text-decoration: none;
  background-color: #617390;
}

.badge-success {
  color: #1aae6f;
  background-color: #b0eed3;
}

.badge-success[href]:focus {
  color: color-yiq(#2dce89);
  text-decoration: none;
  background-color: #229c68;
}

.badge-success[href]:hover {
  color: color-yiq(#2dce89);
  text-decoration: none;
  background-color: #229c68;
}

.badge-info {
  color: #03acca;
  background-color: #aaedf9;
}

.badge-info[href]:focus {
  color: color-yiq(#11cdef);
  text-decoration: none;
  background-color: #0c9cb7;
}

.badge-info[href]:hover {
  color: color-yiq(#11cdef);
  text-decoration: none;
  background-color: #0c9cb7;
}

.badge-warning {
  color: #7f6106;
  background-color: #ffc107;
}

.badge-warning[href]:focus {
  color: color-yiq(#fb6340);
  text-decoration: none;
  background-color: #f93305;
}

.badge-warning[href]:hover {
  color: color-yiq(#fb6340);
  text-decoration: none;
  background-color: #f93305;
}

.badge-danger {
  color: #f80031;
  background-color: #fdd1da;
}

.badge-danger[href]:focus {
  color: color-yiq(#f5365c);
  text-decoration: none;
  background-color: #e30b36;
}

.badge-danger[href]:hover {
  color: color-yiq(#f5365c);
  text-decoration: none;
  background-color: #e30b36;
}

.badge-light {
  color: #c7d3de;
  background-color: #fff;
}

.badge-light[href]:focus {
  color: color-yiq(#e9ecef);
  text-decoration: none;
  background-color: #c6cdd5;
}

.badge-light[href]:hover {
  color: color-yiq(#e9ecef);
  text-decoration: none;
  background-color: #c6cdd5;
}

.badge-dark {
  color: #1e2e4a;
  background-color: #8097bf;
}

.badge-dark[href]:focus {
  color: color-yiq(#344767);
  text-decoration: none;
  background-color: #1f2b3e;
}

.badge-dark[href]:hover {
  color: color-yiq(#344767);
  text-decoration: none;
  background-color: #1f2b3e;
}

.badge-white {
  color: #e8e3e3;
  background-color: #fff;
}

.badge-white[href]:focus {
  color: color-yiq(#fff);
  text-decoration: none;
  background-color: #e0e0e0;
}

.badge-white[href]:hover {
  color: color-yiq(#fff);
  text-decoration: none;
  background-color: #e0e0e0;
}

.badge-circle {
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0 !important;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-circle.badge-md {
  width: 1.5rem;
  height: 1.5rem;
}

.badge-circle.badge-lg {
  width: 2rem;
  height: 2rem;
}

.badge-dot {
  padding-left: 0;
  padding-right: 0;
  background: transparent;
  font-weight: 400;
  font-size: 0.875rem;
  text-transform: none;
}

.badge-dot strong {
  color: #343a40;
}

.badge-dot i {
  display: inline-block;
  vertical-align: middle;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  margin-right: 0.375rem;
}

.badge-dot.badge-md i {
  width: 0.5rem;
  height: 0.5rem;
}

.badge-dot.badge-lg i {
  width: 0.625rem;
  height: 0.625rem;
}

.dataTables_info {
  color: #8392ab;
  font-size: 0.875rem;
}

.hide-show-content {
  display: none;
}

/**
 * Activity Log
 */
.activity-feed {
  padding: 15px;
  list-style: none;
}

.activity-feed .feed-item {
  position: relative;
  padding-bottom: 20px;
  padding-left: 30px;
  border-left: 2px solid #e4e8eb;
}

.activity-feed .feed-item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #343a40;
}

.activity-feed .feed-item .date {
  display: block;
  position: relative;
  top: -5px;
  color: #8c96a3;
  text-transform: uppercase;
  font-size: 13px;
}

.activity-feed .feed-item .text {
  position: relative;
  top: -3px;
}

.activity-feed .feed-item .text.log-title-text {
  font-size: 0.91rem;
}

.activity-feed .feed-item pre {
  background-color: #000;
  color: #fff;
  padding: 15px;
}

.activity-feed .feed-item:last-child {
  border-color: transparent;
}

.activity-feed .feed-item-primary::after {
  background: #007bff;
}

.activity-feed .feed-item-secondary::after {
  background: #6c757d;
}

.activity-feed .feed-item-success::after {
  background: #28a745;
}

.activity-feed .feed-item-info::after {
  background: #17a2b8;
}

.activity-feed .feed-item-warning::after {
  background: #ffc107;
}

.activity-feed .feed-item-danger::after {
  background: #dc3545;
}

@media screen and (max-width: 600px) {
  .deft-mobile-responsive {
    width: 100% !important;
    border: 0;
  }

  .deft-mobile-responsive caption {
    font-size: 1.3em;
  }

  .deft-mobile-responsive thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .deft-mobile-responsive tr {
    border-radius: 10px;
    border: 1.5px solid #dedede;
    /* border-bottom: 4px solid #dedede; */
    display: block;
    margin-bottom: 0.625em;
  }

  .deft-mobile-responsive tr:last-child td {
    border-width: 1.5px solid #dedede !important;
  }

  .deft-mobile-responsive td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: 0.8em;
    text-align: right !important;
  }

  .deft-mobile-responsive td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }

  .deft-mobile-responsive td:last-child {
    border-bottom: 0;
  }
}

.btn-icon-sm {
  padding: 0.3rem 0.6rem;
  font-size: 1rem;
  border-radius: 0.5rem;
}

.img-upload {
  position: relative;
  display: block;
  max-width: 100%;
  height: auto;
}

.img-upload.display-picture {
  width: 250px;
  height: 250px;
}

.img-upload.display-picture label {
  font-size: 25px;
  top: 50%;
  left: 50%;
  margin-top: -12px;
  margin-left: -12px;
}

.img-upload label {
  cursor: pointer;
  position: absolute;
  top: 10px;
  left: 15px;
  margin: 0;
}

.img-upload .input-file {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  outline: 0;
  z-index: 1;
}

.flatpickr-calendar {
  font-size: 12px;
}

.repeatable-hide {
  display: none;
}

.custom-box-shadow {
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}