.liquid-glass {
  position: relative;
  right: 0;
  /* font-size: 14px; */
  padding: 12px 24px;
  border-radius: 500px;
  cursor: move;
  isolation: isolate;
  touch-action: none;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 500px;
  padding: 0.5px; /* size of the border */
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0.02)
  );
  mask: linear-gradient(#ca0000 0 0) content-box, linear-gradient(#84ff00 0 0);
  -webkit-mask: linear-gradient(#ca0000 0 0) content-box,
    linear-gradient(#84ff00 0 0);
  -webkit-mask-composite: xor;
  mask-composite: xor;
  mask-composite: exclude;
  background-clip: border-box;
  pointer-events: none;
}

.lg-blur {
  backdrop-filter: blur(5px);
}

.lg-shadows {
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}




.lg-strokes::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  padding: 0.5px; /* size of the border */
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0.02)
  );
  mask: linear-gradient(#ca0000 0 0) content-box, linear-gradient(#84ff00 0 0);
  -webkit-mask: linear-gradient(#ca0000 0 0) content-box,
    linear-gradient(#84ff00 0 0);
  -webkit-mask-composite: xor;
  mask-composite: xor;
  mask-composite: exclude;
  background-clip: border-box;
  pointer-events: none;
}
