/* 체크리스트 리스트 페이지 시작 */

.checklist_wrap {
  text-align: center;
}

.checklist_header h3 {
  font-size: 28px;
  font-weight: 800;
  color: #000000;
}

.checklist_header div {
  padding: 30px;
  background: #fcfcff;
  text-align: left;
  border-radius: 12px;
  margin: 30px 0;
}

.checklist_header div h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.checklist_header div p {
  font-size: 16px;
  line-height: 1.3;
  color: #000000;
  font-weight: 300;
}
.checklist_header div span {
  color: #7064fe;
  font-weight: 700;
}

.checklist_header a {
  background: #000000;
  color: #ffffff;
  padding: 15px 0;
  font-size: 20px;
  font-weight: 800;
  width: 100%;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.checklist_header a img {
  margin-right: 10px;
}

.checklist_header a span {
  background: #7064fe;
  padding: 6px 15px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  margin-left: 10px;
}

/* 리스트 카드 전체 디자인 시작 */

.checklist_body {
  margin-top: 50px;
  text-align: left;
}

.checklist_body h1 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
}

.checklist_body .checklist_card > li {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  align-items: flex-start;
  padding: 40px 30px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #a6a6b3;
  margin-bottom: 30px;
}

.checklist_body .checklist_card > li:last-child {
  margin-bottom: 0;
}

.checklist_body .list_text {
  width: calc(100% - 320px);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  min-height: 300px;
}

.checklist_body .list_day {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.checklist_body .checklist_EX .list_day div img {
  opacity: 0.3;
  cursor: default;
}

.checklist_body .list_day h4 {
  font-size: 20px;
  color: #8b8b9b;
  font-weight: 300;
}

.checklist_body .list_day .list_btn_pc {
  display: flex;
  align-items: center;
}

.checklist_body .list_day div img {
  margin-left: 14px;
  cursor: pointer;
}
.checklist_body .list_day div img:first-child {
  margin-left: 0;
}

.checklist_body .list_day div img:first-child {
  width: 27px;
}
.checklist_body .list_day div img:nth-child(2) {
  width: 30px;
}
.checklist_body .list_day div img:last-child {
  width: 32px;
}

.checklist_body .list_title {
  margin: 15px 0 25px;
}
.checklist_body .list_title h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 8px;
}

.checklist_body .list_title p {
  font-size: 20px;
  color: #8b8b9b;
  line-height: 1.3;
  font-weight: 300;
}

.checklist_body .list_score {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.checklist_body .list_score ul {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-direction: row;
}

.checklist_body .list_score ul li {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  height: 130px;
  width: 100%;
  border: none;
  text-align: center;
  background: #f1efff;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.checklist_body .list_score ul li::after {
  display: block;
  content: "";
  background-image: url(../images/checklist/list_icon1.svg);
  background-repeat: no-repeat;
  width: 110px;
  height: 110px;
  position: absolute;
  top: -10px;
  right: -10px;
}

.checklist_body .list_score ul li:nth-child(2):after {
  background-image: url(../images/checklist/list_icon2.svg);
  right: -25px;
}

.checklist_body .list_score ul li:nth-child(3):after {
  background-image: url(../images/checklist/list_icon3.svg);
  right: -40px;
}

.checklist_body .list_score ul li h3 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #000000;
}

.checklist_body .list_score ul li p {
  font-size: 20px;
  font-weight: 700;
  color: #7064fe;
}

.checklist_body .list_score ul li span {
  font-size: 38px;
}

.checklist_body .list_score ul .lower {
  background: #fff3f3;
}

.checklist_body .list_score ul .lower p {
  color: #f65858;
}

.checklist_body .list_score ul .middle {
  background: #ecf4ff;
}

.checklist_body .list_score ul .middle p {
  color: #0d6efd;
}

.checklist_body .list_score ul .upper {
  background: #f1efff;
}
.checklist_body .list_score ul .upper p {
  color: #7064fe;
}

.checklist_body .list_score .score_none {
  background: #f3f3f5;
  color: #000000;
  font-size: 20px;
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  padding: 50px 0;
  border-radius: 10px;
}

.checklist_body .list_score button {
  width: 100%;
  display: inline-block;
  background: #7064fe;
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  border-radius: 5px;
  padding: 15px;
  text-align: center;
  margin-bottom: 10px;
}

.checklist_body .list_score > div {
  width: calc(100% - 320px);
}

