/*!
 * smartbanner.js v1.19.0 <https://github.com/ain/smartbanner.js#readme>
 * Copyright © 2022 Ain Tohvri, contributors. Licensed under GPL-3.0.
 */

.smartbanner {
  position: fixed;
  z-index: 10000;
  padding-right: 30px;
  top: 0;
  left: 0;
  overflow-x: hidden;
  width: 100%;
  height: 84px;
  background: white;
  font-family: Helvetica, sans, sans-serif;
  display: flex;
  align-items: center;
}

.smartbanner__exit {
  display: block;
  margin: 0;
  border: 0;
  text-align: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}

.smartbanner__exit::before,
.smartbanner__exit::after {
  position: absolute;
  width: 1px;
  height: 12px;
  background: #767676;
  content: " ";
  top: 50%;
  margin-top: -6px;
}

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

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

.smartbanner__icon {
  width: 64px;
  height: 64px;
  border-radius: 15px;
  background-size: 64px 64px;
  flex-shrink: 0;
}

.smartbanner__info {
  display: flex;
  overflow-y: hidden;
  height: 64px;
  align-items: center;
  color: #000;
  flex-grow: 1;
  min-width: 1px;
  padding-left: 10px;
}

.smartbanner__info__title {
  font-size: 14px;
}

.smartbanner__info__author,
.smartbanner__info__price {
  font-size: 12px;
  color: #808080;
}

.smartbanner__button {
  z-index: 1;
  display: block;
  border-radius: 5px;
 /* background: #f3f3f3; */
  color: #1474fc;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  padding: 0 0 0 10px;
}
@media screen and (max-width: 767px) {
 .smartbanner {
  padding-right: 12px;
 }
 .smartbanner__button {
  font-size: 12px;
 }
}
[data-smartbanner-original-margin-top][style*="margin-top: 84px"] .main-header {
 top: 84px;
}
[data-smartbanner-original-margin-top][style*="margin-top: 84px"] .ajs-panel.at-left-position {
 top: 172px !important;
}

.smartbanner__button__label {
  text-align: center;
  background-color: #333333;
  color: white;
  padding: 7px 13px 7px 13px;
}

/* Android specific styles */
.smartbanner.smartbanner--android {
  background: #f3f3f3;
}

.smartbanner.smartbanner--android .smartbanner__exit {
  border-radius: 14px;
  color: #b1b1b3;
  font-family: "ArialRoundedMTBold", Arial;
  font-size: 20px;
  line-height: 17px;
}

.smartbanner.smartbanner--android .smartbanner__exit::before,
.smartbanner.smartbanner--android .smartbanner__exit::after {
  background: #b1b1b3;
}

.smartbanner.smartbanner--android .smartbanner__exit:active,
.smartbanner.smartbanner--android .smartbanner__exit:hover {
  color: #eee;
}

.smartbanner.smartbanner--android .smartbanner__icon {
  background-color: transparent;
  box-shadow: none;
}

.smartbanner.smartbanner--android .smartbanner__info {
  color: #ccc;
}

.smartbanner.smartbanner--android .smartbanner__info__title {
  color: #232323;
}

.smartbanner.smartbanner--android .smartbanner__button {
  padding: 0;
  background: none;
  color: #1474fc;
  font-size: 14px;
}

.smartbanner.smartbanner--android .smartbanner__button:active,
.smartbanner.smartbanner--android .smartbanner__button:hover {
  background: none;
}

.smartbanner.smartbanner--android .smartbanner__button__label {
  display: block;
  padding: 0 10px;
  box-shadow: none;
  line-height: 24px;
  text-align: center;
  text-shadow: none;
  text-transform: none;
} 
