.inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.inner__tp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0 5rem;
}
.inner__tp .tp__left {
  display: flex;
  gap: 3rem;
}
.inner__tp .tp__left a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background-color: var(--white);
  border-radius: 50%;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, .3);
}
.inner__tp .tp__left a i {
  font-size: 3rem;
}
.inner__tp .tp__right .logo {
  width: 60px;
}
.inner__mid h2 {
  margin-bottom: 4rem;
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
.inner__mid h2 span {
  color: rgb(13, 173, 194);
}
.inner__mid form {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 500px;
  margin: 0 auto 5rem;
}
.inner__mid form input {
  font-size: 2rem;
  font-weight: 700;
  color: rgb(13, 173, 194);
}
.inner__mid form input:focus {
  border: 2px solid rgb(13, 173, 194);
}
.inner__mid form button {
  display: block;
  width: 150px;
  margin: 0 auto;
  padding: 2rem;
  border: 2px solid #000;
  border-radius: 8px;
  background-color: rgb(13, 173, 194);
  font-weight: 700;
  box-shadow: 3px 3px 5px rgba(0,0,0,.5);
  cursor: pointer;
}

.result__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 5rem;
}
.result__contents {
  width: calc((100% - 9rem)/4);
}
.result__contents .tp__img {
  margin-bottom: 2rem;
}
.result__contents .bt__name {
  font-weight: 700;
  word-break: keep-all;
  line-height: 1.2;
}

.modal {
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,.2);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 10;
}
.modal.open {
  display: block;
}
.modal__inner {
  width: 80%;
  max-width: 1000px;
  padding: 5rem 3rem 3rem;
  border-radius: 15px;
  box-shadow: 3px 5px 5px rgba(0, 0, 0, .5);
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal__close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--white);
  font-size: 2rem;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, .5);
  position: absolute;
  top: -18px;
  right: 15px;
  cursor: pointer;
}
.modal__inner .modal__tp {
  display: flex;
  gap: 3rem;
  line-height: 1.3;
  margin-bottom: 2rem;
}
.modal__inner .modal__tp .tp__img {
  width: 25%;
  max-width: 200px;
  min-width: 130px;
}
.modal__inner .modal__tp .tp__txt {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  /* justify-content: space-between; */
}
.modal__inner .modal__tp .tp__txt .txt__tp {
  font-size: 1.8rem;
  font-weight: 700;
  word-break: keep-all;
}
.modal__inner .modal__mid .tp__table {
  width: 100%;
  margin-bottom: 2rem;
  text-align: center;
}
.modal__inner .modal__mid .tp__table table {
  width: 100%;
}
.modal__inner .modal__mid .tp__table th {
  width: 33%;
  font-weight: 400;
}
.modal__inner .modal__mid .tp__table th,
.modal__inner .modal__mid .tp__table td {
  padding: 1rem 0;
  border-top: 2px solid #000;
}
.modal__inner .modal__mid .tp__table td {
  border-bottom: 2px solid #000;
}
.modal__inner .modal__mid .tp__table td:nth-child(2) {
  font-weight: 400;
}
.modal__inner .modal__mid .tp__table td.active {
  color: rgb(13, 173, 194);
}
.modal__inner .modal__mid .sel__inner .tp__txt {
  margin-bottom: 1rem;
  font-weight: 500;
}
.modal__inner .modal__mid .sel__inner .input__radio {
  display: flex;
  gap: 5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
.modal__inner .modal__mid .sel__inner .input__radio > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal__inner .modal__mid .sel__inner .bt__txt {
  margin-bottom: 1rem;
  font-weight: 600;
  color: #ff0000;
  font-size: 1.4rem;
}
.modal__inner .modal__mid .bt__btn {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.modal__inner .modal__mid .bt__btn a {
  display: inline-block;
  width: 80%;
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 5px;
  border: 2px solid #000;
  box-shadow: 3px 3px 3px rgba(0,0,0,.3);
  background-color: #ccc;
  text-align: center;
  font-weight: 600;
}
.modal__inner .modal__mid .bt__btn a:last-child {
  background-color: rgb(89, 185, 240);
}
.modal__inner .modal__bt {
  max-height: 16rem;
  padding: 1rem;
  background-color: #ddd;
  line-height: 1.2;
  overflow-y: scroll;
  word-break: keep-all;
}

.wrap.position {
  width: 100%;
  height: 100vh;
  background-color: rgba(44, 45, 58, 0.973);
}
.wrap.position .inner__tp {
  display: block;
}
.wrap.position .inner__tp h2 {
  margin-bottom: 3rem;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--white);
}
.wrap.position .inner__mid {
  margin-bottom: 4rem;
  text-align: center;
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 1.3;
  color: var(--white);
}
.wrap.position .inner__mid .book__position {
  color: rgb(13, 173, 194);
}
.wrap.position .inner__bt {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.wrap.position .inner__bt .img__wrap {
  width: 100%;
  margin: 0 auto 2rem;
  max-width: 300px;
}

/** 도서 배송을 요청하시겠습니까? 팝업 */
.popup {
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, .3);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.popup.open {
  display: block;
}
.popup .popup__box {
  width: 40%;
  max-width: 500px;
  padding: 4rem;
  border-radius: 8px;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup .popup__box p {
  margin-bottom: 1rem;
}
.popup .popup__box p.check__txt {
  margin-top: 4rem;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
}
.popup .popup__box .btn__line {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.popup .popup__box .btn__line button {
  width: 10rem;
  padding: 1rem 0;
  border: 1px solid #000;
  border-radius: 8px;
  background-color: rgb(13, 173, 194);
  text-align: center;
  color: var(--white);
  cursor: pointer;
}

/** 도서 요청을 완료하였습니다. 팝업 */
.book-delivery-request-completed-popup {
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, .3);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.book-delivery-request-completed-popup.open {
  display: block;
}
.book-delivery-request-completed-popup .popup__box {
  width: 40%;
  max-width: 500px;
  padding: 4rem;
  border-radius: 8px;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.book-delivery-request-completed-popup .popup__box p {
  margin-bottom: 1rem;
}
.book-delivery-request-completed-popup .popup__box p.check__txt {
  margin-top: 4rem;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
}
.book-delivery-request-completed-popup .popup__box .btn__line {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.book-delivery-request-completed-popup .popup__box .btn__line button {
  width: 10rem;
  padding: 1rem 0;
  border: 1px solid #000;
  border-radius: 8px;
  background-color: rgb(13, 173, 194);
  text-align: center;
  color: var(--white);
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  .result__contents {
    width: calc((100% - 6rem)/3);
  }
  .modal__inner {
    width: 90%;
    padding: 5rem 1rem 3rem;
  }
  .modal__inner .modal__tp {
    gap: 1rem;
  }
  .modal__inner .modal__tp .tp__txt {
    gap: initial;
    justify-content: space-between;
  }  
}

@media screen and (max-width: 550px) {
  .inner__mid form {
    width: 100%;
  }
  .result__wrap {
    gap: 2rem;
  }
  .result__contents {
    width: calc((100% - 4rem)/3);
  }  
  .wrap.position .inner__tp h2 {
    margin-bottom: 0;
  }
  .wrap.position .inner__bt .img__wrap {
    max-width: 250px;
  }
}