@charset "UTF-8";
/*
Theme Name: CSUNIFORMES
Theme URI: https://www.mowomo.com
Description: Tema desarrollado a medida para csuniformes.com
Version: 1.0.0
Framework Version: 0.5.3
Design: mowomo
Author: mowomo
Author URI: https://www.mowomo.com

Text Domain: csuniformes
Domain Path: /languages

License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

====================================================================
	TABLE OF CONTENTS
====================================================================
	# THEME SETUP
		# TYPOGRAPHY
	# UTILITIES
	# COMPONENTS
		# MEDIA
		# IFRAME WRAPPER
		# BUTTONS
		# WOOCOMMERCE (ancho páginas + botones)
		# FORMS
		# SEARCH FORM
		# SWIPER
		# MWM HEADER
		# MWM FOOTER
		# MWM MAIN CONTAINER
		# MWM GTRANSLATE
		# MWM SNS
		# MWM CARD 1
		# MWM SLIDER 1
		# MWM TEXT 1
		# MWM SECTION CARDS 1
		# MWM FILTER
		# MWM BLOG (index / archive)
		# MWM BLOG FEATURED
		# MWM POPUP
	# LAYOUT
		# TPL FRONT-PAGE
		# TPL SINGLE (mwm-single)
		# MWM SEPARATOR (standalone y dentro de slider-home)
		# MWM SLIDER HOME
		# MWM SOLUCIONS HOME
		# MWM TEXT ANIMATION
		# MWM HOME WORK
		# MWM CTA
		# MWM NEWS
		# MWM TESTIMONIALS
		# MWM SPECIALTIES
		# MWM ICONS SPECIALISTAS
		# MWM CONTACT
		# MWM BANNER V2
		# MWM BANNER V3
		# MWM NEWSLETTER
		# MWM EXPERTS
		# MWM PAGE TEXT
		# MWM 404
*/
/*
	📁 Importación de mixins y funciones desde /assets/css/_mixins.scss
	   Incluye sistema de fuentes automatizado y mixins de layout.
*/
/*
====================================================================
	MIXINS LIBRARY
====================================================================

Este archivo contiene todos los mixins y funciones SCSS del tema.
Organizados por categorías para facilitar su uso y mantenimiento.

TABLA DE CONTENIDOS:
	# SISTEMA DE FUENTES AUTOMATIZADO
		# Funciones de conversión de unidades
		# Funciones de procesamiento responsive
		# Mixin principal para generar variables
	# MIXINS DE LAYOUT
		# Imágenes responsive 
		# Espaciado responsive
		# Utilidades de contenido
	# MIXINS AUXILIARES (comentados para activar si se necesitan)

====================================================================
*/
/*
	SISTEMA DE GESTIÓN DE FUENTES INTELIGENTE

	Este sistema permite definir fuentes responsive de forma súper sencilla:
	- Conversiones automáticas de px → rem, px → em, px → %
	- Sintaxis simplificada sin media queries manuales
	- Line-height inteligente basado en font-size
	- Un solo valor aplica a todas las resoluciones
	- Uso de null para heredar valores anteriores

	EJEMPLO DE USO:
	$font-types: (
		"titulo": (
			"font-size": (18px, 22px, 28px),
			"line-height": (27px, 33px, 42px),  // Conversión automática a %
			"letter-spacing": (1px, 2px)
		)
	);

	@include generate-font-variables($breakpoints, $font-types);
*/
/**
 * Convierte valores px a rem
 * @param {Number} $px-value - Valor en px a convertir
 * @return {Number} - Valor convertido a rem (base 16px)
 * 
 * Ejemplo: px-to-rem(24px) → 1.5rem
 */
/**
 * Convierte valores px a em
 * @param {Number} $px-value - Valor en px a convertir
 * @param {Number} $context - Contexto base para la conversión (por defecto 16px)
 * @return {Number} - Valor convertido a em
 * 
 * Ejemplo: px-to-em(8px) → 0.5em
 */
/**
 * Normaliza line-height a porcentaje basándose en font-size
 * Esta es la funcionalidad INTELIGENTE que calcula % automáticamente
 * @param {Number} $value - Valor de line-height (px, %, decimal)
 * @param {Number} $font-size - Font-size de contexto para el cálculo
 * @return {Number} - Porcentaje calculado
 * 
 * Ejemplo: normalize-line-height(24px, 16px) → 150%
 */
/**
 * Procesa valores de fuente aplicando conversiones automáticas
 * @param {Any} $value - Valor a procesar
 * @param {String} $property - Tipo de propiedad (font-size, line-height, letter-spacing)
 * @param {Number} $font-size - Contexto de font-size para line-height
 * @return {Any} - Valor procesado con las conversiones aplicadas
 */
/**
 * Obtiene valor responsive en índice específico o hereda el anterior
 * @param {List} $values - Lista de valores responsive
 * @param {Number} $index - Índice del breakpoint (1=mobile, 2=md, 3=xl, etc.)
 * @return {Any} - Valor para ese breakpoint o heredado
 * 
 * Lógica:
 * - Si solo hay 1 valor, se usa para todos los breakpoints
 * - Si hay null, hereda el valor anterior válido
 * - Si hay valor específico, lo usa
 */
/**
 * MIXIN PRINCIPAL: Genera todas las variables CSS de fuentes con breakpoints
 * @param {Map} $breakpoints - Mapa de breakpoints (nombre: valor)
 * @param {Map} $font-types - Mapa de tipos de fuente con sus propiedades
 * 
 * ESTO ES EL CORAZÓN DEL SISTEMA 💝
 * 
 * Ejemplo de uso:
 * $breakpoints: ("md": 768px, "xl": 1200px);
 * $fonts: (
 *   "titulo": (
 *     "font-size": (18px, 24px, 32px),
 *     "line-height": (27px, 36px, 48px)
 *   )
 * );
 * @include generate-font-variables($breakpoints, $fonts);
 */
/**
 * Crea un contenedor para imágenes/videos responsive con aspect ratio
 * @param {Number} $width - Ancho de referencia
 * @param {Number} $height - Alto de referencia
 * 
 * Ejemplo: @include responsiveImg(16, 9); // Para ratio 16:9
 * 
 * Genera un contenedor que mantiene el aspect ratio y hace que img/video
 * ocupen todo el espacio con object-fit: cover
 */
/**
 * Genera espaciado responsive con breakpoints personalizables
 * @param {String} $type - Tipo de espaciado (margin, padding)
 * @param {List} $values - Lista de valores responsive [mobile, md, xl, ...]
 * @param {String} $position - Posición (top, bottom, both) - por defecto: bottom
 * @param {Map} $breakpoints - Breakpoints personalizados (opcional, usa por defecto 768px, 1280px)
 * 
 * EJEMPLOS DE USO:
 * @include spaceForBlocks(margin, (1rem, 2rem, 3rem));                    // Básico
 * @include spaceForBlocks(padding, (1rem, 2rem, 3rem), both);             // Con posición
 * @include spaceForBlocks(margin, (1rem, 2rem), top, $custom-breakpoints); // Con breakpoints custom
 * 
 * COMPATIBILIDAD LEGACY: Para mantener compatibilidad con código existente
 * También acepta: @include spaceForBlocks(margin, 1rem, 2rem, 3rem, both);
 */
/**
 * Elimina el margin-bottom del último elemento hijo
 * 
 * Ejemplo: @include lastChildMarginZero();
 * 
 * Muy útil para contenedores de texto donde no quieres espacio
 * al final del último párrafo o elemento
 */
.mwm-single__meta, .mwm-sns ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/*
	Estos mixins están comentados pero se pueden activar fácilmente.
	Descomenta los que necesites para tu proyecto.
*/
/**
 * Flexbox con configuración común
 * @include flex(); // align-items: center, display: flex, justify-content: space-between
 */
/**
 * Grid responsive con columnas automáticas
 * @param {Number} $columns - Número de columnas
 * @param {Number} $space - Espacio entre elementos
 * 
 * Ejemplo: @include grid(3, 1rem); // 3 columnas con gap de 1rem
 */
/**
 * Centrado absoluto (horizontal y vertical)
 */
/**
 * Truncar texto con ellipsis
 */
/**
 * Clearfix para elementos flotantes
 */
/*==================================================================
	# THEME SETUP
====================================================================*/
:root {
  /* FONT VARIABLES - Generated automatically by mixin */
  --mwm--font-size--d100: 2.5rem;
  --mwm--line-height--d100: 100%;
  --mwm--letter-spacing--d100: 0.025em;
  --mwm--font-size--d200: 1.5625rem;
  --mwm--line-height--d200: 132%;
  --mwm--letter-spacing--d200: -0.02em;
  --mwm--font-size--h100: 1.875rem;
  --mwm--line-height--h100: 120%;
  --mwm--font-size--h200: 1.5625rem;
  --mwm--line-height--h200: 132%;
  --mwm--letter-spacing--h200: -0.02em;
  --mwm--font-size--h300: 1.375rem;
  --mwm--line-height--h300: 118.1818181818%;
  --mwm--font-size--h400: 1.125rem;
  --mwm--line-height--h400: 150%;
  --mwm--letter-spacing--h400: 0.0275em;
  --mwm--font-size--b100: 1.25rem;
  --mwm--line-height--b100: 120%;
  --mwm--font-size--b200: 1rem;
  --mwm--line-height--b200: 150%;
  --mwm--font-size--b300: 0.875rem;
  --mwm--line-height--b300: 135.7142857143%;
  --mwm--font-size--l100: 0.875rem;
  --mwm--line-height--l100: 121.4285714286%;
  --mwm--letter-spacing--l100: 0.03125em;
  --mwm--font-size--l200: 0.75rem;
  --mwm--line-height--l200: 116.6666666667%;
}
@media (min-width: 1024px) {
  :root {
    --mwm--font-size--d100: 3.125rem;
    --mwm--line-height--d100: 100%;
    --mwm--letter-spacing--d100: 0.025em;
    --mwm--font-size--d200: 3.125rem;
    --mwm--line-height--d200: 100%;
    --mwm--letter-spacing--d200: 0.04em;
    --mwm--font-size--h100: 2.375rem;
    --mwm--line-height--h100: 121.0526315789%;
    --mwm--font-size--h200: 2rem;
    --mwm--line-height--h200: 118.75%;
    --mwm--letter-spacing--h200: -0.015625em;
    --mwm--font-size--h300: 1.375rem;
    --mwm--line-height--h300: 118.1818181818%;
    --mwm--font-size--h400: 1.125rem;
    --mwm--line-height--h400: 150%;
    --mwm--letter-spacing--h400: 0.0275em;
    --mwm--font-size--b100: 1.25rem;
    --mwm--line-height--b100: 120%;
    --mwm--font-size--b200: 1rem;
    --mwm--line-height--b200: 150%;
    --mwm--font-size--b300: 0.875rem;
    --mwm--line-height--b300: 135.7142857143%;
    --mwm--font-size--l100: 1rem;
    --mwm--line-height--l100: 106.25%;
    --mwm--letter-spacing--l100: 0.03125em;
    --mwm--font-size--l200: 0.75rem;
    --mwm--line-height--l200: 116.6666666667%;
  }
}
@media (min-width: 1440px) {
  :root {
    --mwm--font-size--d100: 5rem;
    --mwm--line-height--d100: 87.5%;
    --mwm--letter-spacing--d100: 0.025em;
    --mwm--font-size--d200: 3.75rem;
    --mwm--line-height--d200: 120%;
    --mwm--letter-spacing--d200: 0.04em;
    --mwm--font-size--h100: 3.125rem;
    --mwm--line-height--h100: 134%;
    --mwm--font-size--h200: 2.1875rem;
    --mwm--line-height--h200: 120%;
    --mwm--letter-spacing--h200: -0.014375em;
    --mwm--font-size--h300: 1.75rem;
    --mwm--line-height--h300: 139.2857142857%;
    --mwm--font-size--h400: 1.25rem;
    --mwm--line-height--h400: 135%;
    --mwm--letter-spacing--h400: 0.025em;
    --mwm--font-size--b100: 1.25rem;
    --mwm--line-height--b100: 150%;
    --mwm--font-size--b200: 1rem;
    --mwm--line-height--b200: 150%;
    --mwm--font-size--b300: 0.875rem;
    --mwm--line-height--b300: 135.7142857143%;
    --mwm--font-size--l100: 1rem;
    --mwm--line-height--l100: 106.25%;
    --mwm--letter-spacing--l100: 0.03125em;
    --mwm--font-size--l200: 0.75rem;
    --mwm--line-height--l200: 116.6666666667%;
  }
}
:root {
  --mwm--font-size--heading-1: 2.5rem;
  --mwm--line-height--heading-1: 120%;
  --mwm--letter-spacing--heading-1: -2%;
  --mwm--font-size--heading-2: 2rem;
  --mwm--line-height--heading-2: 120%;
  --mwm--letter-spacing--heading-2: 0%;
  --mwm--font-size--heading-3: 1.5rem;
  --mwm--line-height--heading-3: 120%;
  --mwm--letter-spacing--heading-3: 0%;
  --mwm--font-size--heading-4: 1.25rem;
  --mwm--line-height--heading-4: 120%;
  --mwm--font-size--text-big: 1.125rem;
  --mwm--line-height--text-big: 140%;
  --mwm--font-size--text-default: 1rem;
  --mwm--line-height--text-default: 140%;
  --mwm--font-size--text-small: 0.75rem;
  --mwm--line-height--text-small: 140%;
}
@media (min-width: 1024px) {
  :root {
    --mwm--font-size--heading-1: 3rem;
    --mwm--line-height--heading-1: 120%;
    --mwm--letter-spacing--heading-1: -2%;
    --mwm--font-size--heading-2: 2.5rem;
    --mwm--line-height--heading-2: 120%;
    --mwm--letter-spacing--heading-2: 0%;
    --mwm--font-size--heading-3: 1.5rem;
    --mwm--line-height--heading-3: 120%;
    --mwm--letter-spacing--heading-3: 0%;
    --mwm--font-size--heading-4: 1.25rem;
    --mwm--line-height--heading-4: 120%;
    --mwm--font-size--text-big: 1.125rem;
    --mwm--line-height--text-big: 140%;
    --mwm--font-size--text-default: 1rem;
    --mwm--line-height--text-default: 140%;
    --mwm--font-size--text-small: 0.75rem;
    --mwm--line-height--text-small: 140%;
  }
}
@media (min-width: 1440px) {
  :root {
    --mwm--font-size--heading-1: 3.5rem;
    --mwm--line-height--heading-1: 120%;
    --mwm--letter-spacing--heading-1: -2%;
    --mwm--font-size--heading-2: 3rem;
    --mwm--line-height--heading-2: 120%;
    --mwm--letter-spacing--heading-2: 0%;
    --mwm--font-size--heading-3: 2rem;
    --mwm--line-height--heading-3: 120%;
    --mwm--letter-spacing--heading-3: 0%;
    --mwm--font-size--heading-4: 1.5rem;
    --mwm--line-height--heading-4: 120%;
    --mwm--font-size--text-big: 1.25rem;
    --mwm--line-height--text-big: 140%;
    --mwm--font-size--text-default: 1rem;
    --mwm--line-height--text-default: 140%;
    --mwm--font-size--text-small: 0.75rem;
    --mwm--line-height--text-small: 140%;
  }
}
:root {
  --mwm--font-family: "Red Hat Display", sans-serif;
  --mwm--font-family-alt: "Bebas Neue", sans-serif;
  /* Colores CSU – Design tokens Figma (figma-export.json) */
  --mwm--color--azul-electrico-csu: #1A2AF8;
  --mwm--color--azulado-csu: #96ABFB;
  --mwm--color--marfil-csu: #EEE8E2;
  --mwm--color--negro-csu: #252425;
  --mwm--color--rojo-csu: #FE544A;
  --mwm--font-weight--light: 300;
  --mwm--font-weight--regular: 400;
  --mwm--font-weight--medium: 500;
  --mwm--font-weight--semibold: 600;
  --mwm--font-weight--bold: 700;
  --mwm--font-weight--black: 900;
  /* COMMON GRIS*/
  --mwm--color--n100: #FFFFFF;
  --mwm--color--n200: #2A2622;
  --mwm--color--n300: #F0F0F0;
  --mwm--color--n400: #E1E1E1;
  --mwm--accent-color: var(--mwm--color--n200);
  --mwm--max-padding: 1.5rem;
  --mwm--max-width: 1312px;
  /* COMPONENTS */
  --mwm--selection-bg: var(--mwm--accent-color);
  --mwm--selection-color: var(--mwm--color--n100);
  --mwm--body-bg: var(--mwm--color--n100);
  --mwm--base-color: var(--mwm--color--negro-csu);
  --mwm--headings-color: inherit;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

::-moz-selection {
  background-color: var(--mwm--selection-bg);
  color: var(--mwm--selection-color);
  -webkit-text-fill-color: var(--mwm--selection-color);
  text-fill-color: var(--mwm--selection-color);
}

::selection {
  background-color: var(--mwm--selection-bg);
  color: var(--mwm--selection-color);
  -webkit-text-fill-color: var(--mwm--selection-color);
  text-fill-color: var(--mwm--selection-color);
}

body {
  background-color: var(--mwm--body-bg);
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--wp-admin--admin-bar--height, 0px));
  padding-left: 0;
  padding-right: 0;
}

html #wpadminbar {
  position: fixed;
}

/*	# TYPOGRAPHY
===================================*/
body,
input,
textarea,
select {
  color: var(--mwm--base-color);
  font-family: var(--mwm--font-family);
  font-size: var(--mwm--font-size--text-default);
  font-weight: var(--mwm--font-weight--regular);
  line-height: var(--mwm--line-height--text-default);
}

/* HEADINGS */
h1,
h2,
h3,
h4,
h5,
h6,
.is-style-d100,
.is-style-d200,
.is-style-h100,
.is-style-h200,
.is-style-h300,
.mwm-page-text h2,
.mwm-page-text h3,
.mwm-page-text h4,
.mwm-page-text h5,
.mwm-page-text h6,
.woocommerce-Address-title.title h2,
.is-style-h400,
.mwm-woo-product__related-products-name,
.mwm-woo-product__review-author-name,
.mwm-woo-product__related-name,
.mwm-woo-product__tab-link,
.mwm-banner-v3__stat-info,
.mwm-home-work__stats .stat span,
.has-d-100-font-size,
.has-d-200-font-size,
.has-h-100-font-size,
.has-h-200-font-size,
.has-h-300-font-size,
.has-h-400-font-size,
.has-heading-1-font-size,
.has-heading-2-font-size,
.has-heading-3-font-size,
.has-heading-4-font-size {
  color: var(--mwm--headings-color);
  margin: 0;
}

.is-style-d100,
.has-d-100-font-size {
  font-family: var(--mwm--font-family);
  font-size: var(--mwm--font-size--d100);
  font-weight: var(--mwm--font-weight--light);
  letter-spacing: var(--mwm--letter-spacing--d100);
  line-height: var(--mwm--line-height--d100);
}

.is-style-d200,
.has-d-200-font-size {
  font-family: var(--mwm--font-family);
  font-size: var(--mwm--font-size--d200);
  font-weight: var(--mwm--font-weight--regular);
  letter-spacing: var(--mwm--letter-spacing--d200);
  line-height: var(--mwm--line-height--d200);
}

h1,
.is-style-h100,
.has-h-100-font-size {
  color: var(--mwm--color--azul-electrico-csu);
  font-family: var(--mwm--font-family);
  font-size: var(--mwm--font-size--heading-1);
  font-weight: var(--mwm--font-weight--black);
  line-height: var(--mwm--line-height--heading-1);
}

