@charset "utf-8"; @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap'); :root {
    /* 가상 클래스를 이용해 변수를 선언하고 동일하게 적용 및 변경이 가능합니다. */
    /* color */
    --primary-color: #1187cf;
    --primary-color-dark: #0c6da8;
    --primary-color-light: #6cbdf0;
    --blue-color: #1187cf;
    --accent-color: #fd9f28;
    --text-color: #333;
    --text-color-light: #707070;
    --title-color: #37464f;
    --border-color: #919ea1;
    --border-color-light: #ddd;
    --body-color: #fff;
    --body-color-deep: #f5f5f5;
    --body-color-beige: #FFF8EC;
    --white-color: #fff;
    --black-color: #000;
    --input-color: #f6f9f9;
    /* font & size - 폰트 사이트 계산은 https://nekocalc.com/px-to-rem-converter 참고해 변환 확인합니다. */
    --basic-font: 'Noto Sans KR', sans-serif;
    --en-font: 'Montserrat', 'Noto Sans KR', sans-serif;
    --biggest-font-size: 1.5rem;
    /* 24px */
    --h1-font-size: 1.25rem;
    /* 20px */
    --h2-font-size: 1.125rem;
    /* 18px */
    --h3-font-size: 1rem;
    /* 16px */
    --normal-font-size: .9375rem;
    /* 15px */
    --small-font-size: .8125rem;
    /* 13px */
    --smaller-font-size: .688rem;
    /* 11px */
}

@media (min-width: 768px) {
    :root {
        --biggest-font-size: 2.5rem;
        /* 40px */
        --h1-font-size: 1.5rem;
        /* 24px */
        --h2-font-size: 1.25rem;
        /* 20px */
        --h3-font-size: 1rem;
        /* 16px */
        --normal-font-size: 1rem;
        /* 16px */
        --small-font-size: .875rem;
        /* 14px */
        --smaller-font-size: .75rem;
        /* 12px */
    }
}

@media (min-width: 992px) {
    :root {
        --biggest-font-size: 4rem;
        /* 64px */
        --h1-font-size: 2.25rem;
        /* 36px */
        --h2-font-size: 1rem;
        /* 28px */
        --h3-font-size: 1.25rem;
        /* 20px */
    }
}

.wrapper {
    position: relative;
    overflow: hidden;
}

.wrapper-inner {
    /*padding-top: 80px;*/
    background-color: var(--body-color);
}

.wrapper-inner.box-layout {
    max-width: 1320px;
    margin: 0 auto;
}

/* ========== Header ========== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 0 15px;
    background-color: var(--body-color);
    transition: .3s;
}

#header-fixed.header {
    position: fixed;
}

#header-fixed.header.header-shadow {
    box-shadow: 0 4px 6px 0 rgb(12 0 46 /6%);
}

.header-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

@media (min-width: 992px) {
    .header {
        padding: 0 2rem;
    }
}

/* header logo */
.header-logo {
    position: relative;
    padding: 20px 0;
}

.header-logo a {
    display: block;
}

.header-logo a img {
    display: block;
    height: 25px;
    width: auto;
}

@media (min-width: 992px) {
    .header-logo {
        display: flex;
        flex: 0 0 auto;
    }

    .header-logo a img {
        height: 40px;
    }
}

/* nav-bar */
.gnb-wrap .gnb .gnb-nav {
    padding: 0;
    list-style: none;
}

