a{
    cursor: pointer;
}
.cookie-banner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    color: #0E0E0E;
    text-align: center;
    z-index: 100000;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    background: rgba(243, 245, 247, 0.95);
}
.cookie-banner > p, .cookie-banner > h3{
    padding: 1rem 1rem 0.5rem;
    font-size: 1rem;
    color: #0E0E0E;
    margin: 0 24px;
    line-height: 1.4em;
}
.cookie-banner > h3{
    width: 100%;
    text-align: start;
    font-weight: 900;
}
.cookie-banner > span{
    width: 100%;
    padding: 0 16px;
    margin: 0 24px;
    font-size: 0.7rem;
    text-align: start;
    display: block;
}
.cookie-banner .buttons{
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 800px;
}
.cookie-button{
    cursor: pointer;
    padding: 5px;
    margin: 5px 1rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex: 1;
    max-width: 300px;
    background: linear-gradient(90deg, #372E42 -46.82%, #000 66.89%);
    color: #fff;
    font-size: 0.7rem;
    text-align: center;
    transition: 0.2s;
}
.cookie-button:hover{
    background: linear-gradient(90deg, #372E42 -46.82%, #000 66.89%);
}
.cookie-button span{
    /*display: block;*/
    font-size: 0.7rem;
    display: inline;
}
.cookie-link-doc,
.cookie-settings-link
{
    font-size: 0.7rem;
    margin: 0.3rem;
}
.cookie-link-doc a,
.cookie-settings-link a{
    color: #0E0E0E;
}
.cookie-banner h3, .cookie-banner span, .cookie-banner .checboxes{
    text-align: center;
    max-width: 1100px;
}
.checboxes{
    width: 100%;
    padding: 10px 16px;
    margin: 0 24px;
    font-size: 1.2rem;
}
.checbox-row{
    text-align: start;
}
.large-button{
    padding: 10px;
}
#close{
    background-color: transparent;
    color: #fff;
}
#close:hover{
    background: linear-gradient(90deg, #372E42 -46.82%, #000 66.89%);
    color: #fff;
}
#reject-all{
    color: #e5e5e5;
    background: linear-gradient(90deg, #372E42 -46.82%, #000 66.89%);
}
#reject-all:hover{
    background: linear-gradient(90deg, #372E42 -46.82%, #000 66.89%);
    color: white;
}

/*---------Custom-checkbox---------------*/
.checboxes{
    display: flex;
    justify-content: center;
    flex-direction: row;
}
.customCheckbox {
    display: none;
}
.customCheckbox + label {
    font-size: 0.8rem;
    position: relative;
    padding-left: 25px;
    margin-right: 30px;
    height: 1.5em;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.customCheckbox + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1.4em;
    height: 1.4em;
    border: 1px solid #0E0E0E;
    border-radius: 3px;
}
.customCheckbox:checked + label::before {
    border-color: #0E0E0E;
    background-image: url('./img/checkmark.png');
    background-size: contain;
}
.customCheckbox:not(:disabled):not(:checked) + label:hover::before {
    border-color: #0E0E0E;
}
.customCheckbox:focus + label::before {
    box-shadow: 0 0 3px 3px rgba(152, 162, 165, 0.4);
}
.customCheckbox:not(:disabled) + label:active::before {
    box-shadow: 0 0 3px 3px rgba(169, 180, 188, 0.4);
}
.customCheckbox:disabled + label {
    color: #687b84;
    cursor: not-allowed;
}
.customCheckbox:disabled + label::before {
    border-color: #687b84;
}
.customCheckbox:disabled:checked + label::before {
    background-image: url('./img/checkmark-disabled.png');
}
/*---------------END-Custom-checkbox----------------------*/
#settings-form{
    display: none;
}
.cookie-browsers-list {
    display: flex;
    justify-content: center;
}

.cookie-browsers-list,
.cookie-browsers-list td {
    border: none;
}

.cookie-browsers-list tr {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.cookie-browsers-list td {
    text-align: center;
    padding: 10px;
}
.cookie-browsers-list a {
    display: block;
    line-height: 17px;
}

.cookie-footer-link {
    color: #fff;
    font-size: 12px;
    font-weight: normal;
}
.cookie-footer-link:hover {
    color: #fff;
}

@media screen and (max-width: 991px){
    .cookie-banner h3,.cookie-banner span,.cookie-banner .checboxes, .cookie-banner > p{
        margin-right: 0;
        margin-left: 0;
    }
    .cookie-banner > p, .cookie-banner h3{
        line-height: 1.3rem;
        font-size: 1rem;
        margin-bottom: 10px;
    }
    .cookie-banner > span{
        line-height: 1.1em;
        font-size: 1rem;
    }
    .cookie-button {
        font-size: 0.8rem;
        max-width: none;
        margin: 5px 16px;
        padding: 7px;
    }
    .cookie-button span{
        display: inline;
    }
    .buttons{
        flex-direction: column;
    }
    .large-button{
        padding: 7px;
    }
    .checboxes{
        flex-direction: column;
    }
    .customCheckbox + label {
        padding-left: 45px;
    }
}