.dvLoader {
    width:100%;
    height:100%;
    top:0;
    left:0;
    position:fixed;
    display:none;
    background-color:#ededed;
    opacity:0.7;
    z-index:999;
    text-align:center;

}

.loader-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*z-index: 1000;*/
}

.loader {
    border: 7px solid #f3f3f3;
    border-top: 7px solid #258fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    height: 9.6rem;
    margin: 0 auto;
    background-color: var(--white);
    z-index: 50;
}
.header.shadow {
    -webkit-box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.1);
}
.header .search-area {
    display: flex;
    gap: 1.2rem;
    text-align: center;
}


/* header.css line 18 */
.header .search-area {
    position: relative;
}


/* new class */
.d-flex {
    display: flex;
}

.direction-column {
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
}

.align-item-center {
    align-items: center;
}

.box-round-shadow {
    border-radius: 1.6rem;
    background: #FFF;
    box-shadow: 0 2px 1rem 0 rgba(0, 0, 0, 0.10);
}

.box-round-gray {
    border-radius: 1.2rem;
    background: #F5F5F5;
    padding: 1.5rem 0;
}

.gap-16 {
    gap: 1.6rem !important;
}

.pt-6r {
    padding-top: 6rem;
}
.pb-10r {
    padding-bottom: 10rem;
}
.mx-auto {margin: 0 auto;}

.bg-yellow {
    background: #FFDA55;
}
.bg-green {
    background: #25E88A;
}
.bg-blue {
    background: #258FFF;
}

.btn-layer-close {
    align-self: center;
    padding: 0.5rem 1rem;
}

.btn-layer-close::before {
    content: '';
    display: block;
    border-radius: 2px;
    background: #E6E6E6;
    width: 4rem;
    height: 4px;
}


.location-select-section {
    position: sticky;
    background: #ebf1f7;
    margin: 1.5rem 1.3rem 1rem 1.3rem;
    border-radius: 0.7rem;
}

.location-select-bar {
    width: 100%;
    height: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.location-step-bar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 1rem .6rem;
    max-height: 7rem;
}


.location-step-type {
    font-weight: bold;
    color: #9498a0;
    font-size: 1.2em;
}

.location-step-local {
    width: calc(33.33% - 1.2rem);
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.4rem;
    word-break: keep-all;
    cursor: pointer;
    color: #727279;
    position: relative;
}


/* Description text */
.desc {
    color: #8D8D8D !important;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.9rem;
    padding: 3px;
}
.desc.icon {
    display: flex;
    gap: 0.7rem;
}
.desc.icon i {
    flex: 0 0 auto;
    width: 1.8rem;
    height: 1.8rem;
}

.price-box {
    height: 4.6rem;
    line-height: 4.6rem;
    color: #000;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: right;
    padding: 0 1.8rem;
    margin-top: 2rem;
}

/* 시설 유형 선택 */
.layer-facility-type {
    display: none;
    position: absolute;
    top: calc(100% + 2rem);
    left: 0;
    width: 100%;
    height: auto;
    padding: 2rem 0;
}

.layer-facility-type.active {
    display: flex;
    animation: showFadeUp 0.5s forwards;
}
.layer-facility-type.deactivating {
    display: flex;
    animation: hideFadeDown 0.5s forwards;
}

.layer-facility-type .btn-layer-close {
    display: none;
}

.layer-facility-type ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0 1.8rem
}

.layer-facility-type ul li {
    flex: 0 0 auto;
    position: relative;
    width: 13rem;
    height: 13rem;
}

.layer-facility-type ul input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 1rem !important;
    height: 1rem !important;
    padding: 0 !important;
}

.layer-facility-type ul label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.1rem;
    border-radius: 1.2rem;
    border: 1px solid #EAEBF0;
    width: 100%;
    height: 100%;
    user-select: none;
    cursor: pointer;
}

.layer-facility-type ul i {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: block;
    background: url('../assets/images/icons/ico_check_off.svg') center no-repeat;
    width: 2rem;
    height: 2rem;
}

.layer-facility-type ul .icon {
    flex: 0 0 auto;
    width: 5rem;
    height: 5rem;
}

.layer-facility-type ul .icon img {
    display: block;
    width: 100%;
}

.layer-facility-type ul em {
    color: #000;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.layer-facility-type ul input:checked + label {
    border: 2px solid #258FFF;
}

.layer-facility-type ul input:checked + label i {
    background: url('../assets/images/icons/ico_check_on.svg') center no-repeat;
}

