/*--------------------------------------
    eyoom (이윰빌더)
--------------------------------------*/
/*---------- Preloader ----------*/
.loader-wrap {
    position: fixed;
    overflow: hidden;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #e5e5e5;
    z-index: 1001
}

.no-js .loader-wrap {
    display: none
}

.loading-container, .loading-container .loading {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 100%
}

.loading-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
}

.loading-container .loading {
    border: 2px solid transparent;
    border-color: transparent #1e293c transparent #1e293c;
    -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
    -webkit-transform-origin: 50% 50%;
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out
}

#loading-text {
    -webkit-animation: loading-text-opacity 2s linear 0s infinite normal;
    animation: loading-text-opacity 2s linear 0s infinite normal;
    color: #1e293c;
    font-size: .75rem;
    font-weight: 400;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100px;
    transform: translateY(-50%)
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

@keyframes loading-text-opacity {
    0% {
        opacity: 0
    }

    20% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@-webkit-keyframes loading-text-opacity {
    0% {
        opacity: 0
    }

    20% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

/*---------- Wrapper ----------*/
.wrapper {
    position: relative;
    overflow: hidden
}

/*---------- Header & Navbar ----------*/
#hd {
    position: relative;
    border-bottom: 1px solid #d9dde3;
    background: #fff
}

#hd:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: ""
}

#hd-h1 {
    position: absolute;
    font-size: 0;
    text-indent: -9999em;
    line-height: 0;
    overflow: hidden
}

.to-content a {
    z-index: 1000;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    overflow: hidden
}

/* header wrap */
.header-wrap {
    position: relative;
    background-color: #fff;
    transition: all .3s ease 0s;
    z-index: 996;
}

.page-header-wrap {
    border-bottom: 0
}

.header-wrap.nav-sticky .nav-wrap {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 1004
}

@media (min-width: 992px) {
    .header-wrap.nav-sticky + .basic-body {
        padding-top:95px
    }

    .page-header-wrap.nav-sticky + .basic-body {
        padding-top: 65px
    }
}

/* top header */
.top-header {
    background-color: #676769
}

.top-header-nav:after {
    content: "";
    display: block;
    clear: both
}

.top-header-nav li {
    float: left;
    display: block;
    padding: 0;
    color: #151515;
    margin-right: 15px;
    vertical-align: middle
}

.top-header-nav.thn-end li {
    margin-right: 0;
    margin-left: 15px
}

.top-header-nav li > a {
    display: block;
    color: #fff;
    height: 38px;
    line-height: 38px;
    padding: 0;
    font-size: .875rem
}

.top-header-nav li > a i {
    margin-right: 5px;
    color: #d5d5d5
}

.top-header-nav li .eyoom-form {
    margin-top: 7px;
    font-size: .875rem
}

.top-header-nav li .eyoom-form .toggle {
    color: #fff
}

.top-header-nav li.dropdown > a {
    cursor: pointer
}

.top-header-nav li.dropdown .dropdown-menu {
    background-color: #fff;
    padding: 5px 0;
    border: 1px solid rgba(0,0,0,0.3);
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    left: inherit;
    right: 0;
    display: block;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out
}

.top-header-nav li.dropdown .dropdown-menu a {
    display: block;
    padding: 5px 10px;
    color: #151515
}

.top-header-nav li.dropdown .dropdown-menu a:hover {
    background-color: transparent;
    color: #3949ab
}

.top-header-nav li.dropdown .dropdown-menu.show {
    max-height: 500px;
    opacity: 1;
    visibility: visible
}

.top-header-nav li.dropdown:hover > .dropdown-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible
}

.top-header-nav.thn-end {
    float: right
}

.top-header-nav.thn-end li.dropdown .dropdown-menu {
    left: inherit;
    right: 0
}

.top-header-mobile-btn {
    display: none
}

.top-header-mobile-btn .navbar-toggler {
    font-size: 1.85rem;
    padding: .25rem .75rem;
    line-height: 1
}

.navbar-mobile-toggler {
    display: none
}

@media (max-width: 991px) {
    .top-header-mobile-btn {
        display:block;
        position: absolute;
        top: 60px;
        left: 0;
        width: 60px;
        z-index: 1
    }

    .top-header-mobile-btn .navbar-toggler {
        color: #222;
    }

    .navbar-mobile-toggler {
        display: block;
        position: fixed;
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        line-height: 45px;
        border: 0;
        background-color: #2d343d;
        margin-bottom: 0;
        font-size: 1rem;
        color: #fff;
        border-radius: 50%;
        z-index: 1000
    }
}

@media (max-width: 576px) {
    .top-header-nav li {
        margin-right:5px
    }
}

/* header title */
.header-title {
    position: relative;
    background-color: #1e293c
}

.header-title .container {
    position: relative;
    height: 100px;
    display: flex
}

.header-title .title-logo {
    align-self: center
}

.header-title .title-logo img {
    width: auto;
    height: 40px
}

.header-title .header-title-search {
    position: absolute;
    top: 31px;
    left: 50%;
    width: 700px;
    transform: translateX(-50%)
}

.header-title .header-title-search .eyoom-form .input {
    margin-bottom: 8px
}

.header-title .header-title-search .eyoom-form .input input {
    height: 38px;
    border-radius: 3px;
    color: #353535;
    background-color: #fff;
    border: 0
}

.header-title .header-title-search .eyoom-form .input input:focus {
    border: 0 !important
}

.header-title .header-title-search .eyoom-form .input-button .button {
    width: 55px;
    height: 38px;
    line-height: 38px;
    font-size: 1.25rem;
    text-align: center;
    background-color: #676769;
    color: #fff;
    border-radius: 0 3px 3px 0;
    top: 0;
    right: 0;
    border-left: 0;
    opacity: 1
}

.header-title .header-title-btn-wrap {
    position: absolute;
    top: 25px;
    right: .75rem
}

.header-title .header-title-btn-wrap:after {
    content: "";
    display: block;
    clear: both
}

.header-title .header-title-btn {
    position: relative;
    float: left;
    width: 80px;
    text-align: center
}

.header-title .header-title-btn > a {
    display: block;
    width: 80px
}

.header-title .header-title-btn > a > img {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 auto 7px
}

