@charset "UTF-8";

.dp-n {
  display: none;
}

.dp-b {
  display: block;
}

.m-c {
  color: #220ba6;
}

.m-bc {
  color: #220ba6;
}

.s-c {
  color: #1fadcc;
}

.s-bc {
  color: #1fadcc;
}

.red {
  color: #fc0606;
}

.blocker {
  z-index: 999999;
}

html,
body {
  /* display: flex;
  flex-direction: column;
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  overscroll-behavior-y: contain; */

  display: flex;
  flex-direction: column;
  flex: 1 auto;
  overflow-x: hidden;
  overflow-y: overlay;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.bg-blocker {
  /* display: none; */
  top: 40px;
  z-index: -1 !important;
  position: fixed;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 20px;
  box-sizing: border-box;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
}

#wrapper {
  height: 100%;
}

.map_copyright {
  display: none;
}

/* 공통 로딩페이지 */
/* 공통 로딩페이지 */
/* 공통 로딩페이지 */

/* 지도 로딩페이지 */
.loding {
  display: none;
  position: absolute;
  left: calc(50% - 200px);
  top: calc(50% - 60px);
  transform: translate(-50%, -50%);
  z-index: 999999;
}

.loding.on {
  left: 50%;
}

.loding i.xi-spinner-5 {
  animation: xi-spin 2s infinite linear;
  font-size: 45px;
  color: #220ba6;
}

/* 리스트 로딩페이지 */
.loding01 {
  display: none;
  position: absolute;
  right: 0;
  top: 215px;
  z-index: 9;
  width: 100%;
  background-color: #fff;
  height: calc(100% - 95px);
}

.makeSearch .loding01 {
  top: 240px;
}

.loding01 i.xi-spinner-5 {
  animation: xi-spin 2s infinite linear;
  font-size: 35px;
  color: #220ba6;
  display: inline-block;
  position: absolute;
  left: 45%;
  top: 45%;
  transform: translate(-50%, -50%);
}

/* 상세 로딩페이지 */
.loding02 {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 11;
  width: 100%;
  background-color: #fff;
  height: 100%;
}

.loding02 i.xi-spinner-5 {
  animation: xi-spin 2s infinite linear;
  font-size: 35px;
  color: #220ba6;
  display: inline-block;
  position: absolute;
  left: 45%;
  top: 45%;
  transform: translate(-50%, -50%);
  background-size: cover;
}

/* 지도위 커스텀  */
/* 지도위 커스텀  */
/* 지도위 커스텀  */

.map_wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.btn-my-road {
  background-color: #fff;
  border: 1px solid #010101;
  display: block;
  z-index: 100;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 150px;
  left: 10px;
  border-radius: 2px;
  text-align: center;
  line-height: 26px;
  font-size: 22px;
  padding-top: 5px;
}

.btn-my-location {
  background-color: #fff;
  border: 1px solid #010101;
  display: block;
  z-index: 100;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 116px;
  left: 10px;
  border-radius: 2px;
  text-align: center;
  line-height: 26px;
  font-size: 22px;
  padding-top: 5px;
}

.btn-my-location img {
  width: 19px;
}

.con-row {
  background: #fff;
}

/* 현재매물위치애니메이션 */
@keyframes slidein {
  0% {
    width: 120px;
    height: 120px;
  }

  50% {
    width: 110px;
    height: 110px;
  }

  100% {
    width: 120px;
    height: 120px;
  }
}

@keyframes wave01 {
  0% {
    transform: scale(1);
    transform-origin: center;
  }

  100% {
    transform: scale(1.5);
    transform-origin: center;
  }
}

@keyframes wave02 {
  0% {
    transform: scale(1);
    transform-origin: center;
    opacity: 1;
  }

  100% {
    transform: scale(3);
    transform-origin: center;
    opacity: 0;
  }
}

.location-animation01 {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 38px;
  font-size: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid;
  background: radial-gradient(#ff0600, rgba(255, 6, 0, 0.16));
  border-color: #ff0600;
  animation: slidein 2s infinite;
  z-index: 10;
}

.location-animation02 {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  color: #ff0600;
  text-align: center;
  line-height: 38px;
  font-size: 18px;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  background: #ff0600;
  border-radius: 50%;
  z-index: 10;
}

.location-animation02:before,
.location-animation02:after {
  content: "";
  position: absolute;
  background: #ff0600;
  left: 20px;
  top: 20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  animation: wave 3s infinite linear;
}

.location-animation02:after {
  opacity: 0;
  animation: wave 3s 1.5s infinite linear;
}

/* 현재매물위치 */
.current-location {
  position: absolute;
  text-align: center;
  line-height: 50px;
  z-index: 1;
  cursor: pointer;
}

.current-location .num {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: #535353;
  color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 22px;
}

.current-location:hover:before,
.current-location:hover:after {
  content: "";
  position: absolute;
  background: #ffc8003d;
  border: 1px solid #ffc600;
  left: -300px;
  top: -300px;
  transform: translate(50%, 50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  animation: wave 3s infinite linear;
  z-index: -1;
}

.current-location:hover:after {
  opacity: 0;
  animation: wave 3s 1.5s infinite linear;
  transform-origin: center;
}

.current-location .text-wrap {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: -50%;
  top: -50%;
  transform: translate(-50%, -50%);
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 5px 10px 7px;
  border-radius: 0 10px 0 0;
  width: max-content;
}

.current-location .text-wrap p {
  padding: 5px;
  line-height: 15px;
  width: 100%;
}

.current-location .text-wrap .sector {
  font-size: 13px;
  border-bottom: 1px solid #fff;
}

.current-location .text-wrap .line {
  margin: 4px 0 2px;
}

.current-location .text-wrap:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -10px;
  width: 0;
  height: 0;
  border-right: 10px solid #000;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  z-index: -1;
}

.location {
  position: absolute;
  transform: translate(-50%, -50%);
  /* background: #ffc8003d;
  border: 1px solid #ffc600; */
  width: 250px;
  height: 250px;
  border-radius: 50%;
  z-index: 1;
  transform-origin: 50% 50%;
}

.location:before {
  content: "";
  position: absolute;
  background: #ffc8003d;
  border: 1px solid #ffc600;
  left: 0;
  top: 0;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  z-index: -1;
  animation: wave01 2s infinite linear;
}

/* 현재 실제매물위치 */
.actual-location {
  position: absolute;
  text-align: center;
  line-height: 50px;
  z-index: 1;
  cursor: pointer;
}

.actual-location .icon-wrap {
  background: url(../icon/ac-store.png) center center no-repeat;
  background-size: 100%;
  width: 40px;
  height: 40px;
}

.actual-location.office .icon-wrap {
  background: url(../icon/ac-office.png) center center no-repeat;
  background-size: 100%;
  width: 40px;
  height: 40px;
}

.actual-location .text-wrap {
  position: absolute;
  background: #ae4ccf;
  color: #fff;
  top: -77px;
  text-align: center;
  left: 0;
  font-size: 14px;
  padding: 5px 10px 7px;
  border-radius: 0 10px 0 0;
  width: max-content;
  max-width: 120px;
}

.actual-location .text-wrap p {
  padding: 5px;
  line-height: 15px;
}

.actual-location .text-wrap .sector {
  border-bottom: 1px solid #fff;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.actual-location .text-wrap .line {
  margin: 4px 0 2px;
}

.actual-location .text-wrap:after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 10px;
  bottom: -10px;
  width: 0;
  height: 0;
  border-right: 10px solid #ae4ccf;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  z-index: -1;
}

/* 지도 위 동,구,시도표시 */
.map-color {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

/* 기본 동*/
.saturation {
  display: inline-block;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.map-color .saturation .mAlyNum {
  display: none;
}

.map-color .saturation span {
  display: inline-block;
  height: 30px;
  line-height: 29px;
  padding: 0 15px;
  border-radius: 30px;
  /* background: #220ba6; */
  /* background: #4831cf; */
  background: #712bff;
  color: #fff;
  white-space: nowrap;
  font-size: 14px;
  text-shadow: 0 0 2px #555;
}

.map-color .saturation .num {
  display: inline-block;
  position: absolute;
  left: auto;
  right: 3px;
  top: -11px;
  transform: translate(50%, -50%);
  min-width: 25px;
  height: 25px;
  line-height: 22px;
  border-radius: 30px;
  padding: 0 7px;
  background: #fff;
  color: #4831cf;
  border: 1px solid #4831cf;
  font-size: 12px;
  text-shadow: none;
  font-weight: 500;
}

.map-color .saturation span:hover {
  background: #fff;
  color: #4831cf;
  border: 1px solid #4831cf;
  text-shadow: none;
}

.map-color .saturation:hover span.num {
  background: #4831cf;
  color: #fff;
  text-shadow: 0 0 2px black;
}

.map-color .saturation.active span:hover {
  background: #fff;
  color: #4831cf;
  border: 1px solid #4831cf;
  text-shadow: none;
}

.map-color.active .saturation span.num {
  background: #4831cf;
  border: 1px solid #4831cf;
  color: #fff;
  text-shadow: 0 0 2px black;
}

.map-color.active .saturation span {
  background: #fff;
  color: #4831cf;
  border: 1px solid #4831cf;
  text-shadow: none;
}

/* 행정구,도,시 */
.area_name_g.gugun .saturation span {
  background: #2c5dfa;
}

.area_name_s.sido .saturation span {
  background: #f83640;
}

.area_name_g.gugun .saturation span.num {
  background: #fff;
  color: #2c5dfa;
  border-color: #2c5dfa;
}

.area_name_s.sido .saturation span.num {
  background: #fff;
  color: #f83640;
  border-color: #f83640;
}

.area_name_g.gugun .saturation:hover span {
  background: #fff;
  color: #2c5dfa;
  text-shadow: none;
  border-color: #2c5dfa;
}

.area_name_s.sido .saturation:hover span {
  background: #fff;
  color: #f83640;
  text-shadow: none;
  border-color: #f83640;
}

.area_name_g.gugun .saturation:hover span.num {
  background: #2c5dfa;
  color: #fff;
  text-shadow: 0 0 2px black;
}

.area_name_s.sido .saturation:hover span.num {
  background: #f83640;
  color: #fff;
  text-shadow: 0 0 2px black;
}

.area_name_g.gugun.active .saturation span {
  background: #fff;
  color: #2c5dfa;
  text-shadow: none;
  border-color: #2c5dfa;
}

.area_name_s.sido.active .saturation span {
  background: #fff;
  color: #f83640;
  text-shadow: none;
  border-color: #f83640;
}

.area_name_g.gugun.active .saturation span.num {
  background: #2c5dfa;
  color: #fff;
  text-shadow: 0 0 2px black;
}

.area_name_s.sido.active .saturation span.num {
  background: #f83640;
  color: #fff;
  text-shadow: 0 0 2px black;
}

/* 작은사이즈 */
.saturation.small {
  width: 30px;
  height: 30px;
  line-height: 38px;
  font-size: 18px;
}

.saturation.small:before {
  width: 100px;
  height: 100px;
}

.saturation.small:after {
  width: 70px;
  height: 70px;
}

/* 큰사이즈 */
.saturation.big {
  width: 40px;
  height: 40px;
  line-height: 38px;
  font-size: 18px;
}

.saturation.big:before {
  width: 100px;
  height: 100px;
}

.saturation.big:after {
  width: 70px;
  height: 70px;
}

/* 색표현 */
.map-color .red-saturation span,
.map-color .orange-saturation span,
.map-color .yellow-saturation span,
.map-color .green-saturation span,
.map-color .blue-saturation span {
  border: 1px solid;
}

.map-color .red-saturation span {
  background: #f83640;
  border-color: #f83640;
}

.map-color .orange-saturation span {
  background: #ff8d41;
  border-color: #ff8d41;
}

.map-color .yellow-saturation span {
  background: #ffd02b;
  border-color: #ffd02b;
}

.map-color .green-saturation span {
  background: #00c445;
  border-color: #00c445;
}

.map-color .blue-saturation span {
  background: #1fadcc;
  border-color: #1fadcc;
}

.map-color .red-saturation:hover span {
  background: #fff;
  border-color: #f83640;
  color: #f83640;
  text-shadow: none;
}

.map-color .orange-saturation:hover span {
  background: #fff;
  border-color: #ff8d41;
  color: #ff8d41;
  text-shadow: none;
}

.map-color .yellow-saturation:hover span {
  background: #fff;
  border-color: #ffd02b;
  color: #ffd02b;
  text-shadow: none;
}

.map-color .green-saturation:hover span {
  background: #fff;
  border-color: #00c445;
  color: #00c445;
  text-shadow: none;
}

.map-color .blue-saturation:hover span {
  background: #fff;
  border-color: #1fadcc;
  color: #1fadcc;
  text-shadow: none;
}

.map-color .red-saturation span.num {
  background: #fff;
  border-color: #f83640;
  color: #f83640;
  text-shadow: none;
}

.map-color .orange-saturation span.num {
  background: #fff;
  border-color: #ff8d41;
  color: #ff8d41;
  text-shadow: none;
}

.map-color .yellow-saturation span.num {
  background: #fff;
  border-color: #ffd02b;
  color: #ffd02b;
  text-shadow: none;
}

.map-color .green-saturation span.num {
  background: #fff;
  border-color: #00c445;
  color: #00c445;
  text-shadow: none;
}

.map-color .blue-saturation span.num {
  background: #fff;
  border-color: #1fadcc;
  color: #1fadcc;
  text-shadow: none;
}

.map-color .red-saturation:hover span.num {
  background: #f83640;
  color: #fff;
  text-shadow: 0 0 2px #555;
}

.map-color .orange-saturation:hover span.num {
  background: #ff8d41;
  color: #fff;
  text-shadow: 0 0 2px #555;
}

.map-color .yellow-saturation:hover span.num {
  background: #ffd02b;
  color: #fff;
  text-shadow: 0 0 2px #555;
}

.map-color .green-saturation:hover span.num {
  background: #00c445;
  color: #fff;
  text-shadow: 0 0 2px #555;
}

.map-color .blue-saturation:hover span.num {
  background: #1fadcc;
  color: #fff;
  text-shadow: 0 0 2px #555;
}

.map-color .red-saturation:hover:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: rgba(252, 6, 6, 0.4);
  border-radius: 50%;
  z-index: -1;
  border: 1px solid #fc0606;
}

.map-color .orange-saturation:hover:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: rgba(255, 120, 0, 0.4);
  border-radius: 50%;
  z-index: -1;
  border: 1px solid #ff8d41;
}

.map-color .yellow-saturation:hover:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: rgba(243, 236, 28, 0.4);
  border-radius: 50%;
  z-index: -1;
  border: 1px solid #ffd02b;
}

.map-color .green-saturation:hover:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: rgba(153, 204, 0, 0.4);
  border-radius: 50%;
  z-index: -1;
  border: 1px solid #00c445;
}

.map-color .blue-saturation:hover:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: rgba(6, 154, 252, 0.4);
  border-radius: 50%;
  z-index: -1;
  border: 1px solid #1fadcc;
}

/* 지하철표시 */
.map-color.label_t .saturation {
  display: flex;
  position: relative;
  transform: translate(-50%, -100%);
  height: 30px;
  line-height: 22px;
  padding: 3px;
  border-radius: 4px;
  background: #3ab462;
}

