.gu-mirror {
  position: fixed !important;
  margin: 0 !important;
  z-index: 9999 !important;
  opacity: .8;
  display: flex;
  align-items: center;
  column-gap: 4px;
  background-color: #f4f5fd;
  border-radius: 8px;

  & .drag-btn {
    width: 32px;
    height: 32px;
    background-color: transparent;
    background-image: url(../img/drag-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    cursor: grabbing;
  }

  & p {
    background: #fff;
    border-radius: 8px;
    padding: 8px;
    font-family: var(--second-family);
    font-size: 12px;
    line-height: 133%;
    letter-spacing: -0.02em;
    color: #6e6e84;
    flex-grow: 1;
  }

  & .delete-btn {
    border-radius: 8px;
    width: 32px;
    height: 32px;
    background-color: #ebecf6;
    position: relative;

    &::after {
      position: absolute;
      content: '';
      width: 10px;
      height: 1px;
      background-color: #6E6E84;
      left: 50%;
      transform: translateX(-50%);
      top: 50%;
    }
  }
}

.gu-hide {
  display: none !important
}

.gu-unselectable {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important
}

.gu-transit {
  opacity: .2
}