﻿.playlist-container {
    display: flex;
    justify-content: center;
    flex-direction:column;
    align-items:center;
    padding-top: 50px;
}

.logo-modulo {
    width: 75px;
    height: 75px;
    margin: 0 auto;
    padding-bottom:10px;
}

.logo-modulo img{
    width:100%;
    height:100%;
}

.playlist-title {
    text-align: center;
    margin-inline: auto;
    margin-bottom: 50px;
    max-width: 40rem;
}

    .playlist-title h2 {
        font-family: Montserrat,sans-serif;
        font-weight: 600;
        font-size: 1.5rem;
        color: #1f3156;
    }

    .playlist-title p {
        font-weight: 400;
        margin-bottom: 40px;
        font-size: 1.375rem;
        margin: 15px 0;
    }

.playlist-wrapper {
    display: flex;
    height: 600px;
    width: 80%;
    border-radius: 10px;
}

.playlist-video-content {
    width: 75%;
    position:relative;
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: fill;
}

.thumb {
    width:100%;
    height:100%;
}

.list-modulo-video {
    width: 25%;
    background-color: #e6e7eb;
}

    .list-modulo-video .list-modulo-title {
        padding: 10px 20px;
    }

.list-modulo-title h4 {
    margin: 0;
    font-size: 24px;
    color: #a0a0a0;
    letter-spacing: 2px;
}

.list-modulo-content {
    height:550px;
    overflow:auto;
}

.list-modulo-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.list-modulo-content ul li a {
    display: flex;
    align-items: center;
    height: 55px;
    padding: 0 20px;
    transition:.2s;
    cursor:pointer;
}

    .list-modulo-content ul li a:hover {
        background: #1f3156;
    }

        .list-modulo-content ul li a:hover span,
        .list-modulo-content ul li a:hover i {
            color: #FFF;
        }

        .list-modulo-content ul li a .number {
            font-size: 1.2rem;
            width: 35px;
            min-width: 35px;
            height: 35px;
            line-height: 35px;
            text-align: center;
            display: inline-block;
            margin-right: 10px;
            border-radius: 2px;
        }

.list-modulo-content ul li a .modulo-title {
    font-size: 0.9em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-grow: 1;
    transition: color 0.3s;
}

.list-modulo-content ul li a .icon {
    width: 35px;
    min-width: 35px;
    height: 35px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    font-size: 1.5rem;
}

.video-select {
    background:#1f3156;
    color:#FFF;
}

.title-not-video {
    font-size:20px;
    text-align:center;
    width:100%;
    padding-top:30px;
}

@media screen and (max-device-width: 480px) and (orientation:portrait) {
    .playlist-wrapper {
        flex-direction: column;
        height: auto;
    }

    .list-modulo-video {
        width: 100%;
    }

    .playlist-video-content {
        width: 100%;
        height: 300px;
    }

    .list-modulo-content {
        height: 340px;
    }
}



@media screen and (min-width: 481px) and (max-width: 1080px) {
        .playlist-wrapper {
            flex-direction: column;
            height: auto;
        }

        .list-modulo-video {
            width: 100%;
        }

    .playlist-video-content {
        width: 100%;
        height: 450px;
    }

        .list-modulo-content {
            height: 340px;
        }
    }
       
