/* Extracted from the original slimminggogroup.com markup. Generated by tools/convert.mjs. */

    .go-top {
        position: fixed;
        bottom: 40px;
        right: 1%;
        z-index: 9999;

        display: none !important;
    }

    .go-top a {
        display: block;
        position: relative;
        background-color: rgba(0, 0, 0, 0.8);
        width: 60px;
        border-radius: 50%;
        border: 1px solid #1b1b1b;
        transition: all 0.2s ease-in-out;
    }

    .go-top a:hover {
        background-color: rgba(0, 0, 0, 0.9);
    }

    .go-top a::before {
        content: "";
        display: block;
        padding-bottom: 100%;
    }

    .go-top a .item {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: block;
    }

    .go-top a .item .arrow {
        width: 17px;
        height: 17px;
        display: block;
    }

    .go-top {
        display: none;
    }

    /* Desktop ( 1024px ~)*/
    @media all and (min-width: 1024px) {}

    /* Laptop ( 1024px ~ 1440px)*/
    @media all and (min-width: 1024px) and (max-width: 1440px) {}

    /* Tablet ( 768px ~ 1023px)*/
    @media all and (min-width: 768px) and (max-width: 1023px) {}

    /* Mobile ( ~ 767px)*/
    @media all and (max-width: 767px) {
        .go-top {
            bottom: 20px;
        }
    }



    #quickArea {
        position: fixed;
        bottom: 2.3vw;
        right: 1.5vw;
        z-index: 998;
    }

    #quickArea .quick-banners {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
    }

    #quickArea .quick-banners a {
        --font-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 60px;
        height: 60px;
        border-radius: 100%;
        background-color: var(--quick-bg);
        transition: all 0.3s;
    }

    #quickArea .quick-banners a img {
        width: 30px;
        height: auto;
        aspect-ratio: 1/1;
    }

    #quickArea .quick-banners a p {
        color: var(--font-color);
        font-size: var(--f20);
        font-weight: 600;
        white-space: nowrap;
        display: none;
    }

    #quickArea .quick-banners a:hover {
        width: 130px;
        border-radius: 50px;
        transform-origin: right;
    }

    #quickArea .quick-banners a:hover p {
        display: block;
    }

    #quickArea .quick-banners a.quick-top img {
        width: 20px;
    }

    /* Desktop ( 1024px ~)*/
    @media all and (min-width: 1024px) {}

    /* Laptop ( 1024px ~ 1440px)*/
    @media all and (min-width: 1024px) and (max-width: 1440px) {}

    /* Tablet ( 768px ~ 1023px)*/
    @media all and (min-width: 768px) and (max-width: 1023px) {
        #quickArea {
            bottom: 3vw;
            right: 3vw;
        }

        #quickArea .quick-banners {
            gap: 12px;
        }

        #quickArea .quick-banners a {
            width: 60px;
            height: 60px;
        }

        #quickArea .quick-banners a img {
            width: 28px;
        }

        #quickArea .quick-banners a:hover {
            width: 145px;
        }

        #quickArea .quick-banners a.quick-top img {
            width: 18px;
        }
    }

    /* Mobile ( ~ 767px)*/
    @media all and (max-width: 767px) {
        #quickArea {
            bottom: 5vh;
            right: 5vw;
        }

        #quickArea .quick-banners {
            gap: 10px;
        }

        #quickArea .quick-banners a {
            width: 46px;
            height: 46px;
            gap: 6px;
        }

        #quickArea .quick-banners a img {
            width: 22px;
        }

        #quickArea .quick-banners a:hover {
            width: 45px;
        }

        #quickArea .quick-banners a:hover p {
            display: none;
        }

        #quickArea .quick-banners a.quick-top img {
            width: 14px;
        }
    }



    #cursor {
        --cursor-size: 45px;
        position: fixed;
        height: var(--cursor-size);
        width: var(--cursor-size);
        border: 2px solid var(--color-primary);
        border-radius: 100%;
        top: calc(var(--cursor-size) / 2 * -1);
        left: calc(var(--cursor-size) / 2 * -1);
        pointer-events: none;
        z-index: 9999;
        /* mix-blend-mode: difference; */
        transition: all 0.2s ease;
    }

    /* 링크나 버튼 위에 있을 때 */
    #cursor.hover {
        --cursor-size: 60px;
        background: var(--color-primary);
        opacity: 0.5;        
    }

    /* 클릭했을 때 */
    #cursor.click {
        background: var(--color-primary);
        opacity: 0.8;
    }

    /* 마우스를 3초 동안 안 움직였을 때 */
    #cursor.idle {
        --cursor-size: 20px;
        animation: idleAnimation 2s infinite alternate ease-in-out;
    }

    @keyframes idleAnimation {
        0% {
            border-radius: 100%;
        }

        100% {
            border-radius: 0;
        }
    }

    @media all and (max-width: 1024px) {
        #cursor {
            display: none !important;
        }
    }




    #unifiedSearch {
        position: relative;
    }

    #unifiedSearch .backdrop-bg {
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(2px);
        opacity: 0;
        display: none;
        transition: 0.5s all;
        z-index: 10;
    }

    #unifiedSearch.active .backdrop-bg {
        opacity: 1;
        display: block;
        z-index: 20;
    }

    #unifiedSearch .unified-search-box {
        width: 100%;
        height: 320px;
        align-items: center;
        justify-content: center;
        background-color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
    }

    #unifiedSearch .close-btn {
        --close-btn-size: 25px;
        --close-btn-color: #000;
        width: var(--close-btn-size);
        height: var(--close-btn-size);
        display: block;
        cursor: pointer;
        font-size: 0;
        position: absolute;
        top: 30px;
        right: 35px;
        z-index: 99;
    }

    #unifiedSearch .close-btn:before,
    #unifiedSearch .close-btn:after {
        content: '';
        position: absolute;
        right: 50%;
        top: 50%;
        width: 1px;
        height: var(--close-btn-size);
        background-color: var(--close-btn-color);
    }

    #unifiedSearch .close-btn:before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    #unifiedSearch .close-btn:after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    #unifiedSearch .unified-container {
        width: calc(var(--container-scale)* 1%);
        max-width: var(--container-width);
        margin: 0 auto;
    }

    .unified-search-input {
        --input-border: #000;
        --input-border-radius: 0;
        --input-padding: 0 10px;
        --input-font-size: 20px;
        --input-height: 50px;
        --input-background-color: transparent;
        --label-font-size: 18px;
        --placeholder-font-size: var(--input-font-size);
        --placeholder-color: #ccc;

        display: flex;
        align-items: center;
        column-gap: 15px;
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        border-bottom: 2px solid var(--input-border);
        padding: var(--input-padding);
    }

    .unified-search-input input {
        border: none;
        padding: 0;
    }

    .unified-search-input .search-reset {
        --btn-size: 20px;
        cursor: pointer;
        width: var(--btn-size);
        height: var(--btn-size);
        background-image: url(/assets/images/icons/icon_delete.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        border: none;
        background-color: transparent;
        font-size: 0;
        flex: 1 0 auto;
    }

    .unified-search-input .search-button,
    .searchToggle {
        --btn-size: 23px;
        cursor: pointer;
        width: var(--btn-size);
        height: var(--btn-size);
        background-image: url(/assets/images/icons/search.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        border: none;
        background-color: transparent;
        flex: 1 0 auto;
    }

    .searchToggle {
        display: block;
        font-size: 0;
    }

    #header[mode="clean"] .searchToggle {
        filter: invert(1);
    }

    /* Desktop ( 1024px ~)*/
    @media all and (min-width: 1024px) {}

    /* Laptop ( 1024px ~ 1440px)*/
    @media all and (min-width: 1024px) and (max-width: 1440px) {}

    /* Tablet ( 768px ~ 1023px)*/
    @media all and (min-width: 768px) and (max-width: 1023px) {}

    /* Mobile ( ~ 767px)*/
    @media all and (max-width: 767px) {
        #unifiedSearch .unified-search-box {
            height: 260px;
        }

        #unifiedSearch .close-btn {
            --close-btn-size: 22px;
            top: 20px;
            right: 20px;
        }

        .unified-search-input {
            --input-font-size: 17px;
            --input-height: 45px;
        }

        .unified-search-input .search-button,
        .searchToggle {
            --btn-size: 20px;
        }
    }



    :root {
        --footer-bg-color: #fcfcfc;
        --footer-logo-size: var(--gnb-logo-size);
        --footer-padding: 60px 0;
    }

    #footerBasic {
        background-color: var(--footer-bg-color);
    }

    #footerBasic * {
        color: var(--color-text);
        font-weight: 400;
        letter-spacing: -0.2px;
    }

    #footerBasic .container {
        padding: var(--footer-padding);
    }

    #footerBasic .footer-logo {
        width: var(--footer-logo-size);
    }

    #footerBasic .footer-nav {
        display: flex;
        align-items: center;
        column-gap: 25px;
        margin-top: 40px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    #footerBasic .footer-nav li a {
        font-size: 16px;
        font-weight: 500;
    }

    #footerBasic .footer-contents {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-top: 30px;
    }

    #footerBasic .footer-info span {
        display: inline-block;
        font-size: 15px;
        line-height: 1.7;
        color: var(--color-text);
    }

    #footerBasic .footer-info span~span::before {
        content: '|';
        margin: 0 8px;
        color: var(--color-text);
        opacity: 0.6;
    }

    #footerBasic .footer-info span b {
        font-weight: 700;
    }

    #footerBasic .copyright {
        margin-top: 25px;
        font-size: 13px;
        color: #aaa;
    }

    #footerBasic .copyright a {
        font-size: inherit;
        font-weight: inherit;
        color: inherit;
    }

    .footer-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        flex: 1 0 auto;
    }

    .footer-sns {
        display: flex;
        column-gap: 15px;
    }

    .footer-sns a {
        width: 35px;
        height: auto;
        aspect-ratio: 1/1;
        border-radius: 50%;
        background-color: #4a4a4a;
        background-size: 50%;
        background-position: center;
        background-repeat: no-repeat;
    }

    #footerBasic .admin-btn {
        display: inline-block;
        margin-top: 20px;
        padding: 5px 12px;
        border: 1px solid #000;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 500;
        color: #000;
        background-color: transparent;
    }

    #footerBasic .brand-site {
        display: inline-block;
        margin-top: 20px;
        padding: 5px 12px;
        border: 1px solid #000;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 20px;
    }


    @media all and (min-width: 768px) and (max-width: 1600px) {
        #footerBasic .footer-contents{
            width: 95%;
        }
    }

    /* Desktop ( 1024px ~)*/
    @media all and (min-width: 1024px) {}

    /* Laptop ( 1024px ~ 1440px)*/
    @media all and (min-width: 1024px) and (max-width: 1440px) {}

    /* Tablet ( 768px ~ 1023px)*/
    @media all and (min-width: 768px) and (max-width: 1023px) {}

    /* Mobile ( ~ 767px)*/
    @media all and (max-width: 767px) {
        #footerBasic .footer-contents {
            flex-direction: column;
            align-items: flex-start;
            row-gap: 20px;
        }

        #footerBasic .footer-info span {
            display: block;
            font-size: 13px;
        }

        #footerBasic .footer-info span~span::before {
            display: none;
        }

        .footer-right{
            align-items: flex-start;
        }
    }
