/*
--------- ELEMENTOS RESPONSIVE A OCULTAR EN LA VERSIÓN NORMAL ---------
*/
.menu-link {
    display: none;
}

.menuResponsive {
    display: none;
}

#btnMenuResponsive {
    display: none;
}

.escritorio_oculto {
    display: none;
}

.btn-filtrado {
    display: none;
    border: solid 1px #dedede;
    padding: 10px;
    border-radius: 5px;
    text-transform: uppercase;
    background: #f2f2f2;
}

    .btn-filtrado img {
        width: 25px;
        float: left;
        margin-right: 16px;
    }

/*
--------- ESTILOS PARA RESPONSIVE ---------
*/
@media (min-width:1350px) {
    .pie {
        background-size: 100% 100%;
    }
}

@media (max-width:1200px) {
    #enlaces_sup a.btn-buy {
        display: none;
    }

    .hidden-xs {
        display: none !important
    }

    .divLogin {
        justify-content: center;
        -moz-justify-content: center;
        -webkit-justify-content: center;
        -o-justify-content: center;
    }

    .input3 {
        width: 75px !important;
    }
}

@media (max-width:1124px) {
    .fichabuscador {
        justify-content: center;
        flex-direction: column;
    }

        .fichabuscador .divImagen {
            margin: 10px 0 5px;
        }

        .fichabuscador .contenido_buscador {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }

        .fichabuscador .fichamed_ampliada_btnanadir {
            width: 160px;
            margin: 7px auto 0;
            display: block;
            float: none;
        }
}

@media (max-width:1019px) {
    .noticia_portada {
        width: 45%;
    }
}

