.website-modal {
  --primary-color: #ff4800;
  --text-color: #473737;
  --text-bgcolor: #ffdacc;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
}
.website-modal-content {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  width: 540px;
  position: relative;
  text-align: center;
}

.website-modal-close {
  position: absolute;
  top: 30px;
  right: 17px;
  z-index: 2;
}

.website-modal button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.website-modal .website-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 10px;
  column-gap: 30px;
  padding: 15px 0;
}

.website-modal .website-modal-buttons a,
.website-modal .website-modal-buttons button {
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  color: var(--text-color);
  background-color: var(--text-bgcolor);
  padding: 2px 10px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.website-modal .website-modal-enter {
  color: #ffffff;
  font-weight: 600;
  font-size: 20px;
  background-color: var(--primary-color);
  border-radius: 46px;
  padding: 2px 20px;
  margin-top: 20px;
}

.website-modal .title {
  margin-top: 20px;
  color: var(--text-color);
  font-weight: 600 !important;
  font-size: 26px;
  text-align: center;
}
.website-modal .title span {
  color: var(--primary-color);
}

.website-modal .website-modal-text {
  font-weight: 500 !important;
  font-size: 16px;
  margin-top: 40px;
  margin-bottom: 6px;
  color: var(--text-color);
}

@media screen and (max-width: 800px) {
  .website-modal-content {
    width: calc(100% - 60px);
    padding: 38px 10px;
  }
  .website-modal .title {
    margin-top: 16px;
    font-size: 20.87px;
  }
  .website-modal .website-modal-enter {
    margin-top: 10px;
    font-size: 16px;
    padding: 2px 37px;
  }
  .website-modal .website-modal-text {
    font-size: 12px;
    width: 190px;
    margin: 32px auto 0px;
  }
  .website-modal .website-modal-buttons button {
    font-size: 12px;
  }

  .website-modal-close {
    top: 18px;
    right: 9px;
  }
  .website-modal-close img {
    width: 20px;
  }
}
