/*.domination-gif{*/
    /*width: 474px;*/
    /*position: absolute;*/
    /*top: 4px;*/
    /*left: 0;*/
    /*display: none;*/
/*}*/

/*input:hover + .domination-gif {*/
    /*display: block;*/
/*}*/

.donation-img-animation-container{
    width: 474px;
    max-width: 100%;
    height: 100%;
    position: absolute;
    top: 4px;
    left: 0px;
    cursor: pointer;
    background: none;
    border: none;
}

.donation-img-animation{
    position: absolute;
    width: 12px;
    height: 12px;
    border: 3px solid #1fdeb3;
    border-radius: 50px;
    top: 0;
    right: 17%;
}

.donation-img-animation-container:hover .donation-img-animation{
    animation: move-in-steps 1.5s both;
}

@keyframes move-in-steps {
    0% {
        top: 0px;
    }
    100% {
        top: 24px;
    }
}

@media screen and (max-width: 500px) {
    .donation-img-animation{
        border: 2px solid #1fdeb3;
    }
}

@media screen and (max-width: 460px) {
    .donation-img-animation{
        width: 9px;
        height: 9px;
    }

    @keyframes move-in-steps {
        0% {
            top: 0px;
        }
        100% {
            top: 20px;
        }
    }
}

@media screen and (max-width: 390px) {
    .donation-img-animation {
        width: 5px;
        height: 5px;
        right: 17.6%;
    }

    @keyframes move-in-steps {
        0% {
            top: 0px;
        }
        100% {
            top: 18px;
        }
    }
}

@media screen and (max-width: 340px) {
    @keyframes move-in-steps {
        0% {
            top: 0px;
        }
        100% {
            top: 14px;
        }
    }
}
