.background_ocean{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}
.ocean {
    width: 200%;
    height: 10%;
    max-height: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--theme-color-animation-ocean,#af0606);
    transform: translateY(0%);
}
.wave {
    background: var(--theme-color-svg-wave,url(/static/svg/wave.svg)) repeat-x;
    position: absolute;
    top: 10%;
    width: 200%;
    height: 15px;
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    transform: translate3d(0, 0, 0);
}
.wave:nth-of-type(2) {
    top: 10%;
    height: 20px;
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
    opacity: 1;
}