.map-color.label_t .saturation span {
  background: #3ab462;
  padding: 0;
  border: none;
  border-radius: 0;
  color: #333;
  padding-right: 5px;
  font-size: 13px;
  color: #fff;
  transform: none;
  position: static;
  box-shadow: none;
  height: auto;
  line-height: 23px;
}

.map-color.label_t .saturation span.icon {
  position: static;
  display: inline-block;
  background: #fff url(../icon/subway.png) center center no-repeat !important;
  width: 24px;
  height: 24px;
  vertical-align: top;
  border-radius: 3px;
  background-size: 50% !important;
  margin-right: 5px;
  border: none !important;
  background-size: 17px !important;
}

/* 명당만들기 업체위치표시 */
.company-location {
  position: absolute;
  left: 30%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #220ba6;
  border-radius: 35px;
  width: auto;
  height: 35px;
  line-height: 32px;
  padding: 0 10px 0 35px;
  cursor: pointer;
  color: #fff;
  border: 1px solid #220ba6;
  z-index: 3;
}

.company-location:hover {
  background: #fff;
  color: #220ba6;
  border: 1px solid #220ba6;
}

.company-location:hover:before {
  background: #fff;
  color: #220ba6;
  bottom: -6px;
}

.company-location:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 17px;
  width: 10px;
  height: 10px;
  background: #220ba6;
  border-bottom: 1px solid #220ba6;
  border-right: 1px solid #220ba6;
  transform: translateX(-50%), rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.company-location span {
  padding: 0;
  border: none;
  border-radius: 0;
  color: #fff;
  font-size: 13px;
  transform: none;
  position: static;
}

.company-location span.icon {
  position: absolute;
  left: 2px;
  top: 1px;
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: top;
  border-radius: 30px;
  background-size: auto;
  background-position-y: -30px;
  border: 1px solid #220ba6;
}

.company-location span.interior {
  background: #fff url(../icon/pro/map_ma01.png) center center no-repeat;
  background-position-y: -30px;
}

.company-location span.furniture {
  background: #fff url(../icon/pro/map_ma02.png) center center no-repeat;
  background-position-y: -30px;
}

.company-location span.kitchen {
  background: #fff url(../icon/pro/map_ma03.png) center center no-repeat;
  background-position-y: -30px;
}

.company-location span.sign {
  background: #fff url(../icon/pro/map_ma04.png) center center no-repeat;
  background-position-y: -30px;
}

.company-location span.print {
  background: #fff url(../icon/pro/map_ma05.png) center center no-repeat;
  background-position-y: -30px;
}

.company-location span.security {
  background: #fff url(../icon/ma016.png) center center no-repeat;
  background-size: 100%;
  background-position-y: -37px;
}

.company-location span.rental {
  background: #fff url(../icon/ma017.png) center center no-repeat;
  background-size: 100%;
  background-position-y: -37px;
}

.company-location span.etc {
  background: #fff url(../icon/ma018.png) center center no-repeat;
  background-size: 100%;
  background-position-y: -37px;
}

.company-location.active,
.company-location:hover {
  background: #fff;
  color: #220ba6;
}

.company-location.active:before,
.company-location:hover:before {
  background: #fff;
  color: #220ba6;
}

.company-location.active span,
.company-location:hover span {
  color: #220ba6;
  background: #fff;
}

.company-location.active span.interior,
.company-location:hover span.interior {
  background: #220ba6 url(../icon/pro/map_ma01.png) center center no-repeat;
  background-position-y: 0;
  left: 2px;
}

.company-location.active span.furniture,
.company-location:hover span.furniture {
  background: #220ba6 url(../icon/pro/map_ma02.png) center center no-repeat;
  background-size: 100%;
  background-position-y: 0;
}

.company-location.active span.kitchen,
.company-location:hover span.kitchen {
  background: #220ba6 url(../icon/pro/map_ma03.png) center center no-repeat;
  background-size: 100%;
  background-position-y: 0;
}

.company-location.active span.sign,
.company-location:hover span.sign {
  background: #220ba6 url(../icon/pro/map_ma04.png) center center no-repeat;
  background-size: 100%;
  background-position-y: 0;
}

.company-location.active span.print,
.company-location:hover span.print {
  background: #220ba6 url(../icon/pro/map_ma05.png) center center no-repeat;
  background-size: 100%;
  background-position-y: 0;
}

.company-location.active span.security,
.company-location:hover span.security {
  background: #220ba6 url(../icon/ma016.png) center center no-repeat;
  background-size: 100%;
  background-position-y: 0;
}

.company-location.active span.rental,
.company-location:hover span.rental {
  background: #220ba6 url(../icon/ma017.png) center center no-repeat;
  background-size: 100%;
  background-position-y: 0;
}

.company-location.active span.etc,
.company-location:hover span.etc {
  background: #220ba6 url(../icon/ma018.png) center center no-repeat;
  background-size: 100%;
  background-position-y: 0;
}

/* 관심매물위치 */
.interest-location {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #1fadcc;
  color: #fff;
  font-size: 40px;
  text-align: center;
}

.interest-location img {
  width: 18px;
  height: 23px;
  margin-top: 9px;
}

/* 명당만들기 관심매물버튼 */
.makeSearch .interest {
  display: inline-block;
  background: #fff;
  font-size: 14px;
  border: 2px solid #1fadcc;
  height: 35px;
  line-height: 35px;
  border-radius: 35px;
  margin-top: 25px;
  overflow: hidden;
  padding-left: 40px;
}

.makeSearch .interest.on {
  background: #1fadcc;
  color: #fff;
  border: 2px solid #1fadcc;
}

.makeSearch .interest .icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  text-align: center;
  position: absolute;
  top: 65px;
  left: 0;
  background-color: #fff;
  border: 2px solid #1fadcc;
}

.makeSearch .interest .icon img {
  width: 32px;
  height: 30px;
  margin-top: 10px;
  display: inline-block;
}

.makeSearch .interest .icon.on {
  background-color: #1fadcc;
  border: 2px solid #1fadcc;
}

.makeSearch .interest .icon img.on {
  display: none;
}

.makeSearch .interest .text {
  padding: 0 15px 0 15px;
  vertical-align: top;
  line-height: 30px;
  display: inline-block;
}

.makeSearch .interest .text.on {
  display: none;
}

/* 시작 */
/* 시작 */
/* 시작 */
/* header 시작 */
#header {
  position: relative;
  height: 80px;
  background-color: #fff;
  width: 100%;
  z-index: 9999999;
}

/* 명당찾기,명당만들기 */
#main.search {
  height: calc(100vh - 80px);
  overflow: hidden;
}

/* 지도 */
.map-wrap {
  position: relative;
  height: 100%;
}

.map-wrap .map {
  background: url(../img/map.png) center -80px no-repeat;
  height: 100%;
  width: 100%;
  z-index: 0;
}

/* 지도-왼쪽 */
/* 지도-왼쪽 */
/* 지도-왼쪽 */
.search .left-wrap {
  position: absolute;
  left: 55px;
  top: 25px;
  z-index: 2;
}

.search .click-box {
  position: absolute;
  left: 0;
  top: 41px;
}

/* 검색 */

.search .search-form-wrap {
  background-color: #fff;
  overflow: hidden;
  padding-top: 6px;
  width: 400px;
  height: 50px;
  line-height: 43px;
  border-radius: 15px;
  position: relative;
  z-index: 1;
  border: solid 1px #eee;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, .28);
  border-color: #eee;
  font-family: "Elice Digital Baeum", sans-serif;
}

.search .search-form-wrap.active {
  height: auto;
}

.search .search-form {
  width: calc(100% - 30px);
  height: 32px;
  line-height: 30px;
  margin: 0 15px;
  border-bottom: 1px solid #ddd;
}

.search .search-form-wrap .searchint {
  width: calc(100% - 25px);
  border: none;
  font-size: 14px;
  padding: 0px 10px;
  outline: none;
}

.search .search-form-wrap .searchint::placeholder {
  color: #aaa;
  font-family: "Elice Digital Baeum", sans-serif;
}

.search .search-form-wrap .btn-search {
  position: absolute;
  right: 25px;
  top: 12px;
  border: none;
  background-color: #fff;
}

.search .search-form-wrap .btn-search i {
  font-size: 18px;
  display: inline-block;
  color: #999;
}

.search .search-form-wrap .radio-box {
  border-radius: 8px;
  position: absolute;
  right: 6px;
  top: 10px;
}

.search .search-form-wrap .radio-box ul {
  display: flex;
}

.search .search-form-wrap .radio-box ul li {
  width: 60px;
  height: 30px;
  line-height: 28px;
  background: #f6f6f6;
  border-radius: 8px;
}

.search .search-form-wrap .radio-box ul li label {
  cursor: pointer;
  display: block;
  text-align: center;
  font-size: 11px;
  color: #555;
  position: relative;
}

.search .search-form-wrap .radio-box ul li:nth-child(2) label {
  color: #555;
}

.search .search-form-wrap .radio-box>ul>li:first-child>label:before {
  content: "";
  display: block;
  position: absolute;
  left: 60px;
  top: -1px;
  width: 60px;
  height: 30px;
  border-radius: 8px;
  background-color: #220ba6;
  transition: all 0.3s ease;
  color: #fff;
}

.search .search-form-wrap .radio-box>ul>li>input[type="radio"]:checked+label {
  color: #fff;
}

/* .search .search-form-wrap .radio-box>ul>li:nth-child(1)>input[type="radio"]:checked + label:before {color: #220ba6; left: 0; width:60px;} */
.search .search-form-wrap .radio-box>ul>li>input[type="radio"]:checked+label:before {
  left: 0;
}

.search .search-form-wrap .radio-box>ul>li label span {
  display: block;
  position: relative;
  z-index: 1;
}

.search .search-result {
  font-size: 14px;
  height: 220px;
  overflow-y: scroll;
  padding: 10px 25px;
  color: #555;
  margin-top: 10px;
}

.search .search-result::-webkit-scrollbar {
  width: 7px;
  border-radius: 10px;
}

.search .search-result::-webkit-scrollbar-track {
  background-color: #fff;
}

.search .search-result::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 5px;
}

.search .search-result::-webkit-scrollbar-thumb:hover {
  width: 15px;
}

.search .search-result::-webkit-scrollbar-thumb:active {
  width: 15px;
}

.search .search-result .item {
  cursor: pointer;
  line-height: 40px;
  list-style: none;
  position: relative;
  padding-left: 30px;
  color: #444;
}

.item.item_area:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 5px;
  top: 10px;
  width: 15px;
  height: 20px;
  background: url(../icon/maker.png) center center no-repeat;
  background-size: 100%;
}

.item.item_swy:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  background: url(../icon/item_swy.png) center center no-repeat;
  background-size: 100%;
}

.moblie-search .item.item_area:before,
.moblie-search .item.item_swy:before {
  top: 12px;
}

.kwd_list01 li:last-child {
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

/* 상권분석 버튼 */
.btnAly-wrap {
  display: none;
}

.btn-calculator {
  display: none;
}

.btn-stores01,
.btn-analysis {
  display: inline-block;
  width: 60px;
  height: 60px;
  margin: 20px 0;
  border: 1px solid #00a2c5;
  position: absolute;
  text-align: center;
  color: #00a2c5;
  font-size: 12px;
  padding-top: 6px;
  background: #fff;
}

.btn-stores01 .img-wrap,
.btn-analysis .img-wrap {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../icon/stores.png) 50% -54px no-repeat;
  background-size: 170%;
  padding: 0;
}

.btn-stores01.on,
.btn-analysis.on {
  background: #00a2c5;
}

.btn-stores01.on .img-wrap,
.btn-analysis.on .img-wrap {
  background-position-y: -4px;
  background-size: 170%;
}

.btn-analysis {
  left: 80px;
}

.btn-analysis .img-wrap {
  background: url(../icon/analysis.png) 50% -30px no-repeat;
  background-size: 170%;
}

.btn-stores01 p,
.btn-analysis p {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 500;
}

.btn-stores01.on p,
.btn-analysis.on p {
  color: #fff;
}

/* 상권분석 - 업종선택(select) */
.select-box {
  display: none;
  background-color: #fff;
  border-radius: 15px;
  border: 1px solid #bbb;
  width: 400px;
  /* margin-top: 95px; */
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, .28);
  border-color: #eee;
  padding: 20px;
  height: auto;
}

.select-box.on {
  display: block;
  opacity: 1 !important;
}

.select-box select {
  color: #777;
}

.select-box .row-01 {
  position: relative;
  margin-bottom: 20px;
}

.select-box .row-01 .btn-reset {
  position: absolute;
  right: 10px;
  top: -5px;
  background-color: #000;
  color: #fff;
  border-radius: 5px;
  height: 25px;
  line-height: 25px;
  padding: 0 10px;
  font-size: 11px;
}

.sel-ti {
  margin-bottom: 20px;
  padding: 0 0 10px 5px;
  border-bottom: 1px solid #ddd;
  color: #000;
  font-weight: 500;
}

/* 2022.05.04 */

.select-box .row-02 .int-box {
  text-align: center;
}

.select-box .row-02 .int-box input {
  width: 100%;
  padding: 15px 25px;
  margin-bottom: 10px;
  border: none;
  font-size: 14px;
  position: relative;
  background: #f7f7f7;
  outline: none;
}



.select-box .btn-wrap {
  margin: 25px 0 35px;
  text-align: center;
}

.select-box .btn-wrap a {
  display: inline-block;
  color: #220ba6;
  padding: 10px 30px;
  border: 1px solid #220ba6;
  border-radius: 50px;
  margin: 0 10px;
  font-weight: 500;
}



.select-wrap select {
  width: 100%;
  padding: 15px 25px;
  margin-bottom: 10px;
  border: none;
  font-size: 14px;
  position: relative;
  background: #f7f7f7 url("../icon/down.png") no-repeat center right 25px;
  outline: none;
  cursor: pointer;
}

.list-box .sel-ti {
  margin-bottom: 0;
}

.list-box .tbl_list {
  font-size: 15px;
}

.list-box .tbl_list tr {
  text-align: left;
  font-weight: normal;
  font-size: 15px;
}

.list-box .tbl_list thead .align-left {
  padding-left: 10px;
}

/* 상권분석 - 점포밀집도 */
/* .select-box .row-03 {
  margin-bottom: 30px;
} */

.color-list {
  overflow: hidden;
  padding: 0 25px 10px;
}

.color-list li {
  float: left;
  text-align: center;
  width: 20%;
}

.color-list li p {
  font-size: 12px;
  color: #1fadcc;
  margin-top: 8px;
}

.color-list li:nth-child(2) p {
  color: #00c445;
}

.color-list li:nth-child(3) p {
  color: #ffd02b;
}

.color-list li:nth-child(4) p {
  color: #ff8d41;
}

.color-list li:nth-child(5) p {
  color: #f83640;
}

.color-list li .circle {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #1fadcc;
}

.color-list li:nth-child(2) .circle {
  background-color: #00c445;
}

.color-list li:nth-child(3) .circle {
  background-color: #ffd02b;
}

