.apartment-storage-button {
	background: none;
	box-shadow: none;
	border: none;
	height: auto;
	display: flex;
	padding: 0;
	cursor: pointer;
}

.apartment-storage-button svg {
    width: 1.25em;
    height: 1.25em;
}

.storage-notification {
	position: fixed;
	bottom: 1rem;
	left: 1rem;
	max-width: 20rem;
	background-color: #fff;
	border-radius: 0.5rem;
	box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
	z-index: 999;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
	--notification-color: var(--bde-brand-primary-color);
}

.storage-notification.error {
	--notification-color: #cc0000;
}

.storage-notification-wrapper {
	padding: 1rem 1.25rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	color: #444;
	line-height: 1;
	font-size: 0.75rem;
}

.storage-notification-title {
	font-weight: 700;
	margin-bottom: 0.5rem;
}


.storage-notification-icon {
	width: 30px;
	height: 30px;
	background-color: var(--notification-color);
	border-radius: 999px;
	padding: 7.5px;
}

.storage-notification-icon svg {
	width: 15px;
	height: 15px;
}

.progress-bar {
	position: relative;
	width: 100%;
	background-color: #eee;
	height: 5px;
}

.progress-bar::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--notification-color);
	animation: decrease 2.5s linear forwards;
	
}

@keyframes decrease {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}