/*** Cookies ***/

*{
    padding: 0;
    margin: 0;
}

body{
    font-size: 1rem;
    font-family: sans-serif;
}

.container{
    width: 1600px;
    margin: auto;
}

.subcontainer{
    width:85%;
    margin: auto;
}


#cookies{
    width: 100%;
    position: fixed;
    bottom: 0;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
    display: none;
}

.cookies{
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cookies a{
    color: rgba(255, 82, 69);
    font-weight: 500;
    text-decoration: none;
}

#cookies-btn{
    border-radius: 3px;
    padding: 8px 30px;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    border: 3px solid white;
    background-color: rgba(225, 1, 1, 0.8);
    color: white;
    margin-right: 30px;
}

#customize-btn {
    border-radius: 3px;
    padding: 8px 30px;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    border: 3px solid white;
    background-color: rgba(225, 1, 1, 0.8);
    color: white;
    margin-left: 80px;
}

#save-options-btn{
    border-radius: 3px;
    padding: 8px 30px;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    border: 3px solid white;
    background-color: rgba(225, 1, 1, 0.8);
    color: white;
}

@media(max-width:1600px){
    .container{
        width: 100%;
    }
}


@media(max-width:1024px){
    .cookies{
       padding: 10px 0;
    }
}

 #cookies_options {
    display: none; /* Initially hidden */
    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; /* Add margin to separate sliders */
}

.slider:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #fff;
    top: 1px;
    left: 2px;
    transition: 0.4s;
}

/* Style for checked (on) sliders */
.slider.on {
    background-color: #4CAF50;
}

.slider.on:before {
    transform: translateX(30px);
}

/* Style for the labels container */
.slider_labels {
    display: flex; /* Display labels and sliders in a row */
    align-items: center; /* Align items vertically in the center */
    margin-bottom: 10px;
}

/* Style for the labels text */
.slider_labels_text {
    margin-left: 10px; /* Adjust this value to control the distance between labels and sliders */
    position: relative; /* Set the position to relative */
    top: -30px; /* Adjust this value to move the labels up */
}



