.ct-demo-toolbar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 6px 0 0 6px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .12)
}

.ct-demo-toolbar a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fff;
    color: #222;
    text-decoration: none;
    border-bottom: 1px solid #ececec;
    transition: all .25s ease
}

.ct-demo-toolbar a:first-child {
    border-radius: 6px 0 0 0
}

.ct-demo-toolbar a:last-child {
    border-bottom: 0;
    border-radius: 0 0 0 6px
}

.ct-demo-toolbar a:focus,
.ct-demo-toolbar a:active {
    color: #222
}

.ct-demo-toolbar a:hover {
    background: rgba(0, 0, 0, .035);
    color: #222
}

.ct-demo-toolbar svg {
    width: 18px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0
}

.ct-demo-toolbar a:nth-child(1) svg {
    width: 20px
}

.ct-demo-toolbar span {
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 16px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .25s ease
}

.ct-demo-toolbar span:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -3px;
    width: 6px;
    height: 6px;
    background: #111;
    transform: translateY(-50%)rotate(45deg)
}

.ct-demo-toolbar a:hover span {
    opacity: 1;
    visibility: visible;
    right: 58px
}

@media(max-width:991px) {
    .ct-demo-toolbar a {
        width: 38px;
        height: 38px
    }
    .ct-demo-toolbar svg {
        width: 16px;
        height: 20px
    }
    .ct-demo-toolbar span {
        display: none
    }
}

.ct-hide-demo-toolbar .ct-demo-toolbar {
    display: none !important
}