/* Main layout */
.main-container {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--color-bg-grey);
}

/* VLMT-Light container */
.vlmt-light {
  display: none;
  background: var(--color-bg-grey);
  width: 100%;
  height: 100%;
  border: none;
  overflow: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
}

.vlmt-light::-webkit-scrollbar {
  display: none; /* WebKit-browsers */
}

.vlmt-light.active {
  display: block;
}

/* VLMT (Unity) container */
.vlmt-unity {
  display: none;
  background: var(--color-bg-grey);
  width: 100%;
  height: 100%;
  border: none;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.vlmt-unity::-webkit-scrollbar {
  display: none;
}

.vlmt-unity.active {
  display: block;
}
