.cookies-wrapper{
    position: fixed;
    bottom:0;
    left:0;
    width: 100%;
    background-color: rgba(0,0,0,0.7);
    padding:1rem 1rem;
    color:#410051;
    z-index: 10000;
}
.cookies-wrapper *{
    margin: 0;
    padding: 0;
}

.cookies-wrapper-hidden{
    display: none;
}

.cookies-and-accessibility-wrapper{
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cookie-settings-button,
.accessibility-button {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.cookie-settings-button:hover,
.accessibility-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 9px 24px rgba(0, 0, 0, 0.22);
}

.cookie-settings-button:focus-visible,
.accessibility-button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.cookie-settings-button {
    color: #ffffff;
    background-color: rgba(0,0,0,0.8);
}

.cookie-settings-button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.accessibility-button {
    background-color: white;
}

.accessibility-button img {
    height: 26px;
    width: auto;
    display: block;
}

.cookies-content h4{
    font-size:1.3rem;
    color:white;
    margin-bottom:10px;
}


.cookies-content p {
    font-size:1rem;
    color:white;
}

.cookies-button{
    margin-top:1rem;
}

.cookie-button{
    background-color: #fe5b00;
    color: white;
    padding:0.5rem 1rem;
    border-radius: 1rem;
    cursor: pointer;
    margin-top:0.5rem;
}

.cookie-button-settings {
    padding:0.5rem 1rem;
    border-radius: 1rem;
    cursor: pointer;
    margin-top:0.5rem;
    transition: width 400ms;
}

.cookie-settings{
    /* max-height: 0px;
    overflow: hidden; */
    transition: max-height 400ms;
    color:white;
}

.cookie-settings-active {
    max-height: 200px;
    color:white;
}

.cookie-settings input {
    margin-right:0.5rem;
}

#accept-all-cookies {
    font-size: 18px;
}

#save-cookie-choice {
    background-color: grey;
}

#accept-essential-cookies {
    background-color: grey;
}


@media (min-width: 768px) {

}


@media (min-width: 1024px) {

}
