.action {
  position: fixed;
  top: 10px;
  right: 15px;
}
@media only screen and (max-width: 600px) {
	.action {
		position: fixed;
		top: 10px;
		right: 5px;
	}
}

.action .menu {
  position: absolute;
  top: 100px;
  right: -10px;
  padding: 10px 10px;
  background: #fff;
  width: 250px;
  box-sizing: 0 5px 25px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
	box-shadow: .125rem .125rem .25rem rgba(0,0,0,.075)!important;
}

.action .menu.active {
  top: 55px;
  visibility: visible;
  opacity: 1;
}

.action .menu::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 18px;
  width: 20px;
  height: 20px;
  background: #2a2e34;
  transform: rotate(45deg);
}

.action .menu h3 {
  width: 100%;
  text-align: center;
  font-size: 15px;
  padding: 10px 0;
  font-weight: 500;
  /*color: #555;*/
  line-height: 1.5em;
}

.action .menu h3 span {
  font-size: 14px;
  color: #78909c;
  font-weight: 300;
}

.action .menu ul li {
  list-style: none;
  display: flex;
  padding: 5px 0;
  /*border-top: 1px solid rgba(0, 0, 0, 0.05);
  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: #78909c;
}
