.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f1f1f;
    color: #fff;
    padding: 15px 25px;
    z-index: 99999;
    display: flex;
    justify-content: center;
    border-top: 1px solid #444;
}

.hidden {
    display: none !important;
}

.cookie-banner-inner {
    max-width: 900px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-btn-row button {
    margin-left: 10px;
}

.btn-accept {
    background: #ffb100;
    border: none;
    padding: 8px 18px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

.btn-pref {
    background: none;
    border: 1px solid #fff;
    padding: 8px 18px;
    border-radius: 5px;
    cursor: pointer;
    color: white;
}

/* MODAL */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.cookie-modal-box {
    width: 480px;
    background: white;
    border-radius: 10px;
    padding: 25px;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h4 {
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.cookie-cat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.cookie-cat p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.cookie-modal-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.btn-decline {
    background: #eee;
    padding: 8px 18px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-save {
    background: #0d6efd;
    color: white;
    padding: 8px 18px;
    border-radius: 5px;
    cursor: pointer;
}

/* SWITCH */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: .3s;
}

input:checked+.slider {
    background-color: #0d6efd;
}

input:checked+.slider:before {
    transform: translateX(22px);
}