#request.visit .split-3 {
  display: none !important;
}
#request {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1000;
}
#request .back-drop {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
}
#request .popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  background: #f4f4f4;
  width: 450px;
  min-height: 200px;
  z-index: 1;

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

#request .popup-content .tit {
  font-size: 24px;
  padding-bottom: 8px;
  margin-bottom: 40px;
  border-bottom: 1px solid black;
  font-weight: 700;
  /* margin-right: 30px; */
}
#request .popup-content .tit-sub {
  line-height: 1;
  margin-bottom: 40px;
  color: gray;
}
#request .popup-content .row {
  margin: 0;
  margin-bottom: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 40px;
}
/* textarea는 높이 예외 */
#request .popup-content .row.memo {
  height: inherit;
  align-items: flex-start;
}
#request .popup-content .row .lb {
  width: 80px;
  /* color: #b0b0b0; */
  color: #636363;
  font-size: 14px;
}
#request .popup-content .row .val {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: white;
}
#request .popup-content .row .val .split-col {
  height: 100%;
  display: flex;
  align-items: center;
}
#request .popup-content .row .val .split-1 {
  flex: 1;
  justify-content: flex-start;
  padding-left: 8px;
}
#request .popup-content .row .val .split-2 {
  width: 35px;
  justify-content: center;
  border-left: 1px solid #f4f4f4;
  border-right: 1px solid #f4f4f4;
}
#request .popup-content .row .val .split-3 {
  width: 65px;
}
#request .popup-content .row .val .split-3 select {
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-left: 5px;
  width: 100%;
  border: 0;
  background: url("../../../img/select-arrow.png") no-repeat 95% 50%;
  background-size: 40%;
}
#request .popup-content .row .val .only-txt {
  margin-left: 8px;
}
#request .popup-content .row .val i {
  color: #c59b7b;
  /* margin-left: 6px; */
  cursor: pointer;
}
#request .popup-content .row .val textarea.placeholder-style {
  color: #cbcbcb;
  font-size: 12px;
}
#request .popup-content .row .val input,
#request .popup-content .row .val textarea {
  border: 0px;
  background: white;
  width: 100%;
  height: 100%;
  padding: 7px;
}
#request .popup-content .row .val textarea::placeholder {
  /* white-space: pre; */
}
#request .popup-content .privacy {
  text-align: center;
  margin-top: 25px;
  font-size: 10px;
}
#request .popup-content .privacy input {
  width: 20px;
  height: 20px;
  margin: 0 5px;
  vertical-align: middle;
}
#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;
  letter-spacing: -0.05em;
  opacity: 0.3;
  margin-bottom: 26px;
}
#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;
}
#request .popup-content .submit i {
  display: none;
  margin-left: 10px;
  font-size: 12px;
}
#request .popup-content .submit.ready {
  opacity: 0.5;
}
#request .popup-content .submit.ready i {
  display: block;
}

/*******************************/
/* 반응형 */
/*******************************/

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

  #request .popup-content {
    /* width: 350px; */
    width: 96%;
    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;
  }
}
/* 테블릿 */
@media screen and (min-width: 451px) and (max-width: 1023px) {
}
/* PC */
@media screen and (min-width: 1024px) {
}
