.layer-fixed-pop-wrapper {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 998;
    transition: all 1s;
    width: 100vw;
    background: rgba(0, 0, 0, 0.7);
}

.modal-fixed-pop-inner {
    position: absolute;
    display: table;
    width: 100%;
    height: 100%;
    text-align: center;
}

.modal-inner-box {
    position: relative;
    display: table-cell;
    vertical-align: middle;
}

.modal-popup-con {
    position: relative;
    margin: 20px auto;
    width: 96%;
    padding: 5rem 2.6rem 3rem;
    max-width: 38.3rem;
    background-color: #fff;
    border-radius: 1.47rem;
    box-sizing: border-box;
}

.modal-popup-close {
    position: absolute;
    top: 2.2rem;
    right: 2.2rem;
    color: #000;
    font-size: 1.6rem;
}

.xi-close:before {
    content: "\e921";
}
.modal-popup-txt {
    font-size: 2.06rem;
    line-height: 1.5rem;
    color: #222;
    font-weight: 500;
    letter-spacing: -0.05em;
    text-align: center;
}

.modal-popup-btn {
    margin-top: 2.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.modal-popup-btn a,
.modal-popup-btn button {
    width: 47.87%;
    height: 3.68rem;
    font-size: 2.06rem;
    color: #fff;
    font-weight: 700;
    background-color: rgba(216, 216, 216, 1);
    border-radius: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-custom);
}

/*네이버 상담 아이콘 클릭시 팝업*/
/* 네이버 예약 팝업 */
.popup-nv-reservation-bg {
    display: none;
    overflow-y: auto;
    overflow-x: auto;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    background: rgba(0, 0, 0, 0.65);
    z-index: 0;
}

.popup-nv-reservation-bg.open {
    display: block;
}

.popup-nv-reservation-box {
    position: absolute;
    top: -22rem;
    right: -2rem;
    padding: 0 2.5rem;
    width: 20rem;
    height: 19.5rem;
    background-color: #fff;
    border-radius: 1rem;
    box-sizing: border-box;
    box-shadow: 2.25rem 0.75rem 4.5rem 0 rgba(0, 0, 0, 0.4);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 30;
}

.popup-nv-reservation-box.open {
    display: flex;
}

.popup-nv-reservation-box:before {
    position: absolute;
    bottom: -1.5rem;
    right: 2rem;
    width: 2.1rem;
    height: 2.7rem;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAzMiAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik0xOC42ODkzIDIyLjVDMTcuNTM0NiAyNC41IDE0LjY0NzkgMjQuNSAxMy40OTMyIDIyLjVMMC41MDI3NzcgMEwzMS42Nzk3IDBMMTguNjg5MyAyMi41WiIgZmlsbD0id2hpdGUiLz4NCjwvc3ZnPg0K) center/cover no-repeat;
    content: '';
}

.popup-nv-reservation-tit {
    display: flex;
    align-items: center;
}

.popup-nv-reservation-tit .icon {
    margin-right: 1rem;
    width: 2.25rem;
    color:#03C75A;
}

.popup-nv-reservation-tit .icon svg {
    width: 100%;
    fill: #03C75A;
    /* fill:transparent; */
}

.popup-nv-reservation-tit p {
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: -0.05em;
    color: #000;
    text-align: start;
}

.popup-nv-reservation-tit p span {
    color: #03C75A;
}

.popup-nv-reservation-list {
    margin-top: 2rem;
    width: 100%;
}
.popup-nv-reservation-item {
    width: 100%;
}

.popup-nv-reservation-item+.popup-nv-reservation-item {
    margin-top: 0.7rem;
}

.popup-nv-reservation-item a {
    width: 100%;
    height: 2.5rem;
    padding: 0 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: #3C3C3C;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0.1rem solid #03C75A;
    border-radius: 0.5rem;
    box-sizing: border-box;
    transition: var(--transition-custom);
    transition-property: color, border-color, background-color;
    white-space: nowrap;
}

