:root {
    --body_bg: #F6F5F2;

    --ryv_color_text: #2D2D2D;
    --ryv_color_text_dark: #000;

    --ryv_color_primary: #005850;
    --rvy_color_secondary: #BDD500;
    --rvy_color_tertiary: #3F1D07;

    --rvy_color_dark: #603214;
    --rvy_color_darker: #2D2D2D;

    --rvy_color_light: #DDC685;
    --rvy_color_lighter: #F6F5F2;

    --rvy_color_sucess: #009c8f;
    --rvy_color_info: #00519c;
    --rvy_color_alert: #9c1700;
    --rvy_color_warning: #be9c00;

    --rvy_color_border: #A79055;

    --rvy_bg_primary: #fff;
    --rvy_bg_secondary: #E9E7DF;

    --rvy_font_size: 15px;
    --rvy_font_weight: 400;

    --h1-fontsize: 55px;
    --h2-fontsize: 40px;
    --h3-fontsize: 35px;

    --rvy_wrapper_radius: 15px;

    --rvy_wrapper_gap: 15px;
    --rvy_wrapper_gap_small: calc(var(--rvy_wrapper_gap) / 2);
    --rvy_wrapper_gap_large: calc(var(--rvy_wrapper_gap) * 2);
    --rvy_wrapper_gap_extra: calc(var(--rvy_wrapper_gap) * 4);
    --rvy_wrapper_gap_block: calc(var(--rvy_wrapper_gap) * 3 ); /* para bloques comunes */

    --rvy_NavTop_Height: 35px;
    --rvy_NavBottom_Height: 80px;
    --rvy_NavHeader_Height: calc(var(--rvy_NavTop_Height) + var(--rvy_NavBottom_Height));

    --rvy_max_width_layout: 1280px;
    --rvy_max_width: 800px;
    --rvy_max_width_reduced: 480px;
    --rvy_max_padding_layout: calc(var(--rvy_NavHeader_Height) + var(--rvy_wrapper_gap_extra));

    --rvy_filter_autor_images: brightness(80%) contrast(100%) sepia(100%);

    --rvy_text_font: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    --rvy_title_font: 'Antonio', Arial, Helvetica, sans-serif;
}


/*
--- MARK: GLOBAL
*/

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    min-height: 100%;
    height: auto;
    /*overflow-x: hidden;*/
    overflow-x: clip;
    scroll-behavior: smooth;
    scroll-padding-top: var(--rvy_max_padding_layout);
}

body {
    top: 0!important;
    line-height: 21px;
    color: var(--ryv_color_text);
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    font-size: var(--rvy_font_size);
    font-weight: var(--rvy_font_weight);
    background-color: var(--body_bg);
}

html.translated body {
  transition: opacity 0.3s ease-in-out;
}

body.mobile-nav-is-open {
    overflow: hidden !important;
}


/*
--- MARK: COMMON
*/
#wrapper {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--rvy_wrapper_gap);
    padding-right: var(--rvy_wrapper_gap);
    padding-top: var(--rvy_NavHeader_Height);
    width: 100%;
    max-width: var(--rvy_max_width_layout);
    background: transparent;
}

.container {
    position: relative;
    padding-left: var(--skd_container__padding);
    padding-right: var(--skd_container__padding);
    width: 100%;
}

.print {
    display: none;
    visibility: hidden;
    opacity: 0;
}

a,
svg {
    transition: all 0.3s;
}

h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5 {
    margin: 0;
    color: var(--skd_color__text);
    font-family: 'Antonio', Arial, Helvetica, sans-serif;
    font-weight: 700;
}

h1, .h1 {
    font-size: var(--h1-fontsize);
}

h2, .h2 {
    font-size: var(--h2-fontsize);
    font-weight: 600;
}

h3, .h3 {
    font-size: var(--h3-fontsize);
    font-weight: 600;
}

h1>mark, h2>mark, h3>mark,
.h1>mark, .h2>mark, .h3>mark {
    color: var(--ryv_color_primary);
    background-color: transparent;
}

p {
    color: var(--ryv_color_text);
    font-size: var(--text-fonsize);
    font-weight: var(--text-fonweight);
}

a {
    color: var(--ryv_color_link);
}

.obf-email {
  direction: rtl;
  unicode-bidi: bidi-override;
  display: inline-block;
  cursor: pointer;
  text-decoration: underline;
}

hr.dot {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    height: 1!important;
    border-top: 1px solid var(--rvy_color_light);
}
    hr.dot:before {
        position: absolute;
        margin-left: -6px;
        left: 50%;
        top: -7px;
        width: 13px;
        height: 13px;
        content: '';
        border-radius: 50%;
        border-width: 0;
        background-color: var(--rvy_color_light);
    }

hr.spacer {
    display: block;
    margin: 0;
    padding: 0;
    height: var(--rvy_wrapper_gap)!important;
    border-width: 0 !important;
}

hr.condensed {
    margin-top: var(--rvy_wrapper_gap);
    margin-bottom: var(--rvy_wrapper_gap);
}
hr.spacer.condensed {
    margin-top: 0;
    margin-bottom: 0;
    height: var(--rvy_wrapper_gap_large)!important;
}

hr.large {
    margin-top: var(--rvy_wrapper_gap_large);
    margin-bottom: var(--rvy_wrapper_gap_large);
}
hr.spacer.large {
    margin-top: 0;
    margin-bottom: 0;
    height: var(--rvy_wrapper_gap_extra)!important;
}

hr.extended {
    margin-top: var(--rvy_wrapper_gap_extra);
    margin-bottom: var(--rvy_wrapper_gap_extra);
}
hr.spacer.extended {
    margin-top: 0;
    margin-bottom: 0;
    height: calc( var(--rvy_wrapper_gap_extra) * 2 )!important;
}



.back-to-top {
    position: fixed;
    display: none;
    opacity: 0;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    /*bottom: var(--skd_container__padding);*/
    bottom: var(--rvy_wrapper_gap);
    right: var(--rvy_wrapper_gap);
    pointer-events: none;
    transition: all 0.5s ease;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: var(--ryv_color_primary);
}

.back-to-top.visible {
    display: flex;
    opacity: 1;
    pointer-events: all;
    transition: all 0.5s ease;
}

.back-to-top:before {
    position: relative;
    top: 3px;
    width: 12px;
    height: 12px;
    content: '';
    transform: rotate(-45deg);
    border-width: 1px;
    border-style: solid;
    border-color: #fff #fff transparent transparent;
}

p:empty {
    display: none;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.text-balance {
    text-wrap: balance;
}

ul.rss-social-media {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    gap: 5px;
    list-style: none;
    ;
}

ul.rss-social-media>li {
    margin: 0;
    padding: 0;
}

ul.rss-social-media>li>a {
    display: flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    font-weight: 300 !important;
    text-decoration: none;
}

#pagenotfound .page-not-found, 
#products .page-not-found {
    margin-top: var(--rvy_wrapper_gap_large);
    width: 100%;
    max-width: var(--rvy_max_width_layout);
}
    #pagenotfound .page-not-found h4, 
    #products .page-not-found h4 {
        color: var(--ryv_color_text);
        font-size: var(--h2-fontsize);
    }
    #pagenotfound .page-not-found #search_widget, 
    #products .page-not-found #search_widget {
        float: none;
        min-width: var(--rvy_max_width_reduced);
        max-width: var(--rvy_max_width_reduced);
    }


#category #products #content.page-not-found {
    padding: var(--rvy_wrapper_gap_large)!important;
}
    #category #products #content.page-not-found .catalogo-en-crecimiento h4 {
        margin-top: 0;
        font-size: 21px;
        font-family: 'Inter', Arial, Helvetica, sans-serif;
    }
    #category #products #content.page-not-found .catalogo-en-crecimiento p:last-child {
        margin-bottom: 0;
    }
    #category #products #content.page-not-found .catalogo-en-crecimiento p a {
        text-decoration: underline;
    }

html body #header-nav-top .nav-right #flags {
    display: block;
    position: relative;
    margin-left: var(--rvy_wrapper_gap);
    float: none!important;
    clear: both!important;
    width: auto;
    height: 20px;
    overflow: visible;
}
    html body #header-nav-top .nav-right #flags ul {
        position: relative;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        width: auto;
        height: 20px;
        gap: 0 11px;
        float: none!important;
        clear: both!important;
        align-items: flex-start;
        justify-content: flex-start;
        cursor: pointer;
    }
            html body #header-nav-top .nav-right #flags ul li {
                display: block;
                position: relative;
                float: none;
                clear: both;
                margin: 0;
                width: auto;
                height: 20px;
                transition: all 0.2s;
                background-color: var(--ryv_color_primary);
            }
                html body #header-nav-top .nav-right #flags ul li:not(:last-child):before {
                    position: absolute;
                    top: 4px;
                    right: -6px;
                    width: 1px;
                    height: 14px;
                    content: ''!important;
                    border-right: 1px solid #fff!important;
                }

            html body #header-nav-top .nav-right #flags ul li > a {
                display: block;
                margin: 0!important;
                padding: 0!important;
                width: auto!important;
                height: 20px!important; 
                color: #fff!important;
                font-size: 12px!important;
                background-repeat: no-repeat;
                background-position: center center;
            }

            html[lang="es"] body #header-nav-top .nav-right #flags ul li.es > a, 
            html[lang="es-ES"] body #header-nav-top .nav-right #flags ul li.es > a,
            html[lang="en"] body #header-nav-top .nav-right #flags ul li.en > a, 
            html[lang="gl"] body #header-nav-top .nav-right #flags ul li.gl > a, 
            html[lang="pt"] body #header-nav-top .nav-right #flags ul li.pt > a { color: var(--rvy_color_light)!important; }

            /*html body #header .nav-right #flags {
                display: block;
                position: relative;
                margin-left: var(--rvy_wrapper_gap);
                float: none!important;
                clear: both!important;
                width: auto;
                height: 20px;
                overflow: hidden;
            }
                html body #header .nav-right #flags ul {
                    position: relative;
                    display: flex;
                    flex-direction: row;
                    flex-wrap: nowrap;
                    width: auto;
                    height: 20px;
                    gap: 0 11px;
                    float: none!important;
                    clear: both!important;
                    align-items: flex-start;
                    justify-content: flex-start;
                    cursor: pointer;
                }
                    html body #header .nav-right #flags ul li { 
                        display: block;
                        float: none;
                        clear: both;
                        margin: 0;
                        width: auto;
                        height: 20px;
                        line-height: 20px;
                        transition: all 0.2s;
                        background-color: var(--ryv_color_primary);
                    }
                        html body #header .nav-right #flags ul li > a {
                            display: block;
                            margin: 0!important;
                            padding: 0!important;
                            width: auto!important;
                            height: auto!important; 
                            color: #fff!important;
                            background: none!important;
                        }*/

            html > body > .skiptranslate > iframe {
                display: none!important;
                visibility: hidden!important;
            }

            /** NOS CARGAMOS TODAS LAS FUNCIONALIDADES "FEAS" DE GTRANSLATE */

            /* Ocultar el tooltip/popup de valoración de traducción */
            #goog-gt-vt,
            #goog-gt-tt {
                position: fixed!important;
                display: none!important;
                visibility: hidden!important;
                opacity: 0!important;
                left: -99999em!important;
                top: -99999em!important;
            }
            a > font, a > font > font,
            p > font, p > font > font,
            div > font, div > font > font,
            span > font, span > font > font,
            li > font, li > font > font,
            button > font, button > font > font,
            h1 > font, h1 > font > font,
            h2 > font, h2 > font > font,
            h3 > font, h3 > font > font,
            h4 > font, h4 > font > font,
            h5 > font, h5 > font > font,
            i > font, i > font > font {
                box-shadow: none!important;
                background-color: transparent!important;
                cursor: inherit!important;
            }
            .goog-te-balloon-frame {
                display: none !important;
            }

            /* Eliminar el resaltado de las palabras traducidas */
            .translated-ltr {
                background-color: transparent !important;
                border: none !important;
                box-shadow: none !important;
            }

            /* Eliminar el borde y fondo al pasar el ratón sobre palabras traducidas */
            span[style*="background-color"] {
                background-color: transparent !important;
            }

            /* Ocultar el popup flotante de "Contribuir a una mejor traducción" */
            .goog-te-balloon {
                display: none !important;
            }

            /* Eliminar el resaltado azul de Google Translate */
            font[style*="background-color: rgb(189, 211, 232)"],
            font[style*="background-color: rgb(255, 255, 0)"],
            font[style*="background-color: rgba(0, 0, 255, 0.2)"] {
                background-color: transparent !important;
            }

            /* Ocultar el banner superior de Google Translate (si aparece) */
            .goog-te-banner-frame {
                display: none !important;
            }

            /* Eliminar cualquier outline o borde en elementos traducidos */
            .goog-text-highlight {
                background-color: transparent !important;
                box-shadow: none !important;
            }

            /* Prevenir que aparezca el cursor pointer en textos traducidos */
            span.notranslate[onmouseover] {
                cursor: default !important;
            }

            /* Limpiar estilos inline que Google añade a las traducciones */
            body {
                top: 0 !important;
            }

            /* Eliminar el espacio extra que Google añade arriba */
            body.translated-ltr {
                margin-top: 0 !important;
            }

            /* Opcional: Ocultar completamente el iframe de Google (si no lo usas visualmente) */
            iframe.goog-te-menu-frame,
            iframe.goog-te-banner-frame {
                display: none !important;
            }

            /* Asegurar que no haya delays en hover */
            span[onmouseover]:not([data-lang]) {
                pointer-events: none !important;
            }

            /** NOS CARGAMOS TODAS LAS FUNCIONALIDADES "FEAS" DE GTRANSLATE */

