	.good-place-wrap {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 4px;
		width: 100%;
	}
	.good-place {
		background-color: #ffffff;
		padding: 4px 8px;
		border-radius: 8px;
	}
	.good-place__text {
		font-size: 14px;
		margin-bottom: 8px;
	}

@media (min-width: 768px) {
	.good-place-wrap {
		gap: 16px;
	}
	.good-place {
		padding: 8px 16px;
	}
}

	.floating {
		display: flex;
		position: fixed;
		bottom: 16px;
		right: 16px;
		z-index: 11;
	}
	.floating--hide {
		display: none;
	}
	.floating__link {
		width: 56px;
		height: 56px;
		border-radius: 56px;
		display: flex;
		justify-content: center;
		align-items: center;
		background: #35ad6c;
		color: #ffffff;
		font-size: 36px;
		padding: 4px;
		text-decoration: none;
	}

	.floating__link:after {
		content: none;
	}
	.floating__link--max {
		background: #ffffff;
		border: 1px solid rgba(10, 11, 11, 0.12);
		box-shadow: 0 4px 16px rgba(10, 11, 11, 0.18);
	}
	.floating__max-image {
		display: block;
		width: 30px;
		height: 30px;
	}
	.footer__social-image {
		display: block;
		width: 24px;
		height: 24px;
	}
	.equipments__max-label {
		display: inline-flex;
		align-items: center;
		gap: 8px;
	}
	.equipments__max-image {
		display: block;
		width: 20px;
		height: 20px;
		filter: invert(1);
	}

	.equipments__meta {
		margin-bottom: 20px;
	}
	.equipments__type {
		display: inline-block;
		margin-bottom: 14px;
		padding: 6px 10px;
		border: 1px solid rgba(87, 101, 111, 0.25);
		font-size: 12px;
		letter-spacing: 0.08em;
		text-transform: uppercase;
	}
	.equipments__name {
		margin: 0 0 8px;
		font-size: clamp(24px, 3vw, 40px);
		font-weight: 500;
		line-height: 1.15;
	}
	.equipments__tagline,
	.equipments__registration {
		margin: 0;
	}
	.equipments__tagline {
		font-size: 18px;
	}
	.equipments__registration {
		margin-top: 10px;
		color: var(--black-bg-button);
		font-size: 14px;
	}

  .promotions {
  display: flex;
  flex-direction: column;
}
.promotions__button {
  padding-top: 24px;
  padding-bottom: 24px;
}
.promotions__button a {
  text-decoration: none;
}
.promotions__title-sup {
    font-size: 10px;
    text-transform: lowercase;
    letter-spacing: initial;
    color: #000;
    padding: 1px 4px;
    border: 1px solid #000;
    border-radius: 4px;
	white-space: nowrap;
}
@media (min-width: 768px) {
	.promotions__title-sup {
		font-size: 12px;
		padding: 2px 8px 3px;
	}
}
.promotions__title {
  text-transform: lowercase;
}
.promotions__title--main {
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
	.promotions__title--main {
	  letter-spacing: 3px;
	}
}
.promotions__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 8px 0;
  gap: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
	.promotions__item {
	  padding: 8px;
	}
}
.promotions__cities {
  display: flex;
  gap: 24px;
}
.promotions__city {
  font-weight: 500;
  cursor: pointer;
}
.promotions__city.active {
  border-bottom: 2px solid #000;
}
.promotions__list {
  margin-bottom: 24px;
}
.promotions__tab {
  margin-top: 36px;
  display: none;
}
.promotions__tab.active {
  display: block;
}
.promotions__price {
  white-space: nowrap;
}


.double--indent {
  padding: 0;
}
.double__slider {
  margin-bottom: 24px;
  margin-left: initial;
  margin-right: initial;
}
.double__text p:not(:last-child) {
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .double__slider {
    width: 80%;
    margin-bottom: 36px;
  }
}
.double__list {
  padding-left: 0;
  height: initial;
}
.double__item {
  display: block;
  height: 100%;
}
.double__columns {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .double__columns {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .double__columns--revert {
    flex-direction: row-reverse;
  }
}
.double__column {
  position: relative;
}
.double__column iframe {
  max-width: 100%;
}
@media (min-width: 1200px) {
  .double__column {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .double__content {
    position: sticky;
    top: 128px;
  }
}
.double__sale {
  color: #ffffff;
  font-size: 24px;
  margin-top: -0.25em;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1%, rgb(162, 169, 175) 20%, rgb(255, 255, 255) 35%);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 1.5s linear infinite;
}
@media (min-width: 768px) {
  .double__sale {
    font-size: 32px;
  }
}
@keyframes shine {
  from {
    background-position: 200% center;
  }
}
