.delivery-pop {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 98;

	width: 45rem;
	height: 19.3rem;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 3rem;

	border-radius: 2rem;
	background-color: #fff;

	padding: 2.6rem 3rem 3rem 3rem;

	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.delivery-pop.show {
	opacity: 1;
	visibility: visible;
}

.delivery-pop__image {
	width: 8rem;
	height: 8rem;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 100%;
	background-color: #ECF3EA;
}

.delivery-pop__text {
	max-width: 37.2rem;
	width: 100%;

	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.5rem;

	margin-bottom: 0;
}

.delivery-pop__close {
	top: 1rem;
	right: 1rem;
}


/* Adaptiv */

@media (max-width: 475px) {
	.delivery-pop {
		width: 34.5rem;
		height: 21rem;
	}
}