@media (max-width:980px) {
    /*Cambios para el autocomplet*/
    .ui-autocomplete {
        position: fixed !important;
        top: 10% !important;
        left: 10% !important;
        width: 80% !important;
        max-height: 70vh !important;
        overflow-y: auto !important;
        background-color: white !important;
        border: 1px solid #ccc !important;
        z-index: 9999 !important;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1) !important;
    }

    .ui-menu-item {
        font-size: 16px !important;
        padding: 10px !important;
        display: flex !important;
        align-items: center !important;
    }

    .fichabuscador {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .divImagen img {
        width: 50px !important;
        height: 50px !important;
        object-fit: cover !important;
        border-radius: 5px !important;
    }

    .divNombrebuscador {
        font-weight: bold !important;
    }

    .divPrecioBuscador {
        color: #e60000 !important;
        font-weight: bold !important;
    }
    /*----------------------------*/
    /* Cambios relacionados a la tabla de pedidos*/
    .tabla {
        width: 100%;
        border-collapse: collapse;
        display: block;
        overflow-x: auto;
    }

        /* 📌 Hacemos que cada fila se vea como una tarjeta en móviles */
        /*.tabla tbody,*/
        .tabla tr {
            display: block;
            width: 100%;
            margin-bottom: 10px; /* 🟢 Espacio entre productos */
            border-radius: 8px; /* 🟢 Bordes redondeados */
            border: 1px solid #ddd; /* 🟢 Borde gris */
            background: #fff; /* 🟢 Fondo blanco */
            padding: 10px; /* 🟢 Espacio interno */
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* 🟢 Sombra sutil */
        }

    /* 📌 Ocultamos los encabezados de la tabla en móviles */
    .tabla_cab {
        display: none !important;
    }

    .tabla_cab th{
        display: none !important;
    }

    /* 📌 Cada celda se muestra como una fila separada en móviles */
    .tabla td {
        display: block;
        /*width: 100%;*/
        text-align: left;
        padding: 10px;
        border-bottom: 1px solid #ddd;
    }

        /* 📌 Hacemos que el nombre del producto sea más visible */
        .tabla td:first-child {
            font-weight: bold;
        }

        /* 📌 Agregamos etiquetas personalizadas para identificar cada campo */
        .tabla td[data-label]::before {
            content: attr(data-label);
            font-weight: bold;
            display: block;
            margin-bottom: 5px;
            color: #555;
        }

    /* 📌 Ajustamos la imagen del producto */
    .miniatura img {
        width: 100px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    /* 📌 Centramos el precio */
    .totalLinea {
        text-align: center;
        font-weight: bold;
    }

    /* 📌 Botón de borrar centrado */
    .lnkEliminarResponsive {
        text-align: center;
        margin-top: 10px;
    }

    /* 📌 Ajustamos la cantidad de producto */
    .fichamed_anadir {
        display: flex;
        justify-content: center;
    }
    /*--------------------------------------------*/
    .mensaje-agregado {
        display: block;
    }
    /* Estilo del globo de la cantidad */
    .cantidadCarrito {
        position: absolute;
        top: 15px;
        right: -5px;
        background-color: red;
        color: white;
        font-size: 12px;
        font-weight: bold;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #divFiltrado {
        transition: all 0.3s ease-in-out;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
    }

        /* Mostrar el filtro cuando esté activo */
        #divFiltrado.visible {
            max-height: 500px; /* Ajusta la altura según el contenido */
            opacity: 1;
        }

        #divFiltrado.oculto {
            max-height: 0;
            opacity: 0;
        }

    /* Mostrar botón de "Mostrar Filtros" en móviles */
    .btnToggle {
        display: block;
        width: 100%;
        padding: 10px;
        background: #FF7A27;
        color: white;
        border: none;
        cursor: pointer;
        text-align: center;
        border-radius: 5px;
    }

        .btnToggle:hover {
            background: #F35B2E;
        }


    /* Generales */
    .top-buscador {
        background: #e6e6e6;
        text-align: center;
        top: 60px;
        width: 100%;
        padding-top: 5px;
        padding-bottom: 2px;
    }

        .top-buscador .buscar {
            border: 0;
        }

    .btnBorrar:link, .btnBorrar:visited, .btnBorrar:active, .btnTramitar:link, .btnTramitar:visited, .btnTramitar:active, .btnValorar:link, .btnValorar:visited, .btnValorar:active {
        float: none;
        width: 100%;
        box-sizing: border-box;
    }

    .menu-items {
        display: none;
    }

    .container-links {
        width: 100%;
        max-width: 100%;
    }

    .logo-footer {
        margin-top: 20px;
    }

    .pie_izq {
        display: inherit;
        text-align: center;
    }

        .pie_izq .links {
            width: 100%;
            display: inherit;
        }

    .register-container h2 {
        font-size: 18px;
    }

    .client-btn {
        font-size: 14px;
    }

    .pie {
        background: #191816;
        padding: 120px 30px 20px 0;
    }

    .divLogin {
        justify-content: right;
        -webkit-justify-content: right;
        -moz-justify-content: right;
        -o-justify-content: right;
    }

        .divLogin .input-custom {
            height: 30px !important;
        }

    #superior1_lkbLogin {
        height: 32px;
        min-width: inherit;
        width: 60px;
    }

    /*.responsive_oculto {
    display: none;
  }*/

    .escritorio_oculto {
        display: block;
    }

    body {
        background: white;
        min-width: 330px;
        padding-bottom: 0;
        width: 100%;
    }

    .contenidoCentrado {
        padding: 0 2%;
        width: 96%;
        margin-top: 85px;
    }

    #contenedora {
        width: 100%;
    }

    /*
  .marginTop {
    margin: 0;
  }
  */

    .tabla td {
        font-size: 70%;
        padding: 7px 8px;
    }

    .tabla_cab th {
        font-size: 60% !important;
    }

    .input4 {
        width: 154px;
    }

    .input3 {
        width: 144px;
    }

    .textarea03 {
        width: 154px;
    }

    /* Cookies */
    .divCookies {
        padding: 10px 15% 12px 5% !important;
    }

    /* Cabecera */
    #enlaces_sup {
        margin-left: 100px;
        height: 55px;
        display: inherit;
    }

        #enlaces_sup a {
            color: white !important;
            display: block;
        }

    .header-icon {
        color: white;
    }

    #enlaces_sup .items-container {
        margin-bottom: 0;
        min-width: 200px;
        float: right;
        margin-top: 16px;
    }

        #enlaces_sup .items-container .flex-item {
            min-width: initial;
            text-align: center;
        }

            #enlaces_sup .items-container .flex-item + .flex-item {
                margin-left: 20px;
                text-align: center;
            }

    .cabecera {
        background: #F35B2E;
        height: auto;
        min-width: 100%; /*! padding-bottom:20px; */
        position: fixed;
    }

    .cabecera_sup {
        padding: 0 2%;
        width: 96%;
        height: 60px;
    }

        .cabecera_sup .logo {
            position: absolute;
            left: 60px;
            top: 0px;
            display: block;
            width: 70px !important;
            height: 100%;
        }

    #superior1_lkbLogin, #superior1_txtContra, #superior1_txtUsuario {
        padding: 5px;
        width: 75px;
    }

    #superior1_lkbLogin {
        clear: both;
    }

    #superior1_lblTelf {
        display: none;
    }

    .logo {
        width: 100% !important;
    }

    #superior1_cabecera_inf_noidentificado {
        display: none;
    }

    .divLogin {
        border-top: 1px solid #932709;
        position: absolute;
        right: 0;
        top: 0;
        width: 85%;
    }

    .divLogin__titulo {
        color: white;
    }

    #menuGamas {
        display: none;
    }

    #superior1_menuGamas {
        display: none;
    }

    #textoUsuario {
        display: none;
    }

    .buscador {
        background: url(../img/fnd_buscador.jpg) -5px 29px no-repeat;
        border-radius: 4px;
        margin: 0px 0px 0px 0px;
        width: 140px;
    }

    .buscador_txt {
        width: 100px;
    }

    .divIdentificado {
        background: none;
        min-width: 0;
        padding: 13px 0px 0px 0px;
    }

    .divCarrito {
        /*
    position: absolute;
    right: 10px;
    top: 70px;
  */
        display: none;
    }

    .divProximaRuta {
        display: none;
    }

    /*.cantidadCarrito, #superior1_accesoVales .cantidadCarrito {
        display: none;
    }*/

    .menu-link {
        display: block;
        height: 60px;
        left: 5px;
        position: absolute;
        top: 0px;
        width: 60px;
    }

    #btnMenuResponsive {
        display: block;
        z-index: 10000;
        height: 55px;
        padding-bottom: 19px;
        box-sizing: border-box;
        margin-left: 0px;
    }

        #btnMenuResponsive img {
            height: 100%;
        }

    .noticia_portada {
        width: 100%;
    }

    /* Resumen cesta */
    .divProdAnadido {
        top: 40px;
        width: 300px;
    }

    .lineaPedido img {
        display: none;
    }

    .cantidades {
        display: none !important;
    }

    #btnSeguirComprando {
        display: none;
    }

    #btnTerminarPedido {
        display: none;
    }

    /* Pie */
    .pie_contenido {
        width: 100%;
    }

    .pie_izq span, .pie_izq a:link, .pie_izq a:visited, .pie_izq a:active {
        display: block;
        margin-left: 0;
    }

    .pie_der {
        display: none;
    }

    /* Portada */
    .contenidoPortada {
        background: none;
    }

    .listaPuntos {
        width: 100%;
    }

        .listaPuntos li {
            min-height: 50px;
        }

    #carrusel {
        display: none;
        margin-top: 0px;
    }

    #bodyPortada #btnMenuResponsive {
        display: none;
    }

    /* Inicio logueado */
    #carruselInicio {
        margin-top: 29px;
    }

    .contenidoCarrusel {
        height: auto;
        width: 100%;
    }

    /* Catálogo */
    #colizq {
        width: 100%;
        padding: 0;
        margin-top: 50px;
    }

    .btn-filtrado {
        display: block;
    }

    #colder {
        margin-top: 35px;
        width: 100%;
    }

    .fichamed_ampliada {
        display: none !important;
    }

    .masinfopeq {
        display: block !important;
        background: #FF7B22;
        bottom: 5px;
        border-radius: 3px;
        color: #fff;
        font-size: 75%;
        left: 0px;
        padding: 1px 3px;
        position: absolute;
        right: 0;
        left: 180px;
        white-space: nowrap;
        width: 70px;
        left: inherit;
        right: 0;
    }

    #zonaMigas {
        display: none;
    }

    .zonaFiltrado {
        display: block;
        width: 100%;
        padding: 0;
        margin-top: 90px;
        text-align: center;
    }
}

