#ssc-toast{

    position:fixed;

    left:50%;
    bottom:30px;

    transform:translateX(-50%);

    background:rgba(10,20,45,.95);

    color:#fff;

    padding:14px 26px;

    border-radius:40px;

    border:1px solid rgba(255,215,100,.4);

    backdrop-filter:blur(12px);

    font-size:15px;

    font-weight:500;

    z-index:999999;

    opacity:0;

    transition:.35s;

    pointer-events:none;

    box-shadow:
        0 8px 30px rgba(0,0,0,.35);

}

#ssc-toast.show{

    opacity:1;

    bottom:45px;

}

body{

    user-select:none;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;

    -webkit-touch-callout:none;

}