#eligible-search-wapper .search-form {
  display: flex;
  width: 100%;
  position: relative;
  margin-bottom: 1.5em;
}

#eligible-search-wapper.search-term .search-form .lottie {
  opacity: 1;
}
#eligible-search-wapper .search-form .lottie {
  opacity: 0;
  transition: opacity 0.5s;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 0.2em;
  margin-top: -25px;
}
#eligible-search-wapper input[type="email"] {
  padding: 1em 1em 1em 50px;
  border: 4px solid #ccc;
  border-radius: 999em;
  font-size: 1.25rem; 
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  outline: none;
  width: 100%;
}
#eligible-search-wapper input[type="email"]:focus {
    border: 4px solid #444;
    transition: border 0.6s;
    outline: none;
}

#eligible-search-wapper input[type="submit"] {
  padding: 1em 2.25em;
  background-color: #333;
  background-color: var(--e-global-color-accent);
  color: #fff;
  font-size: 1.25rem;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: bold;
  border: none;
  border-radius: 999em;
  cursor: pointer;
  position: absolute;
  right: 4px;
  top: 4px;
  height: calc(100% - 8px);
}

#eligible-search-wapper input[type="submit"]:hover {
  background-color: #444;
}
#eligible-search-wapper input[type="submit"]:focus,
#eligible-search-wapper input[type="submit"]:active {
  outline: none;
}

#eligible-search-wapper #search_msg {
    font-size: 1.25rem;
    line-height: 1.4em;
    margin: 0;
    opacity: 0;
    transition: opacity 0.5s;
}
#eligible-search-wapper.search-term #search_msg {
  opacity: 1;
}

.search-clear {
  position: absolute;
  top: 50%;
  right: clamp(150px, 14vw, 190px);
  transform: translateY(-50%);
  cursor: pointer;
  color: #ccc;
  font-size: 2em;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.5s;
}

#eligible-search-wapper.search-term .search-clear {
  opacity: 1;
}