/* gnb - mobile */
@media (max-width: 991px) {
    .wrapper-inner {
        /* padding-top: 141px; */
        background-color: var(--body-color);
    }

    .gnb-wrap .gnb {
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 9999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        width: 85%;
        height: 100vh;
        padding-bottom: 20px;
        background-color: var(--body-color);
        box-shadow: 1px 3px 6px rgb(0 0 0 /32%);
        transition: .3s ease-out;
    }

    .gnb-wrap .gnb.act {
        right: 0;
    }

    .gnb-wrap .gnb .mobile-box {
        padding: 20px 25px 5px 30px;
    }

    .gnb-wrap .gnb .mobile-box .mobile-nav-trigger {
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .gnb-wrap .gnb .mobile-box .mobile-nav-trigger a {
        display: block;
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: var(--h2-font-size);
        text-align: center;
    }

    .gnb-wrap .gnb .mobile-box .mobile-nav-trigger img {
        width: 24px;
    }

    .gnb-wrap .gnb .mobile-box .login-box ul {
        display: flex;
        flex-wrap: wrap;
        padding: 0 30px 10px 0;
        list-style: none;
        border-bottom: 2px solid var(--primary-color) !important;
    }

    .gnb-wrap .gnb .mobile-box .login-box ul li {
        margin-right: 20px;
    }

    .gnb-wrap .gnb .mobile-box .login-box ul li:last-child {
        margin-right: 0;
    }

    .gnb-wrap .gnb .mobile-box .login-box ul li a {
        display: block;
        position: relative;
        font-size: var(--smaller-font-size);
    }

    .gnb-wrap .gnb .mobile-box .login-box ul li a:after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        right: -10px;
        width: 1px;
        height: 10px;
        margin-top: -5px;
        background-color: var(--body-color-deep);
    }

    .gnb-wrap .gnb .mobile-box .login-box ul li:last-child a:after {
        display: none;
    }

    .gnb-wrap .gnb .gnb-nav {
        padding: 0 25px 0 30px;
    }

    .gnb-wrap .gnb .gnb-nav > li:last-child {
        border-bottom: 0 none;
    }

    .gnb-wrap .gnb .gnb-nav > li > a {
        display: block;
        padding: 8px 0;
        font-size: var(--small-font-size);
        font-weight: 700;
        color: var(--text-color);
    }

    .gnb-wrap .gnb .gnb-nav > li > a:after {
        display: none;
    }

    .gnb-wrap .gnb .gnb-nav > li.active > a {
        color: var(--primary-color);
        background: none;
    }

    .gnb-wrap .gnb .gnb-nav > li > .cate-dropdown-open {
        opacity: .5;
        position: absolute;
        top: 1px;
        right: 0;
        width: 30px;
        height: 38px;
        line-height: 38px;
        margin: 0;
        padding: 0;
        text-align: center;
        border: 0 none;
        z-index: 9
    }

    .gnb-wrap .gnb .gnb-nav > li > .cate-dropdown-open.show {
        opacity: 1;
    }

    .gnb-wrap .gnb .gnb-nav > li > .cate-dropdown-open:before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background-image: url("../image/icons/add-line.png");
        background-repeat: no-repeat;
        background-position: center;
    }

    .gnb-wrap .gnb .gnb-nav > li > ul {
        float: none;
        position: relative !important;
        transform: translate(0,0) !important;
        width: 100%;
        margin: 0;
        padding: 0;
        border: 0 none;
        box-shadow: none;
        background-color: var(--body-color-deep);
    }

    .gnb-wrap .gnb .gnb-nav > li > ul > li {
        border-bottom: 1px solid var(--white-color);
    }

    .gnb-wrap .gnb .gnb-nav > li > ul > li:last-child {
        border-bottom: 0 none;
    }

    .gnb-wrap .gnb .gnb-nav > li > ul > li > a {
        padding: 10px 12px;
        font-size: var(--smaller-font-size);
        color: var(--text-color);
    }

    .gnb-wrap .gnb .gnb-nav > li > ul > li > a:hover {
        background: none;
    }

    .gnb-wrap .gnb .gnb-nav > li > ul > li.active > a {
        color: var(--primary-color);
        background: none;
    }

    .gnb-wrap .gnb .gnb-nav > li > ul > li > ul {
        display: block !important;
        float: none;
        position: relative;
        width: 100%;
        padding: 0 20px 10px;
        margin: 0;
        border: 0 none;
        box-shadow: none;
        background: none;
    }

    .gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li > a {
        position: relative;
        padding: 3px 10px 3px 15px;
        font-size: var(--smaller-font-size);
        color: var(--text-color);
    }

    .gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li > a:after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: 2px;
        transform: translateY(-50%);
        width: 7px;
        height: 7px;
        border-left: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    .gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li > a:hover, .gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li.active > a {
        color: var(--primary-color);
        background: none;
    }

    .gnb-wrap .gnb .category-nav {
        padding: 0 25px;
    }
}

