body {
  list-style: none;
}
#list {
  padding-top: 140px;
}
#list .list_page_wrap {
  max-width: 1346px;
  margin: 0 auto;
  box-sizing: border-box;
}
#list .user_page_tit {
  font-size: 1.5em;
  margin: 20px 0 20px 0;
}

/*상세검색*/
#list .filter_wrap {
  position: sticky;
  top: calc(var(--headerH, 51px) * 100 + 1px);
  width: 100%;
  z-index: 150;
  border-radius: 0;
  background: rgba(256, 256, 256, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
  border-radius: 0 0 20px 20px;
}
html.dark #list .filter_wrap {
  background: rgba(0, 0, 0, 0.6);
}
#list .filter {
  padding: 10px 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 1346px;
  height: auto;
  border-radius: 0 0 20px 20px;
  box-sizing: border-box;
}
#list .filter::after {
  content: "";
  display: block;
  clear: both;
}
#list .filter .filter_head {
  width: 100%;
  border-bottom: 2px solid var(--secondary-color);
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
}
#list .filter .filter_head h3 {
  padding: 15px 0;
  font-weight: 600;
}
#list .filter .filter_head h3 > i {
  margin-right: 5px;
  font-size: 1em;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  color: var(--secondary-color);
}
#list .filter .filter_head i {
  margin-top: 5px;
  display: block;
  font-family: "Font Awesome 5 Free";
  font-size: 1.5em;
  cursor: pointer;
  color: var(--secondary-color);
}
#list .filter .filter_head i.fa-sort-down:before {
  content: "\f0d8";
}
#list .filter .filter_head.filterUp i.fa-sort-down:before {
  content: "\f0dd";
}
#list .filter .filter_head ~ .filter_list {
  display: block;
}
#list .filter .filter_head.filterUp ~ .filter_list {
  display: none;
}

#list .filter .filter_list .filter_btn {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--primary-color_opct1);
}

#list .filter .filter_list .filter_sch {
  margin: 10px 8px 0 0;
  width: 38px;
  min-width: 38px;
  height: 38px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4), inset 1px 1px 4px rgba(0, 0, 0, 0);
  border-radius: 50px;
  text-align: center;
  background-color: var(--primary-color);
  color: #fff;
  transition: all 0.3s;
}
#list .filter .filter_list .filter_reset {
  margin: 10px 10px 0 0;
  width: 38px;
  min-width: 38px;
  height: 38px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4), inset 1px 1px 4px rgba(0, 0, 0, 0);
  border-radius: 50px;
  text-align: center;
  background-color: #fff;
  transition: all 0.3s;
}
#list .filter .filter_list .filter_sch:hover,
#list .filter .filter_list .filter_reset:hover {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4),
    inset 1px 1px 4px rgba(0, 0, 0, 0.5);
}
#list .filter .filter_list .filter_sch i::before {
  font-weight: 600;
  font-size: 1.13em;
  color: #fff;
}
#list .filter .filter_list .filter_reset i::before {
  font-weight: 600;
  font-size: 1.13em;
  color: var(--primary-color);
}
#list .filter .filter_list .filter_chk_list {
  padding: 0 10px;
  border-bottom: 1px solid #fff;
  overflow: hidden;
}
#list .filter .filter_list li:last-child .filter_chk_list {
  border-bottom: 0;
}

#list .filter .filter_list .filter_chk_list li {
  width: auto;
  padding: 5px 0;
}
/*체크박스 커스터마이징*/
#list .filter .filter_list .chk_wrap,
#list .filter .filter_list .plus_list .chk_wrap {
  position: relative;
}
#list .filter .filter_list .chk_wrap input[type="checkbox"] {
  display: none;
}
#list .filter .filter_list .chk_wrap input[type="checkbox"] + label,
#list .filter .filter_list .plus_list .chk_wrap label {
  padding: 0 25px 0 5px;
  margin: 7px 0 5px 0;
  display: inline-block;
  cursor: pointer;
  width: auto;
  font-size: 0.85em;
  vertical-align: middle;
  background-color: transparent;
  font-family: "Font Awesome 5 free";

  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
