/* ——————————————————————————
 * bottom_fix
/* —————————————————————————— */
.bottom_fix,
.bottom_fix .list_bottom,
.bottom_fix .floating {
    -webkit-transition: all 0.6s cubic-bezier(0.5, -0.02, 0, 0.99);
    transition: all 0.6s cubic-bezier(0.5, -0.02, 0, 0.99);
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
}

.down .bottom_fix,
.lastScroll .bottom_fix,
.lastScroll .bottom_fix .list_bottom {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
}

.lastScroll .bottom_fix .list_bottom {
    opacity: 0;
}

.bottom_fix {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9980;
    width: 100%;
}

/* bar */
.bottom_fix .bar {
    position: relative;
    padding-bottom: calc(env(safe-area-inset-bottom));
    width: 100%;
    /* 아이폰X 하단 대응 */
    background: rgb(25, 96, 243);
}

.bottom_fix .bar ul {
    padding: 0;
    height: 55px;
}

.bottom_fix .bar ul li {
    float: left;
    height: 55px;
}

.bottom_fix .bar ul.ico_menu li:first-child {
    width: 55px;
    background: rgb(25, 96, 243);
}

.bottom_fix .bar ul.ico_menu li {
    width: calc(50% - 27.5px);
}

.bottom_fix .bar ul.ico_menu li a {
    display: block;
    margin-top: 16px;
    text-align: center;
    color: #fff;
}

.bottom_fix .bar ul.ico_menu li:nth-child(2) a {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.bottom_fix .bar ul.ico_menu li a span {
    display: block;
    margin: 18px 0 5px;
    font-size: 22px;
}

.bottom_fix .bar ul.ico_menu li a p {
    font-size: 16px;
    font-weight: 500;
}

/* floating */
.bottom_fix .floating {
    position: absolute;
    right: 10px;
    bottom: 80px;
    bottom: calc(env(safe-area-inset-bottom) + 80px);
    z-index: 10;

    /* 아이폰X 하단 대응 */
    opacity: 0;
}

.scrolled .bottom_fix .floating {
    opacity: 1;
}

.bottom_fix .floating .btn_plan {
    position: relative;
    width: 50px;
    height: 50px;
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

.bottom_fix .floating .btn_plan a.title_bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgb(252, 176, 69);
    background: -moz-linear-gradient(90deg, rgb(253, 74, 29) 0%, rgba(252, 134, 0) 100%);
    background: -webkit-linear-gradient(90deg, rgb(253, 74, 29) 0%, rgba(252, 134, 0) 100%);
    background: linear-gradient(90deg, rgb(253, 74, 29) 0%, rgba(252, 134, 0) 100%);
    border-radius: 50%;
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0, 0);
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fcb045", endColorstr="#b43a73", GradientType=1);
}

.bottom_fix .floating .btn_plan a.btn_big_rental {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background: #0054c8;
    border-radius: 50%;
}

.bottom_fix .floating .btn_plan a.title_text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 50px;
    height: 50px;
    font-size: 13px;
    font-weight: 500;
    line-height: 50px;
    text-align: center;
    color: #fff;
}

.bottom_fix .floating .btn_plan a.title_text2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    margin-top: 8px;
    width: 50px;
    height: 50px;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
    color: #fff;
}

.bottom_fix .floating .btn_top i {
    display: block;
    margin-top: -2px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.bottom_fix .floating .btn_kakao {
    width: 50px;
    height: 50px;
    background: #ffde00;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.bottom_fix .floating .btn_kakao i {
    display: block;
    font-size: 25px;
    color: #000;
}

/* bar_view */
.bottom_fix .bar_view {
    background: #fff;
    border-top: rgba(0, 0, 0, 0.1);
    border-radius: 0;
    -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.12);
}

.bottom_fix .bar_view .view_botom ul {
    padding: 8px 4px;
}

.bottom_fix .bar_view .view_botom ul li {
    padding: 0 4px;
    width: 18%;
}

.bottom_fix .bar_view .view_botom ul li.btn_inquire {
    width: 64%;
}

.bottom_fix .bar_view .view_botom li a {
    padding: 0;
}

