.cart__informer {
  position: fixed;
  z-index: 9999999999;
  top: 66px;
  right: 0;
  left: 0;
  display: none;
  width: 100%;
  max-width: 350px;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--main-color);
}

.cart__informer .cart__informer_content {
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  color: #000;
  background: #fff;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
}

.cart__informer .cart__informer_content svg {
  width: 20px;
  height: 20px;
  fill: rgb(77, 165, 115);
  margin-right: 20px;
}

.cart__informer .icon {
  margin-right: 6px;
}

/* Новый информер (используется через window.initInformer) */
.informer_wrapper .cart__informer_content {
  font-size: 1.8rem;
  line-height: 1.44;
  font-weight: 500;
  text-align: center;
  padding: 0;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.informer_wrapper .cart__informer-icon {
  width: 2rem;
  height: 2rem;
  fill: #fff;
  margin-right: 1rem;
  flex-shrink: 0;
}

.informer_wrapper .cart__informer_content a {
  transition: opacity 0.25s;
  color: inherit;
}

.informer_wrapper .cart__informer_content a:hover {
  opacity: 0.8;
}

@media (max-width: 340px) {
  .cart__informer {
    max-width: 300px;
  }
}

