@charset "utf-8";

/* CSS 내용 */

#bbs_contents {
    padding-top: 5px !important;
}

/* +++카카오맵 노출 부분+++ CSS */
.map_space {
    padding-top: 0 !important;
}

.map_wrap {
    padding-top: 0 !important;
}

/* +++카카오맵 컨트롤 관련+++ CSS */
.map {
    z-index: 0;
}

.Cotrl_bttn {
    display: flex;
    justify-content: center;
    height: 0px;
}

.radius_border {
    border-radius: 15px;
}

/* 지도 확대 축소 컨트롤+++++++++++++++++++++++++++++++++++++++++++++++++ */
.custom_zoomcontrol {
    position: absolute;
    top: -70px;
    width: 100;
    height: 50px;
    overflow: hidden;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom_zoomcontrol span {
    display: flex;
    width: 60px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.custom_zoomcontrol span img {
    width: 30px;
    /* padding: 12px 0; */
    border: none;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0, -0.01, 0, 1);
}

.custom_zoomcontrol span:first-child {
    border-right: 1px solid #9f9f9f;
}

.custom_zoomcontrol span img:hover {
    width: 40px;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0, -0.01, 0, 1);
}

.custom_zoomcontrol span img:active {
    width: 40px;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0, -0.01, 0, 1);
}

/* 현재 위치 컨트롤+++++++++++++++++++++++++++++++++++++++++++++++++ */
.custom_return {
    display: flex;
    justify-content: center;
    position: absolute;
    overflow: hidden;
    cursor: pointer;
    top: -370px;
    width: 175px;
    height: 30px;
    z-index: 2;
}

.cicle_box {
    width: 30px;
    background: rgb(50 50 50/50%);
    transition: all 0.3s cubic-bezier(0.65, 0, 0.076, 1);
}

.custom_return:hover .cicle_box {
    width: 175px;
    transition: all 0.3s cubic-bezier(0.65, 0, 0.076, 1);
}

/* 현재 위치 아이콘 */
.custom_return span {
    position: relative;
    transition: all 0.3s cubic-bezier(0.65, 0, 0.076, 1);
    width: 0;
    height: 0;
    top: 0px;
    left: 0px;
}

.custom_return:hover span {
    left: 15px;
    transition: all 0.3s cubic-bezier(0.65, 0, 0.076, 1);
}

.custom_return span img {
    width: 30px;
    height: 30px;
    border: none;
}

/* 현재위치로 돌아가기 텍스트 */
.button_text {
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    /*폰트 설정*/
    font-family: 'Noto Sans KR';
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    letter-spacing: -1px;
    /*위치 설정*/
    top: 3.5px;
    left: 46px;
    margin-bottom: 0;
}

.custom_return:hover .button_text {
    opacity: 100%;
    transition: all 0.3s cubic-bezier(0.65, 0, 0.076, 1) 0.25s;
}

