.ea-search-modal {
  background: tomato;
  width: 100vw;
  height: 100vh;
  position: fixed;
  opacity: 0;
  top: 0px;
  left: 0px;
  pointer-events: none;
  z-index: 100000;
  transition: 0.3s;
}
.ea-search-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s linear;
}
.ea-search-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.content-body {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.ea-search-close-btn {
  cursor: pointer;
  position: absolute;
  top: 40px;
  right: 25px;
  z-index: 9999;
  transition: all .2s linear;
  border-radius: 50%;
  border: 1px solid rgb(12 12 12 / 53%);
  width: 30px;
  height: 30px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ea-form-field-group {
  display: flex;
  align-items: center;
}
.ea-search-submit-btn {
  transition: all .2s linear;
}
.ea-search-icon-wrap {
  border-radius: 50%;
  border: 1px solid rgb(12 12 12 / 53%);
  width: 30px;
  height: 30px;
  color: #000;
}