/* Ficha */
#LblCtlgo_Estas {
    display: none;
}

#lnkVolver {
    display: none;
}

.fichagra_info {
    width: 98%;
}

.ad-gallery {
    margin: 0 auto;
    width: 275px;
}

.fichagra_btnanadir {
    background: #D93D0A;
    border-radius: 4px;
    font-size: 70%;
    width: 126px;
}

/* Mi cuenta - Pedidos */
.colBuscador {
    clear: both;
}

    .colBuscador .input2 {
        width: 60px;
    }

/* Noticias */
.noticia_portada_der {
}

.noticia_portada {
}

.noticia_portada_izq {
}

.noticia_portada_pie {
    clear: both;
    position: relative;
    width: 100%;
}

.contenidoNoticia img {
    max-width: 100%;
}

/* Carrito */
.totalLinea {
    min-width: 75px;
}

#FormaPago b {
    display: block;
    clear: both;
}

#divFacturacion {
    float: none;
    width: auto;
}

#divComentarios {
    float: none;
    width: auto;
}

#hypSeguirComprando:link, #hypSeguirComprando:visited, #hypSeguirComprando:active {
    display: none;
}

#divCondiciones {
    float: none;
    padding-bottom: 8px;
    text-align: center;
}

.carritoTotales > div {
    clear: both;
    display: block;
    width: 100% !important;
}

