@charset "utf-8";

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
공통CSS
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
html,
body {
    overflow-x: hidden !important;
}
ul,
ol {
    list-style: none;
}
body {
    font-size: 16px;
    line-height: 1;
    color: #333;
}
.container_fix {
    width: 1230px;
}
.container_img img {
    display: block;
}
@media (min-width: 1950px) {
    .container_img img {
        width: 100%;
        margin: 0 auto;
    }
}
@media (max-width: :1850px) {
    .container_img img {
        width: 100%;
        margin: 0 auto;
    }
}
@media (max-width: 991px) {
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
헤더 html > thema > fivesense-basic > shop.head.php
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
header.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.3s;
    z-index: 10;
}
header.header > .container_fix {
    width: 1820px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header.header > .container_fix > div {
    display: table-cell;
    vertical-align: middle;
    position: relative;
}
header.header > .container_fix > div.header_logo {
    width: 183px;
    text-align: left;
}
header.header > .container_fix > div.header_logo .logo_b {
    display: none;
}
header.header > .container_fix > div.header_menu {
    width: 100%;
    text-align: right;
}
header.header > .container_fix > div.header_menu > ul {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
header.header > .container_fix > div.header_menu > ul > li {
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding: 0 35px;
}
header.header > .container_fix > div.header_menu > ul > li > a {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    line-height: 100px;
    position: relative;
    display: block;
}
header.header > .container_fix > div.header_menu > ul > li:last-child > a {
    margin-right: 0;
}
header.header > .container_fix > div.header_menu > ul > li > a::after {
    content: '';
    height: 2px;
    background: #222222;
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    transform-origin: center;
    transition: all 0.2s;
    z-index: 2;
}
header.header > .container_fix > div.header_menu > ul > li:hover > a::after {
    width: 100%;
}

header.header > .container_fix > div.header_menu > ul > li > .sub_div {
    position: fixed;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    height: 0;
    right: 0;
    transform: translateX(-50%);
    transform-origin: top;
}
header.header > .container_fix > div.header_menu > ul > li:hover > .sub_div {
    visibility: visible;
    opacity: 1;
    height: auto;
}
header.header > .container_fix > div.header_menu > ul > li > .sub_div > ul {
    display: flex;
    gap: 30px;
    width: 100%;
}
header.header > .container_fix > div.header_menu > ul > li > .sub_div > ul > li {
    display: inline-block;
    margin-right: 35px;
}
header.header > .container_fix > div.header_menu > ul > li > .sub_div > ul > li > a {
    display: block;
    font-size: 16px;
    color: #222222;
    line-height: 100px;
}
header.header > .container_fix > div.header_menu > .header_menu_bg {
    background: #fff;
    position: fixed;
    width: 100%;
    top: 100px;
    left: 0;
    height: 0;
    transform-origin: top;
    opacity: 0;
    transition: all 0.3s;
    visibility: hidden;
    border-top: 1px solid #f3f3f3;
}
header.header > .container_fix > div.header_menu > ul:hover + .header_menu_bg {
    opacity: 1;
    height: 100px;
    visibility: visible;
}
header.header > .container_fix > div.header_btn {
    width: 100px;
    white-space: nowrap;
    text-align: right;
    display: flex !important;
    gap: 46px;
    align-items: center;
}
header.header > .container_fix > div.header_btn .lang_box {
    display: block;
    position: relative;
}
header.header > .container_fix > div.header_btn .lang_box a.lang_a {
    font-size: 17px;
    color: #ffffff;
    font-weight: 600;
    padding-right: 20px;
}
header.header > .container_fix > div.header_btn .lang_box a.lang_a span.tri {
    border-top: 5px solid #fff;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    position: absolute;
    right: 0;
    top: 8px;
    transition: all 0.4s;
}
header.header > .container_fix > div.header_btn .lang_box:hover a.lang_a span.tri {
    transform: rotate(90deg);
}
header.header > .container_fix > div.header_btn .lang_box a.lang_a + ul {
    position: absolute;
    top: 4px;
    left: -80px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}
header.header > .container_fix > div.header_btn .lang_box:hover a.lang_a + ul {
    opacity: 1;
    left: -100px;
    visibility: visible;
}
header.header > .container_fix > div.header_btn .lang_box a.lang_a + ul li {
    display: inline-block;
    margin-right: 20px;
}
header.header > .container_fix > div.header_btn .lang_box a.lang_a + ul li a {
    font-size: 17px;
    color: #fff;
    font-weight: 600;
}

header.header > .container_fix > div.header_btn .mobile_all_menu_btn {
    display: none;
}
header.header.active /* header.header.fixed */ {
    background: #fff;
}
header.header.active > .container_fix > div.header_logo .logo_b
/* header.header.fixed > .container_fix > div.header_logo .logo_b */ {
    display: block;
}
header.header.active > .container_fix > div.header_logo .logo_w
/* header.header.fixed > .container_fix > div.header_logo .logo_w */ {
    display: none;
}
header.header.active > .container_fix > div.header_menu > ul > li > a
/* header.header.fixed > .container_fix > div.header_menu > ul > li > a */ {
    color: #000000;
}
header.header.active > .container_fix > div.header_btn .lang_box a.lang_a
/* header.header.fixed > .container_fix > div.header_btn .lang_box a.lang_a */ {
    color: #222222;
}
header.header.active > .container_fix > div.header_btn .lang_box a.lang_a + ul li a
/* header.header.fixed > .container_fix > div.header_btn .lang_box a.lang_a + ul li a */ {
    color: #222;
}
header.header.active > .container_fix > div.header_btn .lang_box a.lang_a span.tri
/* header.header.fixed > .container_fix > div.header_btn .lang_box a.lang_a span.tri */ {
    border-top-color: #222222;
    transition: none;
}
header.header .all_menu {
    display: none;
}

@media (max-width: 1500px) {
    header.header > .container_fix > div.header_menu > ul {
        position: relative;
    }
    header.header > .container_fix > div.header_menu > ul > li {
        position: static;
    }
  /*   header.header > .container_fix > div.header_menu > ul > li > .sub_div {
        position: absolute;
        left: 0;
    } */
}

@media (max-width: 1200px) {
    header.header > .container_fix > div.header_menu > ul > li > a {
        margin-right: 30px;
    }
    header.header > .container_fix > div.header_menu > ul > li > .sub_div > ul > li {
        margin-right: 15px;
    }
}

@media (max-width: 991px) {
    header.header > .container_fix > div.header_btn {
        gap: 20px;
    }
    header.header > .container_fix > div.header_btn .mobile_all_menu_btn {
        display: none;
    }
    header.header.active,
    header.header.fixed {
        background: #fff;
    }
    header.header.active > .container_fix > div.header_logo .logo_b,
    header.header.fixed > .container_fix > div.header_logo .logo_b {
        display: block;
    }
    header.header.active > .container_fix > div.header_logo .logo_w,
    header.header.fixed > .container_fix > div.header_logo .logo_w {
        display: none;
    }
    header.header.active > .container_fix > div.header_menu > ul > li > a,
    header.header.fixed > .container_fix > div.header_menu > ul > li > a {
        color: #000000;
    }
    header.header.active > .container_fix > div.header_btn .lang_box a.lang_a,
    header.header.fixed > .container_fix > div.header_btn .lang_box a.lang_a {
        color: #222222;
    }
    header.header.active > .container_fix > div.header_btn .lang_box a.lang_a + ul li a,
    header.header.fixed > .container_fix > div.header_btn .lang_box a.lang_a + ul li a {
        color: #222;
    }
    header.header.active > .container_fix > div.header_btn .lang_box a.lang_a span.tri,
    header.header.fixed > .container_fix > div.header_btn .lang_box a.lang_a span.tri {
        border-top-color: #222222;
        transition: none;
    }
    header.header .all_menu {
        display: none;
    }
    header.header {
        padding: 25px 0;
    }
    header.header > .container_fix {
        display: flex;
        justify-content: space-between;
    }
    header.header > .container_fix > div.header_btn {
        width: auto;
    }
    header.header > .container_fix > div.header_menu,
    header.header > .container_fix > div.header_btn .lang_box {
        display: none;
    }
    header.header > .container_fix > div.header_btn .mobile_all_menu_btn {
        display: block;
    }
    header.header.fixed > .container_fix > div.header_btn .mobile_all_menu_btn > a.all_menu_btn > span,
    header.header > .container_fix > div.header_btn .mobile_all_menu_btn > a.all_menu_btn.active > span {
        background: #222;
    }
    header.header > .container_fix > div.header_btn .mobile_all_menu_btn > a.all_menu_btn {
        display: inline-block;
        width: 28px;
        vertical-align: middle;
        z-index: 30;
        position: relative;
    }
    header.header > .container_fix > div.header_btn .mobile_all_menu_btn > a.all_menu_btn > span {
        display: block;
        width: 28px;
        height: 2px;
        margin-bottom: 8px;
        background: #fff;
        transition: all 0.5s;
    }
    header.header > .container_fix > div.header_btn .mobile_all_menu_btn > a.all_menu_btn > span:nth-child(2) {
        width: 22px;
        margin-left: auto;
    }
    header.header > .container_fix > div.header_btn .mobile_all_menu_btn > a.all_menu_btn > span:nth-child(3) {
        margin-bottom: 0;
    }
    header.header > .container_fix > div.header_btn .mobile_all_menu_btn > a.all_menu_btn.active > span:nth-child(1) {
        transform: translateY(10px) rotate(-45deg);
    }
    header.header > .container_fix > div.header_btn .mobile_all_menu_btn > a.all_menu_btn.active > span:nth-child(2) {
        opacity: 0;
    }
    header.header > .container_fix > div.header_btn .mobile_all_menu_btn > a.all_menu_btn.active > span:nth-child(3) {
        transform: translateY(-10px) rotate(45deg);
    }

    header.header .all_menu {
        display: block;
        left: 100%; /* opacity:0; */
        visibility: hidden;
        transition: all 0.5s;
        background: #fff;
        width: 100%;
        position: fixed;
        top: 0;
        height: 100vh;
        overflow-y: auto;
    }
    header.header .all_menu.active {
        left: 0; /* opacity:1; */
        visibility: visible;
    }
    header.header .all_menu .all_menu_header {
        padding: 30px 15px;
        border-bottom: 1px solid #e1e1e1;
        position: relative;
        margin-bottom: 20px;
    }
    header.header .all_menu .all_menu_header > ul {
    }
    header.header .all_menu .all_menu_header > ul > li {
        display: inline-block;
        margin-right: 30px;
    }
    header.header .all_menu .all_menu_header > ul > li:last-child {
        margin-right: 0;
    }
    header.header .all_menu .all_menu_header > ul > li > a {
        font-size: 18px;
        color: #999;
    }
    header.header .all_menu .all_menu_header > ul > li.active > a {
        color: #1c9ae9;
    }
    /* header.header .all_menu .all_menu_header a.all_menu_close{position:absolute; width:28px; display:block; top:15px; right:15px;}
	header.header .all_menu .all_menu_header a.all_menu_close span{display:block; width:28px; height:2px; transition:all 0.3s; 
	background:#222; transform:translateY(11px) rotate(45deg);}
	header.header .all_menu .all_menu_header a.all_menu_close span:nth-child(2){transform:translateY(-11px) rotate(45deg);} */
    header.header .all_menu .container_fix ul.all_menu_ul {
        padding: 0 15px;
    }
    header.header .all_menu .container_fix ul.all_menu_ul > li {
        display: block;
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid #e1e1e1;
    }
    header.header .all_menu .container_fix ul.all_menu_ul > li > a {
        font-size: 20px;
        color: #222222;
        display: block;
        position: relative;
    }
    header.header .all_menu .container_fix ul.all_menu_ul > li > a > span.mobile_plus {
        display: block;
        position: absolute;
        top: 3px;
        right: 0;
        width: 14px;
        height: 14px;
    }
    header.header .all_menu .container_fix ul.all_menu_ul > li > a > span.mobile_plus::before {
        content: '';
        width: 14px;
        height: 1px;
        position: absolute;
        top: 6px;
        background: #333;
    }
    header.header .all_menu .container_fix ul.all_menu_ul > li > a > span.mobile_plus::after {
        content: '';
        width: 1px;
        height: 14px;
        position: absolute;
        left: 6px;
        background: #333;
    }
    header.header .all_menu .container_fix ul.all_menu_ul > li > a.active > span.mobile_plus::before {
        background: #1c9ae9;
    }
    header.header .all_menu .container_fix ul.all_menu_ul > li > a.active > span.mobile_plus::after {
        display: none;
    }
    header.header .all_menu .container_fix ul.all_menu_ul > li > .all_menu_sub_div {
        margin-top: 20px;
        display: none;
    }
    header.header .all_menu .container_fix ul.all_menu_ul > li > a.active + .all_menu_sub_div {
        display: block;
    }
    header.header .all_menu .container_fix ul.all_menu_ul > li > .all_menu_sub_div > ul > li {
        margin-bottom: 20px;
    }
    header.header .all_menu .container_fix ul.all_menu_ul > li > .all_menu_sub_div > ul > li:last-child {
        margin-bottom: 0;
    }
    header.header .all_menu .container_fix ul.all_menu_ul > li > .all_menu_sub_div > ul > li > a {
        font-size: 16px;
        color: #666;
    }
    header.header .all_menu .container_fix ul.all_menu_ul > li > .all_menu_sub_div > ul > li > .all_menu_sub_div2 {
        display: none;
    }
}
@media (max-width: 768px) {
    header.header {
        padding: 20px 0;
    }
    header.header > .container_fix > div.header_logo img {
        width: 125px;
    }
    header.header .all_menu .all_menu_header {
        padding: 25px 15px;
    }
    header.header .all_menu .all_menu_header > ul > li > a {
        font-size: 16px;
    }
    header.header .all_menu .container_fix ul.all_menu_ul > li > a {
        font-size: 18px;
    }
    header.header .all_menu .container_fix ul.all_menu_ul > li > .all_menu_sub_div > ul > li > a {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    header.header {
        padding: 15px 0;
    }

    header.header > .container_fix > div.header_btn .mobile_all_menu_btn > a.all_menu_btn {
        width: 25px;
    }
    header.header > .container_fix > div.header_btn .mobile_all_menu_btn > a.all_menu_btn > span {
        width: 25px;
        height: 1px;
        margin-bottom: 7px;
    }
    header.header > .container_fix > div.header_btn .mobile_all_menu_btn > a.all_menu_btn > span:nth-child(2) {
        width: 20px;
    }
    header.header .all_menu .all_menu_header {
        padding: 18px 15px;
    }
    header.header .all_menu .all_menu_header > ul > li {
        margin-right: 15px;
    }
    header.header .all_menu .all_menu_header > ul > li > a {
        font-size: 14px;
    }
    header.header > .container_fix > div.header_btn .mobile_all_menu_btn > a.all_menu_btn.active > span:nth-child(1) {
        transform: translateY(8px) rotate(-45deg);
    }
    header.header > .container_fix > div.header_btn .mobile_all_menu_btn > a.all_menu_btn.active > span:nth-child(3) {
        transform: translateY(-8px) rotate(45deg);
    }
}
/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
풀페이지 네비게이션 
html > thema > fivesense-basic > main > main-shop-basic-wide.php
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.fullpage_bar_wrap {
    width: 1850px;
    padding: 0 15px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}
.fullpage_bar_wrap > .fullpage_bar {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.fullpage_bar_wrap > .fullpage_bar .current_index {
    position: absolute;
    top: -30px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -1px;
    transform: rotate(90deg);
    white-space: nowrap;
    width: 20px;
    vertical-align: top;
}
.fullpage_bar_wrap > .fullpage_bar .total_length {
    position: absolute;
    bottom: -30px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -1px;
    transform: rotate(90deg);
    white-space: nowrap;
    width: 20px;
    vertical-align: top;
}
.fullpage_bar_wrap > .fullpage_bar .bar {
    width: 2px;
    height: 270px;
    background: #fff;
    position: relative;
    left: 8px;
    overflow: hidden;
}
.fullpage_bar_wrap > .fullpage_bar .bar .bar_active {
    position: absolute;
    width: 2px;
    height: 0;
    background: #1c9ae9;
    transition: all 0.7s;
}
@media (max-width: 991px) {
    .fullpage_bar_wrap {
        display: none;
    }
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
푸터
html > thema > fivesense-basic > shop.tail.php
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
footer.footer {
    padding: 40px 0;
    margin-top: 100px;
}
footer.footer .container_fix {
    width: 100%;
    max-width: 1430px;
}
footer.footer .container_fix ul {
}
footer.footer .container_fix ul li {
    display: inline-block;
    margin-right: 12px;
    position: relative;
}
footer.footer .container_fix ul li:last-child {
    margin-right: 0;
}
footer.footer .container_fix ul li::after {
    content: '';
    width: 1px;
    height: 17px;
    background: #d1d1d1;
    position: absolute;
    top: 5px;
    right: -8px;
}
footer.footer .container_fix ul li:last-child::after {
    display: none;
}
footer.footer .container_fix ul li,
footer.footer .container_fix ul li a,
footer.footer .container_fix ul li,
footer.footer .container_fix h5 {
    font-size: 15px;
    color: #888888;
    line-height: 26px;
}
.at-go #go-btn {
    display: none !important;
}

@media (max-width: 991px) {
    #fullpage footer.footer {
        display: none;
    }
    footer.footer .container_fix {
        padding-left: 0;
        padding: 0 15px;
    }
}
@media (max-width: 480px) {
    footer.footer {
        margin-top: 70px;
    }
    footer.footer {
        padding: 20px 0;
    }
    footer.footer .container_fix ul li {
        display: inline-block;
        margin-right: 20px;
        position: relative;
        text-align: center;
    }
    footer.footer .container_fix ul li::after {
        height: 14px;
        top: 5px;
        right: -6px;
        display: none;
    }
    footer.footer .container_fix ul .mobile_block {
        display: block;
    }
    footer.footer .container_fix ul li:nth-child(2)::after,
    footer.footer .container_fix ul li:nth-child(4)::after,
    footer.footer .container_fix ul li:nth-child(7)::after {
        display: none;
    }
    footer.footer .container_fix ul li,
    footer.footer .container_fix ul li a,
    footer.footer .container_fix ul li,
    footer.footer .container_fix h5 {
        font-size: 13px;
        line-height: 24px;
    }
}

header.header .header_btn > a {
    display: inline-block;
}
header.header .header_btn > a.search_btn {
    width: 24px;
    height: 23px;
    position: relative;
    /* margin-right: 25px; */
}
header.header .header_btn > a.search_btn span.circle {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    transition: all 0.3s;
}
header.header .header_btn > a.search_btn span.line {
    width: 2px;
    height: 8px;
    background: #fff;
    position: absolute;
    right: 2px;
    bottom: 0;
    transform: rotate(-45deg);
    transition: all 0.3s;
}

/*헤더 검색바*/
header.header .search_drop {
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    text-align: center;
    background: #fff;
    padding: 30px 0;
    border-top: 1px solid #e1e1e1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
header.header .search_drop.active {
    opacity: 1;
    visibility: visible;
}
header.header .search_drop .header_search {
    width: 600px;
    margin: 0 auto;
    position: relative;
}
header.header .search_drop .header_search input {
    width: 100%;
    height: 60px;
    border: 0;
    border-bottom: 1px solid #999999;
    font-size: 20px;
    color: #111;
    font-weight: 300;
    padding: 0 50px 0 5px;
}
header.header .search_drop .header_search input::placeholder {
    color: #999;
}
header.header .search_drop .header_search button {
    display: block;
    width: 24px;
    height: 23px;
    position: absolute;
    background: none;
    outline: none;
    border: 0;
    top: 20px;
    right: 15px;
}
header.header .search_drop .header_search button span.circle {
    width: 20px;
    height: 20px;
    border: 2px solid #111111;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
}
header.header .search_drop .header_search button span.line {
    width: 2px;
    height: 8px;
    background: #111111;
    position: absolute;
    right: 3px;
    bottom: 0;
    transform: rotate(-45deg);
}
header.header .search_drop .search_close {
    display: block;
    width: 26px;
    height: 22px;
    position: absolute;
    right: -40px;
    top: 20px;
}
header.header .search_drop .search_close span {
    display: block;
    width: 100%;
    height: 2px;
    background: #000000;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.3s;
    transform: rotate(-45deg);
    top: 10px;
}
header.header .search_drop .search_close span:nth-child(2) {
    transform: rotate(45deg);
}

@media (max-width: 991px) {
    header.header .search_drop {
        top: 68px;
    }
    header.header .search_drop .header_search {
        width: calc(100% - 30px);
    }
}
@media (max-width: 768px) {
    header.header .search_drop {
        top: 58px;
    }
}
@media (max-width: 480px) {
    header.header .header_btn > a.search_btn {
        width: 20px;
        height: 19px;
        /* margin-right: 10px; */
    }
    header.header .header_btn > a.search_btn span.circle {
        width: 16px;
        height: 16px;
        border: 1px solid #fff;
    }
    header.header .header_btn > a.search_btn span.line {
        width: 1px;
        height: 6px;
        right: 4px;
    }

    header.header .search_drop {
        top: 40px;
    }
    header.header .search_drop .header_search {
        width: calc(100% - 120px);
    }
    header.header .search_drop {
        padding: 15px 0;
    }
    header.header .search_drop .header_search input {
        height: 40px;
        font-size: 14px;
        padding: 0 30px 0 5px;
    }
    header.header .search_drop .header_search button {
        width: 20px;
        height: 19px;
        top: 11px;
        right: 6px;
    }
    header.header .search_drop .header_search button span.circle {
        width: 16px;
        height: 16px;
        border: 1px solid #111111;
    }
    header.header .search_drop .header_search button span.line {
        width: 1px;
        height: 6px;
        right: 4px;
    }
    header.header .search_drop .search_close {
        width: 22px;
        height: 18px;
        right: -35px;
        top: 12px;
    }
    header.header .search_drop .search_close span {
        height: 1px;
        top: 8px;
    }
    header.header .search_drop .search_close span:nth-child(2) {
        transform: rotate(45deg);
    }

    footer.footer .container_fix ul.link_ul {
        padding-bottom: 20px;
        position: relative;
        display: flex;
        justify-content: center;
    }

    footer.footer .container_fix ul.link_ul::after {
        display: block;
        width: calc(100% + 30px);
        height: 1px;
        background-color: #404040;
        content: '';
        position: absolute;
        bottom: 0;
        left: -15px;
    }
}

header.header > .container_fix > div.header_menu > ul > li > .sub_div{
	
	transform:unset;
	right:8%;

}


header.header.fixed{background:white;}
header.header.fixed .header_menu > ul > li > a{color:#222222 !important;}
header.header.fixed .header_btn > a.search_btn span.circle{border:2px solid #313131;}
header.header.fixed .header_btn > a.search_btn span.line{background:#313131;}
header.header.fixed .all_menu_btn img{filter:brightness(0.1);}
header.header.fixed .logo_b{display:block !important;}
header.header.fixed .logo_w{display:none;} 
.all_menu_wrap .left-cont > p,.all_menu_wrap .left-cont h5{font-family:'Pretendard';}



.cursor-custom {
    position: relative;
    display: none;
    opacity: 0;
    transition: .3s
}

.cursor-custom [class*="ie"] {
    display: none
}
@keyframes circularMotion {
  0% {
    transform: rotate(0deg); /* 초기 위치 */
  }
  100% {
    transform: rotate(360deg); /* 시계방향으로 360도 회전 */
  }
}
.cursor-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -56px;
    width: 115px;
    height: 116px;
    background-image: url('../img/cursor_text.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    animation: circularMotion 10s linear infinite;
    transform-origin: 50% 50%;
    transition: opacity .5s;
    opacity: 0
}



[data-pageid="home"] .cursor-custom::before {
    background-image: url('../img/cursor_text_fff.svg');
}

.cursor-custom.in {
    opacity: 1
}

.cursor-custom.stop::before {
    opacity: 1
}

@media screen and (min-width: 992px) {
	 .cursor-custom {
        display:block;
        width: 20px;
        height: 20px;
        background-color: #1c9ae9 ;
        border-radius: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100000;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        pointer-events: none
    }

    .cursor-custom,.cursor-custom.linkHover {transition:width 0.3s ease, height 0.3s ease, opacity 0.5s ease, background-color 0.5s; }
    .pc-nav-open .cursor-custom {
        background-color: #1c9ae9
    }

    .pc-nav-open .cursor-custom::before {
        opacity: 0
    }

    .cursor-custom.linkHover {
        width: 80px;
        height: 80px;
        opacity: 0.6;
        background-color: #bedeff;
        transform: scale(3)
    }

    .cursor-custom.linkHover::before {
        opacity: 0
    }

    .cursor-custom.hide {
        opacity: 0 !important;
        transition: opacity 0.8s ease !important
    }
}

@media (max-width: 991px) {
	.thema-wrapper.wrapper .menu_nav.sub .menu_angle{padding:0 !important; margin:0 7px!important;}
	.mc03_value .swiper-wrap .swiper-slide{border-bottom:0px solid transparent !important;}
	header.header .search_drop .header_search input{font-size:14px; height:38px;}
	header.header .search_drop > .form{width:calc(100% - 30px);}
	header.header .search_drop .header_search button span.circle{width:12px; height:12px; top:-8px; left:7px;}
	header.header .search_drop .header_search button span.line{right:3px; bottom:14px;}
	header.header .search_drop .search_close{width:20px; height:22px; right:-31px; top:8px;}
	.footer.custom .footer_info .mob-flex{display:flex;}
	.footer.custom .footer_info li::after{display:none;}
	 footer.footer .container_fix h5{font-size:12.5px;}
	.footer.custom .ft_link_ul {justify-content:center; display:flex; justify-content:center;}
	 .footer.custom .ft_link_ul li a{font-size:12px;}
	 footer.footer{padding:20px 0;}
	 .footer.custom .ft_link_ul{padding-bottom:20px;}
	 .footer.custom .footer_info{margin-top:20px;}
}

header.header .search_drop{z-index:999;}


header.header.fixed .header_btn > a.search_btn span.circle,
header.header.fixed .header_btn > a.search_btn span.line,
header.header.fixed .all_menu_btn .all_menu_btn img{filter: grayscale(100%) brightness(0%);}

header.header.active .header_btn > a.search_btn span.circle,
header.header.active .header_btn > a.search_btn span.line,
header.header.active .all_menu_btn .all_menu_btn img{filter: grayscale(100%) brightness(0%);}

