#cookie-consent {
    position: fixed;
    flex-direction: column;
    justify-content: space-between;
    bottom: 20px;
    left: 20px;
    gap: 5px;
    display: none;
    background-color: rgba(44, 44, 44,0.9);
    max-width: 500px;
    z-index: 12;
    color: var(--white-color);
    box-shadow: 0 0 15px rgba(0,0,0,0.6);
    transition: opacity 0.3s ease-in-out;
    box-sizing: border-box;
    padding: 10px;
}
.cookie-button-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cookie-accept-more {
    display: flex;
    align-items: center;
    gap: 5px;
}

.more-information {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 4px 10px 4px 10px;
    margin-top: 2px;
    cursor: pointer;
}

.cookie-button {
    background-color: var(--main-color);
    color: inherit;
    border: 2px solid black;
    box-sizing: border-box;
    padding: 2px 10px 2px 10px;
    transition: background-color 0.1s ease-in-out;
    cursor: pointer;
}
.cookie-button:hover {
    background-color: var(--head-color);
}

@media screen and (max-width: 540px) {
    #cookie-consent {
        bottom: 0;
        left: 0;
        max-width: 100%;
    }
}

@media screen and (max-width: 375px) {
    .cookie-button-holder {
        flex-direction: column;
        gap: 5px;
    }
    .cookie-accept-more {
        gap: 5px;
        flex-direction: column-reverse;
    }
    .cookie-button {
        width: 100%;
    }
}