/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
 * ------ 取代 Store 訂單管理 function 內的 style css 明碼 ---------
    Created on : 2022年5月27日, 下午5:46:52
    Author     : Shine
*/
/* Noto Sans TC (Chinese Traditional) 黑體字體（思源黑體）*/
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
#ookie-notice-check *:not(.fa):not(.fas){
    font-family:"Noto Sans TC", '微軟正黑體', sans-serif !important;
    /*font-size: 16px;*/
    letter-spacing: 1px;
}

body.scroll-hidden{
    overflow-x:hidden;
    overflow-y:hidden;
    height: 100vh !important;
}

cookie-notice-check
#store-tab{
    position: fixed;
    top: 70%;
    right: 0px;
    transform: translateY(-50%);
    width: 80px;
    z-index: 999;
    /*background: #525252;*/
    padding: 0;/*10px 15px;*/
}

#store-manage{
    list-style: none;
    margin: 0px;
    font-size: 24px;
}

#store-tab ul li a{
    color: #fff;
}

li.store-item button{
    width: 100%;
    height: 50px;
    padding: 5px;
    /*line-height: 25px;*/
}

li.store-item button span.badge{
    color: #000000;
}

/*        .fa-shopping-cart{
            margin-right: 10px;
            font-size: 25px;
        }*/

div.memSystemBlock, div.memSystemBlockCart{
    position: fixed;
    top: 50%;
    right: -100px;
    width: 130px;
    background: #f5f5f6;
    border: 1px #dedede solid;
    padding: 10px 0;
    padding-left: 30px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    transition: 0.5s ease-in-out;
    z-index: 9999;
}

div.System{
    transform: translateY(-100%);
}

div.memSystemBlockCart{
    transform: translateY(1px);
}

div.memSystemBlock.show, div.memSystemBlockCart.show{
    right: 0;
}

/*        .fa-user{
            width: 0;
            height: 0
        }*/

div.memSystemBlock > i.ftds-system-user{
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    width: 30px !important;
    height: 100%;
    border-right: 1px #212529 solid;
    background: #212529;
    cursor: pointer;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

/*        div.memSystemBlock > i.ftds-store-cart{
            top: 88px;
            left: 0;
        }        */

div.memSystemBlock > i.ftds-system-user:hover{
    background: #1c1f23 !important;
    color: #fff;
}

div.memSystemBlock > i.ftds-system-user:before, div.memSystemBlockCart > i.ftds-store-cart:before{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

ul#ftdsMemberMenu, ul#ftdsMemberMenuCart{
    list-style:none;
    /*text-align: center;*/
    color: #212121;
    font-size: 14px;
    font-family: '微軟正黑體';
    padding-left: 10px;
    margin: 0;
}

ul#ftdsMemberMenu li{
    padding: 5px 0px !important;
}


ul#ftdsMemberMenu li a {
    color: #000;
    text-decoration: none;
    transition: color .3s ease-out;
    cursor: pointer;
}


ul#ftdsMemberMenu li a:hover, ul#ftdsMemberMenuCart li a:hover{
    color: #f00;
}

/**----- Cookie Notice Check -----**/
#cookie-notice-check{
    width: 100%;
    height: 100px;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    color: #fff;
    background: #212121;
    position: fixed;
    animation-name: mPrivacyShow;
    animation-duration: 1s;
    animation-iteration-count: 1; /*--定義動畫重複的次數 infinite 動畫永遠重複播放--*/
    animation-fill-mode: forwards;
    /*--animation-direction: alternate;播放完畢後反向執行--*/
    bottom: -100px;
    z-index: 999;
}

#ftds-loading{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.9);
    top: 0;
    left: 0;
    z-index: 999;    
}

.ftds-loading-img{
    position: absolute;
    top: 50%;
    left: 50%;
    /*transform: translate(-50%, -50%);*/
}


@keyframes mPrivacyShow{
    0%{
        bottom: -100px;
    }
    100%{
        bottom: 0px;
    }
}

@keyframes mPrivacyHide{
    0%{
        bottom: 0px;
    }
    100%{
        bottom: -100px;
    }
}



.notification-box{
    display: flex;
    align-items: center;
    margin: auto;
    max-width: 1640px;
    position: relative;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    padding-right: 100px;
    padding-left: 100px;    
    color: #fff;
    font-size: 15px;
}

.notification-box div{
    letter-spacing: 2px;
}

.notification-text a{
    color: #ffff00;

}



