﻿.avatarName[title]:hover::after {
    content: attr(title);
    background-color: #616161;
    border-radius: 2px;
    color: #fff;
    font-size: 12px;
    display: inline-block;
    padding: 5px 8px;
    position: absolute;
    top: 20%;
    left: -200%;
    text-transform: none;
    transition: .15s cubic-bezier(.25,.8,.5,1);
    width: auto;
    box-shadow: 0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);
}

[data-letters]:before {
    content: attr(data-letters);
    display: inline-block;
    font-size: 200%;
    width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 50%;
    background-color: lightgray;
    vertical-align: middle;
    margin-right: 1em;
    color: black;
}

.avatarName {
    width: 100%;
    height: 100%;
}

.avatarcircle {
    border-radius: 50%;
    font-size: 24px;
    font-family: roboto, arial;
    color: black;
    text-align: center;
    vertical-align: middle;
    background-color: lightgrey;
    /*Align div in centre of page*/
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.version {
    color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    margin-left: 8px !important;
}

.profilemenu {
    min-width: 42px;
    left: 100%;
    top: 65px;
    padding-right: 101px;
    transform: translate(-100%, 0%);
    transform-origin: left top;
    z-index: 999;
    position: fixed;
    display: inline-block;
    border-radius: 2px;
    max-width: 80%;
    overflow-y: auto;
    overflow-x: hidden;
    contain: content;
    will-change: transform;
}

.avataricon {
    align-items: center;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    position: relative;
    text-align: center;
    vertical-align: middle
}

.fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1
}

.fas {
    font-family: Font Awesome\ 5 Pro;
    font-weight: 900
}

.fa-bot-spin {
    -webkit-animation: botspin 3.75s ease infinite;
    animation: botspin 3.75s ease infinite;
}

@-webkit-keyframes botspin {
    0% {
        transform: rotate(-24deg);
    }

    8% {
        transform: rotate(24deg);
    }

    10%, 28%, 30%, 48%, 50%, 68%, 70%, 88%, 90%, 100% {
        transform: rotate(48deg);
    }

    18%, 20%, 38%, 40%, 58%, 60%, 78%, 80%, 98% {
        transform: rotate(-48deg);
    }
}

@keyframes botspin {
    0% {
        transform: rotate(-24deg);
    }

    8% {
        transform: rotate(24deg);
    }

    10%, 28%, 30%, 48%, 50%, 68%, 70%, 88%, 90%, 100% {
        transform: rotate(48deg);
    }

    18%, 20%, 38%, 40%, 58%, 60%, 78%, 80%, 98% {
        transform: rotate(-48deg);
    }
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.fa-spinner:before {
    content: "\F110"
}

.fa-spinner-third:before {
    content: "\F3F4"
}

.buttontooltipcontent {
    position: absolute;
    visibility: hidden;
    width: 52px;
    /*height: 24px;*/
    font-size: 10px;
    background-color: #363636;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1;
    transform: translate( 0px, -100%);
    transform-origin: left top;
}

.buttontooltip:hover span {
    visibility: visible;
}