.fspromo-box {
  margin: 1.5rem 0;
  padding: 22px 24px;
  border: 1px solid;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.fspromo-icon {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.fspromo-icon svg,
.fspromo-icon img {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: contain;
}

.fspromo-content {
  flex: 1 1 auto;
  text-align: right;
}

.fspromo-main {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 4px;
}

.fspromo-sub {
  font-size: 14px;
  line-height: 1.3;
  opacity: .95;
}

@media (max-width: 767px) {
  .fspromo-box {
    align-items: flex-start;
    padding: 18px;
    gap: 14px;
  }

  .fspromo-icon {
    width: 42px;
    height: 42px;
  }

  .fspromo-icon svg,
  .fspromo-icon img {
    width: 42px;
    height: 42px;
  }

  .fspromo-content {
    text-align: left;
  }

  .fspromo-main {
    font-size: 16px;
  }

  .fspromo-sub {
    font-size: 13px;
  }
}

.fspromo-topbar {
  border-top: 1px solid;
  border-bottom: 1px solid;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-10px);
  transition: max-height .45s ease, opacity .35s ease, transform .45s ease, padding .45s ease;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 10;
}

.fspromo-topbar-visible {
  max-height: 80px;
  opacity: 1;
  transform: translateY(0);
  padding-top: 10px;
  padding-bottom: 10px;
}

.fspromo-topbar-hidden {
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  padding-top: 0;
  padding-bottom: 0;
}

.fspromo-topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
}

.fspromo-topbar-text {
  font-size: 15px;
  line-height: 1.35;
  text-align: center;
}

.fspromo-topbar-close {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 22px;
  line-height: 1;
  padding: 0 4px;
  cursor: pointer;
  opacity: .75;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.fspromo-topbar-close:hover,
.fspromo-topbar-close:focus {
  opacity: 1;
}

@media (max-width: 767px) {
  .fspromo-topbar-visible {
    max-height: 110px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .fspromo-topbar-inner {
    padding: 0 42px 0 12px;
  }

  .fspromo-topbar-text {
    font-size: 13px;
  }
}
