/* Basic styling for body and button */
body {
  font-family: Arial, sans-serif;
}

/* Popup container (hidden by default) */
.popup-container {
  position: absolute!important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 4%); /* Semi-transparent background */
  justify-content: center;
  align-items: center;
  z-index: 999999999;
}

/* Popup content box */
.popup-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  width: 30%;
  height: auto;
  text-align: center;
  margin: auto;
  margin-top: 50px;
}

@media only screen and (max-width:600px) {
  .popup-content{
    width:80%;
  }
 
}

@media only screen and (max-width:400px) {
  .popup-content{
    width:100%;
  }
}

/* Close button */
.close-btn {
  display: flex;
  justify-content: flex-end;
  display: none;
  position: absolute;
}

.close-btn span {
  font-size: 24px;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  background-color: black;
  cursor: pointer;
}

/* special offer */
.special-offer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.special-offer > figure {
  margin: 0;
  width: 90%;
  /* height: 300px; */
  border-radius: 8px;
  overflow: hidden;
}

.special-offer > figure > img {
  width: 100%;
  /* height: 100%; */
  object-fit: fill;
  object-position: center;
}

/* text content */
.popup-content .text-content{
  display: flex;
  flex-direction: column;
  gap:8px;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
}
.popup-content .text-content h1{
  margin:0;
  font-size: 40px;
}
.popup-content .text-content p{
  margin:0;
  font-size: 24px;
  width:80%;
}

@media only screen and (width:390px) {
  .popup-content .text-content h1{
    font-size: 30px;
  }
  .popup-content .text-content p{
    font-size: 20px;
  }
}

@media only screen and (max-width:350px) {
  .popup-content .text-content h1{
    font-size: 28px;
  }
  .popup-content .text-content p{
    font-size: 16px;
  }
}

/* email container */
#signup-form .email-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 16px;
}


.email-container input{
  height:50px;
  border-radius: 8px;
  border-style: none;
  background-color: #f2f2f2;
  padding-left: 12px;
  outline: none;
  font-size: 16px;
}
.fnz{
  display: flex;
}
input#popName {
    width: 59%;
    margin-right: 5px;
}
input#popZip {
    width: 40%;
}

/* form CTA */
.form-cta > button {
  width:100%;
  height:50px;
  border-radius:8px;
  border-style: none;
  background-color: #97CA58;
  color:#fff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}

.no-thanks{
  margin-top:20px;
  color:#787878;
  font-size: 12px;
}

