.header-m._smartbanner {
    display: flex;
    flex-direction: column-reverse;
    height: auto;
}
.smartbanner-app {
    position: fixed;
    bottom: 0;
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 9999;
    background: #f2f2f2;
    font-family: 'Manrope';
    padding: 30px 62px 54px 33px;
    overflow: hidden;
    display: none;
}
.smartbanner-app__info {
    padding-left: 15px;
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.smartbanner-app__title {
    line-height: 1;
    margin-bottom: 10px;
}
.smartbanner-app__icon img,
.smartbanner-app__title img,
.smartbanner-app__exit img {
    display: block;
}
.smartbanner-app__subtitle {
    color: #717171;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px;
}
.smartbanner-app__button {
    margin-left: auto;
    background: black;
    padding: 10px;
    border-radius: 3px;
    line-height: 12px;
}
.smartbanner-app__button-label {
    color: #ffffff;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px;
}
.smartbanner-app__exit {
    position: absolute;
    top: 0;
    right: 0;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.smartbannered {
    overflow: hidden;
}
body.smartbannered::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #1e1e1e;
    opacity: .7;
    transition: all .3s cubic-bezier(.22,.61,.36,1);
    z-index: 9998;
}
body.smartbannered .wrap_bfe9,
body.smartbannered .cookie-banner {
    z-index: 999;
}
@media (max-width: 767px) {
    .smartbanner-app {
        padding: 20px 56px 38px 25px;
    }
    .smartbanner-app__subtitle {
        font-size: 13px;
    }
    .smartbanner-app__title {
        margin-bottom: 8px;
    }
    .smartbanner-app__title img {
        width: 128px;
    }
    .smartbanner-app__info {
        padding-left: 10px;
    }
    .smartbanner-app__text {
        padding-right: 20px;
    }
    .smartbanner-app__button-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .smartbanner-app {
        padding: 19px 43px 43px 16px;
    }
    .smartbanner-app__icon img {
        width: 38px;
        height: 38px;
    }
    .smartbanner-app__subtitle {
        font-size: 9px;
    }
    .smartbanner-app__title {
        margin-top: 1px;
        margin-bottom: 6px;
    }
    .smartbanner-app__title img {
        width: 94px;
        height: 11px;
    }
    .smartbanner-app__text {
        padding-right: 15px;
    }
    .smartbanner-app__button-label {
        font-size: 12px;
    }
    .smartbanner-app__button {
        line-height: 8px;
    }
    .smartbanner-app__exit {
        padding: 18px 10px;
    }
}
@media (max-width: 360px) {
    .smartbanner-app {
        padding: 16px 40px 36px 16px;
    }
    .smartbanner-app__title img {
        width: 80px;
        height: 10px;
    }
    .smartbanner-app__subtitle {
        line-height: 11px;
    }
    .smartbanner-app__button-label {
        font-size: 10px;
    }
    .smartbanner-app__exit {
        padding: 15px 10px;
    }
}