/**
-- MARK: HEADER 
**/
#header {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    width: 100vw;
    height: var(--rvy_NavHeader_Height);
    box-shadow: none !important;
    background-color: #fff;
}

/* HEADER TOP */
#header-nav-top {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 0 30px;
    align-items: center;
    height: var(--rvy_NavTop_Height);
    gap: var(--rvy_wrapper_gap);
    background-color: var(--ryv_color_primary);
    z-index: 100;
}

#header-nav-top:after,
#header-nav-top:before {
    content: none;
}

#header-nav-top .nav-left,
#header-nav-top .nav-right {
    flex: 0 0 auto;
    margin-bottom: 0 !important;
    width: auto !important;

    color: #fff;
    font-size: 14px;
}

#header-nav-top .nav-left {
    margin-right: auto;
    text-align: left;
}

#header-nav-top .nav-right {
    display: flex;
    gap: 10px;
    margin-left: auto;
    margin-right: 0;
    text-align: right;
}

#header-nav-top a,
#header-nav-top span {
    color: #fff;
}
#header-nav-top a:hover {
    color: var(--rvy_color_lighter);
}
#header-nav-top a.customer-login i {
    display: none;
}
 

/* HEADER BOTTOM */
#header-nav-bottom {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    padding: 5px 25px;
    height: var(--rvy_NavBottom_Height);
}

#header-logo {
    margin-right: auto;
    margin-bottom: 0 !important;
    flex: auto;
    width: auto;
}

#header-logo h1 {
    margin: 0;
    padding: 0;
}

#header-logo a {
    display: block;
    width: fit-content;
}

#header-logo img {
    display: block;
    margin: 0;
    width: 195px;
    max-width: 195px !important;
    transition: all 0.2s;
}

#header-nav {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    flex: auto;
    align-items: center;
    width: auto;
}

#header-nav .et-menu.nav {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: 0;
    align-items: center;
}

#header-nav .et-menu.nav>li {
    margin: 0;
    padding: 0 20px;
}
#header-nav .et-menu.nav>li#lnk-contacto {
    display: none;
}

#header-nav .et-menu.nav > li > a {
    margin: 0;
    padding: 5px 0;
    line-height: 14px;
    color: var(--ryv_color_primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    word-wrap: break-word;
}
    #header-nav .et-menu.nav > li#lnk-area-doce > a {
        padding-left: 30px;
        background-image: url(../img/doce-logo-nav_o.png);
        background-size: 20px 20px;
        background-repeat: no-repeat;
        background-position: 0 50%;
    }
    #header-nav-bottom #_desktop_top_menu > ul#menu-main-menu > li#lnk-catalogo > a {
        /*color: var(--rvy_color_secondary)!important;*/
        text-decoration: underline;
        text-underline-offset: 4px;
        text-decoration-thickness: 2px;
    }

/* Buscar */
#header #header-nav .nav-search-button {
    margin-right: 20px;
}

#header #header-nav #nav-search-button {
    display: block;
}

#header #header-nav #nav-search-button:before {
    display: block;
    height: 15px;
    width: 15px;
    transition: all 0.2s;
    content: '';
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376C296.3 401.1 253.9 416 208 416 93.1 416 0 322.9 0 208S93.1 0 208 0 416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"/></svg>');
    mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376C296.3 401.1 253.9 416 208 416 93.1 416 0 322.9 0 208S93.1 0 208 0 416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"/></svg>');
    background-color: var(--ryv_color_primary);
}

#header #header-nav #nav-search-button>span {
    display: none;
}

/* Contacto */
#header #header-nav .nav-contact-button {
    position: relative;
    padding-left: 20px;
}
#header #header-nav .nav-contact-button:before {
    position: absolute;
    left: 0;
    top: 7px;
    height: 20px;
    content: '';
    border-left: 1px solid var(--ryv_color_primary);
}
    #header #header-nav .nav-contact-button > a {
        color: #fff!important;
    }

/* Carrito */
#header #_desktop_cart {
    margin-right: var(--rvy_wrapper_gap);
    line-height: 14px;
    color: var(--ryv_color_primary);
    font-size: 14px;
    font-weight: 600;
}

#header #_desktop_cart .blockcart>.header>span {
    display: none;
}

     

/*
-- MARK: NAV MOBILE
*/
#header-nav-mobile-button {
    display: none;
    position: relative;
    margin-left: var(--rvy_wrapper_gap);
    width: 24px;
    height: 24px;
    overflow: hidden;
    cursor: pointer;
}

#header-nav-mobile-button>span {
    position: absolute;
    top: 6px;
    left: 4px;
    width: 16px;
    height: 2px;
    transition: all 0.2s;
    background-color: var(--ryv_color_primary);
}

#header-nav-mobile-button>span:before,
#header-nav-mobile-button>span:after {
    position: absolute;
    top: 5px;
    left: 0;
    width: 16px;
    height: 2px;
    content: '';
    background-color: var(--ryv_color_primary);
}

#header-nav-mobile-button>span:after {
    top: 10px;
}

body.mobile-nav-is-open #header-nav-mobile-button>span {
    top: 11px;
    transform: rotate(45deg);
}

body.mobile-nav-is-open #header-nav-mobile-button>span:before {
    top: 0;
    transform: rotate(-90deg);
}

body.mobile-nav-is-open #header-nav-mobile-button>span:after {
    visibility: hidden;
}



body.is-nav-open {
    overflow: hidden;
}

#header-nav .mobile_nav .mobile_menu_bar {
    z-index: 9020;
}

/*
-- MARK: FOOTER
*/

#footer {
    position: relative;
    margin-top: var(--rvy_wrapper_gap_extra);
    padding: 0 var(--rvy_wrapper_gap_large);
    background-color: var(--ryv_color_primary);
}

#footer-logo-top {
    position: absolute;
    left: 50%;
    top: -42px;
    width: 85px;
    height: 85px;
    transform: translateX(-50%) translateY(0px);
    border-radius: 50%;
    overflow: hidden;
    text-align: left;
    margin-left: 0;
    background-color: var(--ryv_color_primary);
    background-image: url(../img/reyvi-ornmt.svg);
    background-size: 65px auto;
    background-position: 10px 10px;
    background-repeat: no-repeat;
}

#footer-contacto {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-left: auto;
    margin-right: auto;
    padding-top: 85px !important;
    padding-bottom: 65px !important;
    gap: var(--rvy_wrapper_gap_extra);
    max-width: var(--rvy_max_width_layout);
    color: #fff;
}
    #footer-contacto:after,
    #footer-contacto:before {
        content: none;
    }

#footer-contacto>.col-left,
#footer-contacto>.col-center,
#footer-contacto>.col-right {
    flex: 1;
}

#footer-contacto>.col-left {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}

#footer-contacto>.col-left>.te-llamamos {
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
    text-transform: none;
}

#footer-contacto>.col-left>.contactanos {
    position: relative;
    margin-bottom: var(--rvy_wrapper_gap);
    padding-bottom: 10px;
    color: var(--rvy_color_light);
    font-weight: 600;
    text-transform: none;
}
    #footer-contacto>.col-left>.contactanos a,
    #footer-contacto>.col-left>.contactanos a:hover {
        color: var(--rvy_color_light);
    }
    
/* Tamaños especiales en función del idioma seleccionado */
html[lang="en"] #footer-contacto>.col-left > .te-llamamos,
html[lang="en-EN"] #footer-contacto>.col-left > .te-llamamos { /* Te llamamos? */
    font-size: 50px;
}
html[lang="gl"] #footer-contacto>.col-left > .te-llamamos,
html[lang="gl-Es"] #footer-contacto>.col-left > .te-llamamos,
html[lang="gl"] #footer-contacto>.col-left>.contactanos,
html[lang="gl-Es"] #footer-contacto>.col-left>.contactanos { /* Te llamamos? Contacta con nosotros */
    font-size: 43px;
}
html[lang="pt"] #footer-contacto>.col-left > .te-llamamos,
html[lang="pt-PT"] #footer-contacto>.col-left > .te-llamamos {
    font-size: 40px;
}

#footer-contacto>.col-left>p {
    margin-bottom: 0;
}

#footer-contacto>.col-left>p>a {
    display: block;
    margin: 0;
    padding-right: 55px;
    line-height: 25px;
    color: #fff;
    background-image: url(../img/arrow.svg);
    background-size: 45px 45px;
    background-position: right 0% top;
    background-repeat: no-repeat;
}

#footer-contacto>.col-center {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
        #footer-contacto>.col-center .reyvi > img {
            width: 110px;
            height: auto;
        }
    #footer-contacto>.col-center .doce {
        margin-top: 10px;
    }
        #footer-contacto>.col-center .doce > img {
            width: 90px;
            height: auto;
        }

#footer-contacto>.col-center .divider {
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    height: 1px;
    border-top: 1px solid #fff;
}

#footer-contacto>.col-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#footer-contacto>.col-right>a {
    font-size: 34px;
    text-transform: none;
}

#footer-contacto>.col-right>a.phone {
    color: var(--rvy_color_light);
}
#footer-contacto>.col-right>a.phone.phone2 {
    padding-left: 50px;
}

#footer-contacto>.col-right>p {
    color: #fff;
}

#footer-separator {
    position: relative;
    width: 100vw;
    min-height: 160px;
    margin-left: calc( 50% - 50vw );
    background-image: url(../img/reyvi-footer-bg.png);
    background-position: center center;
    background-repeat: repeat-x;
    background-size: auto 100%;
}
    #footer-separator .footer-separator-wrapper {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: var(--rvy_wrapper_gap_extra);
        margin: 0 auto;
        padding: var(--rvy_wrapper_gap_large);
        width: 100%;
        max-width: var(--rvy_max_width_layout);
    }
        #footer-separator .footer-separator-wrapper .footer-separator-left {
            flex: 1;
            margin-left: auto;
            margin-right: 0;
        }
            #footer-separator .footer-separator-wrapper .footer-separator-left h2 {
                color: #fff;
                font-size: 55px;
                font-weight: 400;
                text-align: right;
            }
        #footer-separator .footer-separator-wrapper .footer-separator-right {
            flex: 1;
            margin-right: 0;
            margin-left: auto;
        }
            #footer-separator .footer-separator-wrapper .footer-separator-right iframe {
                position: relative;
                max-width: 400px;
            }

#footer-logos {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px !important;
    padding-top: 65px !important;
    align-items: flex-end; 
    gap: var(--rvy_wrapper_gap_large);
    max-width: var(--rvy_max_width_layout);
    color: #fff;
}

#footer-logos>.col-left,
#footer-logos>.col-right {
    flex: 1;
}

.grupo-reyvidis-title {
    position: relative;
    margin: 0 0 -15px 0 !important;
    padding: 0 15px 15px 0;
    width: fit-content;
    background-color: var(--ryv_color_primary);
    z-index: 10;
}

.grupo-reyvidis-group {
    position: relative;
    padding: var(--rvy_wrapper_gap);
    width: fit-content;
    border: 1px solid #5C9A95;
}

.grupo-reyvidis-group-title {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
}

.grupo-reyvidis-group>.grupo-reyvidis-group-gallery {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: var(--rvy_wrapper_gap_block);
    align-items: center;
    justify-content: flex-start;
}

.grupo-reyvidis-group>.grupo-reyvidis-group-gallery>.grupo-reyvidis-group-gallery-item {
    position: relative;
    margin: 0 !important;
    width: fit-content;
}

.grupo-reyvidis-group > .grupo-reyvidis-group-gallery > .grupo-reyvidis-group-gallery-item img {
    height: 50px;
    width: auto;
    filter: grayscale(100%);
}
.grupo-reyvidis-group > .grupo-reyvidis-group-gallery > .grupo-reyvidis-group-gallery-item:nth-child(1) img {
    filter: grayscale(100%) brightness(75%); 
}
.grupo-reyvidis-group > .grupo-reyvidis-group-gallery > .grupo-reyvidis-group-gallery-item:nth-child(2) {
    top: 0;
}
.grupo-reyvidis-group > .grupo-reyvidis-group-gallery > .grupo-reyvidis-group-gallery-item:nth-child(3) {
    bottom: 10px;
}
    .grupo-reyvidis-group > .grupo-reyvidis-group-gallery > .grupo-reyvidis-group-gallery-item:nth-child(3) img {
        height: 70px;
    }

#footer-nav {
    padding: 10px 0;
}

#footer-nav .et-menu-nav> {}


#footer-nav {
    margin: 0 auto;
    padding: 10px;
}

#footer-nav #footer-nav-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 0 80px;
    list-style: none;
}

#footer-nav #footer-nav-links>li {
    margin: 8px 0 0 0;
    padding: 0;
}
    #footer-nav #footer-nav-links>li>a {
        position: relative;
        padding: 0 0 8px 0;
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
    }

#footer-legal {
    margin: 0 auto;
    padding: 5px 0 10px 0;
}

#footer-legal #footer-cms-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 12px;
    list-style: none;
}
    #footer-legal #footer-cms-links > li {
        position: relative;
        margin: 8px 0 0 0;
        padding: 0;
    }
        #footer-legal #footer-cms-links > li:not(:first-child):after {
            position: absolute;
            left: -8px;
            top: -3px;
            content: '·';
            color: #fff;
        }
            #footer-legal #footer-cms-links >li > a {
                display: block;
                margin: 0;
                padding-bottom: 8px;
                line-height: 1;
                color: #fff;
                font-size: 12px; 
            }

    body:not(#index) #footer-legal #footer-cms-links > li.cpy_cubica {
        display: none;
    }
        
    /* Contacto */
    footer #footer-contacto .col-right > .contacto-items {
        margin-bottom: var(--rvy_wrapper_gap);
        line-height: 40px;
        font-family: 'Antonio',Helvetica,Arial,Lucida,sans-serif;
        font-size: 34px;
    }
        footer #footer-contacto .col-right > .contacto-items a {
            line-height: 40px;
            color: #fff !important; 
            font-family: 'Antonio',Helvetica,Arial,Lucida,sans-serif;
            font-size: 34px;
            text-align: left;
            text-decoration: none;
        }
        footer #footer-contacto .col-right > .contacto-items .email {
            margin-bottom: 15px;
        }
        footer #footer-contacto .col-right > .contacto-items .phone {
            padding-left: 60px;
        }
            footer #footer-contacto .col-right > .contacto-items .phone:before {
                margin-left: -60px;
                color: #ddc685 !important;
                content: 'Tel.: '; 
            }
            footer #footer-contacto .col-right > .contacto-items .phone a {
                color: #ddc685 !important;
            }