/* gnb - pc */
@media (min-width: 992px) {
    .gnb-wrap {
        flex:0 0 auto;
    }

    .gnb-wrap .gnb {
        position: relative;
        width: auto;
    }

    .gnb-wrap .mobile-box {
        display: none;
    }

    .gnb-wrap .gnb .gnb-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .gnb-wrap .gnb .gnb-nav > li {
        padding: 0 10px;
    }

    .gnb-wrap .gnb .gnb-nav > li > a {
        display: block;
        padding: 0;
        line-height: 70px;
        font-size: var(--small-font-size);
        font-weight: 700;
        color: var(--text-color);
    }

    .gnb-wrap .gnb .gnb-nav > li > a.cate-dropdown-open {
        display: none;
    }

    .gnb-wrap .gnb .gnb-nav > li > a:hover, .gnb-wrap .gnb .gnb-nav > li.active > a {
        color: var(--primary-color-dark);
    }

    .gnb-wrap .gnb .gnb-nav > li > a::after {
        display: none;
    }

    .gnb-wrap .gnb .gnb-nav > li > ul {
        display: block;
        left: -5%;
        opacity: 0;
        visibility: hidden;
        min-width: 150px;
        padding: 5px 30px;
        background-color: var(--body-color);
        border: 0 none;
        -webkit-box-shadow: -1px 2px 19px 3px rgb(14 0 40 /6%);
        box-shadow: -1px 2px 19px 3px rgb(14 0 40 /6%);
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -o-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
        -webkit-transition: all 0.25s ease;
        -moz-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        -ms-transition: all 0.25s ease;
        transition: all 0.25s ease
    }

    .gnb-wrap .gnb .gnb-nav > li:hover > ul {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    .gnb-wrap .gnb .gnb-nav > li > ul > li {
        position: relative
    }

    .gnb-wrap .gnb .gnb-nav > li > ul > li > a {
        padding: 10px 0;
        font-size: var(--small-font-size);
        color: var(--text-color);
        background: none;
    }

    .gnb-wrap .gnb .gnb-nav > li > ul > li:last-child > a {
        border: 0 none
    }

    .gnb-wrap .gnb .gnb-nav > li > ul > li > a:hover, .gnb-wrap .gnb .gnb-nav > li > ul > li.active > a {
        color: var(--primary-color-dark);
        background: none
    }

    .gnb-wrap .gnb .gnb-nav > li > ul > li > a .sub-caret {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-color-light);
    }

    .gnb-wrap .gnb .gnb-nav > li > ul > li > ul {
        display: block !important;
        position: relative;
        top: inherit;
        left: inherit;
        min-width: 100%;
        padding: 0 10px 5px;
        margin-bottom: 10px;
        border: 0 none;
        border-left: 1px solid var(--body-color-deep);
        background-color: var(--body-color);
        box-shadow: 0 0 0 var(--white-color);
    }

    .gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li > a {
        padding: 5px 0 0;
        font-size: var(--smaller-font-size);
        color: var(--text-color);
        background: none
    }

    .gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li:last-child > a {
        border-bottom: 0 none
    }

    .gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li > a:hover, .gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li.active > a {
        background: none;
        color: var(--primary-color-dark);
    }

    .gnb-wrap .gnb .category-nav {
        display: none;
    }

    .navbar-expand-lg {
    }

    .navbar-expand-lg .offcanvas {
        position: inherit;
        bottom: 0;
        z-index: 1000;
        flex-grow: 1;
        visibility: visible !important;
        background-color: transparent;
        border-right: 0;
        border-left: 0;
        transition: none;
        transform: none;
    }
}

@media (min-width: 1200px) {
    .gnb-wrap .gnb .gnb-nav > li {
        padding: 0 15px;
    }

    .gnb-wrap .gnb .gnb-nav > li > a {
        font-size: var(--normal-font-size);
    }
}

