/*This is CSS for Mobile App Download Banner*/
.PopupContainer {
  transition: transform 0.3s 0s ease-in-out, opacity 0.3s 0s ease-in-out,
    visibility 0.3s 0s ease-in-out;
  transform: translateY(100%);
  opacity: 0;
  position: fixed;
  visibility: hidden;
  z-index: 10000;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2e3bc7;
  height: 62px;
  max-height: 62px;
  padding: 16px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.PopupContainer > span > svg {
  cursor: pointer;
}
.PopupContainer > span {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.PopupContainer > span > p {
  color: #fff;
  font-family: "Open sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.24px;
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}
.PopupContainer > span > div {
  cursor: pointer;
  display: flex;
  height: 32px;
  padding: 12px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: #fff;
  text-wrap: nowrap;
  justify-content: center;
  box-shadow: 0px 0px 20px 0px rgba(46, 59, 199, 0.08);
}
.PopupContainer > span > div > p {
  color: #121850;
  font-family: "Open sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: -0.24px;
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

.PopupContainer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: inherit;
}

.PopupContainer #PopupContinue {
  background: transparent;
  border: 1px solid #fff;
  cursor: pointer;
}
.PopupContainer #PopupContinue > p {
  color: #fff;
}

@media (max-width: 1024px) {
  .PopupContainer #PopupContinue {
    display: none;
  }
}

@media (min-width: 1024px) {
  .PopupContainer {
    padding: 0px 48px;
  }

  .PopupContainer > span > p {
    font-size: 16px;
  }
  .PopupContainer > span > div > p {
    font-size: 14px;
  }
}

.longword {
  word-wrap: break-word;
}
