/* floater - could be used on other pages in future */
.floater {
    display: none;
    position: fixed;
    top: 60%;
    right: -185px;
    height: 65px;
    width: auto;
    text-decoration: none;
    text-align: center;
    color: white;
    z-index: 999;
    box-shadow: 0px 1px 3px 1px #393939;
    transition: transform 1s ease-out;
    -moz-transition: transform 1s ease-out;
    -webkit-transition: transform 1s ease-out;
    -o-transition: transform 1s ease-out;
    -ms-transition: transform 1s ease-out;
    background: white;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -o-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.floater.expandable:hover {
    -webkit-transform: translatex(-185px);
    -moz-transform: translatex(-185px);
    -o-transform: translatex(-185px);
    -ms-transform: translatex(-185px);
    transform: translatex(-185px);
    transition: transform 0.5s ease-out;
    -moz-transition: transform 0.5s ease-out;
    -webkit-transition: transform 0.5s ease-out;
    -o-transition: transform 0.5s ease-out;
    -ms-transition: transform 0.5s ease-out;
}
.floater span {
    display: inline-block;
    font-family: "hestia";
    font-size: 5rem;
    color: #FFFFFF;
    width: 65px;
    height: 100%;
    background: #CD1734;
    padding: 10px 0px 0px 0px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.floater div {
    display: inline-block;
    height: inherit;
    vertical-align: top;
    width: 185px;
    background: white;
    color: #393939;
    padding: 5px 5px;
    font-family: "Roboto-Light";
    text-shadow: 0 0;
    font-size: 1.5rem;
    overflow: hidden;
    text-align: left;
}
.floater div ul, .floater div ol {
    list-style: inside;
}

@media only screen and (min-width: 65px) {
    .floater{
        display: block;
    }
}
/* end floater */
