#import,
#export,
#services,
#board {
  /* background-color: rgba(255, 255, 255, 0.6); */
  color: var(--tertiary-color);
  overflow-x: hidden;
  overflow-y: auto;
  height: calc(var(--main-section-height) - var(--footer-height));
  position: relative;
}

#services::after,
#board::after {
  content: "";
  position: absolute;
  backdrop-filter: blur(4px);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#board {
  position: relative;
}

#data {
  color: var(--tertiary-color);
  overflow-x: hidden;
  overflow-y: auto;
  height: calc(var(--main-section-height) - var(--footer-height));
}

#map {
  height: calc(var(--main-section-height) - var(--footer-height));
  opacity: 0.7;
  transition: opacity 0.3s ease-in-out;
}

.active-section #map {
  opacity: 1;
}


/******************************************************************************************************************************/
/*                                                                                                                            */
/*                                                              PICTURES                                                       */
/*                                                                                                                            */
/******************************************************************************************************************************/

#stream-pic-loader {
  height: 100%;
  width: 100%;
}

#data-content {
  height: calc(100vh - 180px);
}


/******************************************************************************************************************************/

.cards-controls {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cards-controls .line {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: space-evenly;
  margin-bottom: 10px;
}

.cards-controls .stat-card {
  flex: 1;
  padding: 8px;
  min-width: 30%;
  max-width: fit-content;
}

.cards-controls .stat-icon {
  width: 30px;
  height: 30px;
  font-size: 15px;
}

.cards-controls .stat-label {
  font-size: 10px;
}

.cards-controls .stat-value {
  font-size: 15px;
}