/* Overlay plein écran, caché par défaut */
#swms-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#swms-popup-overlay.active {
  display: flex;
}

/* Contenu de la popup */
.swms-popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  position: relative;
}

/* Popup box */
/*.swms-popup {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  position: relative;
}*/

/* Bouton fermer */
.swms-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  font-size: 1.5em;
  line-height: 1;
  cursor: pointer;
}

/* Title */
.swms-popup-title {
  margin: 0 0 15px;
  color: #547cd9;
  font-size: 1.5em;
}

/* Wheel area */
.swms-popup-wheel {
  position: relative;
  margin-bottom: 15px;
}
#swms-popup-canvas {
  display: block;
  margin: 0 auto;
}
#swms-popup-pointer {
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 30px solid #000;
}

/* Form */
.swms-popup-form input[type="email"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.swms-popup-btn {
  background: #547cd9;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
}
.swms-popup-btn:hover,
.swms-popup-btn:focus {
  background: #ffb400;
  color: #000;
}

/* Result message */
.swms-popup-result {
  margin-top: 15px;
  font-weight: bold;
  color: #000;
}
