.container-cookies {
    width: 100%;
    position: fixed;
    line-height: 1.5;
    background-color: #333333;
    color: #ffffff;
    padding: 12px 24px;
    text-align: center;
    font-size: 12px;
    bottom: 0;
    text-align: left;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}

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

#container-cookies__checkbox {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    background: #333333;
    height: 16px;
    width: 16px;
    border: 1px solid #cc0000;
    color: white;
    margin: 1px;
}

#container-cookies__checkbox:after {
    content: "";
    position: relative;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid #ffffff;
    border-width: 0 1px 1px 0;
    transform: rotate(50deg);
    display: none;

}

#container-cookies__checkbox:checked {
    color: #ffffff;
}

#container-cookies__checkbox:checked:after {
    display: block;
}

.container-cookies__text a {
    color: #cc0000;
    text-decoration: none;
}

.container-cookies__text a:visited {
    color: #cc0000;
}

#container-cookies__button {
    color: #ffffff;
    background-color: transparent;
    border: 1px #cc0000 solid;
    padding: 5px;
    margin-left: 40px;
    cursor: pointer;
    vertical-align: middle;
}

#container-cookies__button:hover {
    color: #ffffff;
    background-color: #cc0000;
}

#container-cookies__button:disabled {
    cursor: default;
    opacity: 0.5;
}

#container-cookies__button:disabled:hover {
    background-color: #333333;
}
