.cookie-notice .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 100vw;
    padding: 0 40px;
    padding-top: 7px;
    padding-bottom: 7px;
}

button.accept-cookie-btn {
    background-color: rgb(59, 93, 44);
    color: rgb(255, 255, 255);
    border: 1px solid #fff;
    padding: 10px 44px;
    cursor: pointer;
    font-size: 24px;
    font-family: Montserrat;
    font-weight: 600;
    border-radius: 4px;
}

.cookie-notice .cookie-content p{
        color: #000000;
        font-size: 18px;
        line-height: 27px;
        font-weight: 300;
}

.cookie-notice .cookie-content p a{
    color: #000000;
}

.cookie-notice .cookie-content p a:hover{
    text-decoration: underline;
}

@media(max-width: 767.98px){
    
    .cookie-notice .container{
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .cookie-notice .cookie-content p{
        text-align: center;
    }
}