.bubbler-wrapper {
    font-family: "Manrope", "Helvetica", "Arial", sans-serif;
    position: fixed;
    /*bottom: 0;*/
    /*right: 0;*/
    right: 14px !important;
    margin: 0 0 0 0;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    z-index: 9999;
    color: #E61D0F;
    bottom: 14px !important;
}

.bubbler-wrapper div {
    width: 1.7em;
    height: 1.7em;
    font-size: 2em;
    line-height: 1.7em;
    text-align: center;
    background: white;
    border-radius: 50%;
    -webkit-box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.bubbler-wrapper .bubbler-menu-loader {
    color: white;
    background: #E61D0F;
}

.bubbler-wrapper div:not(:last-child) {
    margin-bottom: 0.3em;
}

.bubbler-wrapper .bubbler-menu-item {
    overflow: hidden;
    opacity: 0;
    max-height: 0px;
    transition: opacity 0.2s, max-height 0s 0.2s;
}

.bubbler-wrapper:hover .bubbler-menu-item {
    opacity: 1;
    max-height: 100%;
    transition: opacity 0.2s, max-height 0s;
}

.bubbler-wrapper .bubbler-menu-item .bubbler-menu-item-label-wrapper {
    visibility: hidden;
    position: fixed;
    font-size: 0.5em;
    right: 5em;
    opacity: 0;
    transition: all 0.2s ease-in-out;
    transform: translateX(0.5em);
}

.bubbler-wrapper .bubbler-menu-item:hover .bubbler-menu-item-label-wrapper {
    visibility: visible;
    opacity: 1;
    transition: all 0.2s ease-in-out;
    transform: translateX(-0.5em);
}

.bubbler-wrapper .bubbler-menu-item .bubbler-menu-item-label-wrapper .bubbler-menu-item-label {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #8B8E8F;
    padding: 5px;
    color: white;
}