/*
-- MARK: BUSCADOR 
*/
html:has(#ryv-search-modal.open),
html:has(#ryv-search-modal.open) body {
   overflow: hidden!important;
}
#ryv-search-modal {
    position: fixed; 
    inset: 0;
    opacity: 0;
    visibility: hidden;
    color: #fff; 
    transition: opacity .3s ease, visibility .3s ease;
    background-color: var(--ryv_color_primary);
    z-index: -1;
}
#ryv-search-modal.open {
  opacity: 1;
  visibility: visible;
  z-index: 999999;
}
    #ryv-search-modal .modal-content {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
        background-color: var(--ryv_color_primary);
    }
    #ryv-search-modal .modal-content .modal-content-close {
        position: absolute;
        top: var(--rvy_wrapper_gap_large);
        right: var(--rvy_wrapper_gap_large);
        font-size: var(--rvy_wrapper_gap_large);
        cursor: pointer; 
    }
    #ryv-search-modal .modal-content .modal-content-wrapper > h2 {
        margin: 0 auto;
        padding: 0;
        color: #fff;
        font-size: 48px;
        text-align: center;
    }
    #ryv-search-modal .modal-content .modal-content-wrapper .modal-content-form {
        width: 100vw;
        background-size: auto 100%;
        background-image: url(https://www.reyvi.com/wp-content/uploads/2025/09/footer-bg.png);
        background-repeat: repeat-x;
        
        min-height: 160px;
    }
        #ryv-search-modal .modal-content #rvy-search-form {
            display: flex;
            flex-direction: column;
            margin: 0 auto;
            padding: var(--rvy_wrapper_gap_extra);
            gap: 10px;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 490px;
            background-color: var(--ryv_color_primary);
        }
            #ryv-search-modal .modal-content #rvy-search-form .rvy-search-form-options {
                display: flex;
                flex-direction: column;
                gap: 5px;
            }
                #ryv-search-modal .modal-content #rvy-search-form .rvy-search-form-options > label {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    justify-content: flex-start;
                    gap: 5px;
                    color: #fff;
                }
                    #ryv-search-modal .modal-content #rvy-search-form .rvy-search-form-options > label > span {
                        min-width: 100px;
                        text-align: left;
                    }
            #ryv-search-modal .modal-content #rvy-search-form .rvy-search-form-search {
                margin-bottom: var(--rvy_wrapper_gap_large);
                width: 100%;
            }
                #ryv-search-modal .modal-content #rvy-search-form .rvy-search-form-search .form-field {
                    color: #fff;
                    width: 100%;
                    max-width: 100%;
                    font-size: 14px;
                    font-weight: 300;
                }
                    #ryv-search-modal .modal-content #rvy-search-form .rvy-search-form-search .form-field:focus,
                    #ryv-search-modal .modal-content #rvy-search-form .rvy-search-form-search .form-field:focus-visible,
                    #ryv-search-modal .modal-content #rvy-search-form .rvy-search-form-search .form-field:focus-within {
                        outline: none;
                        _box-shadow: none;
                    }
                #ryv-search-modal .modal-content #rvy-search-form .rvy-search-form-search .form-field::placeholder {
                    color: rgba( 255, 255, 255, 0.75);
                    font-size: 13px;
                    font-weight: 300;
                }
            #ryv-search-modal .modal-content #rvy-search-form .rvy-search-form-submit {

            }



/*
-- MARK: BUTTONS
*/
.rvy-button,
body .et_pb_module .rvy-button { /* intentamos saltarnos los estilos de divi */
    position: relative;
    display: inline-block;
    padding: 15px 30px!important;
    line-height: 1!important;
    color: #fff;
    font-size: 13px;
    font-weight: 700!important;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.2s linear;
    border-radius: 50px;
    border-width: 1px;
    border-style: solid;
    border-color: var(--ryv_color_primary);
    background-color: var(--ryv_color_primary);
    cursor: pointer;
}
    .rvy-button:hover,
    body .et_pb_module .rvy-button:hover {
        padding: 15px 30px!important;
        line-height: 1!important;
        border-width: 1px;
        border-style: solid;
        border-color: color-mix( in srgb, var(--ryv_color_primary), #fff 20%);
        background-color: color-mix( in srgb, var(--ryv_color_primary), #fff 20%);
    }
    .rvy-button:after,
    .rvy-button:before,
    body .et_pb_module:after,
    body .et_pb_module:before  {
        content: none;
    }
    .rvy-primary-button {
        color: #fff;
        border-color: var(--ryv_color_primary);
        background-color: var(--ryv_color_primary);
    }
        .rvy-primary-button:hover {
            border-color: color-mix( in srgb, var(--ryv_color_primary), #fff 20%);
            background-color: color-mix( in srgb, var(--ryv_color_primary), #fff 20%);
        }

    .rvy-primary-button.bordered {
        color: var(--ryv_color_primary)!important;
        background-color: transparent!important;
        border-color: var(--ryv_color_primary)!important;
    }
        .rvy-primary-button.bordered:hover {
            color: color-mix( in srgb, var(--ryv_color_primary), #fff 20%)!important;
            border-color: color-mix( in srgb, var(--ryv_color_primary), #fff 20%)!important;
            background-color: color-mix( in srgb, var(--ryv_color_primary), transparent 80%)!important;
        }

    .rvy-secondary-button,
    body .et_pb_module .rvy-secondary-button {
        color: var(--rvy_color_dark);
        font-weight: 400;
        border-color: var(--rvy_color_dark);
        background-color: #fff;
    }
        .rvy-secondary-button:hover,
        body .et_pb_module .rvy-secondary-button:hover {
            font-weight: 400;
            border-color: var(--rvy_color_dark);
            background-color: color-mix( in srgb, #fff, var(--rvy_color_dark) 20%);
        }

    .rvy-tertiary-button,
    body .et_pb_module .rvy-tertiary-button {
        color: #fff;
        font-weight: 400;
        border-color: var(--rvy_color_dark);
        background-color: var(--rvy_color_dark);
    }
        .rvy-tertiary-button:hover,
        body .et_pb_module .rvy-tertiary-button:hover {
            font-weight: 400;
            border-color: color-mix( in srgb, var(--rvy_color_dark), #fff 20%);;
            background-color: color-mix( in srgb, var(--rvy_color_dark), #fff 20%);
        }

    .rvy-quaternary-button,
    body .et_pb_module .rvy-quaternary-button {
        color: var(--rvy_color_dark);
        font-weight: 400;
        border-color: var(--rvy_color_secondary);;
        background-color: var(--rvy_color_secondary);
    }
        .rvy-quaternary-button:hover,
        body .et_pb_module .rvy-quaternary-button:hover {
            font-weight: 400;
            border-color: color-mix( in srgb, var(--rvy_color_secondary), var(--rvy_color_text) 20%);;
            background-color: color-mix( in srgb, var(--rvy_color_secondary), var(--rvy_color_text) 20%);
        }

    .rvy-light-button,
    body .et_pb_module .rvy-light-button {
        color: var(--rvy_color_light);
        font-weight: 400;
        border-color: var(--rvy_color_light);
        background-color: var(--rvy_color_light);
    }
        .rvy-light-button:hover,
        body .et_pb_module .rvy-light-button:hover {
            font-weight: 400;
            border-color: color-mix( in srgb, var(--rvy_color_dark), var(--rvy_color_text) 20%);
            background-color: color-mix( in srgb, var(--rvy_color_dark), var(--rvy_color_text) 20%);
        }

    .rvy-light-button.bordered,
    body .et_pb_module .rvy-light-button.bordered {
        border-color: var(--rvy_color_light);
        background-color: transparent;
    }
        .rvy-light-button.bordered:hover,
        body .et_pb_module .rvy-light-button.bordered:hover {
            border-color: color-mix( in srgb, var(--rvy_color_light), var(--rvy_color_text) 20%);
            background-color: color-mix( in srgb, var(--rvy_color_light), transparent 80%);
        }


    .rvy-button.small-button,
    body .et_pb_module .rvy-button.small-button {
        padding: 5px 10px;
        font-size: 11px;
    }
    .rvy-primary-button.is-bg {
        color: #fff!important;
        background-color: transparent!important;
        border-color: #fff!important;
    }
        .rvy-primary-button.is-bg:hover {
            color: color-mix( in srgb, #fff, var(--rvy_color_text) 20%)!important;
            border-color: color-mix( in srgb, #fff, var(--rvy_color_text) 20%)!important;
            background-color: color-mix( in srgb, #fff, transparent 80%)!important;
        }
    .rvy-button.large,
    body .et_pb_module .rvy-button.large {
        padding-left: 60px;
        padding-right: 60px;
    }

    /* round button */
    .rvy-button-round,
    body #page-container .et_pb_section .et_pb_module .rvy-button-round {
        display: inline-block;
        margin: 0;
        padding: 0!important;
        width: 45px;
        height: 45px;
        line-height: 41px;
        color: #fff;
        font-size: 25px!important;
        font-weight: 300;
        text-align: center;
        transition: all 0.2s;
        border-radius: 50%;
        border: 1px solid #fff;
        overflow: hidden;
    }

    .rvy-button-round:hover,
    body #page-container .et_pb_section .et_pb_module .rvy-button-round:hover {
        padding: 0!important;
        background-color: rgba(0, 0, 0, 0.4);
    }
        .rvy-button-round.light,
        body #page-container .et_pb_section .et_pb_module .rvy-button-round.light {
            color: var(--rvy_color_light);
            border-color: var(--rvy_color_light);
        }

        .rvy-button-round.light:hover,
        body #page-container .et_pb_section .et_pb_module .rvy-button-round.light:hover {
            background-color: color-mix( in srgb, var(--rvy_color_light), transparent 80%);
        }

    .rvy-button.no-bg,
    body .et_pb_module .rvy-button.no-bg {
        background-color: transparent!important;
    }
    .rvy-button.no-bg:hover,
    body .et_pb_module .rvy-button.no-bg:hover {
        background-color: rgba(0, 0, 0, 0.05)!important;
    }

    .rvy-button[disabled],
    .rvy-button[disabled="disabled"],
    body .et_pb_module .rvy-button[disabled],
    body .et_pb_module .rvy-button[disabled="disabled"] {
        opacity: 0.25;
        cursor: no-drop;
    }



/*
-- MARK: DESPLEGABLES
*/
#wrapper button[data-toggle="dropdown"].select-title {
    position: relative;
    display: flex;
    gap: var(--rvy_wrapper_gap);
    align-items: center;
    justify-content: flex-start;
    padding: 0 10px!important;
    line-height: 35px;
    font-weight: 300;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: var(--rvy_color_border);
    background-color: transparent!important;
}
    #wrapper button[data-toggle="dropdown"].select-title:after {
        position: absolute;
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        content: '+';
        color: var(--rvy_color_border);
        font-size: 25px;
        text-align: center;
    }
    #wrapper button[data-toggle="dropdown"][aria-expanded="true"].select-title:after {
        content: '-';
    }
        #wrapper button[data-toggle="dropdown"].select-title > i {
            display: none!important;
        }

/*
-- MARK: PAGINATION
*/
.ps-pagenavi {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--rvy_wrapper_gap_extra);
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: center;
    text-align: center;
    gap: 0;
}
    .ps-pagenavi .page-numbers,
    .ps-pagenavi .spacer {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        width: 32px;
        height: 32px;
        color: var(--rvy_color_text);
        font-size: 15px;
        font-weight: 300;
        transition: all 0.2s;
    }
    .ps-pagenavi .page-numbers.current {
        color: var(--ryv_color_primary);
        font-weight: 700;
        cursor: default;
    }
    .ps-pagenavi .page-numbers.next {
        margin-left: auto;
        width: 100px;
        text-align: right;
    }
    .ps-pagenavi .page-numbers.prev {
        margin-right: auto;
        width: 100px;
        text-align: left;
    } 
        .ps-pagenavi .page-numbers.next:after,
        .ps-pagenavi .page-numbers.prev:after {
            display: block;
            content: '';
        }
        .ps-pagenavi .page-numbers.next:after {
            margin-left: 5px;
            content: '»';
        }
        .ps-pagenavi .page-numbers.prev:before {
            margin-right: 5px;
            content: '«';
        }

    .products + .ps-pagenavi {
        margin-top: var(--rvy_wrapper_gap_extra);
    }

    /* 
    Generamos "huecos invisibles" al principio y al final de la paginación para que esta esté centrada siempre 
    Si no hay botón "prev", generamos un espacio al inicio de la paginación
    Si no hay botón "next", generamos un espacio al final de la paginación
    De esta forma siempre hay equilibrio
    */
    .ps-pagenavi:not(:has(.prev)):before,
    .ps-pagenavi:not(:has(.next)):after {
        width: 100px;
        height: 0;
        content: '';
    }
    .ps-pagenavi:not(.prev):before  {
        margin-right: auto;
    }
    .ps-pagenavi:not(.next):after  {
        margin-left: auto;
    }

    .ps-pagenavi > .st,
    .ps-pagenavi > .sb {
        position: absolute;
        margin: 0 auto;
        width: 100%;
        max-width: 640px;
        height: 1px;
        content: '';
        border-top: 1px solid var(--rvy_color_light);
    }
    .ps-pagenavi > .st {
        top: 0;
    }
    .ps-pagenavi > .sb {
        bottom: 0;
    }
        .ps-pagenavi > .st:before,
        .ps-pagenavi > .sb:before {
            position: absolute;
            top: -7px;
            left: 50%;
            width: 13px;
            height: 13px;
            content: '';
            transform: translate(-50%, 0);
            border-radius: 50%;
            background-color: var(--rvy_color_light);
        }


/**
-- HOME MARK: SLIDER
Forzamos todas las alturas (li, a, img) al 100% para evitar overflows
**/
#carousel {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-bottom: var(--rvy_wrapper_gap_extra);
}
    #carousel .carousel-inner {
        position: relative;
        margin: 0;
        height: 375px;
    }
        #carousel .carousel-inner > li {
            display: block;
            height: 100%;
        }
            #carousel .carousel-inner > li > a {
                display: block;
                height: 100%;
            }
            #carousel figure {
                display: block;
                width: 100%;
                height: 100%;
            }
                #carousel figure img {
                    display: block;
                    margin: 0;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

    #carousel .direction > .carousel-control {
        position: absolute;
        margin: 0;
        padding: 0;
        top: 50%;
        width: 45px;
        height: 45px;
        transform: translate( 0, -50% );
        transition: all 0.2s;
        border-radius: 50%;
        border: 1px solid #fff;
        background-color: transparent;
    }
    #carousel .direction > .carousel-control:hover {
        background-color: rgba( 0, 0, 0, 0.15);
    }
        #carousel .direction > .carousel-control.left {
            left: var(--rvy_wrapper_gap_large);
        }
        #carousel .direction > .carousel-control.right {
            right: var(--rvy_wrapper_gap_large);
        }
            #carousel .direction > .carousel-control > span {
                position: relative;
                display: block;
                margin: 0;
                padding: 0;
                left: auto;
                top: auto;
                right: auto;
                bottom: auto;
                width: 100%;
                height: 100%;
            }
                #carousel .direction > .carousel-control > span:before,
                #carousel .direction > .carousel-control > span:after {
                    position: absolute;
                    content: '';
                }
                #carousel .direction > .carousel-control > span:before {
                    left: 10px;
                    top: 21px;
                    width: 25px;
                    height: 0;
                    border-top: 2px solid #fff!important;
                }
                #carousel .direction > .carousel-control > span:after {
                    left: 10px;
                    top: 17px;
                    width: 10px;
                    height: 10px;
                    transform: rotate(-135deg);
                    border-top: 2px solid #fff!important;
                    border-right: 2px solid #fff!important;
                }
                #carousel .direction > .carousel-control.right > span:after {
                    left: auto;
                    right: 10px;
                    top: 17px;
                    width: 10px;
                    height: 10px;
                    transform: rotate(45deg);
                    border-top: 2px solid #fff!important;
                    border-right: 2px solid #fff!important;
                }
                #carousel .direction > .carousel-control > span > i {
                    display: none;
                }
   
                

