.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f9f9f9;
    padding: 20px 0;
    text-align: center;
    z-index: 1000;
    display: flex;           
    justify-content: center; 
    align-items: center;     
    flex-direction: row;
}

.cookie-text-container {
    display: row;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
}

.cookie-settings {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    height: 80vh;
    max-height: 800px;
    background-color: #ffffff;
    padding: 20px;
    z-index: 2000;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cookie-settings .content-container {
    display: flex;
    flex-direction: column; 
    overflow: auto;
}

.cookie-settings .main-content {
    display: flex; 
    flex-grow: 1; 
    overflow: auto;
    align-items: flex-start;
}

.cookie-settings footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.cookie-settings header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    position: relative;
}

.cookie-settings .logo {
    height: 50px;
}


.cookie-settings .confirm-choices {
    padding: .5rem 1rem;
    font-size: 1rem;  
    border-radius: 50px !important;
    border: none;
    cursor: pointer;
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}

.cookie-settings .allow-all {
    padding: .5rem 1rem;
    font-size: 1rem;  
    border-radius: 50px !important;
    border: none;
    cursor: pointer;
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}

.cookie-settings .close-button {
    position: absolute;
    right: 20px;
    top: 20px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1.5em;
}

.cookie-settings ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    border-right: 1px solid #cccccc;
    flex: 0 0 30%; 
    min-width: 200px;
}

.cookie-settings li {
    cursor: pointer;
    padding: 10px;
    border-bottom: 1px solid #eeeeee;
}

.cookie-settings li:hover {
    background-color: #eeeeee;
}

.cookie-settings li.active {
    background-color: #dddddd;
}

.cookie-settings .content-container .main-content {
    flex: 1; 
    padding-left: 20px;
    box-sizing: border-box;
}

input[type="checkbox"]  {
    margin-bottom: 20px;
    padding: 10px;
}

#accept-all {
    padding: .5rem 1rem;
    font-size: 1rem;  
    border-radius: 50px !important;
    border: none;
    cursor: pointer;
    color: #fff;
    background-color: #198754;
    border-color: #198754;
    white-space: nowrap;
}

#open-settings{
    padding: .5rem 1rem;
    font-size: 1rem;  
    border-radius: 50px !important;
    border: solid 1px;
    cursor: pointer;
    color: #198754;
    background-color: #fff;
    border-color: #198754;
}

#close-settings{
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 60px !important;
    border: none;
    cursor: pointer;
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}
.banner-title {
    padding: 10px;
    color: #000000;
    font-weight: 500;
    text-align: center;
    align-self: center;
}

.banner-text{
    padding-top:10px;
    padding-left: 10px;
}

.content-text {
    padding: 10px;
}

h1{
    font-size: 1.5rem;
}

.cookie-btns {
    display: flex;
    gap: 20px;
    margin-left: 20px;
  }

@media only screen and (max-width: 600px) {
    .cookie-settings {
        width: 100%;
        height: 100vh;
    }
    .cookie-settings .content-container {
        flex-direction: column;
        overflow: auto;
    }
    .cookie-settings ul {
        flex: 0 0 100%; 
        border-right: none;
        border-bottom: 1px solid #cccccc;
    }
    .cookie-settings .main-content {
        display: block;
        padding: 10px;
        flex: 1 0 100%;
    }
    .cookie-settings header {
        padding: 0px;
    }

    .cookie-settings footer{
        padding: 0px;
    }

    .cookie-banner {
        flex-direction: column;
    }
    .content-text {
        font-size: 10px;
    }

    h1{
        font-size: 12px;

    }
    li{
        font-size: 12px;
    }

    span{
        font-size: 12px;
    }
}

