/*==================================================
Zhitu Network
Customer.css
Version 2.0
==================================================*/

.customer-box{
    position:fixed;
    right:28px;
    bottom:28px;
    z-index:9990;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
}

.customer-btn{
    width:66px;
    height:66px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    color:#fff;
    font-size:28px;
    background:linear-gradient(135deg,#1677ff,#6b5cff);
    box-shadow:0 18px 45px rgba(22,119,255,.35);
    transition:.35s;
}

.customer-btn:hover{
    transform:translateY(-4px) scale(1.05);
}

.customer-panel{
    width:300px;
    margin-bottom:18px;
    padding:24px;
    border-radius:24px;
    background:rgba(8,26,50,.96);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 30px 80px rgba(0,0,0,.38);

    opacity:0;
    visibility:hidden;
    transform:translateY(16px);
    transition:.35s;
}

.customer-box.active .customer-panel{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.customer-close{
    position:absolute;
    top:16px;
    right:16px;
    width:30px;
    height:30px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    color:#b5c9e8;
    background:rgba(255,255,255,.08);
    transition:.3s;
}

.customer-close:hover{
    color:#fff;
    background:rgba(255,255,255,.16);
}

.customer-panel h3{
    color:#fff;
    font-size:20px;
    margin-bottom:10px;
}

.customer-panel p{
    color:#afc2e3;
    font-size:14px;
    line-height:1.8;
    margin-bottom:20px;
}

.customer-status{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:20px;
    color:#8fc8ff;
    font-size:13px;
}

.customer-status i{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#00d896;
    box-shadow:0 0 12px #00d896;
}

.customer-item{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px;
    margin-bottom:12px;
    border-radius:16px;
    background:rgba(255,255,255,.05);
    transition:.3s;
}

.customer-item:last-child{
    margin-bottom:0;
}

.customer-item:hover{
    background:rgba(22,119,255,.14);
}

.customer-item i{
    width:40px;
    height:40px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(22,119,255,.18);
    color:#8fc8ff;
    flex-shrink:0;
}

.customer-item span{
    color:#fff;
    font-size:14px;
}

/*==================================================
MOBILE
==================================================*/

@media(max-width:768px){

    .customer-box{
        right:16px;
        bottom:20px;
    }

    .customer-btn{
        width:56px;
        height:56px;
        font-size:22px;
    }

    .customer-panel{
        width:calc(100vw - 32px);
        max-width:320px;
        padding:20px;
    }

}