h2,
.is-style-h200,
.has-h-200-font-size {
  color: var(--mwm--color--azul-electrico-csu);
  font-family: var(--mwm--font-family);
  font-size: var(--mwm--font-size--heading-2);
  font-weight: var(--mwm--font-weight--black);
  line-height: var(--mwm--line-height--heading-2);
}

h3,
.is-style-h300,
.mwm-page-text h2,
.mwm-page-text h3,
.mwm-page-text h4,
.mwm-page-text h5,
.mwm-page-text h6,
.woocommerce-Address-title.title h2,
.has-h-300-font-size {
  color: var(--mwm--color--azul-electrico-csu);
  font-family: var(--mwm--font-family);
  font-size: var(--mwm--font-size--heading-3);
  font-weight: var(--mwm--font-weight--black);
  line-height: var(--mwm--line-height--heading-3);
}

h4,
h5,
h6,
.is-style-h400,
.mwm-woo-product__related-products-name,
.mwm-woo-product__review-author-name,
.mwm-woo-product__related-name,
.mwm-woo-product__tab-link,
.mwm-banner-v3__stat-info,
.mwm-home-work__stats .stat span,
.has-h-400-font-size {
  font-family: var(--mwm--font-family);
  font-size: var(--mwm--font-size--heading-4);
  font-weight: var(--mwm--font-weight--black);
  line-height: var(--mwm--line-height--heading-4);
}

.has-text-big-font-size, .mwm-install__text, .mwm-cta__text > *, .mwm-single__toc-title, .mwm-single__share-title {
  font-family: var(--mwm--font-family);
  font-size: var(--mwm--font-size--text-big) !important;
  font-weight: var(--mwm--font-weight--regular);
  line-height: var(--mwm--line-height--text-big);
}

.has-text-default-font-size, .mwm-woo-product__review-author-role, .mwm-woo-product__tab-content, .mwm-woo-product__size-btn, .mwm-page-text p,
.mwm-page-text li,
.mwm-page-text ul,
.mwm-page-text a,
.mwm-page-text div, .mwm-testimonials__role, .mwm-single__cta-text, .mwm-single__category-tag, .mwm-blog-pagination__label, .mwm-blog-pagination__count, .mwm-blog__category-link, .mwm-blog-featured__excerpt, .mwm-footer__copyright, .mwm-footer__legal a, .mwm-footer__menu-list a, .mwm-footer__text, .mwm-footer__link, .mwm-header__menu ul ul a, input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea,
select, body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul li a, .woocommerce-message,
.woocommerce-info,
ul.woocommerce-error,
div.woocommerce-error, .woocommerce form .form-row .input-text,
.woocommerce form .form-row select {
  font-family: var(--mwm--font-family);
  font-size: var(--mwm--font-size--text-default) !important;
  font-weight: var(--mwm--font-weight--regular);
  line-height: var(--mwm--line-height--text-default);
}

.has-text-small-font-size, .mwm-newsletter .row-subs .group-sub .content-priv a, .mwm-newsletter .row-subs .group-sub .content-priv .wpcf7-list-item-label, .mwm-blog-featured__meta {
  font-family: var(--mwm--font-family);
  font-size: var(--mwm--font-size--text-small) !important;
  font-weight: var(--mwm--font-weight--regular);
  line-height: var(--mwm--line-height--text-small);
}

/* BODY */
.is-style-b100,
.has-b-100-font-size {
  font-family: var(--mwm--font-family);
  font-size: var(--mwm--font-size--b100);
  font-weight: var(--mwm--font-weight--regular);
  line-height: var(--mwm--line-height--b100);
}

.is-style-b200,
.has-b-200-font-size {
  font-family: var(--mwm--font-family);
  font-size: var(--mwm--font-size--b200);
  font-weight: var(--mwm--font-weight--regular);
  line-height: var(--mwm--line-height--b200);
}

.is-style-b300, .mwm-gtranslate .gtranslate_wrapper,
.has-b-300-font-size {
  font-family: var(--mwm--font-family);
  font-size: var(--mwm--font-size--b300);
  font-weight: var(--mwm--font-weight--regular);
  line-height: var(--mwm--line-height--b300);
}

.is-subtitle-line {
  --mwm-subtitle-line-width: 0%;
  position: relative;
  width: fit-content;
}
.is-subtitle-line::before {
  background-image: url("assets/images/figure/separate-subtitle.svg");
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: auto 17px;
  bottom: -10px;
  content: "";
  height: 25px;
  left: 0;
  position: absolute;
  width: var(--mwm-subtitle-line-width);
}

/* LABEL */
.is-style-l100, .mwm-sns, .woocommerce .add-request-quote-button.button,
.woocommerce .add-request-quote-button-addons.button,
.yith-wceop-ywraq-button-wrapper .add-request-quote-button.button,
.yith-wceop-ywraq-button-wrapper .add-request-quote-button-addons.button, body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper #respond input#submit,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper a.button,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper button.button,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper input.button, body:not(.woocommerce-block-theme-has-button-styles) .woocommerce #respond input#submit,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce a.button,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce button.button,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce input.button, .mwm-btn-white, .mwm-newsletter .row-subs input[type=submit], .mwm-cta__button, .mwm-btn-secondary, .mwm-contact .btn-form input[type=submit], .mwm-btn-outline-red, .mwm-btn-outline, button,
input[type=button],
input[type=submit],
.mwm-btn-1 > *,
.mwm-btn-2 > *, .mwm-btn,
.wp-block-button .wp-block-button__link,
aside#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton,
aside#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar).moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-settings-btn,
div#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton,
div#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton.moove-gdpr-modal-save-settings,
.has-l-100-font-size {
  font-family: var(--mwm--font-family);
  font-size: var(--mwm--font-size--l100);
  font-weight: var(--mwm--font-weight--semibold);
  letter-spacing: var(--mwm--letter-spacing--l100);
  line-height: var(--mwm--line-height--l100);
}

.is-style-l200,
.has-l-200-font-size {
  font-family: var(--mwm--font-family);
  font-size: var(--mwm--font-size--l200);
  font-weight: var(--mwm--font-weight--semibold);
  letter-spacing: var(--mwm--letter-spacing--l200);
  line-height: var(--mwm--line-height--l200);
  text-transform: uppercase;
}

/* COPY */
hr {
  background-color: var(--mwm--base-color);
  border: none;
  height: 2px;
  margin: 1rem 0;
}

p {
  margin: 0 0 1em;
  word-break: break-word;
}

b,
strong {
  color: inherit;
  font-weight: var(--mwm--font-weight--black);
}

dfn,
cite,
em,
i {
  font-style: italic;
}

a {
  color: var(--mwm--color--azul-electrico-csu);
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

/* LISTS */
ul {
  list-style: disc;
  padding-left: 1.25em;
}

ol {
  list-style: decimal;
  padding-left: 1.25em;
}

/*==================================================================
	# UTILITIES
====================================================================*/
.mwm-max-1,
.mwm-max-2,
.wp-block-group:not(.alignfull) .wp-block-group__inner-container,
.wpcf7 {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(var(--mwm--max-width) + var(--mwm--max-padding) * 2);
  padding: 0 var(--mwm--max-padding);
}

.mwm-max-2,
.wp-block-group:not(.alignfull) .wp-block-group__inner-container,
.wpcf7 {
  --mwm--max-width: var(--mwm--max-width-2);
}

.wp-block-group__inner-container:after,
.wp-block-group__inner-container:before {
  content: "";
  display: table;
  width: 100%;
}

.has-opacity {
  opacity: 0.3;
}

.is-uppercase {
  text-transform: uppercase;
}

/*==================================================================
	# COMPONENTS
====================================================================*/
/*	# MEDIA
===================================*/
figure {
  margin: 0;
}

img,
svg,
video {
  display: block;
  height: auto;
  max-width: 100%;
}

figcaption {
  font-size: 80%;
}

blockquote {
  background: rgba(150, 171, 251, 0.3019607843);
  margin-left: 0;
  margin-right: 0;
  padding: 1.5rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  blockquote {
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
}
@media (min-width: 1280px) {
  blockquote {
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
  }
}
blockquote * {
  margin: 0;
}

/*	ALIGNMENTS */
.alignleft {
  display: inline;
  float: left;
  margin: 0 1rem 1rem 0;
}

.alignright {
  display: inline;
  float: right;
  margin: 0 0 1rem 1rem;
}

.aligncenter {
  clear: both;
  display: block;
  margin-bottom: 1rem;
}

.alignfull {
  margin: 1em calc(50% - 50vw) 1em;
  max-width: 100vw;
  width: 100vw;
}

.alignfull:first-child {
  margin-top: 0;
}

.alignfull:last-child {
  margin-bottom: 0;
}

/*	# IFRAME WRAPPER
===================================*/
.iframe-wrapper {
  margin-bottom: 1rem;
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}

.iframe-wrapper iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/*	# BUTTONS
===================================*/
button,
input[type=button],
input[type=submit],
.mwm-btn-1 > *,
.mwm-btn-2 > *, .mwm-btn,
.wp-block-button .wp-block-button__link,
aside#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton,
aside#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar).moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-settings-btn,
div#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton,
div#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton.moove-gdpr-modal-save-settings {
  background: var(--mwm--color--rojo-csu);
  border: 2px solid var(--mwm--color--rojo-csu);
  border-radius: 5.625rem;
  box-shadow: none;
  color: var(--mwm--color--n100);
  cursor: pointer;
  display: inline-flex;
  font-weight: var(--mwm--font-weight--black);
  gap: 0.25rem;
  justify-content: center;
  line-height: 1;
  opacity: 1;
  padding: 0.75rem 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  user-select: none;
}
button:hover,
input[type=button]:hover,
input[type=submit]:hover,
.mwm-btn-1 > *:hover,
.mwm-btn-2 > *:hover, .mwm-btn:hover,
.wp-block-button .wp-block-button__link:hover,
aside#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton:hover,
aside#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar).moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-settings-btn:hover,
div#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton:hover,
div#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton.moove-gdpr-modal-save-settings:hover {
  background: var(--mwm--color--azul-electrico-csu);
  border-color: var(--mwm--color--azul-electrico-csu);
  color: var(--mwm--color--n100);
}

.mwm-btn-1.has-only-icon > *,
.mwm-btn-2.has-only-icon > * {
  border-radius: 50%;
  padding: 0.5rem;
}

.mwm-btn-1 > *,
aside#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton,
div#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton,
div#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton.moove-gdpr-modal-save-settings {
  background-color: var(--mwm--color--n100);
  color: var(--mwm--color--n200);
}
.mwm-btn-1 > *:hover,
aside#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton:hover,
div#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton:hover,
div#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton.moove-gdpr-modal-save-settings:hover {
  background-color: var(--mwm--color--n300);
  color: var(--mwm--color--n200);
}

.mwm-btn-2 > *,
aside#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar).moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-settings-btn {
  background-color: var(--mwm--color--n300);
  color: var(--mwm--color--n200);
}
.mwm-btn-2 > *:hover,
aside#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar).moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-settings-btn:hover {
  background-color: var(--mwm--color--n100);
  color: var(--mwm--color--n200);
}

.mwm-btn-outline {
  background: var(--mwm--color--rojo-csu);
  border: 2px solid var(--mwm--color--rojo-csu);
  border-radius: 5.625rem;
  box-shadow: none;
  color: var(--mwm--color--n100);
  cursor: pointer;
  display: inline-flex;
  font-weight: var(--mwm--font-weight--black);
  gap: 0.25rem;
  justify-content: center;
  line-height: 1;
  opacity: 1;
  padding: 0.75rem 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  user-select: none;
}
.mwm-btn-outline:hover {
  background: var(--mwm--color--azul-electrico-csu);
  border-color: var(--mwm--color--azul-electrico-csu);
  color: var(--mwm--color--n100);
}
.mwm-btn-outline {
  background-color: transparent;
  border: 2px solid var(--mwm--color--azul-electrico-csu);
  color: var(--mwm--color--azul-electrico-csu);
}
.mwm-btn-outline:hover {
  background-color: var(--mwm--color--rojo-csu);
  border-color: currentColor;
  color: var(--mwm--color--n100);
}

.mwm-btn-outline-red {
  background: var(--mwm--color--rojo-csu);
  border: 2px solid var(--mwm--color--rojo-csu);
  border-radius: 5.625rem;
  box-shadow: none;
  color: var(--mwm--color--n100);
  cursor: pointer;
  display: inline-flex;
  font-weight: var(--mwm--font-weight--black);
  gap: 0.25rem;
  justify-content: center;
  line-height: 1;
  opacity: 1;
  padding: 0.75rem 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  user-select: none;
}
.mwm-btn-outline-red:hover {
  background: var(--mwm--color--azul-electrico-csu);
  border-color: var(--mwm--color--azul-electrico-csu);
  color: var(--mwm--color--n100);
}
.mwm-btn-outline-red {
  background-color: transparent;
  border: 2px solid var(--mwm--color--rojo-csu);
  color: var(--mwm--color--rojo-csu);
}
.mwm-btn-outline-red:hover {
  background-color: var(--mwm--color--rojo-csu);
  border-color: currentColor;
  color: var(--mwm--color--n100);
}

.mwm-btn-secondary, .mwm-contact .btn-form input[type=submit] {
  background: var(--mwm--color--rojo-csu);
  border: 2px solid var(--mwm--color--rojo-csu);
  border-radius: 5.625rem;
  box-shadow: none;
  color: var(--mwm--color--n100);
  cursor: pointer;
  display: inline-flex;
  font-weight: var(--mwm--font-weight--black);
  gap: 0.25rem;
  justify-content: center;
  line-height: 1;
  opacity: 1;
  padding: 0.75rem 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  user-select: none;
}
.mwm-btn-secondary:hover, .mwm-contact .btn-form input[type=submit]:hover {
  background: var(--mwm--color--azul-electrico-csu);
  border-color: var(--mwm--color--azul-electrico-csu);
  color: var(--mwm--color--n100);
}
.mwm-btn-secondary, .mwm-contact .btn-form input[type=submit] {
  background-color: var(--mwm--color--azul-electrico-csu);
  border-color: var(--mwm--color--azul-electrico-csu);
  color: var(--mwm--color--n100);
  width: 100%;
}
.mwm-btn-secondary:hover, .mwm-contact .btn-form input[type=submit]:hover {
  background-color: var(--mwm--color--rojo-csu);
  border-color: var(--mwm--color--rojo-csu);
  color: var(--mwm--color--n100);
}

.mwm-btn-white, .mwm-newsletter .row-subs input[type=submit], .mwm-cta__button {
  background: var(--mwm--color--rojo-csu);
  border: 2px solid var(--mwm--color--rojo-csu);
  border-radius: 5.625rem;
  box-shadow: none;
  color: var(--mwm--color--n100);
  cursor: pointer;
  display: inline-flex;
  font-weight: var(--mwm--font-weight--black);
  gap: 0.25rem;
  justify-content: center;
  line-height: 1;
  opacity: 1;
  padding: 0.75rem 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  user-select: none;
}
.mwm-btn-white:hover, .mwm-newsletter .row-subs input[type=submit]:hover, .mwm-cta__button:hover {
  background: var(--mwm--color--azul-electrico-csu);
  border-color: var(--mwm--color--azul-electrico-csu);
  color: var(--mwm--color--n100);
}
.mwm-btn-white, .mwm-newsletter .row-subs input[type=submit], .mwm-cta__button {
  background-color: var(--mwm--color--n100);
  border-color: var(--mwm--color--n100);
  color: var(--mwm--color--rojo-csu);
  padding: 1rem 1.5rem;
}
.mwm-btn-white:hover, .mwm-newsletter .row-subs input[type=submit]:hover, .mwm-cta__button:hover {
  background-color: var(--mwm--color--rojo-csu);
  border-color: var(--mwm--color--rojo-csu);
  color: var(--mwm--color--n100);
}

/*	# WOOCOMMERCE — ANCHO (CUENTA, CARRITO, ETC.) Y BOTONES
===================================*/
body.woocommerce-account .mwm-main-container,
body.woocommerce-cart .mwm-main-container,
body.woocommerce-checkout .mwm-main-container,
body.woocommerce-page:not(.single-product):not(.post-type-archive-product):not(.tax-product_cat):not(.tax-product_tag) .mwm-main-container {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(var(--mwm--max-width) + var(--mwm--max-padding) * 2);
  padding-left: var(--mwm--max-padding);
  padding-right: var(--mwm--max-padding);
  padding-top: 2.5rem;
  width: 100%;
}

body:not(.woocommerce-block-theme-has-button-styles) .woocommerce #respond input#submit,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce a.button,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce button.button,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce input.button {
  background: var(--mwm--color--rojo-csu);
  border: 2px solid var(--mwm--color--rojo-csu);
  border-radius: 5.625rem;
  box-shadow: none;
  color: var(--mwm--color--n100);
  cursor: pointer;
  display: inline-flex;
  font-weight: var(--mwm--font-weight--black);
  gap: 0.25rem;
  justify-content: center;
  line-height: 1;
  opacity: 1;
  padding: 0.75rem 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  user-select: none;
}
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce #respond input#submit:hover,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce a.button:hover,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce button.button:hover,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce input.button:hover {
  background: var(--mwm--color--azul-electrico-csu);
  border-color: var(--mwm--color--azul-electrico-csu);
  color: var(--mwm--color--n100);
}
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce #respond input#submit:disabled, body:not(.woocommerce-block-theme-has-button-styles) .woocommerce #respond input#submit.disabled,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce a.button:disabled,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce a.button.disabled,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce button.button:disabled,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce button.button.disabled,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce input.button:disabled,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce input.button.disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper #respond input#submit,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper a.button,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper button.button,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper input.button {
  background: var(--mwm--color--rojo-csu);
  border: 2px solid var(--mwm--color--rojo-csu);
  border-radius: 5.625rem;
  box-shadow: none;
  color: var(--mwm--color--n100);
  cursor: pointer;
  display: inline-flex;
  font-weight: var(--mwm--font-weight--black);
  gap: 0.25rem;
  justify-content: center;
  line-height: 1;
  opacity: 1;
  padding: 0.75rem 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  user-select: none;
}
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper #respond input#submit:hover,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper a.button:hover,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper button.button:hover,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper input.button:hover {
  background: var(--mwm--color--azul-electrico-csu);
  border-color: var(--mwm--color--azul-electrico-csu);
  color: var(--mwm--color--n100);
}
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper #respond input#submit:disabled, body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper #respond input#submit.disabled,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper a.button:disabled,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper a.button.disabled,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper button.button:disabled,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper button.button.disabled,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper input.button:disabled,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper input.button.disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.woocommerce .add-request-quote-button.button,
.woocommerce .add-request-quote-button-addons.button,
.yith-wceop-ywraq-button-wrapper .add-request-quote-button.button,
.yith-wceop-ywraq-button-wrapper .add-request-quote-button-addons.button {
  background: var(--mwm--color--rojo-csu);
  border: 2px solid var(--mwm--color--rojo-csu);
  border-radius: 5.625rem;
  box-shadow: none;
  color: var(--mwm--color--n100);
  cursor: pointer;
  display: inline-flex;
  font-weight: var(--mwm--font-weight--black);
  gap: 0.25rem;
  justify-content: center;
  line-height: 1;
  opacity: 1;
  padding: 0.75rem 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  user-select: none;
}
.woocommerce .add-request-quote-button.button:hover,
.woocommerce .add-request-quote-button-addons.button:hover,
.yith-wceop-ywraq-button-wrapper .add-request-quote-button.button:hover,
.yith-wceop-ywraq-button-wrapper .add-request-quote-button-addons.button:hover {
  background: var(--mwm--color--azul-electrico-csu);
  border-color: var(--mwm--color--azul-electrico-csu);
  color: var(--mwm--color--n100);
}
.woocommerce .add-request-quote-button.button,
.woocommerce .add-request-quote-button-addons.button,
.yith-wceop-ywraq-button-wrapper .add-request-quote-button.button,
.yith-wceop-ywraq-button-wrapper .add-request-quote-button-addons.button {
  background: var(--mwm--color--azul-electrico-csu) !important;
  border: 2px solid var(--mwm--color--azul-electrico-csu) !important;
  color: var(--mwm--color--n100) !important;
}
.woocommerce .add-request-quote-button.button:hover, .woocommerce .add-request-quote-button.button:focus, .woocommerce .add-request-quote-button.button:focus-visible,
.woocommerce .add-request-quote-button-addons.button:hover,
.woocommerce .add-request-quote-button-addons.button:focus,
.woocommerce .add-request-quote-button-addons.button:focus-visible,
.yith-wceop-ywraq-button-wrapper .add-request-quote-button.button:hover,
.yith-wceop-ywraq-button-wrapper .add-request-quote-button.button:focus,
.yith-wceop-ywraq-button-wrapper .add-request-quote-button.button:focus-visible,
.yith-wceop-ywraq-button-wrapper .add-request-quote-button-addons.button:hover,
.yith-wceop-ywraq-button-wrapper .add-request-quote-button-addons.button:focus,
.yith-wceop-ywraq-button-wrapper .add-request-quote-button-addons.button:focus-visible {
  background: var(--mwm--color--azul-electrico-csu) !important;
  border-color: var(--mwm--color--azul-electrico-csu) !important;
  color: var(--mwm--color--n100) !important;
}
.woocommerce .add-request-quote-button.button:disabled, .woocommerce .add-request-quote-button.button.disabled,
.woocommerce .add-request-quote-button-addons.button:disabled,
.woocommerce .add-request-quote-button-addons.button.disabled,
.yith-wceop-ywraq-button-wrapper .add-request-quote-button.button:disabled,
.yith-wceop-ywraq-button-wrapper .add-request-quote-button.button.disabled,
.yith-wceop-ywraq-button-wrapper .add-request-quote-button-addons.button:disabled,
.yith-wceop-ywraq-button-wrapper .add-request-quote-button-addons.button.disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.woocommerce div.product div.images {
  float: none;
  margin-bottom: 0;
  width: auto;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
  color: var(--mwm--color--azul-electrico-csu);
}