/* 
-- MARK: CAROUSEL
*/

.tns-outer {
    display: flex;
    flex-direction: column;
}
    .tns-inner {
        margin: 0;
        padding: 0;
        max-width: 100%;
    }
        .tns-carousel {
            display: flex;
            transition-property: all!important;
            cursor: grab;
        }
        .tns-carousel.mousedrag {
            user-select: none;
            cursor: grabbing; 
        }
            .tns-carousel > .tns-item {
                margin-left: 0!important;
                margin-right: 0!important;
                user-select: none;
                overflow: hidden;
            }
                .tns-carousel .tns-item img {
                    display: block;
                    margin: 0;
                    width: 100%;
                    max-width: 100%;
                    user-select: none;
                }

    /* Buttons */
    .tns-outer .tns-nav {
        position: absolute;
        display: flex;
        flex-direction: row;
        gap: var(--rvy_wrapper_gap);
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
        z-index: 10;
    }
    .tns-outer .tns-nav > button {
        margin: 0;
        padding: 0;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 1px solid var(--rvy_color_dark);
        background-color: transparent;
    }
    .tns-outer .tns-nav > button.tns-nav-active {
        background-color: var(--rvy_color_dark);
    }

    /* Arrows */
    .tns-outer .tns-controls {
        position: relative;
        margin: 0 auto;
        order: 2;
        width: 100%;
        height: 45px; /* la misma altura que los botones */
        max-width: var(--rvy_max_width);
    }
        .tns-outer .tns-controls button {
            position: absolute;
            margin: 0;
            padding: 0;
            bottom: 0;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 1px solid var(--rvy_color_dark);
            background-color: transparent;
        }
            .tns-outer .tns-controls button > span {
                position: relative;
                display: block;
                width: 100%;
                height: 100%;
            }
                .tns-outer .tns-controls button > span:before {
                    position: absolute;
                    left: 10px;
                    top: 21px;
                    width: 25px;
                    height: 0;
                    content: '';
                    border-top: 2px solid var(--rvy_color_dark);
                }
                .tns-outer .tns-controls button > span:after {
                    position: absolute;
                    left: 10px;
                    top: 16px;
                    width: 10px;
                    height: 10px;
                    content: '';
                    transform: rotate(-135deg);
                    border-top: 2px solid var(--rvy_color_dark);
                    border-right: 2px solid var(--rvy_color_dark);
                }
                .tns-outer .tns-controls button[data-controls="next"] > span:after {
                    left: auto;
                    right: 10px;
                    transform: rotate(45deg);
                }

            .tns-outer .tns-controls button:hover {
                background-color: color-mix( in srgb, transparent, var(--rvy_color_dark) 10% );
            }
        .tns-outer .tns-controls button[data-controls="prev"] {
            left: 0;
            background-color: transparent;
        }
        .tns-outer .tns-controls button[data-controls="next"] {
            right: 0;
            background-color: transparent;
        }

/* 
-- MARK: LAYOUT DE COLUMNAS 
*/
.layout-columns,
#wrapper > .container > .row {
    display: flex; 
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    gap: var(--rvy_wrapper_gap_block);
}
    .layout-columns > .layout-column-left,
    #wrapper > .container > .row > #left-column {
        position: relative;
        flex: 0 0 360px;
        padding-right: 0;
        padding-left: 0;
        width: 360px;
        max-width: 100%;
    }
    .layout-columns > .layout-column-right,
    #wrapper > .container > .row > #left-column + #content-wrapper {
        position: relative;
        flex: 1;
        padding-right: 0;
        padding-left: 0;
        width: auto;
    }
        .layout-block-content {
            position: sticky;
            display: flex;
            flex-direction: column;
            top: calc( var(--rvy_NavHeader_Height) + var(--rvy_wrapper_gap_extra) );
            padding: var(--rvy_wrapper_gap);
            /*height: 100%;*/
            gap: 0;
            background-color: #fff;
        }
            .layout-block-content > div:not(:first-child) {
                border-top: 1px solid var(--rvy_color_border);
            }

        /** Módulos **/

        /* Buscador */
        .layout-block-content #search_widget form {
        }
            .layout-block-content #search_widget form button {
                display: block!important;
                position: absolute;
                right: 10px;
                top: 10px;
                border-width: 0;
                background-color: transparent;
                overflow: hidden;
                cursor: pointer;
            }
                .layout-block-content #search_widget form button:focus,
                .layout-block-content #search_widget form button:active {
                    border-width: none!important;
                    outline-width: 0;
                }
            .layout-block-content #search_widget form i.clear {
                position: absolute;
                right: 40px;
            }
            .layout-block-content #search_widget form input {
                padding: 10px 40px 10px 20px;
                background-color: transparent;
            }

        /* Árbol de categorías */
        .layout-block-content .block-categories {
            margin-bottom: 0;
            padding: 0;
        }
        .block-categories ul.category-top-menu {
            margin: 0;
            padding: 0;
        }
        .block-categories li:not([data-depth="0"]) > div > ul.category-sub-menu {
            margin: 0;
            padding-left: calc( var(--rvy_wrapper_gap_large) + 25px ); /* Hay que tener en cuenta que depth=0 y depth=1 tienen imagen o hueco */
        }
            .block-categories > ul.category-top-menu > li:first-child {
                /*display: none;*/
            }
                .block-categories > ul.category-top-menu > li > ul.category-sub-menu,
                .block-categories > ul.category-top-menu > li,
                .block-categories ul.category-sub-menu > li  {
                    position: relative;
                    margin: 0!important;
                    padding: 0!important;
                    line-height: 1!important;
                }
                .block-categories ul.category-menu li > a, 
                .block-categories ul.category-sub-menu li > a {
                    display: flex!important;
                    padding-left: 10px;
                    gap: 10px;
                    align-items: center;
                }
                    .block-categories ul.category-menu > li > a > .image, 
                    .block-categories ul.category-sub-menu > li > a > .image {
                        flex: 0 0 25px;
                        min-width: 25px;
                        height: 25px;
                        overflow: hidden;
                    }
                        .block-categories ul.category-menu > li > a > .image > img, 
                        .block-categories ul.category-sub-menu > li > a > .image > img {
                            display: block;
                            margin: 0;
                            width: 100%;
                            height: 100%;
                        }
                    .block-categories ul.category-menu li > a > .name, 
                    .block-categories ul.category-sub-menu li > a > .name {
                        flex: auto;
                    }
                .block-categories ul.category-sub-menu li.active > a {
                    _color: var(--ryv_color_text)!important;
                    font-weight: 700!important;
                    font-size: 13px!important;
                }
                .block-categories > ul.category-top-menu > li:before,
                .block-categories ul.category-sub-menu > li:before {
                    content: none!important;
                }
                    .block-categories > ul.category-top-menu > li > ul.category-sub-menu > li { /* Solo para el primer nivel de categorías */
                        border-bottom: 1px solid var(--rvy_color_border);
                    }
                    .block-categories > ul.category-top-menu > li > a,
                    .block-categories ul.category-sub-menu > li > a {
                        position: relative;
                        display: block;
                        margin: 0!important;
                        padding: 5px 20px 5px 10px!important;
                        line-height: 1!important;
                        font-size: 13px;
                        text-transform: lowercase;
                    }
                        .block-categories ul.category-sub-menu > li > .collapse > ul.category-sub-menu,
                        .block-categories ul.category-sub-menu > li > .collapsing > ul.category-sub-menu {
                            margin-top: 0;
                            margin-bottom: 0;
                        }
                        .block-categories ul.category-sub-menu > li[data-depth="0"] > .collapse > ul.category-sub-menu,
                        .block-categories ul.category-sub-menu > li[data-depth="0"] > .collapsing > ul.category-sub-menu {
                            margin-top: -10px;
                            margin-bottom: 10px;
                        }
                            .block-categories > ul.category-top-menu > li > ul.category-sub-menu > li > a { /* Solo para el primer nivel de categorías */
                                padding: 15px 20px 15px 10px!important;
                                line-height: 1.2!important;
                                font-weight: 600;
                                text-transform: uppercase!important;
                                text-decoration: none;
                            }
                                .block-categories > ul.category-top-menu > li > ul.category-sub-menu > li > a > .name {
                                    font-weight: 600;
                                    text-transform: uppercase!important;
                                }

                            .block-categories > ul.category-top-menu > li ul.category-sub-menu > li > a:hover,
                            .block-categories > ul.category-top-menu > li ul.category-sub-menu > li > a:focus,
                            .block-categories > ul.category-top-menu > li ul.category-sub-menu > li > a:active {
                                text-decoration: none;
                            }
                                .block-categories > ul.category-top-menu > li > a > .name,
                                .block-categories ul.category-sub-menu > li > a > .name {
                                    text-transform: lowercase;
                                }
                                .block-categories > ul.category-top-menu > li > a > .name:first-letter,
                                .block-categories ul.category-sub-menu > li > a > .name:first-letter {
                                    text-transform: uppercase;
                                }
                            
                                .block-categories > ul.category-top-menu > li > .collapse.in a,
                                .block-categories ul.category-sub-menu > li > .collapse.in a {
                                    color: var(--ryv_color_primary);
                                }
                            
                            .block-categories > ul.category-top-menu > li > a + .navbar-toggler,
                            .block-categories > ul.category-top-menu > li > a + .arrows,
                            .block-categories ul.category-sub-menu > li > a + .navbar-toggler,
                            .block-categories ul.category-sub-menu > li > a + .arrows {
                                position: absolute;
                                right: 0;
                                top: 2px;
                                width: 20px;
                                height: 20px;
                                cursor: pointer
                            } 
                            .block-categories > ul.category-top-menu > li > ul.category-sub-menu > li > a + .navbar-toggler,
                            .block-categories > ul.category-top-menu > li > ul.category-sub-menu > li > a + .arrows {
                                top: 14px;
                            }
                                .block-categories > ul.category-top-menu > li > a + .navbar-toggler:before,
                                .block-categories > ul.category-top-menu > li > a + .arrows:before,
                                .block-categories ul.category-sub-menu > li > a + .navbar-toggler:before,
                                .block-categories ul.category-sub-menu > li > a + .arrows:before {
                                    position: absolute;
                                    top: 3px;
                                    left: 5px;
                                    width: 7px;
                                    height: 7px;
                                    content: '';
                                    transform: rotate(45deg);
                                    transition: all 0.2s;
                                    border-width: 0 1px 1px 0;
                                    border-style: solid;
                                    border-color: #000;
                                }
                                .block-categories > ul.category-top-menu > li:has( > .in) > a + .navbar-toggler:before,
                                .block-categories > ul.category-top-menu > li:has( > .in) > a + .arrows:before,
                                .block-categories ul.category-sub-menu > li:has( > .in) > a + .navbar-toggler:before,
                                .block-categories ul.category-sub-menu > li:has( > .in) > a + .arrows:before {
                                    top: 7px;
                                    transform: rotate(-135deg);
                                }
                                
                                .block-categories > ul.category-top-menu > li > a + .navbar-toggler > i,
                                .block-categories > ul.category-top-menu > li > a + .arrows > i,
                                .block-categories ul.category-sub-menu > li > a + .navbar-toggler > i,
                                .block-categories ul.category-sub-menu > li > a + .arrows > i {
                                    display: none!important;
                                } 


        /* 
        Arbol de marcas ( No existe y lo generamos ) 
        Heredamos las clases de ps_category_list
        */
        .layout-block-content #search_filters_brands {
            padding: 0;
            border-top-width: 0;
        }
        .layout-block-content #search_filters_brands ul.category-sub-menu {
            padding-left: calc( var(--rvy_wrapper_gap_large) + 5px );
        }


        /* para mantener las categorías cerradas solo en móvil */
        @media (max-width: 810px) {
            html body #wrapper > .container > .row > #left-column {
                width: 100vw;
                max-width: 100vw;
                margin-left: calc( 50% - 50vw );
            }
            html body .category-header > .category-header-content {
                position: relative;
                display: flex;
                flex-direction: column;
                gap: var(--rvy_wrapper_gap);
                align-items: flex-start;
                justify-content: flex-start;
                z-index: 10;
            }
                html body .category-header > .category-header-content > .category-header-content-title {
                    text-align: left;
                }
        }
         
        