.lnkEliminarResponsive {
    display: none;
    padding: 6px 0px 4px 0px;
}

#ColetillaDescuentoCC {
    display: none;
}

.hastip {
    display: none;
}

}

/* Reglas adicionales */
@media (max-width:700px) {
    .tit-ficha {
        font-size: 20px;
    }

    textarea {
        padding: 10px;
        width: 200px;
    }

    .fichamed_anadir {
        width: 250px;
    }

    .pie_izq {
    }
}

@media (max-width:600px) {
    .fichabuscador .divImagen img {
        max-width: 150px;
        margin: 0 auto !important;
        display: block !important;
    }

    .fichabuscador {
        justify-content: center;
    }

        .fichabuscador .divNombrebuscador {
            font-size: 13px;
            text-align: center;
        }

        .fichabuscador input {
            width: 38px;
        }

    .fichamed_btnanadir, .fichamed_ampliada_btnanadir {
        width: 200px;
        padding: 5px 20px;
        float: none;
        display: block;
        margin: 7px auto 0;
    }

    .contenido_buscador {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width:528px) {
    .bottom-banners img {
        width: 98%;
    }

    .fichamed {
        width: 90%;
        margin: 1% 5%;
    }

    .noticia_portada {
        padding-right: 20px;
    }

    .noticia_portada_der a {
        position: relative;
        margin-bottom: 20px;
        display: block;
        width: 100%;
    }

    .divPedido_Articulos .tabla {
        /*width: 100%;*/
        display: block;
        max-width: 100%;
        overflow: scroll;
    }

    #grdPedidos {
        max-width: 100%;
        display: block;
        overflow: auto;
        height: 400px;
    }

    #grdFacturas {
        max-width: 100%;
        display: block;
        overflow-x: auto;
    }
}


