@charset "UTF-8";
/*검색창*/
.search-wrap {
  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;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #222;
  overflow: hidden;
  background: #fff;
  font-size: 15px;
}
.search-wrap input::-webkit-input-placeholder, .search-wrap textarea::-webkit-input-placeholder {
  color: #c2c2c2;
  font-size: inherit;
  line-height: 1.5;
  white-space: normal;
}
.search-wrap input::-moz-placeholder, .search-wrap textarea::-moz-placeholder {
  color: #c2c2c2;
  font-size: inherit;
  line-height: 1.5;
  white-space: normal;
}
.search-wrap input:-ms-input-placeholder, .search-wrap textarea:-ms-input-placeholder {
  color: #c2c2c2;
  font-size: inherit;
  line-height: 1.5;
  white-space: normal;
}
.search-wrap input::-ms-input-placeholder, .search-wrap textarea::-ms-input-placeholder {
  color: #c2c2c2;
  font-size: inherit;
  line-height: 1.5;
  white-space: normal;
}
.search-wrap input::placeholder,
.search-wrap textarea::placeholder {
  color: #c2c2c2;
  font-size: inherit;
  line-height: 1.5;
  white-space: normal;
}

.search {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 44rem;
  line-height: 1.5;
  cursor: initial;
  margin: 0 auto;
}
.search > p {
  color: #222;
  font-weight: 600;
  margin-bottom: 30px;
  width: 100%;
  text-align: left;
}
.search form {
  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;
  width: 100%;
  border-bottom: 2px solid #333;
  color: inherit;
  margin-bottom: 15px;
}

.search .form-outline {
  position: relative;
  width: 100%;
  height: 55px;
  color: inherit;
}
.search .form-outline input[type=search] {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  font-style: normal;
  text-decoration: none;
  background: none;
  width: 100%;
  height: 100%;
  font-size: 15px;
  padding: 0 22.5px;
  border-radius: 3.75px;
  overflow: hidden;
  color: inherit;
}
.search .form-outline input[type=search]::-ms-clear, .search .form-outline input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.search .form-outline input[type=search]::-webkit-search-decoration, .search .form-outline input[type=search]::-webkit-search-cancel-button, .search .form-outline input[type=search]::-webkit-search-results-button, .search .form-outline input[type=search]::-webkit-search-results-decoration {
  display: none;
  -webkit-appeearance: none;
  cursor: pointer;
}
.search .form-outline input[type=search]::-webkit-search-cancel-button:after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url("/images/basicUI/svg/020-close.svg") no-repeat center;
  background-size: 15px;
}
.search .form-outline input[type=search]:focus + label {
  opacity: 0;
}
.search button {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  font-style: normal;
  text-decoration: none;
  background: none;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  height: 100%;
  float: left;
  background: transparent;
  width: 45px;
  height: 25px;
  color: inherit;
  font-size: 22.5px;
}
.search button i {
  font-size: 18px;
}

.search-wrap.active {
  height: 250px;
  z-index: 9;
}