:root {
  --background: #fff;
  --gray: #999999;
  --gray-85: #A8A8A8;
  --gray-65: #BDBDBD;
  --gray-45: #D1D1D1;
  --gray-25: #E5E5E5;
  --primary: #0047b9;
  --primary-85: #2662C3;
  --primary-65: #5987D1;
  --primary-45: #8CACDF;
  --primary-25: #BFD1ED;
  --orange: #ff5c00;
  --orange-85: #FF7426;
  --orange-65: #FF9559;
  --orange-45: #FFB58C;
  --orange-25: #FFD6BF;
  --yellow: #ffd500;
  --yellow-85: #FFDC26;
  --yellow-65: #FFE459;
  --yellow-45: #FFED8C;
  --yellow-25: #FFF5BF;
  --red: #f42a41;
  --red-85: #F64A5D;
  --red-65: #F87483;
  --red-45: #FA9FA9;
  --red-25: #FCCACF;
  --green: #009933;
  --green-85: #26A851;
  --green-65: #59BD7A;
  --green-45: #8CD1A3;
  --green-25: #BFE5CC;
  --magenta: #e5007d;
  --violet: #774697;
  --blue-dark: #00186e;
  --cyan: #009fe3;
  --green-light: #a0b400;
  --primary-dark: #001183;
  
  --green-dark: #00802b;
  --orange-dark: #e65300;
  --orange-darker: #b34000;
}


body {
  font-family: "Verdana";
}

a {
  color: var(--primary);
  transition: color 0.15s ease-in-out;
  text-decoration: none;
  cursor: pointer;
}

a[target='_blank']:not(.no-icon):after {
    content: ' \f08e';
    font-family: 'FontAwesome';
    position: absolute;
    font-size: 10px;
    font-weight: normal;
}

a:hover {
  color: #ff5c00;
}

a.btn.shiny-download-link {
  width: fit-content;
  height: 30px;
  color: #fff;
  background-color: #999;
  border: none;
  padding: 5px 10px;
}
a.btn.shiny-download-link:hover {
  color: #fff;
  background-color: #000;
}

a.btn.shiny-download-link:after {
  content: '';
}

button.action-button {
  text-align: left;
  padding-left: 10px;
}

h1 {
  color: var(--primary);
  font-size: 40px;
}
h3 {
  font-size: 30px;
}
br {
  margin: 1rem 0;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.italic {
  font-style: italic;
}
th.italic {
  font-style: normal;
}
.color-gray {
  color: var(--gray);
}
.bold {
  font-weight: bold;
}
.nowrap {
  white-space: nowrap;
}
.invisible {
  display: none;
}
.flex {
  display: flex;
}
.no-margin {
  margin: 0;
}

.font-size-small {
  font-size: 12px;
}
.color-red {
  color: var(--red);
}
.color-primary {
  color: var(--primary);
}
.width-100 {
  width: 100%;
}
.gap-bottom {
  margin-bottom: 1.5em;
}
.margin-top-0 {
  margin-top: 0 !important;
}
.margin-vertical-center {
  margin: 0 auto;
}
.line-height-50 {
  line-height: 50px;
}

.bslib-mb-spacing.no-spacing {
  margin-bottom: 0;
}

.tooltip-inner {
  max-width: 300px;
}

/* PROGRESS BAR */
#shiny-notification-panel#shiny-notification-panel {
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  padding: 0;
}
.shiny-notification.shiny-notification {
  opacity: unset;
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
}
.shiny-notification.shiny-notification > .shiny-notification-close {
  display: none;
}
.shiny-progress-notification > .progress {
  margin-bottom: 0;
  height: 8px;
  background-color: transparent;
}
.shiny-progress-notification > .progress > .progress-bar {
  border-radius: 30px;
}
.shiny-progress-notification > .progress:after {
  content: "";
  position: relative;
  top: 0;
  width: 100%;
  height: 8px;
  background-color: var(--gray-45);
  border-radius: 30px;
  margin-left: 3px;
  margin-right: 11px;
}
.shiny-progress-notification > .progress:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 8px;
  width: 8px;
  background-color: var(--primary);
  border-radius: 30px;
}
.shiny-progress-notification > .progress-text {
  position: absolute;
  top: 10px;
  left: 140px;
}
.shiny-progress-notification > .progress-text > .progress-message {
  font-weight: bold;
  color: var(--primary);
  border-radius: 8px;
  padding: 3px;
}


/* TABLE */
.table.no-vertical-padding td {
  padding-top: 0;
  padding-bottom: 0;
}
.table.low-vertical-padding td {
  padding-top: 3px;
  padding-bottom: 3px;
}
.table > thead input:disabled {
  background-color: var(--gray-25);
  border: 2px solid transparent;
}

body > .container-fluid > .tab-content > .tab-pane {
  padding: 60px 100px 0 100px !important;
}
.page {
  padding-bottom: 80px;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 35px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  z-index: 100;
  display: flex;
  justify-content: space-around;
  background-color: var(--primary);
  color: #fff;
}
footer > div {
  padding-top: 8px;
}
footer a {
  color: #fff;
}
footer > a {
  padding-top: 5px;
}
footer img {
  height: 25px;
  filter: invert(100%);
  /*filter: invert(15%) sepia(75%) saturate(4137%) hue-rotate(213deg) brightness(96%) contrast(101%);*/
}

.html-fill-container > .html-fill-item.datatables {
  flex-basis: unset;
}

.bslib-value-box .card-body {
  padding: 0;
}

.table .dataTables_empty {
  font-weight: bold;
  color: var(--red) !important;
  box-shadow: none !important;
}

/* SELECT BOXES */

.shiny-input-container .ss-main {
  border: 1px solid var(--gray);
  font-size: 15px;
  color: #000;
  background-color: transparent;
  height: 40px;
}
.shiny-input-container .ss-main:focus {
  box-shadow: none;
}
.shiny-input-container .ss-main.ss-disabled {
  background-color: var(--gray-25);
  color: var(--gray);
  cursor: unset;
}
.shiny-input-container .ss-main.ss-disabled > .ss-arrow > path {
  stroke: var(--gray);
}
.ss-content {
  max-height: unset;
}
.ss-content .ss-list .ss-option:hover, .ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
  color: #fff;
  background-color: var(--primary);
}

.ss-content .ss-list .ss-option {
  color: #000;
  font-size: 15px;
  transition: all 0.15s ease-in-out;
}

.ss-content .ss-list .ss-option:after {
  content: "ICON";
  color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(0);
  transition: filter 0.15s ease-in-out;
  position: absolute;
  right: 0;
}
.ss-content .ss-list .ss-option:hover:after, .ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected:after {
  filter: unset;
}

/* ACCORDION */
.accordion-button:after {
  display: none;
}
.accordion-button:before {
  content: '\f0da';
  font-family: 'FontAwesome';
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
  width: 10px;
  margin-right: 5px;
  transition: all 0.2s ease-in-out;
}
.accordion-button:not(.collapsed):before {
  transform: rotate(90deg);
}