.bottom_fix .bar_view .view_botom li a span {
    font-size: 20px;
}

/* list_bottom */
.bottom_fix .list_bottom {
    position: absolute;
    right: 0;
    bottom: 80px;
    bottom: calc(env(safe-area-inset-bottom) + 80px);
    left: 0;
    /* 아이폰X 하단 대응 */
    text-align: center;
}

.bottom_fix .list_bottom > ul {
    display: inline-block;
    overflow: hidden;
    height: 40px;
    line-height: 38px;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 2em;
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
}

.bottom_fix .list_bottom > ul > li {
    float: left;
}

.bottom_fix .list_bottom > ul > li.filter a {
    display: block;
    position: relative;
    padding: 0 15px 0 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.025em;
    border-right: 1px solid #eee;
}

.bottom_fix .list_bottom > ul > li.filter.on a:before {
    display: inline-block;
    content: "";
    position: absolute;
    top: 10px;
    right: 8px;
    width: 4px;
    height: 4px;
    background: #fb3939;
    border-radius: 50%;
}

.bottom_fix .list_bottom > ul > li.filter a span {
    display: inline-block;
    margin-right: 6px;
    width: 14px;
    font-size: 14px;
    line-height: 38px;
    vertical-align: bottom;
}

.bottom_fix .list_bottom > ul > li.sort .slt_sort .selectric {
    background: transparent;
    border: none;
}

.bottom_fix .list_bottom > ul > li.sort .slt_sort .selectric .label {
    position: relative;
    margin: 0;
    padding: 0 20px 0 15px;
    height: 38px;
    font-size: 13px;
    font-weight: 500;
    line-height: 38px;
    color: #2d2d2d;
}

.bottom_fix .list_bottom > ul > li.sort .slt_sort .selectric .label:before {
    display: inline-block;
    content: "\ea2b";
    margin-right: 6px;
    font-family: "mong-font" !important;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    line-height: 38px;
    font-variant: normal;
    vertical-align: bottom;
    text-transform: none;
    speak: none;
}

.bottom_fix .list_bottom > ul > li.sort .slt_sort .selectric .button {
    display: none;
}

.bottom_fix .floating button {
    display: block;
    margin-top: 8px;
}

/* smart_filter add */
.filt > ul {
    display: inline-block;
    overflow: hidden;
    width: 100%;
    height: 40px;
    line-height: 38px;
    background: #fff;
    border: 1px solid #e4e4e4;
}

.filt > ul > li {
    float: left;
    width: 50%;
}

.filt > ul > li.filter a {
    display: block;
    position: relative;
    z-index: 2;
    padding: 0 20px 0 25px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.025em;
    border-right: 1px solid #eee;
}

.filt > ul > li.filter.on a:before {
    display: inline-block;
    content: "";
    position: absolute;
    top: 10px;
    right: 20%;
    width: 4px;
    height: 4px;
    background: #fb3939;
    border-radius: 50%;
}

.filt > ul > li.filter a span {
    display: inline-block;
    margin-right: 6px;
    width: 14px;
    font-size: 14px;
    line-height: 38px;
    vertical-align: bottom;
}

.filt > ul > li.sort .slt_sort .selectric {
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
}

.filt > ul > li.sort .slt_sort .selectric .label {
    position: relative;
    margin: 0;
    padding: 0 25px 0 20px;
    height: 38px;
    font-size: 13px;
    font-weight: 500;
    line-height: 38px;
    color: #2d2d2d;
}

.filt > ul > li.sort .slt_sort .selectric .label:before {
    display: inline-block;
    content: "\ea2b";
    margin-right: 6px;
    font-family: "mong-font" !important;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    line-height: 38px;
    font-variant: normal;
    vertical-align: bottom;
    text-transform: none;
    speak: none;
}

.filt > ul > li.sort .slt_sort .selectric .button {
    display: none;
}

.location {
    display: table;
    padding: 0 15px;
    font-size: 15px;
    line-height: 18px;
    white-space: nowrap;
}

.location a,
.location em {
    display: table-cell;
    font-size: inherit;
    line-height: 41px;
    color: #333;
    white-space: nowrap;
}

