/* ==========================================================================
   Odds and ends with no component of their own yet: page widgets,
   counters, key caps, filter indicators and a dropzone.
   ========================================================================== */

/* ----- from theme.css ----- */
/* Fullheight side */

/* No Box-Shadow Style */

/*    overlay sidebar    */

/*    compact wrapper    */
/*    classic     */
/*    Static Sidebar    */
/*    Flex-1    */

/*    Metric    */
.metric {
  display: flex;
  padding: 1rem;
  flex-direction: column; }.user-box {
  display: flex;
  padding: .25rem 1rem; }

/* Quick Actions Dropdown */

/*     Chart Circle    */

/*     Chart JS Container    */
.widgetCard {
  min-height: 300px;
  position: relative; }@media screen and (max-width: 991px) {

    

  /* Dropzone */
  .dropzone {
    padding: 20px 15px !important; }
}
@media screen and (max-width: 576px) {
  #widgetCard {
    min-height: 250px; }
}
/* ----- from theme-override.css ----- */
.pulseBtn {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.7);
    animation: pulse_2 2s infinite;
}.counter {
    font-size: 9px;
    position: relative;
    left: auto;
    z-index: 2;
    padding: 1px 7px;
    color: #fff;
    border-radius: 10em;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
}.wrapLabelCol {
    white-space: unset !important;
}/* Filter indicator */
.filter-active {
    border-color: rgba(74, 158, 255, 0.4) !important;
}
.filter-indicator {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-left: 0.35rem;
    background: var(--color-blue);
    animation: pulse-subtle 2s ease-in-out infinite;
}
/* Reusable dialpad/keyboard keycap. App-wide: any page can drop `.keycap`
   on a <kbd> or <span> to render a value as a physical key. */
.keycap {
    display: inline-block;
    min-width: 1.6rem;
    padding: .05rem .4rem;
    font-family: var(--font-family-monospace, monospace), monospace, monospace;
    font-size: .8rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-secondary);
    background: var(--surface-3);
    border: 1px solid var(--border-emphasis);
    border-bottom-width: 2px;
    border-radius: .3rem;
    line-height: 1.5;
}