@charset "UTF-8";
.header__bonus-wrap {
  display: flex;
  width: 380px;
  padding: 16px 20px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 0px 0px 8px 8px;
  background: var(--Main-Back, #000);
  position: absolute;
  top: 61px;
  right: -3px;
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute; /* Для удобного позиционирования */
  z-index: 100;
}
@media (max-width: 768px) {
  .header__bonus-wrap {
    width: 320px;
  }
}

.header__bonus-wrap.show {
  display: block;
  opacity: 1;
}

.header__bonus-title {
  color: var(--Main-White, #FFF);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.header__bonus-item-info {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  border-radius: 4px;
  align-items: center;
}
.header__bonus-item-info img {
  width: 64px;
  height: 64px;
}

.header__bonus-item {
  padding: 16px;
  background: var(--Main-White, #FFF);
  margin-bottom: 16px;
}

.header__bonus-item-text {
  color: var(--Main-Back, #000);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.header__bonus-item-button {
  color: var(--Main-Back, #000);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  max-height: 40px;
  font-family: Montserrat;
}