.cookie-consent-popup {
    display: flex;
    justify-content: space-between;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    padding: 10px;
    border-radius: 0px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    max-width: 800px;
    width: 90%;
    font-family: 'Montserrat';
}



.popup-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px !important;
    color: #333;
}

.popup-content p {
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}
.popup-content b {
    font-size: 13px;
}
//.popup-content {
    width:460px;
}
.popup-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}

.popup-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
    width: 130px;
}

.accept-button {
    background-color: #7e8d7e;
    color: white;
    border: 1px solid #7e8e7e !important;
}

.accept-button:hover {
    background-color: #373f37;
}

.decline-button {
    background-color: #ffffff;
    color: #7e8e7e;
    border: 1px solid #7e8e7e !important;
}

.decline-button:hover {
    background-color: #b0b0b0;
}
@media (max-width: 768px) {
    .popup-content {
    margin-bottom: 10px;
}
.cookie-consent-popup {
    display: block;
}
.popup-buttons {
    display: flex
;
    justify-content: space-around;
    gap: 10px;
}
.popup-buttons button {
        width: 50%;
        height: 32px;
        font-size: 12px;
        padding: 5px;
    }
    .popup-content h3 {
    font-size: 15px !important;
}
.popup-content p {
    font-size: 11px;
}
.popup-content b {
    font-size: 11px;
}

}