:root{
  --color-muted: #717882;
}

@media (min-width: 1200px) {
  .app-mega-container {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
@media (min-width: 768px) {
  .w-md-50 {
    width: 50% !important;
  }
}

[data-theme-style=dark] .alert-info hr {
  border-top-color: #0d4d57;
}

.upload-drag-over-active {
  border: 2px dashed var(--primary);
  background-color: #00abff1f
}

.cursor-pointer {
  cursor: pointer;
}

.ol-classic {
  padding-left: 1.25rem;
}

.ol-classic li::marker {
  color: var(--info);
}

.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);
  }
}

/* panel report */

.panel-report {
  position: fixed;
  bottom: 0;
  right: -100%;
  width: 100%;
  height: calc(100% - 60px);
  z-index: 997;
  background-color: var(--background-color);
  transition: right .6s cubic-bezier(.7, 0, .84, 0);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  top: 60px;
  overflow: scroll!important;
  /*padding: .5rem 1.75rem;*/
  /*padding-top: .5rem;*/
}

@media (min-width: 576px) {
  .panel-report {
    width: 50%;
    height: 100%;
    z-index: 1031;
    min-width: 396px;
    top: 0;
  }
}

.panel-report.show {
  right: 0;
  transition: right .6s cubic-bezier(.16, 1, .3, 1);
}

@media (min-width: 576px) {
  .panel-report.show {
    right: 0px;
  }
}

.report-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 1rem;
}

@media (min-width: 576px) {
  .report-header {
    padding-top: 1rem;
  }
}

.report-footer {
  display: flex;
  align-items: center;
  display: flex;
  justify-content: end;
  gap: 1rem !important;
}

.close {
  color: var(--color);
  text-shadow: none;
}

.close:hover {
  color: inherit;
}

.custom-control-label::before {
  transition: transform .15s;
}

.form-check-input:not(:checked):hover ~ .custom-control-label::before {
  transform: scale(1.1);
}

.pe-none {
  pointer-events:none;
}

.form-check {
  padding: .6rem 2.25rem;
  position: relative;
  margin: 0 0 .2rem;
}

.form-check-label {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #384252;
}

[data-theme-style="dark"] .form-check-label {
  color: #b8c7db;
}

.form-check-border::before {
  border: 1px solid #e5e7eb;
  border-radius: .25rem;
  transition: .2s;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: '';
  z-index: 1;
}

[data-theme-style="dark"] .form-check-border::before {
  border: 1px solid #293242;
}


.form-check-input:checked ~ .form-check-border::before {
  color: #b8c7db;
  background: rgba(14,159,225,.25);
  border-color: rgba(14,159,225,.25);
  outline: 0;
  z-index: -1;
}

.form-check-border {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  color: var(--color);
  background-clip: padding-box;
  transition: .2s;
  cursor: pointer;
}




