
.float-menu .label-container {
    position: fixed;
    bottom: 48px;
    right: 105px;
    display: table;
    visibility: hidden;
}

.float-menu .label-text {
    color: #FFF;
    background: rgba(51,51,51,0.5);
    display: table-cell;
    vertical-align: middle;
    padding: 10px;
    border-radius: 3px;
}

.float-menu .label-arrow {
    display: table-cell;
    vertical-align: middle;
    color: #333;
    opacity: 0.5;
}

.float-menu .float {
    position: fixed;
    top: 45%;
    width: 150px;
    /*height: 35px;*/
    right: -55px;
    /*background-color: #dc2217;*/
    color: #FFF;
    border-radius: 5px;
    text-align: center;
    /*box-shadow: -2px -2px 3px #999;*/
    z-index: 1000;
    animation: bot-to-top 2s ease-out;
    transform: rotate(-90deg);
    /* Legacy vendor prefixes that you probably don't need... */
    /* Safari */
    -webkit-transform: rotate(-90deg);
    /* Firefox */
    -moz-transform: rotate(-90deg);
    /* IE */
    -ms-transform: rotate(-90deg);
    /* Opera */
    -o-transform: rotate(-90deg);
    /* Internet Explorer */
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

.float-menu .my-float {
    font-size: 24px;
    margin-top: 18px;
}

.float-menu a.float + div.label-container {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s ease;
}

.float-menu a.float:hover + div.label-container {
    visibility: visible;
    opacity: 1;
}