#cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 380px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    color: #1a1a1a;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .1);
    z-index: 10000;
    border: 1px solid rgba(255, 255, 255, .3);
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

@media (max-width:576px) {
    #cookie-banner {
        left: 5%;
        bottom: 20px;
        width: 90%;
        padding: 18px;
        border-radius: 15px
    }

    #cookie-banner h5 {
        font-size: 16px !important
    }

    #cookie-banner p {
        font-size: 12px !important;
        line-height: 1.5 !important
    }

    #cookie-banner button {
        padding: 10px !important;
        font-size: 13px !important
    }
}

body.cookie-not-accepted .mobile-auth-buttons,
body.cookie-not-accepted .footer-auth-wrap {
    display: none !important
}

#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 350px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    z-index: 10001;
    border: 1px solid #eee;
    font-family: 'Poppins', sans-serif;
    display: none;
    opacity: 0;
    transition: opacity .4s ease
}

@media (max-width:576px) {
    #cookie-banner {
        left: 0;
        bottom: 0;
        width: 100%;
        border-radius: 20px 20px 0 0;
        padding: 20px 20px 30px 20px
    }
}
