#cookie-notice {
    background-color: #b49eaf;
    border: 2px solid deeppink;
    border-radius: .5em;
    color: white;
    padding: 15px;
    font-size: 14px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 250px;
    box-shadow: 0px 0px 5px #aaa;
    z-index: 100;
}

#buttons-for-cookies {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3%; 
    column-gap: 3%;
}

#buttons-for-cookies button {
    background-color: deeppink;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 20px;
    cursor: pointer;
}

#cookie-settings-link {
    cursor: pointer;
    text-align: center;
    color: purple;
}

.close-modal-for-cookie-settings {
    display: flex;
    justify-content: flex-end;
    color: black;
}

.modal-footer {
    display: flex;
    align-content: center;
    margin-top: 5%;
    gap: 3%;
}


#close-modal-for-cookie {
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: none;
    font-size: 24px;
}

@media (max-width: 376px) {
    #cookie-notice {
        width: 100%;
        bottom: 0;
        right: 0;
    }
}




.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}


.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 20px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;  
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: deeppink;
}

input:focus + .slider {
    box-shadow: 0 0 1px deeppink;
}


input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

.slider.round {
    border-radius: 20px;
}

.slider.round:before {
    border-radius: 50%;
}

.label-switch {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.switch-with-parag {
    margin: 5% 0 0 0;
} 

.switch-with-parag p {
    width: 70%;
} 


.cookie {
    position: relative;
    width: 21px;
    height: 21px;
    background-color: deeppink;
    border-radius: 50%;
    box-shadow: inset -5px -5px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.cookie::before, .cookie::after, .chip {
    content: '';
    position: absolute;
    background-color: black;
    border-radius: 50%;
}

.cookie::before {
    width: 8px;
    height: 8px;
    top: 15%;
    left: 25%;
}

.cookie::after {
    width: 6px;
    height: 6px;
    top: 50%;
    left: 65%;
}

.chip {
    width: 4px;
    height: 4px;
}

.chip.one { top: 40%; left: 10%; }
.chip.two { top: 70%; left: 30%; }
.chip.three { top: 50%; left: 40%; }
.chip.four { top: 25%; left: 70%; }
