@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");

*
{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
body
{
    background: #000000;
}
.action
{
    height: 100%;
    width: fit-content;
}
.action .profile
{
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}
.action .profile img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.action .menu
{
    position: absolute;
    top: 120px;
    right: -10px;
    padding: 10px -1px 20px;
    background: rgb(255, 255, 255);
    width: 200px;
    box-sizing: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    transition: 0.5s;
    visibility: visible;
    opacity: 0;
}
.action .menu.active
{
top: 60px;
right: -15px;
visibility: visible;
opacity: 1;
}
.action .menu ::before
{
content: '';
position: absolute;
top: -5px;
right: 28px;
width: 20px;
height: 20px;
background: rgb(255, 255, 255);
transform: rotate(45deg);
}
.action .menu ul li
{
list-style: none;
padding: 15px 10px 10px;
border-top: 1px solid rgba(0, 0, 0, 0.05);
display: flex;
align-items: center;
}

.action .menu ul li img
{
max-width: 20px;
margin-right: 10px;
opacity: 0.5;
transition: 0.5s;
}
.action .menu ul li:hover img
{
opacity: 1;
}
.action .menu ul li a
{
display: inline-block;
text-decoration: none;
color: #555;
font-weight: 500;
transition: 0.5s;
}
.action .menu ul li:hover a
{
color: #77afea;
}