
#cookie-consent{
    display: none; /* баннер скрыт по умолчанию */
    box-shadow: inset 0 10px 10px -10px rgba(0, 0, 0, 0.3);
    position: fixed;
    bottom: 0;
    width: 100%;
    background: whitesmoke;
    color: black;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
}

.cc-container{
    display: flex;
    align-items: center;
    justify-content: center; /* центрируем содержимое */
    gap: 20px;
}

button, select {
    text-transform: none;
    font-weight: bold;
}

.cc-actions {
    margin-right: 18px; /* отступ справа от края баннера */
}

.modal {
    display: none;
    /*visibility: visible;*/
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 90%;
    max-width: 420px;
    background: #fff;
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    padding: 16px;

    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header h2 {
    margin: 0;
}

.close {
    position: absolute;
    top: 0px;
    right: 10px;
    cursor: pointer;
    font-size: 28px;
}

.description {
    margin: 15px 0;
    color: #555;
}

.option {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-text {
    max-width: 75%;
}

.option-title {
    font-weight: bold;
}

.option-desc {
    font-size: 13px;
    color: #666;
}

.switch {
    position: relative;
    width: 46px;
    height: 24px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    background: #ccc;
    border-radius: 24px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: .3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: .3s;
}

input:checked + .slider {
    background: #1e88e5;
}

input:checked + .slider:before {
    transform: translateX(22px);
}

.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.cc-btn {
    padding: 4px 4px;
    /*    border-radius: 20px;*/
    /*    border: none;*/
    /*    cursor: pointer;*/
}