/*
-- MARK: MIGA DE PAN
*/
#wrapper .breadcrumb {
    position: relative;
    margin: 0;
    padding: var(--rvy_wrapper_gap) 0;
}
    #wrapper .breadcrumb > ol {
        
    }
        #wrapper .breadcrumb > ol > li {
            color: var(--ryv_color_text);
            font-size: 12px;
            font-weight: 400;
            cursor: default;
        }
            #wrapper .breadcrumb > ol > li > a,
            #wrapper .breadcrumb > ol > li > a > span {
                display: inline-block;
                color: var(--ryv_color_text);
                font-size: 12px;
                text-transform: lowercase;
            }
                #wrapper .breadcrumb > ol > li > a:first-letter,
                #wrapper .breadcrumb > ol > li > a > span:first-letter {
                    text-transform: uppercase!important;
                }
            #wrapper .breadcrumb > ol > li > a:hover,
            #wrapper .breadcrumb > ol > li > a:hover > span {
                color: var(--ryv_color_primary);
                font-size: 12px;
            }




/*
-- MARK: BANNERS HOME
*/
.ryv-banners-home {
    position: relative;
    margin: 0;
}
    .ryv-banners-home-title {
        margin: 0 0 var(--rvy_wrapper_gap) auto;
        text-align: center;
    }
    .ryv-banners-home-description {
        margin: 0 auto var(--rvy_wrapper_gap_large) auto;
        max-width: 510px;
        text-align: center;
    }

    .ryv-banners-home_wrapper {
        --gap: var(--rvy_wrapper_gap_large);
        --columns: 2;
        --columns_width: calc((100% / var(--columns)) - ((var(--gap) * (var(--columns) - 1)) / var(--columns)));
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--gap);
    }
        .ryv-banners-home_wrapper .ryv-banners-home-item {
            position: relative;
            flex: 0 0 var(--columns_width);
            width: var(--columns_width);
            aspect-ratio: 7/3;
            border-radius: var(--rvy_wrapper_radius);
            overflow: hidden;
        }
        .ryv-banners-home_wrapper .ryv-banners-home-item > a {
            position: relative;
            display: block;
            width: 100%;
            height: 100%;
        }
            .ryv-banners-home_wrapper .ryv-banners-home-item > a:before {
                position: absolute;
                inset: 0;
                content: '';
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 10;
            }
            .ryv-banners-home_wrapper .ryv-banners-home-item > a > img {
                display: block;
                margin: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                z-index: 5;
            }
            .ryv-banners-home_wrapper .ryv-banners-home-item > a > .ryv-banners-home-item-title {
                position: absolute;
                display: flex;
                margin: 0;
                inset: 0;
                align-items: center;
                justify-content: center;
                color: #fff;
                font-size: 36px;
                font-weight: 300;
                text-align: center;
                text-transform: uppercase;
                z-index: 15;
            }





/*
-- MARK: LISTADO DE PRODUCTOS
*/

/* Switchet */
.products-switcher { 
    position:relative; 
    display: inline-flex;
    height: 35px;
    border-radius: 3px;
    border:1px solid #ccc;
    background-color: #eee;
    overflow: hidden;
}
    .products-switcher > .products-switcher-item {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px; 
        height: 35px; 
        line-height: 1;
        cursor:pointer; 
    }
    .products-switcher > .products-switcher-item.active {
        background-color: rgba(0, 0, 0, 0.1);
    }
        .products-switcher > .products-switcher-item > svg {
            width: 16px;
            height: 16px;
            fill: #000;
        }
            .products-switcher > .products-switcher-item > svg > path {
                fill: var(--ryv_color_primary);
            }

/* Total productos */
.products-selection .total-products {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--rvy_wrapper_gap);
}
    .products-selection .total-products p {
        margin: 0;
    }

.rvy-newproducts .total-products {
    padding: var(--rvy_wrapper_gap) 0;
}

/* Listado */
.products {
    --gap: var(--rvy_wrapper_gap_large);
    --columns: 4;
    --columns_width: calc((100% / var(--columns)) - ((var(--gap) * (var(--columns) - 1)) / var(--columns)));
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    max-width: 100%;
    gap: var(--gap);
}
.products.list-view {
    --gap: var(--rvy_wrapper_gap_large);
    --columns: 2;
    --columns_width: calc((100% / var(--columns)) - ((var(--gap) * (var(--columns) - 1)) / var(--columns)));
    flex-direction: row;
    gap: var(--gap);
}
.rvy-newproducts .products.list-view,
#category .products.list-view {
    --columns: 1;
}
    /* Item */
    .products > .product {
        display: block;
        flex: 0 0 var(--columns_width);
        margin: 0;
        padding: 0;
        width: var(--columns_width);
        transition: all 0.3s;
        overflow: hidden;
    }
        .products > .product > .product-miniature {
            height: 100%;
        }
            .products > .product > .product-miniature > .thumbnail-container {
                display: flex;
                flex-direction: column;
                margin: 0;
                width: 100%;
                background-color: transparent!important;
            }
            .products.list-view > .product > .product-miniature > .thumbnail-container {
                flex-direction: row;
                gap: var(--rvy_wrapper_gap);
            }
            
        
        /* Imagen de producto */
        .products > .product > .product-miniature .thumbnail-top {
            display: block;
            margin: 0 0 var(--rvy_wrapper_gap) 0;
            width: 100%;
            aspect-ratio: 1/1;
            transition: all 0.3s;
            border-radius: var(--rvy_wrapper_radius);
            overflow: hidden;
        }
        .products.list-view > .product > .product-miniature .thumbnail-top {
            margin: 0;
            width: 150px;
            height: 150px;
        }
            .products > .product > .product-miniature .thumbnail-top > .product-thumbnail {
                display: block;
                width: 100%;
                height: 100%;
                overflow: hidden;
            }
                .products > .product > .product-miniature .thumbnail-top > .product-thumbnail img {
                    display: block;
                    margin: 0;
                    width: 100%;
                    height: 100%;
                    transition: all 0.2s;
                    object-fit: cover;
                }
                .products > .product:hover > .product-miniature .thumbnail-top > .product-thumbnail img {
                    transform: scale(1.2);
                }
        
        /* Decripción */
        .products > .product > .product-miniature .product-description {
            display: flex;
            flex-direction: column;
            flex: 1;
            margin: 0 0 var(--rvy_wrapper_gap) 0;
            padding: 0;
            gap: var(--rvy_wrapper_gap);
            background-color: transparent;
        }
            .products > .product > .product-miniature .product-description:before,
            .products > .product > .product-miniature .product-description:after {
                content: none;
            }

            .products > .product > .product-miniature .product-description > .product-description-content {
                display: none;
            }
            .products.list-view > .product > .product-miniature .product-description > .product-description-content {
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
        
        /* Ver producto */
        .products > .product > .product-miniature .product-view {
            display: flex;
            margin-top: auto;
            width: 100%;
            align-items: center;
            justify-content: center;
        }
        .products.list-view > .product > .product-miniature .product-view {
            align-items: flex-start;
            justify-content: flex-start;
        }
            .products > .product > .product-miniature .product-view > a {
                display: block;
                margin: var(--rvy_wrapper_gap_small) auto 0 auto;
                width: 45px;
                height: 45px;
                line-height: 38px;
                color: var(--rvy_color_border);
                font-size: 28px;
                font-weight: 300;
                text-align: center;
                transition: all 0.2s;
                border-radius: 50%;
                border: 1px solid var(--rvy_color_border);
            }
            .products.products.list-view > .product > .product-miniature .product-view > a {
                margin: 0;
                width: 30px;
                height: 30px;
                line-height: 23px;
            }
            .products > .product:hover > .product-miniature .product-view > a {
                color: var(--ryv_color_primary);
                border-color: var(--ryv_color_primary);
            }
        
        /* Estado del producto */
        .products > .product > .product-miniature ul.product-flags {
            position: absolute;
            display: flex;
            flex-direction: column;
            gap: 3px;
            top: 10px;
            left: 10px;
            align-items: flex-start;
            justify-content: flex-start;
            pointer-events: none;
            z-index: 2;
        }
            .products > .product > .product-miniature ul.product-flags > li.product-flag {
                position: relative;
                margin: 0;
                padding: 3px 10px;
                line-height: 1;
                min-height: 1px;
                min-width: none;
                color: var(--rvy_color_tertiary);
                font-size: 11px;
                font-weight: 500;
                text-transform: uppercase;
                letter-spacing: 2%;
                border-radius: 50px;
                background-color: var(--rvy_color_light);
            }
            .products > .product > .product-miniature ul.product-flags > li.product-flag.out_of_stock {
                color: #fff;
                background-color: var(--rvy_color_alert);
            }
        
        /* Título */
        .products > .product > .product-miniature .product-description > .product-title {
            margin: 0;
        }
            .products > .product > .product-miniature .product-description > .product-title,
            .products > .product > .product-miniature .product-description > .product-title > a {
                color: var(--ryv_color_text_dark)!important;
                font-size: 20px;
                text-align: left;
            }
            .products > .product:hover > .product-miniature .product-description > .product-title > a {
                color: var(--ryv_color_primary);
                border-width: 0;
            }
        
        /* Favoritos */
        .products > .product > .product-miniature .wishlist-button-add {
            position: absolute;
            top: 10px;
            right: 10px;
            border-radius: 5px;
            box-shadow: none;
            background-color: #eee;
        }
        .products > .product > .product-miniature .wishlist-button-add > i {
            color: #900;
        }
        

/*
-- MARK: LISTADO DE CATEGORÍAS
*/
.category-header {
    position: relative;
    margin-bottom: 0;
    width: 100%;
}
    .category-header > .category-header-content {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: var(--rvy_wrapper_gap);
        align-items: flex-end;
        justify-content: flex-end;
        z-index: 10;
    }
    .category-header.category-brands > .category-header-content .category-header-content-title {
        display: flex;
        gap: var(--rvy_wrapper_gap);
    }
        .category-header.category-brands > .category-header-content .category-header-content-title img {
            height: 60px;
            width: auto;
            border: 1px solid #ccc;
        }
    .category-header.category-brands > .category-header-content {
        align-items: flex-start;
        justify-content: flex-start;
    }
    .category-header.has-bg > .category-header-content {
        padding: var(--rvy_wrapper_gap_large);
        min-height: 260px;
        color: #fff;
    }
    .category-header > .category-header-cover {
        position: absolute;
        inset: 0;
        z-index: 0;
    }
        .category-header > .category-header-cover:has( img.custom ):before {
            position: absolute;
            inset: 0;
            content: '';
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 0;
        }
        .category-header > .category-header-cover img {
            display: block;
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    .category-header .category-header-content-title,
    .category-header .category-header-content-description,
    .category-header .category-header-content-description > p {
        color: var(--ryv_color_text);
        text-align: right;
    }
    .category-header.category-brands .category-header-content-title,
    .category-header.category-brands .category-header-content-description,
    .category-header.category-brands .category-header-content-description > p {
        color: var(--ryv_color_text);
        text-align: left;
    }
    .category-header.has-bg .category-header-content-title,
    .category-header.has-bg .category-header-content-description,
    .category-header.has-bg .category-header-content-description > p {
        color: #fff;
    }
        .category-header-content-title {
            font-size: 48px;
        }
        .category-header-content-description {
            position: relative;
            max-width: 650px;
        }
            .category-header-content-description > p:last-child {
                margin-bottom: 0;
            }
    
    /* Carousel logos */
    .category-logos-carousel-wrapper {
        margin-top: var(--rvy_wrapper_gap_large);
        margin-bottom: var(--rvy_wrapper_gap_large);
    }
        .category-logos-carousel-wrapper .category-logos-carousel  {
            align-items: center;
            justify-content: center;
        }
            .category-logos-carousel-wrapper .category-logos-carousel .logo-item.tns-item {
                padding-left: 15px;
                padding-right: 15px;
                overflow: hidden;
            }
                .category-logos-carousel-wrapper .category-logos-carousel img  {
                    max-width: 200px!important;
                }
                
        .category-logos-carousel-wrapper .tns-outer .tns-nav {
            position: relative;
            margin-top:var(--rvy_wrapper_gap);
            justify-content: flex-end;
            order: 2;
            user-select: none;
        }

        .category-logos-carousel-wrapper button[data-action="stop"],
        .category-logos-carousel-wrapper button[data-action="start"] {
            display: none!important;
        }


/*
-- MARK: LISTADO DE MARCAS
*/

#manufacturer #main h1 {
    margin-bottom: var(--rvy_wrapper_gap);
}

.brands-description {
    position: relative;
    max-width: 650px;
    color: var(--ryv_color_text);
    text-align: left;
}
/* Listado */
.brands {
    --gap: var(--rvy_wrapper_gap_large);
    --columns: 6;
    --columns_width: calc((100% / var(--columns)) - ((var(--gap) * (var(--columns) - 1)) / var(--columns)));
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    max-width: 100%;
    gap: var(--gap);
}

    /* Item */
    .brands > .brand {
        display: flex;
        flex-direction: column;
        position: relative;
        flex: 0 0 var(--columns_width);
        margin: 0;
        padding: 0;
        gap: var(--rvy_wrapper_gap);
        width: var(--columns_width);
        transition: all 0.3s;
        overflow: hidden;
    }          
        /* Imagen de marca */
        .brands > .brand > .brand-img {
            display: block;
            margin: 0;
            width: 100%;
            aspect-ratio: 1/1;
            transition: all 0.3s;
            border-radius: var(--rvy_wrapper_radius);
            overflow: hidden;
        }
            .brands > .brand > .brand-img img {
                display: block;
                margin: 0;
                width: 100%;
                height: 100%;
                transition: all 0.2s;
                object-fit: cover;
            }
            .brands > .brand:hover > .brand-img img {
                transform: scale(1.2);
            }
        
        /* Decripción */
        .brands > .brand > .brand-description {
            display: flex;
            flex-direction: column;
            flex: 1;
            margin: 0 0 var(--rvy_wrapper_gap) 0;
            padding: 0;
            gap: var(--rvy_wrapper_gap);
            background-color: transparent;
        }
            .brands > .brand > .brand-description:before,
            .brands > .brand > .brand-description:after {
                content: none;
            }

            .brands > .brand > .brand-description > .brand-title {
                color: var(--ryv_color_text_dark) !important;
                font-size: 18px;
                text-align: center;
            }
            .brands > .brand > .brand-description > .brand-description-content {
                _display: none;
            }

            .brands > .brand > .brand-description > .brand-view {
                display: flex;
                margin-top: auto;
                width: 100%;
                align-items: center;
                justify-content: center;
            }
                .brands > .brand > .brand-description > .brand-view > a {
                    display: block;
                    margin: var(--rvy_wrapper_gap_small) auto 0 auto;
                    width: 45px;
                    height: 45px;
                    line-height: 38px;
                    color: var(--rvy_color_border);
                    font-size: 28px;
                    font-weight: 300;
                    text-align: center;
                    transition: all 0.2s;
                    border-radius: 50%;
                    border: 1px solid var(--rvy_color_border);
                }
                .brands > .brand:hover > .brand-description > .brand-view > a {
                    color: var(--ryv_color_primary);
                    border-color: var(--ryv_color_primary);
                }

        .brands > .brand > .brand-total {
            position: absolute;
            display: none;
            left: 10px;
            top: 10px;
            padding: 3px 10px;
            line-height: 1;
            color: var(--rvy_color_tertiary);
            font-size: 11px;
            font-weight: 500;
            text-transform: uppercase;
            text-decoration: none;
            letter-spacing: 2%;
            transition: 0.2s;
            border-radius: 50px;
            background-color: var(--rvy_color_light);
            z-index: 10;
        }
        

/*
-- MARK: MÓDULOS
*/
.featured-products {
    margin: 0!important;
}
    .featured-products > .products-section-title {
        position: relative;
        margin: 0 0 var(--rvy_wrapper_gap_extra) 0;
        padding: 0;
        line-height: 1;
        text-align: left;
        text-transform: none!important;
    }
    .featured-products .products + .all-product-link {
        position: relative;
        display: block;
        margin: var(--rvy_wrapper_gap_extra) auto;
        padding: 10px 20px;
        line-height: 1;
        width: fit-content;
        color: #fff !important;
        font-family: 'inter', Arial, Helvetica, sans-serif;
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        text-align: center;
        float: none!important;
        clear: both!important;
        transition: all 0.2s linear;
        border-radius: 50px;
        border-width: 0;
        background-color: var(--ryv_color_primary);
        cursor: pointer;
    }
    .featured-products .products + .all-product-link:hover {
        background-color: color-mix(in srgb, var(--ryv_color_primary), #fff 20%);
    }
        .featured-products .products + .all-product-link > i {
            display: none;
        }


/*
--- MARK: Single product layout
*/
#product #wrapper {
  /*max-width: 1600px;*/
}

@media (max-width: 850px) {
  #product .layout-column-left {
    flex: 1 1 auto;

    width: 100%;
  }

  #product .layout-column-right {
    flex: 1 1 auto;
    
    width: 100%;
  }
}