.color-list li:nth-child(4) .circle {
  background-color: #ff8d41;
}

.color-list li:nth-child(5) .circle {
  background-color: #f83640;
}

.select-box .list-box .row-01 {
  margin-bottom: 0;
}


/* 지도-오른쪽 */
/* 지도-오른쪽 */
/* 지도-오른쪽 */
.right-slider {
  position: absolute;
  right: 0;
  top: 0;
  width: 450px;
  height: 100%;
  transition: all 0.5s ease;
  z-index: 2;
  background: #f5f5f5;
  box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
}

.right-slider.on {
  transform: translateX(100%);
  transition: all 0.5s ease;
}

.btn-slider {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #220ba6;
  border-radius: 50px;
  font-size: 40px;
  color: #fff;
}

.btn-slider a {
  display: block;
  font-size: 25px;
  color: #fff;
  line-height: 50px;
  text-align: center;
  width: 50px;
  height: 50px;
}

.btn-slider i {
  transition: all 0.7s;
  line-height: 50px;
}

.btn-slider.on i {
  transform: rotate(180deg);
  transition: all 0.7s;
}

/* 필터 상업용 부동산 분류 */
.cmresClsfc-list {
  display: flex;
  position: relative;
  height: 50px;
  line-height: 50px;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.cmresClsfc-list li {
  text-align: center;
  width: 33.3333333%;
  position: relative;
}


/* 라디오버튼 */
.cmresClsfc-list li>input[type="radio"] {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  width: 1px;
  height: 1px
}

/* 
.cmresClsfc-list li>input[type="radio"]+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  border: 1px solid #ddd;
  border-radius: 16px;
}

.cmresClsfc-list li>input[type="radio"]+label:after {
  content: '';
  position: absolute;
  left: 3px;
  top: 7px;
  width: 0;
  height: 6px;
  opacity: 0;
  border-radius: 12px;
  background: #220ba6;
}

.cmresClsfc-list li>input[type="radio"]:checked+label:after {
  width: 6px;
  opacity: 1;
} */
.cmresClsfc-list li>input[type="radio"]+label {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.cmresClsfc-list li>input[type="radio"]:checked+label {
  color: #220ba6;
}

.cmresClsfc-list li>input[type="radio"]:checked+label:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #220ba6;
}



/* 옵션필터 슬라이더 커스텀*/
.option-slider {
  background-color: #fff;
  border-radius: 3px;
  position: static;
  height: 100%;
}

.slider-wrap {
  position: relative;
  padding: 0 25px;
  height: 95px;
  background-color: #fff;
  border-radius: 20px;
}

.option-slider .swiper-slide {
  width: 12.5%;
}

.option-slider .swiper-button-prev {
  left: 10px;
}

.option-slider .swiper-button-next {
  right: 10px;
}

.option-slider .swiper-button-prev,
.option-slider .swiper-button-next {
  background-image: none;
  width: 20px;
  height: 20px;
  font-size: 13px;
  text-align: center;
  line-height: 21px;
  border-radius: 20px;
  background: #00a2c5;
  color: #fff;
  margin-top: 0;
  display: none;
  transform: translateY(-50%);
}

.option-slider .swiper-button-prev i,
.option-slider .swiper-button-next i {
  color: #fff;
}

.option-slider .swiper-button-next.swiper-button-disabled,
.option-slider .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

.option-slider .swiper-slide.sector .btn-modal .img-wrap {
  background: url(../icon/op16.png) 50% 0 no-repeat;
  background-size: 100%;
}

.option-slider .swiper-slide.tradeType .btn-modal .img-wrap {
  background: url(../icon/op15.png) 50% 0 no-repeat;
  background-size: 100%;
}

.option-slider .swiper-slide.deposit .btn-modal .img-wrap {
  background: url(../icon/op01.png) 50% 0 no-repeat;
  background-size: 100%;
}

.option-slider .swiper-slide.rent .btn-modal .img-wrap {
  background: url(../icon/op02.png) 50% 0 no-repeat;
  background-size: 100%;
}

.option-slider .swiper-slide.premium .btn-modal .img-wrap {
  background: url(../icon/op03.png) 50% 0 no-repeat;
  background-size: 100%;
}

.option-slider .swiper-slide.area .btn-modal .img-wrap {
  background: url(../icon/op04.png) 50% 0 no-repeat;
  background-size: 100%;
}

.option-slider .swiper-slide.floor .btn-modal .img-wrap {
  background: url(../icon/op06.png) 50% 0 no-repeat;
  background-size: 100%;
}

.option-slider .swiper-slide.parking .btn-modal .img-wrap {
  background: url(../icon/op07.png) 50% 0 no-repeat;
  background-size: 100%;
}

.option-slider .swiper-slide.toilet .btn-modal .img-wrap {
  background: url(../icon/op08.png) 50% 0 no-repeat;
  background-size: 100%;
}

.option-slider .swiper-slide.other .btn-modal .img-wrap {
  background: url(../icon/op09.png) 50% 0 no-repeat;
  background-size: 100%;
}


.option-slider .swiper-slide .btn-modal {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-top: 23px;
  font-size: 12px;
  text-align: center;
}

.option-slider .swiper-slide .btn-modal .img-wrap {
  display: inline-block;
  width: 34px;
  height: 34px;
  background: #fff url(../icon/op01.png) 50% 0 no-repeat;
  background-size: 100%;
  margin-bottom: 3px;
  padding-bottom: 0;
}

.option-slider .swiper-slide.on .btn-modal .img-wrap {
  background-position-y: -34px !important;
}

.option-slider .swiper-slide.on .btn-modal {
  color: #00a2c5;
}

.option-slider .swiper-slide.on .btn-modal i {
  display: none;
}

.option-slider .swiper-slide.acive .btn-modal .img-wrap {
  background-position-y: -34px !important;
}

.option-slider .swiper-slide.acive .btn-modal {
  color: #00a2c5 !important;
}

.option-slider .swiper-slide .btn-modal i,
.option-slider .swiper-slide .btn-modal .item {
  display: none;
}


/* 옵션필터-세부선택 */
.option-wrap {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  top: 165px;
  display: none;
}

.option-wrap.on {
  display: block;
}

.option-wrap li {
  /* position: relative; */
  height: 100%;
}

.option-wrap li:nth-child(8) ul li {
  width: 25%;
}

/* .option-wrap li.on .bg {
  position: absolute;
  left: 0;
  top: 5px;
  width: 100%;
  height: 1000px;
  background: #010101;
  opacity: 0.7;
} */

.option-wrap li.on .op-box {
  display: block;
}

.op-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #fff;
  font-size: 30px;
  display: none;
  font-size: 14px;
  padding: 15px 25px;
  overflow: hidden;
  text-align: center;
  border-radius: 20px 20px 0 0;
}

.op-box ul {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: initial;
  justify-content: space-between;
}

.op-box ul li {
  text-align: center;
  height: 30px;
  line-height: 30px;
}

.op-box .con {
  margin: 40px 0 0;
  position: relative;
}

.op-box .demo__body {
  margin-bottom: 20px;
}

.op-box .con02 {
  display: none;
}

.op-box .con02 .con {
  margin-top: 5px;
}

.op-box .con02 .box {
  overflow: hidden;
  margin-top: 5px;
}

.op-box .con02.on {
  display: block;
  min-height: 20px;
}

.op-box .text-ti {
  float: left;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 18px;
  margin-top: 7px;
}

/* 단위변환버튼 */
.op-box .btn-change01,
.op-box .btn-change {
  border: 1px solid #999;
  font-size: 11px;
  padding: 1px 5px;
  border-radius: 5px;
  margin-left: 5px;
}

.op-box .btn-all,
.op-box .btn-close {
  float: right;
  width: 50px;
  height: 25px;
  font-size: 12px;
  line-height: 27px;
  text-align: center;
  color: #fff;
  background: #000;
  border-radius: 25px;
  margin-left: 10px;
  position: static;
}

.op-box .btn-close {
  background: #555;
}


.op-box .btn-wrap {
  overflow: hidden;
  display: inline-block;
}

.op-box .btn-wrap a {
  float: left;
  width: 125px;
  text-align: center;
  border: 1px solid #000;
  border-radius: 10px;
  height: 40px;
  line-height: 38px;
  margin: 0 15px 10px 0;
}

.op-box .btn-wrap a:hover {
  background-color: #000;
  color: #fff;
}

.op-box .btn-wrap a.btn-complete {
  margin: 0 0 5px;
  background-color: #000;
  color: #fff;
}

.op-box .btn-wrap a.btn-complete:hover {
  background-color: #220ba6;
  border-color: #220ba6;
  color: #fff;
}

/* 라디오버튼 */
.op-box ul li>input[type="radio"] {
  vertical-align: top;
  margin-top: 9px;
}

.op-box ul li>input[type="radio"] {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  width: 1px;
  height: 1px
}

.op-box ul li>input[type="radio"]+label {
  cursor: pointer;
  position: relative;
  padding-left: 20px;
  color: #292929;
  line-height: 20px;
  display: inline-block;
  font-size: 14px;
}

.op-box ul li>input[type="radio"]+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  border: 1px solid #ddd;
  border-radius: 16px;
}

.op-box ul li>input[type="radio"]+label:after {
  content: '';
  position: absolute;
  left: 3px;
  top: 7px;
  width: 0;
  height: 6px;
  opacity: 0;
  border-radius: 12px;
  background: #220ba6;
}

.op-box ul li>input[type="radio"]:checked+label:after {
  width: 6px;
  opacity: 1;
}

.op-box ul.etcCh-list {
  border: none;
  flex-flow: wrap;
  justify-content: space-around;
}

.op-box ul.etcCh-list li {
  width: 25%;
  height: 90px;
  margin-bottom: 15px;
}

/* 업종 라디오버튼 */
.op-box .sector-con {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-start;
  margin-top: 0;
}

.op-box ul.tab-menu {
  margin-bottom: 15px;
  height: auto;
  justify-content: flex-start;
}

.op-box ul.tab-menu li {
  position: relative;
  margin-right: 25px;
  cursor: pointer;
}

.op-box ul.tab-menu li.on {
  color: #00a2c5;
}

.op-box ul.tab-menu li.on:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 1px;
  background: #00a2c5;
}



.op-box .sector-con {
  display: none;
}


.op-box .sector-con.on {
  display: flex;
}

.op-box .sector-con.sector-conAll.on {
  overflow-y: scroll;
  height: calc(100% - 230px);
  padding-right: 5px;
  margin-right: -5px;
}

.op-box .sector-con::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
}

.op-box .sector-con::-webkit-scrollbar-track {
  background-color: #fff;
}

.op-box .sector-con::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 5px;
}

.op-box .sector-con::-webkit-scrollbar-thumb:hover {
  width: 15px;
}

.op-box .sector-con::-webkit-scrollbar-thumb:active {
  width: 15px;
}


.op-box .sector-con .form-checkbox {
  width: 25%;
}

.op-box .sector-con input[type="radio"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  padding: 0;
}

.op-box .sector-con input[type="checkbox"]+label {
  width: 70px;
  height: 70px;
  display: inline-block;
  border-radius: 5px;
  background: #f7f7f7 url(../icon/etc_01.png) 50% -70px no-repeat;
  background-size: 70px;
  padding-top: 70px;
  font-size: 12px;
  color: #777;
  cursor: pointer;
  margin: 0 12px 45px;
}

.op-box .sector-con input[type="checkbox"]+label span {
  display: block;
  padding-top: 10px;
}

/* 한식 */
.op-box .sector-con input[type="checkbox"]#krnCsn011+label,
.op-box .sector-con input[type="checkbox"]#krnCsn01+label {
  background: #f7f7f7 url(../icon/sec/sec1_01.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 중식 */
.op-box .sector-con input[type="checkbox"]#chnsFood011+label,
.op-box .sector-con input[type="checkbox"]#chnsFood01+label {
  background: #f7f7f7 url(../icon/sec/sec1_02.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 일식 */
.op-box .sector-con input[type="checkbox"]#jpns_Sfd011+label,
.op-box .sector-con input[type="checkbox"]#jpns_Sfd01+label {
  background: #f7f7f7 url(../icon/sec/sec1_03.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 아시안/양식 */
.op-box .sector-con input[type="checkbox"]#asianStyle011+label,
.op-box .sector-con input[type="checkbox"]#asianStyle01+label {
  background: #f7f7f7 url(../icon/sec/sec1_04.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 분식 */
.op-box .sector-con input[type="checkbox"]#schoolFood011+label,
.op-box .sector-con input[type="checkbox"]#schoolFood01+label {
  background: #f7f7f7 url(../icon/sec/sec1_05.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 패스트푸드 */
.op-box .sector-con input[type="checkbox"]#fastFood011+label,
.op-box .sector-con input[type="checkbox"]#fastFood01+label {
  background: #f7f7f7 url(../icon/sec/sec1_06.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 치킨 */
.op-box .sector-con input[type="checkbox"]#chicken011+label,
.op-box .sector-con input[type="checkbox"]#chicken01+label {
  background: #f7f7f7 url(../icon/sec/sec1_07.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 카페/디저트 */
.op-box .sector-con input[type="checkbox"]#cafe_Dsrt011+label,
.op-box .sector-con input[type="checkbox"]#cafe_Dsrt01+label {
  background: #f7f7f7 url(../icon/sec/sec1_08.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 주점 */
.op-box .sector-con input[type="checkbox"]#pub011+label,
.op-box .sector-con input[type="checkbox"]#pub01+label {
  background: #f7f7f7 url(../icon/sec/sec1_09.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 배달 */
.op-box .sector-con input[type="checkbox"]#delivery011+label,
.op-box .sector-con input[type="checkbox"]#delivery01+label {
  background: #f7f7f7 url(../icon/sec/sec1_10.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 이/미용/세탁 */
.op-box .sector-con input[type="checkbox"]#bty_Lndry011+label,
.op-box .sector-con input[type="checkbox"]#bty_Lndry01+label {
  background: #f7f7f7 url(../icon/sec/sec2_01.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 스포츠 */
.op-box .sector-con input[type="checkbox"]#sports011+label,
.op-box .sector-con input[type="checkbox"]#sports01+label {
  background: #f7f7f7 url(../icon/sec/sec2_02.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* PC/오락 */
.op-box .sector-con input[type="checkbox"]#pc_Krk011+label,
.op-box .sector-con input[type="checkbox"]#pc_Krk01+label {
  background: #f7f7f7 url(../icon/sec/sec2_03.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 교육 */
.op-box .sector-con input[type="checkbox"]#edu011+label,
.op-box .sector-con input[type="checkbox"]#edu01+label {
  background: #f7f7f7 url(../icon/sec/sec2_04.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 약국 */
.op-box .sector-con input[type="checkbox"]#medical011+label,
.op-box .sector-con input[type="checkbox"]#medical01+label {
  background: #f7f7f7 url(../icon/sec/sec2_05.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 안경 */
.op-box .sector-con input[type="checkbox"]#glss011+label,
.op-box .sector-con input[type="checkbox"]#glss01+label {
  background: #f7f7f7 url(../icon/sec/sec2_06.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 자동차관련 */
