.heavy-tabs {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #fff;
  box-shadow: 0 5px 20px #4c0519;
  padding: 0.75rem;
  border-radius: 25px;
}

.heavy-tabs * {
  z-index: 2;
}

.heavy-dragonfly input[type=radio] {
  display: none;
}

.heavy-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 50px;
  font-size: 0.8rem;
  color: black;
  font-weight: 500;
  border-radius: 99px;
  cursor: pointer;
  transition: color 0.15s ease-in;
}

.heavy-dragonfly input[type=radio]:checked + label {
  color: #f43f5e;
}

.heavy-dragonfly input[id*=token-cart]:checked ~ .heavy-glider {
  transform: translateY(0);
}

.heavy-dragonfly input[id*=token-csrf]:checked ~ .heavy-glider {
  transform: translateY(100%);
}

.heavy-glider {
  position: absolute;
  display: flex;
  height: 30px;
  width: 50px;
  background-color: #fecdd3;
  z-index: 1;
  border-radius: 99px;
  transition: 0.25s ease-out;
}

@media (max-width: 700px) {
  .tabs {
    transform: scale(0.6);
  }
}
