.cookie-banner__container{
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    z-index: 999;
    width: 25%;
    background-color: #ffffff;
    padding: 2vh 1vw;
    border-radius: 8px;
}

.cookie-banner__container p{
    margin-top: 0;
}

.cookie-banner__actions{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}

.cookie-banner__actions button{
    width: 100%;
    padding: 8px 20px;
    border-radius: 8px;
    background-color: transparent;
    color: #007d55;
    border: 1px solid #007d55;
    font-weight: bold;
}

.cookie-banner__actions button:hover{
    cursor: pointer;
}

@media screen and (max-width: 1124px){
    .cookie-banner__container{
        left: 0;
        bottom: 0;
        width: 98%;
        z-index: 99999;
        padding: 15px;
    }
}