.ygg-root-role-access {
  --ygg-root-accent: #65e8f4;
  --ygg-root-accent-2: #9a83ff;

  align-items: center;
  box-sizing: border-box;
  display: inline-flex;
  gap: 10px;
  min-height: 44px;
  padding: 7px 12px 7px 8px;
  border: 1px solid
    color-mix(
      in srgb,
      var(--ygg-root-accent) 38%,
      transparent
    );
  border-radius: 14px;
  background:
    linear-gradient(
      135deg,
      rgba(32, 165, 194, .18),
      rgba(91, 70, 190, .18)
    ),
    rgba(4, 17, 27, .92);
  color: #edfaff;
  text-decoration: none;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px);
  transition:
    border-color .18s ease,
    transform .18s ease,
    box-shadow .18s ease;
}

.ygg-root-role-access:hover,
.ygg-root-role-access:focus-visible {
  border-color:
    color-mix(
      in srgb,
      var(--ygg-root-accent) 72%,
      transparent
    );
  transform: translateY(-1px);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, .34),
    0 0 24px rgba(85, 222, 245, .12);
  outline: none;
}

.ygg-root-role-access__icon {
  display: grid;
  flex: 0 0 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(117, 227, 255, .38);
  border-radius: 10px;
  background:
    radial-gradient(
      circle at 25% 20%,
      rgba(102, 235, 255, .45),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      rgba(32, 112, 151, .96),
      rgba(56, 39, 126, .96)
    );
  color: #ffffff;
  font: 800 17px/1 Georgia, serif;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.ygg-root-role-access__text {
  display: grid;
  gap: 1px;
  line-height: 1.15;
}

.ygg-root-role-access__text strong {
  color: #f5fcff;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.ygg-root-role-access__text small {
  color: #91aebd;
  font-size: 10px;
  white-space: nowrap;
}

.ygg-root-role-access__arrow {
  color: var(--ygg-root-accent);
  font-size: 17px;
  font-weight: 800;
}

.ygg-root-role-access--floating {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2147483000;
}

.ygg-root-role-access--inline {
  margin-left: 10px;
}

@media (max-width: 760px) {
  .ygg-root-role-access--floating {
    top: auto;
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: center;
  }

  .ygg-root-role-access--inline
    .ygg-root-role-access__text small {
    display: none;
  }
}
