.banner-item {
  height: 100%;
  padding-bottom: 0;
  width: 100%;
  background-position: center;
  background-size: cover;
  padding: 0 0 25px 0;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 1s;
}
.banner-item__badge {
  color: #ffffff;
  background: #02888d;
  width: max-content;
  padding: 5px 10px;
  font-size: 18px;
  line-height: 23px;
  border-radius: 120px;
  position: absolute;
  top: 10px;
  left: 10px;
}
.banner-item__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px;
}
.banner-item__price {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
}
.banner-item__name {
  color: #ffffff;
  font-size: 18px;
  line-height: 23px;
  font-weight: 500;
}
.banner-item__city {
  display: flex;
  align-items: center;
  gap: 5px;
}
.banner-item__city-name {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}
.banner-item__info-button {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #ffffff;
}
.banner-item__info-button--close {
  color: #303030;
}
.banner-item__info {
  background-color: rgba(255, 255, 255, 0.8156862745);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding-top: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-radius: 27px;
  cursor: initial;
}
.banner-item__link {
  text-align: center;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.banner-item__link:hover {
  color: #02888d;
}.banner-grid-slot {
  min-height: 309px;
}
.banner-grid-slot__mock {
  width: 100%;
}
.banner-grid-slot__default {
  flex-direction: column;
  align-items: center;
}
.banner-grid-slot__default .banner__default__text {
  text-align: center;
}