@-webkit-keyframes moveRight { to { -webkit-transform: translateX(20px); }}
@-moz-keyframes moveRight { to { -webkit-transform: translateX(20px); }}
@-o-keyframes moveRight { to { -webkit-transform: translateX(20px); }}
@keyframes moveRight { to { transform: translateX(20px); }}

@-webkit-keyframes moveLeft { to { -webkit-transform: translateX(-20px); }}
@-moz-keyframes moveLeft { to { -webkit-transform: translateX(-20px); }}
@-o-keyframes moveLeft { to { -webkit-transform: translateX(-20px); }}
@keyframes moveLeft { to { transform: translateX(-20px); }}

[data-fluffy-container] {
    background-color: rgba(255, 255, 255, 0.1);
    height: 50%;
    margin: auto;
    min-height: 320px;
    position: relative;

    -webkit-transition: background-color 1s 600ms, opacity 600ms 600ms;
    transition: background-color 1s 600ms, opacity 600ms 600ms;
}

[data-fluffy-container]::after,
[data-fluffy-container]::before {
    background-color: rgba(0, 0, 0, 0.33);
    border-radius: 50%;
    box-shadow: inset 0 0 20px 20px rgba(255, 255, 255, 0.33);
    content: "";
    height: 20px;
    left: 50%;
    margin: -10px 0 0 -10px;
    opacity: 1;
    position: absolute;
    top: 50%;
    visibility: visible;
    width: 20px;
    z-index: 1000;

    -webkit-transition: opacity 300ms, visibility 0s 300ms;
    transition: opacity 300ms, visibility 0s 300ms;
}


[data-fluffy-container]::after {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);

    -webkit-animation: moveRight 600ms linear infinite alternate;
    animation: moveRight 600ms linear infinite alternate;
}

[data-fluffy-container]::before {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);

    -webkit-animation: moveLeft 600ms linear infinite alternate;
    animation: moveLeft 600ms linear infinite alternate;
}

[data-fluffy-container].is-ready {
    background-color: transparent;
}

[data-fluffy-container].is-ready::after,
[data-fluffy-container].is-ready::before {
    opacity: 0;
    visibility: hidden;

    -webkit-transition: opacity 300ms, visibility 0s 300ms;
    transition: opacity 300ms, visibility 0s 300ms;
}

[data-fluffy-container].is-ready [data-fluffy-content] ,
[data-fluffy-container].is-moving [data-fluffy-scrollbars] {
    opacity: 1;
}

[data-fluffy-scrollbars] {
    opacity: 0;

    -webkit-transition: opacity 600ms;
    transition: opacity 600ms;
}

[data-fluffy-scrollbars] .is-horizontal,
[data-fluffy-scrollbars] .is-vertical {
    background-color: rgba(0, 0, 0, 0.66);
    box-shadow: inset 0 0 20px 20px rgba(255, 255, 255, 0.66);
    position: absolute;
    top: 0;
}

[data-fluffy-scrollbars] .is-horizontal {
    height: 3px;
    left: 0;
    width: 40px;
}

[data-fluffy-scrollbars] .is-vertical {
    height: 40px;
    right: 0;
    width: 3px;
}

[data-fluffy-content] {
    opacity: 0;

    -webkit-transition: opacity 600ms 600ms;
    transition: opacity 600ms 600ms;
}
