#start-link {
	background-color: #FFFFFF;
	border: 1px solid #336D63;
	color: #336D63;
	font-size: 12px;
	margin-right: 10px;
}

#start-link:hover {
	background-color: #000;
	border: 1px solid #000;
	color: #FFF;
	
}


#promo_overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  display: none; /* shown via .active */
  align-items: center;
  justify-content: center;
  z-index: 99999;
  /* transparent background so backdrop-filter affects content behind */
  background-color: rgba(255,255,255,0.0);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* visible state */
#promo_overlay.active {
  display: flex;
}


/* close button (крестик) in top-right corner */
.promo-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100001;
}

/* focus outline for accessibility */
.promo-close:focus {
  outline: 2px solid #fff;
}

/* fallback for browsers without backdrop-filter:
   если на body есть класс .promo-blur, блурится всё кроме #promo_overlay */
body.promo-blur > *:not(#promo_overlay) {
  filter: blur(10px);
  transition: filter .15s ease;
}




/* Контейнер теперь shrink-wrap'ится под картинку */
.promo-content {
  position: relative;
  display: inline-block;       /* контейнер подстраивается под размеры картинки */
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
}

/* Картинка масштабируется внутри контейнера */
.promo-image {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  z-index: 100000;
}

/* "Горячие" зоны — ширина в процентах от .promo-content (т.е. от картинки) */
.promo-hotspot {
  position: absolute;
  top: 0;
  height: 100%;
  width: 33.333333%;
  z-index: 2;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

/* Позиционирование трёх зон относительно контейнера (картинки) */
.promo-content .promo-hotspot:nth-child(2) { left: 0; width: 36%;}
.promo-content .promo-hotspot:nth-child(3) { left: 36%; width: 28%;}
.promo-content .promo-hotspot:nth-child(4) { left: 63.666667%; }


/* Визуальная подсказка при фокусе/ховере (по желанию) */
/*
.promo-hotspot:hover,
.promo-hotspot:focus {
  outline: 2px dashed rgba(255,255,255,0.5);
  outline-offset: -2px;
     background: rgba(0,0,0,0.15);
 
}
*/

/* Для мобильных экранов можно переключиться на % вместо vw, если нужно:
   @media (max-width: 480px) { .promo-hotspot { width: 33.3333%; } }
*/




#cook_block {
	display: none;
	z-index: 9999;
	position: fixed;
/* 	height: 60px; */
	bottom: 0px;
	width: 100%;
	background-color: #336D63;
}

.cook_text {
	color: #FFF;
	margin: 0 auto;
	padding: 10px;
	max-width: 800px;
}

.cook_text a {
	color: #FFF;
	text-decoration: underline;
}

.cook_close {
	float: right;
	width: 150px;
	padding-left: 20px;
	padding-right: 10px;
	padding-top: 10px;
}

#cook_block.passive { display: none; }
#cook_block.active { display: block; }