.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup {
  background: #FFC734;
  padding: 50px;
  max-width: min(90%, 930px);

  justify-content: space-between;
}

.popup.small {
  height: unset;
}

.popup .popup-content {
  display: flex;
  flex-direction: column;
}

.popup .close-btn {
  background: transparent;
  border: none;
  font-size: 32px;
  float: right;
  cursor: pointer;
}

.popup .pop-up-next {
  margin: 40px 0;
  align-self: center;
}

.popup h2 {
  -webkit-text-stroke: 3px #000000;
  font-family: "Bangers", Helvetica;
  font-weight: 400;
  color: #ed3a23;
  font-size: 62px;
  letter-spacing: 1.8px;
  line-height: 85.5px;

  word-wrap: break-word;
  width: 100%;
  text-align: center;
}

.popup ul {
  list-style: none;
  padding: 0;
}

.popup ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 30px;
}

.popup ul li img {
  margin-right: 10px;
}

.popup ul li p {
  color: #000;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 144%;
  letter-spacing: -0.8px;
}

.popup ul li p.bigger {
  font-size: 32px;
}

.popup ul li p span {
  color: #000;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 144%; /* 28.8px */
  letter-spacing: -0.8px;
}

.popup ul li .edit-copy {
  width: 24px;
  height: 24px;
  margin-left: 10px;
  cursor: pointer;
}

.popup ul li span {
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", Helvetica;
}

.popup .info {
  margin-top: 10px;
  font-size: 14px;
  font-family: "Inter", Helvetica;
  font-weight: 600;
  color: #000000;
  font-size: 28px;
  letter-spacing: -1.12px;
  line-height: 39.2px;
}

.popup .back-btn {
  display: none;
  margin: 20px auto 0;
  padding: 30px 40px;
  background: #c0392b;
  color: #fff;
  text-align: center;
  font-size: 26px;
  border: none;
  cursor: pointer;
}

@media (orientation: portrait) {
  .popup {
    max-width: 100%;
    height: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;

    overflow-y: auto;
  }

  .popup.small {
    max-width: 90%;
  }

  .popup .back-btn {
    display: block;
  }

  .popup .close-btn {
    display: none;
  }
}


.loader-container {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFC734;

  display: flex;
  justify-content: center;
  align-items: center;
}