.woocommerce span.onsale {
  background-color: var(--mwm--color--azul-electrico-csu);
  border-color: var(--mwm--color--azul-electrico-csu);
  color: var(--mwm--color--n100);
}

[class*=yith_ywraq_add_item_response] {
  clear: both;
  margin-top: 3rem;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
  display: block;
}

.wc-block-cart__submit-container .wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
  border-radius: 5.625rem;
  border: 2px solid var(--mwm--color--rojo-csu);
  background: var(--mwm--color--rojo-csu);
  color: var(--mwm--color--n100);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.wc-block-cart__submit-container .wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover, .wc-block-cart__submit-container .wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:focus {
  background: var(--mwm--color--azul-electrico-csu);
  border-color: var(--mwm--color--azul-electrico-csu);
  color: var(--mwm--color--n100);
}

.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained {
  border-radius: 5.625rem;
  border: 2px solid var(--mwm--color--rojo-csu);
  background: var(--mwm--color--rojo-csu);
  color: var(--mwm--color--n100);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:hover, .wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:focus {
  background: var(--mwm--color--azul-electrico-csu);
  border-color: var(--mwm--color--azul-electrico-csu);
  color: var(--mwm--color--n100);
}

body:not(.woocommerce-block-theme-has-button-styles) .woocommerce .woocommerce-message a.button.wc-forward,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce .woocommerce-info a.button.wc-forward,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce ul.woocommerce-error a.button.wc-forward,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce div.woocommerce-error a.button.wc-forward,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper .woocommerce-info a.button.wc-forward,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper ul.woocommerce-error a.button.wc-forward,
body:not(.woocommerce-block-theme-has-button-styles) .woocommerce-notices-wrapper div.woocommerce-error a.button.wc-forward {
  font-size: 14px;
  padding: 0.5rem 1rem;
}

.woocommerce form .form-row .input-text,
.woocommerce form .form-row select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: rgba(150, 171, 251, 0.1019607843);
  border: 1px solid var(--mwm--color--azul-electrico-csu);
  border-radius: 0;
  color: var(--mwm--color--azul-electrico-csu);
  display: block;
  padding: 0.75rem;
  width: 100%;
}
.woocommerce form .form-row .input-text:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--mwm--color--azulado-csu);
}

.woocommerce form .form-row select {
  background-clip: border-box;
  -moz-background-clip: border-box;
  -webkit-background-clip: border-box;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%239a9a9a' d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'%3E%3C/path%3E%3C/svg%3E");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 2em 1em;
  color: var(--mwm--color--azulado-csu);
  max-width: 100%;
  padding-right: 1.25em;
  position: relative;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border: 1px solid #192af7;
  border-radius: 0;
}

.woocommerce-notices-wrapper:not(:empty) {
  margin-bottom: 1rem;
}

.woocommerce-message,
.woocommerce-info,
ul.woocommerce-error,
div.woocommerce-error {
  align-items: center;
  background-color: rgba(150, 171, 251, 0.1019607843);
  border-radius: 0;
  border-style: solid;
  border-width: 1px;
  border-color: var(--mwm--color--azul-electrico-csu);
  box-shadow: none;
  color: var(--mwm--color--negro-csu);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 0.75rem;
  outline: none;
  padding: 0.75rem 1rem;
  position: relative;
}
.woocommerce-message:last-child,
.woocommerce-info:last-child,
ul.woocommerce-error:last-child,
div.woocommerce-error:last-child {
  margin-bottom: 0;
}
.woocommerce-message a:not(.button),
.woocommerce-info a:not(.button),
ul.woocommerce-error a:not(.button),
div.woocommerce-error a:not(.button) {
  color: var(--mwm--color--azul-electrico-csu);
  font-weight: var(--mwm--font-weight--bold);
  text-decoration: underline;
}
.woocommerce-message a:not(.button):hover, .woocommerce-message a:not(.button):focus,
.woocommerce-info a:not(.button):hover,
.woocommerce-info a:not(.button):focus,
ul.woocommerce-error a:not(.button):hover,
ul.woocommerce-error a:not(.button):focus,
div.woocommerce-error a:not(.button):hover,
div.woocommerce-error a:not(.button):focus {
  color: var(--mwm--color--rojo-csu);
}
.woocommerce-message .button.wc-forward,
.woocommerce-info .button.wc-forward,
ul.woocommerce-error .button.wc-forward,
div.woocommerce-error .button.wc-forward {
  font-size: 14px;
  margin-inline-start: 0;
  padding: 0.5rem 1rem;
  vertical-align: middle;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  display: none;
}

ul.woocommerce-error,
div.woocommerce-error {
  border-color: var(--mwm--color--rojo-csu);
}

ul.woocommerce-error {
  padding-inline-start: 1rem;
}
ul.woocommerce-error li {
  list-style: disc;
  margin: 0.25rem 0;
}
ul.woocommerce-error li:last-child {
  margin-bottom: 0;
}