/*
--- MARK: Single product card
*/
.single-product-card {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rvy_wrapper_gap_large);
  padding: var(--rvy_wrapper_gap_large);
  border-radius: var(--rvy_wrapper_radius);

  background-color: #fff;
}

.single-product-slider-container {
  width: calc(50% - 16px);
}

.single-product-slider-container .product-cover {
    position: relative;
    margin: 0;
    overflow: hidden;
}
    .single-product-slider-container .product-cover img {
        transition: all 0.2s;
    }
    .single-product-slider-container .product-cover .layer > i {
        display: none!important;
    }
    .single-product-slider-container .product-cover:has( .layer:hover ) img {
        transform: scale(1.2);
    }
        .single-product-slider-container .product-cover .layer:hover {
            background-color: rgba(0,0,0,0)
        }

.single-product-slider-container .js-images-container {
  position: relative;

  margin-bottom: 60px;
}

.single-product-slider-container .js-qv-mask {
  position: absolute;
  top: calc(100% - 32px);
  left: 0;
  width: 100%;
  margin: 0;
  padding-inline: 20px;
}

.single-product-slider-container ul.js-qv-product-images {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;

  overflow-x: scroll;

  margin: 0;
  padding-bottom: 8px;
}

.single-product-slider-container ul.js-qv-product-images::-webkit-scrollbar {
  height: 8px;
}

.single-product-slider-container ul.js-qv-product-images::-webkit-scrollbar-thumb {
  border-radius: 8px;

  background: var(--rvy_color_border);
}

.single-product-slider-container ul.js-qv-product-images::-webkit-scrollbar-track {
  /* Background */
  background: transparent;
}

.single-product-slider-container ul.js-qv-product-images li.js-thumb-container {
  flex-shrink: 0;
  display: block;
  width: 90px;
  height: 90px;
  padding: 5px;
  background-color: #fff;
  transition: background-color .3s;
}

.single-product-slider-container ul.js-qv-product-images li.js-thumb-container:has(.js-thumb.selected) {
  background-color: var(--rvy_color_border);
}

.single-product-slider-container ul.js-qv-product-images li.js-thumb-container :is(picture, img) {
  max-width: 100%;
  max-height: 100%;

  margin: 0;
  padding: 0;
}

#product .single-product-slider-container .product-images>li.thumb-container .thumb {
  margin: 0;
  border: none;
}

.single-product-data-container {
  display: flex;
  flex-direction: column;
  gap: 16px;

  width: calc(50% - 16px);
}

.single-product-data-container>* {
  margin: 0;
}

.single-product-categories-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.single-product-categories-container li {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  text-decoration: none;
  gap: var(--rvy_wrapper_gap_small);
}
    .single-product-categories-container li a {
        padding: 3px 10px;
        line-height: 1;
        color: var(--rvy_color_tertiary);
        font-size: 11px;
        font-weight: 500;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 2%;
        transition: all 0.2s;
        border-radius: 50px;
        background-color: var(--rvy_color_light);
    }
    .single-product-categories-container li a:hover {
        background-color: color-mix( in srgb, var(--rvy_color_light), #000 10%)
    }

.single-product-ref {
  font-family: var(--rvy_text_font);
  font-size: .9em;
  font-weight: 400;

  color: var(--ryv_color_text);
}

.single-product-ref span {
  font-weight: 700;
}

.single-product-title {
  font-family: var(--rvy_title_font);
  font-size: 2.65em;
  font-weight: 700;
  color: var(--ryv_color_text);
}
.single-product-subtitle {
    color: var(--ryv_color_primary);
    font-family: var(--rvy_text_font);
    font-size: var(--rvy_font_size);
    font-weight: 600;
}

.single-product-description {
  display: flex;
  flex-direction: column;
  gap: 8px;
  
  font-family: var(--rvy_text_font);
}

.single-product-description > * {
  margin-bottom: 0;
}

.single-product-description :is(h2, h3, h4) {
  margin-bottom: 8px;

  font-size: 1.1em;
  font-weight: 700;

  color: var(--ryv_color_text);
}

.single-product-description iframe {
  border-radius: var(--rvy_wrapper_radius);
}

.single-product-description p {
    margin-bottom: var(--rvy_wrapper_gap);
    font-size: .9em;
    color: var(--ryv_color_text);
}

.single-product-description ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;

  padding: 16px;
  padding-right: 0;
}

.single-product-description ul li {
  padding-left: 8px;
  font-size: .9em;
  font-weight: 400;

  color: var(--ryv_color_text);
}

.single-product-description ul li::marker {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='9' viewBox='0 0 13 9' fill='none'%3E%3Cpath d='M11.9182 1.46988C12.0537 1.6053 12.1214 1.76973 12.1214 1.96319C12.1214 2.15664 12.0537 2.32107 11.9182 2.45649L5.67941 8.69533C5.54399 8.83075 5.37956 8.89846 5.18611 8.89846C4.99265 8.89846 4.82822 8.83075 4.6928 8.69533L1.08008 5.08261C0.944661 4.94719 0.876953 4.78276 0.876953 4.5893C0.876953 4.39585 0.944661 4.23142 1.08008 4.096L2.06669 3.10939C2.2021 2.97398 2.36654 2.90627 2.55999 2.90627C2.75344 2.90627 2.91788 2.97398 3.05329 3.10939L5.18611 5.24946L9.94503 0.483276C10.0805 0.34786 10.2449 0.280151 10.4383 0.280151C10.6318 0.280151 10.7962 0.34786 10.9316 0.483276L11.9182 1.46988Z' fill='%23DDC685'/%3E%3C/svg%3E");
}

.product-details-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
    .product-details-list > .product-details-list-value {
        position: relative;
        margin: 0 0 5px 0;
        padding: 0 0 0 20px;
        color: #000;
        font-size: 13px;
        background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2213%22%20height%3D%229%22%20viewBox%3D%220%200%2013%209%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M11.9182%201.46988C12.0537%201.6053%2012.1214%201.76973%2012.1214%201.96319C12.1214%202.15664%2012.0537%202.32107%2011.9182%202.45649L5.67941%208.69533C5.54399%208.83075%205.37956%208.89846%205.18611%208.89846C4.99265%208.89846%204.82822%208.83075%204.6928%208.69533L1.08008%205.08261C0.944661%204.94719%200.876953%204.78276%200.876953%204.5893C0.876953%204.39585%200.944661%204.23142%201.08008%204.096L2.06669%203.10939C2.2021%202.97398%202.36654%202.90627%202.55999%202.90627C2.75344%202.90627%202.91788%202.97398%203.05329%203.10939L5.18611%205.24946L9.94503%200.483276C10.0805%200.34786%2010.2449%200.280151%2010.4383%200.280151C10.6318%200.280151%2010.7962%200.34786%2010.9316%200.483276L11.9182%201.46988Z%22%20fill%3D%22%23DDC685%22%2F%3E%3C%2Fsvg%3E");
        background-position: 0 5px;
        background-repeat: no-repeat;
        cursor: default;
    }
        .product-details-list > .product-details-list-value > span { 
            display: block;
            position: relative;
            color: #000;
            font-size: 13px;
            text-transform: lowercase;
        }
        .product-details-list > .product-details-list-value > span:first-letter {
            text-transform: uppercase;
        }