/* top bar */
.top-bar .top-bar-list {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
}

.top-bar .top-bar-list li {
    margin-left: 5px;
}

.top-bar .top-bar-list li a, .top-bar .top-bar-list li button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 8px;
    height: 36px;
    line-height: 36px;
    border: 0 none;
    background-color: var(--body-color-deep);
    transition: .3s ease-out;
    border-radius: 18px !important;
}

.top-bar .top-bar-list li a:hover {
    background-color: var(--border-color-light);
}

.top-bar .top-bar-list li.last-link a {
    background-color: var(--primary-color);
}

.top-bar .top-bar-list li.last-link a:hover {
    background-color: var(--primary-color-dark);
}

.top-bar .top-bar-list li.login-btn a {
    display: block;
    padding: 0 11px;
    font-size: var(--smaller-font-size);
    font-weight: 500;
    color: var(--text-color-light);
}

.top-bar .top-bar-list li.login-btn a:hover {
    color: var(--text-color);
}

.top-bar .top-bar-list li.register-btn a {
    display: block;
    padding: 0 11px;
    font-size: var(--smaller-font-size);
    font-weight: 500;
    color: var(--text-color-light);
}

.top-bar .top-bar-list li.register-btn a:hover {
    color: var(--text-color);
}

.top-bar .top-bar-list li img {
    width: 21px;
}

.top-bar .top-bar-list li.last-link img {
    width: 19px;
}

.top-bar .top-bar-list li.btn-cart a span {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: var(--smaller-font-size);
    text-align: center;
    color: var(--white-color);
    border-radius: 50%;
    background-color: var(--primary-color-light);
}

@media (min-width: 992px) {
    .top-bar {
        flex:0 0 auto;
    }

    .top-bar .top-bar-list li {
        margin-left: 15px;
    }

    .top-bar .top-bar-list li.mobile-nav-trigger {
        display: none;
    }

    .top-bar .top-bar-list li a {
        font-size: var(--h3-font-size);
    }

    .top-bar .top-bar-list li img {
        opacity: .8;
        transition: .3s;
    }

    .top-bar .top-bar-list li a:hover img {
        opacity: 1;
    }
}

/*---------- Modal ----------*/
.theme-offcanvas .offcanvas-header {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-color-light);
}

/* --- 검색 모달 --- */
/* 입력창 */
.theme-offcanvas .search-contents .input-button {
    position: relative
}

.theme-offcanvas .search-contents .input-button input[type="text"] {
    width: 100%;
    padding: 12px 12px;
    font-size: var(--normal-font-size);
    color: var(--text-color-light);
    background-color: var(--body-color);
    border: 4px solid var(--border-color) !important;
    transition: .3s;
}

.theme-offcanvas .search-contents .input-button input[type="text"]:focus {
    border-color: var(--primary-color) !important;
}

.theme-offcanvas .search-contents .input-button .button {
    position: absolute;
    right: 4px;
    top: 0;
    padding: 0 12px;
    height: 52px;
    line-height: 52px;
    background: none;
    border: 0 none
}

.theme-offcanvas .search-contents .input-button .button input {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    opacity: 0;
    cursor: pointer
}

.theme-offcanvas .search-contents .input-button .button img {
    max-width: 20px;
    vertical-align: sub;
}

