.smart-popup {
  overflow: hidden;
  border-radius: 3px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: auto;
  z-index: 9999;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media screen and (max-width: 500px) {
  .smart-popup {
    width: 90%;
  }
}

.smart-popup .smart-popup-title {
  padding: 5px;
  font-size: 30px;
  margin-bottom: 20px;
}

.smart-popup .smart-popup-content {
  margin-bottom: 20px;
}

.smart-popup .smart-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 16px;
}

.smart-popup .smart-popup-close:hover {
  color: #000;
}

.smart-popup .smart-popup-button {
  padding: 10px 0;
}

.smart-popup .smart-popup-button>a {
  background-color: #d4d4d4;
  padding: 10px 20px;
  border-radius: 60px;
  text-decoration: none;
}
