/* Importando CSS Responsivo */
@import "responsive.css"; 
/**/
:root {
    /* Variable para o tamanho do header exemple: padding-top: var(--header-height) */
    --header-height: 3.8rem;

    /* colors */
    --hue: 102;
    --hue2: 82;

    /* HSL color mode */
    
    --base-color: hsl(var(--hue) 59% 27%);

    --base-color-alt: hsl(var(--hue) 50% 55%);
    --base-color-active: hsl(var(--hue) 50% 65%);
    --title-color: hsl(var(--hue) 41% 50%);
    
    --base-color-second: hsl(var(--hue2) 57% 40%);

    --text-color: hsl(0 0% 46%);
    --text-color-light: hsl(0 0% 98%);
    --body-color: hsl(0 0% 98%);    
}

.input-teste[type=text] {
    width: 30%;
    -webkit-transition: width 0.15s ease-in-out;
    transition: width 0.15s ease-in-out;
}

  /* When the input field gets focus,
       change its width to 100% */
.input-teste[type=text]:focus {
    width: 70%;
}

.testando {
    margin: 0 auto;
}

.btn-primary {
    background-color: var(--base-color) !important;
    border-color: unset !important;
}

.btn-primary:hover {
    background-color: var(--base-color-alt) !important;
    border-color: unset !important;
}

.btn-primary:active {
    background-color: var(--base-color-active) !important;
    border-color: unset !important;
}

.card-primary.card-outline {
    /* background-color: var(--base-color); */
    border-top: 3px solid var(--base-color);
}

.card-primary:not(.card-outline)>.card-header {
    background-color: var(--base-color);
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: var(--base-color);
}

.nav-pills .nav-link:not(.active):hover {
    color: var(--base-color);
}

.fas, .far, .fa {
    color: var(--base-color) !important; 
}

.page-item.active .page-link {
    background-color: var(--base-color);
    border-color: var(--base-color);
}

.main-footer a {
    color: var(--base-color);
}

.breadcrumb-item a {
    color: var(--base-color);
}

.td-style {
    text-align: center;
    font-size: 13px;
    align-items: center;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
    border-color: var(--base-color) !important;
    background-color: var(--base-color) !important;
    box-shadow: none;
  }

  .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: var(--base-color) !important;
  }
  
  .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
    background-color: var(--base-color) !important;
  }

  .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: var(--base-color) !important;
  }

.bd-callout-info {
    border-left-color: #433181;
}

.bd-callout {
    padding: 0.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid #bfbfbf;
    border-left-width: 1rem;
    border-radius: 0.25rem;
}

/* Apply CSS properties to ui-widgets class */
.ui-widgets {
    position: relative;
    display: inline-block;
    width: 8rem;
    height: 8rem;
    border-radius: 9rem;
    margin: 0.5rem;
    border: 1.2rem solid #9bce3e;
    box-shadow: inset 0 0 7px grey;
    border-left-color: #9bce3e;
    border-top-color: #759e28;
    border-right-color: #3e831f;
    border-bottom-color: white;
    text-align: center;
    box-sizing: border-box;
}

/*  Apply css properties to the second 
    child of ui-widgets class */
.ui-widgets:nth-child(4) {
    border-top-color: #759e28;
    border-right-color: white;
    border-left-color: #9bce3e;
    border-bottom-color: white;
}

/*  Apply css properties to ui-widgets class 
    and ui-values class*/
.ui-widgets .ui-values {
    top: 20px;
    position: absolute;
    left: 3px;
    right: 0;
    font-weight: 700;
    font-size: 2.0rem;

}

.ui-widgets .ui-labels {

    left: 0;
    bottom: -16px;
    text-shadow: 0 0 4px grey;
    color: black;
    position: absolute;
    width: 100%;
    font-size: 16px;
}

.circle {
    position: relative;
    width: 120px;
    height: 120px;
  }
  
  .star {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
  }
  
  .progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
  }
  
  .progress-ring__circle {
    transition: stroke-dashoffset 0.35s;
    transform-origin: 50% 50%;
  }
  
  .progress-ring__circle--progress {
    stroke-dasharray: 326.993;
    stroke-dashoffset: 326.993;
  }

  .select-form-control {
    display: block;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    box-shadow: inset 0 0 0 transparent;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }


  #meu-modal .button-group {
    display: flex;
    flex-direction: row;
  }
  
  #meu-modal .button {
    background-color: #ccc;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  #meu-modal .button.active {
    background-color: var(--base-color-second);
  }
  
  #meu-modal .content .tab-content {
    display: none;
  }
  
  #meu-modal .content .tab-content.active {
    display: block;
  }
  
  .nome-longo {
      max-width: 15ch;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
  }

.title-left {
  text-align: left;
  flex: 1;
  font-weight: 600;
}

.date-right {
  text-align: right;
  font-weight: 500;
  font-size: 14px;
}

#myChart {
  width: 100%;
  height: auto;
  max-width: 600px;
  margin: 0 auto;
}

.btn.btn-navbar.btn-opc {
  background-color: #adb5bd;
  border-radius: 0 5px 5px 0;
}

input.form-control.form-control-navbar:focus {
  border-color: #7c838a;
}

.dropdown.bootstrap-select.form-control.select-picker.custom {
  width: 105px;
}

.form-control.select-picker.custom ul.dropdown-menu.inner.show li {
  text-align: center;
}