@charset "UTF-8";
.action-button {
display: block;
position: fixed;
width: 4em;
height: 4em;
z-index: 10;
bottom: 1em;
right: 1em;
color: #fff;
background: linear-gradient(135deg, #0cebeb, #20e3b2, #29ffc6);
border-radius: 50%;
cursor: pointer;
box-shadow: 0.1em 0 0.25em rgba(0, 0, 0, 0.15), 0.2em 0 1em rgba(0, 0, 0, 0.2);
}
.action-button::after {
content: "⋯";
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
.action-button-content {
background-color: white;
width: 0px;
height: 0px;
position: absolute;
z-index: 15;
bottom: 2em;
right: 2em;
transform-origin: bottom right;
transition: box-shadow 50ms ease-out, border-radius 50ms ease-out 25ms, width 90ms ease-in, height 60ms ease-in;
}
.action-button-content-inner {
opacity: 0;
transition: opacity 30ms ease-out 0;
padding: 40px;