/* UP Catalog - Core Styles */
/* General Layout & Utilities */

/* General - Nur Layout */
.up-catalog-error,
.up-catalog-placeholder {
    display: block;
}

.up-catalog-error {
    display: block;
}

/* Notifications - Nur Positionierung */
.up-catalog-notification {
    position: fixed;
    z-index: 9999;
    display: none;
}

.up-catalog-notification-top-right {
    top: 20px;
    right: 20px;
}

.up-catalog-notification-top-left {
    top: 20px;
    left: 20px;
}

.up-catalog-notification-top-center {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.up-catalog-notification-bottom-right {
    bottom: 20px;
    right: 20px;
}

.up-catalog-notification-bottom-left {
    bottom: 20px;
    left: 20px;
}

.up-catalog-notification-bottom-center {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