.checklist_body .list_score > div:last-child {
  max-width: 300px;
  text-align: center;
}

.checklist_body .list_score button:last-child {
  background: #000000;
  margin-bottom: 0;
}

.checklist_body ul li .list_img {
  max-width: 300px;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
  background: #f3f3f5;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.checklist_body ul li .list_img img {
  width: 100%;
  height: 100%;
}

/* 리스트 카드 전체 디자인 끝 */

/* 마이체크리스트 디자인 시작 */

.mychecklist_wrap {
  margin-top: 80px;
}

.checklist_none_wrap {
  background: #f7f7f8;
  padding: 100px 0;
  border-radius: 10px;
  margin-bottom: 30px;
}

.checklist_none_wrap p {
  font-size: 20px;
  line-height: 1.3;
  color: #000000;
  font-weight: 600;
  text-align: center;
}

.list_card_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pop_menu_wrap .pop_menu {
  display: none;
}

.pop_menu_wrap .pop_menu.menu--open {
  display: block;
}

.pop_menu_wrap {
  position: relative;
}

.list_sort_menu .btn_sort_menu {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  font-size: 12px;
  color: #41414c;
}

.list_sort_menu .btn_sort_menu:after {
  content: "";
  width: 9px;
  height: 5px;
  background: url("../images/common_sub/ico_sort_menu_arrow.png") no-repeat 0 0 /
    100% 100%;
  transform: rotate(180deg);
}

.list_sort_menu .btn_sort_menu.active:after {
  transform: rotate(0);
}

.pop_menu_wrap .pop_menu,
.pop_menu_boxshadow {
  position: absolute;
  margin-top: 8px;
  min-width: 150px;
  max-height: 346px;
  padding: 8px 16px;
  background-color: #fff;
  background: #ffffff;
  border: 1px solid #efeff2;
  box-shadow: 0px 0px 40px rgba(52, 52, 65, 0.08);
  border-radius: 12px;
  z-index: 10;
}

.pop_menu_wrap .pop_menu.pos-r {
  right: 0;
}

.pop_menu .filter_menu li button {
  align-items: center;
  padding: 10px 0;
  text-align: left;
  font-size: 16px;
  white-space: nowrap;
}

.pop_menu .filter_menu li button:hover,
.pop_menu .filter_menu li.active > button {
  font-weight: 700;
  color: #7064fe;
}

@media (max-width: 1199px) {
  .checklist_body .list_score > div {
    width: calc(100% - 30%);
  }

  .checklist_body .list_score > div:last-child {
    width: 25%;
  }
}

@media (max-width: 1099px) {
  .checklist_body .list_score > div {
    width: calc(100% - 32%);
  }

  .checklist_body .list_score > div:last-child {
    width: 29%;
  }
}

