html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  margin: auto 0;
}

footer {
  padding: .75rem;
  margin-top: auto;
}

.default-btn {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.icon-link {
  font-size: 1.75rem;
}

.clickable-row:hover {
  cursor: pointer;
}

.action-btn {
  width: 20%;
}

.results tr[visible='false'],
#info-table tr[visible='false'],
.no-result{
  display:none;
}

.results tr[visible='true'],
#info-table tr[visible='true']{
  display:table-row;
}

.counter{
  padding:8px;
  color:#ccc;
}

.input-container {
  display: flex;
  width: 100%;
  margin-bottom: 15px;
}

.icon {
  padding: 14px;
  background: #212529;
  color: white;
  min-width: 50px;
  text-align: center;
  border-radius: 5px 0 0 5px;
}

.input-field {
  max-width: 200px;
  padding: 10px;
  outline: none;
  border-radius: 0 5px 5px 0;
}

.select-box {
  position: relative;
}

.select-box::before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: .6rem;
  width: 0;
  height: 0;
  border: solid black;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
}

.pagination-size-select {
  border: 1px solid #EEE;
  border-radius: .25rem;
  padding: .25rem 1.5rem .25rem .25rem;
  display: flex;
  background-color: white;
  outline: 0;
  cursor: pointer;
  appearance: none;
}

.notification {
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  opacity: .8;
  z-index: 9;
  margin: .25rem auto;
  text-align: center;
  z-index: 999999;
}

.fixed-btn {
  position: fixed;
  z-index: 2;
}

.add-form {
  min-width: 80%;
}

.dashboard-card {
  box-shadow: 0 2px 6px 0 rgb(218 218 253 / 65%), 0 2px 6px 0 rgb(206 206 238 / 54%);
}

.dashboard-table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

.dashboard-table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

.dashboard-table tr {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: .35em;
}
.dashboard-table td {
  font-size: 1em;
}

.dashboard-table th,
.dashboard-table td {
  padding: .625em;
  text-align: center;
}

.dashboard-table th {
  font-size: .85em;
  text-transform: uppercase;
}

.action-menu {
  border: 0;
  list-style: none;
  background: 0;
}

.dropdown-menu {
  --bs-dropdown-bg: none !important;
  --bs-dropdown-border-color: none !important;
}

.action-item {
  height: 4.5rem;
  width: 4.5rem;
  text-align: center;
  margin: .5rem 0;
  vertical-align: middle;
}

.dashboard-btn-group {
  width: 20%;
}

.action-menu-trigger {
  margin-right: 5rem;
  min-width: 4.5rem;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 2rem 1.25rem;
  font-size: 1.5rem;
  color: rgba(255, 255, 255);
  text-align: center;
  background: -webkit-linear-gradient(to left, #A7BFE8, #6190E8); 
  background: linear-gradient(to left, #A7BFE8, #6190E8); 
  border: 0;
  border-radius: 5px !important;
  overflow-anchor: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
}

.accordion-button:not(.collapsed) {
  color: rgba(255, 255, 255);
  background-color: #e7f1ff;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: 5px !important;
}

.form-control:disabled, .form-control[readonly] {
  background-color: rgba(227, 226, 226, 0.3);
  opacity: 1;
}

.action-menu-trigger {
  display: inline-block;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin-top: 40%;
  pointer-events: none;
}

.form-check-functional {
  display: block;
  min-height: 1.5rem;
  margin-bottom: .125rem;
  padding-left: .25rem;
}

.scrollable-list{
  overflow: scroll;
  height: 200px
}

.active-text {
    font-size: 30px;
    color: green;
    padding: 10px;
}

.close-text {
    font-size: 30px;
    color: red;
    padding: 10px;
}

.warning-color, .warning-color:disabled {
    border: 2px solid rgba(255, 192, 0, .5);
    box-shadow: 0 0 0 .1rem rgba(255, 192, 0, .5);
    border-radius: .25rem !important;
}

.warning-color:focus {
    border: 1px solid rgba(255, 192, 0, .5);
    box-shadow: 0 0 0 .25rem rgba(255, 192, 0, .5);
}

.yellow-line {
    background-color: #FFDC70;
}

.warning-text {
    font-size: 30px;
    color: orange;
    padding: 10px;
}
.card-custom{
  border:none;
}

.form-check-input:disabled~.form-check-label, .form-check-input[disabled]~.form-check-label {
  opacity: 1;
}


.monitoring-table {
    font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
    font-size: 14px;
    border-collapse: collapse;
    text-align: center;
}

.monitoring-th, monitoring-td:first-child {
    background: #AFCDE7;
    color: white;
    padding: 10px 20px;
}

.monitoring-th, monitoring-td {
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: white;
}

.monitoring-td {
    background: #D8E6F3;
}

.monitoring-th:first-child, monitoring-td:first-child {
    text-align: left;
}

.min-remainder{
    color:darkred;
    font-weight: bold;
}

.danger-color, .danger-color:disabled {
    border: 2px solid rgba(232, 29, 43, .5);
    box-shadow: 0 0 0 .1rem rgba(232, 29, 43, .5);
    border-radius: .25rem !important;
}

    .danger-color:focus {
        border: 1px solid rgba(232, 29, 43, .5);
        box-shadow: 0 0 0 .25rem rgba(232, 29, 43, .5);
    }