.icon_before {
    display: table-cell;
    padding: 0 4px;
    white-space: nowrap;
}

.filter_wrap .left {
    float: left;
    width: 25%;
    min-width: 90px;
    min-height: 192px;
    background: #efefef;
    border-right: 1px solid #fff;
}

.left_list .opt {
    position: relative;
    border-top: 1px solid #fff;
}

.left_list .opt:last-child {
    border-bottom: 1px solid #e4e4e4;
}

.left_list .btn_opt {
    display: block;
    padding: 9px 7px 8px 15px;
    line-height: 1.1;
}

.left_list .on .btn_opt {
    font-weight: 600;
    background: #fff;
}

.left_list .on .btn_opt:after {
    content: "";
    position: absolute;
    top: 0;
    right: -1px;
    width: 2px;
    height: 100%;
    background: #fff;
}

.left_list .contents {
    display: inline-block;
    padding-top: 1px;
    max-width: 100%;
    font-size: 12px;
    vertical-align: top;
    letter-spacing: -0.06em;
    color: #33383e;
}

.left_list .count {
    float: right;
    margin-left: 3px;
}

.left_list .txt {
    display: block;
    white-space: nowrap;
}

.filter2_wrap .left2 {
    float: left;
    width: 25%;
    min-width: 92px;
    height: auto;
}

.left2_list li {
    border-top: 1px solid #e4e4e4;
}

.left2_list .none {
    border: none;
}

.left2_list .opt {
    position: relative;
}

.left2_list .btn_opt {
    display: block;
    padding: 9px 7px 8px 15px;
    line-height: 1.1;
}

.left2_list .on .btn_opt {
    font-weight: 600;
    background: #fff;
}

.left2_list .on .btn_opt:after {
    content: "";
    position: absolute;
    top: 0;
    right: -1px;
    width: 2px;
    height: 100%;
    background: #fff;
}

.left2_list .contents {
    display: inline-block;
    padding-top: 1px;
    max-width: 100%;
    font-size: 12px;
    vertical-align: top;
    letter-spacing: -0.06em;
    color: #33383e;
}

.left2_list .count {
    float: right;
    margin-left: 3px;
}

.left2_list .txt {
    display: block;
    white-space: nowrap;
}

.filter2_wrap .inner {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    background: #fff;
    -webkit-overflow-scrolling: touch;
}

.filter_wrap .right {
    -ms-flex: 1;
    flex: 1;
    position: relative;
    float: right;
    width: 75%;
    -webkit-box-flex: 1;
}

.filter_wrap .inner {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    height: 192px;
    background: #fff;
    -webkit-overflow-scrolling: touch;
}

.detail .inner::-webkit-scrollbar {
    width: 7px;
    background-color: rgba(255, 255, 255, 0);
}

.detail .inner::-webkit-scrollbar-track,
.detail .inner::-webkit-scrollbar-thumb {
    background-clip: padding-box;
    border: 2px solid rgba(255, 255, 255, 0);
    border-radius: 7px;
}

.detail .inner::-webkit-scrollbar-track {
    background-color: #ccc;
}

.detail .inner::-webkit-scrollbar-thumb {
    background-color: #888;
}

.detail .inner::-webkit-scrollbar-button:start:decrement,
.detail .inner::-webkit-scrollbar-button:end:increment {
    display: block;
    height: 3px;
    background: #fff;
}

.loader,
.loader:after {
    position: relative;
    top: -83px;
    width: 6em;
    height: 6em;
    border-radius: 50%;
}

.loader_Wrap {
    position: relative;
    z-index: 1111;
    width: 100%;
    height: 120%;
}

.loader_position {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1111;
    margin: -37.5px 0 0 -37.5px;
    width: 75px;
    height: 75px;
}

.loader_position:before {
    display: inline-block;
    content: "";
    width: 65px;
    height: 65px;
    background: url(../images/loading.gif) no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    border: solid 5px #fff;
    border-radius: 50%;
    box-shadow: 0 3px 8px 0 rgb(0 0 0 / 10%);
}

.mongLayer_wrap {
    display: block;
}

.ot_conent {
    text-align: center;
}
