.mini-cart-popover__container {
    --ui-tooltip-background-override: var(--theme-surface-10);
    --ui-tooltip-border-radius-override: var(--theme-border-radius-dialog);

    min-width: 448px;
}

.mini-cart-popover__content {
    overflow: hidden;
    border-radius: inherit;
}

.mini-cart-popover__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Mini-cart expands with your screen height or 540px if the screen is too short */
.mini-cart-popover__scrollbar {
    --order-summary-height: 160px;

    max-height: max(calc(100vh - var(--theme-action-bar-height) - var(--order-summary-height)), 540px);
}

.mini-cart-popover {
    display: flex;
    flex-flow: column;
    gap: var(--space-x3);
    padding: var(--space-x2);
}

.mini-cart-popover__customer-account-button {
    display: flex;
    flex-direction: column;
}

.mini-cart-popover__actionbar {
    width: auto;
    padding: var(--space-x2);
}