@media (max-width: 769px) {
  .checklist_header h3 {
    font-size: 1.8rem;
  }
  .checklist_header div {
    padding: 20px;
    margin: 20px 0;
  }
  .checklist_header div h4 {
    font-size: 1.2rem;
  }

  .checklist_header div p {
    font-size: 1rem;
  }

  .checklist_header a {
    font-size: 1.2rem;
  }
  .checklist_header a span {
    font-size: 1rem;
    padding: 4px 10px;
  }

  .checklist_body h1 {
    font-size: 1.6rem;
  }
  .checklist_none_wrap {
    padding: 70px 0;
  }
  .checklist_none_wrap p {
    font-size: 1.2rem;
  }

  .checklist_body .checklist_card {
    gap: 20px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .checklist_body .checklist_card > li {
    width: 48%;
    gap: 15px;
    padding: 15px;
    flex-direction: column-reverse;
    justify-content: flex-end;
    margin-bottom: 0;
  }

  .checklist_body .checklist_card > li > div {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .checklist_body ul li .list_img_none {
    padding: 15vw 0;
  }
  .checklist_body .list_day h4 {
    font-size: 1rem;
  }

  .checklist_body .list_day div img {
    margin-left: 8px;
  }

  .checklist_body .list_day div img:first-child {
    width: 20px;
  }

  .checklist_body .list_day div img:nth-child(2) {
    width: 22px;
  }
  .checklist_body .list_day div img:last-child {
    width: 24px;
  }
  .checklist_body .list_title {
    margin: 10px 0;
  }

  .checklist_body .list_title h3 {
    font-size: 1.2rem;
  }

  .checklist_body .list_title p {
    font-size: 0.95rem;
  }

  .checklist_body .list_score {
    flex-direction: column;
  }
  .checklist_body .list_score > div {
    width: 100%;
  }

  .checklist_body .list_score > div:last-child {
    width: 100%;
    margin-top: 15px;
  }

  .checklist_body .list_score button {
    font-size: 0.9rem;
    padding: 15px 0;
  }

  .checklist_body .list_score .score_none {
    font-size: 0.9rem;
    padding: 20px 0;
  }
  .checklist_body .list_score ul {
    width: auto;
    /* overflow-x: scroll; */
    white-space: nowrap;
    gap: 10px;
  }

  .checklist_body .list_score ul li {
    width: 31%;
    padding: 20px 0;
    height: auto;
  }

  .checklist_body .list_score ul li h3 {
    font-size: 1rem;
  }
  .checklist_body .list_score ul li p {
    font-size: 1.2rem;
  }

  .checklist_body .list_score ul li span {
    font-size: 1.5rem;
  }
  .checklist_body .checklist_card > li:last-child {
    margin-bottom: 30px;
  }

  .checklist_body .list_score .score_none {
    padding: 30px 0;
  }

  .checklist_card .mobile_wrap .pop_menu {
    display: none;
  }

  .checklist_card .mobile_wrap .pop_menu.menu--open {
    display: block;
  }

  .checklist_card .mobile_wrap {
    position: relative;
  }

  .checklist_card .mobile_wrap {
    position: relative;
  }

  .checklist_card .mobile_wrap .btn {
    border: none;
  }

  .checklist_card .mobile_wrap .pop_menu {
    position: fixed;
    top: 0;
    left: inherit;
    right: inherit;
    bottom: 0;
    left: 0;
    width: 100% !important;
    height: 100%;
    background: rgba(10, 10, 12, 0.64);
    z-index: 9991;
  }

  .checklist_card .mobile_wrap .pop_menu {
    max-height: 100%;
  }

  .checklist_card .mobile_wrap .btn_pop_menu_close {
    position: absolute;
    top: 10%;
    right: 0;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: url("../images/common_sub/btn_pop_menu_close.svg") no-repeat
      center center / 14px 14px;
  }

  .checklist_card .mobile_wrap .pop_menu_inner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 20px 20px 0px 0px;
    padding: 24px 16px 24px 16px;
    text-align: center;
  }
  .checklist_card .mobile_wrap .pop_menu_inner p {
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 500;
    border-bottom: 1px solid #bcbeca;
    color: #000000;
  }
  .checklist_card .mobile_wrap .pop_menu_inner ul li {
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 500;
    color: #7064fe;
    border-bottom: 1px solid #bcbeca;
    cursor: pointer;
  }
  .checklist_card .mobile_wrap .pop_menu_inner ul li:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 575px) {
  .checklist_header div {
    padding: 10px;
  }
  .checklist_header h3 {
    font-size: 1.5rem;
  }

  .checklist_header div h4 {
    font-size: 1rem;
  }
  .checklist_header div p {
    font-size: 0.9rem;
  }
  .checklist_header a {
    font-size: 1rem;
  }
  .checklist_header a img {
    display: none;
  }
  .checklist_header a span {
    font-size: 0.8rem;
  }

  .checklist_body .checklist_card {
    gap: 10;
    flex-direction: column;
  }
  .checklist_body .checklist_card > li {
    width: 99%;
  }
  .checklist_body .list_score > div:last-child {
    max-width: 100%;
  }
}
/* 마이체크리스트 디자인 시작 */

/* 팝업 디자인 시작 */
.popup_wrap {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  padding: 15px;
  z-index: 9999;
  text-align: center;
  color: #000000;
}

.popup_wrap .popup_body {
  position: absolute;
  max-width: 600px;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  background: #ffffff;
  padding: 80px 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.popup_wrap .popup_body img {
  width: 130px;
}

.popup_wrap .popup_body p {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  margin: 30px 0;
}

.popup_wrap .popup_body div:last-child {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 10px;
}

.popup_wrap .popup_body a {
  width: 49%;
  background: #7064fe;
  color: #ffffff;
  text-align: center;
  border-radius: 5px;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 400;
  transition: 0.3s;
  cursor: pointer;
}

.popup_wrap .popup_body a:first-child {
  background: #ffffff;
  border: 1px solid #bcbeca;
  color: #bcbeca;
}

#login_popup_wrap .popup_body a {
  background: #333333;
  color: #ffffff;
}

#login_popup_wrap .popup_body a:first-child {
  background: #7064fe;
}

