/*!
 * smartbanner.js v1.9.1 <https://github.com/ain/smartbanner.js>
 * Copyright © 2018 Ain Tohvri, contributors. Licensed under GPL-3.0.
 */

.smartbanner {
    position: fixed;
    top: 0;
    left: 0;
    overflow-x: hidden;
    width: 100%;
    height: 84px;
    z-index: 999;
    border-bottom: 1px solid #C2C2C2;
    background: #f3f3f3;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    color: #454545;
}

.smartbanner__exit {
    position: absolute;
    top: calc(50% - 9px);
    left: 6px;
    display: block;
    margin-right: 7px;
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 14px;
    text-align: center;
    color: #b1b1b3;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-size: 20px;
    -webkit-font-smoothing: subpixel-antialiased;
    line-height: 18px;
    text-shadow: 0 1px 1px #000;
}

.smartbanner__exit::before,
.smartbanner__exit::after {
    position: absolute;
    top: 3px;
    left: 8px;
    width: 2px;
    height: 12px;
    background: #797979;
    content: ' '
}

.smartbanner__exit::before {
    transform: rotate(45deg)
}

.smartbanner__exit::after {
    transform: rotate(-45deg)
}

.smartbanner__exit:active,
.smartbanner__exit:hover {
    background: #797979;
    color: #eee
}

.smartbanner__exit:hover::before,
.smartbanner__exit:hover::after {
    background-color: #FFF;
}

.smartbanner__icon {
    position: absolute;
    top: 9px;
    left: 30px;
    width: 64px;
    height: 64px;
    border: 1px solid #B9B9B9;
    border-radius: 15px;
    background-size: 64px 64px;
    background-position: -1px -1px;
}

.smartbanner__info {
    position: absolute;
    top: 10px;
    left: 104px;
    display: flex;
    overflow-y: hidden;
    width: 60%;
    height: 64px;
    align-items: center
}

.smartbanner__info__title {
    font-size: 14px;
    font-weight: 500
}

.smartbanner__info__author,
.smartbanner__info__price {
    font-size: 12px
}

.smartbanner__button {
    position: absolute;
    top: 30px;
    right: 20px;
    z-index: 1;
    display: block;
    padding: 0 10px;
    min-width: 12%;
    background: none;
    color: #007AFF;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.smartbanner__button__label {
    text-align: center
}