.op-box .sector-con input[type="checkbox"]#car011+label,
.op-box .sector-con input[type="checkbox"]#car01+label {
  background: #f7f7f7 url(../icon/sec/sec2_07.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 기타서비스 */
.op-box .sector-con input[type="checkbox"]#othSrv011+label,
.op-box .sector-con input[type="checkbox"]#othSrv01+label {
  background: #f7f7f7 url(../icon/sec/sec2_08.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 반려동물 */
.op-box .sector-con input[type="checkbox"]#pet011+label,
.op-box .sector-con input[type="checkbox"]#pet01+label {
  background: #f7f7f7 url(../icon/sec/sec2_09.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 편의점 */
.op-box .sector-con input[type="checkbox"]#mrtcn_Store011+label,
.op-box .sector-con input[type="checkbox"]#mrtcn_Store01+label {
  background: #f7f7f7 url(../icon/sec/sec3_01.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 화장품 */
.op-box .sector-con input[type="checkbox"]#csmtcStore011+label,
.op-box .sector-con input[type="checkbox"]#csmtcStore01+label {
  background: #f7f7f7 url(../icon/sec/sec3_02.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 의류패션 */
.op-box .sector-con input[type="checkbox"]#fashion011+label,
.op-box .sector-con input[type="checkbox"]#fashion01+label {
  background: #f7f7f7 url(../icon/sec/sec3_03.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 농수산물 */
.op-box .sector-con input[type="checkbox"]#fishery011+label,
.op-box .sector-con input[type="checkbox"]#fishery01+label {
  background: #f7f7f7 url(../icon/sec/sec3_04.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 기타도소매 */
.op-box .sector-con input[type="checkbox"]#othwhRtl011+label,
.op-box .sector-con input[type="checkbox"]#othwhRtl01+label {
  background: #f7f7f7 url(../icon/sec/sec3_05.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 종합소매점 */
.op-box .sector-con input[type="checkbox"]#gnrlRtl011+label,
.op-box .sector-con input[type="checkbox"]#gnrlRtl01+label {
  background: #f7f7f7 url(../icon/sec/sec3_06.png) 50% -70px no-repeat;
  background-size: 70px;
}

/* 체크시 */
.op-box .sector-con input[type="checkbox"]:checked+label {
  background-color: #e8f7fa !important;
  background-position-Y: 0 !important;
  background-size: 70px;
  color: #000;
  cursor: pointer;
}







/* 체크박스 */
.op-box ul li>input[type="checkbox"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  padding: 0;
}

.op-box.optionImg ul li>input[type="checkbox"]+label {
  width: 70px;
  height: 70px;
  display: inline-block;
  border-radius: 5px;
  background: #f7f7f7 url(../icon/etc_01.png) 50% -70px no-repeat;
  background-size: 70px;
  padding-top: 70px;
  font-size: 12px;
  color: #777;
  cursor: pointer;
}

.op-box.optionImg ul li:nth-child(2)>input[type="checkbox"]+label {
  background: #f7f7f7 url(../icon/etc_02.png) 50% -70px no-repeat;
}

.op-box.optionImg ul li:nth-child(3)>input[type="checkbox"]+label {
  background: #f7f7f7 url(../icon/etc_03.png) 50% -70px no-repeat;
}

.op-box.optionImg ul li:nth-child(4)>input[type="checkbox"]+label {
  background: #f7f7f7 url(../icon/etc_04.png) 50% -70px no-repeat;
}

.op-box.optionImg ul li:nth-child(5)>input[type="checkbox"]+label {
  background: #f7f7f7 url(../icon/etc_05.png) 50% -70px no-repeat;
}

.op-box.optionImg ul li:nth-child(6)>input[type="checkbox"]+label {
  background: #f7f7f7 url(../icon/etc_06.png) 50% -70px no-repeat;
}

.op-box.optionImg ul li:nth-child(7)>input[type="checkbox"]+label {
  background: #f7f7f7 url(../icon/etc_07.png) 50% -70px no-repeat;
}

.op-box.optionImg ul li:nth-child(8)>input[type="checkbox"]+label {
  background: #f7f7f7 url(../icon/etc_08.png) 50% -70px no-repeat;
}
.op-box ul li>input[type="checkbox"]:checked+label {
  background-color: #e8f7fa;
  background-position-Y: 0;
  color: #000;
  border: 1px solid #358393FF;
  cursor: pointer;
}
.op-box.optionImg ul li>input[type="checkbox"]:checked+label {
  background-color: #e8f7fa;
  background-position-Y: 0;
  color: #000;
  border:transparent;
  cursor: pointer;
}



/* 게이지바커스텀 */
.demo__body input {
  display: none;
}

#PPT_OPTION_I {
  display: none;
}

.irs-max {
  display: none;
}

.irs-min {
  display: none;
}

#demo_12,
#demo_13,
#demo_14 {
  display: none;
}

.irs-with-grid .irs-grid {
  bottom: 5px;
}

.irs--big .irs-grid-pol.small {
  background-color: #fff;
}

.irs--big .irs-handle {
  top: 25px;
  width: 15px;
  height: 15px;
  border: 1px solid #220ba6;
  background-color: #fff;
  background: #fff;
  box-shadow: none;
  border-radius: 15px;
}

.irs--big .irs-handle.state_hover,
.irs--big .irs-handle:hover {
  border-color: #220ba6;
  background-color: #220ba6;
  background: #220ba6;
}

.irs--big .irs-bar {
  top: 31px;
  /* width: 100% !important; */
  /* left: 0 !important; */
  height: 3px;
  background-color: #220ba6;
  border: none;
  background: #220ba6;
  box-shadow: none;
}

/* .irs--big .irs-bar:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 100px !important;
  bottom: 0;
  width: 20px;
  height: 20px;
  background-color: #220ba6;
} */

.irs--big .irs-line {
  top: 30px;
  height: 3px;
  background: #ccc;
  background-color: #ccc;
  border: 1px solid #ccc;
  width: calc(100% - 16px);
  left: 8px;
}

.irs--big .irs-grid-pol {
  /* display: none; */
}

.irs--big .irs-grid-text {
  display: none;
  font-size: 12px;
  color: #000;
  font-weight: 700;
}

.irs--big .irs-from,
.irs--big .irs-to,
.irs--big .irs-single {
  display: none;
}

.irs--big .irs-min,
.irs--big .irs-max {
  line-height: 1;
  top: 0;
  padding: 2px 4px;
  color: #fff;
  text-shadow: none;
  background-color: #ccc;
  border-radius: 0px;
}

.grid {
  position: absolute;
  left: 8px;
  width: calc(100% - 16px);
  /* border: 1px solid; */
}

.grid-pol {
  position: absolute;
  left: -5px;
  bottom: 19px;
  width: 8px;
  height: 8px;
  background-color: #220ba6;
  border-radius: 8px;
}

.grid-pol.grid-pol-1 {
  left: calc(25% - 5px);
}

.grid-pol.grid-pol-2 {
  left: calc(50% - 3px);
}

.grid-pol.grid-pol-3 {
  left: calc(75% - 3px);
}

.grid-pol.grid-pol-4 {
  left:auto;
  right: -5px;
}

.grid-pol.grid-pol-0,
.grid-pol.grid-pol-4 {
  background-color: #ccc;
}

.grid-text {
  position: absolute;
  left: -10px;
  bottom: -10px;
}

.grid-text.grid-text-1 {
  left: calc(25% - 10px);
}

.grid-text.grid-text-2 {
  left: calc(50% - 17px);
}

.grid-text.grid-text-3 {
  left: calc(75% - 10px);
}

.grid-text.grid-text-4 {
  left: auto;
  right: -10px;
}

.op-area .grid-text.grid-text-2 {
  left: calc(50% - 11px);
}

.op-parking .grid-text.grid-text-0 {
  left: -5px;
}

.op-parking .grid-text.grid-text-1 {
  left: calc(25% - 5px);
}

.op-parking .grid-text.grid-text-2 {
  left: calc(50% - 2px);
}

.op-parking .grid-text.grid-text-3 {
  left: calc(75% - 2px);
}




/* 오른쪽 매물리스트 */
.right-slider>.row01 {
  position: absolute;
  width: 100%;
  z-index: 11;
  /* height: calc(100% - 160px); */
}

.right-slider>.row01 .btn-modal-all {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  z-index: 1;
}

.right-slider .bottomList-slider {
  height: 100%;
  /* box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%); */
}

.right-slider .bottomList-slider>.row02 {
  background-color: #220ba6;
  position: relative;
  top: 105px;
  z-index: 1;
  height: 50px;
  line-height: 50px;
  color: #fff;
  padding: 0 20px;
  font-size: 16px;
  border-radius: 20px 20px 0 0;
}

.right-slider .bottomList-slider>.row02>p {
  display: inline-block;
}

.makeSearch .right-slider .bottomList-slider>.row02>p {
  position: absolute;
  left: 25px;
  top: 15px;
  line-height: normal;
  font-weight: 500;
}

.btn-unit {
  display: inline-block;
  font-size: 14px;
  line-height: 12px;
  margin-left: 10px;
  color: #c5bbff;
}

.btn-unit.on {
  color: #fc0606;
}

.btn-unit i {
  font-size: 18px;
  vertical-align: middle;
  margin-top: -3px;
}

.bottomList-slider>.row02>.select_wrap {
  position: absolute;
  right: 20px;
  top: 0;
  font-size: 12px;
  cursor: pointer;
}

.bottomList-slider>.row02>ul>li {
  margin-left: 10px;
  cursor: pointer;
}

/* 추천순셀렉트 */
.select_wrap {
  display: inline-block;
  position: relative;
}

.select.on i {
  transform: rotate(-180deg);
}

.array_select {
  display: none;
  position: absolute;
  left: 0;
  top: 40px;
  width: 115px;
  height: 135px;
  font-size: 11px;
  overflow-y: scroll;
  text-align: left;
  z-index: 2;
  cursor: pointer;
  background-color: #fff;
  z-index: 10;
  color: #777;
  line-height: 20px;
  text-align: center;
  border: 1px solid #ddd;
}

.array_select {
  display: none;
  left: auto;
  right: -11px;
  width: max-content;
  height: auto;
  overflow-y: visible;
}

.array_select.active {
  display: block;
}

.array_select02 .option {
  border-bottom: 1px solid #ddd;
  padding: 0 10px;
  cursor: pointer;
}

.array_select02 .option input+label {
  cursor: pointer;
}

.array_select02 li:last-child .option {
  border-bottom: none;
}

.array_select02 .option:hover {
  color: #220ba6;
}

/* 내용 스크롤 */
.conList-slider {
  height: calc(100% - 155px);
  overflow-y: scroll;
  background-color: #fff;
  position: relative;
  top: 105px;
  border-radius: 20px 20px 0 0;
  padding-bottom: 30px;
}

.conList-slider::-webkit-scrollbar {
  width: 7px;
  border-radius: 10px;
}

.conList-slider::-webkit-scrollbar-track {
  background-color: #fff;
}

.conList-slider::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 5px;
}

.conList-slider::-webkit-scrollbar-thumb:hover {
  width: 15px;
}

.conList-slider::-webkit-scrollbar-thumb:active {
  width: 15px;
}

/* 매물 */
.con-row {
  position: relative;
  padding: 30px 25px;
}

.con-row:hover {
  background: #fbfaff;
}

.con-row:after {
  content: "";
  display: block;
  position: absolute;
  left: 20px;
  bottom: 1px;
  width: calc(100% - 40px);
  height: 1px;
  background: #ddd;
}

/* 매물 product */
.product {
  display: block;
  text-align: left;
  position: relative;
}

.con-row .product .img-wrap {
  float: left;
  width: 150px;
  height: 150px;
  padding-bottom: 0;
  border-radius: none;
  margin-right: 20px;
  border: 1px solid #eee;
}

.img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}

.img-wrap>img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 매물 사진없을때 썸네일 */
.img-wrap>img.img-thum {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
}


.product .last-row {
  float: left;
  width: 32%;
}

.product .last-row a {
  padding: 0;
}

.con-row .product .text-wrap {
  padding-top: 11px;
}

/* product-text */
.product .text-wrap .row01 {
  overflow: hidden;
  color: #220ba6;
  margin-bottom: 11px;
  font-weight: bold;
  width: calc(100% - 205px);
}

.product .text-wrap .row01 .pick {
  display: none;
}

.product .text-wrap .row01 .title {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
  font-size: 18px;
  width: 100%;
}

.product .text-wrap .row03 {
  font-size: 12px;
  background: #00a2c5;
  color: #fff;
  display: inline-block;
  margin-bottom: 11px;
  height: 20px;
  line-height: 20px;
  padding: 0 5px;
  border-radius: 20px;
}

.product .text-wrap .row02 {
  margin-bottom: 7px;
  font-size: 18px;
}

.product .text-wrap .row04 {
  font-size: 18px;
  margin-bottom: 15px;
}

.product .text-wrap .row05 {
  font-size: 12px;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
  color: #777;
}

/* 좋아요 하트 */
.product-list .btn-heart {
  position: absolute;
  top: 36px;
  right: 22px;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.product-list .btn-heart .icon-wrap {
  display: inline-block;
  width: 21px;
  height: 19px;
  background: url(../icon/heart-on.png) center 1px no-repeat;
  background-size: 100%;
}

.product-list .btn-heart.on .icon-wrap {
  background-position-y: -19px !important;
}

/* 링크연결 */
#share-link {
  display: none;
  max-width: 300px;
  padding: 30px;
}

#share-link ul {
  overflow: hidden;
}

#share-link li {
  float: left;
  width: 33.333333333%;
  text-align: center;
  font-size: 12px;
}

#share-link li .logo-label {
  display: block;
}

#share-link li .logo {
  display: inline-block;
  width: 60px;
  height: 60px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-bottom: 8px;
}

#share-link li:nth-child(1) .logo {
  background: #f4f4f4 url(../icon/link.png) center center no-repeat;
  background-size: 60%;
}

#share-link li:nth-child(2) .logo {
  background: #ffeb00 url(../icon/kakao.png) center center no-repeat;
  background-size: 55%;
}

#share-link li:nth-child(3) .logo {
  background: #00d037 url(../icon/naverLogo.png) center center no-repeat;
  background-size: 60%;
}

/* 상세페이지-공통 */
/* 상세페이지-공통 */
/* 상세페이지-공통 */
.content-view .top {
  height: 50px;
  line-height: 50px;
  background: #fff;
  border-bottom: 1px solid #e7e7e7;
}

.content-view .top.active {
  border-bottom: 1px solid #220ba6;
}

.content-view .btn-back {
  font-size: 25px;
  color: rgb(121, 61, 61);
}

.content-view .btn-back i {
  vertical-align: top;
  padding-top: 3px;
  color: #220ba6;
}

.content-view .content-title {
  width: calc(100% - 35px);
  padding-left: 60px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.content-view .content {
  overflow-y: scroll;
  height: calc(100% - 130px);
}

.content-view .content::-webkit-scrollbar {
  width: 7px;
  border-radius: 10px;
}

.content-view .content::-webkit-scrollbar-track {
  background-color: #fff;
}

.content-view .content::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 5px;
}

.content-view .content::-webkit-scrollbar-thumb:hover {
  width: 15px;
}

