.offer{
    background: #1D6BAA;
    opacity: 0.9;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(+200%);
    transition: 0.3s ease;
}
.special-offer{
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.special-offer-block{
    display: flex;
    align-items: center;
}
.special-offer-text{
    font-weight: bold;
    font-size: 24px;
    line-height: 33px;
    color: #fff;
}
.special-offer-text span{
    color: yellow;
}
.special-offer-block a{
    display: inline-block;
    min-width: 186px;
    height: 54px;
    background: #FFFFFF;
    border-radius: 27px;
    font-size: 18px;
    line-height: 54px;
    text-align: center;
    text-transform: uppercase;
    color: #1D6BAA;
    margin-left: 35px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
@keyframes sheen{
    0% {
        -webkit-transform: skewX(-45deg) translateX(0);
        transform: skewX(-45deg) translateX(0);
        opacity: 0; }
    100% {
        -webkit-transform: skewX(-45deg) translateX(10.8em);
        transform: skewX(-45deg) translateX(10.8em);
        opacity: 1; }
}

.special-offer-block a:after{
    content: "";
    position: absolute;
    width: 25px;
    height: 100%;
    top: 0;
    left: -20px;
    /*background: rgba(255,255,255,.5);*/
    background: rgba(29, 107, 170, 0.2);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-animation: sheen 1.5s .7s infinite;
    animation: sheen 1.5s .7s infinite;
}
.special-offer-block a:hover:after {
    animation-play-state: paused;
}
.offer.show-offer{
    transform: translateY(0%);
}
.special-offer-close{
    width: 16px;
    height: 16px;
    position: absolute;
    top: 16px;
    right: 10px;
    background: url(/section/special-offer/images/special-offer-close.png) center center no-repeat;
    cursor: pointer;
}
@media(max-width: 1024px){
    .special-offer-text{
        font-size: 18px;
        line-height: 25px;
    }
    .special-offer-block a{
        min-width: 171px;
    }
}
@media(max-width: 767px){
    .special-offer{
        height: 241px;
    }
    .special-offer-block{
        flex-direction: column;
    }
    .special-offer-text{
        text-align: center;
        margin-bottom: 25px;
    }
    .special-offer-block a{
        margin-left: 0;
    }
}