/* Scrollbalk */

::-webkit-scrollbar {
    width: 6px !important;
    height: 3px !important;
}

::-webkit-scrollbar-thumb {
    height: 50px !important;
    background-color: #eb3580 !important;
    background-image: linear-gradient(#eb576a, #51bac3);
    border-radius: 3px !important;
}

::-webkit-scrollbar-track {

    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
}


/* Rotation avatar */

@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.acav,
.avatar_private,
.avav,
.chat_avatar {
    -webkit-animation: rotate-center .6s ease-in-out both;
    animation: rotate-center .6s ease-in-out both
}

.orti {
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
    animation: heartbeat 1.5s ease-in-out infinite both
}

@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    10% {
        -webkit-transform: scale(.91);
        transform: scale(.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    17% {
        -webkit-transform: scale(.98);
        transform: scale(.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    33% {
        -webkit-transform: scale(.87);
        transform: scale(.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

/* hiddentekst */

#hiddentekst {
    display: none;
}

/* logo glow */
.head_logo img,
.chat_head_logo img {
    -moz-animation: off-on 1s ease-in-out infinite alternate;
    -webkit-animation: off-on 1s ease-in-out infinite alternate;
    animation: off-on 2s ease-in-out infinite alternate;
}

@keyframes off-on {
    from {
        filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.652));
    }

    to {
        filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.604));
    }

    /* no select text */
    body {


        -webkit-user-select: none;


        -khtml-user-select: none;


        -moz-user-select: none;


        -ms-user-select: none;


        user-select: none;

    }
    