/**
 * # adv 
 */
.banner {
    width: 100%;
    border:1px solid  #F3F3F3;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner a {
    display: block;
    position: relative;
}
.banner a::after {
    content: "Реклама";
    position: absolute;
    top: 7px;
    left: 10px;
    border-radius: 4px;
    color: #CACBCD;
    text-transform: uppercase;
    font-size: .56rem;
    padding: .23em;
    background-color: rgba(0, 0, 0, .54);
}
.banner a img { 
    max-width: 100%;
    object-fit: contain;
}   
.full-screen-banner.l--100 {
    height: 100px;
}
.bill-board-banner.l-970-250 {
    max-width: 970px;
    height: 250px;
}
.leader-board-banner.l-728-90 {
    max-width: 728px;
    height: 90px;
}
.vertical-rectangle-banner.l-200-400 {
    max-width: 208px;
    height: 400px;   
}
.half-page-banner.l-300-600 {
    max-width: 300px;
    height: 600px;
}
.floor-banner {
    width: 100%;
    background-color: #fff;
    position: fixed;
    z-index: 10000;
    bottom: -100%;
    transition: all 1.23s linear;
    border-top: 2px solid #D1D6E0;
}
.floor-banner.is-active {
    bottom: 0;
}
.floor-page-banner.l--100 {
    max-width: 100%;
    height: 100px;
}
.floor-banner [aria-label='CloseFloorBnner'] {
    position: absolute;
    cursor: pointer;
    top: -35px;
    right: 10px;
    background-color: #D1D6E0;
    width: 35px;
    height: 35px;
    border: none;
    font-size: 1.45rem;
    color: #575C66;
    border-radius: 5px 5px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.location-ad {
    position: absolute;
    z-index: -10;
    font-size: 1.3em;
    color: #CACACA;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width : 480px) {
    .banner  {
        margin: 0;
    }
}