.zzicgo-base-wrap{
  position: absolute;
  margin: 0;
  padding: 0;

  width: 100vw;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  background-color: #99d3ed;
}
 
.zzicgo-container {
  position: relative;
  z-index: 10;

  width: 62%;
  min-width: 1192px;
  height: 70%;
  min-height: 664px;

  margin-top: 5%;

  display: flex;
  justify-content: center;
  align-items: center;

  background-color: white;

  border-radius: 30px;
}

.zzicgo-container-airplane{
  position: absolute;
  top: -115px;
  right: 0;
}

/* Header CSS Start */
.header {
  width: 100%;
  height: 31%;
  position: absolute;
  top: -20%;
}

.book-cover-info {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  line-height: 1.3;
}

.cover-img-wrap {
  height: 80%;
  aspect-ratio: 1 / 1;
  padding: 1%;
  border-radius: 15%;
  border: 0.7vh solid #83cce8;
  background-color: white;

  box-shadow: 0px 5px 8px 0px #8080809c;
}

.book-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 이미지를 컨테이너에 맞게 자릅니다 */
  border-radius: 20%;

  box-shadow: 0px 3px 8px 0px #8080809c;
}

.title {
  font-family: "pretendard";
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: black;

  text-shadow: 0px 4px 5px #80808080;
}
/* Header CSS End */

/* Option Button List CSS Start */
.link-button-list-wrap {
  position: absolute;
  z-index: 20;
  border: 0;
}


.link-button {
  border: none;
  border-radius: 50%;
  padding: 0;
}
/* Option Button List CSS End */

img{
	-webkit-user-drag: none; /* Safari and Chrome */
	user-select: none; /* Disable text selection */
	-webkit-user-select: none; /* Safari and Chrome */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
}


/* zzicgo mission CSS Start*/

.upload-image-box {
  position: relative;
  border: 0.5vh dashed #99d3ed;

  width: 35%;
  min-width: 330px;
  height: 70%;

  border-radius: 30px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.upload-image-content-wrap {
  /* width: 100%; */
  width: 80%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  
  gap: 5%;
}

.upload-box-title {
  font-family: 'NanumSquareRoundOTF';

  position: absolute;
  top: -26px;

  padding: 3px 25px;
  border-radius: 35px;

  text-align: center;
  color: white;
  font-size: 1.4rem;
  font-weight: bold;

  line-height: 1.74;
}

.upload-box-title.myimage-title {
  background-color: #80c6de;
}

.upload-box-title.feedback-title {
  background-color: #163777;
}

.upload-image-content {
  width: 90%;
  max-height: 90%;

  border-radius: 20px;
}

.upload-image-feedback-box {
  position: relative;
  border: 0.5vh dashed #99d3ed;

  /* width: 50%; */
  width: 90%;
  height: 70%;

  border-radius: 30px;
}


.feedback-content-wrap {
  max-width: 95%;
  max-height: 90%;
  overflow-y: scroll;
}

.feedback-info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.feedback-info-box.off {
  display: none;
}
.caution-text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
}
.select-book-info {
  font-size: 1.6rem;
  color: #163777;
}

.submit-button {
  border: none;
  border-radius: 30px;
  padding: 5px 20px;
  background-color: #2d4577;

  font-size: 1.6rem;
  font-weight: bold;
  color: white;

  display: flex;
  align-items: center;
  gap: 10px;
}

.submit-button:hover {
  background-color: #386ed5;
}

.submit-button > img {
  width: 40px;
}

.loading-box {
  display: none;
}

.loading-box.on {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  font-size: 1.4rem;
  font-weight: bold;
  color: black;
}

.loading-box .submit-button {
  display: none;
}

.loading-box .submit-button.on {
  display: flex;
}

.feeback-text-box {
  color: black;
}
/* zzicgo mission CSS End*/

/* Option Button List CSS Start */

.link-button-list-wrap {
  bottom: -23px;
}
/* Option Button List CSS End */

/* Mobile */
.mobile{
  display: none;
}

@media only screen and (max-width: 1192px) {
  .header{
    /* height: 25%;
    top: -15%; */
    /* height: fit-content; */
    top: -12%;
  }


  /* mobile display Start */

  .non-mobile{
    display: none !important;
  }
  .mobile{
    display: block;
  }

  /* mobile display End */

  .zzicgo-base-wrap{
    align-items: start;
  }

  .container{
    margin-top: 0;
  }


  .content-box{
    width: 95%;
  }

  .zzicgo-container{
    width: 95%;
    height: 80%;
    margin-top: 11%;
    min-width: auto;
    min-height: auto;
  }

  .cover-img-wrap{
    width: 105px;
    height: 105px;
    border-radius: 15px;
    padding: 5px;
  }
}

@media only screen and (max-width: 773px) {

  .title {
    font-size: 1rem !important;
  }

  .zzicgo-container{
    margin-top: 15%;
    padding: 35px 0;
  }


  .upload-image-content-wrap{
    flex-direction: column;
    justify-content: start;
    padding-top: 10%;
    gap: 75px;
    overflow-y: scroll;
  }

  .upload-image-box{
    width: 60%;
    min-width: 330px;
    /* height: 85%;
    min-height: 80%; */

    height: fit-content;
    min-height: 100%;
  }

  *::-webkit-scrollbar {
    width: 5px;
  }

  .cover-img-wrap{
    width: 115px;
    height: 115px;
    border-radius: 15px;
    padding: 5px;
  }
}


@media only screen and (max-width: 500px) {

  .header{
    top: -65px;
  }


  .book-cover-img {
    border-radius: 10px;
  }

    
  .cover-img-wrap{
    width: 100px;
    height: 100px;
    border-radius: 15px;
    padding: 5px;
  }

  
  .upload-image-content-wrap {
    width: 100%;
  }

}

@media only screen and (max-height: 1024px) {
  /* .header {
    top: -10%;
  } */

  /* .title{
    font-size: 1rem !important;
  } */
}

@media only screen and (max-height: 800px) {
  .zzicgo-container{
    height: 80%;
    min-height: auto;
  }
  
}