@charset "utf-8";
/*
main.css for supported in all modern browsers 
ie11.0, chrome 29.0, safari 10, firefox 22.0, opera 48  
By xetemplate(https:xetemplate.com) 
*/

/* ------------------------------------------------------------------------------------------------------------------ */
/* Main
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-main-wrp {
    position: relative;
}

/* 스크롤다운 아이콘 */
.icon-scroll {
    display: none;
    z-index: 10;
    position: absolute;
    left: 50%;
    bottom: 80px;
    width: 36px;
    height: 60px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
    border-radius: 25px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.icon-scroll:before {
    position: absolute;
    left: 50%;
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    margin-left: -4px;
    top: 8px;
    border-radius: 4px;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-name: scroll;
}
@keyframes scroll {
    0% {
        opacity: 1;
    }  
    100% {
        opacity: 0;
        transform: translateY(46px);
    }
}

/* 고객센터 */
.xet-main-serviceCenter {
    display: none;
    z-index: 5;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.xet-main-serviceCenter .xet-customer {
    position: relative;
    padding: 20px;    
    color: #fff;
}
.xet-main-serviceCenter .xet-customer::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ff6600;
    opacity: 0.5;
    border-radius: 4px;
}
.xet-main-serviceCenter .xet-customer a {
    color: #fff;
}

/* 제품소개 */
.xet-main-product {}
.xet-main-product .xet-code {}

/* Notice */
.xet-main-notice {   
    z-index: 9;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;  
    border-bottom: 0;  
    background-color: rgba(0,0,0,0.25);
}
.xet-main-notice:not(.slider) {
    border-top: 1px solid rgba(255,255,255,0.3);
}
.xet-main-notice .notice-wrp {
    padding: 0 16px;
    height: 60px;
    color: #1b1b1b;
}
.xet-main-notice .notice-wrp .notice-swiper {
    height: 60px;
    overflow: hidden;
}
.xet-main-notice .notice-wrp .notice-swiper .flex-container {
    height: 60px;
}
.xet-layout-wrp .xet-main-notice .notice-wrp,
.xet-layout-wrp .xet-main-notice .notice-wrp a {
    color: #fff;
}
    /* dark mode */
    .xet-layout-wrp.dark .xet-main-notice {}




/* SM 
---------------------------------------------------------------------------- */
@media (min-width: 576px) {
    .xet-main-notice .notice-wrp {
        padding: 0 20px;
    }
}

/* MD 
---------------------------------------------------------------------------- */
@media (min-width: 768px) {
    .xet-main-notice .notice-wrp {
        padding: 0 20px;
    }

}

/* LG 
---------------------------------------------------------------------------- */
@media (min-width: 992px) {
    
    /* Notice */
    .xet-main-notice {
        z-index: 9;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%; 
    }
    /* dark mode */
    .xet-layout-wrp.dark .xet-main-notice {
        background-color: transparent;
    }
    .xet-main-notice .notice-wrp {
        padding: 0 20px;
        color: #fff;
    }
    .xet-main-notice .notice-wrp a {
        color: #fff;
    }

}

/* XL 
---------------------------------------------------------------------------- */
@media (min-width: 1200px) {  
    .xet-main-serviceCenter {
        right: 30px;
    }
    .xet-main-notice .notice-wrp {
        padding: 0 30px;
    }
}

/* XXL 
---------------------------------------------------------------------------- */
@media (min-width: 1400px) {  
    .xet-main-serviceCenter {
        right: 40px;
    }
    .xet-main-notice .notice-wrp {
        padding: 0 40px;
    }
}