/*수정*/
#list .filter .filter_list .chk_wrap input[type="checkbox"] + label::before,
#list .filter .filter_list .plus_list .chk_wrap label::before {
  content: "\f00c";
  font-size: 10px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  color: var(--primary-color);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
#list
  .filter
  .filter_list
  .chk_wrap
  input[type="checkbox"]:checked
  + label::before,
#list .filter .filter_list .plus_list .chk_wrap.checked label::before {
  opacity: 1 !important;
}
#list .filter .filter_list .chk_wrap input[type="checkbox"] + label span,
#list .filter .filter_list .plus_list .chk_wrap label span {
  display: inline-block;
  font-family: "pretendard";
  font-size: 1.1em;
  font-weight: 500;
  color: #424242;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: translateX(-13px);
  -moz-transform: translateX(-13px);
  -ms-transform: translateX(-13px);
  -o-transform: translateX(-13px);
  transform: translateX(-13px);
}
#list
  .filter
  .filter_list
  .chk_wrap
  input[type="checkbox"]:checked
  + label
  span,
#list .filter .filter_list .plus_list .chk_wrap.checked label span {
  color: var(--primary-color);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
#list .filter .filter_list .chk_wrap input[type="checkbox"] + label span:hover,
#list .filter .filter_list .plus_list .chk_wrap label span:hover {
  color: var(--primary-color);
}

/*

#list .filter .filter_list .chk_wrap input[type="checkbox"] + label {
    margin: 5px 0;
    display: inline-block;
    cursor: pointer;
    width: 13px;
    height: 13px;
    text-indent: 20px;
    font-size: 0.85em;
    vertical-align: middle;
    background-color: #fff;

    
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#list .filter .filter_list .chk_wrap input[type="checkbox"]:checked + label {
    font-family: "Font Awesome 5 free";
    background-color: var(--point_color);
    border: 1px solid var(--point_color);
}
#list .filter .filter_list .chk_wrap input[type="checkbox"]:checked + label::before {
    position: absolute;
    content: "\f00c";
    left: -18px;
    top: 7px;
    font-size: 10px;
    color: #fff;
} 
#list .filter .filter_list .chk_wrap span {
    display: inline-block;
    font-size: 0.85em;
}
*/

#filter_ul_wrap .filter_tit {
  padding: 12px 15px 9px 0;
  float: left;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 140px;
  font-size: 0.88em;
  font-weight: 700;
  box-sizing: border-box;
  transition: all 0.3s;
}
#filter_ul_wrap .filter_tit button {
  font-size: 0.8em;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.6);
}
#filter_ul_wrap .filter_tit button i {
  margin-right: 3px;
  font-family: "Font Awesome 5 Free";
  opacity: 0.5;
}
#filter_ul_wrap .filter_tit button i:before {
  content: "\f0fe";
}

/*추가 플러스 리스트*/
#list .filter .filter_list .plus_list {
  padding-left: 10px;
  width: calc(100% + 20px) !important;
  display: none;
  border-bottom: none !important;
  box-sizing: border-box;
  margin-left: -10px;
}
#filter_ul_wrap .plus_list > li {
  float: left;
}

