#cookieDialog{
    position:absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    border: 0;
    border-radius: 12px;
    background-color: #f1f1f1;
    margin:0;

    ":backdrop": {
        background-color: rgba(0, 0, 0, 0.25);
    }
    & .cookiecheck{
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap:8px;
        padding: 10px;
        border-top: 1px solid #ccc;
        background-color: #f1f1f1;
        border-radius: 0 0 12px 12px;

        & img {
            width: 104px;
            height: 140px;
        }
    }
    & .button-wrapper {
        display: flex;
        justify-content: end;
        gap: 8px;

        & button {
            width: fit-content;
            padding: 0 12px;
        }
    }
}

.checkbox-slider [type="checkbox"] {
    display: none;
}

.checkbox-slider label {
    display: block;
    width: 40px;
    height: 20px;
    position: relative;
    background:var(--foundationsecondarynormal);
    border-radius: 10px;
    transition: background 0.2s ease;
    cursor: pointer;
    margin: 20px auto;
}

.checkbox-slider label::before {
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    transition: transform 0.2s ease-in-out;
}

.checkbox-slider [type="checkbox"]:checked ~ label {
    background: var(--foundationprimarynormal);
}

.checkbox-slider [type="checkbox"]:disabled ~ label {
    background: #9e9fa1;
}
.checkbox-slider [type="checkbox"]:disabled ~ label::before {
    background:#707173;
}

.checkbox-slider [type="checkbox"]:checked ~ label::before {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}