/* Sticky-banner VWO replacement */
.sticky-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f9f9f9; /* Light gray background */
    padding: 20px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1); /* Optional: adds a subtle shadow */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    text-align: start;
}

.sticky-banner.show {
    opacity: 1;
    visibility: visible;
}

#banner-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

#zipcode-input {
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid #292929;
    border-radius: .5rem;
    color: #292929;
    display: block;
    font-size: 1rem;
    font-weight: 300;
    padding: .9rem 1rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100%;
}

.banner-content h3 {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  margin: 0;
  padding-bottom: 8px;
}

.banner-content p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  padding-bottom: 16px;
}

._hj-widget-container  {
  display: none;
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.btn {
    align-items: center;
    border: 2px solid transparent;
    display: inline-flex;
    font-size: 1rem;
    font-weight: 600;
    justify-content: center;
    padding: .85rem 1.5rem;
    text-align: center;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    vertical-align: middle;
    margin-left: .5rem;
    text-wrap: nowrap;
    margin-bottom: 0;
    background-color: #c00;
}

.zip-section  {
  display: flex;
  justify-content: space-evenly;
  margin: auto;
}

.banner-content  {
    align-items: center;
}

.close {
  text-align: right;
  cursor: pointer;
  font-weight: bold;
  font-size: larger;
}