/*리스트 상단 배열 메뉴*/
#list .list_contents_wrap {
  display: relative;
  margin-top: 30px;
  width: 100%;
  height: 100%;
}
#list .list_contents_wrap:after {
  content: "";
  display: block;
  clear: both;
}
.list_contents_wrap .list_top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-weight: 600;
}
.list_contents_wrap .list_top label {
  margin-top: 10px;
  font-size: 0.85em;
}
.list_contents_wrap .list_top label span {
  font-size: 1.13em;
  color: var(--primary-color);
}
.list_contents_wrap .list_top .array_menu li {
  position: relative;
  display: inline-block;
  padding: 4px 10px;
  cursor: pointer;
}
.list_contents_wrap .list_top .array_menu li::before {
  content: "";
  position: absolute;
  display: block;
  left: -3px;
  top: 12px;
  width: 1px;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.15);
}
.list_contents_wrap .list_top .array_menu li:first-child::before {
  display: none;
}
.list_contents_wrap .list_top .array_menu li span {
  display: block;
  line-height: 2em;
  font-size: 0.825em;
}
.list_contents_wrap .list_top .array_menu li:hover span,
.list_contents_wrap .list_top .array_menu li.on span {
  color: var(--primary-color);
}

.list_contents_wrap .m_list_top {
  display: none;
  position: fixed;
  left: 0;
  top: 56px;
  width: 100%;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.15);
  z-index: 49;
  transition: top 0.3s;
}
.list_contents_wrap .m_list_top label {
  float: left;
  margin-left: 40px;
  margin-top: 10px;
  font-size: 0.85em;
}
.list_contents_wrap .m_list_top .m_list_top_inner {
  max-width: 1346px;
  margin: 0 auto;
}
.list_contents_wrap .m_list_top label span {
  font-size: 1.13em;
  color: var(--primary-color);
}
.list_contents_wrap .m_list_top .array_menu {
  float: right;
  margin-right: 30px;
}
.list_contents_wrap .m_list_top .array_menu li {
  position: relative;
  display: inline-block;
  padding: 4px 10px;
  cursor: pointer;
}
.list_contents_wrap .m_list_top .array_menu li::before {
  content: "";
  position: absolute;
  display: block;
  left: -3px;
  top: 12px;
  width: 1px;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.15);
}
.list_contents_wrap .m_list_top .array_menu li:first-child::before {
  display: none;
}
.list_contents_wrap .m_list_top .array_menu li:last-child::before {
  display: none;
}
.list_contents_wrap .m_list_top .array_menu li span {
  display: block;
  line-height: 2em;
  font-size: 0.825em;
}
.list_contents_wrap .m_list_top .array_menu li:hover span,
.list_contents_wrap .m_list_top .array_menu li.on span {
  color: var(--primary-color);
}
.list_contents_wrap .m_list_top .array_menu li i {
  margin-top: 5px;
  color: var(--primary-color);
  cursor: pointer;
}

/*리스트box*/
.list_box_wrap {
  width: 100%;
}
.list_box {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  float: left;
  width: calc((100% - 21px) / 2);
  min-height: 442px;
  height: auto;
  padding: 30px 30px 30px 0;
  box-sizing: border-box;
  transition: all 0.3s;
}
.list_box_wrap ul li.list_box:nth-child(odd) {
  margin-right: 20px;
}

/*리스트 이미지*/
.list_box .list_img {
  position: relative;
  float: left;
  overflow: hidden;
  border-radius: 20px;
  box-sizing: border-box;
  cursor: pointer;
}
.list_box .list_img a {
  min-height: 50px !important;
}
.list_box .list_img .list_image {
  margin: -15%;
  width: 130%;
  object-fit: cover;
  transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
}

/*리스트 내용*/
.list_box .list_decs {
  float: left;
  width: 40%;
  box-sizing: border-box;
  transition: padding 0.3s;
}
.list_box .list_decs > label {
  display: block;
  padding-top: 5px;
  color: rgba(0, 0, 0, 0.5);
}

/*리스트 상품이름*/
.list_box .list_decs h4 {
  padding: 10px 0;
  width: 100%;
  line-height: 1.2em;
  word-break: break-word;
  font-size: 1.1em;
  font-weight: 700;
  cursor: pointer;
}

