.badge:empty {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  min-width: 0;
  min-height: auto;
  padding: 0;
  border-radius: 100rem!important;
  border-color:var(--gray-300)!important;
}


.table-responsive {
  -webkit-overflow-scrolling: auto;
}

.progress {
  background-color: transparent;
}

.upload-previews {
  overflow-y: auto;
}

.app-sidebar-links-wrapper {
  overflow-y: auto;
}

/* .app-menu-nav-container {
  overflow: auto;
} */

.clipboard-container {
  border: solid 1px var(--background-color);
  border-radius: .4rem;
}

.clipboard-content-simple {
  padding: .45rem .75rem;
  overflow: hidden;
}

.clipboard-content-simple img {
  max-width: 100%;
}

.clipboard-content-code {
  padding: .75rem .75rem!important;
  margin: 0!important;
}

.truncate-td {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  max-height: calc(1.5em * 5 - .75rem);
  max-width: 280px;
  padding: 0 .25rem;
}

/*! Color themes for Google Code Prettify | MIT License | github.com/jmblog/color-themes-for-google-code-prettify */
.prettyprint {
  background: transparent;
  font-family: Menlo, "Bitstream Vera Sans Mono", "DejaVu Sans Mono", Monaco, Consolas, monospace;
  border: 0 !important;
}

.pln {
  color: var(--color);
}

/* Specify class=linenums on a pre to get line numbering */
ol.linenums {
  margin-top: 0;
  margin-bottom: 0;
  color: #5f6f8152;
}

li.L0,
li.L1,
li.L2,
li.L3,
li.L4,
li.L5,
li.L6,
li.L7,
li.L8,
li.L9 {
  padding-left: 1em;
  background: transparent;
  list-style-type: decimal;
}

@media screen {

  /* string content */

  .str {
    color: #2184b5;
  }

  /* keyword */

  .kwd {
    color: var(--background-color-2);
  }

  /* comment */

  .com {
    color: #969896;
  }

  /* type name */

  .typ {
    color: var(--primary);
  }

  /* literal value */

  .lit {
    color: #e78c45;
  }

  /* punctuation */

  .pun {
    color: var(--color-muted);
  }

  /* lisp open bracket */

  .opn {
    color: var(--color-muted);
  }

  /* lisp close bracket */

  .clo {
    color: var(--color-muted);
  }

  /* markup tag name */

  .tag {
    color: #d54e53;
  }

  /* markup attribute name */

  .atn {
    color: #e78c45;
  }

  /* markup attribute value */

  .atv {
    color: #70c0b1;
  }

  /* declaration */

  .dec {
    color: #e78c45;
  }

  /* variable name */

  .var {
    color: #d54e53;
  }

  /* function name */

  .fun {
    color: #7aa6da;
  }
}

.progress-not-yet {
  background: #9ca6b159;
  height: 1.85rem;
  width: 100%;
  max-width: 100%;
}

/* .g-banner {
  background-color: var(--border);
  position: relative;
  min-height: 100px;
  min-width: 300px;
  padding: 8px 8px 2px 8px;
}

.g-banner::before {
  content: '';
  position: absolute;
  font-size: small;
  opacity: .35;
  top: 1rem;
  left: 1rem;
} */

.animate-bounce {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}