.header-title .header-title-btn h6 {
    position: relative;
    display: inline-block;
    font-size: .75rem;
    line-height: 1.7;
    color: #b5b5b5
}

.header-title .header-title-btn h6:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #b5b5b5;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.header-title .header-title-btn:hover h6:before {
    width: 100%
}

.header-title .header-title-btn .badge {
    position: absolute;
    top: -5px;
    right: 5px
}

.header-title .header-title-btn.btn-group .dropdown-toggle::after {
    display: none
}

.header-title .header-title-btn.btn-group .dropdown-menu {
    width: 300px;
    display: block;
    background-color: transparent;
    border: 0;
    padding: 10px 0 0;
    left: inherit;
    right: 0;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out
}

.header-title .header-title-btn.btn-group .dropdown-menu.show {
    max-height: 700px;
    opacity: 1;
    visibility: visible
}

.header-title .header-title-btn.btn-group:hover > .dropdown-menu {
    max-height: 700px;
    opacity: 1;
    visibility: visible
}

.header-title-mobile-btn {
    display: none
}

.header-title-mobile-btn .search-toggle {
    color: #fff;
    font-size: 1.25rem;
    padding: .25rem .75rem;
    line-height: 1
}

@media (max-width: 1399px) {
    .header-title .header-title-search {
        width:550px
    }
}

@media (max-width: 1199px) {
    .header-title .header-title-search {
        width:350px
    }
}

@media (max-width: 991px) {
    .header-title .container {
        height:80px
    }

    .header-title .title-logo img {
        height: auto;
        width: 100%;
    }

    .header-title-mobile-btn {
        display: block;
        position: absolute;
        top: 25px;
        right: 10px
    }
}

/* navbar */
.header-nav {
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
}

.navbar {
    padding: 0
}

.navbar-nav li {
    position: relative;
    list-style: none
}

.navbar-nav a,.navbar-toggler {
    color: #b5b5b5
}

.navbar-nav>li>.nav-link {
    font-weight: 600;
    font-size: 1rem;
    padding: 13px 15px !important
}

.navbar-nav>li>.nav-link.active {
    color: #fff
}

.navbar-nav>li>.nav-link:hover {
    color: #fff
}

.navbar-nav>li>.cate-dropdown-open {
    display: none
}

.navbar-nav>li.darkmode-menu {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #676769
}

.navbar-nav>li.darkmode-menu>.nav-link {
    padding: 13px 20px !important
}

.navbar-nav>li.darkmode-menu>.nav-link span {
    display: none
}

.navbar-nav>li>.pc-search-btn {
    font-size: 1.0625rem;
    padding: 23px 10px !important
}

.navbar-nav .dropdown-toggle::after {
    border: 0 none;
    font-family: 'FontAwesome';
    content: "\f107";
    font-weight: 900;
    height: auto;
    line-height: normal;
    margin-left: 5px;
    vertical-align: middle;
    width: auto;
    color: #959595
}

.navbar-nav .dropdown-toggle:only-child::after {
    display: none
}

.navbar-nav .dropdown-menu {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.7);
    border-radius: 0;
    margin: 0;
    min-width: 12rem;
    padding: 8px 0;
    top: 120%;
    display: inherit;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out
}

.navbar-nav .dropdown-menu .dropdown-toggler::after {
    position: absolute;
    right: 10px;
    top: 10px
}

.navbar-nav .dropdown:hover>.dropdown-menu {
    z-index: 10;
    top: 100% !important;
    opacity: 1;
    visibility: visible
}

.navbar-nav .dropdown-submenu .dropdown-menu {
    left: 100%;
    margin-top: 1px
}

.navbar-nav .dropdown-submenu:hover > .dropdown-menu {
    z-index: 10;
    top: -10px !important;
    opacity: 1;
    visibility: visible
}

.navbar-nav .dropdown-item {
    position: relative;
    padding: 5px 25px 5px 15px !important;
    color: #252525
}

.navbar-nav .dropdown-item i {
    position: absolute;
    top: 8px;
    right: 15px
}

.navbar-nav .dropdown-item.active,.navbar-nav .dropdown-item:active,.navbar-nav .dropdown-item:focus,.dropdown-item:hover {
    background-color: transparent
}

.navbar-nav .dropdown-menu li a.active,.navbar-nav .dropdown-menu li a:hover,.navbar-nav .dropdown-menu>ul>li:hover>a {
    color: #3949ab
}

@media (min-width: 992px) {
    .navbar {
        z-index:20
    }

    .navbar-nav {
        max-height: 70px
    }

    .navbar-nav>li.darkmode-menu>.nav-link {
        color: #fff
    }
}

@media (max-width: 1199px) {
    .navbar-nav>li>.nav-link {
        padding:13px 7px !important
    }
}

@media (max-width: 991px) {
    .navbar {
        height:0
    }

    .navbar-nav>li.darkmode-menu {
        position: inherit;
        top: inherit;
        right: inherit;
        background-color: inherit
    }

    .navbar-nav>li.darkmode-menu>.nav-link {
        padding: 0 15px !important
    }

    .navbar-nav>li.darkmode-menu>.nav-link span {
        margin-left: 5px;
        display: inline-block
    }
}

