/* Modal */
.welcome-pt-overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: rgba(0, 0, 0, .5);
  z-index: 8000;
  transition: all 0.3s;
}

.welcome-pt-message {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  max-width: 750px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 8001;
  box-shadow: 0px 11px 15px -7px rgb(0 0 0 / 20%), 0px 24px 38px 3px rgb(0 0 0 / 14%), 0px 9px 46px 8px rgb(0 0 0 / 12%);
  padding: 30px;
  margin: 16px 0;
  border-radius: 4px;
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.3s;
}

@media (max-width: 532px) {
  .welcome-pt-message {
    width: auto;
    left: 16px;
    right: 16px;
    transform: translate(0, -50%);
  }
}

.site-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}

@media (max-width: 532px) {
  .site-row {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

.site-row ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.site-row ul li {
  border-left: 4px solid #E67E22;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  background-color: #ECF0F1;
}

.promo-price {
  font-weight: 500;
  color: #2C3E50;
  text-align: center;
  margin: 0;
}

.promo-price strong {
  font-weight: 700;
  color: #E67E22;
  margin-left: 0.5rem;
}

.promo-note {
  margin-top: 1.8rem;
  font-size: 0.9rem;
  text-align: center;
  color: #666;
  font-style: italic;
}

.promo-note a {
  color: #E67E22;

}

.promo-note small {
  display: block;
  font-size: 1.5rem;
}

.is-active.welcome-pt-overlay,
.is-active .welcome-pt-message {
  opacity: 1;
  visibility: visible;
}

/* Custom styles here */
.site-form-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 36px;
  line-height: 40px;
  font-weight: 300;
  color: #000;
}

@media (max-width: 532px) {
  .site-form-title {
    margin-bottom: 14px;
    font-size: 25px;
    line-height: 30px;
  }

  .promo-note small,
  .site-row ul {
    font-size: 1.3rem;
  }
}

.site-form-text {
  font-size: 16px;
  line-height: 20px;
  margin-top: 0;
}

.site-form-buttons {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.welcome-pt-close {
  height: 50px;
  line-height: 50px;
  min-width: 180px;
  padding: 0 32px;
  border: none;
  font-size: 16px;
  white-space: nowrap;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  border-radius: 5px;
  background: var(--blue-color);
  transition: all 0.3s ease 0s;
  display: inline-block;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-sizing: border-box;
  text-align: center;
}

.welcome-pt-close:hover {}

@media (max-width: 378px) {
  .site-row img {
    display: none;
  }
}