.layer-facility-type ul input:checked + label em {
    color: #258FFF;
}

.layer-facility-type .layer-controller {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 57.4rem;
    margin: 0 auto;
}

.layer-facility-type .layer-controller > div {
    display: flex;
    white-space: nowrap;
    justify-content: flex-end;
}

.layer-facility-type .layer-controller > div button {
    flex: 0 0 auto;
    width: 8.6rem;
    height: 3.9rem;
    padding: 0;
}

/* 시, 군, 구, 동 검색 레이어 */
.layer-location-category {
    display: none;
    position: absolute;
    top: calc(100% + 2rem);
    left: 0;
    width: 100%;
    height: auto;
    padding: 1.6rem 0;
    z-index: 100;
}

.layer-location-category.active {
    display: flex;
    animation: showFadeUp 0.5s forwards;
}

.layer-location-category.deactivating {
    display: flex;
    animation: hideFadeDown 0.5s forwards;
}

.layer-location-category.search .layer-location-wrap {
    display: none;
}

.layer-location-category.search .layer-controller {
    position: static;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 3rem;
    margin-top: 18px;
}

.layer-location-category.search .location-search-wrap {
    display: flex;
    flex-direction: column;
    overflow-y: auto
}

.layer-location-category .btn-layer-close {
    display: none;
}

.layer-location-category .layer-controller {
    
    /*bottom: 2rem;*/
    margin: 0rem 1.3rem 0rem 1.3rem;
}

.layer-location-category .layer-controller button {
    font-family: 'NotoSans';
    /*width: 8.9rem;*/
    width: 100%;
    height: 4.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 0;
}

.layer-location-category > fieldset {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0 1.3rem;
}

.layer-location-category > fieldset input {
    flex: 1;
    height: 5.1rem;
    text-align: left !important;
}

.layer-location-category > fieldset button {
    flex: 0 0 auto;
    width: 2.7rem;
    height: 2.7rem;
}

.layer-location-wrap {
    /*overflow: hidden;*/
    overflow-y: auto;
    max-height: 420px;
    height: auto;
    padding-bottom: 5px;
    margin: 0.5rem 1.3rem 1.5rem 1.3rem;
}

.layer-location-container {
    display: flex;
    flex-wrap: nowrap;
    transition: 0.5s;
}

.layer-location-container.second {
    transform: translateX(-100%);
}

.layer-location-container.third {
    transform: translateX(-100%);
}
.layer-location-container.fourth {
    transform: translateX(-100%);
}

.layer-location-container.second .select-radio-list,
.layer-location-container.third .select-radio-list,
.layer-location-container.fourth .select-radio-list {
    display: grid;
}

.select-radio-list {
    flex: 0 0 auto;
    width: 100%;
    display: none;
    grid-template-columns:repeat(auto-fill, minmax(20%, auto));
    grid-template-rows: repeat(auto-fill, minmax(51px, 51px));
    gap: 1rem;
}
.select-radio-list:first-child {
    display: grid;
}
.select-radio-list li {
    position: relative;
}

.select-radio-list li input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 1rem !important;
    height: 1rem !important;
    padding: 0 !important;
}

.select-radio-list li label {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.7rem;
    border: 1px solid #EAEBF0;
    width: 100%;
    height: 5rem;
    color: #000;
    font-size: 1.3rem;
    font-weight: 300;
    cursor: pointer;
    user-select: none;
}

.select-radio-list li input:checked + label {
    border: 2px solid #258FFF;
    color: #258FFF;
}

.location-search-wrap {
    display: none;
    padding: 0 3rem;
    margin-top: 1rem;
}

.location-search-wrap ul {
    max-height: 40rem;
    overflow: hidden;
    overflow-y: auto;
}

.location-search-wrap li {
    border-bottom: 1px solid #EAEBF0;
    text-align: left;
    padding: 2rem 0;
    user-select: none;
    cursor: pointer;
}

.location-search-wrap li p {
    line-height: 2.5rem;
    color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.6rem
}
.location-search-wrap li span {
    line-height: 1.9rem;
    color: #000000;
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 0.3;
}

.location-search-wrap > p {
    line-height: 1.9rem;
    color: #000000;
    font-size: 1.4rem;
    font-weight: 400;
    text-align: center;
    margin-top: 2rem;
}

.location-search-wrap > p em {
    color: #258FFF;
    font-weight: 700;
    font-style: normal;
}

