.animated-widget {
    position: fixed;
    transform: translate3d(0,0,0);
    /* z-index: 999; */
    bottom: 100px;
    right: 8px;
    display: none;
}

.animated-widget img {
    width: 88px;
    height: 88px;
}

.animated-widget-close {
    position: absolute;
    top: 0px;
    left: 76px;
}

.animated-widget-close::before {
    content: "";
    display: flex;
    background: url(//static/images/header/animated-widget/icon-close.svg) no-repeat center;
    height: 15px;
    width: 15px;
    cursor: pointer;
}

@media(min-width: 1023.5px) {
    .animated-widget {
        /* display: none !important; */
        bottom: 120px;
    }

    .animated-widget img {
        width: 100px;
        height: 100px;
    }

    .animated-widget-close {
        position: absolute;
        top: 0px;
        left: 85px;
    }
}