#cookieBackdrop {
    display: none;
}
.cookie-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.cookie-modal {
    width: 420px;
    background: #fff;
    border-radius: 10px;
    padding: 20px 22px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

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

.cookie-header h2 {
    font-size: 20px;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.cookie-text {
    font-size: 12px;
    color: #252525;
    margin: 15px 0;
    line-height: 1.5;
}

.cookie-options {
    margin-bottom: 12px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
    font-size: 14px;
}

.cookie-links {
    font-size: 13px;
    margin-bottom: 10px;
}

.cookie-links a {
    color: #33647e;
    text-decoration: none;
    margin-right: 12px;
}

.cookie-powered {
    font-size: 12px;
    color: #777;
    margin-bottom: 14px;
}

.cookie-buttons {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

button {
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-outline {
    background: #eceff1 !important;
    border: 0px solid #bbb;
	color: #252525;
}

.btn-dark {
    background: #33647e !important;
    color: #fff;
    border: none;
}

.btn-primary {
    background: #33647e !important;
    color: #fff;
    border: none;
}

/* Toggle Switch */
.switch {
    position: relative;
    width: 40px;
    height: 18px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 20px;
    transition: .3s;
}

.slider:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    left: 4px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: .3s;
}

.switch input:checked + .slider {
    background: #33647e;
}

.switch input:checked + .slider:before {
    transform: translateX(20px);
}
.cookie-backdrop {
    position: fixed;
    inset: auto;
    bottom: 20px;
    left: 20px;
    background: transparent;
    display: block;
    z-index: 9999;
}

.cookie-modal {
    width: 380px;
    max-width: calc(100vw - 40px);
    border-radius: 12px;
}