.notif-icon {
    position: absolute;
    top: -1px;
    width: 20px;
    display: none;
    z-index: 1;
}

.light a.quickAccess-varia_wechat {
    background: url({{asset('assets/js/quickAccess/icons/light_icons/varia_1.png')
}
}

) no-repeat center 2px;
}

.light a.quickAccess-varia_bbm {
    background: url({{asset('assets/js/quickAccess/icons/light_icons/varia_2.png')
}
}

) no-repeat center 2px;
}

.light a.quickAccess-varia_yahoo {
    background: url({{asset('assets/js/quickAccess/icons/light_icons/varia_3.png')
}
}

) no-repeat center 2px;
}

.light a.quickAccess-varia_skype {
    background: url({{asset('assets/js/quickAccess/icons/light_icons/varia_4.png')
}
}

) no-repeat center 2px;
}

.light a.quickAccess-varia_phone {
    background: url({{asset('assets/js/quickAccess/icons/light_icons/varia_5.png')
}
}

) no-repeat center 2px;
}

.light a.quickAccess-varia_whatsapp {
    background: url({{asset('assets/js/quickAccess/icons/light_icons/varia_6.png')
}
}

) no-repeat center 2px;
}

.light a.quickAccess-varia_facebook {
    background: url({{asset('assets/js/quickAccess/icons/light_icons/varia_7.png')
}
}

) no-repeat center 2px;
}

.light a.quickAccess-varia_twitter {
    background: url({{asset('assets/js/quickAccess/icons/light_icons/varia_8.png')
}
}

) no-repeat center 2px;
}

.light a.quickAccess-varia_line {
    background: url({{asset('assets/js/quickAccess/icons/light_icons/varia_9.png')
}
}

) no-repeat center 2px;
}


.spin {
    font-size: 16px;
    font-family: 'big_noodle_titlingx';
    margin-left: -170px;
    margin-top: -78px;
    background: red;
    color: #fff;
    position: relative;
    width: 22px;
    height: 22px;
    border-radius: 10px;
    animation: changecolor 1s infinite;
    -moz-animation: changecolor 1s infinite;
    -webkit-animation: changecolor 1s infinite;
    -ms-animation: changecolor 1s infinite;
    -o-animation: changecolor 1s infinite;
}

@keyframes changecolor {
    0% {
        color: white;
    }

    25% {
        color: green;
    }

    50% {
        color: blue;
    }

    100% {
        color: yellow;
    }
}

/* Mozilla Browser */
@-moz-keyframes changecolor {
    0% {
        color: white;
    }

    25% {
        color: green;
    }

    50% {
        color: blue;
    }

    100% {
        color: yellow;
    }
}

/* WebKit browser Safari and Chrome */
@-webkit-keyframes changecolor {
    0% {
        color: white;
    }

    25% {
        color: green;
    }

    50% {
        color: blue;
    }

    100% {
        color: yellow;
    }
}

/* IE 9,10*/
@-ms-keyframes changecolor {
    0% {
        color: white;
    }

    25% {
        color: green;
    }

    50% {
        color: blue;
    }

    100% {
        color: yellow;
    }
}

/* Opera Browser*/
@-o-keyframes changecolor {
    0% {
        color: white;
    }

    25% {
        color: green;
    }

    50% {
        color: blue;
    }

    100% {
        color: yellow;
    }
}