
.zzicgo-container {
  justify-content: center;
  /* align-items: start; */
}

/* Content CSS Start*/
.content-wrap {
  width: 100%;
  height: 80%;
  
  margin: 26px 5px 20px 5px;

  overflow-y: scroll;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-box {
  font-family: "pretendard";
  width: 70%;
  padding-bottom: 5px;
  margin-top: 5px;

  border-bottom: 1px solid #d9d8d8;

  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
}

.content-box > :nth-child(1) {
  flex-grow: 0;
}

.content-box > :nth-child(2) {
  /* flex-grow: 1; */
  flex: 1;
}

.content-box > :nth-child(3) {
  flex-grow: 0;
}

.content-unit-box {
  min-width: 160px;

  border-radius: 20px;
  background-color: #e1e7bb;
  padding: 5px 20px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #8abc83;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.content-unit-box .unit-num{
  color: #FFFFFF;
  background-color: #EEDA80;
  line-height: 1.7;
  
  width: 8vw;
  max-width: 45px;
  aspect-ratio: 1 / 1;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.content-title-page {
  font-size: 1rem;
  font-weight: bold;
  color: black;
  text-align: start;
}

.photo-upload-btn {
  position: relative;
  z-index: 1;
  border: none;
  background-color: #e9f0f8;

  object-fit: cover;

  padding: 10px;
  border-radius: 50%;
}

.photo-upload-btn:hover {
  background-color: #c6dffc;
}

.photo-upload-btn.report-process{
  pointer-events: none;
}

.photo-upload-btn.report-process-success{
  background-color: #a9ffd2;
}

.photo-upload-btn.report-process-success:hover{
  background-color: #c6dffc;
}

/* 그라데이션 보더 스타일 */
.photo-upload-btn.report-process:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(./../../../assets/images/svg/loading/dot_loading.svg);
  background-size: 40px;
  background-repeat: no-repeat;
  background-position: center;
}

/* 애니메이션 정의 */
@keyframes rotate-border {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}


  /* report case start */
.content-unit-box.mission-complete{
  background-color: #D9D8D8;
  color: #FFFFFF;
}

.content-unit-box.mission-complete .unit-num{
  background-color: #B8B8B8;
}

.content-title-page.mission-complete{
  color: #B8B8B8;
  pointer-events: none;
  user-select: none;
}
  /* report case End */
/* Content CSS End*/

/* modal start */
.notice-modal-wrap {
  position: absolute;
  z-index: 10;

  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 100%;
}

.notice-modal{
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;

  padding: 15px 0px;
  width: 37%;
  max-width: 690px;
  height: 70%;
  min-height: fit-content;

  background-color: #163777;
  border-radius: 35px;
}

.notice-modal-btn{
  position: absolute;
  display: flex;

  right: 25px;
  top: 25px;
  padding: 10px;

  border: none;
  border-radius: 16px;
  background-color: white;
}


.notice-img-wrap{
  position: relative;
  display: flex;
  justify-content: space-around;
  gap: 20px;

  width: calc(100% - 160px);
}

.notice-img-wrap .image-wrap{
  position: relative;
  height: fit-content;
}

.notice-img-wrap .image-box-shadow{
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.notice-modal .notice-image{
  border-radius: 30px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5); /* 내부로 그림자를 추가 */
}

.notice-text-wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 90%;
  height: fit-content;
  border: 3px solid white;
  border-radius: 30px;
  padding: 30px 15px;
}

.notice-text-wrap p{
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
}

/* modal end */

/* Tablet */
@media only screen and (max-width: 1440px) {
  .notice-modal {
    width: 50%;
  }

}


/* mobile */
@media only screen and (max-width: 1192px) {
  .content-box {
    width: 95%;
  }

  .notice-modal {
    width: 70%;
    min-width: auto;
    height: 65%;
  }

  .notice-text-wrap {
    padding: 20px 10px;
  }

}

@media only screen and (max-width: 773px) {
  .container{
    margin-top: 0;
  }

  .content-box {
    width: 90%;
  }

  .content-unit-box {
    font-size: 1rem;
  }

  .content-unit-box{
    padding: 5px;
    border-radius: 10px;
  }

  .content-title-page{
    font-size: 1rem;
  }

  .notice-modal {
    width: 95%;
    padding: 45px 0;
    gap: 45px;

    border-radius: 30px;
  }

  .notice-img-wrap {
    /* height: inherit; */
    width: 80%;
    gap: 20px;
  }

  
  .notice-modal-btn {
    right: 10px;
    top: 10px;
    padding: 5px;
    scale: 0.8;    
  }
}

@media only screen and (max-width: 500px) {
  * {
    /* font-size: 0.8rem !important; */
  }
  
  .content-unit-box {
    min-width: 100px;
  }

  /* 이미지 업로드 */
  .upload-image-wrap .header {
    scale: 100%;
  }
  .upload-image-wrap {
    width: 90%;
    height: 80%;
    border-radius: 10px;
  }

  .upload-image-box{
    min-width: 90%;
    min-height: 90%;
  }

  .upload-image-content-wrap{
    height: 85%;
    overflow-y: scroll;
    justify-content: start;
    padding-top: 25px;

    -ms-overflow-style: none; /* 인터넷 익스플로러 */
    scrollbar-width: none; /* 파이어폭스 */
  }
  .upload-image-feedback-box.on{
    min-width: 90%;
    min-height: 90%;
  }

  .notice-modal {
    height: 50%;
    min-height: fit-content;

    border-radius: 15px;
  }

  /* .notice-img-wrap {
    width: 55%;
  } */

  .notice-modal-btn {
    right: 5px;
    top: 5px;
  }

  .notice-text-wrap p{
    font-size: 0.8rem;
    font-weight: normal;
  }

  /* scroll bar*/
  *::-webkit-scrollbar {
    width: 5px;
  }
}