.ebcontents-search-keyword {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.ebcontents-search-keyword .master-title h2 {
    margin-bottom: 15px;
    padding-bottom: 7px;
    font-size: 13px;
    color: var(--text-color);
    font-weight: 700;
    border-bottom: 2px solid var(--border-color-light);
}

.ebcontents-search-keyword .ebcontents-keyword-list {
    display: flex;
    flex-wrap: wrap;
}

.ebcontents-search-keyword .ebcontents-keyword-list > li {
    margin: 0 7px 7px 0;
    padding: 0 12px;
    line-height: 30px;
    font-size: 13px;
    background-color: var(--body-color-bage);
    border: 2px dotted transparent;
    border-radius: 15px;
    transition: .3s;
}

@media(max-width: 767px) {
    .theme-offcanvas {
        width:360px;
    }
}

/* 카테고리 메뉴 */
.category-nav {
    margin-top: 10px;
}

.category-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.category-nav ul li {
    flex: 0 0 auto;
    width: 49%;
    margin-bottom: 7px;
}

.category-nav ul li a {
    display: block;
    padding: 5px;
    font-size: var(--smaller-font-size);
    text-align: center;
    color: var(--text-color);
    background-color: var(--body-color-deep);
    border-radius: 15px;
    transition: .3s;
}

@media (min-width: 992px) {
    .category-nav {
        padding: 0;
    }

    .category-nav ul li a:hover {
        background-color: var(--border-color-light);
    }
}

/* --- 멤버 모달 --- */
.theme-offcanvas .member-list {
    display: flex;
    justify-content: space-between;
}

.theme-offcanvas .member-list li {
    flex: 0 0 auto;
    width: 32.8%;
}

.theme-offcanvas .member-list li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 6px 8px;
    background-color: var(--border-color);
    transition: .3s;
}

.theme-offcanvas .member-list li a:hover {
    background-color: var(--black-color);
    box-shadow: 3px 3px 7px rgba(0,0,0,.2);
}

.theme-offcanvas .member-list li a img {
    display: inline-block;
    width: 16px;
}

.theme-offcanvas .member-list li a span {
    display: inline-block;
    margin-left: 7px;
    padding: 0 7px;
    font-size: 11px;
    color: var(--white-color);
    border-left: 1px solid rgba(255,255,255,.5);
}

/* --- 최근본상품, 장바구니, 위시리스트 --- */
.theme-offcanvas .shop-member-box {
    position: relative;
    margin-bottom: 15px
}

.theme-offcanvas .shop-member-box .shop-member-box-title {
    position: relative;
    padding-bottom: 7px;
    margin: 20px 0 15px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-color);
    border-bottom: 2px solid var(--border-color-light);
}

.theme-offcanvas .shop-member-box .shop-member-box-title span {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin-left: 5px;
    font-size: 11px;
    font-weight: 400;
    text-align: center;
    color: var(--white-color);
    background-color: var(--primary-color);
    border-radius: 50%;
}

.theme-offcanvas .shop-member-box .panel .panel-heading {
    background-color: transparent;
    border: 0;
    padding: 0
}

.theme-offcanvas .shop-member-box .panel .panel-title {
    position: relative;
    height: 40px;
    margin: 0;
    font-size: .9375rem;
    color: #fff;
    line-height: 1.5;
    background-color: #353535;
    border: 0;
    padding: 10px 26px 10px 60px;
    cursor: pointer
}

.theme-offcanvas .shop-member-box .panel .panel-title .count-num {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #000;
    color: #fb8c00;
    font-size: .875rem
}

.theme-offcanvas .shop-member-box .panel .panel-body {
    border: 0;
    padding: 0
}

.theme-offcanvas .shop-member-box .op-area {
    margin: 10px 0;
}

.theme-offcanvas .shop-member-box .op-area h2 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden
}

.theme-offcanvas .shop-member-box .op-area li {
    position: relative;
    min-height: 55px;
    padding-left: 65px;
    margin-bottom: 5px
}

.theme-offcanvas .shop-member-box .op-area li a {
    font-size: var(--smaller-font-size)
}

.theme-offcanvas .shop-member-box .op-area li .prd-img {
    position: absolute;
    top: 0;
    left: 0px;
}

.theme-offcanvas .shop-member-box .op-area li .prd-img img {
    max-width: 50px;
    height: auto
}

.theme-offcanvas .shop-member-box .op-area li .prd-name {
    display: block;
    font-weight: 700;
    font-size: var(--small-font-size)
}

.theme-offcanvas .shop-member-box .op-area li .prd-cost {
    display: block;
    font-weight: 700;
    color: #cc2300;
    margin: 3px 0 0;
    font-size: var(--smaller-font-size)
}

.theme-offcanvas .shop-member-box .op-area .li-empty {
    padding: 30px 0;
    padding-left: 0;
    color: #959595;
    border-bottom: 0;
    text-align: center;
    min-height: inherit
}

