.fab-container {
    position: fixed;
    bottom: 0%;
    right: 2%;
}


.iconbutton {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #212529;
    box-shadow: 0px 0px 4px black;
    border-radius: 100%;
    border: 1px solid whitesmoke;
}

.button {
    width: 60px;
    height: 60px;
    background: #222222;
    list-style-type: none;
    position: absolute;
    bottom: 70px;
    right: 1em;
}

.button label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
}

.iconbutton i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
}

.options {
    list-style-type: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    transition: all 100ms linear;
    transform: scale(0);
}

.options li {
    display: flex;
    justify-content: flex-end;
    padding: 5px;
}


.options li .iconbutton:hover {
    cursor: pointer;
    background: crimson;
}

.options li .iconbutton:active {
    background: crimson;
}

.fab-checkbox:checked~.options {
    display: inline;
    transform: scale(1);
}


.btn-label {
    padding: 2px 5px;
    margin-right: 10px;
    align-self: center;
    user-select: none;
    background-color: black;
    color: white;
    border-radius: 3px;
    box-shadow: 2px 2px 1px #212529;
}

.fab-checkbox {
    display: none;
}

.fabutton {
    cursor: pointer;
}

.fabutton:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.fab-checkbox:checked~.fabutton:before {
    width: 90%;
    height: 90%;
    left: 5%;
    top: 5%;
    background-color: rgba(255, 255, 255, 0.2);
}