/*리스트 상품정보*/
.list_box .list_decs .list_info {
  width: 100%;
}
.list_box .list_decs .list_info .rentalcom_wrap {
  position: relative;
}
.list_box dd {
  font-size: 0.8em;
}
.list_box .list_decs .list_info dd {
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  line-height: 2em;
  font-weight: 500;
}
.list_box .list_decs .list_info dd:last-child {
  border-bottom: 0;
}
.list_box .list_decs .list_info dd span {
  font-size: 0.9em;
  cursor: pointer;
}

/*최저렌탈표 클릭시 렌탈사별 렌탈료 팝업*/
.list_box .list_decs .list_info .rentalcom_click i {
  margin-left: 2px;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.3em;
  color: var(--primary-color);
  cursor: pointer;
}
.list_box .list_decs .list_info .rentalcom_pop {
  display: none;
  position: absolute;
  left: 0;
  top: 30px;
  padding: 10px 20px;
  font-size: 1.2em;
  line-height: 1.5em;
  background-color: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  color: var(--primary-color);
  z-index: 39;
  transition: all 0.2s;
}
.list_box .list_decs .list_info .rentalcom_click > i::before {
  content: "\f0d7";
}
.list_box .list_decs .list_info .rentalcom_click.show > i::before {
  content: "\f0d8";
}
.list_box .list_decs .list_info .rentalcom_click.show .rentalcom_pop {
  display: block;
  transition: all 0.2s;
}
.list_box .list_decs .list_info .rentalcom_click:hover {
  color: var(--primary-color);
}
.list_box .list_decs .list_info .rentalcom_pop tr {
  border-bottom: 1px solid #ddd;
}
.list_box .list_decs .list_info .rentalcom_pop tr:last-child {
  border-bottom: none;
}
.list_box .list_decs .list_info .rentalcom_pop th,
.list_box .list_decs .list_info .rentalcom_pop td {
  padding: 5px;
}
.list_box .list_decs .list_info .info.col3 {
  color: #9a9a9a;
}
.list_box .list_tab {
  position: absolute;
  right: 0;
  top: 26px;
}
.list_box .user_common_btn {
  width: auto !important;
  position: absolute;
  right: 30px;
  top: 0;
}
.list_box .list_tab .share_pop {
  display: none;
  position: absolute;
  right: 0;
  top: 50px;
  padding: 15px;
  background-color: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  color: var(--primary-color);
  z-index: 320;
}
.list_box .list_tab .share_pop i.fa-times {
  position: absolute;
  right: 13px;
  top: 10px;
  font-size: 1em;
  cursor: pointer;
}
.list_box .list_tab .share_pop .sns_icon {
  margin-bottom: 20px;
  text-align: center;
}
.list_box .list_tab .sns_icon li {
  display: inline-block;
  margin: 5px;
  cursor: pointer;
}
.list_box .list_tab .sns_icon li img {
  width: 35px;
}
.list_box .list_tab .share_pop .url_copy {
  float: left;
  padding: 7px 5px;
  width: 70%;
  border: 1px solid #cecece;
  box-sizing: border-box;
}
.list_box .list_tab .share_pop .url_copy::placeholder {
  font-size: 0.6em;
}
.list_box .list_tab .share_pop button {
  float: left;
  padding: 10px 5px;
  width: 30%;
  text-align: center;
  font-size: 0.75em;
  color: #fff;
  background-color: var(--primary-color);
  box-sizing: border-box;
  vertical-align: middle;
  cursor: pointer;
}
/*리스트 상품렌탈사*/
.list_box .list_decs .list_rentalcom {
  padding: 20px 0;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.list_box .list_decs .list_rentalcom dt {
  position: relative;
  padding-right: 149px;
  display: inline-block;
}
.list_box .list_decs .list_rentalcom dt::before {
  content: "";
  position: absolute;
  right: 18px;
  top: -10px;
  width: 1px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.1);
}
.list_box .list_decs .list_rentalcom dd {
  position: relative;
  display: inline-block;
  padding-right: 50px;
}
.list_box .list_decs .list_rentalcom i {
  display: inline-block;
  font-size: 15px;
  vertical-align: middle;
  cursor: pointer;
  color: var(--primary-color);
}
.list_box .list_decs .list_rentalcom dd i:hover {
  color: #ff8860;
}

