#swoo-cookie-notice {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 7px;
    text-align: center;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    @media (max-width: 650px) {
        gap: 8px;
        flex-direction: column;
    }
}

.swoo-cookie-text {
    margin: 0;
}

.swoo-cookie-buttons {
    display: flex;
}

.swoo-cookie-accept-button {
    background-color: #bc7968;
    color: #fff;
    padding: 5px 8px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    margin-right: 10px;
    border-radius: 2px;
    @media (max-width: 650px) {
        font-size: 12px;
    }
}
.swoo-cookie-accept-button:hover {
    background-color: #cf8d7e;
    color: #fff;
}

.swoo-cookie-conditions-button {
    background-color: #444444ba;
    color: #fff;
    padding: 5px 8px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 2px;
    @media (max-width: 650px) {
        font-size: 12px;
    }
}
.swoo-cookie-conditions-button:hover {
    background-color: rgba(97, 95, 95, 0.73);
    color: #fff;
}

.swoo-cookie-link {
    color: #fff;
    text-decoration: underline;
}

.swoo-cookie-link:hover {
    text-decoration: none;
}

.swoo-close-icon {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

#swoo-cookie-close {
    top: auto;
    bottom: 8px;
    color: grey;
}
