.smartbanner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 84px;
  padding: 12px;
  box-sizing: border-box;
  border-radius: var(--alias-radius-radius-none, 0);
  border-top: 1px solid var(--color-general-divider-primary, #F2F2F2);
  border-bottom: 1px solid var(--color-general-divider-primary, #F2F2F2);
  background: #FFF;
  color: #000;
}

.smartbanner__exit {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  position: relative;
  opacity: 0.8;
}

.smartbanner__exit::before,
.smartbanner__exit::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 2px;
  width: 2px;
  height: 18px;
  background: black;
}

.smartbanner__exit::before {
  transform: rotate(45deg);
}

.smartbanner__exit::after {
  transform: rotate(-45deg);
}

.smartbanner__icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.smartbanner__info {
  flex: 1 1 auto;
  min-width: 0;
}

.smartbanner__info__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.smartbanner__info__author,
.smartbanner__info__price {
  font-size: 13px;
  line-height: 1.3;
  opacity: 0.9;
}

.smartbanner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #222426;
  color: #FFF;
  text-align: center;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.smartbanner--uklon {
  background: #fff;
}
