* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

/* Curved Slider Styles */
.curved-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: grab;
}

.curved-slider.dragging {
  cursor: grabbing;
}

.st-curved-3d-frame > html body {
  width: 100%;
  height: 100%;
}

.curved-slider canvas {
  width: 100%;
  height: 100%;
}

/* Loading */
.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 18px;
  z-index: 50;
}

.curved-slider .none-select-area {
  position: absolute;
  z-index: 1000;
  user-select: none;
  pointer-events: auto;
  background-color: transparent;
  cursor: default;
}

.curved-slider .none-select-area-top {
  top: 0;
  left: 0;
  width: 100%;
  height: 35%;
}

.curved-slider .none-select-area-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
}

/* Responsive for larger screens */
@media (min-width: 720px) {
  .curved-slider .none-select-area-top {
    width: 50%;
    height: 30%;
    left: 25%;
  }

  .curved-slider .none-select-area-bottom {
    width: 50%;
    height: 30%;
    left: 25%;
  }
}