.content-view .content::-webkit-scrollbar-thumb:active {
  width: 15px;
}

/* 매물상세페이지 */
/* 매물상세페이지 */
/* 매물상세페이지 */
#product-view:target,
/* and show either if class show is present (on click) */
#product-view.show {
  /* or location hash matches id "shoes" */
  display: block;
}

.product-view {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: #f7f7f7;
  z-index: 999;
}

#product-view.active {
  display: block;
}

.product-view .btn-unit {
  display: inline-block;
  position: absolute;
  right: 25px;
  top: 20px;
  color: #777;
  font-size: 14px;
}

.product-view .btn-unit.on {
  color: #fc0606;
}

.product-view .dub_img {
  width: calc(100% - 40px);
  height: 0;
  padding-bottom: calc(70% - 30px);
  position: absolute;
  left: 20px;
  top: 45px;
  z-index: 1;
}

.product-view .img-wrap {
  width: 100%;
  height: 0;
  padding-bottom: 70%;
  cursor: pointer;
  border: 1px solid #eee;
}

.product-view .img-wrap .img-more {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  line-height: 52px;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  text-align: center;
  color: #ddd;
  font-size: 30px;
  background: rgba(0, 0, 0, 1);
  opacity: 0.7;
}

.product-view .row-01 .top-con {
  padding: 25px 0 0;
}

.product-view .row-01 .bottom-con {
  padding: 25px 0 30px;
  font-size: 16px;
  border-top: 1px solid #ddd;
}

.product-view .row-01,
.product-view .row-02,
.product-view .row-03,
.product-view .row-04,
.product-view .row-05,
.product-view .row-07 {
  background: #fff;
  margin-bottom: 20px;
  padding: 20px 25px 30px;
  position: relative;
  border-radius: 20px;
}

.product-view .row-01 {
  border-radius: 0 0 20px 20px;
}

.product-view .row-01 .text-wrap {
  margin-top: 25px;
}

.product-view .row-01 .text-wrap .pick {
  display: none;
}

.product-view .row-01 .text-wrap .push {
  font-size: 14px;
  padding: 3px 7px;
  border: 1px solid #ff7c05;
  border-radius: 10px;
}

.product-view .row-01 .text-wrap .row01 {
  display: inline-block;
  font-size: 14px;
  color: #00a2c5;
  border: 1px solid #00a2c5;
  border-radius: 5px;
  padding: 3px 6px;
  margin-bottom: 10px;
}

.product-view .row-01 .text-wrap .row02 {
  font-size: 25px;
  font-weight: 500;
}

.product-view .row-01 .text-wrap .row03 {
  font-size: 25px;
  color: #220ba6;
  margin: 10px 0 25px;
  font-weight: 500;
}

.product-view .row-01 .bottom-con .row05 {
  color: #1fadcc;
  margin: 10px 0 15px;
}

.product-view .row-01 .bottom-con .row04 {
  font-size: 14px;
  color: #555;
}

.product-view .text-box {
  padding: 30px 0 0;
  white-space: pre-wrap;
  line-height: 1.2;
}

.product-view .text-box pre {
  padding: 0 !important;
  overflow: hidden !important;
}

.content-view .btn-wrap {
  position: absolute;
  right: 20px;
  bottom: 5px;
  padding-top: 9px;
}

.content-view .btn-wrap .share-link {
  display: none;
}

.content-view .btn-wrap .btn-heart {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 26px;
  text-align: center;
  vertical-align: top;
  padding-top: 4px;
}

.content-view .btn-wrap .btn-heart .icon-wrap {
  display: inline-block;
  width: 22px;
  height: 19px;
  background: url(../icon/heart-on.png) center 0 no-repeat;
  background-size: 22px;
}

.content-view .btn-wrap .btn-heart.on .icon-wrap {
  background-position-y: -20px;
  height: 21px;
}

.content-view .btn-wrap .btn-share {
  display: inline-block;
  color: #aaa;
  width: 30px;
  height: 30px;
  background-color: #fff;
  line-height: 29px;
  text-align: center;
  /* opacity: 0.8; */
  font-size: 20px;
  outline: none;
  vertical-align: top;
}

.content-view .btn-wrap .btn-share i {
  margin-left: -1px;
}

.product-view .row-01 .simple-de {
  border-top: 1px solid #f6f6f6;
  padding: 10px 0;
}

.product-view h5 {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0 0;
}

.product-view .row-02::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 237px;
  width: 100%;
  height: 2px;
  background: #220ba6;
}

.product-view .right-de {
  font-size: 14px;
  color: #777;
  text-align: center;
}

.product-view .icon-list {
  overflow: hidden;
  margin-top: 30px;
  padding: 0 10px 25px;
}

.product-view .icon-list li {
  float: left;
  width: 25%;
  text-align: center;
}

.product-view .icon-list li .icon {
  width: 50px;
  height: 50px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  border: 1px solid #ddd;
}

.product-view .icon-list li .icon img {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  height: auto;
}

.product-view .icon-list li p.ti {
  font-size: 12px;
  margin-top: 15px;
  color: #220ba6;
}

.product-view .icon-list li p {
  font-size: 12px;
  margin-top: 5px;
  color: #555;
}

.product-view .samllIcon-list {
  margin-top: 25px;
  padding: 20px 20px 0;
  font-size: 14px;
}

.product-view .samllIcon-list span img {
  width: 30px;
  margin-right: 15px;
}

.product-view .samllIcon-list li {
  height: 30px;
  line-height: 30px;
}

.product-view .map-wrap .map {
  background-color: #f6f6f6;
  border: 1px solid #ccc;
  height: 230px;
  margin: 15px 0;
  position: relative;
}

.product-view .map-wrap .map.on:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: #220ba66c;
  border: 2px solid #220ba6;
  border-radius: 50%;
  z-index: 1;
}

.product-view .row-03 {
  padding-bottom: 40px;
}

.product-view .row-03>p {
  text-align: center;
  font-size: 12px;
  color: #777;
}

.product-view .row-03 .lock .icon-wrap {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
}

.product-view .row-03 .lock img {
  width: auto;
}

.product-view .row-03 .lock p {
  position: absolute;
  left: 50%;
  top: 53%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  text-align: center;
  color: #999;
  font-size: 13px;
}

.product-view .row-03 .right-de {
  margin-top: 30px;
  text-align: left;
  font-size: 14px;
}

.product-view .row-04 ul {
  overflow: hidden;
  padding: 10px 0;
}

.product-view .row-04 ul li:first-child {
  float: left;
}

.product-view .row-04 ul li:last-child {
  float: right;
  position: relative;
  width: calc(100% - 100px);
  height: 100px;
}

.product-view .row-04 ul li .img-wrap {
  width: 100px;
  height: 100px;
  cursor: unset;
}

.product-view .row-04 ul li .img-wrap>img {
  top: 50%;
  transform: translate(-50%, -50%);
  height: auto;
}

.product-view .row-04 ul li .text-wrap {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}

.product-view .row-04 ul li .text-wrap p:first-child {
  color: #220ba6;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 15px;
}

.product-view .row-04 ul li .text-wrap p:nth-child(2) {
  margin-bottom: 5px;
}

.product-view .row-04 ul li {
  font-size: 14px;
}

/* 매물상세페이지-하단다른매물추천 슬라이더 커스텀*/
.product-view .row-05 {
  margin-bottom: 0;
  border-radius: 20px 20px 0 0;
}

.product-view .row-05 .product-slider-wrap {
  margin-top: 10px;
  padding: 30px 15px 10px;
  position: relative;
}

.product-view .row-05 .product-slider {
  position: static;
}

.product-view .row-05 .product-slider .swiper-wrapper {
  height: auto;
}

.product-view .row-05 .product-slider .img-wrap {
  width: 190px;
  height: 150px;
}

.product-view .row-05 .product-slider .swiper-slide {
  width: 190px !important;
  margin-right: 20px !important;
}

.product-view .row-05 .product-slider .swiper-slide {
  width: 190px !important;
  margin-right: 20px !important;
}

/* product-text */
.product-view .row-05 .product-slider .text-wrap .row01 {
  color: #000;
  font-weight: bold;
  margin-bottom: 10px;
  width: 100%;
}

.product-view .row-05 .product-slider .text-wrap .row01 .title {
  width: 100%;
  font-size: 14px;
  margin-top: 15px;
}

.product-view .row-05 .product-slider .text-wrap .row02 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: -1px;
}

.product-view .row-05 .product-slider .text-wrap .row03 {
  font-size: 13px;
  background: #fff;
  color: #1fadcc;
  display: inline-block;
  margin-bottom: 10px;
  height: auto;
  line-height: normal;
  border-radius: unset;
  padding: 0;
  font-weight: 600;
}

.product-view .row-05 .product-slider .text-wrap .row04 {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 600;
}

.product-view .row-05 .product-slider .text-wrap .row05 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.product-view .row-05 .product-slider .swiper-button-next,
.product-view .row-05 .product-slider .swiper-button-prev {
  top: 120px;
  width: 30px;
  height: 30px;
  line-height: 33px;
  text-align: center;
  background: #220ba6;
  border-radius: 30px;
  color: #fff;
  opacity: 0.9;
  font-size: 20px;
}

.product-view .row-05 .product-slider-wrap .swiper-button-next:after,
.product-view .row-05 .product-slider-wrap .swiper-button-prev:after,
.photo-view .swiper-button-next:after,
.photo-view .swiper-button-prev:after {
  display: none;
}

.product-view .row-05 .product-slider .swiper-button-next:hover,
.product-view .row-05 .product-slider .swiper-button-prev:hover {
  opacity: 1;
}

.product-view .row-05 .product-slider .swiper-button-next {
  right: 0;
}

.product-view .row-05 .product-slider .swiper-button-prev {
  right: auto;
  left: 0;
}

.product-view .row-05 .product-slider .swiper-button-next.swiper-button-disabled,
.product-view .row-05 .product-slider .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}


.product-view .row-05 .product {
  cursor: pointer;
}

.product-view .row-06 {
  text-align: center;
  background-color: #f6f6f6;
  position: relative;
  padding: 15px 0;
  z-index: 10;
  bottom: 0;
  border-top: 1px solid #ddd;
}

.product-view .row-06>.btn-inquiry {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  width: 200px;
  font-size: 16px;
  background-color: #220ba6;
  color: #fff;
  border-radius: 15px;
}

.product-view .row-06 .text-box {
  position: absolute;
  left: 50%;
  top: -27px;
  transform: translateX(-50%);
  height: 35px;
  line-height: 32px;
  background-color: #fff;
  border: 2px solid #1fadcc;
  padding: 0 15px;
  border-radius: 20px;
  white-space: nowrap;
  font-size: 14px;
  color: #777;
}

.product-view .row-06 .text-box:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 48%;
  bottom: -6px;
  width: 10px;
  height: 10px;
  background: #fff;
  transform: translateX(-50%), rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  border-bottom: 2px solid #1fadcc;
  border-right: 2px solid #1fadcc;
}

.product-view .row-06 .text-box .num {
  color: #1fadcc;
  font-weight: 500;
}

.product-view .row-07 .tab-wrap {
  padding: 0 15px;
  margin-top: 20px;
}

.product-view .row-07 .tab-menu {
  overflow: hidden;
  border-bottom: 1px solid #ddd;
  height: auto;
  margin-bottom: 0;
}

.product-view .row-07 .tab-menu li {
  float: left;
  width: 33.333333%;
  height: 45px;
  line-height: 45px;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}

.product-view .row-07 .tab-menu li.on {
  border-bottom: 2px solid #999;
}

.product-view .row-07 .tab-menu li span {
  margin-left: 3px;
  font-size: 15px;
  color: #220ba6;
  font-weight: 600;
}

/* .product-view .row-07 .con-wrap {padding: 20px 0 10px;} */
.product-view .row-07 .con-wrap .con {
  display: none;
}

.product-view .row-07 .con-wrap .con.on {
  display: block;
}

.product-view .row-07 .con-wrap .con ul {
  padding-top: 20px;
}

.product-view .row-07 .con-wrap .con li {
  height: 60px;
  line-height: 60px;
  border-bottom: 1px solid #e7e7e7;
  font-size: 16px;
}

.product-view .row-07 .con-wrap .con li .dt {
  float: right;
  color: #220ba6;
  font-size: 20px;
  font-weight: bold;
}

.product-view .row-07 .con-wrap .btn-more {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
}

.product-view .footer {
  padding: 50px 0;
  text-align: center;
  font-size: 11px;
  color: #ddd;
}

/* top 위로 버튼 */
.quik {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid #b5b5b5;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  z-index: 999;
  border: solid 1px #eee;
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
  border-color: #eee;
}

.product-view .quik {
  bottom: 100px;
}


.btn-top {
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  background: #fff;
  padding-top: 10px;
  color: #ddd;
}

.btn_top i {
  display: inline-block;
  width: 100%;
  line-height: 35px;
  vertical-align: top;
}

/* 명당만들기페이지 */
/* 명당만들기페이지 */
/* 명당만들기페이지 */
/* 명당만들기페이지 */
/* 명당만들기페이지 */
.makeSearch.search .bottomBtn-wrap .btn-wrap .btn-basket {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  min-width: 80px;
  height: 50px;
  line-height: 48px;
  font-size: 11px;
  border-radius: 50px;
  background: #000;
  padding: 0 12px;
}

.makeSearch.search .bottomBtn-wrap .btn-wrap .btn-basket .icon-wrap {
  display: inline-block;
  padding-top: 5px;
}

.makeSearch.search .bottomBtn-wrap .btn-wrap .btn-basket .icon-wrap img {
  width: 40px;
}

.makeSearch.search .bottomBtn-wrap .btn-wrap .btn-basket .text {
  display: none;
  position: absolute;
  right: 0;
  color: #fff;
  top: 5px;
}

.makeSearch.search .bottomBtn-wrap .btn-wrap .btn-basket .cnt {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  padding-right: 10px;
}

.makeSearch.search .bottomBtn-wrap .btn-wrap .btn-basket .dot-pulse {
  left: -9977px;
  top: 20px;
  background-color: #fff;
  color: #fff;
}

.makeSearch.search .bottomBtn-wrap .btn-wrap .btn-basket .dot-pulse:before,
.makeSearch.search .bottomBtn-wrap .btn-wrap .btn-basket .dot-pulse:after {
  background-color: #fff;
  color: #fff;
}

.makeSearch.search .search-form-wrap {
  width: 300px;
}

.makeSearch.search .search-form {
  width: calc(100% - 30px);
}

.makeSearch.search .search-form-wrap .btn-search {
  right: 20px;
}

/* 명당만들기 필터슬라이더 커스텀 */
.makeSearch .option-slider .swiper-slide {
  width: 16.1%;
}

.makeSearch .swiper-slide .btn-modal {
  color: #777;
  display: inline-block;
  width: 100%;
  padding-top: 20px;
  font-size: 11px;
  text-align: center;
}

.makeSearch .swiper-slide:last-child .btn-modal:after {
  display: none;
}

.makeSearch .swiper-slide:last-child .btn-modal:before {
  display: none;
}

.makeSearch .swiper-slide .btn-modal .img-wrap {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-bottom: 2px;
  padding-bottom: 0;
}

