.link {
  color: var(--colorDarkBlue);
  cursor: pointer;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.disabled {
  opacity: 0.5;
  user-select: none;
  pointer-events: none;
}

.link-btn {
  text-decoration: none;
  color: var(--colorBlack);
  cursor: pointer;
  transition: all 0.07s ease-in;
}

.link-btn.active,
.link-btn:hover {
  color: var(--colorBlue);
}

.dragzone {
  border: 2px dashed var(--colorGray);
  border-radius: 16px;
}

.dragzone-add {
  width: 64px;
  height: 64px;
  line-height: 42px;
  font-size: 64px;
  vertical-align: middle;
  text-align: center;
  border-radius: 50%;
  color: var(--colorBlue);
  border: 4px solid var(--colorBlue);
  user-select: none;
}

.progress {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;

  height: 100%;

  background: #daffda;
}

.search {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  border: 0;
  outline: 0;
  padding: 0;
}

.search::placeholder {
  color: var(--colorGray);
  opacity: 1; /* Firefox */
}

.bg-blur {
  backdrop-filter: blur(4px);
}

.flyout {
  width: max-content;
  color: #fff;
  background: var(--colorBlue);
  box-shadow: rgba(15, 15, 15, 0.2) 0px 2px 4px 0px;
  border-radius: 4px;
  overflow: hidden;
}

.flyout-item {
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  vertical-align: middle;
  user-select: none;
  cursor: pointer;
  color: #fff;
  background: var(--colorBlue);
  transition: background 0.14s linear;
}

.flyout-item:hover {
  background: var(--colorDarkBlue);
  transition-duration: 0s;
}
.flyout-item:active {
  background: var(--colorDarkBlue02);
}

.flyout-item + .flyout-item {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hr {
  flex: none;
  width: 100%;
  height: 1px;
  margin: 8px 0;
  background: var(--colorGrayA02);
}

.shadow {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04),
    0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.shadow1 {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04);
}

/* .clip-hexagon {
  clip-path: polygon(
    50% 0%,
    50% 0%,
    100% 25%,
    100% 25%,
    100% 75%,
    50% 100%,
    0% 75%,
    0% 25%
  );
} */

.customScroll,
.customScrollX {
  scrollbar-width: thin;
  scrollbar-color: rgba(90, 90, 90, 0) transparent;
  transition: scrollbar-color 0.3s ease;
  -webkit-overflow-scrolling: touch;
  pointer-events: auto;
}
.customScrollX::-webkit-scrollbar-thumb,
.customScroll::-webkit-scrollbar-thumb {
  background-color: rgba(90, 90, 90, 0);
}
.customScrollX:focus,
.customScrollX:focus-within,
.customScrollX:hover,
.customScroll:focus,
.customScroll:focus-within,
.customScroll:hover {
  scrollbar-color: rgba(90, 90, 90, 0.3) transparent;
}
.customScrollX:focus-within::-webkit-scrollbar-thumb,
.customScrollX:focus::-webkit-scrollbar-thumb,
.customScrollX:hover::-webkit-scrollbar-thumb,
.customScroll:focus-within::-webkit-scrollbar-thumb,
.customScroll:focus::-webkit-scrollbar-thumb,
.customScroll:hover::-webkit-scrollbar-thumb {
  background-color: rgba(90, 90, 90, 0.3);
}
.customScroll::-webkit-scrollbar {
  width: 0.45rem;
}
.customScrollX::-webkit-scrollbar {
  height: 0.45rem;
}
.no-scrollbar {
  scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
