
#cmrx-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  max-width: calc(100vw - 10px);
  border-radius: 20px;
  background: white;
  border: 1px solid #e2e2e2;
  border-top: none;
  box-shadow: 1px 1px 6px 1px #67676726;
  z-index: 99999999999999;
}

.cmrx-popup .header {
  position: relative;
  overflow: hidden;
  color: white;
}

.cmrx-popup .header .inner {
  padding: 15px 60px 23px;
  background: radial-gradient(90.13% 301.89% at 9.87% 31.78%, #000000 0%, #030900 47.04%, #276600 100%);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: relative;
  top: 8px;
  z-index: 2;
}

@media (max-width: 650px) {
  .cmrx-popup .header .inner {
    padding-left: 20px;
  }
}

.cmrx-popup .header::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background: linear-gradient(90deg, #bbf19a 0%, #4db310 100%);
}

.cmrx-popup .header svg.close {
  position: absolute;
  top: 18px;
  right: 10px;
  z-index: 5;
  width: 35px;
  height: 35px;
  cursor: pointer;
}

.cmrx-popup .content {
  max-width: 500px;
  max-height: calc(100vh - 100px);
  overflow: auto;
  margin: 10px auto;
  padding: 20px 15px;
  text-align: center;
}

.cmrx-popup .content p,
.cmrx-popup .content ul {
  margin-bottom: 1em;
}

.cmrx-popup .content ul {
  text-align: left;
}

.cmrx-popup .ok-button,
.cmrx-popup .back-button {
  margin: 10px auto;
  white-space: nowrap;
  display: block;
  cursor: pointer;
  color: black !important;
  font-weight: 600 !important;
  border: 2px solid #82d74f !important;
  line-height: 1.5;
  width: 250px;
  max-width: 100%;
}

.cmrx-popup .ok-button {
  background: #82d74f !important;
}

.cmrx-popup .ok-button:hover {
  background: #bbf19a !important;
}

.cmrx-popup .back-button {
  background: white !important;
}

.cmrx-popup .back-button:hover {
  background: #e2e2e2 !important;
}
