body {
    font-family: Arial, sans-serif;
}

.custom-modal {
    display: none;
   
}

.cookie-modal,.custom-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2) !important;   /* transparent overlay */
    backdrop-filter: blur(12px);            /* glass blur */
    -webkit-backdrop-filter: blur(12px);    /* safari support */
    border-radius: 12px;                    /* smooth edges */
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    color: black;
    padding: 20px;
    width: 450px !important;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(100%);
    z-index: 100;
    animation: slideUp 3s ease-out forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}



.cookie-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 10px 8px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    color: white;
}

.cookie-buttons button:hover {
    opacity: 0.9;
}

#CSS68-590-1402-1535,
.acceptAll ,#accept-all-btn  {
    background: green;
}

#CSS68-590-1402-1534,
.rejectAll,#reject-all-btn {
    background: red;
}

#CSS68-590-1402-1533,
.back {
    background: rgb(26, 43, 109);
}

.checkbox-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.checkbox-label {
    font-weight: bold;
    font-size: 16px;
    color: black !important;
    margin: 0 !important;
}

.cookie-content label {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.cookie-content p {
    font-size: 16px;
    margin-top: 5px;
}

.switch {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 22px;
    vertical-align: middle;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
    margin-left: 20px;
}

.slider {
    display: block;
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: background-color 0.4s ease-in-out, transform 0.4s ease-in-out;
    border-radius: 20px;
}

.slider:before {
    content: "";
    position: absolute;
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: transform 0.4s ease-in-out;
    border-radius: 50%;
}

.switch input:checked + .slider {
    background-color: #4CAF50;
}

.switch input:checked + .slider:before {
    transform: translateX(18px);
}

@media screen and (max-width: 600px) {
    .cookie-modal,
    .custom-modal {
        width: 90%;
        right: 0;
    }

    #CSS68-590-1402-1534 {
        margin-left: -1vh;
    }
}