.makeSearch .swiper-slide:nth-child(1) .btn-modal .img-wrap {
  width: 40px;
  height: 40px;
}

.makeSearch .swiper-slide:nth-child(2) .btn-modal .img-wrap {
  background: url(../icon/ma01.png) 50% 0 no-repeat;
  background-size: 100%;
  background-position-y: -40px !important;
}

.makeSearch .swiper-slide:nth-child(3) .btn-modal .img-wrap {
  background: url(../icon/ma02.png) 50% 0 no-repeat;
  background-size: 100%;
  background-position-y: -40px !important;
}

.makeSearch .swiper-slide:nth-child(4) .btn-modal .img-wrap {
  background: url(../icon/ma03.png) 50% 0 no-repeat;
  background-size: 100%;
  background-position-y: -40px !important;
}

.makeSearch .swiper-slide:nth-child(5) .btn-modal .img-wrap {
  background: url(../icon/ma04.png) 50% 0 no-repeat;
  background-size: 100%;
  background-position-y: -40px !important;
}

.makeSearch .swiper-slide:nth-child(6) .btn-modal .img-wrap {
  background: url(../icon/ma05.png) 50% 0 no-repeat;
  background-size: 100%;
  background-position-y: -40px !important;
}

.makeSearch .swiper-slide:nth-child(7) .btn-modal .img-wrap {
  background: url(../icon/ma06.png) 50% 0 no-repeat;
  background-size: 100%;
  background-position-y: -40px !important;
}

.makeSearch .swiper-slide:nth-child(8) .btn-modal .img-wrap {
  background: url(../icon/ma07.png) 50% 0 no-repeat;
  background-size: 100%;
  background-position-y: -40px !important;
}

.makeSearch .swiper-slide:nth-child(9) .btn-modal .img-wrap {
  background: url(../icon/ma08.png) 50% 0 no-repeat;
  background-size: 100%;
  background-position-y: -40px !important;
}

.makeSearch .swiper-slide .btn-modal {
  color: #aaa;
}

/* .makeSearch .swiper-slide.on .btn-modal {
  color: #000;
} */


.makeSearch .option-slider .swiper-slide.on .btn-modal .img-wrap {
  background-position-y: 0 !important;
}

/* 짓다 검색  */
.makeSearch .right-slider .bottomList-slider>.row02 {
  height: 100px;
  line-height: 100px;
  background: #f7f7f7;
  color: #000;
  padding: 0 25px;
  font-size: 16px;
  position: relative;
  top: 95px;
}

.makeSearch .right-slider .bottomList-slider>.row02 .search-form-wrap {
  position: absolute;
  left: 25px;
  top: 50px;
  width: calc(100% - 50px);
  height: 45px;
  border-radius: 45px;
}

.makeSearch .right-slider .bottomList-slider>.row02 .search-form-wrap:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 50px;
  top: 10px;
  width: 1px;
  height: 20px;
  background: #00a2c5;
}

.makeSearch .right-slider .bottomList-slider>.row02 .search-form-wrap .search-form {
  border-bottom: none;
}

.makeSearch .right-slider .bottomList-slider>.row02 .search-form-wrap .btn-search {
  top: 10px;
  right: 15px;
}

.makeSearch .right-slider .bottomList-slider>.row02 .search-form-wrap .btn-search i {
  font-size: 20px;
  color: #00a2c5;
}

.makeSearch .right-slider .bottomList-slider>.row02>.select_wrap {
  position: absolute;
  left: 0;
  top: 115px;
  color: #777;
  width: 100%;
  height: 30px;
  line-height: 30px;
  background: #fff;
  border-radius: 20px 20px 0 0;
}

.makeSearch .right-slider .bottomList-slider>.row02>.select_wrap .select {
  position: absolute;
  right: 20px;
  line-height: 35px;
}

.makeSearch .right-slider .bottomList-slider>.row02>.select_wrap .array_select {
  top: 30px;
  right: 20px;
}

.makeSearch .right-slider .bottomList-slider>.row02>.select_wrap .array_select02 .option {
  padding: 3px 25px;
}

.makeSearch .modal-inquiry02 {
  display: block;
}



/* 업체리스트 짓다*/
/* 업체리스트 */
/* 업체리스트 */

.sub.makeSearch .content {
  overflow-y: scroll;
  height: calc(100% - 120px);
}

.sub.makeSearch .content h2 {
  padding: 5px 20px;
  border-bottom: 1px solid #f6f6f6;
}

.sub.makeSearch .content.on {
  display: block;
}

.company-list.conList-slider {
  top: 140px;
  height: calc(100% - 240px);
  border-radius: 0;
  padding-bottom: 30px;
}

.company-list .con-row {
  height: 200px;
  padding: 0;
}

.company-list .con-row .btn-campany {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 25px;
}

.company-list .con-row .btn-campany {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 25px;
}

.company-list .con-row .title-wrap {
  position: relative;
  margin-bottom: 30px;
}



.company-list .con-row .text-wrap {
  position: absolute;
  left: 195px;
  top: 25px;
  width: calc(100% - 270px);
  font-size: 14px;
  padding-top: 5px;
}

.company-list .con-row .text-wrap .title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
  /* font-size: 18px; */
  width: 100%;
}

.company-list .con-row .text-wrap .sector span {
  color: #00a2c5;
  border: 1px solid #00a2c5;
  font-weight: normal;
  font-size: 12px;
  padding: 2px 5px;
  border-radius: 3px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: top;
  margin-top: 1px;
  margin-bottom: 25px;
}

.company-list .con-row .text-wrap .text-de {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 라인수 */
  -webkit-box-orient: vertical;
  white-space: normal;
  line-height: 1.2em;
  height: 2.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #777;
}

.company-list .con-row .text-wrap .bottom-box {
  position: absolute;
  left: 0;
  bottom: -5px;
}

.company-list .con-row .text-wrap .bottom-box .review {
  font-size: 13px;
  color: #000;
}

.company-list .con-row .text-wrap .bottom-box .bi-type {
  font-size: 11px;
  color: #1fadcc;
  border: 1px solid #1fadcc;
  padding: 0 5px;
  border-radius: 5px;
  margin-right: 5px;
}

.company-list .con-row .btn-wrap {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.company-list .con-row .btn-wrap a {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  background: #220ba6;
  border-radius: 30px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 15px;
}

.company-list .con-row .btn-wrap a:last-child {
  margin-bottom: 0;
}

.company-list .con-row .btn-wrap a .img-wrap {
  display: inline-block;
  width: 30px;
  height: 30px;
  padding: 0;
}

.company-list .con-row .btn-wrap a.on {
  background: url(../icon/estimate.png) 0 0 no-repeat;
  background-size: 100%;
}

.company-list .con-row .btn-wrap p {
  display: none;
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%);
  height: 20px;
  line-height: 19px;
  padding: 0 10px;
  font-size: 11px;
  background-color: #000;
  color: #fff;
  z-index: 2;
  white-space: nowrap;
  border-radius: 20px;
}

.company-list .con-row .btn-wrap a.call:hover p {
  display: inline-block;
}

.company-list .con-row .btn-wrap a.btn-quoteContact {
  background: #ddd;
}

.company-list .con-row .btn-wrap a.btn-quoteContact.on {
  background: #220ba6;
}

.company-list .con-row .btn-wrap a.btn-quoteContact:hover p {
  display: inline-block;
}

.company-list .con-row .btn-wrap p span {
  display: none;
}

.company-list .con-row .btn-wrap p span.on {
  display: inline-block;
}

.company-list .con-row .btn-wrap p:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  background: #000;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  left: calc(50% - 5px);
  top: -5px;
  transform: translateX(-50%);
  width: 10px;
  transform: rotate(45deg);
  z-index: -1;
}

.company-list .con-row .img-box {}

.company-list .con-row .title-wrap .img-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 150px;
  height: 0;
  padding-bottom: 150px;
  /* border: 1px solid #f6f6f6; */
}

.company-list .con-row .title-wrap .img-wrap>img {
  height: auto;
  top: 50%;
  transform: translate(-50%, -50%);
}

.company-list .con-row .img-box .img-wrap:nth-child(2) {
  margin-right: 0;
}

.company-list .con-row .chk-wrap {
  margin-top: 65px;
}

.company-list .con-row .chk-wrap .chk-box {
  display: inline-block;
}

.company-list .con-row .chk-wrap input[type="checkbox"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  padding: 0;
}

.company-list .con-row .chk-wrap input[type="checkbox"]+label {
  display: inline-block;
  background: #fff;
  color: #535353;
  padding: 2px 5px 3px;
  text-align: center;
  cursor: pointer;
  margin: 0;
  border: 1px solid #999;
  font-size: 12px;
}

.company-list .con-row .chk-wrap input[type="checkbox"]:checked+label {
  background: #fbd3d3;
}

.company-list .con-row .chk-wrap input[type="checkbox"]:checked+label {
  background: #fbd3d3;
}

.company-list .con-row .btn-caseView {
  display: inline-block;
  position: absolute;
  left: 210px;
  bottom: 27px;
  color: #000;
  font-size: 13px;
}

.company-list .con-row .btn-caseView .caseTotalNum {
  position: absolute;
  left: -15px;
  top: -7px;
  display: inline-block;
  width: 15px;
  height: 15px;
  line-height: 15px;
  background: #1fadcc;
  color: #fff;
  text-align: center;
  border-radius: 15px;
}

/* .company-list .con-row .btn-caseView:hover {
  background: #220ba6;
  color: #fff;
} */

/* 사진확대페이지*/
.search .photo-view {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 1000;
  display: none;
  min-width: 320px;
}

.makeSearch .photo-view {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 100px 50px;
  text-align: center;
  z-index: 999;
  display: none;
}

.photo-view .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #222;
  opacity: 0.8;
}

.photo-view .text-wrap {
  color: #fff;
  font-size: 14px;
  margin-top: 10px;
  height: 50px;
}

/* 사진확대페이지-슬라이더커스텀 */
.imgDetail-slider-wrap {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  overflow: hidden;
  z-index: 99;
}

.imgDetail-slider {
  margin-top: 15px;
}

.imgDetail-slider-top {
  position: static;
}

.imgDetail-slider .swiper-slide {
  opacity: 0.5 !important;
  margin-right: 10px !important;
  cursor: pointer;
}

.imgDetail-slider .swiper-slide.active {
  opacity: 1 !important;
}

.imgDetail-slider .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}

.imgDetail-slider-top .swiper-button-prev,
.imgDetail-slider-top .swiper-button-next {
  background-image: none;
  top: 45%;
  transform: translateY(-50%);
}

.imgDetail-slider .img-wrap,
.imgDetail-slider-top .img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 70%;
}

.imgDetail-slider .img-wrap img,
.imgDetail-slider-top .img-wrap img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.imgDetail-slider-top .swiper-button-next {
  right: 0;
}

.imgDetail-slider-top .swiper-button-prev {
  background: url(../icon/arrow07.png) center center no-repeat;
  transform: rotate(-180deg);
  transform-origin: center 10px;
}

.imgDetail-slider-top .swiper-button-next i,
.imgDetail-slider-top .swiper-button-prev i {
  display: none;
}

.imgDetail-slider-top .swiper-button-next,
.imgDetail-slider-top .swiper-button-prev {
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 50px;
  z-index: 2;
  background: url(../icon/arrow07.png) center center no-repeat;
}

.imgDetail-slider-top .swiper-button-next.swiper-button-disabled,
.imgDetail-slider-top .swiper-button-prev.swiper-button-disabled {
  background-color: unset;
  opacity: 0.6;
  color: #222;
}

.photo-view .btn-close {
  display: inline-block;
  position: absolute;
  right: 50px;
  top: 50px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 50px;
  font-size: 50px;
  color: #fff;
}

/* 업체상세 */
/* 업체상세 */
/* 업체상세 */
.company-view p,
.company-view span,
.company-view pre {
  font-family: 'Pretendard Variable', "Noto Sans KR", "돋움", Dotum, "Helvetica Neue",
    "Apple SD Gothic Neo", sans-serif !important;
}

.company-view {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  z-index: 12;
}

.company-view.content-view .btn-wrap {
  bottom: auto;
  top: 3px;
}

.company-view .row {
  text-align: center;
}

.company-view .top {
  position: relative;
}

.company-view .row-01 {
  padding: 35px 25px;
  font-size: 16px;
  position: relative;
  border-radius: 0 0 20px 20px;
  background: #fff;
}

.company-view .row-01 .img-wrap {
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  border-radius: 15px;
  display: inline-block;
  margin-bottom: 30px;
}

.company-view .row-01 .img-wrap img {
  height: auto;
  top: 50%;
  transform: translate(-50%, -50%);
}

.company-view .row-01 .text-wrap {
  width: 100%;
  font-size: 14px;
  color: #555;
}

.company-view .row-01 .text-wrap ul {
  overflow: hidden;
  padding: 0 10px;
}

.company-view .row-01 .text-wrap ul li {
  float: left;
  width: 25%;
  text-align: center;
}

.company-view .row-01 .text-wrap ul li .icon {
  display: inline-block;
  width: 60px;
  height: 80px;
  border: 1px solid #ddd;
  position: relative;
}

.company-view .row-01 .text-wrap ul li .icon img {
  width: 58px;
  height: 58px;
}

.company-view .row-01 .text-wrap ul li .icon p {
  height: 20px;
  line-height: 18px;
  background: #220ba6;
  color: #fff;
  font-size: 12px;
  border-top: 1px solid #ddd;
}

.company-view .row-01 .text-wrap ul li>p {
  margin-top: 10px;
  color: #555;
  font-size: 14px;
}

.company-view .row-02 {
  padding: 50px 0;
  margin: 0 45px;
  border-bottom: 1px solid #ddd;
}

.company-view .row-02 .simple-de {
  font-size: 16px;
}

.company-view .text-ti {
  color: #010101;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 18px;
}

.company-view .row-02 em {
  font-weight: 700;
  width: 80px;
  display: inline-block;
  color: #010101;
}

.company-view .row-03 {
  padding: 35px 25px;
  font-size: 16px;
  position: relative;
  border-radius: 20px;
  background: #fff;
  color: #555;
  margin: 10px 0;
}

.company-view .row-04 {
  padding: 35px 25px;
  background: #fff;
  border-radius: 20px 20px 0 0;
}

.company-view .row-04 .photo-wrap {
  overflow: hidden;
  margin-top: 10px;
}

.company-view .row-04 .photo-wrap li {
  float: left;
  width: calc(50% - 2px);
  margin: 0 4px 4px 0;
}

.company-view .row-04 .photo-wrap li:nth-child(2n) {
  margin-right: 0px;
}

.company-view .row-04 .photo-wrap li .btn-caseView {
  display: inline-block;
  position: relative;
  width: 100%;
}

.company-view .row-04 .photo-wrap li .btn-caseView .img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  padding-bottom: 0;
}

.company-view .row-04 .photo-wrap li .btn-caseView .img-wrap img {
  transform: scale(1), translateX(-50%);
  transform-origin: center center;
  transition: all 1s;
}

