<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*!
 * smartbanner.js v1.24.1 &lt;https://github.com/ain/smartbanner.js#readme&gt;
 * Copyright Â© 2024 Ain Tohvri, contributors. Licensed under GPL-3.0.
 */
.smartbanner {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  padding: 1rem;
  overflow-x: hidden;
  width: 100%;
  height: 90px;
  background: #f3f3f3;
  /** Android styles **/
}

.smartbanner__exit {
  margin: 0;
  width: 20px;
  height: 20px;
  border: 0;
  text-align: center
}

  .smartbanner__exit::before, .smartbanner__exit::after {
    position: absolute;
    width: 1px;
    height: 17px;
    background: #000000;
    content: ' '
  }

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

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

.smartbanner__icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background-size: contain;
  align-self: center;
  flex-shrink: 0;
  margin-left: 1rem;
}

.smartbanner__info {
  padding: 0 1rem;
  align-self: center;
  color: #484848;
  overflow: hidden;
  width: 100%;
  line-height: 1.2;
}

.smartbanner__info__title {
  font-size: 1rem;
  color: #333;
  font-weight: bold;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.smartbanner__info__author, .smartbanner__info__price {
  font-size: .875em;
}

.smartbanner__button {
  z-index: 1;
  flex-shrink: 0;
  align-self: center;
  padding: 5px 10px;
  min-width: 10%;
  background: #3a4154;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

.smartbanner__button__label {
  text-align: center;
}
</pre></body></html>