.dyn-props-container {
  display: none;
  position: absolute;
  /* Make child icons position relative to this container */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.dyn-props-container.active {
  display: flex;
}

.dyn-props-name {
  font-size: 0.875rem;
  /* 14px */
}

.dyn-props-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  /* color: var(--primary-tr-blue); */
  padding: 0.2rem;
}

.dyn-props-icon:hover {
  cursor: pointer;
  color: var(--secondary-tr-blue);
  box-shadow: 0 0.11em 0.11em var(--secondary-tr-grey);
  border-radius: 0.1875rem;
  /* 3px */
}

.dyn-props-icon img {
  z-index: 20;
  width: 1.5rem;
}

.dyn-props-container-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
  width: fit-content;
  height: 2rem;
  z-index: 10;
  border-radius: 0.625rem;
  /* 10px */
  border: 0.03125rem solid lightgray;
  /* 0.5px */
  background: rgba(255, 255, 255, 0.66);
  filter: drop-shadow(0rem 0rem 0.3125rem rgba(0, 0, 0, 0.25));
  /* 5px */
  padding: 0.2rem;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.66);
}

/* .dyn-props-container-wrapper:hover {
  cursor: pointer;
  background-color: white;
} */

/* -------------------
   LAYOUT BREAKPOINTS
   ------------------- */

/* -------- Mobile (< 600px) -------- */
@media (max-width: 37.5rem) {

  .dyn-props-name {
    font-size: 0.5rem;
    /* ~8px */
  }

  .dyn-props-icon img {
    width: 0.75rem;
    /* ~12px */
  }

  .dyn-props-container-wrapper {
    height: 1.25rem;
    /* ~20px */
    padding: 0.1rem;
  }
}

/* -------- Tablet (600px – 1024px) -------- */
@media (min-width: 37.5rem) and (max-width: 64rem) {
  .dyn-props-name {
    font-size: 0.5625rem;
    /* ~9px */
  }

  .dyn-props-icon img {
    width: 0.875rem;
    /* ~14px */
  }

  .dyn-props-container-wrapper {
    height: 1.5rem;
    /* ~24px */
    padding: 0.15rem;
  }
}

/* -------- HD Landscape (e.g. 1280x720) -------- */
@media (max-height: 45rem) and (min-width: 60rem) {
  .dyn-props-name {
    font-size: 0.625rem;
    /* ~10px */
  }

  .dyn-props-icon img {
    width: 1.5rem;
  }

  .dyn-props-container-wrapper {
    height: 2rem;
    padding: 0.2rem;
  }
}