.financing-popup{
    background-image:url('/img/themes/ecr/v3/svg/popup.svg');
    position:fixed;
    bottom:-120px;
    left:20px;
    height: 110px;
    width: 320px;
    background-position: bottom center;
    background-size: 100%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    animation: financing-popup-rise 1s ease 2s forwards, financing-popup-bounce 3s ease 3s none 2;
    z-index: 99999999;
    transition: all .25s ease;
    transform:scale(1);

}

.financing-popup:hover{
    animation:  financing-popup-rise 1s ease 2s forwards running, financing-popup-bounce 5s ease 3s none 2 paused;
}

.financing-popup.isClosed{
    transform:scale(0);
    animation:  none;
}

.financing-close img {
    width: 20px;
    position: absolute;
    right: 0;
    top: 0;
    cursor:pointer;
}

img.finances-popup-image {
    width: 70px;
    margin: 7px 10px 10px 20px;
}

span.financing-popup-text {
    line-height: 1.5;
    display: inline-block;
    width: 200px;
    height: 70px;
    margin-top: 1px;
}


span.financing-popup-text a {
    background-color: #06436e;
    color: white;
    padding: 2px 10px;
}

.financing-no-show {
    position: absolute;
    z-index: -1;
    right: 6px;
    top: -1px;
    font-size: 11px;
    color: white;
    padding: 3px 28px 3px 8px;
    display: none;
    background: linear-gradient(to right, #ed5b64 86%, transparent 15%);
}

@media (max-width:991px){
    .financing-no-show {
        display:block;
    }
}

.financing-no-show span{
    cursor:pointer;
}

.financing-close:hover + .financing-no-show {
    display: block;
}

.financing-no-show:hover {
    display: block;
}


@keyframes financing-popup-rise{
    from{
        bottom:-120px;
    }
    to{
        bottom:0;
    }
}

@keyframes financing-popup-bounce{
    0%{
        transform:rotateZ(0)
    }
    10%{
        transform:rotateZ(-10deg)
    }
    20%{
        transform:rotateZ(10deg)
    }
    30%{
        transform:rotateZ(0)

    }
    100%{
        transform:rotateZ(0)
    }
}