.single-product-attachments {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.single-product-attachments h3 {
    margin-botom: var(--rvy_wrapper_gap_small);
    font-family: var(--rvy_title_font);
    font-size: 1.3em;
    font-weight: 500;

    color: var(--ryv_color_text);
}

.single-product-attachments ul {
  display: flex;
  flex-direction: column;

  padding-left: 48px;
}

.single-product-attachments li::marker {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='12' viewBox='0 0 13 12' fill='none'%3E%3Cpath d='M9.14788 10.9336C9.23977 10.8417 9.28571 10.7329 9.28571 10.6071C9.28571 10.4814 9.23977 10.3726 9.14788 10.2807C9.05599 10.1888 8.94717 10.1429 8.82143 10.1429C8.69568 10.1429 8.58687 10.1888 8.49498 10.2807C8.40309 10.3726 8.35714 10.4814 8.35714 10.6071C8.35714 10.7329 8.40309 10.8417 8.49498 10.9336C8.58687 11.0255 8.69568 11.0714 8.82143 11.0714C8.94717 11.0714 9.05599 11.0255 9.14788 10.9336ZM11.005 10.9336C11.0969 10.8417 11.1429 10.7329 11.1429 10.6071C11.1429 10.4814 11.0969 10.3726 11.005 10.2807C10.9131 10.1888 10.8043 10.1429 10.6786 10.1429C10.5528 10.1429 10.444 10.1888 10.3521 10.2807C10.2602 10.3726 10.2143 10.4814 10.2143 10.6071C10.2143 10.7329 10.2602 10.8417 10.3521 10.9336C10.444 11.0255 10.5528 11.0714 10.6786 11.0714C10.8043 11.0714 10.9131 11.0255 11.005 10.9336ZM12.0714 8.98214V11.3036C12.0714 11.497 12.0037 11.6615 11.8683 11.7969C11.7329 11.9323 11.5685 12 11.375 12H0.696429C0.502976 12 0.338542 11.9323 0.203125 11.7969C0.0677083 11.6615 0 11.497 0 11.3036V8.98214C0 8.78869 0.0677083 8.62425 0.203125 8.48884C0.338542 8.35342 0.502976 8.28571 0.696429 8.28571H4.06975L5.04911 9.27232C5.32961 9.54315 5.65848 9.67857 6.03571 9.67857C6.41295 9.67857 6.74182 9.54315 7.02232 9.27232L8.00893 8.28571H11.375C11.5685 8.28571 11.7329 8.35342 11.8683 8.48884C12.0037 8.62425 12.0714 8.78869 12.0714 8.98214ZM9.71373 4.85435C9.79595 5.05264 9.76209 5.22191 9.61217 5.36216L6.36217 8.61216C6.27511 8.70405 6.1663 8.75 6.03571 8.75C5.90513 8.75 5.79632 8.70405 5.70926 8.61216L2.45926 5.36216C2.30934 5.22191 2.27548 5.05264 2.3577 4.85435C2.43992 4.66573 2.58259 4.57143 2.78571 4.57143H4.64286V1.32143C4.64286 1.19568 4.6888 1.08686 4.78069 0.994975C4.87258 0.903085 4.9814 0.85714 5.10714 0.85714H6.96429C7.09003 0.85714 7.19885 0.903085 7.29074 0.994975C7.38263 1.08686 7.42857 1.19568 7.42857 1.32143V4.57143H9.28571C9.48884 4.57143 9.63151 4.66573 9.71373 4.85435Z' fill='%23A79055'/%3E%3C/svg%3E");
}

.single-product-attachments li a {
  padding-left: 8px;

  font-size: .9em;
  font-weight: 400;
  text-decoration: underline;

  color: var(--ryv_color_text);

  transition: color .3s;
}

.single-product-attachments li:hover a {
  color: var(--rvy_color_border);
}

@media (max-width: 1019px) {
  :is(.single-product-slider-container, .single-product-data-container) {
    width: 100%;
  }

  #product #main .images-container .js-qv-mask.scroll {
    width: 100%;
  }
}

/*
--- MARK: Single product socials
*/
.single-product-socials-container {
  display: flex;
  justify-content: center;

  margin-block: 24px;
}

.single-product-socials-container ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;

  width: fit-content;
  max-width: 100%;

  padding-block: 16px;
  border-top: 1px solid var(--rvy_color_light);
  border-bottom: 1px solid var(--rvy_color_light);
}

.single-product-socials-container li {
  display: flex;
  justify-content: center;
  align-items: center;
  
  width: 35px;
  height: 35px;

  border-radius: 100%;

  background-color: var(--rvy_color_light);

  transition: transform .25s;
}

.single-product-socials-container li:hover {
  transform: scale(1.2);
}

.single-product-socials-container li :is(a, button) {
  display: flex;
  justify-content: center;
  align-items: center;
  
  width: 100%;
  height: 100%;
}

.single-product-socials-container li button {
  border: none;

  background-color: transparent;
  outline: none;

  -webkit-appearance: none;
  appearance: none;
}

/*
--- MARK: Single product video
*/
.single-product-video-container {
  display: flex;
  flex-direction: column;
  gap: 24px;

  margin-block: 40px;
}
    .single-product-video-container h2 {
    font-family: var(--rvy_title_font);
    font-size: 2.6em;
    font-weight: 500;

    color: var(--ryv_color_text);
    }
    .single-product-video-container iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 1920 / 980;
    }

/*
--- MARK: Single product marcas
*/
.single-product-marca-section {
    margin: -10px 0;
}
    .single-product-marca-section > a {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        align-items: center;
        color: var(--ryv_color_primary);
        font-weight: 600;
    }
        .single-product-marca-section > a > .img {
            display: flex;
            width: 30px;
            height: 30px;
            align-items: center;
            justify-content: center;
            border-radius: 2px;
            border: 1px solid #ccc;
            overflow: hidden;
        }
            .single-product-marca-section > a > .img > img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        .single-product-marca-section > a > .name {

        }

.single-product-marca-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 10px 10px;
}
    .single-product-marca-container h2 {
        width: 100%;
        font-family: var(--rvy_title_font);
        font-size: 1.3em;
        font-weight: 500;
    }
    .single-product-marca-container img {
        flex: 0 0 auto;
        height: 80px;
        width: auto;
    }
    .single-product-marca-container .p {
        flex: 1 1 auto;
        font-family: var(--rvy_text_font);
        font-size: .9em;
        font-weight: 500;
        font-style: italic;
    }
    .single-product-marca-container .p p:last-child {
        margin: 0;
    }
    .single-product-marca-container a {
        flex: 0 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }


@media (max-width: 1019px) {
  .single-product-marca-container {
    justify-content: center;
  }
  .single-product-marca-container :is(h2,.p) {
    width: 100%;

    text-align: center;
  }
}

/*
--- MARK: Productos relacionados
*/
.single-product-relacionados {
  display: flex;
  flex-direction: column;
  gap: 24px;

  margin-block: 24px 40px;
}

.single-product-relacionados h2 {
  font-family: var(--rvy_title_font);
  font-size: 2.6em;
  font-weight: 500;
}



/*
-- MARK: FORMULARIOS 
*/
.cbk-form-group {
    position: relative;
    margin-bottom: var(--rvy_wrapper_gap); 
}
.cbk-col > .cbk-form-group:last-child {
    margin-bottom: 0;
}
    .cbk-form-group div:empty,
    .cbk-form-group keeper-lock {
        display: none!important;
    }
    .cbk-form-group label {
        display: block;
        font-weight: 300;
    }
        .cbk-form-group label > em {
            margin-left: var(--rvy_wrapper_gap);
        }
        .cbk-form-group label.hd {
            display: none;
            visibility: hidden;
        }

    .cbk-form-group .form-field {
        padding: 10px 0;
        width: 100%;
        color: var(--rvy_color_darker);
        font-size: 15px;
        font-weight: 400;;
        transition: all 0.2s linear;
        border-width: 0 0 1px 0;
        border-style: solid;
        border-color: var(--rvy_color_border)!important;
        background-color: transparent;
    }
    .cbk-form-group textarea.form-field {
        border-width: 1px;
    }
        .cbk-form-group.field-text .form-field:hover {
            border-color: var(--rvy_color_border)!important;
            box-shadow: 0 1px 0 0 var(--rvy_color_border);
        }
        .cbk-form-group.field-text .form-field:focus {
            border-color: var(--rvy_color_border)!important;
            box-shadow: 0 2px 0 0 var(--rvy_color_border);
        }
        .cbk-form-group.field-text .toggle-pass {
            position: absolute;
            display: block;
            top: 10px;
            right: 10px;
            width: 24px;
            height: 24px;
            
            -webkit-mask-repeat: no-repeat;
            -webkit-mask-size: 20px 20px;
            -webkit.mask-position: 50% 50%;

            mask-repeat: no-repeat!important;
            mask-size: 20px 20px!important;
            mask-position: 50% 50%!important;

            -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M288 32c-80.8 0-145.5 36.8-192.6 80.6-46.8 43.5-78.1 95.4-93 131.1-3.3 7.9-3.3 16.7 0 24.6 14.9 35.7 46.2 87.7 93 131.1 47.1 43.7 111.8 80.6 192.6 80.6s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1 3.3-7.9 3.3-16.7 0-24.6-14.9-35.7-46.2-87.7-93-131.1-47.1-43.7-111.8-80.6-192.6-80.6zM144 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-64c0 35.3-28.7 64-64 64-11.5 0-22.3-3-31.7-8.4-1 10.9-.1 22.1 2.9 33.2 13.7 51.2 66.4 81.6 117.6 67.9s81.6-66.4 67.9-117.6c-12.2-45.7-55.5-74.8-101.1-70.8 5.3 9.3 8.4 20.1 8.4 31.7z"/></svg>');
            mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M288 32c-80.8 0-145.5 36.8-192.6 80.6-46.8 43.5-78.1 95.4-93 131.1-3.3 7.9-3.3 16.7 0 24.6 14.9 35.7 46.2 87.7 93 131.1 47.1 43.7 111.8 80.6 192.6 80.6s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1 3.3-7.9 3.3-16.7 0-24.6-14.9-35.7-46.2-87.7-93-131.1-47.1-43.7-111.8-80.6-192.6-80.6zM144 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-64c0 35.3-28.7 64-64 64-11.5 0-22.3-3-31.7-8.4-1 10.9-.1 22.1 2.9 33.2 13.7 51.2 66.4 81.6 117.6 67.9s81.6-66.4 67.9-117.6c-12.2-45.7-55.5-74.8-101.1-70.8 5.3 9.3 8.4 20.1 8.4 31.7z"/></svg>');

            background-color: var(--ryv_color_primary);
            cursor: pointer;
        }

        .cbk-form-group.field-text .toggle-pass.view {
            -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Free v7.0.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M41-24.9c-9.4-9.4-24.6-9.4-33.9 0S-2.3-.3 7 9.1l528 528c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-96.4-96.4c2.7-2.4 5.4-4.8 8-7.2 46.8-43.5 78.1-95.4 93-131.1 3.3-7.9 3.3-16.7 0-24.6-14.9-35.7-46.2-87.7-93-131.1-47.1-43.7-111.8-80.6-192.6-80.6-56.8 0-105.6 18.2-146 44.2L41-24.9zM204.5 138.7c23.5-16.8 52.4-26.7 83.5-26.7 79.5 0 144 64.5 144 144 0 31.1-9.9 59.9-26.7 83.5l-34.7-34.7c12.7-21.4 17-47.7 10.1-73.7-13.7-51.2-66.4-81.6-117.6-67.9-8.6 2.3-16.7 5.7-24 10l-34.7-34.7zM325.3 395.1c-11.9 3.2-24.4 4.9-37.3 4.9-79.5 0-144-64.5-144-144 0-12.9 1.7-25.4 4.9-37.3L69.4 139.2c-32.6 36.8-55 75.8-66.9 104.5-3.3 7.9-3.3 16.7 0 24.6 14.9 35.7 46.2 87.7 93 131.1 47.1 43.7 111.8 80.6 192.6 80.6 37.3 0 71.2-7.9 101.5-20.6l-64.2-64.2z"/></svg>');

            mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Free v7.0.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M41-24.9c-9.4-9.4-24.6-9.4-33.9 0S-2.3-.3 7 9.1l528 528c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-96.4-96.4c2.7-2.4 5.4-4.8 8-7.2 46.8-43.5 78.1-95.4 93-131.1 3.3-7.9 3.3-16.7 0-24.6-14.9-35.7-46.2-87.7-93-131.1-47.1-43.7-111.8-80.6-192.6-80.6-56.8 0-105.6 18.2-146 44.2L41-24.9zM204.5 138.7c23.5-16.8 52.4-26.7 83.5-26.7 79.5 0 144 64.5 144 144 0 31.1-9.9 59.9-26.7 83.5l-34.7-34.7c12.7-21.4 17-47.7 10.1-73.7-13.7-51.2-66.4-81.6-117.6-67.9-8.6 2.3-16.7 5.7-24 10l-34.7-34.7zM325.3 395.1c-11.9 3.2-24.4 4.9-37.3 4.9-79.5 0-144-64.5-144-144 0-12.9 1.7-25.4 4.9-37.3L69.4 139.2c-32.6 36.8-55 75.8-66.9 104.5-3.3 7.9-3.3 16.7 0 24.6 14.9 35.7 46.2 87.7 93 131.1 47.1 43.7 111.8 80.6 192.6 80.6 37.3 0 71.2-7.9 101.5-20.6l-64.2-64.2z"/></svg>');
        }
  
    .cbk-form-group.text-legal {
        line-height: 1.6;
        font-size: 12px;
        font-weight: 300;
    }

    form input[type="radio"],
    form input[type="checkbox"] {
        display: inline-block;
        position: relative;
        margin: 0;
        padding: 0;
        width: 20px;
        min-width: 20px;
        height: 20px;
        -webkit-appearance: none;
        appearance: none;
        border: 1px solid var(--rvy_color_border);
        cursor: pointer;
    }
        form input[type="radio"] {
            border-radius: 50%;
        }
        form input[type="radio"]:hover,
        form input[type="checkbox"]:hover {
            box-shadow: 0 0 0 1px var(--rvy_color_border);
        }
        form input[type="radio"]:focus,
        form input[type="checkbox"]:focus {
            box-shadow: 0 0 0 2px var(--rvy_color_border);
        }

        form input[type="checkbox"]:before,
        form input[type="checkbox"]:after,
        form input[type="radio"]:before {
            position: absolute;
            content: '';
            height: 3px;
            background-color: color-mix( in srgb, var(--rvy_color_border) 5%, #fff 5%);
        }
        form input[type="radio"]:before {
            top: 3px;
            left: 3px;
            height: 12px;
            width: 12px;
            border-radius: 50%;
        }
        form input[type="checkbox"]:checked:before,
        form input[type="checkbox"]:checked:after,
        form input[type="radio"]:checked:before {
            background-color: var(--rvy_color_border);
        }
        form input[type="checkbox"]:before {
            left: 2px;
            top: 9px;
            width: 7px;
            transform: rotate(45deg);
        }
        form input[type="checkbox"]:after {
            left: 5px;
            top: 7px;
            width: 13px;
            transform: rotate(-45deg);
        }
    
    .field-button .rvy-button.align-right {
        display: block;
        margin-left: auto;
        margin-right: 0;
    }
    
    form .checkbox-spacer {
        display: inline-block;
        position: relative;
        margin: 0;
        padding: 0;
        width: 20px;
        height: 20px;
        background-color: transparent;
    }

    form .wpcf7-list-item {
        margin: 0;
    }
        form .wpcf7-list-item > label {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            justify-content: flex-start;
        }
            form .wpcf7-list-item > label > form input[type="checkbox"],
            form .wpcf7-list-item > label > form input[type="radio"] {
                top: 3px;
            }
            form .wpcf7-list-item > label > .wpcf7-list-item-label {
                flex: auto;
                line-height: 20px; /* Es el alto del checkbox/radio */
                font-size: 12px;
                font-weight: 300;
            }
                form .wpcf7-list-item > label > .wpcf7-list-item-label > a {
                    color: var(--rvy_color_text);
                    text-decoration: underline;
                }

    /* Avisos */
    .wpcf7-form-control-wrap {
        position: relative;
    }
        .cbk-form-group .wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
            position: absolute;
            right: 10px;
            top: -3px;
            font-size: 10px;
            color: var(--rvy_color_alert);
            overflow: hidden;
        }
        .cbk-form-group:has( .toggle-pass ) .wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
            right: 40px;
        }
            .cbk-form-group.field-text .wpcf7-form-control-wrap:has( .wpcf7-not-valid-tip ) .form-field,
            .cbk-form-group.field-text .wpcf7-form-control-wrap:has( .wpcf7-not-valid-tip ) .form-field:hover,
            .cbk-form-group.field-text .wpcf7-form-control-wrap:has( .wpcf7-not-valid-tip ) .form-field:focus {
                padding-left: 10px;
                border-color: var(--rvy_color_alert);
                background-color: color-mix( in srgb, var(--rvy_color_alert) 5%, transparent )
            }
            .cbk-form-group.field-text .wpcf7-form-control-wrap:has( .wpcf7-not-valid-tip ) .form-field:hover {
                box-shadow: 0 1px 0 0 var(--rvy_color_alert);
            }
            .cbk-form-group.field-text .wpcf7-form-control-wrap:has( .wpcf7-not-valid-tip ) .form-field:focus {               
                box-shadow: 0 2px 0 0 var(--rvy_color_alert);
            }

        .wpcf7-form-control-wrap:has( input:focus ) >  .wpcf7-not-valid-tip {
            display: none;
        }

    .notice-required {
        display: block;
        font-size: 12px;
        font-style: italic;
        font-weight: 300;
    }

    /* Mensajes */
    .wpcf7 form .wpcf7-response-output {
        position: relative;
        margin: 0;
        padding: var(--rvy_wrapper_gap);
        color: #fff;
        border-radius: var(--rvy_wrapper_radius);
        border-width: 0;
        background-color: var(--rvy_color_sucess);
    }
    .wpcf7 form.invalid .wpcf7-response-output {
        background-color: var(--rvy_color_alert);
    }
    .cbk-form-fields + .wpcf7-response-output {
        margin-top: var(--rvy_wrapper_gap_large);
    }


