  /* Popup styles */
.popupOverlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 100000;
}

.popupContainer {
  position: fixed;
  width: 540px;
  height: 220px;
  top: 50%;
  left: 50%;
  margin-top: -110px;
  margin-left: -270px;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}

.popupHeader {
  flex: 0 30px;
  display: flex;
  flex-direction: row;
}

.popupHeader > div:first-child {
  flex: 1 0;
}

.popupHeader > div:nth-child(2) {
  flex: 0 15px;
  cursor: pointer;
  font-weight: bold;
}

.popupContent {
  flex: 1 0;
  box-sizing: border-box;
  overflow-y: auto;
  padding: 0 10px 10px 10px;
  text-align: center;
}

.popupContent h3 {
  font-size: 24px;
}

.popupContent div {
  font-size: 16px;
  line-height: 1.6;
}

.popupContentContainer {
  padding-top: 30px;
}

@media all and (max-width: 767px) {
  .popupContainer {
    width: 90vw;
    height: 90vh;
    margin-top: -45vh;
    margin-left: -45vw;
  }
}
/* Popup styles end */
