.qep-signin {
    position: relative;
    display: inline-flex;
    z-index: 20;
}

.qep-signin__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    max-width: 100%;
    padding: 0;
    border: 0 !important;
    background: transparent !important;
    cursor: pointer;
    white-space: nowrap;
    font-family: var(--qep-font-primary, 'Sequel Sans');
    font-weight: 400;
    font-size: 14.22px;
    line-height: 18px;
    color: #ffffff;
}

.qep-signin__dropdown {
    box-sizing: border-box;
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    width: 228px;
    padding: 16px 0;
    background: #142438;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow:
        0px 95px 80px rgba(0, 0, 0, 0.12),
        0px 39.6887px 33.4221px rgba(0, 0, 0, 0.0862625),
        0px 21.2195px 17.869px rgba(0, 0, 0, 0.0715329),
        0px 11.8955px 10.0172px rgba(0, 0, 0, 0.06),
        0px 6.3176px 5.32008px rgba(0, 0, 0, 0.0484671),
        0px 2.62889px 2.21381px rgba(0, 0, 0, 0.0337375);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(.98);
    transform-origin: top right;
    transition:
        opacity .28s cubic-bezier(.16, 1, .3, 1),
        transform .28s cubic-bezier(.16, 1, .3, 1),
        visibility .28s ease;
}

.qep-signin.is-open .qep-signin__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.qep-signin__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.qep-signin__profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    padding: 0 16px;
}

.qep-signin__profile-title {
    font-family: var(--qep-font-primary, 'Sequel Sans');
    font-weight: 600;
    font-size: 14.22px;
    line-height: 18px;
    color: #ffffff;
}

.breakdance a.qep-signin__profile-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 34px;
    padding: 8px 24px;
    background: #0066ff;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--qep-font-primary, 'Sequel Sans');
    font-weight: 500;
    font-size: 14.22px;
    line-height: 18px;
    color: #ffffff;
    transition: background-color .18s ease, transform .18s ease;
}

.breakdance a.qep-signin__profile-button:hover {
    background: #0b73ff;
    color: #ffffff;
}

.qep-signin__platforms {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.qep-signin__section-label {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    height: 16px;
    padding-left: 16px;
}

.qep-signin__section-label span {
    flex: 0 0 auto;
    font-family: var(--qep-font-primary, 'Sequel Sans');
    font-weight: 500;
    font-size: 12.64px;
    line-height: 16px;
    color: #b2b9c1;
}

.qep-signin__section-label i {
    display: block;
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.qep-signin__platform-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.qep-signin__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    height: 40px;
    padding: 0 16px;
    border-radius: 6px;
    text-decoration: none;
    color: #ffffff;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity .38s cubic-bezier(.16, 1, .3, 1),
        transform .38s cubic-bezier(.16, 1, .3, 1),
        background-color .18s ease;
}

.qep-signin__item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.qep-signin.is-open .qep-signin__item {
    opacity: 1;
    transform: translateY(0);
}

.qep-signin.is-open .qep-signin__item:nth-child(1) {
    transition-delay: .12s;
}

.qep-signin.is-open .qep-signin__item:nth-child(2) {
    transition-delay: .17s;
}

.qep-signin.is-open .qep-signin__item:nth-child(3) {
    transition-delay: .22s;
}

.qep-signin.is-open .qep-signin__item:nth-child(4) {
    transition-delay: .27s;
}

.qep-signin__text {
    font-family: var(--qep-font-primary, 'Sequel Sans');
    font-weight: 500;
    font-size: 14.22px;
    line-height: 18px;
    color: #ffffff;
}

.qep-signin__external {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: #b2b9c1;
    transition: color .18s ease, transform .18s ease;
}

.qep-signin__item:hover .qep-signin__external {
    color: #ffffff;
    transform: translate(1px, -1px);
}

.qep-signin__button.is-user {
    padding-left: 8px;
}

.qep-signin__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 999px;
    background: #0066ff;
    color: #ffffff;
    overflow: hidden;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}

.qep-signin__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qep-signin__user-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}