﻿.snowfall {
    pointer-events: none;
    width: 100%;
}
.snowfall-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}
.snowflake-wrapper {
    opacity: 0;
    width: 30px;
    position: absolute;
    animation: fall 6s linear infinite;
    z-index: -1;
}
svg {
    /* filter: drop-shadow(0px 0px 4px #6BD6FF); */
}
.snowflake-wrapper--counterclockwise svg {
    animation: rotation-counterclockwise 6s infinite linear;
}

.snowflake-wrapper--clockwise svg {
    animation: rotation-clockwise 6s infinite linear;
}

@keyframes fall {
    0% {
        opacity: 0;
    }
    3% {
        opacity: 0.9;
    }

    90% {
        opacity: 0.9;
    }
    100% {
        transform: translate(0, 120px);
        opacity: 0;
    }
}

@keyframes rotation-clockwise {
        from {
                -webkit-transform: rotate(0deg);
        }
        to {
                -webkit-transform: rotate(359deg);
        }
}

@keyframes rotation-counterclockwise {
        from {
                -webkit-transform: rotate(359deg);
        }
        to {
                -webkit-transform: rotate(0deg);
        }
}