#request {
  /* display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 200; */
  /* position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; */

  z-index: 300;
  overflow: hidden;
  background: transparent;
}

#request .back-drop {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
}
#request .popup-content {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  background: white;
  width: 450px;
  min-height: 200px;
  z-index: 1;

  padding: 30px 30px 100px 30px;
}
#request .popup-content .exit {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.3;
  padding: 10px;
  cursor: pointer;
  font-size: 27px;
}

#request .popup-content .tit {
  font-size: 24px;
  padding-bottom: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid black;
  font-weight: 700;
}

#request .popup-content .row {
  margin: 0;
  margin-bottom: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  height: 40px;
}
/* textarea는 높이 예외 */
#request .popup-content .row.memo {
  height: inherit;
}
#request .popup-content .row .lb {
  width: 100px;
  color: #b0b0b0;
  font-size: 14px;
  margin-top: 7px;
}
#request .popup-content .row .val {
  flex: 1;
  height: 100%;
}
#request .popup-content .row .val .disable-input {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  font-weight: 900;
  color: black;
}
#request .popup-content .row .val .disable-input,
#request .popup-content .row .val input,
#request .popup-content .row .val textarea {
  border: 1px solid #e4e4e4;
  background: white;
  width: 100%;
  height: 100%;
  padding: 0 7px;
}
#request .popup-content .row .val textarea {
  padding: 7px;
}
#request .popup-content .favorit {
  height: inherit;
  min-height: 40px;
}
#request .popup-content .favorit .favorit-list {
  display: inline-block;
  width: 100%;
  margin-top: 3px;
}
#request .popup-content .favorit .favorit-list li {
  float: left;
  padding: 5px 16px;
  background: #c8a890;
  color: #ffffff;
  margin-right: 2px;
  margin-bottom: 5px;
  border-radius: 14px;
}
#request .popup-content .favorit .favorit-list li i {
  margin-right: 5px;
  margin-top: 2px;
  font-size: 10px;
}

#request .popup-content .privacy {
  text-align: center;
  margin-top: 25px;
  font-size: 11px;
}
#request .popup-content .privacy input {
  margin: 0 5px;
}
#request .popup-content .privacy .view {
  display: inline-block;
  background: black;
  color: white;
  padding: 1px 5px;
  margin-left: 10px;
  font-size: 10px;
}
#request .popup-content .privacy .view a {
  color: white;
}
#request .popup-content .subs {
  margin-top: 25px;
  text-align: center;
  font-size: 10px;
  opacity: 0.3;
}
#request .popup-content .submit {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #a58165;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;

  cursor: pointer;
}
/*******************************/
/* 반응형 */
/*******************************/

/* 모바일 */
@media screen and (max-width: 470px) {
  /* 팝업 */
  #request .submit {
    display: block;
  }

  #request .popup-content {
    width: 350px;
    padding-bottom: 60px;
  }
  #request .popup-content .row {
    height: 30px;
  }
  #request .popup-content .submit {
    height: 50px;
  }
  #request .popup-content .subs,
  #request .popup-content .privacy {
    margin-top: 10px;
  }
  #request .popup-content .favorit {
    height: inherit;
    min-height: 40px;
  }
}
/* 테블릿 */
@media screen and (min-width: 400px) and (max-width: 1023px) {
}
/* PC */
@media screen and (min-width: 1024px) {
}
