/**
 * Deps: magnific-popup
 * Load: global
 */
.search-button-container {
  position: relative;
}
.search-button-container .search-form-container {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease all;
}
.search-button-container.show-search-form .search-form-container {
  opacity: 1;
  pointer-events: all;
}
.search-button-container.show-search-form .search-form {
  width: 350px;
}

.in-content-search-form-container {
  margin: 30px 0 60px;
}
.in-content-search-form-container .search-form .search-field {
  border: 1px solid var(--wp--preset--color--dark-gray);
}

@media (max-width: 560px) {
  .search-button-container .search-form-container {
    position: fixed;
    top: 0;
    margin-top: 85px;
    left: 0;
    width: 100%;
  }
  .search-button-container .search-form-container .search-form {
    margin-left: auto;
    margin-right: auto;
  }
  body.search-form-visible {
    overflow: hidden;
  }
}
.search-button {
  height: 40px;
  cursor: pointer;
  display: block;
}
.search-button svg {
  background: var(--wp--preset--color--white);
  width: 40px;
  border-radius: 20px;
  position: relative;
  top: 1px;
  height: auto;
}
.search-button svg g g g circle,
.search-button svg g g g line {
  stroke: var(--wp--preset--color--green);
}

.search-form {
  width: 300px;
  display: flex;
  transition: 0.3s ease all;
  position: relative;
}
.search-form label {
  display: inline-block;
  vertical-align: bottom;
  flex-grow: 1;
}
.search-form .search-field {
  line-height: 47px;
  height: 62px;
  background: var(--wp--preset--color--white);
  padding-left: 25px;
  padding-right: 65px;
  width: 100%;
  color: var(--wp--preset--color--dark-gray);
  border-radius: 0 !important;
  border: 1px solid var(--wp--preset--color--dark-gray);
  -webkit-appearance: none;
}
.search-form .search-field:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #999;
}
.search-form .search-field::-moz-placeholder {
  color: #999;
}
.search-form .search-field::placeholder {
  color: #999;
}
.search-form .search-field:focus {
  outline: none;
}
.search-form .search-submit {
  border: none;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  margin-top: -18px;
  right: 2px;
  background: none;
  color: var(--wp--preset--color--green);
  flex-grow: 0;
  cursor: pointer;
  text-indent: -1000em;
  border-radius: 20px;
}
.search-form .search-submit i {
  text-indent: 0;
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  margin-top: -9px;
  text-align: center;
}
.search-form .search-submit:focus, .search-form .search-submit:hover {
  outline: 1px dotted white;
  background: var(--wp--preset--color--green);
  color: #fff;
}
.search-form .search-submit:active {
  transform: scale(1.03);
}/*# sourceMappingURL=style.css.map */