/*** Cookies ***/

*{
    padding: 0;
    margin: 0;
}

body{
    font-size: 1rem;
    font-family: sans-serif;
}

.container{
    width: 1600px;
    margin: auto;
}

.subcontainer{
    width:85%;
    margin: auto;
}

#cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
    min-height: 70px; 
}

.cookies {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}


.cookies a{
    color: #FFD700;
    font-weight: 500;
    font-size: 15px; 
    text-decoration: none;
}

#customize-btn {
    border-radius: 3px;
    padding: 8px 30px;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    border: 3px solid white;
    background-color: #FFD700;;
    color: #000;
    margin-left: 50px;
}

#cookies-btn {
    border-radius: 3px;
    padding: 8px 30px;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    border: 3px solid white;
    background-color: #FFD700;
    color: #000;
/*    margin-left: 50px;*/
}


#save-options-btn{
    border-radius: 3px;
    padding: 8px 30px;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    border: 3px solid white;
    background-color: #FFD700;;
    color: #000;
}

@media(max-width:1600px){
    .container{
        width: 100%;
    }
}


@media(max-width:1024px){
    .cookies{
       padding: 10px 0;
    }
}

 #cookies_options {
    display: none; 
    border: 1px solid #ccc;
    padding: 20px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.cookie-consent {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
          
}

.cookie-consent h2 {
    font-size: 18px;
    margin-bottom: 10px;
      
}

.cookie-consent label {
    display: block;
    margin-bottom: 10px;
        
}

.cookie-consent label input[type="checkbox"] {
    margin-right: 10px;
       
}

#cookies_options h1 {
    color: rgba(0, 0, 0, 0.7);
}

/* Style for the sliders */
.slider {
    width: 60px;
    height: 30px;
    background-color: #ccc;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    margin-right: 10px; 
}

.slider:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #fff;
    top: 1px;
    left: 2px;
    transition: 0.4s;
}

.slider.on {
    background-color: #4CAF50;
}

.slider.on:before {
    transform: translateX(30px);
}

.slider_labels {
    display: flex;
    align-items: center; 
    margin-bottom: 10px;
}

.slider_labels_text {
    margin-left: 10px; 
    position: relative; 
    top: -30px; 
}

#cookies p {
    color: white;
}
