@charset "utf-8";
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

@font-face {
    font-family: 'SDGothicNeo';
    src: url('/res/font/AppleSDGothicNeoL.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'SDGothicNeo';
    src: url('/res/font/AppleSDGothicNeoR.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'SDGothicNeo';
    src: url('/res/font/AppleSDGothicNeoM.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'SDGothicNeo';
    src: url('/res/font/AppleSDGothicNeoSB.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'SDGothicNeo';
    src: url('/res/font/AppleSDGothicNeoB.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'ghanachoco';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@1.0/ghanachoco.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'yg-jalnan';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_four@1.2/JalnanOTF00.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
:root {
    --pt-bg-1: #eef8f3;
    --pt-color-1: #5c9b70;
    --pt-bg-2: #f5f8e9;
    --pt-color-2: #778738;
    --pt-bg-3: #fffbe5;
    --pt-color-3: #8d813e;
    --pt-bg-4: #fef2f0;
    --pt-color-4: #b96759;
    --pt-bg-5: #f7f2fb;
    --pt-color-5: #ad73b2;
    --pt-bg-6: #f0f7ff;
    --pt-color-6: #3e628d;
    --hl-color-1: #78aa52;
    --hl-color-2: #4ebcb3;
    --hl-color-3: #36b0d8;
    --hl-color-4: #706fbf;
    --hl-color-5: #d19e10;
    --hl-color-6: #ec7f62;
    --hl-color-7: #f6365b;
    --hl-color-8: #a348a7;
    --line-f9f9f9: #f9f9f9;
    --line-f5f5f5: #f5f5f5;
    --line-e3e2e2: #e3e2e2;
    --line-2b2b2b: #2b2b2b;
    --color-red: #ed3f27;
    --color-white: #ffffff;
    --color-red-m: #f6365b;
    --color-black: #0e0e0e;
    --color-fffaf3: #fffaf3;
    --color-888888: #888888;
    --color-696969: #696969;
    --color-4a4c4d: #4a4c4d;
    --footer-bg: #404352;
    --footer-line: #393d4b;
    --footer-color-1: #c4cdc6;
    --search-border: #ffe8e5;
    --search-bg: #fff8f8;
    --search-op-bg: #fdfdfd;
    --select-bg: #fafafa;
    --text-shadow-black: 0 0 2px rgba(0, 0, 0, 0.05);
    --box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Apple SD Gothic Neo', 'SDGothicNeo', sans-serif;
    font-weight: 400;
}
body {
    width: 100%;
    font-size: 14px;
    background-color: var(--line-f5f5f5);
}
body.showLayer {
    overflow: hidden;
    touch-action: none;
}
body::-webkit-scrollbar {
    width: 8px;
}
body::-webkit-scrollbar-button:start:decrement,
body::-webkit-scrollbar-button:end:increment {
    display: block;
    height: 0;
}
body::-webkit-scrollbar-track {
    background-color: var(--search-border);
    border-radius: 2px;
    height: 15px;
}
body::-webkit-scrollbar-thumb {
    background-color: var(--color-red);
    border-radius: 2px;
}
a,
a:hover,
a:valid,
a:active,
a:focus {
    text-decoration: none;
}
ul,
ol {
    list-style-type: none;
}
main {
    position: relative;
    min-height: 1200px;
}
input:focus,
button:focus,
textarea:focus {
    outline: none;
}
input,
button,
select,
textarea{
    -webkit-border-radius:0;
    -webkit-appearance:none;
}
input,
button,
textarea {
    font-size: 14px;
}
input::placeholder,
textarea::placeholder {
    color: var(--line-e3e2e2);
    font-size: 14px;
}
.fr-view hr {
    border-color: transparent;
    border-top: 1px solid var(--line-f5f5f5) !important;

}
.flex {
    display: flex;
    align-items: center;
}
.block {
    display: block;
}
.grid {
    display: grid;
}
.hide,
.m_hide {
    display: none !important;
}
.wrapper {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}
.pointer {
    cursor: pointer;
}
.relative {
    position: relative;
}
.logo .symbol {
    width: 19px;
    height: 22px;
    background-image: url('/res/svg/logo-symbol.svg');
    background-repeat: no-repeat;
    background-position: center center;
    margin-right: 10px;
}
.logo .text {
    width: 86px;
    height: 22px;
    background-image: url('/res/svg/logo-text.svg');
    background-repeat: no-repeat;
}
.logo .text.footer {
    background-image: url('/res/svg/logo-text-footer.svg');
}
.hText {
    text-indent: -9999px;
}
.ellipsis1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.ellipsis2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.color-red {
    color: var(--color-red);
}
.hover-red:hover {
    color: var(--color-red);
}
.box-shadow {
    box-shadow: var(--box-shadow);
    background-color: var(--color-white);
}
.item-shadow {
    box-shadow: var(--box-shadow);
}
.item-shadow:hover {
    box-shadow: none;
}
.offer-margin-top {
    margin-top: 80px;
}
.main-margin-top-20 {
    margin-top: 20px;
}
.main-margin-top {
    margin-top: 40px;
}
.lt05 {
    letter-spacing: -0.5px;
}
.split {
    display: inline-block;
    width: 1px;
    height: 7px;
    border-right: 1px solid var(--line-e3e2e2);
    margin: 0 5px;
}
.offer-color-01 {
    color: var(--hl-color-1) !important;
}
.offer-color-02 {
    color: var(--hl-color-2) !important;
}
.offer-color-03 {
    color: var(--hl-color-3) !important;
}
.offer-color-04 {
    color: var(--hl-color-4) !important;
}
.offer-color-05 {
    color: var(--hl-color-5) !important;
}
.offer-color-06 {
    color: var(--hl-color-6) !important;
}
.offer-color-07 {
    color: var(--hl-color-7) !important;
}
.offer-color-08 {
    color: var(--hl-color-8) !important;
}
.payicon {
    justify-content: center;
    font-family: 'Apple SD Gothic Neo', 'SDGothicNeo', sans-serif;
    line-height: 20px;
    width: 30px;
    height: 20px;
    position: relative;
    color: var(--color-696969);
    background-color: var(--line-f5f5f5);
    font-size: 11px;
    font-weight: 600;
}
.payicon.offer-color-bg-01 {
    color: var(--hl-color-1);
    background-color: rgba(120, 170, 82, 0.07);
}
.payicon.offer-color-bg-02 {
    color: var(--hl-color-2);
    background-color: rgba(78, 188, 179, 0.07);
}
.payicon.offer-color-bg-03 {
    color: var(--hl-color-3);
    background-color: rgba(54, 176, 216, 0.07);
}
.payicon.offer-color-bg-04 {
    color: var(--hl-color-4);
    background-color: rgba(112, 111, 191, 0.07);
}
.payicon.offer-color-bg-05 {
    color: var(--hl-color-5);
    background-color: rgba(209, 158, 16, 0.07);
}
.payicon.offer-color-bg-06 {
    color: var(--hl-color-6);
    background-color: rgba(236, 127, 98, 0.07);
}
.payicon.offer-color-bg-07 {
    color: var(--hl-color-7);
    background-color: rgba(246, 54, 91, 0.07);
}
.payicon.offer-color-bg-08 {
    color: var(--hl-color-8);
    background-color: rgba(163, 72, 167, 0.07);
}
.paytype_6 {
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0px;
}
.f10 {
    font-size: 11px;
}
.f11 {
    font-size: 11px;
}
.f12 {
    font-size: 12px;
}
.f13 {
    font-size: 13px;
}
.f14 {
    font-size: 14px;
}
.f15 {
    font-size: 15px;
}
.f16 {
    font-size: 16px;
}
.f17 {
    font-size: 17px;
}
.f18 {
    font-size: 18px;
}
.f19 {
    font-size: 19px;
}
.f20 {
    font-size: 20px;
}
.f21 {
    font-size: 21px;
}
.f22 {
    font-size: 22px;
}
.f23 {
    font-size: 23px;
}
.f24 {
    font-size: 24px;
}
.f25 {
    font-size: 25px;
}
.f26 {
    font-size: 26px;
}
.w300 {
    font-weight: 300;
}

.w400 {
    font-weight: 400;
}

.w500 {
    font-weight: 500;
}

.w600 {
    font-weight: 600;
}

.w700 {
    font-weight: 700;
}
.pagination_box {
    width: 100%;
}
#pagination {
    display: flex;
    align-items: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#pagination li {
    padding: 1px;
}
#pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    border: 1px solid var(--line-f5f5f5);
    color: var(--color-888888);
    height: 32px;
    min-width: 32px;
    font-size: 0.6875rem;
    padding: 0 5px;
}
#pagination li a.first,
#pagination li a.last,
#pagination li a.prev,
#pagination li a.next {
    font-size: 13px;
    padding-bottom: 2px;
}
#pagination li a.active {
    /* border: 1px solid var(--color-red); */
    background-color: var(--color-red);
    color: var(--color-white);
    font-size: 13px;
}
#pagination li:not(.active) a:hover {
    /* border: 1px solid rgba(0, 0, 0, 0.03); */
    background-color: rgba(0, 0, 0, 0.03);
    color: var(--color-888888);
    font-size: 13px;
}
#pagination li a.prev ion-icon,
#pagination li a.next ion-icon {
    font-weight: 300;
    top: 0;
}
#Layer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1015;
    justify-content: center;
}
#Layer h2 {
    padding: 0 0 0 25px;
    height: 90px;
}
#Layer h2 ion-icon {
    margin-left: auto;
}
#Layer .layer_header.non_top {
    border-bottom: 1px solid var(--line-e3e2e2);
}
#Layer .closeLayer.iconBold,
#Layer_welcome .closeWelcomeLayer.iconBold {
    width: 55px;
    height: 55px;
    display: inline-block;
    background-image: url(/res/svg/m_layer_x.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px 15px;
    margin-right: auto;
}
#Layer h2 .closeLayer.iconBold {
    width: 65px;
    height: 100%;
    background-size: 15px 15px;
    margin-left: auto;
    margin-right: unset;
}
#Layer .layer_body {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
#Layer .content {
    padding: 25px;
    width: 850px;
    flex: 1;
}
#Layer .adbtnbox,
._cs_v .ad_placement .adbtnbox {
    margin-bottom: 25px;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
    padding: 0 10px;
}
._cs_v .ad_placement .adbtnbox {
    padding: 0;
    margin-bottom: 50px;
}
#Layer .adbtnbox button,
._cs_v .ad_placement .adbtnbox button {
    width: 100%;
    height: 60px;
    border: 1px solid var(--line-f5f5f5);
    background-color: var(--color-white);
    font-size: 17px;
    color: var(--color-888888);
    cursor: pointer;
}
#Layer .adbtnbox button:hover,
#Layer .adbtnbox button.active,
._cs_v .ad_placement .adbtnbox button:hover,
._cs_v .ad_placement .adbtnbox button.active {
    border-color: var(--color-red);
    color: var(--color-red);
}
#Layer .closeLayer {
    cursor: pointer;
    font-size: 36px;
}
#Layer .origin_pop .closeLayer {
    position: absolute;
    right: 35px;
    top: 35px;
    width: 35px;
    height: 35px;
    z-index: 100;
}
#Layer .origin_pop {
    width: 850px;
    height: 805px;
    background-color: var(--color-white);
}
#Layer .origin_pop .content {
    width: 100%;
    height: 100%;
    padding: 110px 35px;
}
#Layer .origin_pop .content img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}
#Layer .origin_pop :where(.swiper-button-next, .swiper-button-prev) {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.5);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 35px 18px;
    background-image: url(/res/svg/m_drop.svg);
}
#Layer .origin_pop .swiper-button-next:after,
#Layer .origin_pop .swiper-button-prev:after {
    content: none;
}
#Layer .origin_pop .swiper-button-next {
    right: 65px;
    transform: rotate(-90deg);
}
#Layer .origin_pop .swiper-button-prev {
    left: 65px;
    transform: rotate(90deg);
}
#Layer .origin_pop .swiper-pagination.origin {
    bottom: 60px;
}
#Layer .origin_pop :where(.swiper-pagination.origin, .swiper-pagination.origin span) {
    font-size: 16px;
    color: var(--color-4a4c4d);
}
#Layer .report {
    width: 550px;
}
#Layer .report ul {
    margin-top: 10px;
}
#Layer .report li {
    margin-top: 20px;
}
#Layer .report li:first-child {
    margin-top: 0;
}
#Layer .report li textarea {
    resize: none;
    width: 100%;
    height: 100px;
    padding: 15px;
    border: 1px solid var(--line-e3e2e2);
}
#Layer .report li.button {
    justify-content: center;
    padding-bottom: 10px;
}
#Layer .report li button[type='submit'] {
    width: 200px;
    height: 60px;
    color: var(--color-white);
    background-color: var(--color-red);
    border: none;
}
.layer-bg {
    background-color: var(--color-white) !important;
}
#chatLayer .message {
    width: 450px;
    height: 450px;
    overflow-y: scroll;
    padding: 20px;
}
#chatLayer .message li {
    margin-top: 15px;
}
#chatLayer .message li:first-child {
    margin-top: 0;
}
#chatLayer .message .msg {
    display: inline-flex;
    width: auto;
    max-width: 300px;
    padding: 20px;
    background-color: var(--pt-bg-1);
    color: var(--color-4a4c4d);
    border-radius: 15px;
}
#chatLayer .message .time {
    margin-top: 10px;
    color: var(--color-696969);
    padding: 0 5px;
}
#chatLayer .message li.right .type1 {
    margin-left: auto;
    text-align: right;
}
#chatLayer .message li.right .msg {
    background-color: var(--pt-bg-4);
    text-align: left;
}
#chatLayer .message .date {
    justify-content: center;
    padding-bottom: 15px;
}
#chatLayer .message .date .time {
    display: block;
    margin: 0;
    padding: 0;
    background-color: var(--line-f9f9f9);
    padding: 8px 15px;
    border-radius: 15px;
}
#chatLayer .inputBox {
    border-top: 1px solid var(--line-e3e2e2);
    padding: 15px;
    background-color: var(--select-bg);
}
#chatLayer .inputBox input {
    width: 100%;
    height: 55px;
    border: solid 1px var(--line-e3e2e2);
    border-radius: 28px;
    padding: 0 15px;
    background-color: transparent;
}
#chatLayer .inputBox input:focus {
    border: solid 1px var(--line-e3e2e2);
    background-color: var(--color-white);
}
#Layer_welcome {
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: -1000%;
    z-index: -100;
    transition: left ease 0.4s;
}
#Layer_welcome.on {
    left: 0;
    z-index: 1000;
}
.log_size {
    width: 900px;
    height: 550px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.13);
    background-color: var(--color-white);
    position: relative;
}
.curved {
    position: relative;
    width: 100%;
    height: 100%;
}
.curved {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1002;
    width: 100%;
    height: 100%;
}
.curved::after {
    content: '';
    position: absolute;
    bottom: 45px;
    left: 12%;
    width: 70%;
    height: 70%;
    background-color: #000000;
    transform-origin: right;
    transform: skewY(-7.5deg) skewX(-30deg) rotate(3deg);
    filter: blur(7px);
    opacity: 0.3;
    z-index: 1001;
}
.curved::before {
    content: '';
    position: absolute;
    bottom: 45px;
    right: 12%;
    width: 70%;
    height: 70%;
    background-color: #000000;
    transform-origin: left;
    transform: skewY(7.5deg) skewX(30deg) rotate(-3deg);
    filter: blur(7px);
    opacity: 0.3;
    z-index: 1001;
}
.login_image_box {
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
}
.login_image_box.bg_1 {
    background-image: url(/res/images/login/bg1.jpg);
}
.login_image_box.bg_2 {
    background-image: url(/res/images/login/bg2.jpg);
}
.login_image_box.bg_3 {
    background-image: url(/res/images/login/bg3.jpg);
}
.login_image_box.bg_4 {
    background-image: url(/res/images/login/bg4.jpg);
}
.login_image_box.bg_5 {
    background-image: url(/res/images/login/bg5.jpg);
}
.login_image_box.bg_6 {
    background-image: url(/res/images/login/bg6.jpg);
}
.login_image_box.bg_7 {
    background-image: url(/res/images/login/bg7.jpg);
}
.login_image_box.bg_8 {
    background-image: url(/res/images/login/bg8.jpg);
}
.login_image_box.bg_9 {
    background-image: url(/res/images/login/bg9.jpg);
}
.login_image_box.bg_10 {
    background-image: url(/res/images/login/bg10.jpg);
}
.login_image_box.bg_event {
    background-image: url(/res/images/login/event_bg_r.png?v=1);
    background-size: 340px 67%;
    background-position: 496px center;
}
.log_size .contents {
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    z-index: 1003;
    padding: 40px 50px;
}
.log_size .nt_box {
    margin-top: 67px;
    margin-bottom: 57px;
}
.img_19 {
    width: 50px;
    height: 50px;
    background-image: url(/res/svg/19.svg);
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 15px;
}
.log_size .nt_box .description p {
    line-height: 1.5;
    letter-spacing: -0.36px;
    color: var(--color-888888);
}
.return_site {
    position: absolute;
    bottom: -28px;
    left: 0;
    width: 99px;
    height: 23px;
    border-radius: 3px;
    background-color: var(--line-f5f5f5);
    letter-spacing: -0.33px;
    color: var(--color-888888);
    justify-content: center;
    display: flex;
    align-items: center;
}
.templete-1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
.lc_list_box {
    height: 155px;
    width: 100%;
}
#Layer_welcome.guest .lc_list_box {
    height: 100px;
}
.lc_list {
    height: 0;
    width: 280px;
    overflow: hidden;
    opacity: 0;
    transition: height ease 0.3s, opacity ease 0.5s;
    position: absolute;
    bottom: 0;
}
.lc_list.login.on {
    height: 155px;
    opacity: 1;
}
#Layer_welcome.guest .lc_list.login.on {
    height: 100px;
    opacity: 1;
}
.lc_list.certi.on {
    /* height: 155px; */
    height: 100px;
    opacity: 1;
}
.lc_list .item {
    width: 100%;
    height: 45px;
    border-radius: 3px;
    overflow: hidden;
    justify-content: center;
    flex: 1;
}
.lc_list .item.kakao {
    background-color: #f7e000;
}
.lc_list .item:where(.google, .phone, .i-pin) {
    background-color: var(--line-f5f5f5);
}
.lc_list .item.naver {
    background-color: #0ec961;
}
.lc_list .item:where(.certi, .sns) {
    background-color: var(--color-white);
    border: 1px solid #e0e0e0;
}
.lc_list .item .icon {
    width: 44px;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px 15px;
    border-right: 1px solid;
}
.lc_list .item.kakao .icon {
    background-image: url(/res/svg/login_kakao.svg);
    border-right-color: #f4c300;
}
.lc_list .item.google .icon {
    background-image: url(/res/svg/login_google.svg);
    border-right-color: #e2e2e2;
}
.lc_list .item.naver .icon {
    background-image: url(/res/svg/login_naver.svg);
    border-right-color: #29ab00;
}
.lc_list .item.certi .icon {
    background-image: url(/res/svg/login_lock.svg);
    border-right-color: #e0e0e0;
}
.lc_list .item.phone .icon {
    background-image: url(/res/svg/login_hp.svg);
    border-right-color: #e2e2e2;
}
.lc_list .item.i-pin .icon {
    background-image: url(/res/svg/login_ipin.svg);
    border-right-color: #e2e2e2;
}
.lc_list .item.sns .icon {
    background-image: url(/res/svg/login_talk.svg);
    border-right-color: #e0e0e0;
}
.lc_list .item .text {
    justify-content: center;
    letter-spacing: -0.42px;
    color: var(--color-696969);
    width: 233px;
}
.lc_list.certi .item .text {
    color: var(--color-888888);
}
.lc_list .item.naver .text {
    color: var(--color-white);
}
.log_size .copyright {
    position: absolute;
    bottom: 40px;
    left: 50px;
    color: var(--color-888888);
}
#Layer_welcome .closeWelcomeLayer.iconBold {
    display: none;
}
#Layer_welcome.guest .closeWelcomeLayer.iconBold {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1010;
}
#kakaomap {
    width: 100%;
    height: 400px;
}
#map_wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 350px;
}
#map_wrap .radius {
    border: 1px solid var(--color-888888);
    border-radius: 5px;
}
#map_wrap .typecontrol {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 132px;
    height: 30px;
    overflow: hidden;
    z-index: 1;
}
#map_wrap .typecontrol button {
    display: flex;
    justify-content: center;
    width: 65px;
    height: 30px;
    float: left;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    border: none;
}
#map_wrap .typecontrol button {
    background: var(--color-white);
    background: linear-gradient(var(--color-white), #e6e6e6);
}
#map_wrap .typecontrol button:hover {
    background: var(--line-f5f5f5);
    background: linear-gradient(var(--line-f5f5f5), var(--line-e3e2e2));
}
#map_wrap .typecontrol button:active {
    background: #e6e6e6;
    background: linear-gradient(#e6e6e6, var(--color-white));
}
#map_wrap .typecontrol button.selected {
    color: var(--color-white);
    background: #425470;
    background: linear-gradient(#425470, #5b6d8a);
}
#map_wrap .typecontrol button.selected:hover {
    color: var(--color-white);
    background: #425470;
    background: linear-gradient(#425470, #5b6d8a);
}
#map_wrap .zoomcontrol {
    position: absolute;
    top: 50px;
    right: 10px;
    width: 36px;
    height: 80px;
    overflow: hidden;
    z-index: 1;
    background-color: var(--line-f5f5f5);
}
#map_wrap .zoomcontrol button {
    width: 36px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    border: none;
}
#map_wrap .zoomcontrol button img {
    width: 15px;
    height: 15px;
}
#map_wrap .zoomcontrol button:first-child {
    border-bottom: 1px solid #bfbfbf;
}

