.smartbanner {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  overflow-x: hidden;
  width: 100%;
  height: 72px;
  background: #ffffff;
  font-family: "Mulish";
  display: flex;
  flex-direction: row;
  justify-items: start;
  justify-content: space-between;
  align-items: center;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.15);
  gap: 16px;
  padding: 0 16px;
}
.wrapper_icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: rgb(251 146 60);
  display: flex;
  justify-content: center;
  align-items: center;
  justify-items: center;
}
.smartbanner__icon {
  width: 32px;
  height: 32px;
  background-size: 32px 32px;
  background-repeat: no-repeat;
}
.smartbanner__info {
  display: flex;
  overflow-y: hidden;
  width: 60%;
  height: 64px;
  align-items: center;
  color: #000;
}
.smartbanner__info__title {
  color: #282828;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0em;
  padding-bottom: 4px;
}
.smartbanner__info__author,
.smartbanner__info__price {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0em;
}
.smartbanner__button {
  display: block;
  padding: 6px 12px 8px 12px;
  background: #23b9f9;
  box-shadow: none;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  text-shadow: none;
  text-transform: none;
  border-radius: 24px;
  outline: none;
  color: #ffffff;
  font-weight: bold;
}
.smartbanner__button__label {
  text-align: center;
}

.smartbanner.smartbanner--android .smartbanner__icon {
  box-shadow: none;
}
.smartbanner.smartbanner--android .smartbanner__info {
  color: #949494;
}
.smartbanner.smartbanner--android .smartbanner__info__title {
  color: #282828;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
}
.smartbanner.smartbanner--android .smartbanner__button {
  padding: 0;
  min-width: 12%;
  background: #23b9f9;
  color: #d1d1d1;
  font-size: 14px;
  font-weight: bold;
  border-width: 0;
  outline: none;
  color: #ffffff;
}
.smartbanner.smartbanner--android .smartbanner__button:active,
.smartbanner.smartbanner--android .smartbanner__button:hover {
  background: none;
  outline: none;
}
.smartbanner.smartbanner--android .smartbanner__button__label {
  display: block;
  padding: 4px 12px;
  background: #23b9f9;
  box-shadow: none;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  text-shadow: none;
  text-transform: none;
  border-radius: 24px;
  outline: none;
}
.smartbanner.smartbanner--android .smartbanner__button__label:active,
.smartbanner.smartbanner--android .smartbanner__button__label:hover {
  background: #2ac7e1;
  border-radius: 12px;
}

/* Only force reset spacing on pages without smart banner metadata */
html:not([data-has-smartbanner-meta]) {
  margin-top: 0 !important;
  top: auto !important;
}

/* Remove smart banner data attributes only when no banner should be present */
html:not([data-has-smartbanner-meta])[data-smartbanner-original-margin-top] {
  margin-top: 0 !important;
}

html:not([data-has-smartbanner-meta])[data-smartbanner-original-top] {
  top: auto !important;
}
