.disabled-view {
    position: fixed;
    top: 100px;
    left: 100%;
    background: #fff;
    width: 200px;
    height: 80px;
    transition: all 0.75s ease-in-out;
}
.disabled-view > .icon {
    position: absolute;
    top: 0;
    left: -80px;
    background: #fff url('/images/disabled.png') no-repeat center center;
    background-size: 70px 70px;
    width: 80px;
    height: 80px;
    border-radius: 50% 0 0 50%;
    cursor: pointer;
    transition: all 0.25s ease-in-out 0.75s;
}
.disabled-view.opened {
    margin-left: -200px;
    transition: all 0.75s ease-in-out;
}
.disabled-view.opened > .icon {
    background-size: 60px 60px;
    transition: all 0.25s ease-in-out 0.75s;
}
.disabled-view ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: block;
    text-align: center;
}
.disabled-view ul > li {
    padding: 0;
    margin: 20px 10px;
    display: inline-block;
}
.disabled-view ul > li > img {
    width: 40px;
    height: 40px;
    cursor: pointer;
}