@media (max-width: 767px) {
  .popup_wrap .popup_body {
    width: 92%;
    height: auto;
    padding: 80px 30px;
  }

  .popup_wrap .popup_body h4 {
    font-size: 0.9rem;
  }

  .popup_wrap .popup_body h3 {
    font-size: 1.3rem;
  }

  .popup_wrap .popup_body p {
    font-size: 1rem;
    line-height: 1.4;
  }

  .popup_wrap .popup_body a {
    font-size: 1rem;
    width: 100%;
  }
}

.title_popup {
  text-align: left;
}

.title_popup .popup_body {
  align-items: flex-start;
  max-width: 1000px;
  padding: 80px 60px;
}

.title_popup .popup_body h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: #000000;
  width: 100%;
  position: relative;
  margin: 75px 0 40px;
}

.title_popup .popup_body h2 span {
  font-size: 60px;
  color: #7064fe;
  opacity: 0.05;
  position: absolute;
  top: -20px;
  left: 0;
}

.title_popup .popup_body p {
  background: #f8f8f8;
  padding: 45px;
  border-radius: 5px;
  line-height: 1.3;
  margin: 0;
  width: 100%;
}

.title_popup .popup_body p span {
  color: #7064fe;
  font-size: 22px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 20px;
}

@media (max-width: 1099px) {
  .title_popup .popup_body {
    width: 92%;
  }
}

@media (max-width: 767px) {
  .title_popup .popup_body {
    padding: 10vw 6vw;
  }

  .title_popup .popup_body h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin: 10vw 0 7vw;
  }

  .title_popup .popup_body h2 span {
    font-size: 4rem;
  }

  .title_popup .popup_body p {
    padding: 4vw;
  }

  .title_popup .popup_body p span {
    font-size: 1.2rem;
    margin-bottom: 1.4vw;
  }
}

@media (max-width: 575px) {
  .title_popup .popup_body h2 {
    font-size: 2.4rem;
  }

  .title_popup .popup_body h2 span {
    font-size: 3.2rem;
  }
  .popup_wrap .popup_body img {
    width: 100px;
  }
}

@media (max-width: 375px) {
  .title_popup .popup_body h2 {
    font-size: 2rem;
  }

  .title_popup .popup_body h2 span {
    font-size: 2rem;
  }

  .title_popup .popup_body p {
    font-optical-sizing: 0.9rem;
  }

  .title_popup .popup_body p span {
    font-size: 1rem;
  }
}
/* 팝업 디자인 끝 */

/* 체크리스트 Step page 시작 */

.checkstep_header h3 {
  font-size: 28px;
  font-weight: 800;
  color: #000000;
  cursor: pointer;
  text-align: center;
}

.checkstep_header .form_cnt {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 80px auto;
}

.checkstep_header .form_cnt > div {
  margin: 0;
  width: 49%;
}

.checkstep_header .form_cnt .ipt_address button {
  width: 25%;
}

.checkstep_header .form_cnt > div:last-child {
  width: 100%;
}

.checkstep_header .ipt_style {
  border: 1px solid #bcbeca;
}
.checkstep_header .ipt_style:disabled {
  background: #ffffff;
}

.checkstep_header .ipt_box .ipt_box_flex {
  margin-bottom: 12px;
}

.checkstep_header .ipt_label {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
}

.checkstep_header .ipt_label .tit {
  font-size: 20px;
}

.checkstep_header .ipt_label p {
  font-size: 16px;
  color: #000000;
  font-weight: 300;
}

.checkstep_header .ipt_form_flex {
  align-items: flex-start;
  gap: 10px;
  flex-wrap: nowrap;
}

.checkstep_header .ipt_box .btn_upload_pic,
.checkstep_header .upload_img {
  width: 170px;
  height: 170px;
  margin-left: 0;
}

.checkstep_header .ipt_box .upload_img {
  overflow: visible;
}

.checkstep_header .file_upload label,
.checkstep_header .upload_img img {
  max-width: 170px;
  width: 100%;
}

.checkstep_header .ipt_box .upload_img button {
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #000000;
  border-radius: 3px;
  color: #ffffff;
  position: absolute;
  top: 10px;
  font-size: 10px;
  font-weight: 300;
  transition: 0.3s;
}

