.cookie-consent-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    align-items: start;
    z-index: 1000;
    overflow: hidden;
    transition: all 0.1s;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .3);
    display: flex;
    justify-content: center;
}

.btn-cookie-primary {
    background: #76a602 !important;
}

.btn-cookie-primary:hover {
    background: #5f8502 !important;
}

.btn-cookie-secondary {
    background: white !important; border: 2px solid #272525 !important; color: black !important;
}

.btn-cookie-secondary:hover {
    color: darkgray !important;
}

.cookie-consent-bar p {
    padding: 0;
    margin: 7px 0 0;
}

.cookie-consent-bar a {
    margin: 0 0 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 1142px;
    font-size: 15px;
    row-gap: 10px;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
}

.cookie-consent-buttons button, .cookie-customize button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: white;
    border-radius: 4px;
}

.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;
}

.cookie-consent-bar .hidden {
    display: none;
    bottom: -175px;
}

.cookie-customize {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    margin-left: 16px;
    row-gap: 10px;
}

.cookie-customize label {
    font-weight: normal;
}

@media (max-width: 768px) {
    .cookie-consent-bar {
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
        max-height: none;
    }

    .cookie-consent-buttons {
        display: block;
        width: 100%;
    }

    .cookie-consent-buttons button, .cookie-customize button {
        font-size: 14px;
        width: 100%;
        margin: 5px 0;
        padding: 17px 20px;
    }

    .cookie-customize {
        margin-left: 0;
        width: 100%;
        margin-top: 20px;
    }
}
