.info-block {
  margin: 0 auto;
  position: fixed;
  top: 20%;
  right: 15px;
  z-index: 2;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  opacity: 0;
  visibility: hidden;
  width: calc(100% - 30px);
  max-width: 775px;
  border-radius: 15px;
  background: #fff;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  box-shadow: 0 5px 8px rgba(21, 23, 31, 0.1);
}
.info-block.is-active {
  opacity: 1;
  visibility: visible;
}
.info-block__image {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 200px;
}
@media only screen and (max-width: 767px) {
  .info-block__image {
    width: 100%;
  }
}
.info-block__image:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background-image: linear-gradient(0deg, transparent, #15171f);
  content: "";
}
.info-block__image picture {
  display: flex;
  width: 100%;
}
.info-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .info-block__image img {
    height: 250px;
  }
}
.info-block__content {
  padding: 30px;
  width: calc(100% - 200px);
  background-repeat: no-repeat;
  background-position: left top;
}
@media only screen and (max-width: 767px) {
  .info-block__content {
    padding: 20px;
    width: 100%;
  }
}
.info-block__content h5 {
  color: #2d2d2d;
}
.info-block__content p {
  margin-bottom: 10px;
}
.info-block__close {
  position: absolute;
  top: 10px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.info-block__close i {
  margin-left: 10px;
  font-size: 24px;
}
.info-block__close:hover {
  color: #fff;
}
.info-block--trans {
  display: none;
}
.info-block--trans.is-active {
  opacity: 0.7;
}
.info-block--alt {
  max-width: 585px;
}
.info-block--alt .info-block__content {
  width: 100%;
}
.info-block--alt .info-block__close {
  color: #2c312b;
}
