.taskbardiv {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  height: 60px;
  perspective: 150px;
  z-index: 10;
  display: inline-block;
  user-select: none;
  overflow: visible;
}

.iconsdiv {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 3;
  padding: 0 12px;
  width: fit-content;
  bottom: 15px;
  gap: 10px;
  transition: width 0.3s;
}

.iconreflection {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: absolute;
  height: 100%;
  width: fit-content;
  left: 50%;
  top: 105px;
  transform: translateX(-50%) scaleY(-1);
  transform-origin: top;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  overflow: visible;
  clip-path: inset(50px -40px -40px -40px);
}

.tbicon {
  height: 100%;
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  z-index: 10;
  margin: 0px;
  transform-origin: bottom center;
  transition:
    transform 0.3s,
    margin-left 0.3s,
    margin-right 0.3s;
}

.tbicon.hover {
  transform: scale(1.4);
  margin-left: 10px;
  margin-right: 10px;
}
.tbicon.hoversm {
  transform: scale(1.1);
  margin-left: 5px;
  margin-right: 5px;
}

.iconreflection .tbicon {
  height: 100%;
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  margin: 0;
  transform-origin: bottom center;
  transition:
    transform 0.3s,
    margin-left 0.3s,
    margin-right 0.3s;
}

.iconreflection .tbicon.hover {
  transform: scale(1.4);
  margin-left: 10px;
  margin-right: 10px;
}

.iconreflection .tbicon.hoversm {
  transform: scale(1.1);
  margin-left: 5px;
  margin-right: 5px;
}

.taskbarbg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to bottom, #737373, #d8d8d8);
  border-top: 2px solid #4d4d4d;
  border-bottom: 2px solid #d4d4d4;
  opacity: 0.5;
  transform: rotateX(45deg);
  transform-origin: center calc(100% - 15px);
}
