.cookies-wrap {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 7950;
    text-align: center;
    display: none;
}

.cookies {
    float: left;
    width: 100%;
    padding: 25px 30px 20px 30px;
    position: relative;
    background-color: rgba(0, 0, 0, .8);
    font-size: 14px;
    color: rgba(255, 255, 255, .9);
    border-radius: 5px;
}

.cookies .buttons {
    margin-top: 20px;
}

.cookies .buttons button {
    margin: 5px;
    padding: 10px 15px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#acceptAll {
    background-color:  var(--input-border-color-checked);
    color: white;
}

#settingsBtn {
    background-color: #fc0;
    color: black;
}

#rejectAll {
    background-color: var(--color-red);;
    color: white;
}

.cookie-settings-popup {
    display: none;
    position: fixed;
    z-index: 8000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 2px solid #666;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .5);
}

.popup-content h3 {
    margin-top: 0;
}

.popup-buttons {
    margin-top: 15px;
}

.popup-buttons button {
    margin-right: 10px;
    padding: 8px 12px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