/* Shop category (pc) */
@media (min-width: 992px) {
    /* Category Nav */ .header-nav .navbar-nav > li.nav-category {
        margin-right:20px
    }

    .header-nav .navbar-nav > li.nav-category > a {
        display: block;
        width: 220px;
        padding: 15px 30px !important;
        font-size: 1rem;
        text-align: left;
        margin-left: 0px;
        background-color: #676769;
        color: #fff !important
    }

    .header-nav .navbar-nav > li.nav-category > a:after {
        display: none
    }

    /* Category Nav List */
    .header-nav .navbar-nav > li.nav-category > .dropdown-menu {
        width: 220px;
        border: 1px solid rgba(0, 0, 0, 0.3);
        border-top: 0;
        background-color: #fff;
        border-radius: 0;
        padding: 10px 0
    }

    .header-nav .navbar-nav > li.nav-category > .dropdown-menu li {
        position: static
    }

    .header-nav .navbar-nav > li.nav-category > .dropdown-menu li a {
        display: block;
        position: relative;
        background: transparent;
        padding: 0 20px;
        height: 37px;
        line-height: 37px;
        color: #151515;
        font-weight: 500
    }

    .header-nav .navbar-nav > li.nav-category > .dropdown-menu li a i {
        color: #b5b5b5
    }

    .header-nav .navbar-nav > li.nav-category > .dropdown-menu li a:hover {
        background: transparent;
        color: #3949ab !important
    }

    .header-nav .navbar-nav > li.nav-category > .dropdown-menu li.dropdown > a:after {
        position: absolute;
        top: 10px;
        right: 15px;
        color: #b5b5b5;
        display: inline-block;
        font-family: 'FontAwesome';
        content: "\f105";
        font-weight: 900
    }

    /* Category Nav List Open */
    .header-nav .navbar-nav > li.nav-category > .dropdown-menu > .item-vertical:hover > a {
        color: #3949ab
    }

    .header-nav .navbar-nav > li.nav-category > .dropdown-menu > .item-vertical:hover > a:after {
        color: #3949ab
    }

    .header-nav .navbar-nav > li.nav-category > .dropdown-menu > .item-vertical > .dropdown-menu {
        display: block;
        top: 0 !important;
        left: 100% !important;
        width: 220px;
        padding: 10px 0;
        border: 1px solid rgba(0, 0, 0, 0.3);
        border-radius: 0;
        background-color: #fff
    }

    .header-nav .navbar-nav > li.nav-category > .dropdown-menu > .item-vertical > ul > .dropdown-submenu {
        position: static
    }

    .header-nav .navbar-nav > li.nav-category > .dropdown-menu > .item-vertical > ul > .dropdown-submenu > a {
        position: relative
    }

    .header-nav .navbar-nav > li.nav-category > .dropdown-menu > .item-vertical > ul > .dropdown-submenu > a > .sub-caret {
        position: absolute;
        top: 10px;
        right: 15px
    }

    /* Category Nav Submenu Open */
    .header-nav .navbar-nav > li.nav-category > .dropdown-menu > .item-vertical > ul .submenu-marker {
        display: none
    }

    .header-nav .navbar-nav > li.nav-category > .dropdown-menu > .item-vertical > ul > .dropdown-submenu:hover > a {
        color: #3949ab
    }

    .header-nav .navbar-nav > li.nav-category > .dropdown-menu > .item-vertical > ul > .dropdown-submenu:hover > a > i {
        color: #3949ab
    }

    .header-nav .navbar-nav > li.nav-category > .dropdown-menu > .item-vertical > ul > .dropdown-submenu > .dropdown-menu {
        display: block;
        top: -2px !important;
        left: 100% !important;
        width: 220px;
        padding: 10px 0;
        border: 1px solid rgba(0, 0, 0, 0.3);
        border-radius: 0;
        background-color: #fff;
        max-height: 450px;
        overflow-y: auto
    }

    /* Category Dropdown Menu min-height setting */
    .header-nav .navbar-nav > li.nav-category > .dropdown-menu, .header-nav .navbar-nav > li.nav-category > .dropdown-menu > .item-vertical > .dropdown-menu, .header-nav .navbar-nav > li.nav-category > .dropdown-menu > .item-vertical > ul > .dropdown-submenu > .dropdown-menu {
        min-height: 450px
    }
}

/* Sidebar nav (mobile) */
.sidebar-left .sidebar-member-menu, .sidebar-left .sidebar-mobile-menu {
    display: none
}

