.add-button {
  display: none;
  }

.pwa-div {
	position: fixed;
	right: 25px;
	bottom: 90px;
	width: 50px;
	height: 50px;
	background-color: #BD2A28;
	border-radius: 50%;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	z-index: 90;
	padding: 12px; 
	box-sizing: border-box; 
}

.pwa-div img {
	filter: invert(100%);
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.rocket {
	animation-delay: 2s;
	animation: rocket-anim 1s ease;
}

@keyframes rocket-anim {
	from {
		bottom: -100%;
	}
	to {
		bottom: 90px;
	}
}
