
*
{
    margin: 0;
    padding: 0;

}
body
{
    min-height: 100vh;
    background: linear-gradient(#7d6cfc,#c635ea);
}
.action
{
    position: fixed;
    bottom: 50px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
	z-index: 30;
}
.action span
{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #a13dea;
    font-size: 2em;
    transition: 0.3s ease-in-out;
	z-index: 30;
}

.action.active span
{
    transform: rotate(135deg);
}
.action span img
{
    position: relative;
    width: 100%;
    height: 100%;
	z-index: 30;
}
.action ul
{
    position: absolute;
    bottom: 55px;
    right: 20px;
    background: #fff;
    min-width: 250px;
    padding: 20px;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
	z-index: 300;
}
.action.active ul
{
    bottom: 35px;
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
	z-index: 300;
}
.action.active ul li
{
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0;
    transition: 0.3s;
	z-index: 300;
}
.action ul li:hover
{
 font-weight: 800;
 border-style: solid;
 border-width: 5px;
 border-color: gray;
 
}

.action ul li:not(:last-child)
{
border-bottom: 1px solid rgba(0,0,0,0.1);
z-index: 30;
}
.action ul li img
{
    height: 25px;
    width: 25px;
    margin-right: 10px;
    opacity: 1;
    transform: scale(0.8);
	z-index: 30;
}
.action ul li:hover img
{
    opacity: 1;
	z-index: 30;
}
