.elvita-notification-bar {
	width: 800px;
    display: flex;
    justify-content: center;
    height: 30px;
    max-width: 100%;
}
.elvita-notification-bar .message {
	display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
    transition: opacity 0.4s ease;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    text-align: center;
    justify-content: center;
}
.elvita-notification-bar .message .icon,
.elvita-notification-bar .message .text {
	line-height: 1;
}
.elvita-notification-bar .message .text {
    white-space: nowrap;
}
.elvita-notification-bar .message .icon {
	height: 20px;
	display: flex;
	align-items: center;
}
.elvita-notification-bar .message.active {
	opacity: 1;
}
@media screen and (max-width: 400px) {
    .elvita-notification-bar .message .text  {
        font-size: 10px;
    }
    .elvita-notification-bar .message .icon img {
        width: 12px;
        height: auto;
    }
}