.cookies-wrap {
    max-width: 520px;
    width: 100%;
    position: fixed;
    bottom: 40px;
    left: 16px;
    display: none;
    z-index: 5000;
}

.cookies-inner {
    display: flex;
    align-items: center;

    background-color: var(--light-blue);
    padding: 16px 16px 16px 12px;
    border-radius: 12px;
    background-image: url(images/snow.svg), url(images/figure.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: left top, 94% bottom; 
}

.cookies-text {
    color: var(--primary);
    font-family: Montserrat;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    padding: 2px 0 2px 44px;
    background-image: url(images/text-img.svg);
    background-position: 0 0;
    background-repeat: no-repeat;
    letter-spacing: 0px;
}

.cookies-text a {
    text-decoration: underline;
    color: var(--primary);
}

.cookies-button {
    padding: 8px 32px;
    color: var(--button);
    background-color: var(--secondary-initial);
    border-radius: 200px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin: 0;
    border: none;
    cursor: pointer;
    margin-left: 33px;
    font-family: Montserrat;
    letter-spacing: 0px;
    text-align: center;
}

@media (max-width: 550px) {
    .cookies-wrap{
        left: 0;
        bottom: 20px;
        max-width: 100%;
    }

    .cookies-inner{
        margin: 0 16px;
        flex-direction: column;
    }

    .cookies-button{
        margin-left: auto;
        margin-top: 6px;
    }
}