.adbro-lg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0!important;
}

.adbro-lg * {
    box-sizing: border-box;
}

.adbro-lg__container {
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 170px;
    margin: 0!important;
    margin-left: -350px!important;
    width: 700px;
    max-width: none!important;
}

.adbro-lg__bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    border-radius: 20px 20px 0 0;
    background: url(../images/lg-bg.png) no-repeat center top;
    background-size: cover;
    -webkit-animation: fadeIn24 1s .5s both;
    animation: fadeIn24 1s .5s both;
    margin: 0!important;
    overflow: visible!important;
}

.adbro-lg__bg:before {
    content: '';
    position: absolute;
    bottom: 81px;
    left: 50%;
    margin: 0!important;
    margin-left: 52px!important;
    background: url(../images/lg-bg-img.png) no-repeat left bottom;
    background-size: contain;
    width: 121px;
    height: 87px;
}

.adbro-xs .adbro-lg__bg:before {
    bottom: 61px;
}

.adbro-lg__bg:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    margin: 0!important;
    margin-left: -95px!important;
    background: url(../images/lg-steam.png) no-repeat left bottom;
    background-size: contain;
    width: 248px;
    height: 131px;
    -webkit-animation: slideInLeft25 2.2s .9s both linear infinite;
    animation: slideInLeft25 4.2s .9s both linear infinite;
}

.adbro-xs .adbro-lg__bg:after {
    bottom: -10px;
    width: 198px;
    height: 101px;
}

.adbro-sm .adbro-lg__bg {
    border-radius: 0;
}

.adbro-xs .adbro-lg__bg {
    height: 100px;
}

.adbro-lg__logo {
    position: absolute;
    bottom: 9px;
    left: 50%;
    margin: 0!important;
    margin-left: 210px!important;
    background: url(../images/lg-logo.png) no-repeat left bottom;
    background-size: contain;
    width: 57px;
    height: 28px;
    -webkit-animation: fadeInRight24 .7s 1.1s both;
    animation: fadeInRight24 .7s 1.1s both;
}

.adbro-sm .adbro-lg__logo {
    margin-left: 170px!important;
}

.adbro-xs .adbro-lg__logo {
    margin-left: 170px!important;
    width: 43px;
    height: 21px;
}

.adbro-lg__text {
    position: absolute;
    bottom: 46px;
    left: 50%;
    margin: 0!important;
    margin-left: -245px!important;
    background: url(../images/lg-text.png) no-repeat left bottom;
    background-size: contain;
    width: 233px;
    height: 69px;
    -webkit-animation: fadeInDown24 .7s .9s both;
    animation: fadeInDown24 .7s .9s both;
}

.adbro-sm .adbro-lg__text {
    margin-left: -235px!important;
    bottom: 50px;
    width: 209px;
    height: 62px;
}

.adbro-xs .adbro-lg__text {
    margin-left: -229px!important;
    bottom: 36px;
    width: 209px;
    height: 59px;
}

.adbro-lg__btn {
    display: block;
    position: absolute;
    bottom: 11px;
    left: 50%;
    margin: 0!important;
    margin-left: -190px!important;
    background: url(../images/lg-btn.png) no-repeat left bottom;
    background-size: contain;
    width: 119px;
    height: 27px;
    -webkit-animation: fadeInUp24 .7s 1s both, shake24 3s 2s infinite;
    animation: fadeInUp24 .7s 1s both, shake24 3s 2s infinite;
}

.adbro-xs .adbro-lg__btn {
    margin-left: -183px!important;
    bottom: 8px;
    width: 97px;
    height: 22px;
}

.adbro-close {
    position: absolute;
    bottom: 80px;
    right: 5px;
    background: url(https://cdn.adbro.me/inimage/images/adbro-close.svg) no-repeat;
    background-size: 100% 100%;
    width: 22px;
    height: 22px;
    -webkit-animation: fadeIn24 1s .4s both;
    animation: fadeIn24 1s .4s both;
    cursor: pointer;
    margin: 0!important;
    z-index: 1;
}

.adbro-xs .adbro-close {
    bottom: 60px;
}

.adbro-icon {
    position: absolute;
    bottom: 51px;
    right: 5px;
    background: url(https://cdn.adbro.me/inimage/images/adbro-icon.svg) no-repeat;
    background-size: 100% 100%;
    width: 22px;
    height: 22px;
    -webkit-animation: fadeIn24 1s .4s both;
    animation: fadeIn24 1s .4s both;
    cursor: pointer;
    margin: 0!important;
    z-index: 1;
}

.adbro-xs .adbro-icon {
    bottom: 31px;
}

.adbro-link {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    margin: 0!important;
}

.adbro-xs .adbro-link {
    height: 95px;
}


.adbro-slider__logo {
    background-image: url(../images/lg-logo2.png);
    width: 61px;
    height: 29px;
}

@-webkit-keyframes fadeIn24 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn24 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadeInRight24 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(50%, 0, 0);
        transform: translate3d(50%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight24 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(50%, 0, 0);
        transform: translate3d(50%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadeInUp24 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp24 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadeInDown24 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown24 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes shake24 {
    from, 50% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    5%, 15%, 25%, 35%, 45% {
        -webkit-transform: translate3d(-3px, 0, 0);
        transform: translate3d(-3px, 0, 0);
    }

    10%, 20%, 30%, 40% {
        -webkit-transform: translate3d(3px, 0, 0);
        transform: translate3d(3px, 0, 0);
    }
}

@keyframes shake24 {
    from, 50% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    5%, 15%, 25%, 35%, 45% {
        -webkit-transform: translate3d(-3px, 0, 0);
        transform: translate3d(-3px, 0, 0);
    }

    10%, 20%, 30%, 40% {
        -webkit-transform: translate3d(3px, 0, 0);
        transform: translate3d(3px, 0, 0);
    }
}

@-webkit-keyframes slideInLeft25 {
    0% {
        opacity: 0;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-25px);
        transform: translateX(-25px);
    }
}

@keyframes slideInLeft25 {
    0% {
        opacity: 0;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-25px);
        transform: translateX(-25px);
    }
}
