/*
Theme Name:Child Theme for Divi
Theme URI: https://www.ordiales.es
Description: A Child Theme For Divi
Author: German Sanchez Ordiales
Author URI: https://www.ordiales.es
Version: 2.0 20.04.27
Template: Divi
*/

/*============================================
	Start your custom CSS bellow this comment
============================================ */


/* Añadir Fondo de Color a "Ver Mas" del Blog 
============================================ */
.more-link {
    align: center;
    text-transform: uppercase;
    background-color: #26bde8; /* Azul */
    color: #fff; /* Negro ? */
}

/* Añadir Linea Inferior de Color al Menu Principal 
============================================ */

#top-menu .current-menu-item a::before,
#top-menu .current_page_item a::before {
 content: "";
 position: absolute;
 z-index: 2;
 left: 0;
 right: 0;
}
#top-menu li a:before {
 content: "";
 position: absolute;
 z-index: -2;
 left: 0;
 right: 100%;
 bottom: 50%;
 background: #52C4FF; /*** COLOR DE LA LINEA INFERIOR ***/
 height: 3px; /*** GROSOR DE LA LINEA INFERIOR ***/
 -webkit-transition-property: right;
 transition-property: right;
 -webkit-transition-duration: 0.3s;
 transition-duration: 0.3s;
 -webkit-transition-timing-function: ease-out;
 transition-timing-function: ease-out;
}
#top-menu li a:hover {
 opacity: 1 !important;
}
#top-menu li a:hover:before {
 right: 0;
}
#top-menu li li a:before {
 bottom: 10%;
}

/* Mejoras en Comentarios Divi
	https://ayudawp.com/tutorial-divi-mejorar-aspecto-los-comentarios*/

/** avatares circulares **/
.comment_avatar img { border-radius: 50%; } 
.comment {padding-bottom: 50px;}
    .comment_area .comment-reply-link {
            top: auto;
            bottom: -45px;
            padding: 4px 10px;
            font-size: 20px;
}
 
/** El salto para el formulario de comentarios **/
@media (min-width: 768px) { 
 .children .comment.depth-2 { margin-left: 30px;} /** margen en el primer anidado pero no en el resto **/
 .comment .children { margin-left: 0px; } /** margen en el primer anidado pero no en el resto **/
 .comment .children .comment_avatar img { max-width: 60px; } /** hace que los avatares de las respuestas sean más pequeños **/
 .comment .children .comment_avatar { margin-left: 20px; } /** mantiene a los avatares de respuestas a la izquierda **/
}
 
/**mantiene el botón fuera del texto **/
@media (max-width: 768px) {
	.comment-reply-link { bottom: -20px !important; top: auto !important; } 
	.comment_area { padding-bottom: 40px; }

}
