/* 1) Make #popsign fixed at the bottom, hidden by default */
#popsign {
  display: none;                /* hidden until a checkbox is selected */
  position: fixed;              /* pin to bottom of the viewport */
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;                /* on top of other elements */
  background-color: #fef2c2;    /* a light, Ã¢â‚¬Å“yellowishÃ¢â‚¬Â background */
  border-top: 1px solid #ccc;
  padding: 16px 100px;
}

/* 2) If your page is short, add bottom padding so #popsign doesn't overlap content */
body {
  /* or your main container if you prefer */
  padding-bottom: 120px; /* adjust so the user can scroll above the pinned bar */
}

/* Basic heading style */
.subscribe-heading {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 20px;
  color: black;
}

/* The row of form fields and button */
.subscribe-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;      /* so it can wrap on smaller screens */
  align-items: flex-end; /* align label/inputs nicely */
  margin-bottom: 10px;
}

/* Make each label + input vertical */
.addresslabel {
  display: flex;
  flex-direction: column;
}

#submitbtn input[type="submit"] {
  padding: 8px 16px;
  background: black;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 0px;
  text-shadow: none;
  width: 100%;
  height: 35px;
  font-size: 14px;
  font-weight: normal;
}

#submitbtn input[type="submit"]:hover {
  background-color: #1a2529;
}

p#p13 {
    flex: 1;
    margin: 0;
}

p#p7 {
    margin: 0;
}

#submitbtn.submit {
    flex: 1;
    margin: 0;
}

#popsign > p:nth-child(3) {
    font-size: 12px;
    color: black;
}

span.spanc7.drg-element-type-standard-field.drg-element-sub-type-fieldname-COUNTRY {
    flex: 1;
}

/* Example responsive tweak */
@media (max-width: 600px) {
  .subscribe-row {
    flex-direction: column;
    align-items: flex-start;
  }
}


.addresslabel .questionlabel {
    font-weight: normal;
    font-size: 13px;
    color: black;
}

input[type="text"], select {
    height: 35px;
    margin: 0;
    width: 100%;
    border: 1px solid black;
    border-radius: 4px;
}
