.content-article {
    margin-left: 35px;
}

.content-article ul {
    list-style: disc;
    margin-left: 35px;
}

.content-article ul li {
    margin-top: 9px;
}

.content-article table {
    width: 100%;
    margin-bottom: 40px;
}

.content-article table td {
    padding: 8px;
    border: 1px solid grey;
}

.content-article table.noborder td {
    padding: 8px 0;
    border: 0;
}

.cookies {
    position: fixed;
    z-index: 8000;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 1140px;
    padding: 16px 25px;
    background: #e1e1e1;
    border-radius: 10px;
    color: #000;
}
.cookies__grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookies__mobile {
    display: none;
}

.cookies__desktop {
    display: block;
}

.cookies__desc {
    margin-right: 25px;
}

.cookies__desc p {
    margin: 0;
    font-size: 13px ;
    color: #000;
}

.cookies__desc a {
    color: #086ba9 !important;
}

.cookies__desc a:hover {
    color: #086ba9 !important;
}

.cookies__btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cookies__how {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 164px;
    height: 36px;
    border: 1px solid #fff;
    font-size: 16px;
    color: #fff;
    transition: 0.3s linear;
    border-radius: 6px;
}
.cookies__how:hover {
    border-color: #086ba9;
    background: #086ba9;
    color: #fff;
}
.cookies__agree {
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 164px;
    height: 36px;
    background: #086ba9;
    font-size: 18px;
    color: #fff;
    transition: 0.3s linear;
}
.cookies__agree:hover {
    background: #086ba9;
}

@media screen and (max-width: 1399px) {
    .cookies {
        left: 0;
        transform: none;
    }
}

@media screen and (max-width: 991px) {
    .cookies__grid {
        grid-template-columns: 30px 1fr 154px;
    }
    .cookies__btns {
        flex-direction: column;
    }
    .cookies__agree {
        width: 154px;
        margin-top: 5px;
    }
}

@media screen and (max-width: 575px) {
    .cookies__mobile {
        display: block;
    }
    
    .cookies__desktop {
        display: none;
    }

    .cookies {
        padding: 20px 0;
    }
    .cookies__grid {
        flex-direction: column;
    }

    .cookies__agree {
        margin-top: 0;
    }

    .cookies__desc {
        margin-right: 0;
        margin-bottom: 25px;
    }
    
    .cookies__desc p, .cookies__desc a {
        font-size: 18px ;
        font-family: "Inter";
        line-height: 1.3;
    }
}

@media screen and (max-width: 370px) {
    .cookies__how {
        width: 140px;
        font-size: 14px;
    }
    .cookies__agree {
        width: 140px;
        font-size: 16px;
    }
}