@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
.cookies-consent{
    font-family: 'Poppins', sans-serif;
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 365px;
    background:#efe5ee;
    padding: 25px 25px 30px 25px;
    border-radius: 15px;
    box-shadow: 1px 7px 14px -5px rgba(0,0,0,0.15);
    text-align: center;
    z-index: 10000;
    font-size:1rem;
}

.cookies-consent.hide{
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
    transition: all 0.3s ease;
}
::selection{
    color: #fff;
    background: #e88422;
}
.cookies-consent img{
    max-width: 90px;
    border-radius: 5px;
}
#cookies-consent-content-header{
    font-size: 1.2rem;
    font-weight: 600;
}
.cookies-consent-content{
    margin-top: 10px;
}
.cookies-consent-content p{
    color: #858585;
    margin: 5px 0 20px 0;
}
.cookies-consent-content .cookies-consent-buttons{
    display: flex;
    align-items: center;
    justify-cookies-consent-content: center;
}
.cookies-consent-buttons button{
    padding: 10px 20px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 5px;
    background: #e88422;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cookies-consent-buttons button:hover{
    transform: scale(0.97);
}
.cookies-consent-buttons .cookies-consent-button{
    margin: 0 10px;
}
.cookies-consent-buttons a{
    color: #e88422;
}

@media (max-width: 768px) {
    .cookies-consent{
        left:10px;
        bottom:10px;
        max-width:calc(100% - 20px);
        font-size:0.9rem;
    }
}
