#cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 10px;
    /* display: none; */
    width: 350px;
    height: 317px;
    background: #f07b02;
    border-radius: 40px;
    padding: 25px;
    text-align: left;
    font-size: 15px;
    color: black;
    z-index: 9;
    transition: transform 0.7s ease-in-out;
    clip-path: path("M350 62C350 19.3333 311.667 0.5 293 0.5H49C30.3333 0.5 0 19.3333 0 62V254C0 296.667 32.3333 318 51 318H159C177.667 318 196.667 308.833 206 287.5C215.333 266.167 234.167 254 243.5 254H303C321.667 254 350 232.667 350 190V62Z");
}

.cookie-popup-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 8px;
}

.cookie-popup-buttons button {
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    border: 0;
}

#accept-cookies {
    background: #000000;
    color: #ffffff;
}

#rechazar-cookies {
    background: #fff;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.45);
}

#accept-cookies:hover {background: #e78c2d;color:black;border:1px solid #fff}
#rechazar-cookies:hover {background: #6f1cba;color:#fff}

    @media (max-width:500px) {
        #cookie-popup {
            bottom: 75px;
        }
    }