@use 'sass:math';

$radius: 10px;
$size: 40px;

.cdk-drag-boundary {
  user-select: none;

  position: relative;

  overflow: hidden;

  width: 100%;
  height: $size;

  background: lightgray;
  border-radius: $radius;
}

.cdk-drag {
  cursor: pointer;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: $size;
  height: $size;

  background: grey;
  border-radius: $radius;
}

.slide-text {
  position: absolute;
  top: 50%;
  left: $size + 15px;
  transform: translateY(-50%);
}

.slide-shadow {
  position: absolute;
  z-index: -1;
  top: 0;
  right: math.div($size, 2);
  bottom: 0;

  width: 1000px;

  background-color: grey;
}

.slide-icon {
  color: white;
}