.popup-nv-reservation-item a svg {
    width: 1rem;
    stroke: #3C3C3C;
    fill:transparent;
}

.popup-nv-reservation-item a svg path {
    transition: var(--transition-custom);
    transition-property: stroke;
}

.popup-nv-reservation-item a:hover {
    color: #fff;
    border-color: #03C75A;
    background-color: #03C75A;
}
/* .popup-nv-reservation-item a .icon-link-move {
    stroke: #3C3C3C;
    fill:transparent;
} */

.popup-nv-reservation-item a:hover .icon-link-move path {
    stroke: #fff;
}

@keyframes upDown {
    0% {
        opacity: 0.5;
        transform: translateY(-5px);
    }

    50% {
        opacity: 1;
        transform: translateY(5px);
    }

    100% {
        opacity: 0.5;
        transform: translateY(-5px);
    }
}

@media all and (max-width:767.75px) {

    /* 네이버 예약 팝업 */
    .popup-nv-reservation-box {
        top: -22rem;
        left: 0rem;
        padding: 0 1.75rem;
        width: 19.5rem;
        height: 19.5rem;
        border-radius: 1rem;
        box-shadow: 2.25rem 0.75rem 4.5rem 0 rgba(0, 0, 0, 0.4);
    }

    .popup-nv-reservation-box:before {
        bottom: -1rem;
        left: 0.1em;
        width: 2.07rem;
        height: 1.8rem;
    }

    .popup-nv-reservation-tit .icon {
        margin-right: 1rem;
        width: 2.35rem;
    }

    .popup-nv-reservation-tit p {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .popup-nv-reservation-list {
        margin-top: 1.5rem;
    }

    .popup-nv-reservation-item+.popup-nv-reservation-item {
        margin-top: 0.8rem;
    }

    .popup-nv-reservation-item a {
        height: 3rem;
        padding: 0 1.2rem;
        font-size: 1rem;
        border-radius: 0.5rem;
    }

    .popup-nv-reservation-item a svg {
        width: 1.2rem;
    }
}

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

    /* 네이버 예약 팝업 */
    .popup-nv-reservation-box {
        top: -16.5rem;
        left: 1.5rem;
        padding: 0 1.75rem;
        width: 14.5rem;
        height: 15.5rem;
        border-radius: 1rem;
        box-shadow: 2.25rem 0.75rem 4.5rem 0 rgba(0, 0, 0, 0.4);
    }

    .popup-nv-reservation-box:before {
        bottom: -1rem;
        left: 0.1em;
        width: 2.07rem;
        height: 1.8rem;
    }

    .popup-nv-reservation-tit .icon {
        margin-right: 1rem;
        width: 2.35rem;
    }

    .popup-nv-reservation-tit p {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .popup-nv-reservation-list {
        margin-top: 1.5rem;
    }

    .popup-nv-reservation-item+.popup-nv-reservation-item {
        margin-top: 0.3rem;
    }

    .popup-nv-reservation-item a {
        column-gap: 3px;
        height: 1.9rem;
        padding: 0 1.2rem;
        font-size: 0.7rem;
        border-radius: 0.5rem;
    }

    .popup-nv-reservation-item a svg {
        width: 0.9rem;
    }
}

.bottom-fixed-reservation-right .popup-nv-reservation-box {
    right: -8rem;
}

/* @media all and (max-width:800px) {
    .bottom-fixed-reservation-right .popup-nv-reservation-box {
        right: -1rem;
    }

    .bottom-fixed-reservation-right .popup-nv-reservation-box:before {
        right: 1.5em;
    }
}

@media all and (max-width:640px) {
    .bottom-fixed-reservation-right .popup-nv-reservation-box {
        right: -0.5rem;
    }

    .bottom-fixed-reservation-right .popup-nv-reservation-box:before {
        right: 0rem;
    }
} */