input, button {
  outline: none;
  -webkit-appearance: none;
}

input[type=submit] {
  cursor: pointer;
}

/* App Promo */
.app-promo {
  display: flex;
  width: 100vw;
  overflow: hidden;
  justify-content: space-between;
  align-items: center;
  transition: height 0.4s ease;
  height: 0px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9999999;
  background: white;
}

.app-promo.show {
  height: 72px;
}

a.app-promo-close {
  font-size: 16px;
  color: #B7B7B7;
  width: 28px;
  text-align: center;
}

a.app-promo-icon, a.app-promo-icon img {
  width: 62px;
}

a.app-promo-text {
  flex-grow: 1;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 11px;
  line-height: 1.2;
  color: #707070;
}

a.app-promo-text strong {
  font-size: 13px;
}

a.app-promo-view-container {
  width: 60px;
}

.app-promo-view {
  width: 48px;
  height: 18px;
  background: #E9E9E9;
  border-radius: 5px;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  color: #7347FD;
}

/* App Popup */
.app-popup {
  position: fixed !important;
  z-index: 99999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.app-popup.show {
  opacity: 1;
  pointer-events: all;
}

img.app-popup-background {
  width: 98vw;
  max-width: 327px;
}

a.app-popup-close {
  position: absolute;
  top: 19px;
  right: 19px;
}

a.app-popup-ios {
  position: absolute;
  right: 54px;
  bottom: 150px;
}

a.app-popup-android {
  position: absolute;
  bottom: 70px;
  right: 54px;
}

/*# sourceMappingURL=legacy.css.map */
