﻿/*!
 * smartbanner.js v1.6.0 <https://github.com/ain/smartbanner.js>
 * Copyright Â© 2017 Ain Tohvri, contributors. Licensed under GPL-3.0.
 */
html {
    margin-top:0!important;
}
.smartbanner {
    position: relative;
    top: 0;
    left: 0;
    overflow-x: hidden;
    width: 100%;
    height: 84px;
    background: #f3f3f3;
    font-family: 'acciona-font2', "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
    border-bottom: 1px solid #ff0000;
}

.smartbanner__exit {
    position: absolute;
    top: calc(50% - 6px);
    left: 9px;
    display: block;
    margin: 0;
    width: 12px;
    height: 12px;
    border: 0;
    text-align: center
}

    .smartbanner__exit::after, .smartbanner__exit::before {
        position: absolute;
        width: 3px;
        height: 12px;
        background: #ff0000;
        content: ' '
    }

.smartbanner__icon, .smartbanner__info {
    top: 10px;
    height: 64px;
    position: absolute
}

.smartbanner__exit::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.smartbanner__exit::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.smartbanner__icon {
    left: 30px;
    width: 64px;
    border-radius: 15px;
    background-size: 64px 64px
}

.smartbanner__info {
    left: 104px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-y: hidden;
    width: 60%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.smartbanner__info__title {
    font-size: 14px
}

.smartbanner__info__author, .smartbanner__info__price {
    font-size: 12px
}

.smartbanner__button {
    position: absolute;
    top: 32px;
    right: 10px;
    z-index: 1;
    display: block;
    padding: 0 10px;
    min-width: 10%;
    border-radius: 5px;
    background: #f3f3f3;
    color: #1474fc;
    font-size: 18px;
    text-align: center;
    text-decoration: none
}

.smartbanner__button__label {
    background: #ff0000;
    color: #ffffff;
    padding: 7px 24px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: capitalize;
    font-size:12px;
}

.smartbanner__button .smartbanner__button__label {
    background: #ff0000;
}

@media screen and ( max-width:40em ) {

    .smartbanner__icon {
        left: 30px;
        width: 34px;
        border-radius: 15px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        top: 0px;
        height: 84px;
        position: relative;
        display: inline-block;
    }

    .smartbanner__info {
        display: inline-block;
        position: relative;
        left: 35px;
        width: 55%;
        font-size: 10px;
        line-height: 1.5em;
        top: -10px;
        word-spacing: 0.25px;
    }

    .smartbanner__button {
        position: absolute;
        top:initial;
        bottom: 10px;
        right: 10px;
        z-index: 1;
        display: block;
        padding: 0 10px;
        min-width: 10%;
        border-radius: 5px;
        background: #f3f3f3;
        color: #1474fc;
        font-size: 18px;
        text-align: center;
        text-decoration: none;
    }

}