.woocommerce-Address-title.title h2 {
  margin: 0 0 0.75rem;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation,
body.logged-in.woocommerce-account .woocommerce-MyAccount-content {
  background-color: rgba(150, 171, 251, 0.1019607843);
  border: 1px solid var(--mwm--color--azul-electrico-csu);
  border-radius: 0;
  padding: 1rem;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  margin: 0;
}
body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul li + li {
  margin-top: 0.5rem;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  color: var(--mwm--color--azul-electrico-csu);
  display: block;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover, body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul li a:focus {
  background-color: var(--mwm--color--azul-electrico-csu);
  color: var(--mwm--color--n100);
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  background-color: var(--mwm--color--azul-electrico-csu);
  color: var(--mwm--color--n100);
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content > *:last-child {
  margin-bottom: 0;
}

.mwm-account-generate-order {
  margin-top: 1.5rem;
}

.mwm-account-generate-order__title {
  margin: 0 0 0.5rem;
}

.mwm-account-generate-order__text {
  margin: 0 0 1rem;
}

@media (max-width: 768px) {
  .mwm-account-generate-order__button {
    width: 100%;
  }
  body.logged-in.woocommerce-account .woocommerce-MyAccount-content {
    margin-top: 2rem;
  }
}
/*	# FORMS
===================================*/
label {
  cursor: pointer;
  display: block;
  margin-bottom: 0.5em;
}

/* FIELDSET */
fieldset {
  background: transparent;
  border: 0;
  margin: 2rem 0;
  padding: 2rem;
}

fieldset legend {
  float: left;
  font-size: 1.875rem;
  font-weight: var(--mwm--font-weight--bold);
  margin-bottom: 1.5rem;
}

/* FIELDS */
input:not([type=checkbox], [type=radio]),
textarea,
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea,
select {
  background-color: rgba(150, 171, 251, 0.1019607843);
  border: 1px solid var(--mwm--color--azul-electrico-csu);
  border-radius: 0;
  color: var(--mwm--color--azul-electrico-csu);
  display: block;
  padding: 0.75rem;
  width: 100%;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus,
select:focus {
  border-color: var(--mwm--color--azulado-csu);
}

textarea {
  max-height: 7.75rem;
}

/* SELECT */
select {
  appearance: none;
  background-clip: border-box;
  -moz-background-clip: border-box;
  -webkit-background-clip: border-box;
  background-color: rgba(150, 171, 251, 0.1019607843);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%239a9a9a' d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'%3E%3C/path%3E%3C/svg%3E");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 2em 1em;
  border-radius: 0;
  color: var(--mwm--color--azulado-csu);
  max-width: 100%;
  padding-right: 1.25em;
  position: relative;
}

/* CHECKBOXES & RADIO BUTTONS */
input[type=radio],
input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--mwm--color--n100);
  border: 1px solid var(--mwm--color--rojo-csu);
  border-radius: 50%;
  cursor: pointer;
  height: 1rem;
  margin-right: 0.5rem;
  position: relative;
  vertical-align: middle;
  width: 1rem;
}
input[type=radio]:checked::after,
input[type=checkbox]:checked::after {
  background: var(--mwm--color--azulado-csu);
  border-radius: 50%;
  content: "";
  display: block;
  height: 0.5rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
}

input[type=checkbox] {
  border-radius: 0;
}
input[type=checkbox]:checked::after {
  border-radius: 0;
}

/*	GPRD */
.gdpr button {
  width: unset;
}

/* PLADEHOLDER */
::-webkit-input-placeholder {
  color: var(--mwm--color--azul-electrico-csu);
  font-family: var(--mwm--font-family);
}

:-moz-placeholder {
  color: var(--mwm--color--azul-electrico-csu);
  font-family: var(--mwm--font-family);
}

::-moz-placeholder {
  color: var(--mwm--color--azul-electrico-csu);
  font-family: var(--mwm--font-family);
  opacity: 1;
  /* Desde FF19, Firefox baja la opacidad de los placeholder por defecto */
}

:-ms-input-placeholder {
  color: var(--mwm--color--azul-electrico-csu);
  font-family: var(--mwm--font-family);
}

/* CF7 */
.wpcf7-list-item {
  margin: 0;
}

.wpcf7-not-valid-tip {
  margin-top: 0.5rem;
}

.group-form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
}
.group-form p {
  margin: 0;
}

.group-form__item {
  width: 100%;
}

.group-form__messenge {
  width: 100%;
}

.btn-form {
  width: 100%;
}

@media (min-width: 1024px) {
  .group-form {
    flex-direction: row;
  }
  .group-form__item {
    width: calc(50% - 0.5rem);
  }
}
/*	# SEARCH FORM
===================================*/
.search-form form {
  position: relative;
}

.search-form input[type=search]::-webkit-search-decoration,
.search-form input[type=search]::-webkit-search-cancel-button,
.search-form input[type=search]::-webkit-search-results-button,
.search-form input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.search-form button {
  background: transparent;
  border: none;
  bottom: 0;
  color: var(--mwm--color--azul-electrico-csu);
  display: inline-block;
  font-size: 1rem;
  min-width: unset;
  outline: none;
  padding: 0 1rem;
  position: absolute;
  left: 12px;
  top: 0;
  width: auto;
}

/*	# SWIPER
===================================*/
.swiper {
  --swiper-navigation-sides-offset: 2.5rem;
  --swiper-navigation-size: auto;
  --swiper-pagination-bottom: 2rem;
  --swiper-pagination-color: var(--mwm--color--n100);
  --swiper-pagination-bullet-inactive-color: var(--mwm--color--n100);
  --swiper-pagination-bullet-size: 0.625rem;
  --swiper-pagination-bullet-inactive-opacity: 0.5;
}
.swiper-button-prev::after, .swiper-button-next::after {
  content: none;
}
.swiper-button-prev > *, .swiper-button-next > * {
  display: flex;
}
@media (min-width: 1280px) {
  .swiper {
    --swiper-pagination-bottom: 2.5rem;
  }
}

.swiper-pagination-bullet {
  background: #F4F7FF;
  height: 16px;
  opacity: 1;
  width: 16px;
}

.swiper-pagination-bullet-active {
  background-color: var(--mwm--color--azul-electrico-csu);
}

/*	# MWM HEADER
===================================*/
.mwm-header {
  --mwm--max-padding: 1.5rem;
  margin-bottom: 0;
  padding-top: 2.5rem;
  position: sticky;
  top: var(--wp-admin--admin-bar--height, 0px);
  width: 100%;
  z-index: 999;
  background-color: #fff;
}
.mwm-header__wrapper {
  align-items: center;
  background-color: var(--mwm--color--azul-electrico-csu);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto 1fr;
  padding: 0.5rem 1.5rem;
}
@media (min-width: 1280px) {
  .mwm-header__wrapper {
    padding: 0.25rem 2.5rem;
  }
}
.mwm-header__left {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
}
.mwm-header__logo {
  align-items: center;
  display: flex;
  justify-content: center;
  max-width: 7.25rem;
  width: 100%;
}
.mwm-header__logo img, .mwm-header__logo svg {
  width: 100%;
}
.mwm-header__toggle {
  background-color: transparent;
  border-radius: 0;
  color: var(--mwm--color--marfil-csu);
  cursor: pointer;
  padding: 0;
  user-select: none;
}
.mwm-header__icons {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: end;
}
.mwm-header__icons a {
  color: var(--mwm--color--marfil-csu);
  text-decoration: none;
}
.mwm-header__icon {
  align-items: center;
  color: var(--mwm--color--marfil-csu);
  display: flex;
  height: 1.5rem;
  justify-content: center;
  width: 1.5rem;
}
.mwm-header__icon svg {
  height: 1.5rem;
  width: 1.5rem;
}
.mwm-header__icon-btn {
  align-items: center;
  background: none;
  border: 0;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: 0;
}
.mwm-header__menu ul {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.mwm-header__menu li {
  position: relative;
}
.mwm-header__menu li.current-menu-item > a, .mwm-header__menu li.current-menu-ancestor:not(.is-open) > a {
  border-bottom: 2px solid var(--mwm--color--marfil-csu);
}
.mwm-header__menu li.menu-item-has-children > a:after, .mwm-header__menu li.page_item_has_children > a:after {
  display: none;
}
.mwm-header__menu .menu-item__btn,
.mwm-header__menu .menu-item-has-children > a svg,
.mwm-header__menu .page_item_has_children > a svg {
  flex-shrink: 0;
  height: 14px;
  width: 14px;
}
.mwm-header__menu a {
  align-items: flex-start;
  border-radius: 0;
  color: var(--mwm--color--marfil-csu);
  display: flex;
  gap: 0.4375rem;
  justify-content: center;
  padding: 0;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.mwm-header__menu a:after {
  background-color: var(--mwm--color--marfil-csu);
  bottom: -2px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 100%;
}
.mwm-header__menu a:hover {
  text-decoration: none;
}
.mwm-header__menu a:hover:after {
  opacity: 1;
  transform: scaleX(1);
}
@media (max-width: 1279px) {
  .mwm-header__menu a {
    color: var(--mwm--color--azul-electrico-csu);
  }
  .mwm-header__menu a:after {
    background-color: var(--mwm--color--azul-electrico-csu);
  }
}
.mwm-header__menu ul ul {
  background-color: var(--mwm--color--azul-electrico-csu);
  display: none;
  padding: 0.5rem 0;
}
.mwm-header__menu ul ul li:not(:last-child) {
  padding-bottom: 0;
}
.mwm-header__menu ul ul li.current-menu-item a {
  background: none;
  opacity: 1;
}
.mwm-header__menu ul ul a {
  background: none;
  color: var(--mwm--color--n100);
  display: block;
  opacity: 1;
  padding: 0.5rem 1rem;
  position: relative;
  transition: background 0.2s, color 0.2s;
}
.mwm-header__menu ul ul a:after {
  background-color: currentColor;
  bottom: -2px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 100%;
}
.mwm-header__menu ul ul a:hover {
  background-color: var(--mwm--color--rojo-csu);
  color: var(--mwm--color--n100);
}
.mwm-header__menu ul ul a:hover:after {
  opacity: 1;
  transform: scaleX(1);
}
@media (max-width: 1279px) {
  .mwm-header #mwm-header__icon-shopy {
    display: none;
  }
  .mwm-header__menu-container {
    background-color: var(--mwm--color--n100);
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 var(--mwm--max-padding);
    padding-bottom: 2.5rem;
    position: fixed;
    right: -100%;
    top: var(--wp-admin--admin-bar--height, 0px);
    transition: transform 0.4s;
    width: 100%;
    z-index: 99999;
  }
  .mwm-header__menu-container.is-opened {
    transform: translateX(-100%);
  }
  .mwm-header__menu-container.is-opened .mwm-header__logo svg path {
    fill: var(--mwm--color--azul-electrico-csu);
  }
  .mwm-header__menu-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
  }
  .mwm-header__menu {
    margin: auto 0;
    padding: 0;
    width: 100%;
  }
  .mwm-header__menu li.current-menu-item > a, .mwm-header__menu li.current-menu-ancestor:not(.is-open) > a {
    border-bottom: 2px solid var(--mwm--color--azul-electrico-csu);
  }
  .mwm-header__menu li.is-open > a {
    background-color: transparent;
    border-radius: 0;
  }
  .mwm-header__menu li.is-open > a > svg {
    transform: rotate(180deg);
  }
  .mwm-header__menu ul ul,
  .mwm-header__menu ul .sub-menu {
    background: none !important;
    border: none;
    box-shadow: none;
    margin-top: 0.5rem;
    padding: 0.25rem 0 0.5rem 2rem;
  }
  .mwm-header__menu ul ul li,
  .mwm-header__menu ul .sub-menu li {
    padding-bottom: 0.25rem;
  }
  .mwm-header__menu ul ul a,
  .mwm-header__menu ul .sub-menu a {
    background: none !important;
    color: var(--mwm--color--azul-electrico-csu);
    padding: 0.5rem 0;
  }
  .mwm-header__menu ul ul a:hover,
  .mwm-header__menu ul .sub-menu a:hover {
    background: none !important;
    color: var(--mwm--color--rojo-csu);
  }
}
@media (min-width: 1280px) {
  .mwm-header__menu-container {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: flex-end;
  }
  .mwm-header .mwm-sns, .mwm-header__toggle, .mwm-header__menu-header {
    display: none;
  }
  .mwm-header__menu ul {
    flex-direction: row;
  }
  .mwm-header__menu li.current-menu-item > a, .mwm-header__menu li.current_page_item > a {
    background-color: transparent;
  }
  .mwm-header__menu li.menu-item-has-children:hover > a, .mwm-header__menu li.page_item_has_children:hover > a {
    background-color: transparent;
    border: 0;
  }
  .mwm-header__menu li.menu-item-has-children:hover > a::after, .mwm-header__menu li.page_item_has_children:hover > a::after {
    transform: rotate(180deg);
  }
  .mwm-header__menu li.menu-item-has-children:hover > ul.sub-menu,
  .mwm-header__menu li.menu-item-has-children:hover > ul.children, .mwm-header__menu li.page_item_has_children:hover > ul.sub-menu,
  .mwm-header__menu li.page_item_has_children:hover > ul.children {
    opacity: 1;
    visibility: visible;
  }
  .mwm-header__menu li.menu-item-has-children > a:after, .mwm-header__menu li.page_item_has_children > a:after {
    content: url("data:image/svg+xml,%3Csvg class='menu-item__btn' width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 9.62422L11.375 5.24922L10.7625 4.63672L7 8.39922L3.2375 4.63672L2.625 5.24922L7 9.62422Z' fill='%232A2622'/%3E%3C/svg%3E");
    line-height: 0;
  }
  .mwm-header__menu li.menu-item-has-children .menu-item__btn, .mwm-header__menu li.page_item_has_children .menu-item__btn {
    display: none;
  }
  .mwm-header__menu a {
    transition: border-bottom 0.3ms ease-in-out;
  }
  .mwm-header__menu a:hover {
    background-color: transparent;
  }
  .mwm-header__menu ul ul {
    background-color: var(--mwm--color--azul-electrico-csu);
    display: block !important;
    min-width: 100%;
    opacity: 0;
    padding: 0;
    position: absolute;
    text-align: left;
    top: calc(100% + 0.25rem);
    transition: visibility 0.2s, opacity 0.2s;
    min-width: 150px;
    visibility: hidden;
  }
  .mwm-header__menu ul ul a:hover {
    border-bottom: 0;
  }
}

/*	# MWM FOOTER
===================================*/
.mwm-footer {
  background-color: var(--mwm--color--azul-electrico-csu);
  color: var(--mwm--color--marfil-csu);
  margin-top: auto;
  overflow: hidden;
  position: relative;
  padding-top: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-footer {
    padding-top: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-footer {
    padding-top: 2.5rem;
  }
}
.mwm-footer__wrapper, .mwm-footer__top {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.mwm-footer__block {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mwm-footer__title {
  color: var(--mwm--color--marfil-csu);
  font-family: var(--mwm--font-family-alt);
  font-size: 1.5rem;
  font-weight: var(--mwm--font-weight--regular);
  line-height: 1;
  margin-bottom: 0;
  width: 100%;
}
.mwm-footer__text, .mwm-footer__link {
  color: var(--mwm--color--marfil-csu);
}
.mwm-footer__text {
  margin-bottom: 0.5rem;
}
.mwm-footer__text:last-child {
  margin-bottom: 0;
}
.mwm-footer__link {
  color: var(--mwm--color--marfil-csu);
  position: relative;
  text-decoration: none;
  transition: color 0.3s;
}
.mwm-footer__link:after {
  background-color: var(--mwm--color--marfil-csu);
  bottom: -2px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 100%;
}
.mwm-footer__link:hover {
  text-decoration: none;
}
.mwm-footer__link:hover:after {
  opacity: 1;
  transform: scaleX(1);
}
.mwm-footer__menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mwm-footer__menu-list a {
  color: var(--mwm--color--marfil-csu);
  position: relative;
  text-decoration: none;
  transition: color 0.3s;
}
.mwm-footer__menu-list a:after {
  background-color: var(--mwm--color--marfil-csu);
  bottom: -2px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 100%;
}
.mwm-footer__menu-list a:hover {
  text-decoration: none;
}
.mwm-footer__menu-list a:hover:after {
  opacity: 1;
  transform: scaleX(1);
}
.mwm-footer__legal {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mwm-footer__legal a {
  color: var(--mwm--color--marfil-csu);
  position: relative;
  text-decoration: none;
  transition: color 0.3s;
}
.mwm-footer__legal a:after {
  background-color: var(--mwm--color--marfil-csu);
  bottom: -2px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 100%;
}
.mwm-footer__legal a:hover {
  text-decoration: none;
}
.mwm-footer__legal a:hover:after {
  opacity: 1;
  transform: scaleX(1);
}
.mwm-footer__copyright {
  font-weight: var(--mwm--font-weight--semibold);
  margin: 0;
}
.mwm-footer__rrss {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mwm-footer__rrss-item {
  display: block;
  transition: transform 0.5s ease-in-out;
}
.mwm-footer__rrss-item:hover {
  transform: scale(1.2);
}
.mwm-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mwm-footer__categorias-grid {
  display: flex;
  gap: 0.5rem 1.5rem;
}
.mwm-footer__categorias-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mwm-footer__legal-wrap {
  width: 100%;
}
.mwm-footer__bottom-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.5rem;
  min-width: 48.9375rem;
}
.mwm-footer__bottom-img img {
  display: block;
  height: auto;
  margin-bottom: -1.5625rem;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 768px) {
  .mwm-footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .mwm-footer__wrapper {
    gap: 2rem;
  }
  .mwm-footer__top {
    gap: 6.25rem;
    grid-template-columns: 0.8fr 1fr 1fr 1.2fr;
    justify-content: space-between;
  }
  .mwm-footer__block--social {
    align-items: center;
  }
  .mwm-footer__copyright {
    text-align: center;
  }
  .mwm-footer__legal {
    justify-content: space-between;
  }
  .mwm-footer__block--contact {
    order: 1;
  }
  .mwm-footer__block--menu {
    order: 2;
  }
  .mwm-footer__block--especializacion {
    order: 3;
  }
  .mwm-footer__block--categorias {
    order: 4;
  }
  .mwm-footer__block--social, .mwm-footer__copyright, .mwm-footer__legal-wrap, .mwm-footer__bottom {
    grid-column: 1/-1;
  }
  .mwm-footer__bottom-img {
    margin-top: 0;
  }
  .mwm-footer__bottom-img img {
    margin-bottom: -3.8125rem;
  }
}

/*	# MWM MAIN CONTAINER
===================================*/
.mwm-main-container {
  overflow-x: clip;
  overflow-y: visible;
}
.mwm-main-container > * {
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-main-container > * {
    margin-bottom: 4rem;
  }
}
@media (min-width: 1280px) {
  .mwm-main-container > * {
    margin-bottom: 5rem;
  }
}

/*	# MWM GTRANSLATE
===================================*/
.mwm-gtranslate {
  display: flex;
  justify-content: center;
  padding: 0.875rem 0;
}
.mwm-gtranslate__wrapper {
  position: relative;
  text-align: center;
}
.mwm-gtranslate__header {
  align-items: center;
  background-color: var(--mwm--color--n300);
  border-radius: 2.5rem;
  cursor: pointer;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.5rem 1rem;
  user-select: none;
}
.mwm-gtranslate .gtranslate_wrapper {
  background: var(--mwm--color--n300);
  border-radius: 0 0 1rem 1rem;
  border-top: 1px solid var(--mwm--color--n400);
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem 0 2.5rem;
  position: absolute;
  text-transform: none;
  top: 100%;
  width: 100%;
}
.mwm-gtranslate a {
  opacity: 0.4;
}
.mwm-gtranslate a.glink.gt-current-lang {
  font-weight: var(--mwm--font-weight--regular);
  opacity: 1;
}
@media (max-width: 1279px) {
  .mwm-gtranslate.is-open .mwm-gtranslate__header {
    border-radius: 1rem 1rem 0 0;
  }
  .mwm-gtranslate.is-open .mwm-gtranslate__header svg {
    transform: rotate(180deg);
  }
  .mwm-gtranslate.is-open .gtranslate_wrapper {
    display: flex;
  }
}
@media (min-width: 1280px) {
  .mwm-gtranslate:hover .mwm-gtranslate__header {
    border-radius: 1rem 1rem 0 0;
  }
  .mwm-gtranslate:hover .mwm-gtranslate__header svg {
    transform: rotate(180deg);
  }
  .mwm-gtranslate:hover .gtranslate_wrapper {
    display: flex;
  }
}

/*	# MWM SNS
===================================*/
.mwm-sns ul {
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}
.mwm-sns a {
  text-decoration: none;
}
.mwm-sns a:hover {
  text-decoration: underline;
}

/*	# MWM CARD 1
===================================*/
.mwm-card-1 {
  background: var(--mwm--color--n300);
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
.mwm-card-1:hover .mwm-btn-2 span {
  background-color: var(--mwm--color--n100);
}
.mwm-card-1 a {
  text-decoration: none;
}
.mwm-card-1__img {
  height: 208px;
  width: 100%;
}
.mwm-card-1__img img {
  border-radius: 1rem;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.mwm-card-1__info {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  padding: 2rem;
}
.mwm-card-1__cat {
  margin-bottom: 1rem;
}
.mwm-card-1__cat a {
  position: relative;
  z-index: 2;
}
.mwm-card-1__cat a:hover {
  text-decoration: underline;
}
.mwm-card-1__title a::after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (min-width: 1280px) {
  .mwm-card-1__img {
    height: 175px;
  }
  .mwm-card-1__info {
    padding: 2.5rem;
  }
}
@media (min-width: 1600px) {
  .mwm-card-1__img {
    height: 324px;
  }
}

/*	# MWM CARD NEWS
===================================*/
.mwm-card-news {
  background-color: var(--mwm--color--n100);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}
.mwm-card-news::before {
  background-image: url("assets/images/figure/LÍNEA-GRÁFICA_1-Vertical.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: "";
  display: block;
  height: 10.3125rem;
  opacity: 0;
  position: absolute;
  right: -0.5625rem;
  width: 0.5625rem;
}
.mwm-card-news:hover {
  border: 1px solid var(--mwm--color--rojo-csu);
}
.mwm-card-news:hover::before {
  opacity: 1;
}
.mwm-card-news__image-wrapper {
  aspect-ratio: 363/171;
  overflow: hidden;
  width: 100%;
}
.mwm-card-news__image-wrapper img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.mwm-card-news__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.mwm-card-news__category, .mwm-woo-product__category, .mwm-install__subtitle, .mwm-card-recommend__content-categoria {
  color: var(--mwm--color--rojo-csu);
  display: block;
  font-family: var(--mwm--font-family-alt);
  font-size: 1.5rem;
  font-weight: var(--mwm--font-weight--regular);
  margin-bottom: 0;
}
.mwm-card-news__card-title, .mwm-card-recommend__content-title {
  color: #000000;
  font-size: 1.5rem;
  line-height: 1.3;
  margin: 0 0 8px 0;
}
.mwm-card-news__card-title a, .mwm-card-recommend__content-title a {
  color: inherit;
  text-decoration: none;
}
.mwm-card-news__card-excerpt {
  flex-grow: 1;
  margin-bottom: 0.5rem;
}
.mwm-card-news__card-footer {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}
.mwm-card-news__card-footer * {
  color: var(--mwm--color--azulado-csu);
}

/*	# MWM BLOG FEATURED (hero post card)
===================================*/
.mwm-blog-featured {
  border: 1px solid var(--mwm--color--rojo-csu);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  position: relative;
}
.mwm-blog-featured__link {
  inset: 0;
  position: absolute;
  z-index: 0;
}
.mwm-blog-featured__media {
  position: relative;
  z-index: 1;
}
.mwm-blog-featured__img {
  aspect-ratio: 794/492;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.mwm-blog-featured__separator {
  background-color: transparent;
  background-image: url("assets/images/figure/LÍNEA-GRÁFICA_1.svg");
  background-position: center;
  background-repeat: repeat-x;
  background-size: auto 17px;
  height: 17px;
  min-height: 17px;
  position: relative;
  transform: rotate(180deg);
  z-index: 1;
}
.mwm-blog-featured__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}
.mwm-blog-featured__category {
  color: var(--mwm--color--rojo-csu);
  display: block;
  font-family: var(--mwm--font-family-alt);
  font-size: 1.5rem;
  font-weight: var(--mwm--font-weight--regular);
  line-height: normal;
  text-transform: uppercase;
}
.mwm-blog-featured__title {
  margin-bottom: 0;
}
.mwm-blog-featured__title a {
  color: var(--mwm--color--negro-csu);
  text-decoration: none;
}
.mwm-blog-featured__title a:hover {
  color: var(--mwm--color--rojo-csu);
  text-decoration: none;
}
.mwm-blog-featured__excerpt {
  color: var(--mwm--color--negro-csu);
  margin: 0;
}
.mwm-blog-featured__excerpt * {
  margin: 0;
}
.mwm-blog-featured__meta {
  color: var(--mwm--color--azulado-csu);
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}
.mwm-blog-featured__btn {
  margin-top: 0.5rem;
}
.mwm-blog-featured__btn a {
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .mwm-blog-featured {
    grid-template-columns: minmax(0, 1.2fr) 1.0625rem minmax(0, 1fr);
    grid-template-rows: 1fr;
  }
  .mwm-blog-featured__separator {
    background-image: url("assets/images/figure/LÍNEA-GRÁFICA_1-Vertical.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    transform: rotate(0deg);
    width: 100%;
    writing-mode: initial;
  }
  .mwm-blog-featured__content {
    align-self: center;
    justify-content: center;
    padding: 2rem 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-blog-featured__media, .mwm-blog-featured__img {
    min-height: 492px;
  }
}

/*	# MWM CARD RECOMMEND
===================================*/
.mwm-card-recommend {
  display: flex;
  gap: 0.9375rem;
}
.mwm-card-recommend__img {
  height: 5.5625rem;
  max-width: 6.9375rem;
  width: 100%;
}
.mwm-card-recommend__img-image {
  aspect-ratio: 111/89;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.mwm-card-recommend__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mwm-card-recommend__content-title:hover a {
  color: var(--mwm--color--azul-electrico-csu);
  text-decoration: none;
}

/*	# MWM CARD TEAM
===================================*/
.mwm-card-team {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: 0.3s ease all;
  cursor: pointer;
  position: relative;
}
.mwm-card-team * {
  margin: 0;
}
.mwm-card-team__img {
  aspect-ratio: 1/1;
  background-color: var(--mwm--color--azul-electrico-csu);
  border-radius: 4rem 0;
  height: 100%;
  width: 100%;
  position: relative;
}
.mwm-card-team__img img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.mwm-card-team__img::before, .mwm-card-team__img::after {
  content: "";
  position: absolute;
  width: 7.625rem;
  height: 0.75rem;
  background-image: url("assets/images/figure/LÍNEA-GRÁFICA_3.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: 0.3s ease all;
  z-index: 1;
  transform: rotate(270deg);
}
.mwm-card-team__img::before {
  bottom: 0;
  left: 0.375rem;
  transform-origin: bottom left;
}
.mwm-card-team__img::after {
  top: 0;
  right: 0.375rem;
  transform-origin: top right;
}
.mwm-card-team__title {
  color: var(--mwm--color--negro-csu);
  font-family: var(--mwm--font-family-alt);
  font-size: 1.5rem;
  font-weight: var(--mwm--font-weight--regular);
  line-height: normal;
  margin-bottom: 0;
  text-transform: uppercase;
}
.mwm-card-team__roll {
  color: var(--mwm--color--rojo-csu);
}
.mwm-card-team__email {
  color: var(--mwm--color--azul-electrico-csu);
}
@media (min-width: 992px) {
  .mwm-card-team__img {
    border-radius: 9.375rem 0;
  }
}

.mwm-team__item:nth-child(odd) .mwm-card-team:hover .mwm-card-team__img::before {
  opacity: 1;
}
.mwm-team__item:nth-child(odd) .mwm-card-team:hover .mwm-card-team__img::after {
  opacity: 0;
}

.mwm-team__item:nth-child(even) .mwm-card-team:hover .mwm-card-team__img::before {
  opacity: 0;
}
.mwm-team__item:nth-child(even) .mwm-card-team:hover .mwm-card-team__img::after {
  opacity: 1;
}

/*	# MWM SLIDER 1
===================================*/
.mwm-slider-1__info {
  padding-bottom: 2rem;
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .mwm-slider-1__info {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-slider-1__info {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
  }
}
.mwm-slider-1__info {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .mwm-slider-1__info {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-slider-1__info {
    margin-bottom: 2.5rem;
  }
}
.mwm-slider-1__title {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .mwm-slider-1__title {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-slider-1__title {
    margin-bottom: 2.5rem;
  }
}
.mwm-slider-1__desc > *:last-child {
  margin-bottom: 0;
}
.mwm-slider-1__controls {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .mwm-slider-1__controls {
    margin-top: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-slider-1__controls {
    margin-top: 2.5rem;
  }
}
.mwm-slider-1__controls {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}
.mwm-slider-1__arrows {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
.mwm-slider-1__arrow-prev, .mwm-slider-1__arrow-next {
  line-height: 0;
}
.mwm-slider-1__btn {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .mwm-slider-1__btn {
    margin-top: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-slider-1__btn {
    margin-top: 2.5rem;
  }
}
.mwm-slider-1__btn {
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-slider-1__btn {
    padding-bottom: 4rem;
  }
}
@media (min-width: 1280px) {
  .mwm-slider-1__btn {
    padding-bottom: 5rem;
  }
}
.mwm-slider-1__btn {
  text-align: center;
}

/*	# MWM TEXT 1
===================================*/
.mwm-text-1 {
  padding-top: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-text-1 {
    padding-top: 4rem;
  }
}
@media (min-width: 1280px) {
  .mwm-text-1 {
    padding-top: 5rem;
  }
}
.mwm-text-1 {
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .mwm-text-1 {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-text-1 {
    padding-bottom: 2.5rem;
  }
}
.mwm-text-1.has-smaller-margin-bottom {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .mwm-text-1.has-smaller-margin-bottom {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-text-1.has-smaller-margin-bottom {
    margin-bottom: 2.5rem;
  }
}
.mwm-text-1__text {
  display: grid;
  gap: 2rem;
}
.mwm-text-1__desc > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 1280px) {
  .mwm-text-1__text {
    gap: 2.5rem;
  }
}
@media (min-width: 1600px) {
  .mwm-text-1__btn {
    margin-top: 1.5rem;
  }
}

/*	# MWM SECTION CARDS 1
===================================*/
.mwm-section-cards-1__info {
  padding-bottom: 2rem;
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .mwm-section-cards-1__info {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-section-cards-1__info {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
  }
}
.mwm-section-cards-1__info {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .mwm-section-cards-1__info {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-section-cards-1__info {
    margin-bottom: 2.5rem;
  }
}
.mwm-section-cards-1__title {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .mwm-section-cards-1__title {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-section-cards-1__title {
    margin-bottom: 2.5rem;
  }
}
.mwm-section-cards-1__desc > *:last-child {
  margin-bottom: 0;
}
.mwm-section-cards-1__btn {
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-section-cards-1__btn {
    margin-top: 4rem;
  }
}
@media (min-width: 1280px) {
  .mwm-section-cards-1__btn {
    margin-top: 5rem;
  }
}
.mwm-section-cards-1__btn {
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-section-cards-1__btn {
    padding-bottom: 4rem;
  }
}
@media (min-width: 1280px) {
  .mwm-section-cards-1__btn {
    padding-bottom: 5rem;
  }
}
.mwm-section-cards-1__btn {
  text-align: center;
}
.mwm-section-cards-1__list {
  display: grid;
  gap: 2rem 1.25rem;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .mwm-section-cards-1__list {
    grid-template-columns: 1fr 1fr;
  }
  .mwm-section-cards-1.has-last-card-hidden .mwm-section-cards-1__list > *:nth-child(3) {
    display: none;
  }
}
@media (min-width: 1280px) {
  .mwm-section-cards-1__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/*	# MWM FILTER
===================================*/
.mwm-filter ul {
  list-style: none;
  margin: 0;
}
.mwm-filter__center-container {
  display: flex;
  justify-content: center;
}
.mwm-filter__categories {
  align-items: center;
  display: flex;
  gap: 0.625rem;
  overflow: auto;
  padding: 0 var(--mwm--max-padding);
}
.mwm-filter__categories li {
  white-space: nowrap;
}
.mwm-filter .current-menu-item {
  background-color: var(--mwm--color--n200);
  color: var(--mwm--color--n100);
}
.mwm-filter__toggle {
  flex-shrink: 0;
}
.mwm-filter__mobile ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
@media (max-width: 767px) {
  .mwm-filter__categories li:nth-child(n+5):not(.mwm-filter__toggle) {
    display: none;
  }
  .mwm-filter__mobile-wrapper {
    background-color: var(--mwm--color--n100);
    bottom: 0;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    position: fixed;
    right: -400px;
    top: 0;
    transition: transform 0.25s;
    width: 400px;
    z-index: 99999;
  }
  .mwm-filter.is-open .mwm-filter__mobile-wrapper {
    transform: translateX(-100%);
  }
  .mwm-filter__mobile-bg {
    background: transparent;
    content: "";
    display: block;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -100;
  }
  .mwm-filter.is-open .mwm-filter__mobile-bg {
    background: rgba(0, 0, 0, 0.419608);
    transition: background 0.2s;
    z-index: 9999;
  }
}
@media (max-width: 567px) {
  .mwm-filter__mobile-wrapper {
    right: calc(-80% - 1px);
    width: 80%;
  }
}
@media (min-width: 768px) {
  .mwm-filter__mobile {
    display: none;
  }
  .mwm-filter__toggle {
    display: none;
  }
}

/*	# MWM SEPARATOR (standalone y dentro de slider-home)
===================================*/
.mwm-separator {
  margin: 0;
}
.mwm-separator > img, .mwm-separator .mwm-separator__image {
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 1024px) {
  .mwm-separator > img, .mwm-separator .mwm-separator__image {
    max-height: 1.5625rem;
    object-position: bottom;
  }
}

/*	# MWM POPUP
===================================*/
.mwm-popup {
  background: rgba(0, 0, 0, 0.419608);
  bottom: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: var(--wp-admin--admin-bar--height, 0px);
  z-index: 9999;
}
.mwm-popup__wrapper {
  display: flex;
  height: auto;
  justify-content: center;
  overflow: auto;
  padding: var(--mwm--max-padding);
  width: 100%;
}
.mwm-popup__box {
  background-color: var(--mwm--color--white);
  cursor: default;
  margin: auto 0;
  max-width: var(--mwm--max-width-2);
  width: 100%;
}
.mwm-popup.is-newsletter .mwm-popup__box {
  max-width: var(--mwm--max-width-4);
}
.mwm-popup__info {
  background-color: var(--mwm--color--n300);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  position: relative;
}
.mwm-popup__close {
  cursor: pointer;
  position: absolute;
  right: 2.5rem;
}
.mwm-popup__tag {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .mwm-popup__tag {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-popup__tag {
    margin-bottom: 4rem;
  }
}
.mwm-popup__title {
  margin-bottom: 2rem;
}
.mwm-popup.is-newsletter .mwm-popup__title {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .mwm-popup.is-newsletter .mwm-popup__title {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-popup.is-newsletter .mwm-popup__title {
    margin-bottom: 2.5rem;
  }
}
.mwm-popup__content {
  margin: auto 0;
}
.mwm-popup__content > *:last-child {
  margin-bottom: 0;
}
.mwm-popup.is-newsletter .mwm-popup__content {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .mwm-popup.is-newsletter .mwm-popup__content {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-popup.is-newsletter .mwm-popup__content {
    margin-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  .mwm-popup__box {
    display: grid;
    grid-template-columns: 1fr 342px;
  }
}
@media (min-width: 1600px) {
  .mwm-popup__box {
    grid-template-columns: 1fr 480px;
  }
}

/*==================================================================
	# LAYOUT
====================================================================*
/*	# MWM BLOG (index / archive)
===================================*/
.mwm-blog {
  margin: 0;
  padding-top: 4.5rem;
}
@media (min-width: 768px) {
  .mwm-blog {
    padding-top: 4.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-blog {
    padding-top: 4.5rem;
  }
}
.mwm-blog__category-link {
  align-items: center;
  background-color: var(--mwm--color--rojo-csu);
  color: var(--mwm--color--n100);
  display: flex;
  font-weight: var(--mwm--font-weight--bold);
  gap: 0.5rem;
  justify-content: center;
  padding: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}
.mwm-blog__category-link:hover, .mwm-blog__category-link.is-current {
  background-color: var(--mwm--color--azul-electrico-csu);
}
.mwm-blog__header {
  margin-bottom: 3rem;
}
.mwm-blog__header--title {
  margin-bottom: 1.5rem;
}
.mwm-blog__header--desc {
  margin-bottom: 1.5rem;
}
.mwm-blog__header--categories {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: space-between;
  scroll-margin-top: calc(7rem + var(--wp-admin--admin-bar--height, 0px));
}
@media (min-width: 768px) {
  .mwm-blog__header--categories {
    flex-wrap: nowrap;
    gap: 1rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .mwm-blog__header--categories {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start;
  }
}
.mwm-blog__categories-wrap {
  flex: 1 1 auto;
  min-width: 0;
}
@media (max-width: 767px) {
  .mwm-blog__categories-wrap {
    width: 100%;
  }
}
.mwm-blog__categories-swiper {
  margin: 0;
  max-width: 100%;
  width: 100%;
}
.mwm-blog__categories-swiper .swiper-wrapper {
  align-items: center;
}
.mwm-blog__category-slide {
  width: auto;
}
@media (max-width: 767px) {
  .mwm-blog__categories--chips {
    display: none;
  }
}
.mwm-blog__card-feacture {
  margin-bottom: 2.5rem;
}
.mwm-blog__vector-separator {
  height: 20px;
  margin-top: 4.5rem;
}
.mwm-blog__vector-separator > img, .mwm-blog__vector-separator .mwm-separator__vector-image {
  height: 100%;
  transform: rotate(180deg);
}
.mwm-blog__card-list {
  margin: 0;
  padding-top: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-blog__card-list {
    padding-top: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-blog__card-list {
    padding-top: 2.5rem;
  }
}
.mwm-blog__card-list {
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-blog__card-list {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-blog__card-list {
    padding-bottom: 2.25rem;
  }
}
.mwm-blog__card-list-inner {
  display: grid;
  gap: 2.0625rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 992px) {
  .mwm-blog__header--desc {
    max-width: 32.125rem;
  }
  .mwm-blog__card-list-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .mwm-blog__header--categories {
    min-width: 0;
  }
  .mwm-blog__card-list-inner {
    grid-template-columns: repeat(3, 1fr);
  }
  .mwm-blog__vector-separator {
    height: auto;
    margin-top: 2rem;
  }
}

/* Archive listing: select movil (tienda Woo + blog) */
.mwm-woo__categories-select-wrap,
.mwm-blog__categories-select-wrap {
  display: none;
}
@media (max-width: 767px) {
  .mwm-woo__categories-select-wrap,
  .mwm-blog__categories-select-wrap {
    display: block;
    width: 100%;
  }
}

.mwm-woo__categories-select,
.mwm-blog__categories-select {
  appearance: none;
  background-color: var(--mwm--color--marfil-csu);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23252425' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 0.75rem 0.5rem;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: var(--mwm--color--negro-csu);
  cursor: pointer;
  font-family: var(--mwm--font-family);
  font-size: 1rem;
  font-weight: var(--mwm--font-weight--regular);
  line-height: 1.25;
  max-width: 100%;
  -moz-appearance: none;
  padding: 0.75rem 2.5rem 0.75rem 0.75rem;
  -webkit-appearance: none;
  width: 100%;
}

.mwm-woo__search,
.mwm-blog__search {
  flex: 0 0 auto;
  max-width: 12.8125rem;
  min-width: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .mwm-woo__search,
  .mwm-blog__search {
    align-self: stretch;
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .mwm-woo__search .search-form,
  .mwm-blog__search .search-form {
    max-width: 100%;
    width: 100%;
  }
}
.mwm-woo__search .search-form form,
.mwm-blog__search .search-form form {
  align-items: center;
  background-color: var(--mwm--color--marfil-csu);
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  padding: 0.75rem;
  padding-left: 2.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .mwm-woo__search .search-form form,
  .mwm-blog__search .search-form form {
    max-width: 12.8125rem;
  }
}
@media (max-width: 767px) {
  .mwm-woo__search .search-form form,
  .mwm-blog__search .search-form form {
    max-width: 100%;
    width: 100%;
  }
}
.mwm-woo__search input,
.mwm-blog__search input {
  background-color: transparent;
  border: none;
  box-sizing: border-box;
  color: var(--mwm--color--negro-csu);
  flex: 1 1 auto;
  font-family: var(--mwm--font-family);
  font-size: 1rem;
  font-weight: var(--mwm--font-weight--regular);
  line-height: 1.25;
  min-height: 1.25rem;
  min-width: 0;
  padding: 0.25rem 0.125rem;
}
.mwm-woo__search input::placeholder,
.mwm-blog__search input::placeholder {
  color: var(--mwm--color--negro-csu);
  opacity: 0.6;
}
.mwm-woo__search button,
.mwm-blog__search button {
  align-items: center;
  align-self: center;
  background: none;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  line-height: 0;
  margin: 0;
  min-height: 1.25rem;
  min-width: 1.25rem;
  opacity: 0.6;
  padding: 0;
}
.mwm-woo__search svg,
.mwm-blog__search svg {
  display: block;
  height: 1.25rem;
  width: 1.25rem;
}
.mwm-woo__search svg path,
.mwm-blog__search svg path {
  fill: var(--mwm--color--negro-csu);
}

/*	# MWM BLOG PAGINATION
===================================*/
.mwm-blog-pagination {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .mwm-blog-pagination {
    margin-top: 1rem;
  }
}
@media (min-width: 1280px) {
  .mwm-blog-pagination {
    margin-top: 2.5rem;
  }
}
.mwm-blog-pagination {
  text-align: center;
}
.mwm-blog-pagination__count {
  color: var(--mwm--color--azulado-csu);
  margin: 0 0 1.5rem;
}
.mwm-blog-pagination__nav {
  align-items: center;
  display: inline-flex;
  gap: 1rem;
}
.mwm-blog-pagination__label {
  color: var(--mwm--color--negro-csu);
}
.mwm-blog-pagination__list {
  align-items: center;
  display: inline-flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mwm-blog-pagination__item {
  display: inline-block;
}
.mwm-blog-pagination__item a,
.mwm-blog-pagination__item span.page-numbers {
  align-items: center;
  border-radius: 0.25rem;
  box-sizing: border-box;
  color: var(--mwm--color--azul-electrico-csu);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.5rem;
  text-decoration: none;
  width: 2.3125rem;
}
.mwm-blog-pagination__item a:hover,
.mwm-blog-pagination__item span.page-numbers:hover {
  color: var(--mwm--color--azul-electrico-csu);
}
.mwm-blog-pagination__item .current,
.mwm-blog-pagination__item span.current {
  background: var(--mwm--color--azul-electrico-csu);
  color: var(--mwm--color--n100) !important;
}

/*	# TPL FRONT-PAGE
===================================*/
/*	# TPL SINGLE (single post – diseño Figma)
===================================*/
.mwm-single {
  margin: 0;
}
.mwm-single__header {
  padding-bottom: 2rem;
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .mwm-single__header {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
}
@media (min-width: 1280px) {
  .mwm-single__header {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
}
.mwm-single__header {
  margin: 0;
}
.mwm-single__header-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 57.125rem;
}
.mwm-single__breadcrumb {
  color: var(--mwm--color--negro-csu);
  margin-bottom: 2.5rem;
}
.mwm-single__breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.mwm-single__breadcrumb a:hover {
  text-decoration: underline;
}
.mwm-single__breadcrumb strong {
  color: var(--mwm--color--azul-electrico-csu);
}
.mwm-single__category-tag {
  background-color: var(--mwm--color--rojo-csu);
  color: var(--mwm--color--n100);
  display: inline-block;
  font-weight: var(--mwm--font-weight--black);
  padding: 0.75rem;
}
.mwm-single__category-tag span {
  display: inline-block;
}
.mwm-single__title {
  color: var(--mwm--color--azul-electrico-csu);
  margin: 0;
  text-align: center;
}
.mwm-single__meta {
  color: var(--mwm--color--azulado-csu);
  gap: 1rem;
}
.mwm-single__hero {
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-single__hero {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-single__hero {
    margin-bottom: 3.5rem;
  }
}
.mwm-single__hero {
  overflow: hidden;
}
.mwm-single__hero-img {
  aspect-ratio: 1312/355;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}
.mwm-single__layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.mwm-single__content {
  order: 2;
}
.mwm-single__sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  order: 1;
}
.mwm-single__body {
  margin-bottom: 2rem;
}
.mwm-single__share {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.mwm-single__share-title {
  font-weight: var(--mwm--font-weight--bold);
  margin: 0;
}
.mwm-single__share-links {
  align-items: center;
  display: flex;
  gap: 1.5rem;
}
.mwm-single__share-icon {
  align-items: center;
  color: var(--mwm--color--rojo-csu);
  display: inline-flex;
  font-size: 1rem;
  height: 1.5rem;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 1.5rem;
}
.mwm-single__share-icon:hover {
  opacity: 0.8;
  transform: scale(1.2);
}
.mwm-single__share-icon > svg {
  height: 100%;
  width: 100%;
}
.mwm-single__toc {
  background-color: rgba(150, 171, 251, 0.3);
  padding: 1.5rem;
}
.mwm-single__toc-title {
  color: var(--mwm--color--azul-electrico-csu);
  font-weight: var(--mwm--font-weight--bold);
  margin-bottom: 0.5rem;
}
.mwm-single__toc-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mwm-single__toc-link {
  color: var(--mwm--color--azul-electrico-csu);
  font-size: 1rem;
  text-decoration: none;
}
.mwm-single__toc-link:hover {
  text-decoration: underline;
}
.mwm-single__toc-link.is-current {
  color: var(--mwm--color--rojo-csu);
}
.mwm-single__recommended {
  display: none;
}
.mwm-single__recommended-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mwm-single__recommended-title {
  color: var(--mwm--color--azul-electrico-csu);
  margin-bottom: 1.75rem;
}
.mwm-single__cta {
  background-color: var(--mwm--color--n100);
  border: 1px solid var(--mwm--color--azul-electrico-csu);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1.5rem;
  text-align: center;
}
.mwm-single__cta-title {
  color: var(--mwm--color--rojo-csu);
  font-size: 1.25rem;
  font-weight: var(--mwm--font-weight--bold);
  margin: 0;
}
.mwm-single__cta-text {
  color: var(--mwm--color--negro-csu);
  margin: 0;
}
.mwm-single__related-section {
  margin: 0;
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-single__related-section {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-single__related-section {
    padding-bottom: 1.5625rem;
    padding-top: 1.5625rem;
  }
}
.mwm-single__related-section-title {
  margin-bottom: 1.5rem;
}
.mwm-single__related-separator {
  margin: 0 0 1.5rem;
}
.mwm-single__related-separator img {
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}
.mwm-single__related-separator {
  height: 20px;
  margin-top: 4.5rem;
}
.mwm-single__related-separator > img, .mwm-single__related-separator .mwm-separator__image {
  height: 100%;
  transform: rotate(180deg);
}
.mwm-single__related-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .mwm-single__related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .mwm-single__header-inner {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .mwm-single__related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .mwm-single__layout {
    gap: 5.1875rem;
    grid-template-columns: 1fr 32.25%;
  }
  .mwm-single__content {
    order: 1;
  }
  .mwm-single__sidebar {
    order: 2;
  }
  .mwm-single__related {
    grid-template-columns: 1fr;
  }
  .mwm-single__breadcrumb {
    margin-bottom: 2rem;
  }
  .mwm-single__meta {
    gap: 6.25rem;
  }
  .mwm-single__related-separator {
    height: auto;
    margin-top: 2rem;
  }
  .mwm-single__recommended {
    display: block;
  }
}

/*	# MWM SLIDER HOME
===================================*/
.mwm-slider-home {
  margin: 0;
  padding-top: 3.5rem;
}
@media (min-width: 768px) {
  .mwm-slider-home {
    padding-top: 4rem;
  }
}
@media (min-width: 1280px) {
  .mwm-slider-home {
    padding-top: 4.5rem;
  }
}
.mwm-slider-home {
  position: relative;
}
.mwm-slider-home__wrapper {
  padding-bottom: 5.5rem;
}
@media (min-width: 768px) {
  .mwm-slider-home__wrapper {
    padding-bottom: 4rem;
  }
}
@media (min-width: 1280px) {
  .mwm-slider-home__wrapper {
    padding-bottom: 4.0231rem;
  }
}
.mwm-slider-home__title {
  margin-bottom: 1rem;
}
.mwm-slider-home__desc {
  margin-bottom: 24px;
  width: 100%;
}
.mwm-slider-home__slide {
  display: flex;
  flex-direction: column-reverse;
  gap: 2.4375rem;
}
.mwm-slider-home__slide-vector {
  display: flex;
  justify-content: center;
}
.mwm-slider-home__buttons {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}
.mwm-slider-home__buttons a {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
}
.mwm-slider-home__separator {
  /* Aquí ocurre la magia */
  background-image: url("/wp-content/themes/csuniformes/assets/images/figure/separate.svg");
  background-position: center;
  background-repeat: repeat-x; /* Se repite solo horizontalmente */
  background-size: contain; /* O puedes poner un ancho fijo como 100px */
  display: block;
  height: 1.25rem; /* Ajusta la altura según tu diseño */
  width: 100%; /* Que ocupe todo el ancho */
}
@media (max-width: 1023px) {
  .mwm-slider-home .swiper-pagination {
    margin-top: 2rem;
    position: static;
  }
  .mwm-slider-home__wrapper {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .mwm-slider-home__slide {
    align-items: center;
    flex-direction: row;
    gap: 2.6875rem;
  }
  .mwm-slider-home__slide > * {
    width: 53%;
  }
  .mwm-slider-home__title {
    margin-bottom: 1.5rem;
  }
  .mwm-slider-home .swiper-pagination {
    bottom: auto;
    display: block;
    display: flex;
    flex-direction: column;
    gap: 16px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: fit-content;
  }
  .mwm-slider-home__slide {
    justify-content: space-between;
  }
  .mwm-slider-home__slide-content {
    max-width: 574px;
  }
  .mwm-slider-home__buttons {
    flex-direction: row;
    gap: 1rem;
  }
  .mwm-slider-home__buttons a {
    flex: none;
  }
  .mwm-slider-home__separator img {
    max-height: 1.5625rem;
    object-position: bottom;
  }
}
@media (min-width: 1430px) {
  .mwm-slider-home__wrapper {
    position: relative;
  }
  .mwm-slider-home .swiper-pagination {
    left: -3rem;
  }
}

/*	# MWM SOLUCIONS HOME
=============================================== */
.mwm-soluctions-home {
  margin: 0;
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-soluctions-home {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}
@media (min-width: 1280px) {
  .mwm-soluctions-home {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}
.mwm-soluctions-home__header {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2rem;
}
.mwm-soluctions-home__wrapper {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
.mwm-soluctions-home__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mwm-soluctions-home__title span {
  display: inline-block;
}
.mwm-soluctions-home__block-title {
  margin-bottom: 0.5rem;
}
.mwm-soluctions-home__block-text {
  margin: 0;
}
.mwm-soluctions-home__media {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mwm-soluctions-home__images {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
  position: relative;
}
.mwm-soluctions-home__stamp {
  left: 0;
  object-fit: contain;
  position: absolute;
  top: 0.75rem;
  width: calc(22% - 1rem);
}
.mwm-soluctions-home__image.front {
  aspect-ratio: 0.68;
  border-radius: 0 0 0 4rem;
  bottom: 0;
  left: 0;
  margin-bottom: -20px;
  object-fit: cover;
  position: absolute;
  width: 48%;
  z-index: 2;
}
.mwm-soluctions-home__image.clipped {
  aspect-ratio: 0.86;
  border-radius: 4rem 0 4rem 0;
  margin-left: auto;
  object-fit: cover;
  width: 78%;
}
@media (min-width: 1024px) {
  .mwm-soluctions-home__header {
    flex-direction: row;
    gap: 1.75rem;
    justify-content: space-between;
    margin-bottom: 4rem;
  }
  .mwm-soluctions-home__content {
    max-width: 29.75rem;
  }
  .mwm-soluctions-home__wrapper {
    gap: 4rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .mwm-soluctions-home__images {
    position: sticky;
    top: calc(var(--wp-admin--admin-bar--height, 0px) + 9rem);
  }
  .mwm-soluctions-home__stamp {
    top: 0;
    width: calc(22% - 0.8rem);
  }
  .mwm-soluctions-home__top-text {
    max-width: 33.875rem;
    text-align: end;
  }
  .mwm-soluctions-home__media {
    gap: 4rem;
  }
  .mwm-soluctions-home__image.front {
    border-radius: 0 0 0 120px;
    height: 25.625rem;
    margin-bottom: -2.25rem;
    width: 45%;
  }
  .mwm-soluctions-home__image.clipped {
    border-radius: 120px 0 120px 0;
    height: 31.8125rem;
  }
  .mwm-soluctions-home__block-title {
    margin-bottom: 1rem;
  }
}

/*	# MWM TEXT ANIMATION
===================================*/
.mwm-text-animation {
  align-items: center;
  align-items: center;
  background-color: var(--mwm--color--n100);
  box-sizing: border-box;
  display: flex;
  display: flex;
  flex-direction: column;
  gap: 3.9375rem;
  justify-content: center;
  margin: 0;
  min-height: 100vh;
  padding: 2rem;
  pointer-events: none;
  position: relative;
  z-index: 10;
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-text-animation {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}
@media (min-width: 1280px) {
  .mwm-text-animation {
    padding-bottom: 5rem;
    padding-top: 5rem;
  }
}
.mwm-text-animation__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 3.9375rem;
  justify-content: center;
  max-width: 90vw;
  position: relative;
  width: fit-content;
}
.mwm-text-animation__text-left {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.mwm-text-animation__text-left img {
  display: block;
  height: auto;
  max-height: 50vh;
  max-width: 100%;
  object-fit: contain;
}
.mwm-text-animation__text-right {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.mwm-text-animation__text-right img {
  display: block;
  height: auto;
  max-height: 50vh;
  max-width: 100%;
  object-fit: contain;
}

/*	# MWM HOME WORK
=============================================== */
.mwm-home-work {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0;
  min-height: 100vh;
  width: 100%;
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-home-work {
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
}
@media (min-width: 1280px) {
  .mwm-home-work {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}
@media (max-width: 1023px) {
  .home .mwm-home-work {
    margin-top: 40vh;
  }
}
.mwm-home-work__title {
  max-width: 15.5625rem;
}
.mwm-home-work__grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  margin-top: 2.75rem;
}
.mwm-home-work__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mwm-home-work__content > div > *:last-child {
  margin: 0;
}
.mwm-home-work__buttons {
  display: flex;
  gap: 1rem;
}
.mwm-home-work__media {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mwm-home-work__image-wrapper {
  position: relative;
  width: 100%;
}
.mwm-home-work__image-wrapper::after {
  aspect-ratio: 3.1;
  background-image: url("assets/images/background/PATTERN-ESPÍGA.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 250% auto;
  bottom: -1.5rem;
  content: "";
  left: 0;
  opacity: 0.6;
  position: absolute;
  width: 70%;
  z-index: 1;
}
.mwm-home-work__image-wrapper img {
  aspect-ratio: 2.3;
  border-radius: 0;
  display: block;
  float: right;
  height: auto;
  object-fit: cover;
  position: relative;
  width: 90%;
  z-index: 2;
}
.mwm-home-work__stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.mwm-home-work__stats .stat {
  display: flex;
  flex-direction: column;
}
.mwm-home-work__stats .stat strong {
  color: var(--mwm--color--rojo-csu);
  font-family: var(--mwm--font-family-alt);
  font-size: 4rem;
  font-weight: var(--mwm--font-weight--regular);
  line-height: 1;
}
.mwm-home-work__stats .stat span {
  color: var(--mwm--color--negro-csu);
}
@media (min-width: 768px) {
  .mwm-home-work__title {
    max-width: unset;
  }
  .mwm-home-work__stats {
    flex-direction: row;
    gap: 2rem;
    justify-content: end;
    width: 100%;
  }
  .mwm-home-work__stats .stat strong {
    font-size: 6rem;
  }
  .mwm-home-work__buttons {
    margin-top: 0.5rem;
  }
}
@media (min-width: 1024px) {
  .mwm-home-work__title {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .mwm-home-work__grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3rem;
  }
  .mwm-home-work__content {
    max-width: 35.4375rem;
  }
  .mwm-home-work__image-wrapper::after {
    bottom: -2.5rem;
    width: 80%;
  }
  .mwm-home-work__image-wrapper img {
    height: 15.625rem;
    width: 90%;
  }
  .mwm-home-work__stats {
    margin-top: 2.5rem;
  }
}

/*	# MWM CTA
=============================================== */
.mwm-cta {
  background-color: var(--mwm--color--azul-electrico-csu);
  margin: 0;
  padding: 0;
}
.mwm-cta__inner {
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mwm-cta__image {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
}
.mwm-cta__image img {
  display: block;
  height: auto;
  max-width: 100%;
}
.mwm-cta__content {
  color: var(--mwm--color--marfil-csu);
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding-top: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-cta__content {
    padding-top: 4rem;
  }
}
@media (min-width: 1280px) {
  .mwm-cta__content {
    padding-top: 5rem;
  }
}
.mwm-cta__content {
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .mwm-cta__content {
    padding-bottom: 4rem;
  }
}
@media (min-width: 1280px) {
  .mwm-cta__content {
    padding-bottom: 5rem;
  }
}
.mwm-cta__title {
  color: var(--mwm--color--marfil-csu);
  margin-bottom: 1.75rem;
  position: relative;
}
.mwm-cta__title span {
  display: inline-block;
}
.mwm-cta__text > * {
  margin-bottom: 1rem;
}
.mwm-cta__button {
  background-color: var(--mwm--color--marfil-csu);
  color: var(--mwm--color--azul-electrico-csu) !important;
  width: fit-content;
  border-color: var(--mwm--color--marfil-csu);
}
.mwm-cta__button:hover {
  color: var(--mwm--color--n100) !important;
}
@media (min-width: 1024px) {
  .mwm-cta__inner {
    flex-direction: row;
  }
  .mwm-cta__inner > * {
    width: 50%;
  }
  .mwm-cta__text {
    margin-bottom: 0;
    max-width: 31.25rem;
  }
  .mwm-cta__content {
    gap: 1.5rem;
  }
  .mwm-cta__title {
    margin-bottom: 0;
  }
  .mwm-cta__image {
    display: flex;
    justify-content: center;
  }
}

/*	# MWM NEWS
=============================================== */
.mwm-news {
  margin: 0;
  padding-top: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-news {
    padding-top: 3.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-news {
    padding-top: 4rem;
  }
}
.mwm-news {
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-news {
    padding-bottom: 3.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-news {
    padding-bottom: 6.0625rem;
  }
}
.mwm-news__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.mwm-news__title {
  margin: 0 0 0.625rem 0;
}
.mwm-news__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  position: relative;
}
.mwm-news .mwm-card-news {
  border-color: var(--mwm--color--rojo-csu);
}
.mwm-news .mwm-card-news::before {
  opacity: 1;
}
@media (min-width: 1024px) {
  .mwm-news__header {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 4.625rem;
  }
  .mwm-news__grid {
    gap: 2.4375rem;
    grid-template-columns: repeat(3, 1fr);
  }
  .mwm-news__grid::before {
    background-image: url("assets/images/background/PATTERN-UNE-PUNTOS.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 300%;
    content: "";
    display: block;
    height: calc(100% + 4.125rem);
    left: 50%;
    opacity: 0.4;
    position: absolute;
    top: -2.0625rem;
    transform: translateX(-50%);
    width: 80%;
    z-index: -1;
  }
  .mwm-news__header-text {
    max-width: 25rem;
  }
}

/*	# MWM TESTIMONIALS
=============================================== */
.mwm-testimonials {
  margin: 0;
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-testimonials {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-testimonials {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}
.mwm-testimonials__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  padding-right: 2.1875rem;
}
.mwm-testimonials__item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mwm-testimonials__quote {
  background-color: transparent;
  flex-grow: 1;
  font-family: var(--mwm--font-family);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: var(--mwm--font-weight--regular);
  letter-spacing: 0%;
  line-height: normal;
  margin: 0 0 1rem 0;
  padding: 0;
}
.mwm-testimonials__footer {
  align-items: center;
  display: flex;
  gap: 15px;
}
.mwm-testimonials__avatar {
  background-color: #e0e0e0;
  border-radius: 50%;
  flex-shrink: 0;
  height: 45px;
  overflow: hidden;
  width: 45px;
}
.mwm-testimonials__img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.mwm-testimonials__info {
  display: flex;
  flex-direction: column;
}
.mwm-testimonials__name {
  display: block;
  font-family: var(--mwm--font-family-alt);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: bold;
  font-weight: var(--mwm--font-weight--regular);
  letter-spacing: 0%;
  line-height: 1;
  text-transform: uppercase;
}
.mwm-testimonials__role {
  color: var(--mwm--color--rojo-csu);
  display: block;
}
@media (min-width: 768px) {
  .mwm-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .mwm-testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .mwm-testimonials__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*	# MWM SPECIALTIES
=============================================== */
.mwm-specialties {
  margin: 0;
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-specialties {
    padding-bottom: 3.5rem;
    padding-top: 3.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-specialties {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}
.mwm-specialties {
  overflow-x: hidden;
}
.mwm-specialties__header {
  margin-bottom: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.mwm-specialties__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.mwm-specialties__item {
  align-items: center;
  color: var(--mwm--color--rojo-csu);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s ease;
}
.mwm-specialties__item--active .mwm-specialties__label {
  color: var(--mwm--color--azul-electrico-csu);
}
.mwm-specialties__item--active .mwm-specialties__icon-box > svg path, .mwm-specialties__item--active .mwm-icons-specialistas__icon-box > svg path {
  fill: var(--mwm--color--azul-electrico-csu);
  stroke: var(--mwm--color--azul-electrico-csu);
}
.mwm-specialties__item--active .mwm-specialties__icon-box > svg g rect, .mwm-specialties__item--active .mwm-icons-specialistas__icon-box > svg g rect, .mwm-specialties__item--active polygon {
  fill: var(--mwm--color--azul-electrico-csu);
  stroke: var(--mwm--color--azul-electrico-csu);
}
.mwm-specialties__item:nth-child(6n+1) .mwm-specialties__icon-box, .mwm-specialties__item:nth-child(6n+1) .mwm-icons-specialistas__icon-box {
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
}
.mwm-specialties__item:nth-child(6n+2) .mwm-specialties__icon-box, .mwm-specialties__item:nth-child(6n+2) .mwm-icons-specialistas__icon-box {
  border-bottom-left-radius: 50%;
  border-top-left-radius: 50%;
}
.mwm-specialties__item:nth-child(6n+3) .mwm-specialties__icon-box, .mwm-specialties__item:nth-child(6n+3) .mwm-icons-specialistas__icon-box {
  border-bottom-right-radius: 50%;
  border-top-left-radius: 50%;
}
.mwm-specialties__item:nth-child(6n+4) .mwm-specialties__icon-box, .mwm-specialties__item:nth-child(6n+4) .mwm-icons-specialistas__icon-box {
  border-bottom-left-radius: 50%;
  border-top-left-radius: 50%;
}
.mwm-specialties__item:nth-child(6n+5) .mwm-specialties__icon-box, .mwm-specialties__item:nth-child(6n+5) .mwm-icons-specialistas__icon-box {
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
}
.mwm-specialties__item:nth-child(6n+6) .mwm-specialties__icon-box, .mwm-specialties__item:nth-child(6n+6) .mwm-icons-specialistas__icon-box {
  border-bottom-right-radius: 50%;
  border-top-left-radius: 50%;
}
.mwm-specialties__icon-box, .mwm-icons-specialistas__icon-box {
  align-items: center;
  aspect-ratio: 1/1;
  background-color: var(--mwm--color--n100);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 500%;
  border: 1px solid var(--mwm--color--rojo-csu);
  display: flex;
  height: 155px;
  justify-content: center;
  margin-bottom: 0;
  transform: scale(0.7);
  width: 155px;
}
.mwm-specialties__label {
  display: block;
  font-family: var(--mwm--font-family-alt);
  font-size: 1.5rem;
  font-weight: var(--mwm--font-weight--regular);
  line-height: 1;
  text-align: center;
}
.mwm-specialties__nav {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.mwm-specialties__arrow {
  background: transparent;
  border: none;
  padding: 0;
}
.mwm-specialties__arrow--next {
  transform: rotate(180deg);
}
.mwm-specialties__arrow:hover {
  background: transparent;
}
.mwm-specialties .swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.mwm-specialties__detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mwm-specialties__detail-image-container {
  flex: 1;
  position: relative;
  width: 100%;
}
.mwm-specialties__detail-title--mobile {
  display: block;
  margin-bottom: 0.5rem;
}
.mwm-specialties__detail-title--desktop {
  display: none;
}
.mwm-specialties__image-wrapper {
  max-width: 50%;
  position: relative;
  width: 100%;
  z-index: 2;
}
.mwm-specialties__image-wrapper img {
  aspect-ratio: 249/352;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.mwm-specialties__image-wrapper::before {
  background-image: url("assets/images/background/PATTERN-ESPÍGA.svg");
  background-size: 350%;
  content: "";
  height: 9rem;
  left: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-45%);
  width: 100%;
  z-index: -1;
}
.mwm-specialties__detail-content {
  flex: 1;
}
.mwm-specialties__detail-text {
  margin: 0 0 1rem 0;
}
.mwm-specialties__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mwm-specialties__btn {
  width: fit-content;
}
@media (min-width: 768px) {
  .mwm-specialties__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .mwm-specialties__actions {
    flex-direction: row;
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .mwm-specialties__header {
    margin-bottom: 3.25rem;
    flex-direction: row;
    gap: 1.75rem;
    justify-content: space-between;
  }
  .mwm-specialties__top-text {
    max-width: 33.875rem;
    text-align: end;
  }
  .mwm-specialties__wrapper {
    display: flex;
    flex-direction: row;
  }
  .mwm-specialties__wrapper .swiper {
    width: calc(100% - 88px);
  }
  .mwm-specialties__wrapper .mwm-specialties__nav {
    gap: 0.5rem;
    margin: 0;
    order: 1;
  }
  .mwm-specialties__image-wrapper {
    max-width: 15.5625rem;
  }
  .mwm-specialties__image-wrapper::before {
    left: 23.6%;
    width: calc(100% + 8.1875rem);
  }
  .mwm-specialties__grid {
    gap: 4.375rem;
    grid-template-columns: repeat(6, 1fr);
    margin-bottom: 3rem;
  }
  .mwm-specialties__nav {
    justify-content: flex-end;
  }
  .mwm-specialties__detail {
    flex-direction: row;
    gap: 1.5rem;
  }
  .mwm-specialties__detail-image-container {
    flex: unset;
    width: unset;
  }
  .mwm-specialties__detail-content {
    display: flex;
    flex-direction: column;
    gap: 1.8125rem;
    margin-top: 1rem;
    max-width: 42.5rem;
    position: relative;
    z-index: 2;
  }
  .mwm-specialties__detail-title--mobile {
    display: none;
  }
  .mwm-specialties__detail-title--desktop {
    display: block;
  }
  .mwm-specialties__detail-content-inner {
    padding-left: 27%;
  }
  .mwm-specialties__icon-box, .mwm-icons-specialistas__icon-box {
    margin-bottom: 1rem;
    transform: scale(1);
  }
}

/*	# MWM ICONS SPECIALISTAS (Especialización)
=============================================== */
.mwm-icons-specialistas {
  margin: 0;
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-icons-specialistas {
    padding-bottom: 3.5rem;
    padding-top: 3.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-icons-specialistas {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}
.mwm-icons-specialistas__header {
  margin-bottom: 2rem;
  text-align: center;
}
.mwm-icons-specialistas__title {
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-icons-specialistas__title {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-icons-specialistas__title {
    margin-bottom: 3rem;
  }
}
.mwm-icons-specialistas__list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.mwm-icons-specialistas__item {
  align-items: center;
  color: var(--mwm--color--rojo-csu);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
  width: 9.6875rem;
}
.mwm-icons-specialistas__item:hover .mwm-icons-specialistas__label {
  color: var(--mwm--color--azul-electrico-csu);
}
.mwm-icons-specialistas__item:hover .mwm-icons-specialistas__icon-box > svg path,
.mwm-icons-specialistas__item:hover .mwm-icons-specialistas__icon-box .st0 {
  fill: var(--mwm--color--azul-electrico-csu);
  stroke: var(--mwm--color--azul-electrico-csu);
}
.mwm-icons-specialistas__item:nth-child(3n+1) .mwm-icons-specialistas__icon-box {
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
}
.mwm-icons-specialistas__item:nth-child(3n+2) .mwm-icons-specialistas__icon-box {
  border-bottom-left-radius: 50%;
  border-top-left-radius: 50%;
}
.mwm-icons-specialistas__item:nth-child(3n+3) .mwm-icons-specialistas__icon-box {
  border-bottom-right-radius: 50%;
  border-top-left-radius: 50%;
}
.mwm-icons-specialistas__label {
  display: block;
  font-family: var(--mwm--font-family-alt);
  font-size: 1.5rem;
  font-weight: var(--mwm--font-weight--regular);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .mwm-icons-specialistas__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .mwm-icons-specialistas__header {
    margin-bottom: 2.75rem;
  }
  .mwm-icons-specialistas__list {
    gap: 4.375rem;
    grid-template-columns: repeat(6, 1fr);
  }
}

/*	# MWM CONTACT
=============================================== */
.mwm-contact {
  padding-top: 4.5rem;
}
@media (min-width: 768px) {
  .mwm-contact {
    padding-top: 4.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-contact {
    padding-top: 4.5rem;
  }
}
.mwm-contact {
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-contact {
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
}
@media (min-width: 1280px) {
  .mwm-contact {
    padding-bottom: 3.6875rem;
    padding-top: 3.6875rem;
  }
}
.mwm-contact {
  margin: 0;
}
.mwm-contact__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.mwm-contact__info {
  flex: 1;
}
.mwm-contact__title {
  margin-bottom: 1rem;
}
.mwm-contact__form-subtitle {
  margin-bottom: 1.5rem;
}
.mwm-contact__description {
  margin-bottom: 2rem;
}
.mwm-contact__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mwm-contact__item {
  color: var(--mwm--color--rojo-csu);
  display: grid;
  font-family: var(--mwm--font-family-alt);
  font-size: 1.5rem;
  font-weight: var(--mwm--font-weight--regular);
  gap: 0.5rem;
  grid-template-columns: 24px 1fr;
  line-height: 1;
  position: relative;
}
.mwm-contact__item a {
  color: inherit;
  text-decoration: none;
}
.mwm-contact__icon {
  align-items: center;
  display: flex;
  height: 24px;
  justify-content: center;
  width: 24px;
}
.mwm-contact__form-area {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.mwm-contact__placeholder-box {
  width: 100%;
}
.mwm-contact__placeholder-box .wpcf7 {
  padding: 0;
}
.mwm-contact__map iframe, .mwm-contact img {
  height: 6.5625rem;
  overflow: hidden;
  width: 100%;
}
.mwm-contact__map-img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 1024px) {
  .mwm-contact__wrapper {
    align-items: flex-start;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
  .mwm-contact__info {
    max-width: 32.125rem;
  }
  .mwm-contact__form-area {
    max-width: 41rem;
  }
  .mwm-contact__form-subtitle {
    margin-bottom: 1.875rem;
  }
  .mwm-contact__map iframe, .mwm-contact img {
    height: 25rem;
    margin-top: 3.5rem;
  }
}

/*	# MWM BANNER V2
=============================================== */
.mwm-banner-v2 {
  padding-top: 3.5rem;
}
@media (min-width: 768px) {
  .mwm-banner-v2 {
    padding-top: 3.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-banner-v2 {
    padding-top: 3.8125rem;
  }
}
.mwm-banner-v2 {
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-banner-v2 {
    padding-bottom: 3.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-banner-v2 {
    padding-bottom: 6.0625rem;
  }
}
.mwm-banner-v2 {
  margin: 0;
}
.mwm-banner-v2__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}
.mwm-banner-v2__content {
  flex: 1;
  max-width: 100%;
  padding-right: 0;
}
.mwm-banner-v2__category {
  color: var(--mwm--color--rojo-csu);
  display: block;
  font-family: var(--mwm--font-family-alt);
  font-size: 1.5rem;
  font-weight: var(--mwm--font-weight--regular);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.mwm-banner-v2__title {
  margin-bottom: 1.5rem;
}
.mwm-banner-v2__description {
  margin-bottom: 1.5rem;
}
.mwm-banner-v2__description > *:first-child {
  margin-top: 0;
}
.mwm-banner-v2__description > *:last-child {
  margin-bottom: 0;
}
.mwm-banner-v2__media {
  display: flex;
  flex: 1;
  justify-content: center;
  position: relative;
}
.mwm-banner-v2__image-wrapper {
  position: relative;
  width: 100%;
}
.mwm-banner-v2__image-wrapper::before {
  aspect-ratio: 443/270;
  background-image: url("assets/images/background/PATTERN-ESPÍGA.svg");
  background-size: 350%;
  content: "";
  height: auto;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
  z-index: -1;
}
.mwm-banner-v2__image-wrapper img {
  aspect-ratio: 0.7;
  display: block;
  float: right;
  height: auto;
  max-width: 55%;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 992px) {
  .mwm-banner-v2__wrapper {
    align-items: center;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
  }
  .mwm-banner-v2__content {
    padding-right: 1.5rem;
  }
  .mwm-banner-v2__image-wrapper::before {
    left: 3.25rem;
    max-height: 12.9375rem;
  }
  .mwm-banner-v2__actions {
    margin-top: 0.375rem;
  }
}
@media (min-width: 1024px) {
  .mwm-banner-v2__content {
    max-width: 36.375rem;
  }
}

/*	# MWM BANNER V3
=============================================== */
.mwm-banner-v3 {
  margin: 0;
  padding-top: 4.5rem;
}
@media (min-width: 768px) {
  .mwm-banner-v3 {
    padding-top: 4.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-banner-v3 {
    padding-top: 4.5rem;
  }
}
.mwm-banner-v3 {
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-banner-v3 {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-banner-v3 {
    padding-bottom: 2.5rem;
  }
}
.mwm-banner-v3__top {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.mwm-banner-v3__title {
  color: var(--mwm--color--azul-electrico-csu);
  margin: 0;
  max-width: 45.625rem;
}
.mwm-banner-v3__desc {
  color: var(--mwm--color--negro-csu);
  justify-self: start;
  margin: 0;
  max-width: 20rem;
}
.mwm-banner-v3__media {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .mwm-banner-v3__media {
    margin-top: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-banner-v3__media {
    margin-top: 1.5rem;
  }
}
.mwm-banner-v3__img {
  display: block;
  height: auto;
  max-height: 30.5rem;
  object-fit: cover;
  width: 100%;
}
.mwm-banner-v3__stats {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .mwm-banner-v3__stats {
    margin-top: 1.75rem;
  }
}
@media (min-width: 1280px) {
  .mwm-banner-v3__stats {
    margin-top: 2.5rem;
  }
}
.mwm-banner-v3__stats {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  justify-content: end;
}
.mwm-banner-v3__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mwm-banner-v3__stat-number {
  color: var(--mwm--color--rojo-csu);
  font-family: var(--mwm--font-family-alt);
  font-size: 4rem;
  font-weight: var(--mwm--font-weight--regular);
  line-height: 1;
}
.mwm-banner-v3__stat-info {
  color: var(--mwm--color--negro-csu);
}
@media (min-width: 768px) {
  .mwm-banner-v3__top {
    align-items: center;
    grid-template-columns: 1fr auto;
  }
  .mwm-banner-v3__desc {
    justify-self: end;
    text-align: left;
  }
  .mwm-banner-v3__stats {
    align-items: center;
    grid-template-columns: repeat(2, max-content);
    gap: 4rem;
  }
  .mwm-banner-v3__stat {
    min-width: 12rem;
  }
  .mwm-banner-v3__stat-number {
    font-size: 6rem;
    text-align: center;
  }
}

/*	# MWM NEWSLETTER
=============================================== */
.mwm-newsletter {
  margin: 0;
  overflow: hidden;
  padding-top: 2.75rem;
}
@media (min-width: 768px) {
  .mwm-newsletter {
    padding-top: 3.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-newsletter {
    padding-top: 4.4375rem;
  }
}
.mwm-newsletter {
  padding-bottom: 2.9375rem;
}
@media (min-width: 768px) {
  .mwm-newsletter {
    padding-bottom: 3.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-newsletter {
    padding-bottom: 4.375rem;
  }
}
.mwm-newsletter__wrapper {
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}
@media (min-width: 768px) {
  .mwm-newsletter__wrapper {
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-newsletter__wrapper {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
  }
}
.mwm-newsletter__wrapper {
  background-color: var(--mwm--color--azul-electrico-csu);
  display: grid;
  gap: 1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
}
.mwm-newsletter__wrapper::before, .mwm-newsletter__wrapper::after {
  background-image: url("assets/images/figure/separate-subtitle.svg");
  content: "";
  height: 0.75rem;
  position: absolute;
  width: 70%;
  z-index: 1;
}
.mwm-newsletter__wrapper::before {
  left: -3%;
  top: -6px;
}
.mwm-newsletter__wrapper::after {
  bottom: -6px;
  right: -3%;
}
.mwm-newsletter__title {
  color: var(--mwm--color--n100);
}
.mwm-newsletter__form--shortcode .wpcf7 {
  padding: 0;
}
.mwm-newsletter .row-subs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mwm-newsletter .row-subs .group-sub {
  height: fit-content;
}
.mwm-newsletter .row-subs .group-sub p {
  margin-bottom: 8px;
}
.mwm-newsletter .row-subs .group-sub p .wpcf7-form-control-wrap input[type=text], .mwm-newsletter .row-subs .group-sub p .wpcf7-form-control-wrap input[type=email] {
  background-color: var(--mwm--color--n100);
  padding: 8px 16px;
}
.mwm-newsletter .row-subs .group-sub p .wpcf7-form-control-wrap input::placeholder {
  color: var(--mwm--color--azulado-csu);
}
.mwm-newsletter .row-subs .group-sub .content-priv a, .mwm-newsletter .row-subs .group-sub .content-priv .wpcf7-list-item-label {
  color: var(--mwm--color--n100);
}
@media (min-width: 1024px) {
  .mwm-newsletter__wrapper {
    align-items: center;
    grid-template-columns: 1fr 1.5fr;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .mwm-newsletter__form--shortcode {
    margin-left: auto;
    width: 31.25rem;
  }
  .mwm-newsletter .row-subs {
    align-items: start;
    flex-direction: row;
  }
  .mwm-newsletter .row-subs .content-priv p {
    margin: 0;
  }
  .mwm-newsletter .row-subs .content-priv p label {
    margin: 0;
  }
  .mwm-newsletter .row-subs .btn-submit {
    display: flex;
    height: 100%;
  }
  .mwm-newsletter .row-subs .btn-submit .wpcf7-spinner {
    bottom: -50px;
  }
  .mwm-newsletter .row-subs .btn-submit .mwm-btn-white, .mwm-newsletter .row-subs .btn-submit .mwm-cta__button, .mwm-newsletter .row-subs .btn-submit input[type=submit] {
    height: 100%;
    width: 100%;
  }
  .mwm-newsletter .row-subs .btn-submit p {
    margin: 0;
  }
}

/*	# MWM EXPERTS
=============================================== */
.mwm-experts {
  padding-bottom: 2rem;
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .mwm-experts {
    padding-bottom: 3.5rem;
    padding-top: 3.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-experts {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}
.mwm-experts {
  margin: 0;
}
.mwm-experts__wrapper {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.mwm-experts__image-wrapper {
  order: 2;
  position: relative;
}
.mwm-experts__image-wrapper::before {
  background-image: url("assets/images/background/PATTERN-ESPÍGA.svg");
  background-size: 350%;
  bottom: -0.625rem;
  content: "";
  height: 7.5rem;
  position: absolute;
  right: 0;
  width: 70%;
  z-index: -1;
}
.mwm-experts__img {
  aspect-ratio: 1.519;
  border-bottom-right-radius: 7.5rem;
  display: block;
  height: auto;
  object-fit: cover;
  width: calc(100% - 0.625rem);
}
.mwm-experts__content {
  order: 1;
}
.mwm-experts__title {
  color: var(--mwm--color--azul-electrico-csu);
  margin-bottom: 1.5rem;
}
.mwm-experts__text * {
  font-family: var(--mwm--font-family);
  font-size: var(--mwm--font-size--text-big);
  line-height: var(--mwm--line-height--text-big);
  margin-bottom: 1rem;
}
.mwm-experts__text:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .mwm-experts__wrapper {
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
  }
  .mwm-experts__content {
    max-width: calc(543px + 1.875rem);
    order: 2;
    padding-left: 1.875rem;
  }
  .mwm-experts__img {
    width: calc(100% - 1rem);
  }
  .mwm-experts__image-wrapper {
    max-width: 35.5625rem;
    order: 1;
  }
  .mwm-experts__image-wrapper::before {
    bottom: -1rem;
  }
}

/*	# MWM INSTALL
=============================================== */
.mwm-install {
  margin: 0;
  padding-bottom: 3rem;
  padding-top: 3rem;
}
@media (min-width: 768px) {
  .mwm-install {
    padding-bottom: 3.5rem;
    padding-top: 3.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-install {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}
.mwm-install__title {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .mwm-install__title {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-install__title {
    margin-bottom: 2rem;
  }
}
.mwm-install__img-container {
  height: auto;
  overflow: hidden;
  width: 100%;
}
.mwm-install__img-container .mwm-install__img {
  display: block;
  height: 488px;
  object-fit: cover;
  width: 100%;
}
.mwm-install__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
  max-width: 48.1875rem;
}
.mwm-install__subtitle {
  margin: 0;
}
.mwm-install__text {
  margin-bottom: 1rem;
}
.mwm-install__button {
  max-width: 21.9375rem;
}

/*	# MWM IMG TEXT
=============================================== */
.mwm-img-text {
  margin: 0;
  padding-top: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-img-text {
    padding-top: 3rem;
  }
}
@media (min-width: 1280px) {
  .mwm-img-text {
    padding-top: 4rem;
  }
}
.mwm-img-text {
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-img-text {
    padding-bottom: 3rem;
  }
}
@media (min-width: 1280px) {
  .mwm-img-text {
    padding-bottom: 12.1875rem;
  }
}
.mwm-img-text__wrapper {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.5rem;
}
.mwm-img-text__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mwm-img-text__title, .mwm-img-text__desc {
  margin-bottom: 0;
}
.mwm-img-text__img {
  display: flex;
  justify-content: end;
  position: relative;
  width: 100%;
  aspect-ratio: 656/480;
  max-height: 30rem;
}
.mwm-img-text__img::before {
  background-image: url("assets/images/figure/LÍNEA-GRÁFICA_ESPÍGA.svg");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 0.375rem;
  left: 0;
  position: absolute;
  top: 1.875rem;
  width: 6.9375rem;
}
.mwm-img-text__img img {
  display: block;
  height: 100%;
  width: 95%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .mwm-img-text__wrapper {
    align-items: end;
    flex-direction: row;
    gap: 2.75rem;
    justify-content: space-between;
  }
  .mwm-img-text__content {
    gap: 1.5rem;
    max-width: 34.0625rem;
  }
  .mwm-img-text__img::before {
    height: 0.75rem;
    top: 4rem;
    width: 13.875rem;
  }
  .mwm-img-text__img img {
    width: 90%;
  }
}

/*	# MWM TEAM
===================================*/
.mwm-team {
  margin: 0;
  padding-bottom: 4rem;
  padding-top: 4rem;
}
@media (min-width: 768px) {
  .mwm-team {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}
@media (min-width: 1280px) {
  .mwm-team {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}
.mwm-team__title {
  margin-bottom: 4.5625rem;
  text-align: center;
}
.mwm-team__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .mwm-team__title {
    margin-bottom: 4.5625rem;
  }
  .mwm-team__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .mwm-team__grid {
    gap: 2.1875rem 1.5rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

/*	# MWM VALUES
===================================*/
.mwm-values {
  margin: 0;
  padding-bottom: 4rem;
  padding-top: 4rem;
}
@media (min-width: 768px) {
  .mwm-values {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-values {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
  }
}
.mwm-values__wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.mwm-values {
  /* Una sola imagen de fondo heredada vía --mwm-values-bg; cada máscara muestra una parte distinta */
}
.mwm-values .shape-top-left {
  background-image: var(--mwm-values-bg);
  background-size: 200% 200%;
  background-position: 0 0;
  mask-image: url("assets/images/csuniformes/shape-top-left.svg");
  -webkit-mask-image: url("assets/images/csuniformes/shape-top-left.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: cover;
  -webkit-mask-size: cover;
}
.mwm-values .shape-bottom-left {
  background-image: var(--mwm-values-bg);
  background-size: 200% 200%;
  background-position: 0 100%;
  mask-image: url("assets/images/csuniformes/shape-bottom-left.svg");
  -webkit-mask-image: url("assets/images/csuniformes/shape-bottom-left.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: cover;
  -webkit-mask-size: cover;
}
.mwm-values .shape-bottom-right {
  background-image: var(--mwm-values-bg);
  background-size: 200% 200%;
  background-position: 100% 100%;
  mask-image: url("assets/images/csuniformes/shape-bottom-right.svg");
  -webkit-mask-image: url("assets/images/csuniformes/shape-bottom-right.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: cover;
  -webkit-mask-size: cover;
}
.mwm-values .text-content {
  background: none; /* Esta celda no lleva imagen */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 1.25rem;
  position: relative;
}
.mwm-values .text-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  background-image: url("assets/images/figure/LÍNEA-GRÁFICA_1-Vertical.svg");
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
}
.mwm-values__box--figure {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columnas */
  grid-template-rows: auto auto; /* 2 filas */
  gap: 24px 12px;
  max-width: 50rem;
}
.mwm-values__item {
  width: 100%;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  height: 100%;
}
.mwm-values__title {
  margin-bottom: 0.5rem;
}
.mwm-values__text-value {
  color: var(--mwm--color--rojo-csu);
  font-family: var(--mwm--font-family-alt);
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.mwm-values__text-desc {
  margin: 0;
}
.mwm-values__box--content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .mwm-values__wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 12.5rem;
  }
  .mwm-values__box--figure {
    gap: 1.75rem;
  }
  .mwm-values__box--figure {
    width: 50%;
  }
  .mwm-values__box--content {
    width: 50%;
  }
}

/*	# MWM PAGE TEXT
===================================*/
.mwm-page-text {
  color: var(--mwm--color--negro-csu);
}
.mwm-page-text .wp-block-group div {
  padding: 0 !important;
}
.mwm-page-text .wp-block-group {
  margin-bottom: 0.5rem;
}
.mwm-page-text__wrapper {
  padding-bottom: 2rem;
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .mwm-page-text__wrapper {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-page-text__wrapper {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}
.mwm-page-text__title {
  margin-bottom: 1.5rem;
}
.mwm-page-text h2,
.mwm-page-text h3,
.mwm-page-text h4,
.mwm-page-text h5,
.mwm-page-text h6 {
  color: var(--mwm--color--negro-csu);
  margin-bottom: 1rem;
}
.mwm-page-text a {
  color: var(--mwm--color--azul-electrico-csu);
}
.mwm-page-text__content ul {
  margin-bottom: 1em;
}
.mwm-page-text__content .wp-block-table {
  margin: 1em 0;
}
@media (min-width: 768px) {
  .mwm-page-text__title {
    margin-bottom: 2.5rem;
  }
}

/*	# MWM 404
===================================*/
.mwm-404 {
  color: var(--mwm--color--negro-csu);
  margin: 0;
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-404 {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-404 {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}
.mwm-404__wrapper {
  margin: 0;
  overflow: hidden;
  position: relative;
}
.mwm-404__media {
  left: 50%;
  opacity: 0.4;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 20%;
  z-index: -1;
}
.mwm-404__media img {
  height: auto;
  object-fit: cover;
  width: 100%;
}
.mwm-404__title {
  text-align: center;
}
.mwm-404__content {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem 0;
  place-items: center;
}
.mwm-404__desc {
  max-width: 30.4375rem;
  text-align: center;
}
.mwm-404__text {
  margin-bottom: 1rem;
}
.mwm-404__desc {
  margin: 0;
}
.mwm-404__btn {
  width: fit-content;
}

/*	# MWM WOO PRODUCT
===================================*/
.mwm-woo-product {
  padding-top: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-woo-product {
    padding-top: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-woo-product {
    padding-top: 4.5rem;
  }
}
.mwm-woo-product {
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-woo-product {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .mwm-woo-product {
    padding-bottom: 4rem;
  }
}
.mwm-woo-product {
  margin: 0;
}
.mwm-woo-product__header {
  height: 48px;
  background-color: var(--mwm--color--azul-electrico-csu);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.mwm-woo-product__nav-list {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mwm-woo-product__nav-list a {
  color: var(--mwm--color--marfil-csu);
  text-decoration: none;
  font-size: 16px;
}
.mwm-woo-product__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.mwm-woo-product__header-icons {
  display: flex;
  gap: 24px;
}
.mwm-woo-product__icon {
  width: 24px;
  height: 24px;
  background-color: var(--mwm--color--marfil-csu);
  display: block;
}
.mwm-woo-product__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .mwm-woo-product__layout {
    grid-template-columns: 443px 1fr;
    gap: 5rem;
    align-items: flex-start;
  }
}
.mwm-woo-product__gallery {
  position: relative;
  width: 100%;
}
.mwm-woo-product__gallery .images,
.mwm-woo-product__gallery .woocommerce-product-gallery {
  list-style: none;
  max-width: 100%;
  position: relative;
  width: 100%;
}
.mwm-woo-product__gallery .images ol,
.mwm-woo-product__gallery .images ul,
.mwm-woo-product__gallery .woocommerce-product-gallery ol,
.mwm-woo-product__gallery .woocommerce-product-gallery ul {
  list-style: none;
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}
.mwm-woo-product__gallery .images li,
.mwm-woo-product__gallery .woocommerce-product-gallery li {
  list-style: none;
}
.mwm-woo-product__gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image,
.mwm-woo-product__gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a {
  display: block;
}
.mwm-woo-product__gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image img,
.mwm-woo-product__gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}
.mwm-woo-product__gallery .woocommerce-product-gallery__trigger span[aria-hidden=true] {
  display: none;
}
.mwm-woo-product__gallery .woocommerce-product-gallery__trigger {
  background-color: var(--mwm--color--n100);
  border: 1px solid rgba(37, 36, 37, 0.12);
  border-radius: 50%;
  box-sizing: border-box;
  display: inline-flex;
  height: 2.5rem;
  line-height: 1;
  position: absolute;
  right: 0.75rem;
  text-align: center;
  text-decoration: none;
  text-indent: 0;
  top: 0.75rem;
  width: 2.5rem;
  z-index: 3;
}
.mwm-woo-product__gallery .woocommerce-product-gallery__trigger::before {
  border: 2px solid var(--mwm--color--negro-csu);
  border-radius: 100%;
  box-sizing: content-box;
  content: "";
  display: block;
  height: 0.6875rem;
  left: 0.625rem;
  line-height: 1;
  position: absolute;
  top: 0.625rem;
  width: 0.6875rem;
}
.mwm-woo-product__gallery .woocommerce-product-gallery__trigger::after {
  background-color: var(--mwm--color--negro-csu);
  border-radius: 1px;
  box-sizing: content-box;
  content: "";
  display: block;
  height: 0.5625rem;
  left: 1.53125rem;
  position: absolute;
  top: 1.3125rem;
  transform: rotate(-45deg);
  width: 2px;
}
.mwm-woo-product__gallery .woocommerce-product-gallery__trigger:hover {
  border-color: var(--mwm--color--azul-electrico-csu);
}
.mwm-woo-product__gallery .woocommerce-product-gallery__trigger:hover::before {
  border-color: var(--mwm--color--azul-electrico-csu);
}
.mwm-woo-product__gallery .woocommerce-product-gallery__trigger:hover::after {
  background-color: var(--mwm--color--azul-electrico-csu);
}
.mwm-woo-product__gallery .flex-viewport {
  margin-bottom: 0;
}
.mwm-woo-product__gallery ol.flex-control-nav,
.mwm-woo-product__gallery ol.flex-control-thumbs {
  list-style: none;
  list-style-type: none;
  margin-inline-start: 0;
  padding-inline-start: 0;
}
.mwm-woo-product__gallery ol.flex-control-thumbs {
  margin: 1rem 0 0;
  padding: 0;
}
.mwm-woo-product__gallery ol.flex-control-thumbs::after {
  clear: both;
  content: "";
  display: table;
}
.mwm-woo-product__gallery ol.flex-control-thumbs li {
  float: left;
  margin: 0 0.5rem 0.5rem 0 !important;
  width: 5rem !important;
}
.mwm-woo-product__gallery ol.flex-control-thumbs li:last-child {
  margin-right: 0 !important;
}
.mwm-woo-product__gallery ol.flex-control-thumbs li img {
  border: 2px solid transparent;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: auto;
  opacity: 0.55;
  transition: border-color 0.2s ease, opacity 0.2s ease;
  width: 100%;
}
.mwm-woo-product__gallery ol.flex-control-thumbs li:hover img, .mwm-woo-product__gallery ol.flex-control-thumbs li.flex-active img {
  border-color: var(--mwm--color--azul-electrico-csu);
  opacity: 1;
}
.mwm-woo-product__gallery .woocommerce-product-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.mwm-woo-product__gallery .woocommerce-product-gallery__thumbs .woocommerce-product-gallery__thumb {
  flex: 0 0 auto;
  margin: 0;
  max-width: 5rem;
}
.mwm-woo-product__gallery .woocommerce-product-gallery__thumbs img {
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}
.mwm-woo-product__gallery .onsale {
  z-index: 4;
}
.mwm-woo-product__category {
  display: block;
  margin-bottom: 0.5rem;
}
.mwm-woo-product__title {
  margin-bottom: 1rem;
}
.mwm-woo-product__sku {
  color: var(--mwm--color--azulado-csu);
  font-size: 0.875rem;
  font-weight: var(--mwm--font-weight--medium);
  display: block;
  margin-bottom: 1rem;
}
.mwm-woo-product__short-description {
  color: var(--mwm--color--negro-csu);
  max-width: 38.5625rem;
  margin-bottom: 1rem;
}
.mwm-woo-product__option-group {
  margin-bottom: 1rem;
}
.mwm-woo-product__option-group--purchase .price {
  color: var(--mwm--color--negro-csu);
  margin-bottom: 1rem;
}
.mwm-woo-product__option-group--purchase .price .woocommerce-Price-amount {
  font-weight: var(--mwm--font-weight--bold);
}
.mwm-woo-product__option-group--purchase form.cart {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mwm-woo-product__option-group--purchase table.variations {
  border-collapse: collapse;
  margin: 0;
  width: 100%;
}
.mwm-woo-product__option-group--purchase table.variations th,
.mwm-woo-product__option-group--purchase table.variations td {
  padding: 0.25rem 0.5rem 0.25rem 0;
  text-align: left;
  vertical-align: middle;
}
.mwm-woo-product__option-group--purchase table.variations select {
  max-width: 100%;
  min-width: 12rem;
}
.mwm-woo-product__option-group--purchase .woocommerce-variation-add-to-cart,
.mwm-woo-product__option-group--purchase .quantity {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.mwm-woo-product__option-group--purchase .quantity input.qty {
  max-width: 5rem;
  padding: 0.5rem;
}
.mwm-woo-product__option-group--purchase button.single_add_to_cart_button.button.alt,
.mwm-woo-product__option-group--purchase button[type=submit].single_add_to_cart_button.button.alt,
.mwm-woo-product__option-group--purchase .add-request-quote-button {
  align-items: center;
  appearance: none;
  background-color: var(--mwm--color--azul-electrico-csu);
  border: 2px solid var(--mwm--color--azul-electrico-csu);
  border-radius: 5.625rem;
  box-shadow: none;
  color: var(--mwm--color--n100);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--mwm--font-family);
  font-size: var(--mwm--font-size--l100);
  font-weight: var(--mwm--font-weight--black);
  gap: 0.25rem;
  justify-content: center;
  letter-spacing: var(--mwm--letter-spacing--l100);
  line-height: var(--mwm--line-height--l100);
  min-height: auto;
  opacity: 1;
  padding: 0.75rem 1.5rem;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  user-select: none;
  width: fit-content;
}
.mwm-woo-product__option-group--purchase button.single_add_to_cart_button.button.alt:hover:not(:disabled):not(.disabled), .mwm-woo-product__option-group--purchase button.single_add_to_cart_button.button.alt:focus-visible:not(:disabled):not(.disabled),
.mwm-woo-product__option-group--purchase button[type=submit].single_add_to_cart_button.button.alt:hover:not(:disabled):not(.disabled),
.mwm-woo-product__option-group--purchase button[type=submit].single_add_to_cart_button.button.alt:focus-visible:not(:disabled):not(.disabled),
.mwm-woo-product__option-group--purchase .add-request-quote-button:hover:not(:disabled):not(.disabled),
.mwm-woo-product__option-group--purchase .add-request-quote-button:focus-visible:not(:disabled):not(.disabled) {
  background-color: var(--mwm--color--rojo-csu);
  border-color: var(--mwm--color--rojo-csu);
  color: var(--mwm--color--n100);
}
.mwm-woo-product__option-group--purchase button.single_add_to_cart_button.button.alt:disabled, .mwm-woo-product__option-group--purchase button.single_add_to_cart_button.button.alt.disabled, .mwm-woo-product__option-group--purchase button.single_add_to_cart_button.button.alt.wc-variation-selection-needed,
.mwm-woo-product__option-group--purchase button[type=submit].single_add_to_cart_button.button.alt:disabled,
.mwm-woo-product__option-group--purchase button[type=submit].single_add_to_cart_button.button.alt.disabled,
.mwm-woo-product__option-group--purchase button[type=submit].single_add_to_cart_button.button.alt.wc-variation-selection-needed,
.mwm-woo-product__option-group--purchase .add-request-quote-button:disabled,
.mwm-woo-product__option-group--purchase .add-request-quote-button.disabled,
.mwm-woo-product__option-group--purchase .add-request-quote-button.wc-variation-selection-needed {
  cursor: not-allowed;
  opacity: 0.55;
}
.mwm-woo-product__option-title {
  color: var(--mwm--color--negro-csu);
  margin-bottom: 0.5rem;
}
.mwm-woo-product__size-selector, .mwm-woo-product__color-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.mwm-woo-product__size-btn {
  padding: 0.5rem;
  border: none;
  background: transparent;
  color: var(--mwm--color--azul-electrico-csu);
  cursor: pointer;
}
.mwm-woo-product__size-btn:hover, .mwm-woo-product__size-btn:focus {
  background: transparent;
  color: var(--mwm--color--azul-electrico-csu);
  outline: none;
  box-shadow: none;
}
.mwm-woo-product__size-btn.active {
  background-color: var(--mwm--color--azul-electrico-csu);
  color: var(--mwm--color--marfil-csu);
  border-radius: 4px;
}
.mwm-woo-product__color-dot {
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 10.5rem;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0.125rem;
  outline: 1px solid currentColor;
}
.mwm-woo-product__color-dot.active::after {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid var(--mwm--color--rojo-csu);
  border-radius: 50%;
}
.mwm-woo-product__primary-button {
  margin: 0.5rem 0;
  width: fit-content;
}
.mwm-woo-product__tabs {
  margin-top: 3.5rem;
}
.mwm-woo-product__tabs-header {
  display: flex;
  gap: 1rem;
  border-bottom: 2px solid rgba(168, 167, 168, 0.209);
  margin-bottom: 1rem;
  justify-content: flex-start;
}
.mwm-woo-product__tab-link {
  background: transparent;
  border: none;
  border-radius: 0;
  flex: 1 1 50%;
  margin-bottom: -1px;
  padding: 0 0 10px 0;
  cursor: pointer;
  color: var(--mwm--color--negro-csu);
  justify-content: flex-start;
  text-align: left;
  opacity: 0.2;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.mwm-woo-product__tab-link:hover {
  background-color: transparent;
  color: var(--mwm--color--negro-csu);
  opacity: 1;
}
.mwm-woo-product__tab-link.active {
  border-bottom: 2px solid var(--mwm--color--rojo-csu);
  opacity: 1;
}
.mwm-woo-product__tab-content {
  color: var(--mwm--color--negro-csu);
}
.mwm-woo-product__tab-content .mwm-woo-product__tab-panel {
  display: none;
}
.mwm-woo-product__tab-content .mwm-woo-product__tab-panel.active {
  display: block;
}
.mwm-woo-product__tab-content > *:last-child {
  margin-bottom: 0;
}
.mwm-woo-product__related {
  margin-top: 4rem;
}
.mwm-woo-product__related-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
}
.mwm-woo-product__related-item {
  width: 15.625rem;
}
.mwm-woo-product__related-link {
  color: inherit;
  display: block;
  text-decoration: none;
}
.mwm-woo-product__related-item img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  aspect-ratio: 0.73;
  margin-bottom: 0.625rem;
}
.mwm-woo-product__related-name {
  font-family: var(--mwm--font-family-alt);
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.mwm-woo-product__testimonials, .mwm-woo-product__related-products {
  margin-top: 4.5rem;
}
.mwm-woo-product__section-title {
  color: var(--mwm--color--azul-electrico-csu);
  margin-bottom: 2rem;
}
.mwm-woo-product__reviews-swiper {
  width: 100%;
}
.mwm-woo-product__reviews-swiper .swiper-wrapper {
  align-items: stretch;
}
.mwm-woo-product__review-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: auto;
  width: min(100%, 19.375rem);
}
.mwm-woo-product__review-text {
  color: var(--mwm--color--negro-csu);
  quotes: '"' '"';
}
.mwm-woo-product__review-text::before {
  content: open-quote;
}
.mwm-woo-product__review-text::after {
  content: close-quote;
}
.mwm-woo-product__review-text p {
  display: inline;
  margin: 0;
}
.mwm-woo-product__review-text p + p {
  display: block;
  margin-top: 0.5rem;
}
.mwm-woo-product__review-author {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}
.mwm-woo-product__review-author .avatar,
.mwm-woo-product__review-author .mwm-woo-product__review-author-image {
  border-radius: 50%;
  display: block;
  height: 2.8125rem;
  width: 2.8125rem;
}
.mwm-woo-product__review-author-image-placeholder {
  background-color: #d9d9d9;
  border-radius: 50%;
  display: block;
  height: 2.8125rem;
  width: 2.8125rem;
}
.mwm-woo-product__review-author-meta {
  display: flex;
  flex-direction: column;
}
.mwm-woo-product__review-author-name {
  margin: 0;
}
.mwm-woo-product__review-author-role {
  color: var(--mwm--color--rojo-csu);
}
.mwm-woo-product__related-products-swiper {
  width: 100%;
}
.mwm-woo-product__related-products-swiper .swiper-wrapper {
  align-items: stretch;
}
.mwm-woo-product__related-products-link {
  color: inherit;
  display: block;
  text-decoration: none;
}
.mwm-woo-product__related-products-item {
  width: min(100%, 18.75rem);
}
.mwm-woo-product__related-products-item img {
  aspect-ratio: 300/406;
  display: block;
  height: auto;
  margin-bottom: 0.625rem;
  object-fit: cover;
  width: 100%;
}
.mwm-woo-product__related-products-name {
  color: var(--mwm--color--negro-csu);
  font-family: var(--mwm--font-family-alt);
  margin: 0.5rem 0 0;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .mwm-woo-product__related-grid {
    flex-direction: row;
  }
}

/*	# MWM WOO ARCHIVE
===================================*/
.mwm-woo {
  margin: 0;
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
}
@media (min-width: 768px) {
  .mwm-woo {
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
}
@media (min-width: 1280px) {
  .mwm-woo {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}
.mwm-woo__title {
  color: var(--mwm--color--azul-electrico-csu);
  margin-bottom: 2.5rem;
  text-align: center;
}
.mwm-woo__filters {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: space-between;
  margin-bottom: 3rem;
  scroll-margin-top: calc(7rem + var(--wp-admin--admin-bar--height, 0px));
}
@media (min-width: 768px) {
  .mwm-woo__filters {
    flex-wrap: nowrap;
    gap: 1rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .mwm-woo__filters {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start;
  }
}
.mwm-woo__categories-wrap {
  flex: 1 1 auto;
  min-width: 0;
}
@media (max-width: 767px) {
  .mwm-woo__categories-wrap {
    width: 100%;
  }
}
.mwm-woo__categories-swiper {
  margin: 0;
  max-width: 100%;
  width: 100%;
}
.mwm-woo__categories-swiper .swiper-wrapper {
  align-items: center;
}
.mwm-woo__category-slide {
  width: auto;
}
@media (max-width: 767px) {
  .mwm-woo__categories--chips {
    display: none;
  }
}
.mwm-woo__category-item {
  background-color: var(--mwm--color--azulado-csu);
  border-radius: 2px;
  color: var(--mwm--color--n100);
  display: block;
  flex-shrink: 0;
  padding: 0.75rem;
  text-decoration: none;
  font-weight: var(--mwm--font-weight--black);
  transition: opacity 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}
.mwm-woo__category-item:hover {
  opacity: 0.8;
}
.mwm-woo__category-item.is-active {
  background-color: var(--mwm--color--azul-electrico-csu);
}
.mwm-woo__grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2rem;
  column-gap: 1.5rem;
}
@media (min-width: 640px) {
  .mwm-woo__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .mwm-woo__grid {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 2.25rem;
    row-gap: 2.75rem;
  }
}
.mwm-woo__product-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mwm-woo__product-card:hover .mwm-woo__product-image {
  border-color: var(--mwm--color--rojo-csu);
}
.mwm-woo__product-card:hover .mwm-woo__product-image::after {
  opacity: 1;
}
.mwm-woo__product-card:hover .mwm-woo__product-name {
  color: var(--mwm--color--rojo-csu);
}
.mwm-woo__product-link {
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
}
.mwm-woo__product-image {
  aspect-ratio: 300/406;
  border: 1px solid transparent;
  box-sizing: border-box;
  position: relative;
  transition: border-color 0.2s ease;
  width: 100%;
}
.mwm-woo__product-image::after {
  background-image: url("assets/images/csuniformes/shape-producto-card.svg");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 82%;
  max-height: 165px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  transition: opacity 0.25s ease;
  width: 7px;
  transform: translateX(100%);
  z-index: 1;
}
.mwm-woo__product-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.mwm-woo__product-name {
  color: var(--mwm--color--negro-csu);
  font-family: var(--mwm--font-family-alt);
  font-size: 1.5rem;
  font-weight: var(--mwm--font-weight--regular);
  line-height: 1.5rem;
  margin: 0;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.mwm-woo__empty {
  color: var(--mwm--color--negro-csu);
}
.mwm-woo__pagination {
  margin-top: 2.5rem;
  text-align: center;
  width: 100%;
}
.mwm-woo__pagination .page-numbers {
  align-items: center;
  border-radius: 0.25rem;
  box-sizing: border-box;
  color: var(--mwm--color--azul-electrico-csu);
  display: inline-flex;
  justify-content: center;
  padding: 0.5rem;
  text-decoration: none;
  width: 2.3125rem;
}
.mwm-woo__pagination .page-numbers:hover {
  color: var(--mwm--color--azul-electrico-csu);
}
.mwm-woo__pagination .page-numbers.current {
  background-color: var(--mwm--color--azul-electrico-csu);
  color: var(--mwm--color--n100) !important;
}

.woo-variation-swatches.wvs-show-label .variations th {
  color: var(--mwm--color--negro-csu);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
}

.woo-variation-swatches.wvs-show-label .variations td {
  margin-bottom: 1rem;
}

.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item {
  box-shadow: none;
  box-sizing: border-box;
  color: var(--mwm--color--azul-electrico-csu);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item:hover {
  color: var(--mwm--color--azul-electrico-csu);
}
.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item.selected {
  background-color: var(--mwm--color--azul-electrico-csu);
  border-color: var(--mwm--color--azul-electrico-csu);
  color: var(--mwm--color--n100);
}

.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item.color-variable-item:not(.radio-variable-item) {
  border-radius: 100%;
}
.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item.color-variable-item:not(.radio-variable-item) span {
  border-radius: 100%;
}/*# sourceMappingURL=style.css.map */