/* [모바일] 포인터가 있는 경우만 호버 기능 정의 */
@media screen and (max-width:768px) {

    /* 지도 확대 축소 컨트롤+++++++++++++++++++++++++++++++++++++++++++++++++ */
    .custom_zoomcontrol {
        position: absolute;
        top: -70px;
        width: 100;
        height: 50px;
        overflow: hidden;
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .custom_zoomcontrol span {
        display: flex;
        width: 60px;
        height: 40px;
        text-align: center;
        cursor: pointer;
        justify-content: center;
        align-items: center;
    }

    .custom_zoomcontrol span img {
        width: 30px;
        /* padding: 12px 0; */
        border: none;
        transition-duration: 0.3s;
        transition-timing-function: cubic-bezier(0, -0.01, 0, 1);
    }

    .custom_zoomcontrol span:first-child {
        border-right: 1px solid #9f9f9f;
    }

    @-webkit-keyframes zoom_button {
        0% {
            zoom: 1;
        }

        50% {
            zoom: 1.15;
        }

        100% {
            zoom: 1;
        }
    }

    .custom_zoomcontrol span img:active {
        width: 40px;
        animation: zoom_button;
        animation-duration: 0.4s;
        transition-timing-function: cubic-bezier(0, 0, 0, 1);
    }

    /* 현재 위치 컨트롤+++++++++++++++++++++++++++++++++++++++++++++++++ */
    .custom_return {
        display: flex;
        justify-content: center;
        position: absolute;
        overflow: hidden;
        cursor: pointer;
        top: -390px;
        left: 10px;
        width: 30px;
        height: 30px;
        z-index: 2;
    }

    .cicle_box {
        width: 30px;
        background: rgb(50 50 50/50%);
    }

    @-webkit-keyframes cicle_box {
        0% {
            background: rgb(210 210 210/50%);
        }

        100% {
            background: rgb(50 50 50/50%);
        }
    }

    .cicle_box:active {
        animation: cicle_box;
        animation-duration: 0.8s;
        transition-timing-function: cubic-bezier(1, 0, 1, 1);

    }

    @-webkit-keyframes custom_return_span {
        0% {
            -webkit-filter: invert(70%);
        }

        100% {
            -webkit-filter: invert(0%);
        }
    }

    /* 현재 위치 아이콘 */
    .custom_return span {
        position: relative;
        width: 0;
        height: 0;
        top: 0px;
        left: 0px;
    }

    .custom_return span:active {
        animation: custom_return_span;
        animation-duration: 0.8s;
        transition-timing-function: cubic-bezier(1, 0, 1, 1);
    }
    
    /* 호버 무효화 */
    .custom_return:hover span {
        left: 0px;
    }


    .custom_return span img {
        width: 30px;
        height: 30px;
        border: none;
    }

    /* 현재위치로 돌아가기 텍스트 */
    .button_text {
        display: none;
    }

}

/* +++카카오맵 지도 내 마커 및 윈포 윈도우 CSS+++ */
.wrap {
    position: absolute;
    left: 0;
    bottom: 40px;
    width: 288px;
    height: 124px;
    margin-left: -144px;
    text-align: left;
    overflow: hidden;
    font-size: 12px;
    font-family: 'Noto Sans KR', '돋움', sans-serif;
    line-height: 1.5;
}

.wrap * {
    padding: 0;
    margin: 0;
}

.wrap .info {
    width: 286px;
    height: 112px;
    border-radius: 5px;
    border-bottom: 2px solid #ccc;
    border-right: 1px solid #ccc;
    overflow: hidden;
    background: #fff;
}

.wrap .info:nth-child(1) {
    border: 0;
    box-shadow: 0px 1px 2px #888;
}

.info .title {
    padding: 5px 0 0 15px;
    height: 36px;
    background: #eee;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
    font-weight: bold;
}

.info .close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #888;
    width: 17px;
    height: 17px;
    background: url('https://t1.daumcdn.net/localimg/localimages/07/mapapidoc/overlay_close.png');
}

.info .close:hover {
    cursor: pointer;
}

.info .body {
    position: relative;
    overflow: hidden;
}

.info .desc {
    position: relative;
    margin: 6px 18px 0 18px;
    height: 75px;
}

.desc .ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: -1px;
    font-size: 13px
}

.desc .tel {
    font-size: 12px;
    color: #888;
}

.tel_link {
    color: #5085BB;
}

.url {
    letter-spacing: -1px;
    text-align: center;
    width: 250px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.url_btn {
    display: block;
    width: 100px;
    height: 20px;
    text-align: center;
    background: #333;
    border-radius: 5px;
}

.info:after {
    content: '';
    position: absolute;
    margin-left: -12px;
    left: 50%;
    bottom: 0;
    width: 22px;
    height: 12px;
    background: url('https://t1.daumcdn.net/localimg/localimages/07/mapapidoc/vertex_white.png')
}

.info .link {
    color: #FFFFFF;
    font-weight: 600;
}