/* 
    Created on : 25 Jan 2021, 10:21:49
    Author     : Damian Fairholme
*/

/* Profile icon initials*/
[data-initials]:before {
    display: inline-block; 
    background: #099bdd;
    color: white;
    opacity: 1; 
    content: attr(data-initials); 
    font-weight: bold; 
    border-radius: 50%; 
    vertical-align: middle; 
    position: absolute;
    margin-top: -50px;
    right: 50px;
    width: 50px; 
    height: 50px; 
    line-height: 50px; 
    text-align: center; 
}


.dropdown {
    /*Used as a wrapper*/
}

/*drop down content box */
.dropdown-content {
    display: none;
    position: absolute;
    margin-top: -5px;
    right: 30px;
    border-radius: 10px;
    background-color: white;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/*drop down content box text and highlighing */
.dropdown-content a {
    border-radius: 10px;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover, a:active {background-color: #ddd;}

.dropdown:hover, .dropdown:hover .dropdown-content {display: block;}

