@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  //margin: 0;
  //padding: 0;
  //font-family: "Poppins", sans-serif;
}

body {
  //background: #fdb2ad;
}

.action {
    position: fixed;
    top: 7px;
    right: 120px;
}

.action .profile {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 5%;
  /*overflow: hidden;*/
  cursor: pointer;
  
}

.action .profile img {
  position: absolute;
  top: 2px;
  right: 1px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border:0px solid blue;
}

.action .menuusuari {
  position: absolute;
  top: 75px;
  right: 10px;
  padding: 10px 20px;
  background: #fff;
  width: 215px;
  box-sizing: 0 5px 25px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 300ms linear, opacity 300ms linear;
}

.action .menuusuari.active {
  visibility: visible;
  opacity: 1;
}
/*
.action .menuusuari::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 28px;
  width: 20px;
  height: 20px;
  background: #fff;
  transform: rotate(45deg);
  border:1px solid green;
}
*/
.action .menuusuari h3 {
  width: 100%;
  text-align: center;
  font-size: 18px;
  /*padding: 20px 0;*/
  font-weight: 500;
  font-size: 18px;
  color: #555;
  line-height: 1.2em;
}

.action .menuusuari h3 span {
  font-size: 14px;
  color: #cecece;
  font-weight: 400;
}
ul{
    padding-left:0px;
}
.action .menuusuari ul li {
  list-style: none;
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  //display: flex;
  align-items: center;
}

.action .menuusuari ul li img {
  width: 20px;
  max-width: 20px;
  margin-right: 10px;
  opacity: 0.5;
  transition: opacity 300ms linear;
}

.action .menuusuari ul li:hover img {
  opacity: 1;
}

.action .menuusuari ul li a {
  display: inline-block;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  font-size: 24px;
  transition: color 300ms linear;
}

.action .menuusuari ul li:hover a {
  color: #ff5d94;
}