/* floating-banner
============================================== */
.floating {
    display: none;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    /* opacity: 0; */
    z-index: 15;
    width: 950px;
}



@media screen and (max-width: 767px) {
    .floating {
        width: 100%;
    }
}

@media screen and (max-width: 1023px) {

    .floating{
        bottom: 64px;
    }

}

.floating.is-active {
    display: block;
    animation: appear 0.5s ease forwards;
    /* opacity: 1;
    transition: all 0.3s ease; */
}

.floating.is-hidden {
    display: block;
    animation: disappear 0.5s ease forwards;
    /* opacity: 0;
    transition: all 0.3s ease; */
}

@keyframes appear {
    0% {
        opacity: 0;
        visibility: visible;
    }
    100% {
        opacity: 1;
    }
}

@keyframes disappear {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.floatingInner .jump {
    animation: jump 1.8s ease-in;
    animation-iteration-count: infinite;
}

.floatingInner .floatingInner--right.jump {
    animation-timing-function: ease-out;
    animation-delay: 0.5s;
}

@keyframes jump {
    0% {
        transform: translateY(0px);
    }
    5% {
        transform: translateX(5px);
    }
    10% {
        transform: translateY(10px);
    }
    15% {
        transform: translateX(15px);
    }
    20% {
        transform: translateY(20px);
    }
}

.floatingInner {
    position: relative;
}

[class^="floatingInner--"] {
    position: absolute;
    bottom: 0;
}

.floatingInner--title {
    width: 56%;
    left: 50%;
    transform: translateX(-50%);
}

.floatingInner--left {
    left: 0;
    width: 40%;
}

.floatingInner--right {
    right: 60px;
    width: 28%;
    rotate: -15deg;
}

@media screen and (max-width: 576px) {
    .floatingInner--title {
        bottom: -0.2em;
        width: 80%;
    }

    .floatingInner--left {
        left: -7em;
        bottom: -16px;
        width: 57%;
    }

    .floatingInner--right {
        right: 10px;
        bottom: -16px;
        width: 37%;
    }
}