.inquiry {
  position: relative;
}
.inquiry .container {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1000px) {
  .inquiry .container {
    flex-direction: column;
  }
}
.inquiry .formBox {
  width: calc(39% - 30px);
  background: #FFF;
  border: #E5E5E5 1px solid;
  padding: 35px 50px;
}
@media screen and (max-width: 1000px) {
  .inquiry .formBox {
    width: 100%;
    order: 3;
  }
}
.inquiry .formBox .title {
  color: #07111F;
  font-size: 1.3125rem;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (max-width: 1000px) {
  .inquiry .formBox .title {
    font-size: 1.125rem;
  }
}
.inquiry .formBox .description {
  color: #666666;
  margin-bottom: 20px;
  font-size: 1.125rem;
}
@media screen and (max-width: 1000px) {
  .inquiry .formBox .description {
    font-size: 1rem;
  }
}
.inquiry .inquiryList {
  width: 55%;
  background: #fff;
  position: relative;
  isolation: isolate;
  padding-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .inquiry .inquiryList {
    width: 100%;
  }
}
.inquiry .inquiryList .title {
  padding: 3% 0;
  font-weight: 700;
  font-size: 1.75rem;
  text-align: center;
  color: #fff;
  background: #0099FF;
}
.inquiry .inquiryList::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 70px;
  background: #018AF0;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .inquiry .inquiryList::before {
    display: none;
  }
}
.inquiry table {
  margin: 0 auto;
  width: calc(100% - 80px);
}
@media screen and (max-width: 1000px) {
  .inquiry table {
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 767px) {
  .inquiry table {
    width: calc(100% - 40px);
  }
}
.inquiry table img {
  max-width: 58px;
}
.inquiry table tr {
  border-bottom: #E5E5E5 1px solid;
}
.inquiry table tr:nth-child(even) {
  background: #F5F5F5;
}
.inquiry table thead th {
  background: #018AF0;
  color: #FFF;
  text-align: left;
  font-size: 1rem;
  height: 70px;
}
@media screen and (max-width: 1000px) {
  .inquiry table thead {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .inquiry table tbody tr {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 10px;
  }
}
.inquiry table tbody td {
  padding: 15px;
}
.inquiry table tbody td:nth-child(1) {
  border-right: none;
}
@media screen and (min-width: 1001px) {
  .inquiry table tbody td:nth-child(1) {
    padding: 0;
  }
}
@media screen and (max-width: 1000px) {
  .inquiry table tbody td:nth-child(1) {
    width: 30%;
  }
}
.inquiry table tbody td:nth-child(2) {
  font-weight: 600;
  font-size: 1.125rem;
  border-left: none;
}
@media screen and (max-width: 1000px) {
  .inquiry table tbody td:nth-child(2) {
    border: none;
    width: 70%;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 1000px) {
  .inquiry table tbody td:nth-child(3) {
    border: none;
  }
}
@media screen and (min-width: 1001px) {
  .inquiry table tbody td:nth-child(4) {
    padding: 0;
  }
}
@media screen and (max-width: 1000px) {
  .inquiry table tbody td:nth-child(4) {
    width: 100%;
  }
}
.inquiry table tbody td:nth-child(5) {
  padding: 0 3px;
  max-width: 40px;
}
@media screen and (max-width: 1000px) {
  .inquiry table tbody td {
    border: none !important;
    margin-top: -1px;
    width: 100%;
    display: block;
  }
  .inquiry table tbody td:nth-child(2) {
    border: none !important;
  }
  .inquiry table tbody td:nth-child(5) {
    max-width: none;
    padding: 0;
  }
  .inquiry table tbody td + td {
    border-top: #dddddd 1px solid !important;
  }
}
.inquiry .qtyBox {
  width: 100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
}
.inquiry .qtyBox input {
  width: 30px;
  height: 30px;
  font-size: 18px;
  color: #202020;
  text-align: center;
  background: #fff;
  border: #E7E7EB 1px solid;
  border-width: 1px 0;
}
.inquiry .qtyBox button {
  width: 30px;
  height: 30px;
  color: #03CACF;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #fff;
  border: #E7E7EB 1px solid;
  transition: all 0.3s ease;
}
.inquiry .qtyBox button::before {
  content: "";
  width: 10px;
  height: 2px;
  display: block;
  background: #BBBBBB;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.inquiry .qtyBox button.add::after {
  content: "";
  width: 2px;
  height: 10px;
  display: block;
  background: #BBBBBB;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.inquiry .qtyBox button:hover {
  background: #03CACF;
}
.inquiry .qtyBox button:hover::before, .inquiry .qtyBox button:hover::after {
  background: #fff;
}
.inquiry .del {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
  line-height: 1;
  text-align: center;
  padding: 0;
  background: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .inquiry .del {
    width: 100%;
    height: 100%;
    padding: 10px;
    background: #000;
  }
}
.inquiry .del::before {
  content: "";
  position: absolute;
  width: 0;
  top: 0;
  bottom: 0%;
  right: 0;
  z-index: 0;
  background: #03CACF;
  transition: all 0.3s ease;
}
.inquiry .del::after {
  content: "\e80b";
  line-height: 0;
  font-size: 14px;
  height: 15px;
  color: #03CACF;
  line-height: 1;
  position: absolute;
  top: 8px;
  left: 9px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .inquiry .del::after {
    content: "Delete";
    color: #fff;
    position: relative;
    top: auto;
    left: auto;
  }
}
@media screen and (max-width: 1000px) {
  .inquiry .del:hover {
    background: #03CACF;
  }
}

@media screen and (max-width: 1000px) {
  .formBox .itemBox ul {
    flex-direction: column;
  }
  .formBox .itemBox ul li {
    width: 100%;
  }
}

.pageBtnBox {
  padding: 0;
  border: none;
}

.okPage .mainBox {
  padding: 10% 0;
}
.okPage .unitTitleBox .title {
  text-align: center;
}
.okPage .unitTitleBox .title::before {
  left: 50%;
  transform: translateX(-50%);
}
.okPage .subTitle {
  text-align: center;
  color: #279CF2;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .okPage .subTitle {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .okPage .subTitle {
    font-size: 1.25rem;
  }
}
.okPage .info {
  text-align: center;
  font-size: 1.125rem;
}/*# sourceMappingURL=inquiry.css.map */