@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

#fifa-float-icon #fifa-div-img {
    transform: translatey(0px);
    animation: float 2s ease-in-out infinite;
}

#fifa-float-icon #btn-fifa-float-icon {
    display: block;
    line-height: 0;
}

#fifa-float-icon #closeButton-fifa {
    right: -20%;
    top: 0px;
    color: #fff;
    opacity: 1;
    position: absolute;
    z-index: 111;
    text-align: center;
    font-size: 27px;
    font-weight: bold;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    transform: translateY(0px);
    animation: float 2s ease-in-out infinite;
}

#fifa-float-icon img {
    display: block;
    height: auto;
}
