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

.smartbanner {
    position: fixed;
    bottom: 0;
    left: 0;
    overflow-x: hidden;
    width: 100%;
    height: 74px;
    background: #005EB8;
    z-index: 100;
}

@media (min-width: 767px) {
    .smartbanner {
        display: none !important;
    }
}

.smartbanner__exit {
    position: absolute;
    top: 22px;
    right: 15px;
    display: block;
    margin: 0;
    width: 30px;
    height: 30px;
    border: 0;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
}

.smartbanner__exit::after {
    content: "×";
    font-weight: 500;
    font-family:'ArialRoundedMTBold',Arial; font-size:22px;
    color: #fff;
    font-size: 18px;
    line-height: 29px;
}

.smartbanner__icon {
    position: absolute;
    top: 13px;
    left: 40px;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background-size: 48px 48px;
}

@media (max-width: 340px) {
    .smartbanner__icon {
        left: 20px;
    }
}

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

.smartbanner__info__title {
    font-size: 14px;
}

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

.smartbanner__button {
    position: absolute;
    top: 18px;
    right: 70px;
    z-index: 1;
    display: block;
    padding: 5px 20px;
    min-width: 10%;
    border-radius: 4px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
}

.smartbanner__button:hover {
    color: #fff;
    text-decoration: none;
}

.smartbanner__button__label {
    text-align: center;
}