.company-view .row-04 .photo-wrap li .btn-caseView:hover .img-wrap img {
  transform: scale(1.1) translateX(-50%);
  transform-origin: center center;
  transition: all 1s;
}

.company-view .row-04 .photo-wrap li .btn-caseView .text-wrap {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}

.company-view .row-04 .photo-wrap li .btn-caseView .text-wrap:before {
  content: "";
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/hover-bg.png) no-repeat;
  background-size: cover;
}

.company-view .row-04 .photo-wrap li .btn-caseView .text-wrap .ti {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #fff;
  padding: 20px;
}

.company-view .row-04 .photo-wrap li .btn-caseView .text-wrap .ti:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 12px;
  background: url(../icon/arrow02.png) no-repeat;
}

.company-view .row-04 .photo-wrap li .btn-caseView:hover .text-wrap:before {
  display: block;
}

.company-view .row-04 .photo-wrap li .btn-caseView:hover .text-wrap {
  display: block;
}

.company-view .row-04 .photo-wrap li .btn-caseView .text-wrap .ti span {
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: lighter;
  width: calc(100% - 50px);
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  overflow: hidden;
}

.company-view .row-04 .photo-wrap li .btn-caseView .text-wrap .ti .text-ti {
  color: #fff;
  border: none;
  margin: 0;
  padding: 0;
  margin-top: 5px;
  font-weight: lighter;
}

.company-view .row-05 {
  text-align: center;
  background-color: #fff;
  position: relative;
  padding: 15px 0;
  z-index: 10;
  bottom: 0;
  border-top: 1px solid #ddd;
}

.company-view .row-05>.btn-inquiry {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  width: 200px;
  font-size: 16px;
  background-color: #220ba6;
  color: #fff;
  border-radius: 15px;
}

.company-view .row-05 .text-box {
  position: absolute;
  left: 50%;
  top: -27px;
  transform: translateX(-50%);
  height: 30px;
  line-height: 28px;
  background-color: #fff;
  border: 1px solid #1fadcc;
  padding: 0 15px;
  border-radius: 20px;
}

.company-view .row-05 .text-box:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 48%;
  bottom: -6px;
  width: 10px;
  height: 10px;
  background: #fff;
  transform: translateX(-50%), rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  border-bottom: 1px solid #1fadcc;
  border-right: 1px solid #1fadcc;
}

.company-view .row-05 .text-box .num {
  color: #1fadcc;
}

/* 뒤로가기 */
.btn-back {
  display: inline-block;
  position: absolute;
  font-size: 28px;
  left: 15px;
  top: 8px;
  width: 35px;
  height: 35px;
}

.search-form-wrap {
  display: block;
}

#modal-inquiry {
  display: none;
}

.option-slider .swiper-button-next,
.option-slider .swiper-button-prev {
  display: inline-block;
}

.op-box01 {
  display: none;
}

.bottomList-slider>.row02 .bar-wrap {
  display: none;
}

.Mbtn-wrap,
.mobile-option,
.option-all {
  display: none;
}

#Mheader .btn-search {
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 13px;
  font-size: 25px;
}

.end-bg {
  display: none;
}

@media screen and (max-width: 1080px) {
  .search .photo-view {
    padding: 0 110px;
  }

}

@media screen and (max-width: 810px) {

  /* 헤더 */
  #Mheader {
    height: 51px;
  }


  #main.search {
    height: calc(100% - 51px);
    margin-top: 51px;
  }

  #main.search.active {
    height: 100%;
    margin-top: 0;
  }

  #Mgnb {
    display: none;
  }

  .btn-my-location {
    left: auto;
    bottom: auto;
    right: 20px;
    top: 50px;
  }
  #share-link {
    display: none;
    max-width: 300px;
    padding: 30px;
    top: 300px;
  }
  .Mbtn-wrap {
    display: inline-block;
    position: absolute;
    right: 76px;
    bottom: 30px;
    z-index: 10;
  }

  .Mbtn-wrap .Mbtn-List {
    display: inline-block;
    padding: 0 20px;
    height: 58px;
    line-height: 60px;
    background: #103e81;
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0 1px 6px 0 rgba(32, 33, 36, .28);
  }

  .Mbtn-wrap .Mbtn-List .text-m {
    display: none;
  }

  .Mbtn-wrap .Mbtn-List .text-s {
    display: inline-block;
    font-weight: 500;
  }

  .Mbtn-wrap .Mbtn-List .text-s .num {
    color: #fff;
    font-weight: bold;
    display: inline-block;
    position: absolute;
    right: 7px;
    top: -17px;
    background: #164d9f;
    /* width: 25px; */
    height: 25px;
    line-height: 24px;
    padding: 0 10px;
    text-align: center;
    border-radius: 25px;
    font-size: 14px;
  }

  .Mbtn-wrap.on .Mbtn-List .text-s {
    display: none;
  }

  .Mbtn-wrap.on .Mbtn-List .text-m {
    display: inline-block;
  }

  .quik {
    right: 10px;
    bottom: 135px;
  }

  .bottomList-slider {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 10%);
    z-index: 1;
    background: #fff;
    transform: translateY(100%);
    transition: all 1s;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
  }

  .bottomList-slider.on01 {
    transform: translateY(50%);
    transition: all 1s;
  }

  .bottomList-slider.on {
    transform: translateY(45px);
    transition: all 1s;
    border-radius: 0;
  }

  .right-slider {
    position: static;
    width: 100%;
  }

  .right-slider .bottomList-slider>.row02 {
    top: 0;
    background: #fff;
    color: #000;
    line-height: 0;
    height: 60px;
    font-size: 16px;
    box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
    border-radius: 0;
  }

  .right-slider .bottomList-slider>.row02 .cnt {
    font-size: 16px;
  }

  .right-slider .bottomList-slider>.row02 .btn-unit {
    font-size: 12px;
    color: #777;
  }

  .right-slider .bottomList-slider>.row02 .btn-unit i {
    font-size: 12px;
  }

  .conList-slider {
    top: 0;
    height: calc(100% - 95px);
    border-radius: 0;
  }

  .company-list.conList-slider {
    height: calc(100% - 90px);
    top: 0;
  }

  /* 상단필터 */
  .mobile-option {
    display: inline-block;
  }

  .slider-wrap {
    height: 50px;
    padding: 0;
    z-index: 3;
    border-radius: 0;
    border-bottom: 1px solid #ddd;
  }

  .option-slider {
    padding: 0 10px 0 10px;
    border-radius: 0;
    height: 100%;
    background-color: transparent;
    overflow-x: scroll;
    margin-right: 50px;
  }

  .option-slider .swiper-wrapper {}

  .option-slider .swiper-wrapper {
    width: max-content;
  }

  /* .option-slider .swiper-wrapper::-webkit-scrollbar { */
  /* width: 0; */
  /* height: 0; */
  /* } */

  .makeSearch .option-slider {
    padding: 0;
  }

  .option-slider .swiper-slide .btn-modal .img-wrap {
    display: none;
  }

  .option-slider .swiper-slide {
    width: fit-content;
    margin-right: 7px;
  }

  .option-slider .swiper-slide:last-child {
    margin-right: 15px;
  }

  .option-slider .swiper-button-prev,
  .option-slider .swiper-button-next {
    display: none;
  }

  .right-slider>.row01 {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    /* border-bottom: 1px solid #ddd; */
    /* display: none; */
  }

  /* .row01.m-row01 {
    position: absolute;
    width: 100%;
    left: 0;
    top: 51px;
    z-index: 999;
    border-bottom: none;
    display: block;
  } */

  .option-slider .swiper-slide .btn-modal {
    position: relative;
    padding-top: 16px;
    color: #777;
    font-size: 14px;
  }

  .option-slider .swiper-slide .btn-modal.deposit,
  .option-slider .swiper-slide .btn-modal.rent {
    color: #000;
  }

  /* .option-slider .swiper-slide .btn-modal:after {
    content: '';
    display: inline-block;
    position: absolute;
    left: -10px;
    top: 18px;
    width: 1px;
    height: 10px;
    background: #ddd;
  } */

  .option-slider .swiper-slide .btn-modal:after {
    display: none;
  }

  .option-slider .swiper-slide:nth-child(2) .btn-modal:after,
  .option-slider .swiper-slide:nth-child(3) .btn-modal:after {
    display: none;
  }

  .option-slider .swiper-slide:first-child .btn-modal:after {
    display: none;
  }

  /* .option-slider .swiper-slide .btn-modal-all {
    padding-top: 13px;
    background-color: #fff;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-right: 10px;
  } */
  /* .btn-modal-all {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    width: 45px;
    height: 45px;
    z-index: 999999;
    padding-top: 13px;
    padding-left: 11px;
    border-left: 1px solid #ddd;
    background-color: #fff;
  } */

  .btn-modal-all img {
    width: 27px;
  }

  /* .option-slider .swiper-slide.mobile-option .btn-home {
    width: 45px;
    height: 45px;
    padding-top: 11px;
    line-height: 45px;
    border-right: 1px solid #ddd;
    border-top: 2px solid #220ba6;
  }

  .option-slider .swiper-slide.mobile-option .btn-home img {
    width: 21px;
  } */

  .btn-home {
    display: inline-block;
    position: absolute;
    left: 20px;
    top: 10px;
    width: 25px;
    font-size: 28px;
    /* background: url(../icon/home03.png) center center no-repeat; */
  }

  .option-slider .swiper-slide.mobile-option {
    padding: 0;
  }

  .con-row .product .img-wrap {
    float: left;
    width: 30vw;
    height: 30vw;
    min-width: 120px;
    min-height: 120px;
  }

  .product .text-wrap .row01 {
    margin-bottom: 5px;
  }

  .product .text-wrap .row03 {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .product .text-wrap .row02 {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
  }

  .product .text-wrap .row04 {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
  }

  .mobile-option {
    display: block;
    position: absolute;
    right: 0;
    width: 50px;
    height: 50px;
    z-index: 10;
  }

  .mobile-option.on .btn-modal-all {
    background: #fff url(../icon/filter_on.png) center center no-repeat;
    background-size: 58%;
  }

  .mobile-option .btn-modal-all img {
    display: none;
  }

  .btn-modal-all {
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 13px;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    background: #fff url(../icon/all.png) center center no-repeat;
    background-size: 58%;
  }


  .option-all {
    display: none;
  }

  .option-all.on {
    display: block;
    background: #fff;
    position: absolute;
    width: 100%;
    min-width: 320px;
    top: 0;
    z-index: 999999;
    transform: translateY(50%);
    text-align: center;
    top: 101px;
    height: calc(100% - 101px);
    overflow-y: scroll;
    /* transform: none !important; */
    padding-bottom: 50px;
  }
  .option-all.none {
    transform: none !important;
  }

  .option-all .op-box {
    display: block;
    position: static;
    padding-bottom: 0;
  }

  .search .left-wrap .search-form-wrap .search-form,
  .search .left-wrap .search-form-wrap .search-result {
    display: none;
  }

  .search .search-form-wrap {
    display: none;
    position: absolute;
    left: auto;
    right: 10px;
    top: 55px;
    width: 110px;
    border-radius: 50px;
    height: 40px;
    line-height: 40px;
  }

  .search .search-form-wrap .radio-box {
    right: auto;
    left: 2px;
    top: 3px;
  }

  .search .search-form-wrap .radio-box ul li {
    width: 50px;
    height: 34px;
    line-height: 33px;
    border-radius: 44px;
    background: #fff;
  }

  .search .search-form-wrap .radio-box ul li label {
    font-size: 14px;
  }

  .search .search-form-wrap .radio-box>ul>li:first-child>label:before {
    height: 34px;
    border-radius: 44px;
    left: 44px;
    width: 60px;
  }

  .search .search-form-wrap .radio-box>ul>li>input[type="radio"]:checked+label:before {
    left: 0;
    width: 50px;
  }

  /* .search .search-form-wrap .radio-box ul { */
  /* display: block;
  } */

  /* .content-view .top {
    display: none;
  } */

  .search .left-wrap {
    position: absolute;
    left: 20px;
    top: 5px;
    z-index: 1;
  }

  .btn-stores01,
  .btn-analysis {
    width: 50px;
    height: 50px;
    padding-top: 3px;
  }

  .btn-analysis {
    left: 60px;
  }

  .btn-stores01 p,
  .btn-analysis p {
    margin-top: 0;
    font-size: 11px;
  }

  .right-slider .product-slider-wrap>.bottomList-slider {
    transform: translateY(0);
  }

  .option-slider .swiper-button-next,
  .option-slider .swiper-button-prev {
    display: none !important;
  }

  .m-title {
    height: 50px;
    line-height: 50px;
  }

  .option-slider .swiper-slide .btn-modal i,
  .option-slider .swiper-slide .btn-modal .item {
    display: inline-block;
  }

  .option-slider .swiper-slide .btn-modal {
    background-color: #eee;
    color: #555;
    padding: 0 10px;
    height: 30px;
    line-height: 32px;
    margin-top: 10px;
    border-radius: 3px;
    font-weight: 500;
  }

  .option-slider .swiper-slide .btn-modal i {
    padding-top: 9px;
    vertical-align: top;
  }

  .option-slider .swiper-slide.on .btn-modal .item {
    color: #5b43e5;
    font-weight: 700;
  }

  .option-slider .swiper-slide.on .btn-modal {
    background-color: #f1efff;
    color: #907ef4;
    padding: 0 25px 0 10px;
    height: 30px;
    line-height: 32px;
    margin-top: 10px;
    border-radius: 3px;
    font-weight: 500;
  }

  .option-slider .swiper-slide .btn-all {
    position: absolute;
    right: 1px;
    top: 10px;
    color: #220ba6;
    font-size: 13px;
    z-index: 99999;
    display: none;
    width: 30px;
    height: 30px;
    line-height: 33px;
    text-align: center;
  }

  .option-slider .swiper-slide.on .btn-all {
    display: block;
  }

  .option-slider .swiper-slide.on .btn-all i {
    color: #220ba6;
  }

  .op-box01 {
    transform: translateY(calc(-100% - 50px));
    transition: all .3s;
    z-index: 1;
    display: block;
  }

  .option-wrap li.on .op-box01 {
    transform: translateY(0);
    transition: all .3s;
    z-index: 2;
    border-radius: 0;
  }

  .op-box ul li>input[type="checkbox"]+label {
    width: 60px;
    height: 60px;
    background-size: 100%;
    background-position-Y: -60px;
    word-break: keep-all;
    padding-top: 60px;
  }

  .op-box ul li:nth-child(2)>input[type="checkbox"]+label,
  .op-box ul li:nth-child(3)>input[type="checkbox"]+label,
  .op-box ul li:nth-child(4)>input[type="checkbox"]+label,
  .op-box ul li:nth-child(5)>input[type="checkbox"]+label,
  .op-box ul li:nth-child(6)>input[type="checkbox"]+label,
  .op-box ul li:nth-child(7)>input[type="checkbox"]+label,
  .op-box ul li:nth-child(8)>input[type="checkbox"]+label {
    background-size: 100%;
    background-position-Y: -60px;
  }

  .op-box ul li>input[type="checkbox"]:checked+label {
    background-position-Y: 0;
  }

  .bottomList-slider>.row02 .bar-wrap {
    display: block;
    width: 100%;
    text-align: center;
    height: 30px;
    line-height: 30px;
    background: #fff;
  }

  .bottomList-slider>.row02 .bar-wrap .bar {
    display: inline-block;
    width: 40px;
    height: 5px;
    background: #ddd;
    border-radius: 5px;
  }

  .bottomList-slider>.row02>.select_wrap {
    top: 35px;
  }


  /* 매물슬라이더 오른쪽버튼 없음 */
  .btn-slider {
    display: none;
  }

  /* 모바일 하단매물리스트 없음 */
  .right-slider .bottomList-slider.off {
    transform: translateY(100%);
  }

  .right-slider .bottomList-slider.on03 {
    display: block;
  }

  /* 상권분석 버튼 */
  /* 상권분석 버튼 */
  .btn-stores01 {
    width: 45px;
    height: 45px;
    padding-top: 4px;
    position: absolute;
    left: 12px;
    top: 85px;
    box-shadow: 0 1px 6px 0 rgba(32, 33, 36, .28);
    border-color: #b4e4ef;
    white-space: nowrap;
  }

  .btn-calculator .img-wrap {
    display: inline-block;
    width: 29px;
    height: 25px;
    background: url(../icon/calculator.png) 50% -71px no-repeat;
    background-size: 200%;
    padding: 0;
  }

  .btnAly-wrap.on {
    display: block;
    position: absolute;
    left: 10px;
    top: 149px;
  }

  .btnAly-wrap .btn-aly {
    display: block;
    background: #fff;
    color: #00a2c5;
    width: 60px;
    border: 1px solid #b4e4ef;
    text-align: center;
    height: 20px;
    line-height: 20px;
    font-size: 11px;
    cursor: pointer;
  }

  .btnAly-wrap .btn-aly i {
    color: #00a2c5;
    font-weight: 700;
  }

  .btnAly-wrap .deth02 {
    display: none;
  }

  .btnAly-wrap .deth02.on {
    display: block;
  }

  .btnAly-wrap .deth02 li {
    margin-top: 5px;
    height: 30px;
    line-height: 29px;
    width: 50px;
    border-radius: 30px;
    background: #fff;
    text-align: center;
    font-size: 11px;
    box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
  }

  .btnAly-wrap .deth02 li.on {
    border: 1px solid #b4e4ef;
  }

  .btnAly-wrap .deth02 li.on span {
    color: #00a2c5;
    font-weight: 500;
  }

  .btnAly-wrap .deth02 li.sec {
    width: auto;
    padding: 0 10px;
    border: 1px solid #fe2c54;
  }

  .btnAly-wrap .deth02 li.sec i {
    font-size: 16px;
    color: #fe2c54;
    vertical-align: top;
    padding-top: 8px;
  }

  .btnAly-wrap .deth02 li.sec span {
    color: #fe2c54;
    font-weight: 500;
    white-space: nowrap;
  }

  .btn-calculator {
    display: block;
    width: 45px;
    height: 45px;
    padding-top: 4px;
    position: absolute;
    left: 12px;
    top: 55px;
    box-shadow: 0 1px 6px 0 rgba(32, 33, 36, .28);
    border: 1px solid #00a2c5;
    position: absolute;
    text-align: center;
    color: #00a2c5;
    font-size: 12px;
    padding-top: 3px;
    background: #fff;
    border-color: #b4e4ef;
    white-space: nowrap;
  }

  .btn-calculator p {
    display: block;
    margin-top: 0;
    font-size: 10px;
    font-weight: 500;
  }

  .btn-stores01 p {
    font-size: 10px;
    font-weight: 500;
  }

  .btn-stores01 .img-wrap {
    width: 29px;
    height: 25px;
  }

  .btn-stores01.on .img-wrap {
    background-position-y: -6px;
  }

  .search .bg-blocker {
    display: none !important;
  }

  /* 모바일 상권분석 지도 위 표시*/
  .map-color .saturation {
    display: block;
    height: auto;
    line-height: 19px;
    padding: 0;
    border-radius: 7px;
    /* background: #220ba6; */
    background: #fff;
    color: #000;
    white-space: nowrap;
    font-size: 11px;
    text-shadow: 0 0 2px #555;
    box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
  }

  .map-color.active .saturation {
    background: #4831cf;
    color: #fff;
  }

  .map-color .saturation span {
    display: block;
    height: 20px;
    line-height: 19px;
    padding: 0 10px;
    border-radius: 7px;
    /* background: #220ba6; */
    background: #4831cf;
    color: #fff;
    white-space: nowrap;
    font-size: 11px;
    text-shadow: 0 0 2px #555;
  }

  .map-color .saturation .mAlyNum {
    display: block;
    text-shadow: none;
    white-space: nowrap;
    font-size: 11px;
    padding: 0 10px;
    font-weight: 700;
  }

  .map-color .saturation .mAlyNum .text {
    display: inline-block;
    background: none;
    text-shadow: none;
    color: #000;
    font-size: 11px;
    padding: 0;
    font-weight: 300;
  }

  .map-color.active .saturation .mAlyNum .text {
    border: none;
    color: #fff;
  }

  .map-color .saturation .mAlyNum .text:hover {
    border: none;
  }

  .map-color .saturation .num {
    display: inline-block;
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    transform: translate(50%, -50%);
    min-width: 20px;
    height: 20px;
    line-height: 19px;
    border-radius: 20px;
    padding: 0 5px;
    background: #fff;
    color: #4831cf;
    border: 1px solid #4831cf;
    font-size: 11px;
    text-shadow: none;
    font-weight: 500;
  }

  .map-color.label_t .saturation {
    height: 25px;
    line-height: 24px;
  }

  .map-color.label_t .saturation span {
    font-size: 11px;
    line-height: 21px;
    text-shadow: none;
  }

  .map-color.label_t .saturation span.icon {
    width: 20px;
    height: 20px;
    background-size: 15px !important;
  }






  /* position 풀기 */
  .search .left-wrap,
  .search .click-box {
    position: static;
  }

  /* 상권분석 셀렉트 위치 잡기 */
  .select-box {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    transform: translateY(100%) !important;
    z-index: 11;
    border-radius: 20px 20px 0 0;
    margin: 0;
    opacity: 1 !important;
  }

  .select-box .row-02 {
    display: none;
  }

  .select-box .btn-wrap {
    display: none;
  }

  .select-box .row-03 {
    display: none;
  }

  .select-box.aos-animate {
    transition: all 1s;
    transform: translateY(0) !important;
  }

  .select-box .btn-wrap a {
    padding: 10px 20px;
  }

  /* 모바일 bg */
  .m-bg.on {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .8;
    z-index: 1;
  }

  /* 현재매물위치버튼 */
  .btn-my-location {
    right: 10px;
    width: 40px;
    height: 40px;
    line-height: 44px;
    border-radius: 40px;
    top: auto;
    bottom: 105px;
    border: solid 1px #eee;
    box-shadow: 0 1px 6px 0 rgba(32, 33, 36, .28);
    padding-top: 10px;
  }

  .btn-my-location img {
    width: 19px;
  }

  .btn-my-location i {
    font-size: 25px;
  }

  .option-wrap {
    top: 45px;
  }

  /* .option-all .btn_close {
    position: absolute;
    right: 20px;
    top: 13px;
    font-size: 24px;
    background: none;
    border: none;
  } */

  .option-all .btn_close {
    background: #000;
    color: #fff;
  }

  .option-all .btn-wrap {
    overflow: hidden;
    display: inline-block;
  }
  .option-all .btn-wrap {
    overflow: hidden;
    display: inline-block;
    position: fixed;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    bottom: 0;
    background: #fff;
  }

  .option-all .btn-wrap a {
    float: left;
    width: 125px;
    text-align: center;
    border: 1px solid #000;
    height: 40px;
    line-height: 38px;
    margin: 10px 15px 10px 0;
  }

  .option-all .btn-wrap a.btn-complete {
    margin: 0 0 5px;
    background-color: #000;
    color: #fff;
  }

  .product-view {
    height: 100%;
  }

  .content-view .content {
    height: calc(100% - 130px);
  }

  .search .photo-view {
    top: 0;
    height: 100%;
    padding: 0;
  }

  .photo-view .btn-close {
    right: 20px;
    top: 20px;
    font-size: 30px;
  }

  .loding {
    top: 50%;
    left: 50%;
  }

  .loding01 {
    display: none !important;
    top: 101px;
  }

  /* 짓다 */

  .makeSearch .loding01 {
    top: 95px;
  }

  .makeSearch .interest .icon {
    top: 15px;
  }

  .makeSearch.search .search-form-wrap {
    display: none;
  }

  .maker-box {
    position: absolute;
    left: 20px;
    top: 45px;
  }

  .makeSearch .right-slider .bottomList-slider>.row02>.select_wrap {
    top: 10px;
  }

  .makeSearch .right-slider .bottomList-slider>.row02>.select_wrap .array_select {
    top: 30px;
  }

  .makeSearch.search .bottomBtn-wrap .btn-wrap .btn-basket {
    right: auto;
    left: 20px;
    bottom: 30px;
  }

  .makeSearch .option-slider .swiper-slide {
    width: auto;
  }

  .makeSearch .right-slider .bottomList-slider>.row02 {
    top: 0;
    height: 50px;
    line-height: 50px;
    background: #fff;
    padding: 0 20px;
  }

  .makeSearch .right-slider .bottomList-slider>.row02 .search-form-wrap {
    display: none;
  }

  .makeSearch .right-slider .bottomList-slider>.row02>p {
    position: absolute;
    left: 20px;
    top: 10px;
  }

  .company-list .con-row .btn-campany {
    padding: 0;
  }

  .company-list .con-row {
    height: 180px;
    padding: 0;
  }

  .company-list .con-row .title-wrap>.img-wrap {
    left: 25px;
    top: 20px;
    width: 100px;
    padding-bottom: 100px;
  }

  .company-list .con-row .text-wrap {
    left: 135px;
    top: 20px;
    width: calc(100% - 160px);
  }

  .company-list .con-row .btn-caseView {
    left: 40px;
    bottom: 15px;
  }

  .company-list .con-row .text-wrap .sector span {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 11px;
  }

  .company-list .con-row .text-wrap .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
  }

  .bg-blocker {
    height: calc(100% - 50px);
    top: 50px !important;
  }

  /* .company-list .con-row .btn-caseView {
    right: auto;
    top: auto;
    left: 30px;
    bottom: 20px;
    transform: translateY(0);
    width: calc(100% - 165px);
    text-align: center;
    padding: 15px 10px;
  } */

  .company-list .con-row .btn-wrap {
    right: 15px;
    top: auto;
    transform: translateY(0);
    bottom: 10px;
    z-index: 1;
  }

  .company-list .con-row .btn-wrap a {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 10px;
  }

  .company-view .row-01 .img-wrap {
    margin-bottom: 20px;
  }

  .company-view .row-01 .text-wrap ul li .icon {
    width: 50px;
    height: 70px;
  }

  .company-view .row-01 .text-wrap ul li .icon img {
    width: 48px;
    height: 48px;
  }

  .company-view .row-01 .text-wrap ul li .icon p {
    font-size: 11px;
  }

  .company-view .row-01 .text-wrap {}

  .company-view .row-01,
  .company-view .row-02,
  .company-view .row-04 {
    padding: 25px 20px;
  }


  .company-view .row-04 .photo-wrap {}

  .company-view .row-05 {}

  /* .company-list .con-row .btn-caseView::before {
    display: none;
  } */

  .content-view .btn-wrap {
    padding-top: 12px;
  }

  /* 메인 높이조절 z-index조절 */
  #main.search.makeSearch.height {
    height: 100%;
    margin-top: 0;
  }

  .end-bg {
    box-shadow: -96px 0 40px -42px inset #fff;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    width: 80px;
    height: 50px;
    right: 25px;
    top: -1px;
    display: block;
  }

  .end-bg.on {
    display: none;
  }

  .makeSearch .swiper-slide.on:before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 1px);
    height: 2px;
    background: #1fadcc;
  }

  .select-box01.on {}


}