.checkstep_header .ipt_box .upload_img .btn_img_select {
  left: 10px;
}
.checkstep_header .ipt_box .upload_img .btn_img_select:hover {
  background: #7064fe;
  border: 1px solid #7064fe;
}

#PhotoCheck {
  background: #7064fe;
  border: 1px solid #7064fe;
}

.checkstep_header .ipt_box .upload_img .btn_img_delete {
  right: 10px;
}

.checkstep_header .ipt_form_item .photo_delete {
  background: #343441;
  color: #ffffff;
  border-radius: 8px;
  font-size: 16px;
  padding: 14px 16px;
  display: inline-block;
  font-weight: 400;
  width: 170px;
  margin-top: 20px;
}

.checklist_body .radio_box label {
  border: none;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  padding: 20px 20px;
}

.checklist_body .major_check_wrap {
  display: flex;
  gap: 100px;
}

.checklist_body .major_check_wrap > div {
  width: 50%;
}

.checklist_body .major_check_wrap .ipt_form_item:not(:first-child) {
  margin: 0;
}

.checklist_body .major_check_wrap .ipt_label .tit {
  font-size: 20px;
  font-weight: 700;
}

.checklist_body .major_check_wrap .ipt_label + .ipt_box {
  margin-top: 20px;
}

.checklist_body .major_check_wrap .radio_box label:before,
.checklist_body .major_check_wrap .radio input:checked + label:before,
.checklist_body .middle_check_wrap .radio_box label:before,
.checklist_body .middle_check_wrap .radio input:checked + label:before {
  display: none;
}

.checklist_body .major_check_wrap .radio_box {
  width: 30%;
}

.checklist_body .major_check_wrap .ipt_box .ipt_box_flex_wrap {
  gap: 20px;
  flex-wrap: nowrap;
}

.checklist_body .major_check_wrap .radio_box label,
.checklist_body .middle_check_wrap .radio_box label {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
}

.checklist_body .major_check_wrap .radio_box input:checked + label {
  border: 3px solid #7064fe;
}

.checklist_body .middle_check_wrap {
  margin: 80px auto 60px;
  width: 100%;
  text-align: center;
}

.checklist_body .middle_check_wrap h3 {
  cursor: pointer;
  font-size: 26px;
  font-weight: 700;
}

.checklist_body .middle_check_wrap .ipt_box .ipt_box_flex_wrap {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  margin-top: 20px;
  gap: 20px;
}
.checklist_body .middle_check_wrap .radio_box {
  /* width: 100%; */
  max-width: 120px;
  width: 100%;
  height: 120px;
  align-items: normal;
}
.checklist_body .middle_check_wrap .radio_box label {
  border: 1px solid #dddde2;
  box-shadow: none;
  padding: 20px 20px;
  box-sizing: border-box;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
}

.checklist_body .middle_check_wrap .radio input:checked + label {
  border: 3px solid #7064fe;
}

.checklist_body .list_check_wrap .ipt_label {
  text-align: center;
  margin-bottom: 40px;
}

.checklist_body .list_check_wrap .ipt_label h3 {
  font-size: 32px;
  color: #000000;
  font-weight: 800;
}

.checklist_body .list_check_wrap .ipt_label h3 span {
  font-size: 52px;
  color: #7064fe;
}

.checklist_body .list_check_wrap .ipt_label p {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-top: 10px;
}

.checklist_body .list_check_wrap .radio_box label {
  box-shadow: none;
}

.checklist_body .list_check_wrap .radio input:checked + label {
  border: none;
  padding: 0;
  line-height: auto;
}

.checklist_body .list_check_wrap .radio_box label {
  padding: 0;
}

.checklist_body .list_check_wrap .ipt_box_flex_wrap {
  align-items: flex-start;
}
.checklist_body .list_check_wrap .ipt_box_flex_wrap > div {
  display: flex;
  width: 40%;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 25px;
}

.checklist_body .list_check_wrap .ipt_box_flex_wrap > div:last-child {
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 500;
  width: 58%;
}

.checklist_body .form_bottom_btn {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 600px;
  margin: 40px auto 0;
}
@media (max-width: 1200px) {
  .checkstep_header .ipt_form_flex {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: scroll;
  }

  .checkstep_header .upload_img img {
    width: 170px;
  }
}

