.glidy-draggable-scene {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 500px;
}

.glidy-draggable-item {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 70px;
  padding: 10px 24px;
  border-radius: 500px;
  background-color: #f5f5f5;
  cursor: grab;
  user-select: none;
  will-change: transform;
}

.glidy-draggable-item:active {
  cursor: grabbing;
}

.glidy-draggable-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  display: block;
}

.glidy-draggable-item svg {
  width: 1em;
  height: 1em;
}