.fixed-string {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100;
    /* width: calc(100% - 353px); */
    width: 100%;
    background-color: #f15a2a;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    padding: 20px;
}
/* @media (max-width: 1024px) {
    .fixed-string {
        width: calc(100% - 100px);
    }
} */
.fixed-string__text {
    flex: 1;
    text-align: center;
}
.fixed-string__close {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: relative;
}
.fixed-string__close::before,
.fixed-string__close::after {
    content: '';
    display: block;
    width: 16px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: #fff
}
.fixed-string__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}