.navbar-background{
    background: linear-gradient(80deg,#fa485f,#334567 90%)!important;
}
.hori-navbar-background{
    background: linear-gradient(90deg,#334567,#334567 85%)!important;
}

.todo-item {
    cursor: pointer;
    animation: fadeIn .5s linear;
    animation-fill-mode: both;
    position: relative;
    padding: .8rem 1rem .4rem .5rem;
    border-top: 1px solid #E4E5EC;
}
.sidebar .todo-sidebar .todo-app-menu{
    width: 100%;
    padding: .5rem 0;
}

.sidebar .todo-sidebar .todo-app-menu .sidebar-menu-list .list-group .list-group-item.active {
    background-color: #666ee8!important;
}

.sidebar .todo-sidebar .todo-app-menu .sidebar-menu-list .list-group .list-group-item {
    box-shadow: none;
    padding: .8rem 1rem;
    color: #6b6f82;
    font-weight: 500;
    background-color: transparent;
    border-radius: .25rem!important;
}

.video-column{
    position: relative;
    left: 0px;
    width: 100px;
    height: 50px;
}

.video-column .video-inner{
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.video-column .video-inner:before{
    position: absolute;
    content: '';
    background: rgba(67, 179, 217, 0.2);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}

.video-column .video-inner a{
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #fff;
    font-size: 30px;
    color: #f8485f;
    text-align: center;
    border-radius: 50%;
    -webkit-animation: pulse 3s infinite;
    -o-animation: pulse 3s infinite;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    50% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.3),
        0 0 0 30px rgba(255, 255, 255, 0.1);
    }
}