@media (max-width:650px) {
    .divLogin__titulo {
        position: absolute;
        top: 0;
        right: 130px;
        font-size: 14px;
        white-space: nowrap;
    }

    .divLogin {
        width: 280px;
    }

        .divLogin .input-custom {
            height: 20px !important;
            margin-top: 13px;
        }

    .cabecera_inf {
        position: absolute;
        top: 60px;
        right: 6px;
        height: 12px;
        border-radius: 3px;
        padding: 10px;
    }

        .cabecera_inf .divRecuperaContra input {
            margin: 0;
        }

    #superior1_hypRecuperarContra {
        font-size: 11px !important;
        color: white !important;
    }

    .cabecera {
        height: 97px !important;
    }
}

@media (max-width:470px) {
    #superior1_lkbLogin {
        height: 22px !important;
        margin-top: 14px;
    }

    .cabecera_sup .logo {
        width: 50px !important;
        left: 50px;
    }

    .hide-480 {
        display: none !important;
    }

    .pie_izq {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-bottom: 50px;
    }
}

@media (max-width:390px) {

    .pie_izq .links a {
        margin-bottom: 15px;
    }

    .subscription-button input {
        width: 170px;
    }

    .fichabuscador .contenido_buscador {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .fichabuscador .divNombrebuscador {
        text-align: center;
    }

    .fichamed_btnanadir, .fichamed_ampliada_btnanadir {
        padding: 5px 10px;
        float: left;
        margin-top: 7px;
        width: 95%;
    }
}

/*
--------- MENÚ ---------
*/
.mm-menu.mm-horizontal > .mm-panel {
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
}

.mm-menu .mm-hidden {
    display: none;
}

.mm-wrapper {
    overflow-x: hidden;
    position: relative;
}

.mm-menu, .mm-menu > .mm-panel {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.mm-menu {
    background: inherit;
    display: block;
    overflow: hidden;
    padding: 0;
}

    .mm-menu > .mm-panel {
        background: inherit;
        -webkit-overflow-scrolling: touch;
        overflow: scroll;
        overflow-x: hidden;
        overflow-y: auto;
        box-sizing: border-box;
        padding: 20px;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

        .mm-menu > .mm-panel.mm-opened {
            -webkit-transform: translateX(0%);
            transform: translateX(0%);
        }

        .mm-menu > .mm-panel.mm-subopened {
            -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
        }

        .mm-menu > .mm-panel.mm-highest {
            z-index: 1;
        }

    .mm-menu .mm-list {
        padding: 20px 0;
    }

    .mm-menu > .mm-list {
        padding-bottom: 40px;
    }

.mm-panel > .mm-list {
    margin-left: -20px;
    margin-right: -20px;
}

    .mm-panel > .mm-list:first-child {
        padding-top: 0;
    }

.mm-list, .mm-list > li {
    list-style: none;
    display: block;
    padding: 0;
    margin: 0;
}

.mm-list {
    font: inherit;
    font-size: 14px;
}

    .mm-list a, .mm-list a:hover {
        text-decoration: none;
    }

    .mm-list > li {
        position: relative;
    }

        .mm-list > li > a, .mm-list > li > span {
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
            color: #fff;
            line-height: 20px;
            display: block;
            padding: 10px 10px 10px 20px;
            margin: 0;
        }

        .mm-list > li:not(.mm-subtitle):not(.mm-label):not(.mm-search):not(.mm-noresults):after {
            content: '';
            border-bottom-width: 1px;
            border-bottom-style: solid;
            display: block;
            width: 100%;
            position: absolute;
            bottom: 0;
            left: 0;
        }

        .mm-list > li:not(.mm-subtitle):not(.mm-label):not(.mm-search):not(.mm-noresults):after {
            width: auto;
            margin-left: 20px;
            position: relative;
            left: auto;
        }

    .mm-list a.mm-subopen {
        background: rgba(3, 2, 1, 0);
        width: 40px;
        height: 100%;
        padding: 0;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 2;
    }

        .mm-list a.mm-subopen:before {
            content: '';
            border-left-width: 1px;
            border-left-style: solid;
            display: block;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
        }

        .mm-list a.mm-subopen.mm-fullsubopen {
            width: 100%;
        }

            .mm-list a.mm-subopen.mm-fullsubopen:before {
                border-left: none;
            }

        .mm-list a.mm-subopen + a, .mm-list a.mm-subopen + span {
            padding-right: 5px;
            margin-right: 40px;
        }

    .mm-list > li.mm-selected > a.mm-subopen {
        background: transparent;
    }

    .mm-list > li.mm-selected > a.mm-fullsubopen + a, .mm-list > li.mm-selected > a.mm-fullsubopen + span {
        padding-right: 45px;
        margin-right: 0;
    }

    .mm-list a.mm-subclose {
        text-indent: 20px;
        padding-top: 30px;
        margin-top: -20px;
    }

    .mm-list > li.mm-label {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        font-size: 10px;
        text-transform: uppercase;
        text-indent: 20px;
        line-height: 25px;
        padding-right: 5px;
    }

    .mm-list > li.mm-spacer {
        padding-top: 40px;
    }

        .mm-list > li.mm-spacer.mm-label {
            padding-top: 25px;
        }

    .mm-list a.mm-subopen:after, .mm-list a.mm-subclose:before {
        content: '';
        border: 2px solid transparent;
        display: inline-block;
        width: 7px;
        height: 7px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        margin-bottom: -5px;
        position: absolute;
        bottom: 50%;
    }

    .mm-list a.mm-subopen:after {
        border-top: none;
        border-left: none;
        right: 18px;
    }

    .mm-list a.mm-subclose:before {
        border-right: none;
        border-bottom: none;
        margin-bottom: -15px;
        left: 22px;
    }

.mm-menu.mm-vertical .mm-list .mm-panel {
    display: none;
    padding: 10px 0 10px 10px;
}

    .mm-menu.mm-vertical .mm-list .mm-panel li:last-child:after {
        border-color: transparent;
    }

.mm-menu.mm-vertical .mm-list li.mm-opened > .mm-panel {
    display: block;
}

.mm-menu.mm-vertical .mm-list > li.mm-opened > a.mm-subopen {
    height: 40px;
}

    .mm-menu.mm-vertical .mm-list > li.mm-opened > a.mm-subopen:after {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 16px;
        right: 16px;
    }

.mm-menu.mm-vertical .mm-list > li.mm-opened.mm-label > a.mm-subopen {
    height: 25px;
}

html.mm-opened .mm-page {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.mm-menu {
    background: #333333;
    color: rgba(255, 255, 255, 0.6);
}

    .mm-menu .mm-list > li:after {
        border-color: rgba(0, 0, 0, 0.15);
    }

    .mm-menu .mm-list > li > a.mm-subclose {
        background: #252525;
        color: #ddd;
    }

        .mm-menu .mm-list > li > a.mm-subopen:after, .mm-menu .mm-list > li > a.mm-subclose:before {
            border-color: #fff;
        }

    .mm-menu .mm-list > li > a.mm-subopen:before {
        border-color: rgba(0, 0, 0, 0.15);
    }

    .mm-menu .mm-list > li.mm-selected > a:not(.mm-subopen), .mm-menu .mm-list > li.mm-selected > span {
        background: rgba(0, 0, 0, 0.1);
    }

    .mm-menu .mm-list > li.mm-label {
        background: rgba(255, 255, 255, 0.05);
    }

    .mm-menu.mm-vertical .mm-list li.mm-opened > a.mm-subopen, .mm-menu.mm-vertical .mm-list li.mm-opened > ul {
        background: rgba(255, 255, 255, 0.05);
    }

/*
  jQuery.mmenu offcanvas addon CSS
*/
.mm-page {
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
}

html.mm-opened {
    overflow: hidden;
    position: relative;
}

    html.mm-opened body {
        overflow: hidden;
    }

    html.mm-opened .mm-page {
        box-sizing: border-box;
        position: relative;
    }

html.mm-background .mm-page {
    background: inherit;
}

#mm-blocker {
    background: rgba(3, 2, 1, 0);
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
}

html.mm-opened #mm-blocker, html.mm-blocking #mm-blocker {
    display: block;
}

.mm-menu.mm-offcanvas {
    display: none;
    position: fixed;
}

.mm-menu.mm-current {
    display: block;
}

.mm-menu {
    width: 80%;
    min-width: 140px;
    max-width: 440px;
}

html.mm-opening .mm-page, html.mm-opening #mm-blocker {
    -webkit-transform: translate(80%, 0);
    transform: translate(80%, 0);
}

@media all and (max-width:175px) {
    html.mm-opening .mm-page, html.mm-opening #mm-blocker {
        -webkit-transform: translate(140px, 0);
        transform: translate(140px, 0);
    }
}

