#session-container {
    background: #000;
    position: absolute;
    max-width: 242px;
    width: 0;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    overflow-y: scroll;
    overflow-x: hidden;
}

.session-container-title {
    color: #fff;
    padding: 1em;
    padding-left: 0.2em;
}
.session-item {
    padding: 0.2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: -webkit-gradient(
        linear,
        left top, right top,
        from(rgba(0, 159, 223, 1)),
        to(rgba(71, 199, 250, 0.7))
    );
    background: linear-gradient(
        to right,
        rgba(0, 159, 223, 1),
        rgba(71, 199, 250, 0.7)
    );
    margin: 0.1em;
    min-height: 100px;
}

.session-item-name {
    font-weight: 700;
}
.session-item-lastActive {
    font-size: 0.9em;
    font-weight: 600;
}
.session-item-version {
    font-size: 0.7em;
}
.session-item-url {
    font-size: 0.7em;
}
