﻿
#video-list {
    width: 100%;
    max-width: 550px;
    margin: auto;
/*    margin-top: 10px;*/
}

ul.list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    ul.list li {
        display: flex;
        padding: 5px;
        flex-direction: column;
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
        margin-bottom: 10px;
        background-color: #fff;
        border-left: 4px solid #fff;
        transition: all 0.3s ease;
        position: relative;
        cursor: pointer;
        border-radius: 4px;
        overflow: hidden;
    }

        ul.list li .title {
            font-weight: bold;
            font-size: 14px;
            position: relative;
            z-index: 1;
            line-height: 20px;
        }

        ul.list li .subtitle {
            position: relative;
            z-index: 1;
            font-size: 12px;
            opacity: 0.7;
            text-align: right;
        }

        ul.list li:after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            transition: width 0.3s ease;
        }

        ul.list li:hover {
            color: #fff;
            background: #8ea4e3;
        }

/*            ul.list li:hover:after {
                width: 100%;
                transition: width 0.5s ease;
            }
    */
        /* Personal */
        ul.list li.personal:after {
            background: linear-gradient(102deg, #8ea4e3 0%, #0033c4 100%);
        }

        ul.list li.personal {
            border-left-color: #0033c4;
        }
 