.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);
}

.layer-fixed-pop-wrapper.open {
    display: block;
}

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

.modal-inner-box {
    position: relative;
    display: flex;
    height: 100svh;
    justify-content: center;
    align-items: center;
    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 {
    cursor: pointer;
    position: absolute;
    top: 2.2rem;
    right: 2.2rem;
    color: #000;
    font-size: 1.6rem;
}

.xi-close {
    /* font-family:  !important; */
    display: inline-block;
    /* speak: none; */
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.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);
}

.modal-popup-btn a,
.modal-popup-btn button:hover {
    background-color: var(--main-color);
}

/*네이버 상담 아이콘 클릭시 팝업*/
/* 네이버 예약 팝업 */
.popup-nv-reservation-bg {
    display: block;
    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: 11;
}

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

.popup-nv-reservation-box {
    position: absolute;
    top: -34.5rem;
    right: -2rem;
    padding: 0 4rem;
    width: 32rem;
    height: 30.7rem;
    background-color: #fff;
    border-radius: 1.5rem;
    box-sizing: border-box;
    box-shadow: 2.25rem 0.75rem 4.5rem 0 rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 12;
}

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

.popup-nv-reservation-box:before {
    position: absolute;
    bottom: -2rem;
    right: 2rem;
    width: 3.1rem;
    height: 2.7rem;
    background: url("./popup_nv_reservation_bg.svg") center/cover no-repeat;
    content: '';
}

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

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

.popup-nv-reservation-tit .icon svg {
    width: 100%;
}

.popup-nv-reservation-tit p {
    font-size: 2.1rem;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: -0.05em;
    color: #000;
    white-space: nowrap;
}

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

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

.popup-nv-reservation-item {
    width: 100%;
}

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

.popup-nv-reservation-item a {
    width: 100%;
    height: 4.5rem;
    padding: 0 1.7rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: #3C3C3C;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0.1rem solid #03C75A;
    border-radius: 0.75rem;
    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: 1.8rem;
}

.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: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:800px) {

    /* 네이버 예약 팝업 */
    .popup-nv-reservation-box {
        top: -24rem;
        right: -3rem;
        padding: 0 2.05rem;
        width: 23.5rem;
        height: 21.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;
        right: 3em;
        width: 2.07rem;
        height: 1.8rem;
    }

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

    .popup-nv-reservation-tit p {
        font-size: 1.5rem;
        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: 3.25rem;
        padding: 0 1.2rem;
        font-size: 1.25rem;
        border-radius: 0.5rem;
    }

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

    .modal-inner-box {
        align-items: flex-end;
    }

    .modal-popup-con {
        position: fixed;
        bottom: 85px;
        margin: auto auto;
        width: 250px;
        padding: 3.25rem 2rem 1.75rem;
        max-width: 38.3rem;
        background-color: #fff;
        border-radius: 1.47rem;
        box-sizing: border-box;
    }

    .modal-popup-txt {
        font-size: 1.25rem;
    }

    .modal-popup-close {
        top: 0.75rem;
        right: 1.5rem;
    }

    .modal-popup-txt {
        font-size: 1.5rem;
    }

    .modal-popup-btn {
        margin-top: 1.5rem;
    }

    .fa-xmark-large.custom-size-need {
        height: 1rem
    }

    .modal-popup-btn a,
    .modal-popup-btn button {
        font-size: 1.5rem;
        height: 2.68rem;
        border-radius: 5.5px;
    }
}

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

    /* 네이버 예약 팝업 */
    .popup-nv-reservation-box {
        right: -1rem;
    }

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

.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;
    }
}