.cookies
{
    display: block;
    height: max-content;
    padding: 10px;
    position: fixed;
    z-index: 10;
    top: unset;
    left: unset;
    bottom: 50px;
    right: 50px;
    width: 400px;
}

.cookies .location
{
    border-radius:7px;
    background:#fff;
    box-shadow: 2px 2px 7px #000;
    padding-bottom: 0;
}

.cookies .location__body
{
    margin-bottom: 5px;
}

.cookies .cookies-body
{
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 20px;
    flex-direction: column;
}

.cookies-body .info
{
    padding: 10px 10px 10px 0;
    color:#000;
    margin: auto 0;
    font-weight: 500;
    font-size: 1.1em;
}

.cookies-body .product__btn
{
    margin: auto;
    width: 100%;
}

.cookies-accept-text
{
    display: block;
}

.cookies-accept-icon
{
    display: none;
    filter: brightness(0)
            saturate(100%)
            invert(100%)
            sepia(22%)
            saturate(2%)
            hue-rotate(326deg)
            brightness(106%)
            contrast(101%);
    background-image: url(/templates/images/dist/icons/accept.svg);
    background-position-x: 50%;
    background-position-y: 50%;
    background-size: 30px;
    background-repeat: no-repeat;
    padding: 15px;
}

@media (min-width:1368px)
{
    .cookies
    {
        right: calc((100vw - 1368px) / 2);
    }
}

@media (max-width:768px)
{
    .cookies
    {
        width: 80vw;
        bottom: 60px;
    }
}

@media (max-width:640px)
{
    .cookies
    {
        width: 100vw;
        bottom: 60px;
        transform: translate(0, 0);
        left: 0;
    }

    .cookies .location
    {
        padding: 0;
    }

    .cookies .cookies-body
    {
        padding: 10px;
        flex-direction: row;
    }

    .cookies-accept-text
    {
        display: none;
    }

    .cookies-body .product__btn
    {
        padding: 6px;
        width: unset;
    }

    .cookies-accept-icon
    {
        display: block;
    }

    .cookies-body .info
    {
        padding: 0 10px 0 0;
    }
}