@media all and (min-width:550px) {
    html.mm-opening .mm-page, html.mm-opening #mm-blocker {
        -webkit-transform: translate(440px, 0);
        transform: translate(440px, 0);
    }
}

/*
  jQuery.mmenu counters addon CSS
*/
em.mm-counter {
    font: inherit;
    font-size: 14px;
    font-style: normal;
    text-indent: 0;
    line-height: 20px;
    display: block;
    margin-top: -10px;
    position: absolute;
    right: 40px;
    top: 50%;
}

    em.mm-counter + a.mm-subopen {
        padding-left: 40px;
    }

        em.mm-counter + a.mm-subopen + a, em.mm-counter + a.mm-subopen + span {
            margin-right: 80px;
        }

    em.mm-counter + a.mm-fullsubopen {
        padding-left: 0;
    }

.mm-vertical em.mm-counter {
    top: 12px;
    margin-top: 0;
}

.mm-nosubresults > em.mm-counter {
    display: none;
}

.mm-menu em.mm-counter {
    color: rgba(255, 255, 255, 0.3);
}

/*
  jQuery.mmenu dragOpen addon CSS
*/
html.mm-opened.mm-dragging .mm-menu, html.mm-opened.mm-dragging .mm-page, html.mm-opened.mm-dragging .mm-fixed-top, html.mm-opened.mm-dragging .mm-fixed-bottom, html.mm-opened.mm-dragging #mm-blocker {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

