.cellphone-container .notification-wrapper {
    position: absolute;
    top: 10%;
    left: calc((100% - 150px) / 2);
    width: 150px;
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cellphone-container .notification {
    position: absolute;
    left: calc((100% - 120px + 4%) / 2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'UrbanistItalic', sans-serif;
    width: 120px;
    background: #FFF;
    border: 1px solid;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
    transform-style: preserve-3d;
    transform: rotateX(15deg) rotateY(-15deg) rotateZ(4deg);
    transition: 0.33s cubic-bezier(0, 0, 0, 1);    ;
}

.cellphone-container .notification-new {
    top: 0;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.cellphone-container .notification-old {
    top: 46%;
    left: calc((100% - 120px + -2%) / 2);
    color: var(--bs-dark);
    border-color: #ccc;
}

.cellphone-container .notification-old-1 {
    top: 73%;
    left: calc((100% - 120px + -7%) / 2);
}


/* Make the placeholders */
.cellphone-container .notification .d-flex {
    margin-top: 2px;
}

.cellphone-container .notification-old .placeholder {
    background-color: rgba(0, 0, 0, 0.25);
    min-height: unset;
    height: 6px;
    border-radius: 10px;
    width: 20px;
    margin: 0 0.25rem 0.25rem 0;
}

.notification-old .placeholder.placeholder-1 {
    width: 15px;
}

.notification-old .placeholder.placeholder-2 {
    width: 20px;
}

.notification-old .placeholder.placeholder-3 {
    width: 25px;
}

.notification-old .placeholder.placeholder-4 {
    width: 40px;
}

.notification-old .placeholder.placeholder-5 {
    width: 50px;
}


/* Move up all the notifications by default */
.cellphone-container:not(.show-notification) .notification {
    transform: rotateX(15deg) rotateY(-15deg) rotateZ(4deg) translate(0, -100px)
}

.cellphone-container:not(.show-notification) .notification-new {
    opacity: 0;
}


.cellphone-container .notification h4 {
    margin-bottom: 0.25rem;
}

.cellphone-container .logo {
	width: 50px;
	height: 50px;
	filter: drop-shadow(0 0.125rem 0.25rem rgba(0, 0, 0, 0.25));
	transition: 0.3s;
}

.cellphone-container .logo path {
	stroke: var(--primary-color);
}

.cellphone-container .logo path.fill {
	fill: var(--primary-color);
}

.cellphone-container.show-notification {
	animation: shake 0.33s infinite;
}

.cellphone-container.show-notification .logo {
	opacity: 1;
}
