/* ==========================================================================
   ESTILOS GENERALES Y DE CAMPAÑAS / PLANTILLAS
   ========================================================================== */

.template-card { 
    cursor: pointer; 
    transition: all 0.2s ease-in-out; 
    background-color: #fcfcfc;
}
.template-card:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.06)!important; 
}
.template-card.selected { 
    border: 2px solid #198754 !important; 
    background-color: #f1fbf4 !important; 
}
.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}