
#uae-pass-link-multiple-accounts-actions {
    .cancel{
        justify-content: start;
    }
    button {
        width: 260px;
        font-weight: 700;
        padding-inline: 16px;
        margin: 10px 0;
    }
    .linkAdditionalAccount {
        justify-content: end;
        display: none;
    }
}

.hidden {
    display: none !important;
}

.user-entry {
    border: 1px solid var(--border-light);
    background-color: white;
    border-radius: 6px;
    min-height: 64px;
    padding: 6px 10px;
    margin-bottom: 16px;

    &:last-child {
        margin-bottom: 0;
    }

    &.selectable {
        cursor: pointer;
        border: 1px solid var(--border-large);
    }

    > div:first-of-type {
        font-weight: 700;
    }
}

.user-entry.selectable {
    &:focus,&:hover {
        box-shadow: 0 0 7px 0 var(--green);
    }
}

.user-entry-container {
    margin-bottom: 16px;
    &.selectable {
        background-color: var(--green-background);
        border-radius: 6px;
        margin: -16px;
        padding: 16px;
    }
}

.user-entry-loading {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    .loading-icon {
        background-color: var(--text-secondary);
        mask-image: url("../icons/process.svg");
        mask-repeat: no-repeat;
        mask-size: cover;
        width: 45px;
        height: 45px;
        animation: spin 2s infinite;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    } to {
        transform: rotate(360deg);
    }
}

.bottom-margin {
    padding-bottom: 16px;
    &.selectable {
        padding-bottom: 32px;
    }
}

.multiple-accounts-subtitle {
    display: none;
    &.selectable {
        display: block;
        font-size: 16px;
        font-weight: 700;
        line-height: 20px;
        text-align: center;
        padding-bottom: 32px;
    }
}