/* 라디오 선택 목록 : flex */
.select-flex-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.select-flex-radio li {
    position: relative;
    flex: 0 0 auto;
    min-width: 9.8rem;
    width: auto;
    height: 4.6rem;
}
.select-flex-radio li input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.select-flex-radio li label {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .8rem;
    border: 1px solid #000;
    height: 100%;
    color: #000;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 1.2rem 2.8rem;
    opacity: 0.3;
    cursor: pointer;
}
.select-flex-radio li input:checked + label {
    border: 2px solid #258FFF;
    color: #258FFF;
    opacity: 1;
}

.location-search-section {
    margin: 0.5rem 2rem;
    font-size: 16px;
}

.location-search-list {
    display: flex;
    cursor: pointer;
    gap: 0.8rem;
    align-items: center;
    margin: 1.5rem 0;
    padding-bottom:1rem
}

.location-search-img {
    width: 1.5rem;
    height: 1.5rem;
}

.fw-700 {
    font-weight: 700;
}

.fc-mblue {
    color: #258fff;
}
    /***************************************************************************************
    GNB : Laptop, Mobile
****************************************************************************************/
    .layer-gnb-wrap {
        position: fixed;
        top: 0;
        left: 0;
        display: none;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 100vw;
        height: 100vh;
        background: #fff;
    }
.layer-gnb-wrap.active {
    display: flex;
}

.layer-gnb-wrap .gnb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 81.6rem;
    height: 9.6rem;
}

.layer-gnb-wrap .gnb-header .logo {
    display: block;
    width: 10.7rem;
    height: 2.2rem;
    background: no-repeat center/100% url('../assets/images/logo.png');
}

.layer-gnb-wrap .gnb-body ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    width: 100%;
    max-width: 81.6rem;
}
.layer-gnb-wrap .gnb-body li a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
}
.layer-gnb-wrap .gnb-body strong,
.layer-gnb-wrap .gnb-body em {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.7rem;
}
.layer-gnb-wrap .gnb-body strong em {
    color: #258FFF;
}
.layer-gnb-wrap .gnb-body img {
    display: block;
    width: 4rem;
    margin: 0;
}
.layer-gnb-wrap .gnb-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6.3rem;
    width: 100%;
    max-width: 81.6rem;
    margin: 8rem 0 10rem;
}

.layer-gnb-wrap .gnb-footer a,
.layer-gnb-wrap .gnb-footer i {
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
}


