.mayple-container {
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 50000000000;
  visibility: hidden;
  box-sizing: border-box !important;
}

.mayple-popup {
  position: relative;
  border-radius: 6;
  padding: 2em 3em;
  max-width: 35em;
  width: calc(100% - 1.5em);
  margin: 2em;
  border: 2px solid #27392a;
  box-shadow: 0px 3px 30px #0000004a;
  text-align: center;
  box-sizing: border-box !important;
}
@media screen and (max-width: 400px) {
  .mayple-popup {
    margin: 0.5em;
  }
}

.mayple-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #27392a;
  padding-bottom: 1em;
  margin-bottom: 1em;
}

.mayple-popup-logo {
  height: 2em;
  width: auto;
}

.mayple-popup-logo > svg {
  height: 100% !important;
}

.mayple-popup-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 50%;
  height: 2em;
  width: 2em;
  top: -1em;
  right: -1em;
  font-size: 10px;
  cursor: pointer;
  background: #fff;
  padding: 0;
  margin: 0;
}

.mayple-popup-title {
  font-size: 1.75em;
  margin: 0;
}

.mayple-popup-description {
  font-size: 1em;
  margin: 1em 0 2em;
}

.mayple-popup-button {
  border: none;
  border-radius: 6;
  padding: 1.5em 5em;
  margin: 0 auto;
  font-size: 1em;
  cursor: pointer;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 0.75em;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.mayple-display {
  visibility: visible;
}

.mayple-fadein {
  animation-name: fadein;
  animation-duration: 0.4s;
}

.mayple-fadeout {
  opacity: 0;
  animation-name: fadeout;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
}

.mayple-no-br {
  white-space: nowrap;
}