@font-face {
    font-family: 'MerryChristmasFlake'; /*a name to be used later*/
    src: url('../images/MerryChristmasFlake.ttf'); /*URL to font*/
}

.more-snow:before,
.more-snow:after {
    content: "";
    position: fixed;
    top: -3000%;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.05);
    background-size: 30%;
    -webkit-animation-name: MOVE-BG;
    -webkit-animation-duration: 500s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    pointer-events: none;
}

.more-snow:before {
    opacity: 0.8;
    top: -2500%;
    background-image: url(../images/4-2-white-snow-png_blur4x.png);
    background-size: 60%;
    -webkit-animation-duration: 400s;
    animation-duration: 400s;
}
.more-snow:after {
    opacity: 0.8;
    top: -2000%;
    background-image: url(../images/4-2-white-snow-png_blur2x.png);
    background-size: 70%;
    -webkit-animation-duration: 300s;
    animation-duration: 300s;
}

@-webkit-keyframes MOVE-BG {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(70%);
        transform: translateY(70%);
    }
}

#loggedas {
    position: relative;
}

.let_it_snow_sticker {
    background-image: url(../images/snowflake.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    width: 24px;
    height: 24px;
    position: absolute;
    left: -32px;
    top: 1px;
}

.let_it_snow_sticker_text {
    color: white;
    font-family: 'MerryChristmasFlake';
    position: absolute;
    right: 11px;
    top: 37px;
    font-size: 20px;
}