/*
  jQuery.mmenu footer addon CSS
*/
.mm-footer {
    background: inherit;
    border-top: 1px solid transparent;
    text-align: center;
    line-height: 20px;
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    padding: 10px 10px 0 20px;
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
}

.mm-menu.mm-hasfooter > .mm-panel {
    padding-bottom: 80px;
}

.mm-menu .mm-footer {
    border-color: rgba(0, 0, 0, 0.15);
    color: rgba(255, 255, 255, 0.3);
}

/*
  jQuery.mmenu header addon CSS
*/
.mm-header {
    background: inherit;
    border-bottom: 1px solid transparent;
    text-align: center;
    line-height: 20px;
    box-sizing: border-box;
    width: 100%;
    height: 60px;
    padding: 0 50px;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}

    .mm-header .mm-title, .mm-header .mm-prev, .mm-header .mm-next {
        padding-top: 30px;
    }

    .mm-header .mm-title {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        display: inline-block;
        width: 100%;
        position: relative;
    }

    .mm-header .mm-prev, .mm-header .mm-next {
        text-decoration: none;
        display: block;
        box-sizing: border-box;
        min-width: 10px;
        height: 100%;
        position: absolute;
        top: 0;
        z-index: 1;
    }

    .mm-header .mm-prev {
        padding-left: 20px;
        padding-right: 10px;
        left: 0;
    }

    .mm-header .mm-next {
        padding-left: 10px;
        padding-right: 20px;
        right: 0;
    }

    .mm-header [href].mm-prev:before, .mm-header [href].mm-next:after {
        content: '';
        border: 2px solid transparent;
        display: inline-block;
        width: 7px;
        height: 7px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .mm-header [href].mm-prev:before {
        border-right: none;
        border-bottom: none;
        margin-left: 2px;
        margin-right: 5px;
    }

    .mm-header [href].mm-next:after {
        border-top: none;
        border-left: none;
        margin-left: 5px;
        margin-right: -2px;
    }

.mm-menu.mm-hassearch .mm-header {
    height: 50px;
    top: 50px;
}

    .mm-menu.mm-hassearch .mm-header .mm-title, .mm-menu.mm-hassearch .mm-header .mm-prev, .mm-menu.mm-hassearch .mm-header .mm-next {
        padding-top: 20px;
    }

.mm-menu.mm-hasheader li.mm-subtitle {
    display: none;
}

.mm-menu.mm-hasheader > .mm-panel {
    padding-top: 80px;
}

    .mm-menu.mm-hasheader > .mm-panel.mm-list {
        padding-top: 60px;
    }

    .mm-menu.mm-hasheader > .mm-panel > .mm-list:first-child {
        margin-top: -20px;
    }

.mm-menu.mm-hasheader.mm-hassearch > .mm-panel {
    padding-top: 120px;
}

    .mm-menu.mm-hasheader.mm-hassearch > .mm-panel.mm-list {
        padding-top: 100px;
    }

.mm-menu .mm-header {
    border-color: rgba(0, 0, 0, 0.15);
    color: rgba(255, 255, 255, 0.3);
}

    .mm-menu .mm-header .mm-prev:before, .mm-menu .mm-header .mm-next:after {
        border-color: rgba(255, 255, 255, 0.3);
    }

/*
  jQuery.mmenu labels addon CSS
*/
.mm-list > li.mm-label > span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding: 0;
    line-height: 25px;
}

