.adminActions {
    z-index: 1000;
    position: fixed;
    bottom: 20px; right: 20px;
}

.adminButton {
    height:64px;
    width: 64px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: block;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
    border-width: 1px;
    border-style: solid;
    border-color: #ffffff33;
}

.adminButton p, .adminButton label{
    cursor: pointer;
    position: absolute;
    bottom: 0;
    left: 50%; 
    transform: translate(-50%, 0);
    margin: 0;
    padding: 0px;
    width: 64px;
    height: 32px;
    line-height: 20px;
    font-family: "AvantGarde Regular";
    color: white;
    font-weight: 500 !important;
    font-size: 10px;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    box-shadow:inset 0px 0px 0px 20px #ffffff20;
}

.adminButton .icon {
    fill: white;
    margin-top: 5px;
}

.adminButtons {
    position: absolute;
    width: 85px;
    bottom: 120%;
    text-align: center;
}

.adminButtons a {
    cursor: pointer;
    display: block;
    width: 64px;
    height: 30px;
    line-height: 20px;
    border-radius: 2px;
    text-decoration: none;
    margin: 0;
    margin-top:10px;
    padding: 5px;
    font-family: "AvantGarde Regular";
    font-weight: 400 !important;
    font-size: 10px;
    color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #ffffff33;
    opacity: 0;
    visibility: hidden;
    position: relative;
    box-shadow: 0 0 5px 1px rgba(51, 51, 51, .3);
}

.adminButtons a:hover {
    transform: scale(1.05);
}

.adminButtons a:nth-child(1) {background-color: var(--color-primary); transition: opacity .2s ease-in-out .2s, transform .15s ease-in-out;}
.adminButtons a:nth-child(2) {background-color: var(--color-primary); transition: opacity .2s ease-in-out .15s, transform .15s ease-in-out;}

.adminActions a i {
    position: absolute;
    top: 15%; left: 50%;
    transform: translate(-50%, -15%);
    color: white;
    font-size: 18px;
}

.adminToggle {
    -webkit-appearance: none;
    position: absolute;
    border-radius: 50%;
    /*border-top-left-radius: 50%;
    border-top-right-radius: 50%;*/
    top: 0; left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
    z-index: 2;
    transition: box-shadow .2s ease-in-out;
    box-shadow: 0 3px 5px 1px rgba(51, 51, 51, .3);
}

.adminToggle:hover {
    box-shadow: 0 3px 6px 2px rgba(51, 51, 51, .3);
}

.adminToggle:hover ~ .adminButton,
.adminButtons a:hover,
.adminToggle:checked ~ .adminButton
{
    transform: scale(1.05);
}

.adminToggle:checked ~ .adminButtons a {
    opacity: 1;
    visibility: visible;
}