.qr-code {
    display: flex;
    padding: 2.4rem 16.2rem 2.4rem 9.6rem;
    margin-bottom: 4.8rem;
    width: 100%;
    box-sizing: border-box;
    background-color: #F9F9F9;
    border-radius: 8px;
    position: relative;
}
.qr-code:before {
    content: '';
    background-image: url('/local/templates/stilkuhni/img/warning.svg');
    width: 2.7rem;
    height: 2.7rem;
    background-size: cover;
    position: absolute;
    left: 3.5rem;
    top: 50%;
    transform: translate(0,-50%);
}
.qr-code__img {
    margin-right: 19px;
    width: 2.7rem;
    height: 2.7rem;
}

.qr-code__text {
    margin: 0;
    font-size: 1.6rem;
    line-height: 150%;
}

@media (max-width: 767px) {
    .qr-code {
        padding: 1.6rem 1.6rem 1.6rem 4.4rem;
        margin-bottom: 4.2rem;
        margin-top: -3.6rem;
    }
    .qr-code:before {
        width: 1.7rem;
        height: 1.7rem;
        left: 1.8rem;
        top: 1.8rem;
        transform: translate(0,0);
    }
    .qr-code__text {
        font-size: 1.4rem;
    }
}