#sticksidebarbutton {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    height: 60px;
    z-index: 100;
    transform: translateX(calc(100% - 60px));
    -ms-transform: translateX(100%) translateX(-60px);
    transition-duration: 400ms;
    padding-right: 10px;
    background-color: #0060ad;
    width: max-content;
}

#sticksidebarbutton:hover {
    transform: translateX(0);
    transition-duration: 400ms;
    height: auto;
    min-height: 60px;
    transform: scaleY(1);
}

#sticksidebarbutton.animate {
    display: block;
    transition-duration: 400ms;
    min-height: 60px;
    height: auto;
    transform: scaleY(1);
}

#sticksidebarbutton span {
    padding: 0.34em 0.6em;
    margin: 0;
    color: #fff;
    float: left;
    padding-left: 70px;
    padding-right: 50px;
    font-size: 1.6rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.75;
    letter-spacing: normal;
    text-align: center;
    display: flex;
    min-height: 60px;
    box-sizing: border-box;
    align-items: center;
}

#sticksidebarbutton svg {
    color: white;
    fill:white;
    left: 16px;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}

#sticksidebarbutton.showClose::after {
    content: "\e833";
    font-family: "fontello";
    font-size: 2.0rem;
    position: absolute;
    top: 0.4em;
    right: 0.4em;
    z-index: 1;
    overflow: hidden;
    color: white;

}

#sticksidebarbuttonclose {
    position: absolute;
    text-indent: -9999px;
    font-size: 2.4rem;
    top: 0.4em;
    right: 0.4em;
    height: 25px;
    width: 25px;
    z-index: 1000;
    color: transparent;
    display: none;
}