/***************************************************************************************
    미디어 쿼리 : max-width:639px || mobile
****************************************************************************************/
@media all and (max-width:639px) {
    .layer-facility-type ul {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: calc(50vw - 2.6rem) calc(50vw - 2.6rem);
        gap: 1.1rem;
        width: 100%;
        padding: 0 2rem;
    }

    .layer-facility-type ul li {
        width: 100%;
        height: 100%;
    }

    .layer-facility-type ul li label {
        width: 100%;
        height: 100%;
    }

    .layer-facility-type ul li .icon {
        width: 38.46%;
        height: 38.46%;
    }

    .layer-facility-type .layer-controller {
        gap: 2.4rem;
        max-width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 calc(25% - 6.5rem);
        margin-top: 2.4rem;
    }

    .layer-facility-type .layer-controller > div {
        align-self: flex-end;
    }
}
/***************************************************************************************
    미디어 쿼리 : max-width:1023px || Under Tablet
****************************************************************************************/
@media all and (max-width:1023px) {
    .header {
        height: auto;
    }
    .header .container {
        padding-top: 1.4rem;
        padding-bottom: 1.4rem;
    }
    .header .menu-m {
        display: flex;
        justify-content: space-between;
        margin-bottom: 2.1rem;
    }
    .header .search-area input {
        padding: 1.001rem;
        text-align: center;
        font-size: 1.4rem;
    }

    /* 시설 유형 레이어  */
    .layer-facility-type {
        position: fixed;
        top: inherit;
        bottom: 0;
        border-radius: 2rem 2rem 0 0;
        box-shadow: none;
        transform: translateY(100%);
        padding: .5rem 0 2rem;
    }

    .layer-facility-type.active {
        animation: showSlideUp 0.5s forwards;
    }

    .layer-facility-type.deactivating {
        animation: hideSlideDown 0.5s forwards;
    }

    .layer-facility-type .btn-layer-close {
        display: block;
    }

    .layer-facility-type ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        gap: 1.8rem;
        width: 100%;
        max-width: 64rem;
        margin: 0 auto;
    }

    .layer-location-category.search .location-search-wrap {
        flex-direction: column-reverse;
    }

    .layer-facility-type .layer-controller {
        max-width: 61rem;
    }

    .type-map .layer-location-category {
        position: fixed;
        top: inherit;
        bottom: 0;
        border-radius: 2rem 2rem 0 0;
        box-shadow: none;
        max-height: 10vh;
        transform: translateY(100%);
        padding: .5rem 0 2rem;
    }

    /* 시,군,구,동 단위 레이어  */
    .layer-location-category {
        position: fixed;
        top: inherit;
        bottom: 0;
        border-radius: 2rem 2rem 0 0;
        box-shadow: none;
        max-height: 70vh;
        transform: translateY(100%);
        padding: .5rem 0 2rem;
    }

    .layer-location-category.active {
        animation: showSlideUp 0.5s forwards;
    }

    .layer-location-category.deactivating {
        animation: hideSlideDown 0.5s forwards;
    }

    .layer-location-category.search {
        height: 100vh;
        max-height: 100vh;
        transition: 0.5s;
    }

    .layer-location-category.search fieldset {
        display: flex;
        position: relative;
        margin-top: 1rem;
    }

    .layer-location-category.search fieldset button {
        position: absolute;
        top: 50%;
        left: 3rem;
        transform: translateY(-50%);
    }

    .layer-location-category.search input {
        padding-left: 5rem;
    }

    .layer-location-category .btn-layer-close {
        display: block;
    }

    .layer-location-category fieldset {
        display: none;
    }

    .location-search-wrap ul {
        max-height: inherit;
    }

    .location-search-wrap > p {
        margin: 2rem 0;
    }

    .layer-location-category .layer-controller {
        position: static;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        box-shadow: 0 -2.5rem 2.5rem white;
        background: #fff;
        padding: 1rem 2rem 0;
        z-index: 100;
    }

    .layer-location-wrap {
        padding-bottom: 2.5rem;
        /*margin: 1.5rem 2rem 0;*/
        margin: 1.5rem 1.3rem;
        overflow-y: auto;
    }

    .select-radio-list {
        grid-template-columns: repeat(auto-fill, minmax(40%, auto));
        grid-template-rows: repeat(auto-fill, minmax(6rem, -249px));
        gap: 1.1rem;
    }

    /***************************************************************************************
        GNB : Laptop, Mobile
    ****************************************************************************************/
    .layer-gnb-wrap .gnb-header {
        max-width: 100%;
        height: 5.4rem;
        padding: 0 2rem;
    }

    .layer-gnb-wrap .gnb-header .logo {
        width: 8.7rem;
        height: 1.8rem;
    }

    .layer-gnb-wrap .gnb-body ul {
        max-width: 100%;
    }
    .layer-gnb-wrap .gnb-body li a {
        gap: 2rem;
    }
    .layer-gnb-wrap .gnb-body img {
        width: 3.3rem;
    }
    .layer-gnb-wrap .gnb-footer {
        max-width: 100%;
        margin: 10% 0 6rem;
    }
}


/***************************************************************************************
    미디어 쿼리 : min-width:1024px ~ max-width:1439px
****************************************************************************************/
@media all and (min-width:1024px) and (max-width:1439px) {
    .header .search-area input {
        width: 33.8rem;
    }
    .header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header .menu-m {
        order: 3;
    }
    .header .btn-menu svg {
        width: 32px;
        height: 32px;
    }
    .header .search-area input {
        padding: 1.6rem 1.7rem;
    }
}

/***************************************************************************************
    미디어 쿼리 : max-width:1439px || Under Desktop
****************************************************************************************/
@media all and (max-width:1439px) {
    .header {
        border-radius: 0px 0px 10px 10px;
        padding : 0px 10px;
    }
}

/***************************************************************************************
    미디어 쿼리 : min-width:1440px  || Desktop
****************************************************************************************/
@media all and (min-width:1440px) {
    .header {
        height: 11.2rem;
    }
    .header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header .logo {
        display: block;
        width: 10.7rem;
        height: 2.2rem;
        background: no-repeat center/100% url('../assets/images/logo.png');
    }
    .header .btn-registration {
        display: flex;
        align-items: center;
        font-weight: bold;
        font-family:'NotoSans';
    }
    .header .btn-registration svg {
        width: 2.4rem;
        height: 2.4rem;
        margin-left: 0.4rem;
    }
    .header .search-area input {
        text-align: center;
        width: 50%;
    }
    .header .search-area input.search-type {
        width: 20rem;
    }
    .header .search-area input.search-place {
        /*width: 33.8rem;*/
        width: 40rem;
    }
}