.theme-offcanvas .shop-member-box #stv {
    position: relative
}

.theme-offcanvas .shop-member-box #stv_pg {
    display: block;
;text-align: center;
    margin: 10px 0 0;
    line-height: 20px;
    font-size: var(--small-font-size)
}

.theme-offcanvas .shop-member-box .stv-item {
    display: none;
    padding: 0 9px;
    word-break: break-all
}

.theme-offcanvas .shop-member-box #up {
    position: absolute;
    bottom: 5px;
    left: 10px;
    width: 30px;
    height: 20px;
    overflow: hidden;
    border: 1px solid #c5c5c5
}

.theme-offcanvas .shop-member-box #up span {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden
}

.theme-offcanvas .shop-member-box #down {
    position: absolute;
    bottom: 5px;
    right: 10px;
    width: 30px;
    height: 20px;
    overflow: hidden;
    border: 1px solid #c5c5c5
}

.theme-offcanvas .shop-member-box #down span {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden
}

.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1045;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    @include box-shadow($offcanvas-box-shadow);@include transition(transform $offcanvas-transition-duration ease-in-out);transition: transform .3s ease-in-out;
}

.offcanvas-backdrop {
    z-index: 1003;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    transition: opacity .15s linear;
    opacity: 0;
    visibility: hidden;
}

.offcanvas-backdrop.fade {
    opacity: 0;
}

.offcanvas-backdrop.show {
    opacity: 0.5;
    visibility: visible;
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
}

.offcanvas-header .btn-close {
    padding: ($offcanvas-padding-y * .5) ($offcanvas-padding-x * .5);
    margin-top: $offcanvas-padding-y * -.5;
    margin-right: $offcanvas-padding-x * -.5;
    margin-bottom: $offcanvas-padding-y * -.5;
}

.offcanvas-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.offcanvas-body {
    flex-grow: 1;
    padding: 1rem 1rem;
    overflow-y: auto;
}

.offcanvas-start {
    top: 0;
    left: 0;
    width: 400px;
    border-right: 1px solid rgba(0, 0, 0, .2);
    transform: translateX(-100%);
}

.offcanvas-end {
    top: 0;
    right: 0;
    width: 400px;
    border-left: 1px solid rgba(0,0,0,0.2);
    transform: translateX(100%);
}

.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: $offcanvas-vertical-height;
    max-height: 100%;
    border-bottom: $offcanvas-border-width solid $offcanvas-border-color;
    transform: translateY(-100%);
}

.offcanvas-bottom {
    right: 0;
    left: 0;
    height: $offcanvas-vertical-height;
    max-height: 100%;
    border-top: $offcanvas-border-width solid $offcanvas-border-color;
    transform: translateY(100%);
}

.offcanvas.show {
    transform: none;
    visibility: visible;
}

.btn-close {
    box-sizing: content-box;
    width: 30px;
    height: 30px;
    padding: 0.25em 0.25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: .25rem;
    opacity: .5;
}

.btn-close:hover {
    color: #000;
    text-decoration: none;
    opacity: 0.75;
}

.btn-close:disabled,.btn-close.disabled {
    pointer-events: none;
    user-select: none;
    opacity: 0.5;
}

/* 이벤트 상단바 */
.event-top-bar {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 44px;
    background: linear-gradient(90deg, #4fc7c0, #b9ecec 55%, #eaf9f6);
    background-size: 200% 100%;
    animation: eventBarShift 6s ease-in-out infinite;
    box-sizing: border-box;
    text-align: center;
}
@keyframes eventBarShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.event-top-bar-text {
    font-size: 13.5px;
    font-weight: 700;
    color: #14544f;
    letter-spacing: .2px;
}
.event-top-bar-close {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    color: #14544f;
    cursor: pointer;
    transition: background .2s ease;
}
.event-top-bar-close:hover {
    background: rgba(255,255,255,.8);
}
@media (max-width: 600px) {
    .event-top-bar { padding: 18px 40px; }
    .event-top-bar-text { font-size: 12px; }
}