@media (max-width: 991px) {
    .sidebar-left.offcanvas {
        position:fixed;
        bottom: 0;
        z-index: 1004;
        display: flex;
        flex-direction: column;
        max-width: 100%;
        width: 300px;
        background-color: #fff;
        background-clip: padding-box;
        outline: 0;
        transition: transform .3s ease-in-out
    }

    .offcanvas-backdrop {
        z-index: 1003
    }

    .sidebar-left .sidebar-left-content {
        padding-bottom: 70px
    }

    .sidebar-left.show .sidebar-left-content {
        position: relative;
        height: 100%;
        width: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch
    }

    .sidebar-left .offcanvas-header {
        padding: 15px
    }

    .sidebar-left .sidebar-member-menu {
        position: relative;
        display: block;
        background-color: #e5e5e5;
        padding: 5px 15px;
        border-top: 1px solid #c5c5c5
    }

    .sidebar-left .sidebar-member-menu .btn-e-crimson {
        background-color: #ab0000
    }

    .sidebar-left .sidebar-member-menu .sidebar-member-btn-box {
        display: block;
        float: left;
        width: 30%;
        margin-right: 2%;
    }

    .sidebar-left .sidebar-member-menu .sidebar-member-btn {
        position: relative;
        background: #2d343d;
        width: 100%;
        height: 30px;
        line-height: 30px;
        color: #fff;
        text-align: center;
        font-size: .8125rem;
        border-radius: 3px
    }

    /* nav */
    .sidebar-left .navbar-nav {
        position: relative;
        margin: 0;
        float: none;
        border-bottom: 1px solid #e5e5e5
    }

    .sidebar-left .navbar-nav > .nav-li-divider {
        display: none
    }

    .sidebar-left .navbar-nav > .nav-li-space {
        height: 40px;
        border-bottom: none;
        border-top: 1px solid #e5e5e5;
        background: #fff
    }

    .sidebar-left .navbar-nav > li {
        float: none
    }

    .sidebar-left .navbar-nav > li > a {
        line-height: 42px;
        padding: 0 15px !important;
        font-size: .9375rem;
        color: #000
    }

    .sidebar-left .navbar-nav > li > a > .nav-cate-icon {
        width: 20px;
        text-align: center
    }

    .sidebar-left .navbar-nav > li a {
        border-bottom: none;
        border-top: 1px solid #e5e5e5
    }

    .sidebar-left .navbar-nav > li a:hover {
        border-top: 1px solid #e5e5e5;
        color: #000
    }

    .sidebar-left .navbar-nav > li:first-child > a {
        border-top: 1px solid transparent
    }

    .sidebar-left .navbar-nav > li > .nav-link.active {
        color: #ab0000
    }

    .sidebar-left .navbar-nav > li.navbar-nav-home {
        display: block
    }

    .sidebar-left .navbar-nav > li.navbar-nav-home > a {
        background: #2b2b2e;
        color: #fff;
        border-top: 1px solid #2b2b2e
    }

    .sidebar-left .navbar-nav > li > .cate-dropdown-open {
        display: block;
        position: absolute;
        top: 1px;
        right: 0;
        width: 42px;
        height: 42px;
        line-height: 42px;
        margin: 0;
        padding: 0;
        text-align: center;
        border: 0;
        border-left: 1px solid #f0f0f0;
        z-index: 1
    }

    .sidebar-left .navbar-nav > li > .cate-dropdown-open:before {
        font-family: 'FontAwesome';
        content: "\f067";
        font-weight: 900;
        color: #353535
    }

    .sidebar-left .navbar-nav > li > .cate-dropdown-open:hover {
        border-top: 0
    }

    .sidebar-left .navbar-nav > li > .cate-dropdown-open.show:before {
        font-family: 'FontAwesome';
        content: "\f068";
        font-weight: 900;
        color: #ab0000
    }

    .sidebar-left .navbar-nav .dropdown > a:after {
        display: none
    }

    .sidebar-left .navbar-nav .dropdown-menu {
        position: relative;
        border: 0;
        float: none;
        width: auto;
        margin: 0;
        padding: 0;
        box-shadow: none;
        background-color: transparent;
        display: none
    }

    .sidebar-left .navbar-nav div.dropdown-menu:after {
        content: "";
        position: absolute;
        top: 10px;
        bottom: 10px;
        left: 20px;
        width: 1px;
        background-color: #e5e5e5 !important
    }

    .sidebar-left .navbar-nav .dropdown-menu > li > a {
        color: #555555;
        line-height: 26px;
        border-top: 1px solid #e5e5e5
    }

    .sidebar-left .navbar-nav .dropdown-menu > li:first-child > a {
        border-top: 1px solid #e5e5e5
    }

    .sidebar-left .navbar-nav .dropdown-menu.show {
        display: block;
        opacity: 1;
        visibility: visible
    }

    .sidebar-left .navbar-nav .dropdown-submenu > a {
        position: relative;
        color: #555555;
        font-size: .9375rem;
        background: #fafafa;
        line-height: 26px;
        padding: 6px 15px 6px 35px !important;
        border-top: 0
    }

    .sidebar-left .navbar-nav .dropdown-submenu > a:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 15px;
        width: 11px;
        height: 11px;
        transform: translateY(-50%);
        border: 2px solid #a5a5a5;
        border-radius: 50%;
        background: #fff;
        z-index: 1
    }

    .sidebar-left .navbar-nav .dropdown-submenu:first-child > a {
        border-top: 1px solid #e5e5e5
    }

    .sidebar-left .navbar-nav .dropdown-submenu > a:hover {
        background: #fafafa;
        color: #000;
        border-top: 0
    }

    .sidebar-left .navbar-nav .dropdown-submenu > a.active {
        background: #fafafa;
        color: #000
    }

    .sidebar-left .navbar-nav .dropdown-submenu:first-child > a:hover {
        border-top: 1px solid #e5e5e5
    }

    .sidebar-left .navbar-nav .dropdown-submenu:hover > .dropdown-menu {
        top: 0 !important
    }

    .sidebar-left .navbar-nav .dropdown-menu.show .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        left: 0
    }

    .sidebar-left .navbar-nav .dropdown-menu .dropdown-menu .dropdown-submenu > a {
        border-top: 0;
        padding: 6px 15px 6px 45px !important;
    }

    .sidebar-left .navbar-nav .dropdown-menu .dropdown-menu .dropdown-submenu > a:after {
        left: 20px;
        width: 12px;
        height: 1px;
        border: 0;
        border-radius: inherit;
        background: #d5d5d5
    }

    .sidebar-left .navbar-nav .dropdown-item i {
        position: absolute;
        top: 12px;
        right: 15px
    }

    /* Category Nav */
    .sidebar-left .navbar-nav > li.nav-category > a {
        display: block;
        background: #2d343d;
        color: #fff;
        border-top: 1px solid #2d343d
    }

    .sidebar-left .navbar-nav > li.nav-category > a:after {
        color: #fff
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu {
        display: block;
        border: 0;
        float: none;
        width: auto;
        margin: 0;
        padding: 0;
        position: static;
        box-shadow: none;
        background-color: transparent;
        opacity: 1;
        visibility: visible;
        margin-bottom: 42px
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > .navcate-load-more {
        display: none
    }

    /* Category Nav List */
    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li {
        position: relative
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li > a {
        display: block;
        line-height: 42px;
        padding: 0 15px;
        font-size: .9375rem;
        color: #000
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li:first-child > a {
        border-top: 0
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li:last-child {
        border-bottom: 1px solid #e5e5e5
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu li i {
        width: 20px;
        text-align: center
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li > a > i {
        color: #b5b5b5
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li > .cate-dropdown-open {
        position: absolute;
        top: 1px;
        right: 0;
        width: 42px;
        height: 42px;
        line-height: 42px;
        margin: 0;
        padding: 0;
        text-align: center;
        border: 0;
        border-left: 1px solid #f0f0f0
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li > .cate-dropdown-open:before {
        content: "\f067";
        font-family: 'FontAwesome';
        font-weight: 900;
        color: #353535
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li > .cate-dropdown-open.show:before {
        font-family: 'FontAwesome';
        content: "\f068";
        font-weight: 900;
        color: #ab0000
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li.active .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li.active > a {
        background: #ab0000;
        color: #fff;
        border-top: 1px solid #ab0000
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li.active > a > i {
        color: #fff
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li.active > .cate-dropdown-open {
        border: 0;
        border-left: 1px solid #d61d1d
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li.active > .cate-dropdown-open:before {
        content: "\f054";
        font-family: 'FontAwesome';
        font-weight: 900;
        color: #fff
    }

    /* Category Nav List Submenu */
    .sidebar-left .navbar-nav .dropdown-submenu > .dropdown-menu {
        display: block
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li .dropdown-menu {
        border: 0;
        float: none;
        width: auto;
        margin: 0;
        padding: 0;
        position: static;
        box-shadow: none;
        background-color: transparent
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li .dropdown-menu:after {
        content: "";
        position: absolute;
        top: 52px;
        bottom: 10px;
        left: 20px;
        width: 1px;
        background-color: #e5e5e5
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li .dropdown-menu .dropdown-submenu a {
        display: block;
        position: relative;
        color: #555555;
        font-size: .9375rem;
        background: #fafafa;
        line-height: 26px;
        padding: 6px 15px 6px 35px !important
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li > .dropdown-menu > .dropdown-submenu > a:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 15px;
        width: 11px;
        height: 11px;
        transform: translateY(-50%);
        border: 2px solid #a5a5a5;
        border-radius: 50%;
        background: #fff;
        z-index: 1
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li .dropdown-menu .dropdown-submenu a:hover {
        background: #fafafa;
        color: #000
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li .dropdown-menu .dropdown-submenu:first-child > a {
        border-top: 1px solid #e5e5e5
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li .dropdown-menu .dropdown-menu .dropdown-submenu a {
        padding: 6px 15px 6px 45px !important
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li .dropdown-menu .dropdown-menu .dropdown-submenu:last-child > a {
        border-bottom: 1px solid #e5e5e5
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li .dropdown-menu .dropdown-submenu a .sub-caret {
        position: absolute;
        top: 12px;
        right: 5px
    }

    .sidebar-left .navbar-nav > li.nav-category > .dropdown-menu > li > .dropdown-menu .dropdown-submenu.active > a {
        color: #ab0000
    }
}

/*---------- Page Title ----------*/
.page-title-wrap {
    position: relative;
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #b5b5b5;
    padding: 0
}

.page-title-wrap > .container {
    position: relative
}

.page-title-wrap h2 {
    margin: 0;
    padding: 17px 0;
    font-size: 1.25rem;
    color: #151515;
    font-weight: 700
}

.page-title-wrap .sub-breadcrumb-wrap {
    display: block;
    position: absolute;
    top: 20px;
    right: 15px
}

.page-title-wrap .sub-breadcrumb {
    color: #757575;
    font-size: .875rem
}

.page-title-wrap .sub-breadcrumb:after {
    content: "";
    display: block;
    clear: both
}

.page-title-wrap .sub-breadcrumb li {
    float: left;
    margin-left: 7px
}

.page-title-wrap .sub-breadcrumb li:before {
    content: "/";
    margin-right: 7px
}

.page-title-wrap .sub-breadcrumb li:first-child:before {
    display: none
}

.page-title-wrap .sub-breadcrumb a {
    color: #151515
}

/*---------- Body ----------*/
.basic-body {
    position: relative;
    padding: 30px 0
}

.basic-body:after {
    content: "";
    display: block;
    clear: both
}

/*---------- Main Contents ----------*/
.basic-body-main {
    float: left;
    padding: 0;
    width: 100%
}

/* Main Heading */
.main-heading {
    position: relative;
    margin: 0 0 20px;
    z-index: 1
}

.main-heading h2 {
    position: relative;
    font-size: 1.25rem;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px
}
.main-heading h2 a {
    font-size: inherit;
}
.main-heading h2 strong {
    color: #151515;
    font-size: inherit;
}

.main-heading h2 span {
    color: #959595
}

.main-heading h2:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    display: block;
    width: 40px;
    height: 1px;
    background: #151515;
    z-index: 1
}

.main-heading h2:before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 45px;
    display: block;
    width: 20px;
    height: 1px;
    background: #151515;
    z-index: 1
}

.main-heading .heading-more-btn {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 26px;
    height: 26px;
    line-height: 24px;
    border: 1px solid #151515;
    text-align: center;
    font-size: .8125rem;
    color: #151515
}

.main-heading .heading-more-btn:hover {
    color: #000
}

/* Main Section */
.main-section1 {
    margin: 0 0 30px
}

/* Shop Main Section */
.shop-main-section1 {
    margin-top: -30px
}

.main-section1-row {
    display: flex
}

.main-section1-c {
    flex-grow: 1;
    max-width: calc(100% - 240px * 2);
    padding: 20px
}

.main-section1-c-in {
    position: relative;
    overflow: hidden
}

.main-section1-l {
    flex-shrink: 0;
    width: 240px;
    padding: 20px 20px 20px 0;
    border-right: 1px solid #eaeaea
}

.main-section1-r {
    flex-shrink: 0;
    width: 240px;
    padding: 20px 0 20px 20px;
    border-left: 1px solid #eaeaea
}

.shop-main-section2 {
    min-height: 60px;
    background-color: #f0f0f0
}

.shop-main-section4 {
    padding: 20px 0
}

.shop-main-section-basic {
    position: relative
}

.shop-main-section-basic.border-top-1 {
    border-top: 1px solid #eaeaea
}

.shop-main-section-basic.border-bottom-1 {
    border-bottom: 1px solid #eaeaea
}

.shop-main-section-basic.border-bottom--1 {
    border-bottom: 1px solid #eaeaea;
    margin-bottom: -1px
}

.main-section-basic-row {
    display: flex
}

.main-section-basic-l {
    flex-shrink: 0;
    width: 240px;
    padding: 20px 20px 20px 0;
    border-right: 1px solid #eaeaea
}

.main-section-basic-r {
    flex-grow: 1;
    max-width: calc(100% - 240px);
    padding: 20px 0 20px 20px
}
.slick-list .slick-slide img {
    width: 100%;
}
@media (max-width: 1199px) {
    .main-section1-row {
        flex-wrap:wrap
    }

    .main-section1-c {
        flex-grow: inherit;
        max-width: inherit;
        width: 100%;
        flex: 1 1 100%;
        padding: 0;
        order: 1;
        margin-top: 30px;
        margin-bottom: 30px
    }

    .main-section1-l {
        width: 50%;
        flex-shrink: inherit;
        flex: 1 1 50%;
        padding: 0 10px 0 0;
        border: 0;
        order: 2
    }

    .main-section1-l:after {
        content: "";
        display: block;
        clear: both
    }

    .main-section1-l1 {
        float: left;
        width: 48%
    }

    .main-section1-l2 {
        float: right;
        width: 48%
    }

    .main-section1-r {
        width: 50%;
        flex-shrink: inherit;
        flex: 1 1 50%;
        padding: 0 0 0 10px;
        border: 0;
        order: 3
    }

    .main-section1-r:after {
        content: "";
        display: block;
        clear: both
    }

    .main-section1-r1 {
        float: left;
        width: 48%
    }

    .main-section1-r2 {
        float: right;
        width: 48%
    }
}

@media (max-width: 991px) {
    .main-section1-l {
        width:100%;
        flex: inherit;
        padding: 0
    }

    .main-section1-l1 {
        width: 49%
    }

    .main-section1-l2 {
        width: 49%
    }

    .main-section1-r {
        width: 100%;
        flex: inherit;
        padding: 0
    }

    .main-section1-r1 {
        width: 49%
    }

    .main-section1-r2 {
        width: 49%
    }
}

@media (max-width: 767px) {
    .header-title {

    }
    .header-title a {display: block;width: 190px;margin: 0 auto;}
    .header-title a img {
        
    }
    .shop-main-section2 {
        margin-bottom:20px
    }

    .shop-main-section4 {
        padding: 30px 0
    }

    .main-section-basic-row {
        display: block;
        padding: 30px 0
    }

    .main-section-basic-l {
        width: 100%;
        flex-shrink: inherit;
        padding: 0;
        border-right: 0
    }

    .main-section-basic-r {
        width: 100%;
        max-width: 100%;
        flex-grow: inherit;
        padding: 0
    }
}

@media (max-width: 576px) {
    .main-section1-l1 {
        float:inherit;
        width: 100%
    }

    .main-section1-l2 {
        float: inherit;
        width: 100%
    }

    .main-section1-r1 {
        float: inherit;
        width: 100%
    }

    .main-section1-r2 {
        float: inherit;
        width: 100%
    }

    .shop-main-section2 {
        margin-bottom: 30px
    }
}

/* Review Main */
.review-main {
    position: relative;
    overflow: hidden;
    padding-top: 75px;
    margin-top: -75px
}

.review-main-in {
    margin-left: -10px;
    margin-right: -10px
}

.review-main .review-item {
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
    outline: none
}

.review-main .review-item-in {
    position: relativebackground:#fff;
    margin-bottom: 20px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out
}

.review-main .review-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    background: #fff
}

.review-main .review-img-in {
    position: relative;
    overflow: hidden;
    width: 100%
}

.review-main .review-img-in:before {
    content: "";
    display: block;
    padding-top: 100%;
    background: #fff
}

.review-main .review-img-in img {
    display: block;
    max-width: 100% !important;
    height: auto !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.review-main .review-cont {
    position: relative;
    overflow: hidden
}

.review-main .review-cont h4 {
    position: relative;
    margin: 10px 0;
    font-size: 1.0625rem;
    font-weight: 700
}

.review-main .review-cont h5 {
    position: relative;
    margin-bottom: 10px;
    font-size: .9375rem
}

.review-main .review-cont h5 a {
    color: #ab0000
}

.review-main .review-cont p {
    color: #959595;
    font-size: .8125rem
}

.review-main .review-item-in:hover h4 a {
    text-decoration: underline;
    color: #000
}

.review-main .slick-dotted.slick-slider {
    margin-bottom: 20px
}

.review-main .slick-dots li {
    display: inline-block;
    margin: 0 1px;
    width: 30px;
    height: 2px;
    background: #959595
}

.review-main .slick-dots li button:before {
    content: "";
    width: 100%;
    height: 2px;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    opacity: 1
}

.review-main .slick-dots li.slick-active button:before {
    background: #ab0000
}

.review-main .slick-next, .review-main .slick-prev {
    width: 26px;
    height: 26px;
    line-height: 24px;
    text-align: center;
    border: 1px solid #d5d5d5;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    transform: translate(0,0)
}

.review-main .slick-next:hover, .review-main .slick-prev:hover {
    border: 1px solid #555
}

.review-main .slick-next {
    top: -52px;
    right: 40px;
    z-index: 1
}

.review-main .slick-prev {
    top: -52px;
    left: inherit;
    right: 70px;
    z-index: 1
}

.review-main .slick-next:before, .review-main .slick-prev:before {
    font-family: 'FontAwesome';
    font-weight: 900;
    color: #151515;
    font-size: .8125rem;
    line-height: inherit
}

.review-main .slick-next:before {
    content: "\f054"
}

.review-main .slick-prev:before {
    content: "\f053"
}

@media (max-width: 1199px) {
    .review-main-in {
        margin-left:-5px;
        margin-right: -5px
    }

    .review-main .review-item {
        padding: 0 5px
    }

    .review-main .slick-next {
        right: 45px
    }

    .review-main .slick-prev {
        right: 79px
    }
}

@media (max-width: 767px) {
    .review-main-in {
        margin-left:-2px;
        margin-right: -2px
    }

    .review-main .review-item {
        padding: 0 2px
    }

    .review-main .slick-next {
        right: 42px
    }

    .review-main .slick-prev {
        right: 76px
    }
}

/*---------- Footer ----------*/
.footer {
    position: relative;
    border-top: 1px solid #b5b5b5
}

.footer-top {
    padding: 15px 0
}

.footer-nav-wrap:after {
    content: "";
    display: block;
    clear: both
}

.footer-nav {
    width: 100%;
    text-align: center;
}

.footer-nav a {
    color: #151515;
    font-size: .9375rem;
    margin-right: 10px
}

.footer-nav a:hover {
    text-decoration: underline
}

.footer-right-nav {
    display: none;
    position: relative;
    width: 50%;
    float: right;
    text-align: right
}

.footer-right-nav a {
    color: #151515;
    font-size: .9375rem;
    margin-left: 10px
}

.footer-right-nav a:hover {
    text-decoration: underline
}

.footer-cont-info {
    position: relative;
    padding: 50px 0;
    background-color: #121212;
    color: #757575
}

.footer-cont-wrap {
    position: relative;
    font-size: .875rem
}

.footer-cont-wrap:after {
    content: "";
    display: block;
    clear: both
}

.footer-cont-box {
    position: relative;
    float: left;
    width: 33.33333%;
    min-height: 190px
}

.footer-cont-box:nth-child(1) {
    padding: 0 15px 0 0
}

.footer-cont-box:nth-child(2) {
    padding: 0 15px;
    border-left: 1px solid #353535;
    border-right: 1px solid #353535
}

.footer-cont-box:nth-child(3) {
    padding: 0 0 0 15px
}

.footer-cont-box .footer-text-logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: #b5b5b5;
    margin-bottom: 15px
}

.footer-cont-box p {
    margin: 0 0 3px
}

.footer-cont-box p a {
    color: #b5b5b5
}

.footer-cont-box p a:hover {
    text-decoration: underline
}

.footer-cont-box .footer-divider {
    margin: 0 7px;
    color: #353535
}

.footer-cont-box h5 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 15px
}

.footer-cont-box .footer-tel-num {
    margin: 15px 0
}

.footer-cont-box .footer-tel-num strong {
    font-size: 1.625rem
}

.footer-cont-box .footer-bank-num {
    font-size: 1.5rem;
    margin: 0 0 15px
}

.footer-cont-box .footer-btn-box {
    display: grid;
    position: relative;
    width: 100%;
    margin-top: 20px
}

.footer-copyright {
    color: #959595;
    font-size: .8125rem;
    text-align: center;
    padding: 15px 0;
    background-color: #1f1f1f
}

.footer-copyright strong {
    color: #d5d5d5;
    font-weight: 400
}

@media (max-width: 991px) {
    .footer-nav {
        width:100%;
        text-align: center
    }

    .footer-right-nav {
        width: 100%;
        text-align: center;
        margin-top: 10px
    }

    .footer-cont-info {
        padding: 30px 0
    }

    .footer-cont-box {
        width: 100%
    }

    .footer-cont-box:nth-child(1) {
        padding: 20px 0;
        border-bottom: 1px dotted #353535
    }

    .footer-cont-box:nth-child(2) {
        padding: 20px 0;
        border: 0;
        border-bottom: 1px dotted #353535
    }

    .footer-cont-box:nth-child(3) {
        padding: 20px 0
    }

    .footer-aside .footer-aside-box {
        top: 0;
        left: 50%;
        right: inherit;
        transform: translateX(-50%)
    }

    .footer-cont-box .footer-btn-box {
        position: inherit;
        bottom: inherit;
        left: inherit;
        padding-left: 0;
        margin-top: 20px
    }
}

@media (max-width: 767px) {
    .footer-nav a {
        font-size:.8125rem
    }

    .footer-right-nav a {
        font-size: .8125rem
    }

    .footer-copyright span {
        display: none
    }
}

/*---------- Search Full ----------*/
.search-full {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    z-index: 1010
}

.search-full .search-field {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%)
}

.search-field h2 {
    position: absolute;
    font-size: 0;
    text-indent: -9999em;
    line-height: 0;
    overflow: hidden
}

.search-field form {
    position: relative;
    width: 30%;
    margin: 0 auto
}

.search-field #mobile_search_input {
    font-size: 1.25rem;
    padding: 10px 30px 10px 10px;
    -webkit-appearance: none;
    display: block;
    background: transparent;
    color: #fff;
    width: 100%;
    border: none;
    border-bottom: 1px solid #fff;
    margin: 0 auto
}

.search-field .search-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    border: 0;
    cursor: pointer;
    color: #0078ff;
    background: transparent;
    font-size: 1.25rem
}

.search-full .search-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1
}

.search-close-btn:after {
    content: "";
    height: 50px;
    border-left: 2px solid #fff;
    position: absolute;
    transform: rotate(45deg);
    left: 24px
}

.search-close-btn:before {
    content: "";
    height: 50px;
    border-left: 2px solid #fff;
    position: absolute;
    transform: rotate(-45deg);
    left: 24px
}

@media (max-width: 1199px) {
    .search-field form {
        width:50%
    }
}

@media (max-width: 767px) {
    .search-field form {
        width:80%
    }
}

/*---------- Sidebar Shop Member ----------*/
.sidebar-shop-member-wrap {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1004;
    height: 100%;
    background: #fff
}

.sidebar-shop-member-btn {
    z-index: 1002;
    position: absolute;
    top: 50%;
    left: -47px;
    width: 42px;
    height: 100px;
    transform: translateY(-50%);
    background: #676769;
    border: 0;
    font-size: 1.25rem;
    color: #fff !important;
    border-radius: 42px;
    text-align: center;
}

.sidebar-shop-member-btn.mo-btn {
    display: none
}

.sidebar-shop-member-btn i {
    display: block;
    width: 42px;
    height: 50px;
    line-height: 50px
}

.sidebar-shop-member-btn .direction-icon {
    display: block;
    width: 42px;
    height: 50px;
    line-height: 50px;
    background: #1e2227;
    border-bottom-left-radius: 21px;
    border-bottom-right-radius: 21px
}

.sidebar-shop-member-btn.active .fa-outdent {
    display: none
}

.sidebar-shop-member-btn.active .direction-icon:before {
    display: block;
    width: 42px;
    height: 50px;
    line-height: 50px;
    content: "\f00d";
    font-family: 'FontAwesome';
    font-weight: 900;
    background: #000;
    border-bottom-left-radius: 21px;
    border-bottom-right-radius: 21px
}

.sidebar-shop-member.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1004;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: 300px;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    transition: transform .3s ease-in-out;
    overflow-y: auto !important;
    height: 100%;
    -webkit-overflow-scrolling: touch
}

.sidebar-shop-member-in {
    padding: 15px
}

.sidebar-shop-member .rside-nav-list {
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
    border: 1px solid #e5e5e5
}

.sidebar-shop-member .rside-nav-list:after {
    content: "";
    display: block;
    clear: both
}

.sidebar-shop-member .rside-nav-list li {
    float: left;
    width: 50%
}

.sidebar-shop-member .rside-nav-list li a {
    display: block;
    width: 100%;
    padding: 8px 10px;
    text-align: center;
    font-size: .875rem
}

.sidebar-shop-member .rside-nav-list li:nth-child(1) {
    border-bottom: 1px solid #e5e5e5
}

.sidebar-shop-member .rside-nav-list li:nth-child(2) {
    border-bottom: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5
}

.sidebar-shop-member .rside-nav-list li:nth-child(4) {
    border-left: 1px solid #e5e5e5
}

.sidebar-shop-member .shop-member-box {
    position: relative;
    margin-bottom: 25px
}

.sidebar-shop-member .shop-member-box .shop-member-box-title {
    position: relative;
    height: 38px;
    line-height: 38px;
    text-align: center;
    background-color: #353535;
    color: #fff;
    margin-bottom: 10px
}

.sidebar-shop-member .shop-member-box .shop-member-box-title .badge {
    position: absolute;
    top: -10px;
    right: -8px
}

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

.sidebar-shop-member .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
}

.sidebar-shop-member .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
}

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

.sidebar-shop-member .shop-member-box .op-area {
    border: 1px solid #d5d5d5;
    margin: 10px 0 30px;
    padding: 10px
}

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

.sidebar-shop-member .shop-member-box .op-area ul {
    margin-bottom: 10px
}

.sidebar-shop-member .shop-member-box .op-area li {
    border-bottom: 1px solid #eaeaea;
    position: relative;
    padding: 10px 0;
    min-height: 90px;
    padding-left: 80px
}

.sidebar-shop-member .shop-member-box .op-area li a {
    font-weight: 700;
    color: #000
}

.sidebar-shop-member .shop-member-box .op-area li .prd-img {
    position: absolute;
    top: 10px;
    left: 0px;
    padding: 3px;
    border: 1px solid #eaeaea
}

.sidebar-shop-member .shop-member-box .op-area li .prd-name {
    display: block;
    font-weight: 700
}

.sidebar-shop-member .shop-member-box .op-area li .prd-cost {
    display: block;
    font-weight: 700;
    color: #cc2300;
    margin: 3px 0 0
}

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

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

.sidebar-shop-member .shop-member-box #stv_pg {
    display: block;
    ;text-align: center;
    margin: 10px 0 0;
    line-height: 20px
}

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

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

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

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

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

@media (max-width: 991px) {
    .sidebar-shop-member-btn.pc-btn {
        display:none
    }

    .sidebar-shop-member-btn.mo-btn {
        display: block;
        z-index: 1000
    }

    .sidebar-shop-member-btn {
        position: fixed;
        top: inherit;
        transform: inherit;
        bottom: 15px;
        left: 15px;
        width: 45px;
        height: 45px;
        line-height: 45px;
        background-color: #2d343d;
        margin-bottom: 0;
        font-size: 1rem;
        border-radius: 50%
    }

    .sidebar-shop-member-btn i {
        width: 45px;
        height: 45px;
        line-height: 45px
    }

    .sidebar-shop-member-btn .direction-icon {
        display: none
    }

    .sidebar-shop-member-btn.active {
        background: #000
    }

    .sidebar-shop-member-btn.active i {
        display: none
    }

    .sidebar-shop-member-btn.active:before {
        content: "\f00d";
        font-family: 'FontAwesome';
        font-weight: 900
    }
    .ebs-shop020-m3 .swiper-slide {
        height: auto;
    }
    .ebs-shop020-m3 .swiper-slide img {
        width: 40%;
    }
}

/*---------- Offcanvas ----------*/
.offcanvas-backdrop {
    z-index: 1003
}

/*---------- Animate Image Hover ----------*/
.animate-img-hvr {
    position: relative;
    display: block
}

.animate-img-hvr:before, .animate-img-hvr:after {
    z-index: 1;
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.35);
    visibility: hidden
}

.animate-img-hvr:before {
    top: 0;
    left: 0
}

.animate-img-hvr:after {
    bottom: 0;
    right: 0
}

.animate-img-hvr:hover:before, .animate-img-hvr:hover:after {
    width: 100%;
    height: 100%;
    visibility: visible
}

.animate-img-hvr2 {
    position: relative;
    display: block
}

.animate-img-hvr2:before, .animate-img-hvr2:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    -webkit-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    z-index: 1
}

.animate-img-hvr2:hover:before, .animate-img-hvr2:hover:after {
    background-color: rgba(255, 255, 255, 0.1)
}

.animate-img-hvr2:hover:before {
    height: 0
}

.animate-img-hvr2:hover:after {
    width: 0
}

.animate-img-hvr3 {
    position: relative;
    display: block
}

.animate-img-hvr3:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff
}

.animate-img-hvr3:hover:after {
    animation: hovereffect 1s
}

@keyframes hovereffect {
    0% {
        opacity: 0;
        width: 80%;
        height: 80%;
    }

    50% {
        opacity: .2;
        width: 100%;
        height: 100%
    }

    100% {
        opacity: 0;
        width: 100%;
        height: 100%
    }
}

/*---------- Eb BackToTop ----------*/
.eb-backtotop {
    position: fixed;
    right: 15px;
    bottom: 70px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    border-radius: 50% !important;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.15);
    background: #fff;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear
}

.eb-backtotop.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.eb-backtotop:after {
    position: absolute;
    content: "\f106";
    font-family: 'FontAwesome';
    font-weight: 900;
    text-align: center;
    font-size: 16px;
    color: #757575;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    line-height: 28px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear
}

.eb-backtotop:hover:after {
    color: #ab0000
}

.eb-backtotop svg path {
    fill: none
}

.eb-backtotop svg.backtotop-progress path {
    stroke: #b5b5b5;
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear
}

.eb-backtotop .progress-count {
    display: block;
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    font-size: 11px;
    text-align: center;
    color: #a5a5a5
}

.eb-backtotop {
    box-shadow: inset 0 0 0 2px rgba(0,0,0,0.15)
}

.eb-backtotop:after {
    color: #2b2b2e
}

.eb-backtotop svg.backtotop-progress path {
    stroke: #cc2300
}

.ol-before {
    position: relative;
    display: block;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    box-shadow: 0 0 4px rgba(0,0,0,0.15)
}

.ol-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e5e5e5
}

.ol-header h5 {
    font-size: 1.0625rem;
    font-weight: 700
}

.ol-body {
    padding: 20px
}

.ol-forgot {
    text-align: right;
    margin-bottom: 5px
}

.ol-forgot a:hover {
    color: #000;
    text-decoration: underline
}

.ol-footer {
    padding: 15px 20px;
    background-color: #f5f5f5
}

.ol-footer p {
    font-size: .75rem;
    color: #757575;
    margin-bottom: 10px
}

.ol-footer .btn-e-dark {
    background-color: #2d343d;
    border-color: #2d343d
}

.ol-footer .btn-e-dark:hover {
    background-color: #363f4b;
    border-color: #424953
}
.tbl_goods .td_mng_shop {
    display: none;
}