<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#webapp .bannerfloat {
  position: fixed;
  top: -200px;
  right: 0;
  width: 100%;
  max-width: 430px;
  background-color: var(--background_color);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
  opacity: 0;
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.4) !important;
  -moz-box-shadow: 0 0 3rem rgba(0, 0, 0, 0.175);
  -webkit-box-shadow: 0 0 3rem rgba(0, 0, 0, 0.175);
  -o-box-shadow: 0 0 3rem rgba(0, 0, 0, 0.175);
  gap: 10px;
  border-radius: 30px;
  margin-top: 90px;
  margin-right: 30px;
}

#webapp .bannerfloat.show {
  top: 0px !important;
  opacity: 1 !important;
}

.mobile #webapp .bannerfloat {
  border-radius: 0;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  margin: 0px !important;
  right: 0px !important;
  z-index: 9999;
}

#webapp .webapp-install {
  cursor: pointer;
}

#webapp .bannerfloat h4,
#webapp .bannerfloat .btn-close {
  color: var(--main_color);
}

#webapp .bannerfloat h4 {
  font-weight: 800;
  font-size: 16px;
  line-height: 16px;
  margin: 0px;
  padding: 0px;
  margin-bottom:2px;
}

#webapp .bannerfloat img {
  margin:0px!important;
}

#webapp .bannerfloat p {
  font-weight: 400;
  margin: 0px;
  padding: 0px;
  color: #777777;
  font-size: 12px;
}

#webapp .bannerfloat .webapp-install {
  border: 0px;
  background-color: var(--main_color);
  height: 40px;
  padding: 0px 15px;
  border-radius: 10px;
  line-height: 12px;
}

#webapp .bannerfloat .webapp-install span {
  color: var(--main_text_color);
  font-weight: 800;
  line-height: 12px;
  font-size: 12px;
}

.bannerfloat img {
  max-width: 50px !important;
  max-height: 50px !important;
}

#webapp .banner p {
  font-size: 16px;
  font-weight: 400;
}

#webapp .banner span {
  font-size: 14px;
  font-weight: 400;
  color: #777777;
}

#webapp .banner .webapp-install {
  margin-top: 20px;
}

#webapp .guide {
  display: none;
}

#webapp .guide-desktop,
#webapp .guide-android,
#webapp .guide-ios {
  display: none;
}

#webapp .guide-desktop{
  text-align: center;
}

#webapp .guide .btn-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
}

#webapp .guide .modal-content {
  background-color: var(--background_color) !important;
  color: var(--text_color) !important;
}

#webapp .guide img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  object-position: center;
}

.dark-mode .btn-close {
  filter: brightness(0) invert(1);
}

#webapp .bannerfloat .btn-close {
  position: relative !important;
  right: initial !important;
  top: initial !important;
  font-size: initial !important;
}</pre></body></html>