.cookie-fixed {
    display: none;
    /* остальные ваши стили для позиционирования и оформления */
}
.cookie-fixed{
    position: fixed;
    width: 100%;
    bottom: 10px;
    z-index: 20;
}
.cookie-fixed-content{
    display: flex;
    background: #fff;
    max-width: 1360px;
    margin: auto;
    padding: 30px;
    border: 1px solid #101010;
    border-radius: 5px;
}
.cookie-fixed-content-buttons {
    display: flex;
    gap: 10px;
}
.cookie-fixed-content-buttons button{
    font-size: 16px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    white-space: nowrap;
    padding: 10px;
}
.cookie-fixed-content-title{
    font-weight: 400;
    font-size: 20px;
    line-height: 110.00000000000001%;
    vertical-align: bottom;
}
.cookie-fixed-content-desc{
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    vertical-align: bottom;
    align-self: end;
    padding: 0px 100px;
    color: #10101080;
}
.cookie-fixed-content-desc a{
    color: #10101080;
    text-decoration: underline;
}
@media (max-width: 1360px) {
    .cookie-fixed-content {
        max-width: 960px;
    }

    .cookie-fixed-content-desc{
        padding: 0px 50px;
    }

    .cookie-fixed-content-buttons{
        flex-direction: column;
    }
    .cookie-fixed-content-desc{
        align-self: auto;
    }

    .cookie-fixed-content-buttons button{
        padding: 5px;
    }
}
@media (max-width: 1360px) {
    .cookie-fixed-content {
        max-width: 700px;
    }
}
@media (max-width: 700px) {
    .cookie-fixed-content {
        max-width: 341px;
        margin-left: 10px;
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .cookie-fixed-content-buttons{
        flex-direction: row;
    }

    .cookie-fixed-content-desc {
        padding: 16px 0 24px 0;
    }
    .cookie-fixed-content-title{
        padding: 0 105px 0 0;
    }
}