.ic_container {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  font-size: 1rem;
}

.ic_container::after {
  content: "";
  background-color: transparent;
  display: block;
  aspect-ratio: 1;
  font-size: 5em;
  width: 1em;
  height: 1em;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  transform-origin: center;
  border-radius: 50%;
  border: solid 0.25em white;
  animation: ic_loader 1s linear 0s infinite alternate, ic_spinning 1.5s linear 0s infinite normal;
  opacity: 0;
  z-index: 50;
}

.ic_container--loading::after {
  opacity: 1;
}

.ic_container--fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
}

@keyframes ic_loader {
  0% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 100% 0%, 50% 50%);
  }
  50% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%, 50% 50%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 50% 50%);
  }
}

@keyframes ic_spinning {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ic_popup {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 80%;
  max-height: 90%;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: white;
  border: none;
  font-size: 1rem;
  padding: 1em;
}

.ic_popup iframe {
  aspect-ratio: 16/9;
  width: 100%;
  max-height: 100%;
}

.ic_popup-wrapper {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000000bb;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
}

.ic_popup-closer {
  background-color: white;
  border-radius: 50%;
  border: none;
  right: 5%;
  position: absolute;
  top: 5%;
  font-size: 1.5em;
  height: 1em;
  width: 1em;
  filter: invert(0);
  transition: filter 0.3s;
  cursor: pointer;
}

.ic_popup-closer:hover {
  filter: invert(1);
}

.ic_popup-closer span {
  position: absolute;
  top: 50%;
  font-family: sans-serif;
  left: 50%;
  transform-origin: center center;
  transform: translateY(0.0625em) translate(-50%, -50%) rotate(30deg);
}

.ic_popup-closer span:nth-of-type(2) {
  transform: translateY(0.0625em) translate(-50%, -50%) rotate(-30deg);
}

.ic_range {
  height: 1em;
  width: 100%;
  display: block;
  z-index: 10;
  background: #000000bb;
  padding: 0 1em;
  opacity: 0.75;
  transition: opacity 0.3s;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.ic_range input[type="range"] {
  height: 100%;
  width: 100%;
  -webkit-appearance: slider-horizontal;
  /* WebKit */
  color: #000;
}

.ic_range input[type="range"]:focus {
  outline: none;
}

.ic_range input[type="range"]:focus, .ic_range input[type="range"]:active {
  filter: hue-rotate(-30deg);
}

.ic_range-marker {
  height: 50%;
  width: 2px;
  background-color: #999;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ic_range-marker--25 {
  left: calc(25% + 0.5em);
}

.ic_range-marker--50 {
  left: calc(50% + 0);
}

.ic_range-marker--75 {
  left: calc(75% - 0.5em);
}

.ic_range:hover {
  opacity: 1;
}

.ic_range--top {
  position: absolute;
  top: 0;
  left: 0;
}

.ic_range--bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}

.ic_range--right {
  position: absolute;
  right: 0;
  padding: 1em 0;
  top: 0;
  width: 1em;
  height: 100%;
}

.ic_range--right input[type="range"] {
  -webkit-appearance: slider-vertical;
  /* WebKit */
  writing-mode: bt-lr;
  /* IE */
}

.ic_range--right .ic_range-marker {
  width: 50%;
  left: 50%;
  height: 2px;
}

.ic_range--right .ic_range-marker--25 {
  top: calc(25% + 0.5em);
}

.ic_range--right .ic_range-marker--50 {
  top: calc(50% + 0.5em);
}

.ic_range--right .ic_range-marker--75 {
  top: calc(75% - 0.5em);
}

.ic_renderer {
  transition: 1s;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  max-height: 100%;
  max-width: 100%;
  overflow: hidden;
  transform-origin: center;
}

.ic_renderer--imageView img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.ic_renderer--videoView video {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.ic_renderer--changing {
  transform: scale(1.25);
  opacity: 0;
}

.ic_spot {
  height: 1em;
  width: 1em;
  border: none;
  background-color: transparent;
  position: absolute;
  transition: transform 0.3s;
  cursor: pointer;
  transform-origin: center center;
  transform: translate(-50%, 50%);
  z-index: 2;
}

.ic_spot:hover {
  transform: translate(-50%, 50%) scale(1.5);
}

.ic_spot--2D {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