#prp-inquiry {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

#prp-inquiry.on {
  display: block;
}

#prp-inquiry .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
}

#prp-inquiry .form-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  width: 100%;
  padding: 35px 20px 100px;
  border-radius: 10px 10px 0 0;
}

#prp-inquiry .form-wrap h3 {
  margin-bottom: 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  font-size: 20px;
}

#prp-inquiry .int_box {
  height: auto;
  line-height: normal;
  margin-bottom: 15px;
  border: none;
}

#prp-inquiry input {
  height: 43px;
  line-height: 43px;
  padding: 0 10px;
  font-size: 14px;
  border: 1px solid #ddd;
  background: #fcfcfc;
  color: #777;
}

#prp-inquiry .btn-wrap {
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 30px;
}

#prp-inquiry .btn-wrap a {
  display: inline-block;
  width: 40%;
  padding: 10px 0;
  background: #220ba6;
  border: none;
  border-radius: 5px;
  color: #fff;
  text-align: center;
}

#prp-inquiry .int_box label {
  position: static;
  color: #220ba6;
  font-weight: bold;
  padding-left: 10px;
}

#prp-inquiry .agree_area {
  position: relative;
  margin-top: 10px;
}

#prp-inquiry .agree_area .form_checkbox {
  position: relative;
  padding-left: 15px;
  height: 45px;
  border: solid 1px #e2e7ed;
  line-height: 3;
  cursor: pointer;
  font-size: 14px;
}

#prp-inquiry .agree_area .form_checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  padding: 0;
  border: none;
}

#prp-inquiry .agree_area .form_checkbox input[type="checkbox"]+label {
  font-size: 14px;
  font-weight: 300;
}

#prp-inquiry .agree_area .btn_agreeBox {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 42px;
  height: 42px;
  background: #fff;
  border: none;

}

#prp-inquiry .agree_area .agree_text:before {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  width: 16px;
  height: 16px;
  background: url() no-repeat 0 0/contain;
  background-color: #777;
}

#prp-inquiry .agree_area .agree_text.on:before {
  background: url() no-repeat 0 0/contain;

}

#prp-inquiry .agree_area .ly_agree_box {
  display: none;
  position: absolute;
  left: 0;
  top: 50px;
  right: 0;
  padding: 6px 0;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 2px 6px 0 rgb(0 0 0 / 10%);
  z-index: 9;
}

#prp-inquiry .agree_area.on .ly_agree_box {
  display: block;
}

#prp-inquiry .agree_area .ly_agree_box a {
  overflow: hidden;
  display: block;
  padding: 7px 17px;
  font-size: 12px;
}

#prp-inquiry .agree_area .ly_agree_box a .text_info {
  float: right;
  text-decoration: underline;
  font-size: 10px;
  color: #9ea7ad;
}

#prp-inquiry .agree_area .btn_agreeBox:after {
  content: '';
  position: absolute;
  top: 14px;
  right: 12px;
  width: 16px;
  height: 16px;
  background: url(../icon/arrow06.png) no-repeat 0 3px/contain;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  /* .search .search-form-wrap {
    border: 1px solid #ddd;
    background: #fff;
  } */

  .modal-inquiry .agree_area .ly_agree_box {
    border: 1px solid #ddd;
  }
}