/*리스트 상품사양*/
.list_box .list_decs .list_spec {
  padding-top: 15px;
  width: 100%;
}
.list_box .list_decs .list_spec dd {
  position: relative;
  display: inline-block;
  line-height: 1.4em;
  font-weight: 600;
}
.list_box .list_decs .list_spec dd:first-child {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 0.9em;
}
.list_box .list_decs .list_spec dd.spec_info {
  display: block;
}
.list_box .list_decs .list_spec dd.spec_info > span {
  padding-top: 5px;
  text-decoration: underline;
  font-size: 1.1em;
  cursor: pointer;
}
/*view more 클릭시 상품정보 팝업*/
.list_box .list_decs .list_spec dd.spec_info ul {
  display: none;
  position: absolute;
  left: 0px;
  top: 100%;
  width: 96%;
  padding: 10px;
  background-color: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 0 10px 10px 10px;
  z-index: 39;
  transition: all 0.2s;
}
.list_box .list_decs .list_spec dd.spec_info.show ul {
  display: block;
}
.list_box .list_decs .list_spec dd.spec_info ul i {
  display: block;
  width: 100%;
  text-align: right;
  color: var(--primary-color);
  cursor: pointer;
}
.list_box .list_decs .list_spec dd.spec_info ul li {
  position: relative;
  display: inline-block;
  margin: 2.5px 2.5px 2.5px 0;
}

.list_box .list_decs .list_spec dd.spec_info ul li.view_glossary {
  color: var(--point_color);
  text-decoration: underline;
  cursor: pointer;
}

.list_box .list_decs .list_spec dd.spec_info > span:hover {
  font-weight: 800;
}

/*pc 필터로 이동 버튼*/
.filter_move {
  display: none;
  position: fixed;
  right: 10%;
  bottom: 30px;
  z-index: 350;
  transition: all 0.3s;
}
.filter_move button {
  width: 40px;
  min-width: 40px;
  height: 40px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6), inset 1px 1px 4px rgba(0, 0, 0, 0);
  border-radius: 50px;
  text-align: center;
  color: var(--point_color);
  background-color: rgba(255, 255, 255, 1);
  margin: 0 5px;
  transition: all 0.3s;
}
.filter_move button.active {
  background: var(--point_color);
  color: #fff;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0), inset 1px 1px 4px rgba(0, 0, 0, 0.3);
}
.filter_move button:hover {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0), inset 1px 1px 4px rgba(0, 0, 0, 0.3);
}
.filter_move button i {
  color: var(--point_color);
}
.filter_move button a:before {
  display: block;
  color: var(--point_color);
}
#list .list_no_result {
  display: none;
  padding: 130px 50px;
  margin: 50px auto;
  width: 100%;
  text-align: center;
  background-color: #ebebeb;
  border-radius: 20px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  transition: padding 0.3s;
}
#list .list_no_result img {
  display: inline-block;
  width: 100px;
}
#list .list_no_result p {
  font-size: 1em;
  line-height: 1.5em;
  color: rgba(0, 0, 0, 0.8);
}

#list .list_no_result .list_no_result_video {
  margin: 80px auto 30px auto;
  max-width: 900px;
  width: 100%;
  height: auto;
}
#list .list_no_result .list_no_result_video .pc {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 50px;
  transition: border-radius 0.3s;
}

