@-webkit-keyframes wd-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes wd-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.wd-search-full-screen {
  position: fixed;
  z-index: 400;
  background-color: #fff;
  -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 14px rgba(0, 0, 0, 0.08);
  -webkit-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.5s, -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.5s, -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.5s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.5s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
  opacity: 0;
  right: 0;
  bottom: 0;
  left: 0;
  top: 144px;
}

.wd-search-full-screen.wd-opened {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
  -webkit-transition: opacity 0s, -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0s, -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.wd-search-full-screen .wd-close-search {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 400;
  height: 100px;
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 575.98px) {
  .wd-search-full-screen .wd-close-search {
    height: 66px;
    width: 66px;
  }
}

.wd-search-full-screen .wd-close-search a {
  width: 72px;
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 400;
}

@media (max-width: 575.98px) {
  .wd-search-full-screen .wd-close-search a {
    height: 50px;
    width: 50px;
  }
}

.wd-search-full-screen .wd-close-search a svg {
  position: relative;
  z-index: 400;
}

.wd-search-full-screen .searchform {
  padding-right: 100px;
  padding-left: 100px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.105);
  color: #333;
}

@media (max-width: 575.98px) {
  .wd-search-full-screen .searchform {
    padding-right: 66px;
    padding-left: 66px;
  }
}

.wd-search-full-screen .searchform input[type="text"] {
  padding: 0;
  height: 100px;
  border: none;
  text-align: center;
  font-weight: 600;
  font-size: 48px;
  max-width: 100%;
  width: 100%;
}

@media (max-width: 575.98px) {
  .wd-search-full-screen .searchform input[type="text"] {
    height: 66px;
    width: 280px;
    font-size: 32px;
  }
}

.wd-search-full-screen .searchform .searchsubmit {
  display: none;
}

.wd-search-full-screen .search-info-text {
  margin-top: 10px;
  padding: 0 15px;
  font-size: 16px;
  line-height: 30px;
  color: #777777;
  position: fixed;
  overflow: auto;
  height: 70vh;
  width: 100%;
}

.wd-search-full-screen .search-info-text .wd-search-loader {
  position: absolute;
  top: 65px;
  right: 0;
  left: 0;
  z-index: 1002;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  visibility: hidden;
  background-color: rgba(var(--bgcolor-white-rgb), 0.8);
  opacity: 0;
  -webkit-transition: opacity 0.2s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.2s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.wd-search-full-screen .search-info-text .wd-search-loader.wd-fill {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.wd-search-full-screen .search-info-text .wd-search-loader.wd-fill:after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 1px solid #0000001f;
  border-left-color: #242424;
  border-radius: 50%;
  vertical-align: middle;
  -webkit-animation: wd-rotate 450ms infinite linear;
          animation: wd-rotate 450ms infinite linear;
}
/*# sourceMappingURL=wp-ajax-site-search.css.map */