 body {
    overflow-x: hidden;
}
.icn_svg.svg_x_white {
    width: 22px;
    height: 19px;
    background-image: url(../NAEU/contents/img/common/icon/icn_x_white.svg)
}
footer.footer_wrap .sns_area .btn_whatsapp::before {
    background-image: url(../NAEU/contents/img/common/icon/icn_whatsapp_white.svg);
    background-size: 60% auto;
    background-position: center;
}
.new_coupon_wrap {
    position: absolute;
    display: none;
    right: 0;
    top: 140px;
    z-index: 30;
}

.new_coupon_wrap.on {
    display: block;
}

.js-newFold {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0.8rem;
    top: 1.2rem;
    z-index: 1;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    cursor: pointer;
    margin-right: 15px;
}

.js-newFold.active {
    display: flex;
}

.js-newFold::before,
.js-newFold::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 15px;
    background-color: #2c2c2e;
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
    transform: translate3d(-50%, -50%, 0) rotate(45deg);
}

.js-newFold::after {
    content: '';
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
    transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}

.js-newOpen {
    position: absolute;
    right: 0;
    top: 84px;
    display: flex;
    align-items: center;
    padding: 0 12px 0 10px;
    height: 32px;
    background: #282F3F;
    background: linear-gradient(180deg, #2e5faa 0%, #17366e 100%);
    border: 1px solid #3670b9;
    border-radius: 3px 3px 0 0;
    -webkit-transition: filter 0.3s;
    transition: filter 0.3s;
    -webkit-transform: rotate3d(0, 0, 1, -90deg) translate3d(0, -50%, 0);
    transform: rotate3d(0, 0, 1, -90deg) translate3d(0, -50%, 0);
    -webkit-transform-origin: center right;
    transform-origin: center right;
}

.js-newOpen.hidden {
    display: none;
}

.js-newOpen::after {
    content: '';
    display: block;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    width: 6px;
    height: 6px;
    margin-top: 8px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.js-newOpen span {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 11px;
    height: 100%;
    letter-spacing: 0.05em;
    font-size: 13px;
    color: #fff;
    white-space: nowrap;
}

.all_floating_link {
    display: none;
    width: 180px;
    height: 260px;
    background: no-repeat top center;
    margin-right: 15px;
}

.js-newFold.active+.all_floating_link {
    display: block;
}

@keyframes coupon_floating {

    0%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@media screen and (max-width: 1024px) {
    .new_coupon_wrap {
        top: 5rem;
        right: 0;
    }

    .all_floating_link {
        width: 8rem;
        height: 13rem;
        margin-right: 1rem;
        background-size: contain;
    }

    .js-newFold {
        width: 1.5rem;
        height: 1.5rem;
        right: auto;
        left: -1.5rem;
        padding: 0.2rem;
    }

    .js-newFold::before,
    .js-newFold::after {
        width: 0.0833rem;
        height: 0.625rem;
    }

    .floatingBanner .new_coupon_wrap .js-newOpen {
        top: 2.725rem;
        width: 2.4rem;
        height: 2.4rem;
        padding: 0;
        justify-content: center;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        -webkit-transform-origin: center;
        transform-origin: center;
    }

    .js-newOpen::after {
        margin-top: .3rem;
        width: .55rem;
        height: .55rem;
    }

    .js-newOpen span {
        text-indent: -99999px;
        overflow: hidden;
        display: none;
    }
}

@media screen and (min-width: 1025px) {
    .js-newFold:hover {
        background: rgba(255, 255, 255, 0.8);
    }

    .js-newOpen:hover {
        -webkit-filter: saturate(1.4);
        filter: saturate(1.4);
    }

    .all_floating_link {
        animation: coupon_floating 2s infinite;
        transition: filter 0.3s;
    }

    .all_floating_link:hover {
        -webkit-filter: brightness(1.1);
        filter: brightness(1.1);
    }
}