/*
Theme Name: Kadence Child
Theme URI: https://example.com/kadence-child
Description: Tema hijo de Kadence
Author: UNViMe
Author URI: https://www.unvime.edu.ar/
Template: kadence
Version: 1.0.0
*/

/* Aquí puedes escribir tu CSS personalizado */
.no-select {
  user-select: none; /* Evita la selección de texto */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
}
.cursor-hover {
  cursor: pointer;
  transition: all 0.3s ease;
}
.no-hover {
    pointer-events: none; /* Desactiva la interacción */
    cursor: default; /* Cambia el cursor a normal */
    color: inherit !important; /* Mantiene el color original */
    text-decoration: none !important; /* Elimina subrayado */
    background: #0070FF !important; /* Evita cambios de fondo */
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 !important;
}
.header-navigation ul ul li.menu-item>a {
    width: 300px !important;
}
.cursor-pointer {
    cursor: pointer;
}
.drawer-inner{
	max-width: 500px !important;
    }
    .main-navigation .primary-menu-container > ul > li.menu-item > a {
    font-size: 13px;
}
.header-navigation .header-menu-container ul ul li.menu-item > a:hover {
    color: black !important;
    background: white !important;
    box-shadow: 0 0 0 1px var(--global-palette4);
}

/* Estilo base para todos los botones */
.btn-k {
    all: unset;  
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    background-color: grey;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 2px 2px 0px 0px #656565;
    cursor: pointer;
    user-select: none;
    overflow: hidden;
    box-sizing: border-box; 
    transition: transform 300ms ease;
    font-family: "Red Hat Text";
    border: none;
    outline: none;
}

.btn-k:hover {
    background-color: #616161 !important;
    color: #fff !important;
    box-shadow: 2px 2px 0px 0px #3d3c3c !important;
    transform: translateY(-2px) !important;
    transition: transform 200ms ease, box-shadow 200ms ease !important;
}


.btn-k:active {
	color:#fff;
}
.btn-k:focus {
	color:#fff;
}
/* Aplicable solo a etiqueta button */
.btn-k:focus-visible {
    color: #fff;
    outline: 2px solid #ff0000;
    animation: bounce 0.8s ease-in-out infinite;
}
a:focus-visible {
    animation: bounce 0.8s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

/* Aplicable solo a etiqueta button */
.btn-k:disabled {
    background-color: #B0B0B0;
    cursor: not-allowed;
    box-shadow: none;
}

/* Tamaño pequeño (S) */
.btn-s {
    padding: 6px 14px;
    font-size: 14px;
    min-width: 80px;
    height: 30px;
}

/* Tamaño medio (M) */
.btn-m {
    padding: 8px 16px;
    font-size: 16px;
    min-width: 120px;
    height: 40px;
}

/* Tamaño grande (L) */
.btn-l {
    padding: 14px 28px;
    font-size: 18px;
    min-width: 160px;
    height: 50px;
}

/* Adaptarse al contenido */
.fit-content {
    width: fit-content;
}

/* Adaptarse al ancho del contenedor */
.full-width {
    width: 100%; 
}
.space-between div{
  justify-content: space-between !important;
}

/*editor visual*/
/* Alineación horizontal de los controles */
.box-controls{
}
.padding-controls, .margin-controls {
   display: flex;
   gap: 5px;
}

.padding-controls .arrow-icon, .margin-controls .arrow-icon {
    display: inline-block;
    margin-top: 5px;
    font-size: 18px;
    color: #333;
}

/* Alineación de los controles de relleno y margen */
.padding-controls TextControl, .margin-controls TextControl {
    width: 100px;
}

/* Espaciado entre los controles */
.padding-controls .arrow-icon, .margin-controls .arrow-icon {
    margin-left: 5px;
}

.limit-width-960 {
  max-width: 960px; /* Estándar común en diseño web */
  width: 100%;
  margin: 0 auto;
}

.limit-width-1140 {
  max-width: 1140px; /* Basado en Bootstrap y otros frameworks */
  width: 100%;
  margin: 0 auto;
}

.limit-width-1280 {
  max-width: 1280px; /* Ideal para pantallas más amplias */
  width: 100%;
  margin: 0 auto;
}

/* Search */
.search-results-from-old-site {
    background-color: #f5f5f5;
    padding: 20px;
    margin-bottom: 20px;
}

.search-results-from-old-site h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.search-results-from-old-site ul {
   list-style-type: none;
   padding: 0;
   margin: 0;
}

.search-results-from-old-site li {
    margin-bottom: 10px;
}

.search-results-from-old-site .post-date {
    font-size: 0.9em;
    color: #888;
    margin-top: 5px;
}

.pagination {
    margin-top: 20px;
}

.load-more {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

.load-more:hover {
    background-color: #45a049;
}

/* search.php */
/* Contenedor de resultados */
.search-results-container {
    max-width: 920px;
    margin: 30px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Título de los resultados de búsqueda */
.search-results-container h1 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Formulario de búsqueda */
.search-form {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    flex-direction: column;
}

.search-form input[type="search"] {
    width: 75%;
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.search-form button {
    padding: 8px 16px;
    font-size: 16px;
    background-color: #0073e6;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.search-form button:hover {
    background-color: #005bb5;
}

/* Resultados de búsqueda */
.search-result {
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.search-result a {
    display: block;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease;
    line-height: 1.2;
}

.search-result a:hover {
    background-color: #f9f9f9;
}

.search-result span {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
}

.search-result p {
    font-size: 14px;
    color: #555;
}

.search-result .post-date {
	font-size: 14px;
	color: #777;
    margin: 0;
    font-weight: 400;
}

/* Paginación */
.pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    text-decoration: none;
    color: #0073e6;
    border: 1px solid #ccc;
    margin: 0 5px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.pagination a:hover,
.pagination span.current {
    background-color: #0073e6;
    color: white;
}

.pagination .prev,
.pagination .next {
    font-weight: bold;
}

/* Mensaje de total de resultados */
.search-results p {
    font-size: 16px;
    color: #333;
}

/* No se encontraron resultados */
.search-results p {
    color: #888;
    font-size: 16px;
}

#onesignal-slidedown-container{
    top: -200px !important;
}

/* Entradas */

.post-navigation{
	display:none;
}
.posted-by{
	display:none !important;
}

.none-select > .drawer-nav-drop-wrap > a {
  pointer-events: none;
  cursor: default;
  color: inherit; /* mantiene color del texto sin parecer un enlace */
  text-decoration: none;
  user-select: none;
}
.none-select .drawer-sub-toggle {
	position: absolute;
    width: 100%;
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
    height: 100%;
    border-left: none !important;
}

.btn-redes-menu{
	background: #fff;
    border-radius: 8px;
    margin-top: 15px;
}
.btn-redes-menu a {
	color: #000 !important;
    text-align: center !important;
	padding: 5px !important;
}
.entry-title{
	line-height: 1.1;
}
.jp-carousel-photo-caption{
	display:none !important;
}

.jp-carousel-overlay .swiper-slide {
    height: 80% !important;
    align-self: center !important;
}
.editor-visual-editor__post-title-wrapper .editor-post-title{
	place-self: anchor-center;
}