.container {
    position: fixed;
    top: 60%;
    right: 0;
    transform: translateY(-50%);
    z-index: 40;
}

.item {
    position: absolute;
    right: -150px;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.4s ease-out;
}

.icon_container {
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
    height: 50px;
    width: 50px;
}

.content {
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item:last-child {
    right: -200px;
    transition: all 0.5s ease-out;
}
.item:last-child .content {
    width: 200px;
}

.item:hover {
    right: 0px;
}