.mm-list > li.mm-label.mm-opened a.mm-subopen:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 17px;
}

.mm-list > li.mm-collapsed {
    display: none;
}

.mm-menu .mm-list li.mm-label > div > div {
    background: rgba(255, 255, 255, 0.05);
}

/*
  jQuery.mmenu searchfield addon CSS
*/
.mm-search, .mm-search input {
    box-sizing: border-box;
}

.mm-list > li.mm-search {
    padding: 10px;
    margin-top: -20px;
}

.mm-list > li.mm-subtitle + li.mm-search {
    margin-top: 0;
}

div.mm-panel > div.mm-search {
    padding: 0 0 10px 0;
}

.mm-menu.mm-hasheader .mm-list > li.mm-search {
    margin-top: 0;
}

.mm-search {
    background: inherit;
    width: 100%;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

    .mm-search input {
        border: none;
        border-radius: 30px;
        font: inherit;
        font-size: 14px;
        line-height: 30px;
        outline: none;
        display: block;
        width: 100%;
        height: 30px;
        margin: 0;
        padding: 0 10px;
    }

.mm-menu .mm-noresultsmsg {
    text-align: center;
    font-size: 21px;
    display: none;
    padding: 60px 0;
}

    .mm-menu .mm-noresultsmsg:after {
        border: none !important;
    }

.mm-noresults .mm-noresultsmsg {
    display: block;
}

.mm-menu li.mm-nosubresults > a.mm-subopen {
    display: none;
}

    .mm-menu li.mm-nosubresults > a.mm-subopen + a, .mm-menu li.mm-nosubresults > a.mm-subopen + span {
        padding-right: 10px;
    }

.mm-menu.mm-hassearch > .mm-panel {
    padding-top: 70px;
}

    .mm-menu.mm-hassearch > .mm-panel > .mm-list:first-child {
        margin-top: -20px;
    }

.mm-menu.mm-hasheader > .mm-panel > div.mm-search:first-child {
    margin-top: -10px;
}

    .mm-menu.mm-hasheader > .mm-panel > div.mm-search:first-child + .mm-list {
        padding-top: 0;
    }

.mm-menu .mm-search input {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.6);
}

.mm-menu .mm-noresultsmsg {
    color: rgba(255, 255, 255, 0.3);
}
