.cookieConsentContainer {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 340px;
    padding: 24px;
    background: #f5f5f5;
    color: #000;
    z-index: 9999;
    display: none;
    box-sizing: border-box;
}

.cookieTitle a {
    font-family: 'Inter Tight', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

.cookieDesc p {
    margin-top: 12px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #000;
}

.cookieDesc a {
    color: #000;
    text-decoration: underline;
}

.cookieButton a {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 18px;
    background: #000;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: opacity .2s ease;
}

.cookieButton a:hover {
    opacity: .8;
}

@media (max-width: 768px) {

    .cookieConsentContainer {
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        padding: 20px;
    }

}