@media (max-width: 1366px) {
  #list .list_page_wrap {
    width: 95%;
  }
  #list .user_common_btn .user_common_modal {
    right: 0;
    transform: none;
    left: auto;
  }
  .list_box {
    min-height: 450px;
  }
}
@media all and (max-width: 1310px) {
  .list_box .list_decs .list_info dd {
    font-size: 0.8em;
    line-height: 1.5em;
  }
}
@media all and (max-width: 1256px) {
  #list .filter .filter_list .filter_sch {
    min-width: 35px;
    width: 35px;
    height: 35px;
  }
  #list .filter .filter_list .filter_sch i::before {
    font-size: 1em;
  }
  #list .filter .filter_list .filter_reset {
    min-width: 35px;
    width: 35px;
    height: 35px;
  }
  #list .filter .filter_list .filter_reset i::before {
    font-size: 1em;
  }
}
@media all and (max-width: 1196px) {
  .list_box {
    min-height: 378px;
  }
}
@media all and (max-width: 1064px) {
  .list_box {
    width: 100%;
  }
  .list_box_wrap ul li.list_box:nth-child(odd) {
    margin-right: 0;
  }
  .list_box .list_decs {
    width: 60%;
    padding: 0 10px 0 10px;
  }
  .list_box .list_decs h4 {
    font-size: 1.3em;
  }
  .list_box .list_decs .list_info .rentalcom_pop {
    font-size: 1.04em;
  }
}
@media all and (max-width: 1022px) {
  #filter_ul_wrap .filter_tit {
    width: 130px;
  }
  .list_contents_wrap .m_list_top {
    top: 56px;
  }
}
@media all and (max-width: 1018px) {
  .list_contents_wrap .list_top .array_menu li::before {
    top: 11px;
  }
  .list_box .list_decs .list_info .rentalcom_pop {
    font-size: 1.2em;
  }
}
@media all and (max-width: 880px) {
  .list_box .list_img {
    width: 50%;
  }
  .list_box {
    min-height: 356.13px;
  }
  #list .filter .filter_list ul > li p {
    width: 15%;
  }
}
@media all and (max-width: 650px) {
  #list .user_page_tit {
    font-size: 1.2em;
  }
  #filter_ul_wrap .filter_tit {
    width: 110px;
  }
  .list_box .list_decs {
    padding: 0 0 0 0;
  }
  .list_contents_wrap .list_top .array_menu li::before {
    top: 9px;
  }
  #list .filter .filter_list .chk_wrap input[type="checkbox"] + label {
    padding-right: 20px;
  }
}
@media all and (max-width: 651px) {
  .list_contents_wrap .m_list_top {
    top: 87px;
  }
}
@media all and (max-width: 550px) {
  #list .list_no_result {
    padding: 130px 20px;
  }
  #list .list_no_result .list_no_result_video .pc {
    border-radius: 30px;
  }
}

@media all and (max-width: 542px) {
  #list .filter .filter_list > ul > li p {
    width: 20%;
  }
  .list_box .list_decs .list_info .rentalcom_pop {
    padding: 10px;
  }
  .list_box .list_tab .share_pop {
    right: 0;
  }
  .list_box .list_tab .sns_icon img {
    width: 30px;
  }
  .list_box .list_tab .url_copy {
    width: 65%;
  }
  .list_box .list_decs {
    margin-top: 0;
  }
  #list .filter .filter_list .filter_sch {
    min-width: 32px;
    width: 32px;
    height: 32px;
  }
  #list .filter .filter_list .filter_sch i::before {
    font-size: 0.9em;
  }
  #list .filter .filter_list .filter_reset {
    min-width: 32px;
    width: 32px;
    height: 32px;
  }
  #list .filter .filter_list .filter_reset i::before {
    font-size: 0.9em;
  }
}
@media all and (max-width: 540px) {
  .list_box .list_decs > label {
    font-size: 0.6em;
  }
  .list_box .list_decs > label + span {
    font-size: 0.6em;
  }
}
@media all and (max-width: 504px) {
  .list_box .list_decs > label {
    font-size: 0.6em;
  }
  .list_box .list_decs > label + span {
    font-size: 0.6em;
  }
}
@media all and (max-width: 450px) {
  #list .m_list_top label {
    margin-left: 10px;
  }
  #list .m_list_top .array_menu {
    margin-right: 10px;
  }
  #list {
    padding-bottom: 90px;
  }
  #list .filter .filter_list > ul > li p {
    width: 25%;
  }
  .list_box {
    display: block;
    padding: 30px;
  }
  .list_box .list_decs {
    width: 100%;
  }
  .list_box .list_img .list_image {
    width: 100%;
    margin: 0%;
  }
}
@media all and (max-width: 440px) {
}
@media all and (max-width: 345px) {
  #list .filter .filter_list > ul > li p {
    width: 26%;
  }
  .list_contents_wrap .m_list_top .array_menu li {
    padding: 4px 8px;
  }
}

