/*
 Theme Name:   Dr. Ricardo Niño de Rivera.
 Theme URI:
 Description:  .
 Author:       Ax Silva.
 Author URI:   http://example.com
 Template:     kadence
 Version:      1.0
*/


h1 em,
h2 em {
    font-style: normal;
    color: var(--global-palette-btn-bg);
}

.eyebrow {
  width: fit-content;
  text-transform: uppercase;
}

.eyebrow.center {
    margin: 0 auto;
}

body:not(.page-id-316) .site-middle-footer-inner-wrap {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    column-gap: 2rem !important;
}

.kt-testimonial-media-inner-wrap {
    background: #F0F5FF;
    height: 3.5rem !important;
    width: 3.5rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--global-palette-btn-bg);
}

.kt-testimonial-item-wrap.ver-todos-card {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.horarios li {
    flex-direction: column;
    align-items: stretch !important;
}

.horarios li em {
    font-style: normal;
}

.horarios li .kt-svg-icon-list-text {
    display: flex;
    justify-content: space-between;
}

.wp-block-gallery figure img {
    height: 54px !important;
    object-fit: contain;
}


/* Animación boton */
/* Animación boton */

.kb-button .kt-btn-inner-text {
  position: relative !important;
  transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955), transform 0.2s;
}

.kb-button .kt-btn-inner-text::after {
  content: attr(data-text);
  display: inline-block;
  position: absolute;
  top: 50%;
  opacity: 0;
  transform: translate(0px, 100%);
  transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955), transform 0.2s;
  white-space: nowrap;
  left: 0;
}

/* Hover */
.kb-button:hover .kt-btn-inner-text {
  transform: translateY(-150%);
}

.kb-button:hover .kt-btn-inner-text::after {
  transform: translate(0%, 100%);
  opacity: 1;
}

.kb-button .kb-svg-icon-wrap {
    transform: rotate(0);
    transition: transform 0.2s;
}

.kb-button:hover .kb-svg-icon-wrap {
    transform: rotate(45deg);
}