.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    color: #333;
    padding: 15px 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    height: 85px;
}
.cookie-consent-banner.en{
    height: 100px;
}
.cookie-consent-accept, .cookie-consent-decline{
    padding: 6px 16px;
    border: none
}
.cookie-consent-content {
    max-width: 1200px;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.cookie-consent-content a{
    color:#333;
    text-decoration: underline;
}
.cookie-consent-content a:hover{
    color:#ccc;

}
.cookie-consent-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex: 0.8;
    left: 15%;
    position: relative;
}

.cookie-btn-accept {
    background: #48bb78;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-btn-decline {
    background: #e53e3e;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}
@media (max-width: 1050px) {

    .cookie-consent-banner.en{
        height: 120px;
    }
}
@media (max-width: 765px) {
    .cookie-consent-banner.en{
        height: 180px;
    }

}
@media (max-width: 600px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-banner.en{
        height: 185px;
    }
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
        left: 0;
    }
    .cookie-consent-banner{
        z-index: 9999000000;
    }

}

@media (max-width: 420px) {
    .cookie-consent-banner.en{
        height: 185px;
    }
}