:root{
    --gray1: #DBD8D8;
    --gray2: #F5F4F4;
    --gray3: #C3BFBF;
    --gray4: #f5f5f5;
}


.placeholder_loading {
    width: 100%;
}
.pl_item {
    border-radius: 8px;
    height: 12px;
    background-color: var(--gray1);
    margin-bottom: 4px;
}
.pl_anim {
    animation: is-pulsing 500ms ease-in-out infinite;
}

/********** ==================== **********\
|               TELA HOME
\********** ==================== **********/
.pl_home {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}
.pl_infs_canal {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.pl_item_home {
    background-color: var(--gray3);
}
.pl_nome_canal {
    width: 140px;
    height: 25px;
    margin-bottom: 8px;
}
.pl_qnt_inscricoes {
    width: 100px;
    height: 15px;
}
.pl_metricas_home {
    width: 135px;
    height: 20px;
}
.pl_metrica_item {
    width: 164px;
    height: 40px;
    border-radius: 8px;
}

.pl_acoes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    min-width: 342px;
}
.pl_acoes_item {
    height: 210px;
}
.pl_acoes_item1 {
    width: 100%;
}
.pl_acoes_item2,
.pl_acoes_item3 {
    width: 50%;
}

/********** ==================== **********\
|               TELA CALENDÁRIO
\********** ==================== **********/
.pl_calendario_container {
    .pl_calendario_item {
        background-color: var(--gray4);
        width: 878px;
        height: 66px;
        padding: 8px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 8px;
        box-shadow: 0 10px 14px rgba(0, 0, 0, .1);
        margin-bottom: 12px;

        .pl_calendario_item_info:nth-child(1) {
            width: 30%;
            
        }
        .pl_calendario_item_info:nth-child(2) {
            width: 80%;
        }
        .pl_calendario_item_info {
            border-radius: 8px;
            height: 15px;
            background-color: var(--gray3);
        }
        
    }
}

/********** ==================== **********\
|               TELA VÍDEOS
\********** ==================== **********/
.pl_filtros {
    display: flex;
    gap: 8px;
    width: 635px;
    height: 32px;
    background-color: var(--gray2);
    margin-bottom: 16px;

    .pl_item {
        width: 130px;
        height: 100%;
    }
}
.pl_video_container {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.pl_video {
    display: flex;
    flex-direction: column;
    width: 344px;
    height: 167px;

    .pl_video_titulo {
        width: 40%;
        margin-bottom: 2px;
    }
    .pl_video_content {
        display: flex;
        gap: 4px;
        height: 100%;

        .pl_video_content_img {
            width: 80%;
            background-color: var(--gray1);
            border-radius: 8px;
        }
        .pl_video_content_info {
            width: 20%;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
    }
}

/********** ==================== **********\
|               TELA ROTEIRO
\********** ==================== **********/
.pl_titulo_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;

    .pl_tituloAI {
        width: 100%;
        height: 44px;
        background-color: var(--gray4);
        padding: 8px;
    }
}
.pl_roteiro_container,
.pl_descricao_container {
    width: 100%;
    height: 60px;
    background-color: var(--gray4);
}

/********** ==================== **********\
|          TELA LISTA DE ROTEIROS
\********** ==================== **********/
.pl_roteiro_listar {
    min-width: 285px;
    width: 100%;
    height: 400px;
    background-color: var(--gray2);
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 12px;
    padding: 12px;
    box-shadow: 0 10px 16px 0 rgba(0, 0, 0, .1);
    border-radius: 8px;

    .pl_roteiro_item {
        width: 100%;
        height: 100%;
        background-color: var(--gray3);
        border-radius: 8px;
    }
    .pl_roteiro_foot {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        background-color: var(--gray4);
        
        .pl_roteiro_min {
            width: calc(100%/2);
            height: 25px;
            background-color: var(--gray3);
            border-radius: 8px;
        }
    }
}

/********** ==================== **********\
|               TELA ROTEIRO
\********** ==================== **********/
.pl_roteiro_info {
    .roteiro_pl_item_titulo {
        width: 900px;
        height: 30px;
        background-color: var(--gray3);
        margin-bottom: 16px;
        border-radius: 8px;
    }
    
    .pl_roteiro_infos {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        
        .roteiro_pl_item:nth-child(1) {
            grid-column: 1 / 3;
        }
        .roteiro_pl_item {
            border-radius: 8px;
            height: 700px;
            background-color: var(--gray3);
        }
    }
}

@keyframes is-pulsing {
    to {
        opacity: .35;
    }
}

@media(min-width: 576px) {
    /********** ==================== **********\
    |               TELA HOME
    \********** ==================== **********/
    .pl_infs_canal {
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
    }
    /********** ==================== **********\
    |               TELA VÍDEOS
    \********** ==================== **********/

    /********** ==================== **********\
    |               TELA VÍDEO
    \********** ==================== **********/

}

@media(min-width: 768px) {
    /********** ==================== **********\
    |               TELA HOME
    \********** ==================== **********/
    .pl_home {
        margin: 0 auto 24px auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
    .pl_acoes {
        width: 712px;
        margin: 0 auto;
        flex-wrap: nowrap;
    }
    .pl_acoes_item1 {
        width: 350px;
    }
    .roteiro_crescimento_wrap {
        width: 50%;
    }

    /********** ==================== **********\
    |               TELA VÍDEOS
    \********** ==================== **********/

}

@media(min-width: 992px) {
    /********** ==================== **********\
    |               TELA VÍDEOS
    \********** ==================== **********/
    
    
    /********** ============================= **********\
    |               TELA PROGRAMAR VÍDEOS
    \********** ============================= **********/
    

    /********** ==================== **********\
    |          TELA LISTA DE ROTEIROS
    \********** ==================== **********/
    

    /********** ==================== **********\
    |               TELA ROTEIRO
    \********** ==================== **********/
    .pl_roteiro_infos {
        grid-template-columns: repeat(2, 1fr)!important;
    }
}

@media(min-width: 1200px) {
    /********** ==================== **********\
    |               TELA HOME
    \********** ==================== **********/
    

    /********** ==================== **********\
    |               TELA CALENDÁRIO
    \********** ==================== **********/


    
    /********** ==================== **********\
    |               TELA ROTEIRO
    \********** ==================== **********/


    /********** ==================== **********\
    |          TELA LISTA DE ROTEIROS
    \********** ==================== **********/

}

@media(min-width: 1400px) {
    /********** ==================== **********\
    |               TELA VÍDEO
    \********** ==================== **********/

}