/*
-- MARK: RESPONSIVE 
*/

/*
-- MARK: 1100px
*/
@media (max-width: 1100px) {

    /* PRODUCTS */
    .products {
        --gap: var(--rvy_wrapper_gap_large);
        --columns: 3;
        --columns_width: calc((100% / var(--columns)) - ((var(--gap) * (var(--columns) - 1)) / var(--columns)));
        gap: var(--gap);
    }
        .products > .product {
            flex: 0 0 var(--columns_width);
            width: var(--columns_width);
        }
}


/*
-- MARK: 991px
*/
@media (max-width: 991px) {

    /* SLIDER HOME */
    #carousel.carousel {
        left: 0!important;
    }
}

/*
-- MARK: 980px
*/
@media (max-width: 980px) {

    /* HEADER */
    #header-nav-mobile-button {
        display: block;
    }

    #header {
        --rvy_NavBottom_Height: 50px;
        --rvy_NavHeader_Height: calc(var(--rvy_NavTop_Height) + var(--rvy_NavBottom_Height))
    }

    #header-nav-bottom {
        height: var(--rvy_NavBottom_Height);
    }

    #header-logo img {
        max-width: 150px !important;
    }

    #header #header-nav .nav-contact-button {
        display: none;
    }


    /* NAV RESPONSIVE */
    #header-nav-bottom #_desktop_top_menu {
        display: block;
        position: fixed;
        margin: 0;
        padding: var(--rvy_wrapper_gap_large) 0 0 0;
        right: 0;
        top: var(--rvy_NavHeader_Height);
        left: auto;
        bottom: auto;
        width: 100vw;
        height: calc(100vh - 99px);
        /* 99px TOP */
        transform: translate(100%, 0);
        transition: transform 0.2s;
        box-shadow: none;
        border-width: 0 0 4px 0;
        border-color: var(--rvy_color_secondary);
        border-style: solid;
        background-color: var(--ryv_color_primary);
        z-index: 9000;
    }

    body.mobile-nav-is-open #header-nav-bottom #_desktop_top_menu {
        transform: translate(0, 0);
    }

    #header-nav-bottom #_desktop_top_menu>ul#menu-main-menu {
        flex-direction: column;
    }

    #header-nav-bottom #_desktop_top_menu>ul#menu-main-menu>li {
        display: block;
        line-height: 26px;
        width: 100%;
        text-align: right;
    }

    #header-nav-bottom #_desktop_top_menu>ul#menu-main-menu > li > a {
        display: block;
        padding: 10px 20px;
        line-height: 26px;
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, .03);
        background-image: none; 
    }
        #header-nav-bottom #_desktop_top_menu > ul#menu-main-menu > li#lnk-catalogo > a {
            color: var(--rvy_color_secondary)!important;
        }

    body.is-nav-open #header-nav-mobile {
        transform: translate(0, 0);
    }

    #header-nav .mobile_nav.opened #menu-main-menu > li {
        text-align: right;
    }

    /* FOOTER */
    #footer {
        padding-left: var(--rvy_wrapper_gap_large);
        padding-right: var(--rvy_wrapper_gap_large);
    }

    #footer-contacto {
        flex-wrap: wrap;
        padding-top: 45px !important;
        padding-bottom: var(--rvy_wrapper_gap_large) !important;
    }

    #footer-contacto>.col-left {
        flex: auto;
        width: 100%;
    }

    #footer-contacto>.col-center,
    #footer-contacto>.col-right {
        width: 50%;
    }

    #footer-contacto .te-llamamos,
    #footer-contacto .contactanos {
        font-size: 40px;
    }

    #footer-contacto>.col-right>a {
        font-size: 24px;
    }

    #footer-separator {
        
    }
        #footer-separator .footer-separator-wrapper .footer-separator-left h2 {
            font-size: 40px;
        }

    #footer-logos {
        flex-direction: column;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    #footer-logos>.col-left,
    #footer-logos>.col-right {
        margin: 0 auto;
        width: fit-content;
    }

    #footer-nav {
        margin: 0 -30px !important;
        padding: var(--rvy_wrapper_gap) !important;
        width: auto;
        background-color: rgba(0, 0, 0, 0.1);
    }

}

/*
-- MARK: 850px
*/
@media (max-width: 850px) {

    :root {
        --rvy_NavBottom_Height: 50px;
        --rvy_NavHeader_Height: calc(var(--rvy_NavTop_Height) + var(--rvy_NavBottom_Height));
    }

    #wrapper {
        padding-left: var(--rvy_wrapper_gap_large);
        padding-right: var(--rvy_wrapper_gap_large);
    }

    /* LAYOUT COLUMNS */
    .layout-columns,
    #wrapper > .container > .row {
        flex-direction: column;
    }
        .layout-columns > .layout-column-left,
        #wrapper > .container > .row > #left-column,
        .layout-columns > .layout-column-right,
        #wrapper > .container > .row > #content-wrapper {
            flex: auto;
            width: auto;
            max-width: 100%;
        }
        #wrapper > .container > .row > #content-wrapper {
            margin: 0!important;
            padding: 0!important;
        }
    
    #header-nav-top {
        padding: 0 15px;
    }
    #header-nav-top a.customer-login {
        position: relative;
        top: 4px;
    }
        #header-nav-top a.customer-login span {
            display: none;
        }
        #header-nav-top a.customer-login i {
            display: block;
        }

    /* PRODUCTS */
    .products,
    .brands {
        --gap: var(--rvy_wrapper_gap_large);
        --columns: 4;
        --columns_width: calc((100% / var(--columns)) - ((var(--gap) * (var(--columns) - 1)) / var(--columns)));
        gap: var(--gap);
    }
        .products > .product,
        .brand > .brand {
            flex: 0 0 var(--columns_width);
            width: var(--columns_width);
        }
}

/*
-- MARK: 768px
*/
@media (max-width: 768px) {

    .products,
    .brands {
        --gap: var(--rvy_wrapper_gap_large);
        --columns: 3;
        --columns_width: calc((100% / var(--columns)) - ((var(--gap) * (var(--columns) - 1)) / var(--columns)));
    }
        .products > .product,
        .brand > .brand {
            flex: 0 0 var(--columns_width);
            width: var(--columns_width);
        }
        .products > .product > .product-miniature .product-description > .product-title, 
        .products > .product > .product-miniature .product-description > .product-title > a {
            font-size: 18px;
        }

}

/*
-- MARK: 480px
*/
@media (max-width: 480px) {

    /* HEADER */
    #header {
        --rvy_NavBottom_Height: 50px;
        --rvy_NavHeader_Height: calc(var(--rvy_NavTop_Height) + var(--rvy_NavBottom_Height))
    }

    #header-nav-bottom {
        height: var(--rvy_NavBottom_Height);
    }

    #header-logo img {
        max-width: 100px !important;
    }

    #header-nav-top .nav-left,
    #header-nav-top .nav-right {
        font-size: 12px;
    }

    #header-nav-bottom #_mobile_top_menu {
        display: block;
        top: var(--rvy_NavHeader_Height);
    }

    #header #header-nav .nav-search-button {
        position: relative;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background-color: var(--ryv_color_primary);
    }
         #header #header-nav .nav-search-button > a:before {
            position: absolute;
            line-height: inherit;
            font-size: inherit !important;
            margin-left: -1.3em;
            right: 9px;
            top: 10px;
            display: inline-block;
            opacity: 1;
            content: attr(data-icon);
            font-family: FontAwesome !important;
            font-weight: 900 !important;
            background-color: #fff!important;
        }

    /* FOOTER */
    #footer-logos > .col-left, 
    #footer-logos > .col-right {
        width: 100%;
    }
    #footer img {
        max-width: 100%;
    }

    #footer-contacto {
        flex-direction: row;
    }

    #footer-contacto>.col-center,
    #footer-contacto>.col-right {
        width: calc(50% - var(--rvy_wrapper_gap_large) / 2);
    }

    #footer-contacto>.col-right>a {
        font-size: 20px;
    }

    #footer-contacto > .col-center, 
    #footer-contacto > .col-right {
        margin-bottom: 0!important;
        width: 100%!important;
    }

    #footer-contacto > .col-right {
        text-align: center;
    }
        footer #footer-contacto .col-right > .contacto-items .phone {
            padding-left: 0; 
        }
            #footer-contacto > .col-right > .contacto-items .phone::before {
                content: none!important; 
            }

    #footer-separator .footer-separator-wrapper {
        flex-wrap: wrap;
        flex-direction: column;
        gap: var(--rvy_wrapper_gap);
    }
        #footer-separator .footer-separator-wrapper .footer-separator-left {
            margin: 0;
        }
            #footer-separator .footer-separator-wrapper .footer-separator-left h2 {
                font-size: 40px;
                text-align: center;
            }
        #footer-separator .footer-separator-wrapper .footer-separator-right {
            margin: 0;
        }
        
    .grupo-reyvidis-group {
        width: 100%;
    }
        .grupo-reyvidis-group > .grupo-reyvidis-group-gallery {
            flex-wrap: wrap;
            flex-direction: column;
            align-items: center;
            justify-content: center; 
        }
            .grupo-reyvidis-group > .grupo-reyvidis-group-gallery > .grupo-reyvidis-group-gallery-item {
                top: 0!important;
            }

    #footer-legal #footer-cms-links {
        gap: 0 12px;
    }
        #footer-legal #footer-cms-links > li:not(:first-child):after {
            content: none;
        }

    /* BANNERS HOME */
    .ryv-banners-home_wrapper {
        --columns: 1;
        --columns_width: calc((100% / var(--columns)) - ((var(--gap) * (var(--columns) - 1)) / var(--columns)));
    }
        .ryv-banners-home_wrapper .ryv-banners-home-item {
            flex: 0 0 var(--columns_width);
            width: var(--columns_width);
        }

    .category-header-content-title {
        font-size: 42px;
    }
    .category-header .category-header-content-title, 
    .category-header .category-header-content-description, 
    .category-header .category-header-content-description > p {
        text-align: left;
    }

    .ps-pagenavi .page-numbers.next, 
    .ps-pagenavi .page-numbers.prev {
        width: 30px;
        font-size: 0;
        visibility: hidden;
    } 
        .ps-pagenavi .page-numbers.next:after,
        .ps-pagenavi .page-numbers.prev:before {
            font-size: 15px;
            visibility: visible;
        }


    /* CATEGORIES */
    .category-header.has-bg .category-header-content-title {
        font-size: 38px;
    }
    .category-header.has-bg .category-header-content-description, 
    .category-header.has-bg .category-header-content-description > p {
        
    }
    /* PRODUCTS */
    .products,
    .brands {
        --gap: var(--rvy_wrapper_gap_large);
        --columns: 2;
        --columns_width: calc((100% / var(--columns)) - ((var(--gap) * (var(--columns) - 1)) / var(--columns)));
        gap: var(--gap);
    }
        .products > .product,
        .brand > .brand {
            flex: 0 0 var(--columns_width);
            width: var(--columns_width);
        }
            .products > .product > .product-miniature .product-description > .product-title, 
            .products > .product > .product-miniature .product-description > .product-title > a {
                font-size: 18px;
            }



}