/*관심상품 fixed 리스트*/
#like_product {
  position: relative;
}
#like_product .like_product_wrap {
  padding: 0 10px;
  position: fixed;
  left: 50%;
  max-width: 1064px;
  width: 100%;
  bottom: 0;
  height: 105px;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 20px 20px 0 0;
  box-sizing: border-box;
  z-index: 40;
  transition: all 0.5s ease;
}
#like_product .like_product_up {
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 9%;
  height: 20px;
  font-family: "Font Awesome 5 Free";
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 20px 20px 0 0;
  z-index: 40;
  transform: translateX(-50%);
  transition: all 0.5s;
  cursor: pointer;
}
#like_product .like_product_wrap.down {
  bottom: -105px;
}
#like_product .like_product_up i:before {
  content: "\f107";
}
#like_product .like_product_wrap.down .like_product_up i:before {
  content: "\f106";
}
#like_product .like_product_up {
  display: inline-block;
  font-size: 1.3em;
  font-weight: 800;
  color: var(--secondary-color);
  z-index: 45;
}
#like_product .like_product_list {
  float: left;
  width: 90%;
}
#like_product .like_list {
  width: 100%;
}
#like_product .like_list .list_img {
  position: relative;
  float: left;
  margin: 10px 5px;
  width: calc((100% - 100px) / 10);
  transition: all 0.3s;
}
#like_product .like_list .list_img img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

#like_product .like_list .del_btn {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 45;
  cursor: pointer;
}
#like_product .like_list .del_btn i {
  font-size: 0.9em;
  color: rgba(0, 0, 0, 0.6);
}
#like_product .list_btn {
  float: left;
  width: 10%;
}
#like_product .list_btn .compare_btn2 {
  margin-left: 28%;
  margin-top: 23px;
  padding: 5px 5px;
  font-size: 0.9em;
  color: #fff;
  background-color: var(--secondary-color);
  border-radius: 5px;
}
#like_product .list_btn .alldel_btn {
  margin-left: 28%;
  margin-top: 10px;
  padding: 5px 5px;
  font-size: 0.9em;
  color: #fff;
  background-color: #424242;
  border-radius: 5px;
}
#like_product .list_btn .compare_btn2:hover {
  background-color: var(--secondary-color);
}
@media all and (max-width: 1270px) {
  #like_product .like_product_wrap {
    left: 47%;
  }
}
@media all and (max-width: 1160px) {
  #like_product .like_product_wrap {
    max-width: 1000px;
    left: 46%;
    height: 95px;
  }
  #like_product .list_btn .compare_btn2 {
    margin-top: 16px;
    margin-left: 20%;
  }
  #like_product .list_btn .alldel_btn {
    margin-left: 20%;
  }
  #like_product .like_product_list {
    width: 90%;
  }
  #like_product .list_btn {
    width: 10%;
  }
}
@media all and (max-width: 1064px) {
  #like_product {
    display: none;
  }
  .filter_move {
    display: none;
  }
}

/* IE10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  a,
  button {
    background-color: transparent;
  }
  .list_box .list_decs > label + span {
    background-color: var(--primary-color);
  }
}
