.cookie-consent-bar {
    position: fixed;
    bottom: 0px;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    overflow: hidden;
    transition: all 0.1s;
        box-shadow: 0 -4px 30px rgb(130 21 21 / 71%);
}
.cookie-consent-bar p {
    padding: 0;
    margin: 7px 0 0;
}
.cookie-consent-bar a {
    margin: 5px 0 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
        color: black;
    font-weight: bold;
}
.cookie-consent-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 1244px;
    margin: 0 auto;
    font-size: 15px;
}
.cookie-consent-buttons {
    display: flex;
    gap: 10px;
}
#savePreferences {
        padding: 10px 15px;
}
.cookie-consent-buttons button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
            background: #feecee;
        font-weight: bold;
            border-radius: 50px;
    border: 2px solid #efb2bb;
    background: linear-gradient(136deg, #efb2bb 12.54%, #f5909f 86.31%);
    color: white;
}
.cookie-consent-bar a:after {
    border-style: solid;
    border-width: .15em .15em 0 0;
    color: #606C75;
    content: "";
    display: block;
    height: 8px;
    margin-left: 9px;
    transform: rotate(45deg);
    width: 8px;
}
#savePreferences {
        font-weight: bold;
    border-radius: 50px;
    border: 2px solid #efb2bb;
    background: linear-gradient(136deg, #efb2bb 12.54%, #f5909f 86.31%);
    color: white;
}
.hidden {
    display: none;
    bottom: -175px;
}
@media (max-width: 768px) {
    #cookieCustomize {
        margin-top: 20px;
    }
    .cookie-consent-bar {
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
        max-height: none;
    }
    .cookie-consent-buttons {
        display: block;
    }
    .cookie-consent-buttons button {
        font-size: 14px;
        width: 100%;
        margin: 5px 0;
        padding: 17px 20px;
    }
    .cookie-consent-buttons {
            width: 100%;
    }
}