@media (max-width: 767px) {
    .hidden-xs {
        display: none !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important
    }
}

@keyframes fabslidein {
    0% {
        opacity: 0;
        transform: translateY(250px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fabslideout {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        transform: translateY(250px)
    }
}

@keyframes fabslideintop {
    0% {
        opacity: 0;
        transform: translateY(-100px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fabslideouttop {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        transform: translateY(-250px)
    }
}

@keyframes fabscaleup {
    0% {
        transform: scale(0.1);
        transform-origin: 50% 100%
    }

    100% {
        transform: scale(1);
        transform-origin: 50% 100%
    }
}

@keyframes fabrotateup {
    0% {
        transform: rotate(35deg);
        transform-origin: left
    }

    100% {
        transform: rotate(0deg);
        transform-origin: left
    }
}

.fab-container-right,
.fab-container-left {
    position: relative
}

.fab-button {
    font-family: 'Material Icons';
    position: fixed;
    bottom: 50px;
    right: 20px;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
    z-index: 99999
}

.fab-button:hover {
    background-color: #059 !important;
    color: #fff !important;
    transform: scale(1.1)
}

.options-list {
    position: fixed;
    bottom: 110px;
    right: 20px;
    left: auto;
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: none;
    animation: fabslideout 0.2s ease 0s 1 normal forwards;
    z-index: 99998
}

.options-list.active {
    display: block;
    animation: fabslidein 0.2s ease 0s 1 normal forwards
}

.options-list.active li a {
    font-family: 'Material Icons';
    transition: transform 1s;
    animation: fabscaleup 0.4s ease-out 0s 1 normal forwards
}

.options-list.active li span {
    animation: fabrotateup 0.5s ease 0s 1 normal forwards
}

.options-list li {
    margin-bottom: 10px;
    position: relative
}

.options-list li span {
    position: absolute;
    right: 20px;
    line-height: 20px;
    margin: 10px 55px 5px 0;
    white-space: nowrap;
    display: block;
    padding: 5px 10px;
    font-size: 14px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    transition: margin 700ms;
    border-radius: 4px
}

.options-list li .tooltip_dark {
    background-color: rgba(0, 0, 0, 0.9);
    color: #ddd;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.options-list li .tooltip_light {
    background-color: rgba(255, 255, 255, 0.9);
    color: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1)
}

.options-list li a {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin: 0 5px;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2)
}

.options-list li:hover span {
    margin-right: 45px;
    transition: margin 700ms
}

.fab-container-left .fab-button {
    left: 20px;
    right: auto
}

.fab-container-left .options-list {
    left: 20px;
    right: auto
}

.fab-container-left .options-list li span {
    left: 20px;
    right: auto;
    margin: 10px 0 5px 55px
}

.fab-container-left .options-list li:hover span {
    margin-left: 45px;
    transition: margin 700ms
}

.fab-container-topright .fab-button {
    top: 20px;
    left: auto;
    right: 20px
}

.fab-container-topright .options-list {
    left: auto;
    right: 20px;
    top: 20px
}

.fab-container-topright .options-list li span {
    right: 20px;
    left: auto;
    margin: 10px 55px 5px 0
}

.fab-container-topright .options-list li:hover span {
    margin-right: 45px;
    transition: margin 700ms
}

.fab-container-topright .options-list {
    top: 100px;
    left: auto;
    animation: fabslideouttop 0.2s ease 0s 1 normal forwards
}

.fab-container-topright .options-list.active {
    animation: fabslideintop 0.2s ease 0s 1 normal forwards
}

.fab-container-topleft .fab-button {
    top: 20px;
    left: 20px;
    right: auto
}

.fab-container-topleft .options-list {
    left: 20px;
    right: auto;
    top: 20px
}

.fab-container-topleft .options-list li span {
    right: auto;
    left: 20px;
    margin: 10px 0 5px 55px
}

.fab-container-topleft .options-list li:hover span {
    margin-left: 45px;
    transition: margin 700ms
}

.fab-container-topleft .options-list {
    top: 100px;
    right: auto;
    animation: fabslideouttop 0.2s ease 0s 1 normal forwards
}

.fab-container-topleft .options-list.active {
    animation: fabslideintop 0.2s ease 0s 1 normal forwards
}