#kakaomap > div:nth-child(1) > div > div:nth-child(6) > div:nth-child(2) {
    width: 420px !important;
    height: 118px !important;
    display: flex;
}
#kakaomap > div:nth-child(1) > div > div:nth-child(6) > div:nth-child(2) > div:nth-child(2) {
    width: 100%;
    height: 100%;
}
#iwContent {
    width: 100%;
    height: 100%;
    display: flex;
}
#iwContent .photo,
#iwContent .none_image {
    width: 118px;
    height: 100%;
}
#iwContent .photo img {
    display: block;
    width: 100%;
    height: 100%;
}
#iwContent .description {
    flex: 1;
    padding: 15px;
}
#iwContent .description h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
#iwContent .description .btnbox {
    margin-top: 10px;
    display: flex;
}
#iwContent .description a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    background-color: var(--color-red);
    color: var(--color-white);
    border-radius: 3px;
    margin-right: 5px;
    font-size: 13px;
    padding: 0 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
#iwContent .description a:first-child {
    background-color: #3496ff;
}
#iwContent .description a ion-icon {
    margin-right: 5px;
}
.btn-radio {
    background-color: transparent;
    border: none;
    color: var(--color-696969);
    transition: var(--transition);
}
.btn-radio .radio {
    position: relative;
    top: 0px;
    display: flex;
    width: 18px;
    height: 18px;
    border: 2px solid var(--line-e3e2e2);
    border-radius: 50%;
    margin-right: 10px;
}
.Custom-select .btn-radio.selected,
.btn-radio.checked {
    color: var(--color-red-m);
}
.Custom-select .btn-radio.selected .radio,
.btn-radio.checked .radio {
    border: 2px solid var(--color-red-m);
}
.Custom-select .btn-radio.selected .text {
    color: var(--color-red-m) !important;
}
.Custom-select .btn-radio.selected .radio::before,
.btn-radio.checked .radio::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 7px;
    height: 7px;
    background-color: var(--color-red-m);
    border-radius: 50%;
    transition: var(--transition);
}
.boxCheckbox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}
.boxCheckbox input {
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    appearance: unset;
}
.boxCheckbox .text {
    color: var(--color-696969);
}
.boxCheckbox input:checked ~ .text {
    color: var(--color-red-m);
}
.boxCheckbox input:checked ~ .boxing {
    position: absolute;
    top: -1px;
    left: -1px;
    border: 1px solid var(--color-red-m);
    width: 101%;
    height: 104%;
}
label.checkbox {
    display: flex;
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 0.8125rem;
    letter-spacing: -0.39px;
    color: var(--main-font-lightblack);
}
label.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
label.checkbox .text {
    font-size: 13px;
    letter-spacing: -0.39px;
    color: var(--color-888888);
}
label.checkbox .checkmark {
    position: absolute;
    top: 1px;
    left: 0;
    width: 13px;
    height: 13px;
    border-radius: 2px;
    border: solid 1px var(--line-e3e2e2);
    background-color: var(--color-white);
}
label.checkbox input:checked ~ .checkmark {
    background-color: var(--color-red-m);
    border: none;
    transition: all ease 0.2s;
}
label.checkbox .checkmark:after {
    content: '';
    position: absolute;
    display: none;
}
label.checkbox input:checked ~ .checkmark:after {
    display: block;
}
label.checkbox .checkmark:after {
    left: 4px;
    top: -1px;
    width: 3px;
    height: 10px;
    border: solid var(--color-white);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all ease 0.2s;
}
label.checkbox.radioStyle {
    padding-left: 30px;
}
label.checkbox.radioStyle .checkmark {
    top: 50%;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    transform: translateY(-50%);
}
label.checkbox.radioStyle input:checked ~ .checkmark {
    border: 2px solid var(--color-red-m);
    background-color: var(--color-white);
    transition: unset;
}
label.checkbox.radioStyle .checkmark:after {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: none;
    border-radius: 50%;
    width: 7px;
    height: 7px;
    background-color: var(--color-red-m);
}
.event_popup {
    width: 415px;
    position: fixed;
    top: 50%;
    left: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%);
    z-index: 101;
    box-shadow: 5px 5px 40px rgba(0, 0, 0, 0.60);
}
.event_popup .event_body img,
.event_popup .event_body a {
    width: 100%;
    height: auto;
}
.event_popup .btn_box {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--line-e3e2e2);
}
.event_popup .btn_box a {
    flex: 1;
    width: 100%;
    height: 100%;
    color:var(--color-4a4c4d);
    display: flex;
    align-items: center;
    justify-content: center;
}
.event_popup .btn_box a.closeEvent {
    border-left: 1px solid var(--line-e3e2e2);
}
.event_popup .btn_box a .text {
    font-weight: 500;
}