@media (max-width: 767px) {
  .checkstep_header h3 {
    font-size: 1.8rem;
  }

  .checkstep_header .form_cnt {
    width: 92%;
    margin: 7vw auto;
    gap: 30px;
  }

  .checkstep_header .form_cnt > div {
    width: 100%;
  }
  .checkstep_header .ipt_label {
    flex-direction: column;
    gap: 0;
  }

  .checkstep_header .ipt_label .tit {
    font-size: 1.2rem;
  }
  .checkstep_header .ipt_label p {
    font-size: 0.9rem;
  }
  .checkstep_header .form_cnt .ipt_address button {
    font-size: 0.9rem;
  }

  .checkstep_header .ipt_form_item .photo_delete {
    width: 100%;
    font-size: 1rem;
  }

  .checklist_body {
    width: 92%;
    margin: 50px auto 0;
  }

  .checklist_body .major_check_wrap {
    gap: 20px;
    flex-wrap: wrap;
  }

  .checklist_body .major_check_wrap .ipt_label .tit {
    font-size: 1.2rem;
  }
  .checklist_body .major_check_wrap .ipt_box .ipt_box_flex_wrap {
    gap: 10px;
  }

  .checklist_body .major_check_wrap .radio_box label,
  .checklist_body .middle_check_wrap .radio_box label {
    font-size: 1rem;
    padding: 20px 0;
  }

  .checklist_body .major_check_wrap > div {
    width: 100%;
  }

  .checklist_body .middle_check_wrap .ipt_box {
    overflow-x: scroll;
  }

  .checklist_body .middle_check_wrap .ipt_box .ipt_box_flex_wrap {
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
  }

  .checklist_body .middle_check_wrap .radio input {
    display: none;
  }

  .checklist_body .middle_check_wrap .radio_box label {
    width: 120px;
    padding: 10px;
  }

  .checklist_body .list_check_wrap .ipt_box_flex_wrap {
    gap: 15px;
    margin-bottom: 20px;
  }
  .checklist_body .list_check_wrap .ipt_box_flex_wrap > div {
    width: 100%;
    margin-bottom: 0px;
    font-size: 1rem;
  }
  .radio
    input
    .checklist_body
    .list_check_wrap
    .ipt_box_flex_wrap
    > div:last-child {
    width: 100%;
  }
  .checklist_body .list_check_wrap .radio_box label {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .checkstep_header h3 {
    font-size: 1.5rem;
  }

  .checklist_body .major_check_wrap .radio_box label,
  .checklist_body .middle_check_wrap .radio_box label {
    font-size: 0.9rem;
  }

  .checklist_body .form_bottom_btn {
    margin: 40px auto 0;
    flex-direction: column;
    font-size: 1rem;
  }
}

/* 체크리스트 Step page 끝 */

/* 체크리스트 가중치 페이지 시작 */

.check_step4 .checkstep_header h5 {
  text-align: center;
  background: #f8f7ff;
  color: #000000;
  padding: 30px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.3;
  margin: 25px auto;
}

.check_step4 .checkstep_body {
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.check_step4 .checkstep_body h3 {
  width: 100%;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  margin: 50px auto 0;
}

.check_step4 .checkstep_body > div {
  width: 40%;
}

.checkstep_body .chart_numvalue_wrap ul li {
  display: flex;
  gap: 10px;
  margin-bottom: 35px;
}

.checkstep_body .chart_numvalue_wrap ul li:last-child {
  margin-bottom: 0;
}

.checkstep_body .chart_numvalue_wrap ul li div:first-child {
  width: 100px;
  height: 23px;
  background: #000000;
  border-radius: 50px;
}

.checkstep_body .chart_numvalue_wrap ul li div:last-child {
  text-align: left;
}

.checkstep_body .chart_numvalue_wrap ul li div:last-child p {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 10px;
}

.checkstep_body .chart_numvalue_wrap ul li div:last-child input {
  border: 1px solid #bcbeca;
  width: 110px;
  height: 50px;
}

.checkstep_body .chart_numvalue_wrap ul li div:last-child span {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
}

.checkstep_body .chart_numvalue_wrap ul li:first-child div:first-child {
  background: #ff5a66;
}

.checkstep_body .chart_numvalue_wrap ul li:nth-child(2) div:first-child {
  background: #2384ff;
}

.checkstep_body .chart_numvalue_wrap ul li:last-child div:first-child {
  background: #7467fd;
}

.check_step4 .form_bottom_btn {
  max-width: 600px;
  align-items: center;
  gap: 12px;
  margin: 40px auto 0;
  display: flex;
}

@media (max-width: 767px) {
  .check_step4 .checkstep_header h5 {
    font-size: 1rem;
    padding: 3vh;
  }
  .check_step4 .checkstep_body {
    gap: 70px;
  }

  .check_step4 .checkstep_body h3 {
    font-size: 1.4rem;
    margin-top: 4vh;
  }

  .check_step4 .checkstep_body > div {
    width: 100%;
  }

  .checkstep_body .chart_numvalue_wrap ul li div {
    display: flex;
  }
  .checkstep_body .chart_numvalue_wrap ul li {
    align-items: center;
    margin-bottom: 20px;
  }

  .checkstep_body .chart_numvalue_wrap ul li div:last-child {
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .checkstep_body .chart_numvalue_wrap ul li div:last-child p {
    width: 100%;
  }

  .checkstep_body .chart_numvalue_wrap ul li div:last-child p,
  .checkstep_body .chart_numvalue_wrap ul li div:last-child span {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  .check_step4 .checkstep_header h5 {
    font-size: 0.9rem;
  }
  .check_step4 .checkstep_body {
    gap: 40px;
  }

  .check_step4 .checkstep_body h3 {
    font-size: 1.2rem;
  }

  .checkstep_body .chart_numvalue_wrap ul li div:first-child {
    width: 20px;
    height: 20px;
  }

  .checkstep_body .chart_numvalue_wrap ul li {
    margin-bottom: 10px;
    gap: 5px;
  }
  .checkstep_body .chart_numvalue_wrap ul li div:last-child {
    align-items: center;
    gap: 10px;
  }

  .checkstep_body .chart_numvalue_wrap ul li div:last-child input {
    width: 60px;
    height: 40px;
  }

  .checkstep_body .chart_numvalue_wrap ul li div:last-child p,
  .checkstep_body .chart_numvalue_wrap ul li div:last-child span {
    font-size: 1rem;
  }

  .check_step4 .form_bottom_btn {
    flex-direction: column;
    font-size: 1rem;
  }
}

@media (max-width: 320px) {
  .checkstep_body .chart_numvalue_wrap ul li div:last-child {
    gap: 5px;
  }
}

/* 체크리스트 가중치 페이지 끝 */

/* 차트 관련 스타일 */
.chart_wrap {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
#myChart {
  height: 450px !important;
  width: 450px !important;
  max-width: 100%;
}

/* 반응형 차트 스타일 */
@media (max-width: 768px) {
  .chart_wrap {
    max-width: 100%;
  }
  #myChart {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
  }
}

/*이미지 업로드 관련 스타일*/
.upload_img {
  position: relative;
  width: 120px;
  height: 120px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.upload_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file_upload {
  margin-right: 10px;
}
.no-images-placeholder {
  display: none;
  width: 120px;
  height: 120px;
  background: #f5f5f5;
  border: 1px dashed #ddd;
  justify-content: center;
  align-items: center;
  color: #999;
  margin-right: 10px;
}

/* 상세 페이지 차트 디자인 */
.preview_notice {
  color: #ff6b6b;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.chart_box {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  flex-wrap: nowrap;
  padding-bottom: 15px;
}
.chart_wrap {
  width: 32%;
  min-width: 200px;
  margin-bottom: 20px;
  flex-shrink: 0;
  margin-right: 10px;
}
.chart_wrap:last-child {
  margin-right: 0;
}
.chart_wrap h3 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 16px;
}
.chart {
  position: relative;
}
.chart_center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.chart_center.lower h4 {
  color: #ff6b6b;
}
.chart_center.middle h4 {
  color: #ffa94d;
}
.chart_center.upper h4 {
  color: #69db7c;
}
.btn_wrap {
  text-align: center;
  margin: 30px 0;
}
@media (max-width: 768px) {
  .chart_wrap {
    width: 160px;
    min-width: 160px;
  }
  .chart_wrap h3 {
    font-size: 14px;
  }
  .chart_center h4 {
    font-size: 16px;
  }
  canvas {
    width: 160px !important;
    height: 160px !important;
  }
}

@media (max-width: 768px) {
  .chart_box {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  
  /* 웹킷 기반 브라우저용 스크롤바 스타일링 */
  .chart_box::-webkit-scrollbar {
    height: 4px;
  }
  
  .chart_box::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
  }
  
  .chart_box::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
  }
}
