/* #popup_wh-offer-popup {
display: none;
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
background: rgba(0, 0, 0, 0.8);
z-index: 9999;
}

.popup_wh-popup-content {
width: 400px;
height: 400px;
background: white;
display: flex;
flex-direction: row;
overflow: hidden;
position: relative;
margin: 5% auto;
border-radius: 8px;
box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.popup_wh-popup-close {
position: absolute;
left: 10px;
top: 10px;
font-size: 20px;
font-weight: bold;
cursor: pointer;
z-index: 2;
}

.popup_wh-offer-slide {
display: flex;
width: 400px;
height: 100%;
}

.popup_wh-offer-text {
width: 50%;
padding: 10px;
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: center;
font-family: sans-serif;
}

.popup_wh-offer-text h2,
.popup_wh-offer-text h3 {
margin: 0;
position: absolute;
top: 20%;
}

.popup_wh-offer-text p {
font-size: 13px;
line-height: 1.4;
margin: 10px 0;
}

.popup_wh-offer-text .popup_wh-price {
font-weight: bold;
font-size: 22px;
margin-top: 10px;
}

h4, {
position: absolute;
bottom: 20%;
}

.popup_wh-offer-image {
width: 50%;
background-size: cover;
background-position: center;
}

.popup_wh-book-button {
display: inline-block;
margin-top: 10px;
padding: 8px 20px;
border: 2px solid black;
background: none;
color: black;
font-weight: bold;
text-decoration: none;
border-radius: 4px;
transition: all 0.3s ease;
position: absolute;
bottom: 20px;
}

.popup_wh-book-button:hover {
background: black;
color: white;
}
.popup_wh-prev-offer {
position: absolute;
right: 0;
padding: 5px;
background: #ffffff57;
bottom: 44px;
border: 1px solid #ffffff1a;
}

button.popup_wh-next-offer {
position: absolute;
right: 0;
padding: 6px;
background: #ffffff57;
bottom: 10px;
border: 1px solid #ffffff1a;
} */


/* Nek New */
#net22--offers-button {
	--btn-bg: var(--background-color); 
	--pulse-bg: var(--btn-bg);
	background-color: var(--btn-bg);
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999998;
	border-radius: 50%;
	transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
	color: var(--color);
	width: 95px;
	height: 95px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	font-size: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	padding: 10px;
}

#net22--offers-button::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	box-shadow: 0 0 0 0 var(--background-color-hover);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 var(--background-color-hover);
	}
	70% {
		box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

#net22--offers-button:hover {
	transform:scale(1.08);
}
#net22--offers-elements {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999999;
	max-width: 400px;
	width: 100%;
	transition:all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}
.net22--offer-single {
	border-radius:20px;
	overflow:hidden;
	border:1px solid #707070;
	width:100%;
	padding:8px;
}
#net22--offer-loop {
	display:flex;
	flex-direction:column;
	row-gap:8px;
	padding:8px;
	border-radius:20px;
	overflow:hidden;
	background-color: var(--background-color);
}
.net22--offer-single__cols {
	display: flex;
	align-items: center;
	width:100%;
	justify-content:space-between;
	border-radius: 20px;
	overflow: hidden;
	column-gap: 30px;
}
.net22--offer-single__image {
	height:95px;
	width:90px;
	min-height:95px;
	min-width:90px;
	max-height:95px;
	max-width:90px;
	border-radius:20px;
	/* 	border:1px solid #707070; */
	overflow:hidden;
}
.net22--offer-single__image img {
	height:100%;
	width:100%;
	object-fit:cover;
}
.net22--offer-single__title {
	text-transform: uppercase;
	font-size: 15px;
	line-height:1.1;
	text-align: center;
	color:var(--color);
}
.net22--offer-single__text * {
	font-size:inherit;
	line-height:inherit;
	color:inherit;
	padding:0;
	margin:0 0 15px 0;
	text-align:center;

}
.net22--offer-single__text > *:last-child {
	margin-bottom:0;
}
.net22--offer-single__text > ul,
.net22--offer-single__text > ol {
	padding-left:10px;
}
.net22--offer-single__text {
	font-size:13px;
	text-align:center;
	line-height:1.4;
	margin-top:8px;
	color:var(--color);
}
.net22--offer-single__price {
	margin-top:8px;
	line-height:1;
	display:block;
	width:100%;
	text-align:center;
	font-weight:700;
	font-size:14px;
	color:var(--color);
}
.net22--offer-single__link {
	display: flex;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	border-radius: 20px;
	overflow: hidden;
	transition:all ease-in-out 250ms;
	max-width: 75px;
	padding: 8px 14px;
	font-size: 14px;
	line-height: 1.2;
	background-color:var(--background-color);
	border:1px solid var(--background-color);
	color:var(--color);
}
.net22--offer-single__link:hover {
	color:var(--background-color);
	background-color:transparent;
}
#net22--offers-close {
	display: flex;
	max-width: max-content;
	padding: 6px 16px;
	color: var(--color);
	background-color: var(--background-color);
	border: 1px solid #707070;
	border-radius: 20px;
	overflow: hidden;
	margin-left: auto;
	font-size: 12px;
	cursor: pointer;
	transition:all ease-in-out 250ms;
}
#net22--offers-close:hover {
	background-color: var(--color);
	color: var(--background-color);
}

html.net22--offers-visible #net22--offers-button {
	transform: translateY(calc(100% + 30px));
}
html:not(.net22--offers-visible) #net22--offers-elements {
	transform: translateY(calc(100% + 30px));
}
@media(max-width:991px) {
	#net22--offers-button {
		width: 85px;
		height: 85px;
		font-size: 14px;
		bottom:20px;
		right:20px;
	}
	#net22--offers-elements {
		bottom:20px;
		right:20px;
		max-height: 520px;
		overflow-x: hidden;
		overflow-y: auto;
		max-width: calc(100vw - 40px);
		width:100%;
	}
	.net22--offer-single__title {
		font-size: 15px;
	}
	.net22--offer-single__price,
	.net22--offer-single__text {
		font-size: 12px;
		margin-top: 6px;
	}
	.net22--offer-single__link {
		font-size:12px;
	}
	.net22--offer-single__cols {
		flex-wrap:wrap;
		justify-content:flex-start;
		column-gap:25px;
		row-gap:10px;
	}
	.net22--offer-single__link {
		width: 100%;
		max-width: 100%;
		justify-content: center;
		text-align: center;
	}
	.net22--offer-single__col--middle {
		flex: 1;
	}
	.net22--offer-single__col--right {
		flex-basis: 100%;
		width: 100%;
	}
	.net22--offer-single__text *,
	.net22--offer-single__title,
	.net22--offer-single__text,
	.net22--offer-single__price {
		text-align:left;
	}
	.net22--offer-single__image {
		height: 85px;
		width: 80px;
		min-height: 85px;
		min-width: 80px;
		max-height: 85px;
		max-width: 80px;
	}

	html.net22--offers-visible #net22--offers-button {
		transform: translateY(calc(100% + 20px));
	}
	html:not(.net22--offers-visible) #net22--offers-elements {
		transform: translateY(calc(100% + 20px));
	}
}