:root{
    /* --color_componentes : rgba(255, 185, 219, .1);
    --color_principal :rgb(255, 185, 219);
    --color_principal_1:#e5a6c5;
    --color_principal_2:rgba(255, 185, 219, .5);
    --color_principal_3:rgba(255, 185, 219, .2); */
    --color_categoria_activa: #9175DB;
    --color_categoria_activa_2: #c1b0ee;
    --color_categoria_activa_3:#aab9f3;
    --color_componentes : rgba(238, 181, 235, .1);
    --color_componentes_solido : #FDF7FD;
    --color_principal :rgb(238, 181, 235);
    --color_principal_1:#e9a0e5;
    --color_principal_2:rgba(238, 181, 235, .5);
    --color_principal_3:rgba(238, 181, 235, .2);
    --color_principal_2_solid:#F6DAF5;
    --color_principal_3_solid:#FCF0FB;

    --fondo: white;
    --fondo_noche: rgb(24, 24, 24);

    --color_success_1:#507CD6;
    --color_success_2:#6189da;

    --color_warning_1:#FFA307;
    --color_warning_2:#ffac1f;

    --color_danger_1:#FE4E58;
    --color_danger_2:#fe5f68;

    --color_info_1:#e9a0e5;
    --color_info_2:#F6DAF5;
/*
    --color_info_1:#4cb9d5;
    --color_info_2:#55ceed; */
    --segundos_efect_blur : 0;
}

/* width */
::-webkit-scrollbar {
    /* width: 5px; */
    /* height: 5px; */
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, .01);
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--color_componentes);
    overflow: hidden;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--color_principal);
    border-radius: .5em;
    border: 1px;
    border-style: dashed;
    border-color: transparent;
    transition: background-color .5s, border-color .5s;
    box-shadow: 0 0 1em 5px var(--color_principal_3) inset;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    border-color: black;
}

body{
    /* font-family: 'Oleo Script', cursive; */
    background-color: var(--fondo) ;
    /* font-family: 'Noto Serif', serif; */
    font-family: 'Noto Serif', serif;
    font-size: .85em;
}
#body.select_modo_dia{
    background-color: var(--fondo) !important;
    color: black;
    transition: background-color 1s, color 1s;
}
#body.select_modo_noche{
    color: white;
    background-color: var(--fondo_noche) !important;
    transition: background-color 1s, color 1s;
}
.fondo_contenido{
    display: flex;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: var(--segundos_efect_blur) filter linear;
    -webkit-transition: var(--segundos_efect_blur) -webkit-filter linear;
    -moz-transition: var(--segundos_efect_blur) -moz-filter linear;
    -ms-transition: var(--segundos_efect_blur) -ms-filter linear;
    -o-transition: var(--segundos_efect_blur) -o-filter linear;
}

.contenido{
    width: 100%;
    max-width: 80em;
    padding: 0 1.5em 1.5em 1.5em;
}
    
    
            /*  */
.contenido_medio{
    display: flex;
    margin: 0 .5em;
    margin-top: 2.5em;
    width: calc(100% - 1em);
    position: relative;
}
    
    .contenedor_productos{
        width: 100%;
    }
        .contenedor_productos_titulo{
            display: flex;
            flex-direction: column;
        }
            .contenedor_productos_titulo .titulo{
                font-size: 2em;
                font-weight: 700;
            }
            .contenedor_productos_titulo .sub_titulo{
                font-weight: 100;
            }

    

/* RADIO BUTTON STYLE */
.cont_rbtn > span{
    color: transparent;
}
  label > input[type="radio"] {
    display: none;
  }
  label > input[type="radio"] + *::before {
    content: "";
    display: inline-block;
    vertical-align: bottom;
    width: 1rem;
    height: 1rem;
    margin-right: 0.3rem;
    border-radius: 50%;
    border-style: solid;
    border-width: 0.1rem;
    border-color: var(--color_categoria_activa);
    background: transparent;
    box-shadow: 0 0 2px 1px rgb(145 117 219 / 50%) inset;
  }

  label > input[type="radio"]:checked + *::before {
    background: radial-gradient(var(--color_categoria_activa) 0%, var(--color_categoria_activa) 40%, transparent 50%, transparent);
    box-shadow: none;
  }

  /* COMBO BOX */
.contenedor_combo_box{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contenedor_combo_box_top .combo_box{
    top: auto !important;
    bottom: 0;
}

.contenedor_combo_box_top .combo_box .fondo{
    top: auto !important;
    bottom: 0;
    margin-bottom: 4.5em;
}

.combo_box{
    display: none;
    position: absolute;
    width: 100%;
    height: fit-content;
    top: 0;
    left: 0;
    z-index: 10;
}
.contenedor_combo_box:hover .combo_box{
    display: flex !important;
}
.combo_box .fondo{
    width: 100%;
    max-height: 15em;
    border-radius: .8em;
    margin-top: .5em;
    overflow: hidden;
}
.combo_box .fondo .fondo_contenedor{
    margin: 1em;
    height: calc(100% - 2em);
    overflow-y: auto !important;
}
.combo_box .contenedor{
    width: 100%;
    overflow-y: auto;
    display: flex;
    overflow-x: hidden;
    flex-direction: column;
}
.combo_box .contenedor .opcion{
    width: calc(100% - 1.5em);
    display: flex;
    border-radius: .7em;
    padding: .5em;
    margin: .25em;
    background-color:transparent;
    transition: background-color .5s;
    cursor: pointer;
}
.combo_box .contenedor .opcion:last-child{
    margin-bottom: 0 !important;
}
.combo_box .contenedor .opcion:hover{
    background-color: rgba(255, 255, 255, .2);
}
.combo_box .contenedor .opcion.check{
    text-decoration-line: line-through;
    opacity: .5;
    background-color: rgba(255, 255, 255, .2);
}
.combo_box .contenedor .opcion.check:hover{
    cursor: default;
}

/* MODAL MENSAJES */
.modal_content_fondo{
    opacity: 0;
    margin-left: -200%;
    z-index: 10;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
    .modal_content{
        width: 100%;
        max-width: 25em;
        border-radius: 1em;
        background-color: white;
        overflow: hidden;
        box-shadow: 0 0 1em .1em rgba(0, 0, 0, .3);
        display: flex;
        flex-direction: column;
        position: relative;
        transition: background-color 1s;
    }
    
    #body.select_modo_noche .modal_content{
        background-color: var(--fondo_noche);
        box-shadow: 0 0 1em 1px rgba(255, 255, 255, .03),
        0 0 1em 5px var(--color_principal_3) inset;
        transition: background-color 1s;
    }
        .modal_content_superior{
            width: 140%;
            height: 6em;
            margin-left: -20%;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            background-color: transparent;
            border-bottom-left-radius: 100%;
            border-bottom-right-radius: 100%;
            position: relative;
        }
        .modal_content_superior.modal_success{
            background-color: var(--color_success_2);
        }
        .modal_content_superior.modal_success .modal_content_superior_desing_3{
            background-color: var(--color_success_1);
        }
        .modal_content_superior.modal_info{
            background-color: var(--color_info_2);
        }
        .modal_content_superior.modal_info .modal_content_superior_desing_3{
            background-color: var(--color_info_1);
        }
        .modal_content_superior.modal_warning{
            background-color: var(--color_warning_2);
        }
        .modal_content_superior.modal_warning .modal_content_superior_desing_3{
            background-color: var(--color_warning_1);
        }
        .modal_content_superior.modal_danger{
            background-color: var(--color_danger_2);
        }
        .modal_content_superior.modal_danger .modal_content_superior_desing_3{
            background-color: var(--color_danger_1);
        }
            .modal_content_superior_desing_1,
            .modal_content_superior_desing_2{
                z-index: 0;
                width: 10em;
                height: 10em;
                position: absolute;
                border-radius: 100%;
                background-color: rgba(255, 255, 255, .3);
                margin-bottom: -5em;
                transition: background-color 1s;
            }

            #body.select_modo_noche .modal_content_superior_desing_1,
            #body.select_modo_noche .modal_content_superior_desing_2{
                background-color: rgba(0, 0, 0, .3);
                transition: background-color 1s;
            }
            .modal_content_superior_desing_2{
                width: 15em;
                height: 15em;
                margin-bottom: -8em;
            }

            .modal_content_superior_desing_3{
                z-index: 1;
                width: 4em;
                height: 4em;
                border-radius: 100%;
                background-color: var(--color_success_1);
                color: white;
                margin-bottom: -2em;
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
            }
            .modal_content_superior_icon{
                font-size: 2.5em;
            }
        .modal_content_titulo{
            text-align: center;
            width: calc(100% - 2em);
            padding: 1em;
            font-size: 1.2em;
            font-weight: 700;
            margin-top: 1.7em;
            z-index: 1;
        }
        .modal_content_descripcion{
            width: calc(100% - 2em);
            text-align: center;
            padding: 0 1em;
            margin-bottom: 1em;
            z-index: 1;
        }
        .modal_content_opciones{
            display: none;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            padding: .5em;
        }
        .modal_content_opciones_mostrar{
            display: flex;
        }
        .modal_content_opciones_btn{
            margin: .5em;
            width: 100%;
            display: flex;
            justify-content: center;
            color: white;
            border-radius: .7em;
            padding: .5em;
            cursor: pointer;
            transition: background-color .4s;
        }
        #btn_aceptar_alert{
            background-color: var(--color_success_1);
        }
        #btn_aceptar_alert:hover{
            background-color: var(--color_success_2);

        }
        #btn_cancelar_alert{
            background-color: var(--color_danger_1);
        }
        #btn_cancelar_alert:hover{
            background-color: var(--color_danger_2);

        }


        /* FONDO BLUR */

.efect_blur::before{
    content: "";
    width: 110%;
    height: 110%;
    position: absolute;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, .5);
    /* -webkit-backdrop-filter: blur(10px) saturate(100%) contrast(45%) brightness(130%); */

} 

/* CARGANDO */
.modal_content_cargando{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -200%;
    opacity: 0;
}
    .content_cargando{
        position: relative;
        display: flex;
        flex-wrap: wrap;
        width: 12em;
        animation: animation_cargando;
        animation-duration: 1.5s;
        animation-iteration-count: infinite;
        animation-fill-mode: forwards ;
    }
        .content_cargando_fondo{
            width: 5em;
            height: 5em;
            margin: .5em;
            position: relative;
       }
            .contenet_cargando_circulo{
                width: 100%;
                height: 100%;
                border-radius: 100%;
                position: absolute;
            }
            .content_cargando_fondo:nth-child(1) .contenet_cargando_circulo{
                bottom: 0;
                right: 0;
                animation: animation_cargando_circulo_1;
                animation-duration: 1s;
                animation-iteration-count: infinite;
                animation-fill-mode: forwards ;
                background-color:var(--color_info_1);
            }
            .content_cargando_fondo:nth-child(2) .contenet_cargando_circulo{
                bottom: 0;
                left: 0;
                animation: animation_cargando_circulo_2;
                animation-duration: 1s;
                animation-iteration-count: infinite;
                animation-fill-mode: forwards ;
                background-color:var(--color_warning_2);
            }
            .content_cargando_fondo:nth-child(3) .contenet_cargando_circulo{
                top: 0;
                right: 0;
                animation: animation_cargando_circulo_3;
                animation-duration: 1s;
                animation-iteration-count: infinite;
                animation-fill-mode: forwards;
                background-color:var(--color_danger_2);
            }
            .content_cargando_fondo:nth-child(4) .contenet_cargando_circulo{
                top: 0;
                left: 0;
                animation: animation_cargando_circulo_4;
                animation-duration: 1s;
                animation-iteration-count: infinite;
                animation-fill-mode: forwards;
                background-color:var(--color_success_2);
            }
@keyframes animation_cargando{
    0%{
        transform: rotateZ(0deg);
    }
    100%{
        transform: rotateZ(90deg);
    }
}

@keyframes animation_cargando_circulo_1{
    0%{
        margin-bottom: 0;
        margin-right: 0;
    }
    50%{
        margin-bottom: 1em;
        margin-right: 1em;
    }
    100%{
        margin-bottom: 0;
        margin-right: 0;
    }
}
@keyframes animation_cargando_circulo_2{
    0%{
        margin-bottom: 0;
        margin-left: 0;
    }
    50%{
        margin-bottom: 1em;
        margin-left: 1em;
    }
    100%{
        margin-bottom: 0;
        margin-left: 0;
    }
}
@keyframes animation_cargando_circulo_3{
    0%{
        margin-top: 0;
        margin-right: 0;
    }
    50%{
        margin-top: 1em;
        margin-right: 1em;
    }
    100%{
        margin-top: 0;
        margin-right: 0;
    }
}
@keyframes animation_cargando_circulo_4{
    0%{
        margin-top: 0;
        margin-left: 0;
    }
    50%{
        margin-top: 1em;
        margin-left: 1em;
    }
    0%{
        margin-top: 0;
        margin-left: 0;
    }
}


/* RESPONSIVE DESIGN */
#btn_ver_categoria,
#btn_ver_filtros{
    display: none;
}
#btn_menu_opciones{
    margin-left: .5em;
    display: none;
    font-size: 1.2em;
}
#contenido_categoria_scroll_titulo,
#opcion_filtro_cont_fondo_contenedor_titulo{
    display: none;
}
.contenido_superior_total_min #contenido_categoria_scroll_titulo,
.contenido_superior_total_min #opcion_filtro_cont_fondo_contenedor_titulo{
    display: flex;
    align-items: center;
}
#contenido_categoria_scroll_titulo span,
#opcion_filtro_cont_fondo_contenedor_titulo span{
    width: 1.5em;
    height: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .7em;
    background: rgba(255, 255, 255, .1);
    border-radius: 100%;
    margin-top: .5em;
    margin-right: .3em;
    cursor: pointer;
}
.contenido_categoria_scroll_min,
.contenido_categoria_filtro_min{
    margin-left: 0 !important;
    opacity: 1 !important;
}
.contenido_categoria_scroll_min,
.contenido_categoria_filtro_min{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.contenido_categoria_scroll_min #contenido_categoria_scroll_titulo,
.contenido_categoria_filtro_min #opcion_filtro_cont_fondo_contenedor_titulo{
    display: flex;
    position: sticky !important;
    right: 0;
    top: 1em;
    writing-mode: vertical-rl;
    font-size: 2em;
    margin-right: 0;
    margin-top: 1em;
    color: white;
}
.contenido_categoria_filtro_min #opcion_filtro_cont_fondo_contenedor_titulo{
    margin-right: .5em;
}
.contenido_superior_total_min{
    z-index: 0 !important;
}
/* 
#body.select_modo_noche .contenido_informacion_scroll_min .opcion_filtro{
    background-color: var(--fondo_noche);
} */
.opcion_filtro_cont_fondo_contenedor{
    display: flex;
    flex-wrap: wrap;
}
.contenido_categoria_filtro_min .opcion_filtro_cont_fondo_contenedor{
    flex-direction: column;
    max-width:  calc(100%) !important;
    width: 18em;
    background-color: var(--fondo) !important;
}
#body.select_modo_noche .contenido_categoria_scroll_min .contenido_categoria,
#body.select_modo_noche .contenido_categoria_filtro_min .opcion_filtro{
    background-color: var(--fondo_noche) !important;
}
#body.select_modo_noche .contenido_categoria_scroll_min .contenido_categoria.active{
    background-color: var(--color_categoria_activa) !important;
}
#body.select_modo_noche .contenido_categoria_filtro_min .opcion_filtro_cont_fondo_contenedor .fondo{
    background: transparent !important;
}


.contenido_categoria_filtro_min .opcion_filtro_cont_fondo_contenedor .contenedor_combo_box{
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 1.5em;
}
.contenido_categoria_filtro_min .opcion_filtro_cont_fondo_contenedor .opcion_filtro{
    margin: .5em 0;
}

.contenido_categoria_filtro_min .opcion_filtro_cont_fondo_contenedor .opcion_filtro:nth-child(1){
    margin-top: 0;
}
.contenido_categoria_filtro_min .opcion_filtro_cont_fondo_contenedor .opcion_filtro:nth-last-child(1){
    margin-bottom: 0;
}
.contenido_categoria_filtro_min .opcion_filtro_cont_fondo_contenedor .contenedor_combo_box .combo_box{
    display: flex;
    margin-top: .5em;
    position: relative;
    max-height: fit-content;
}
.contenido_categoria_filtro_min .opcion_filtro_cont_fondo_contenedor .contenedor_combo_box .combo_box .fondo{
    max-height: fit-content !important;
    border: none;
}
.contenido_categoria_filtro_min .opcion_filtro_cont_fondo_contenedor .contenedor_combo_box .combo_box .fondo .fondo_contenedor{
    margin: 0;
    height: fit-content;
}
.contenido_categoria_filtro_min .opcion_filtro_cont_fondo_contenedor .contenedor_combo_box .combo_box .fondo .fondo_contenedor .opcion{
    margin: .25em 0;
}


@media only screen and (max-width: 1135px){
    .cont_detalle_producto{
        max-width: 65em;
    }
}
.cont_otras_opciones{
    display: none;
    flex-wrap: wrap;
    margin-left: -10%;
    width: calc(120%);
    z-index: 2;
    margin-left: 3em;
    margin-top: 2.8em;
}
.cont_otras_opciones .fondo_opciones{
    border-radius: .6em;
    margin-left: .25em;
}

.cont_otras_opciones .fondo_opciones:hover{
    border-color: black;
}
#body.select_modo_noche .cont_otras_opciones .fondo_opciones:hover{
    background-color: transparent !important;
    border-color: var(--color_principal) !important;
}

.cont_img_grupo_min, .cont_comentarios_total_min,.cont_caracteristicas_total_min{
    position: fixed;
    width: calc(100% - 2em);
    height: calc(100% - .5em);
    padding: 1em;
    top: 0;
    left: 0;
    margin: 0;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, .5);
    z-index: 5;
    overflow-y: auto;
    display: flex !important;   
}

.cont_img_grupo_min .cont_img:first-child{
    margin-top: .5em;
}
.cont_img_grupo .cont_img:last-child{
    margin-bottom: 2em;
}
.cont_comentarios_total_min,
.cont_caracteristicas_total_min{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.cont_comentarios_total_min .cont_comentario_resumen_total,
.cont_caracteristicas_total_min .cont_caracteristicas_resumen_total{
    width: calc(100% - 4em);
    max-width: 45em;
    padding: 0;
    color: white;
    margin-top: .5em;
}
.cont_comentarios_total_min .cont_comentarios,
.cont_caracteristicas_total_min .cont_caracteristicas{
    max-width: 45em;
    width: calc(100% - 4em);
    height: min-content;
    margin-bottom: 1.5em;
}
.cont_comentarios_total_min .cont_comentario_resumen_info .cont_evaluacion_icon,
.cont_comentarios_total_min .cont_comentario_resumen_info .cont_comentario_resumen_dato{
    color: rgba(255, 255,255, .4);
}
.cont_comentarios_total_min .cont_comentario_resumen_info .cont_comentario_resumen_dato:nth-child(2),
.cont_caracteristicas_total_min .cont_caracteristicas_resumen_total .cont_caracteristicas_resumen_dato{
    color: white;
}
@media only screen and (max-width: 1020px){
    /*MODAL DETALLE PRODUCTO*/
    .cont_fondo_detalle_producto{
        height: calc(100% - 2em);
    }
    .cont_datos_option{
        width: calc(100vw - 5.5em) !important;
        max-width: 36.5em;
        position: fixed;
        top: 0;
        margin-top: 2.5em;
    }
    .cont_comentarios_total,
    .cont_img_grupo,
    .cont_caracteristicas_total{
        display: none;
    }
    .cont_buscar_productos_comprados{
        width: 100%;
    }
    .cont_otras_opciones{
        display: flex;
        margin-left: -10%;
        width: calc(120%);
        justify-content: center;
    }
    .cont_img_principal {
        height: 100%;
        max-height: calc(100vh - 15em);
        margin-top: 3em;
    }
    .cont_detalle_producto{
        flex-direction: column;
        overflow-y: auto;
        background: transparent !important;
        box-shadow: none !important;
        height: 100%;
        max-width: 40em;
    }
    .cont_detalle_producto:before{
        content: '';
        position: fixed;
        width: calc(100vw - 2em) !important;
        max-width: 40em;
        height: calc(100% - 2em);
        margin-top: 1em;
        border-radius: 1em;
        background: white;
        box-shadow: 0 0 1em 1px rgba(0, 0, 0, .3), 0 0 1em 5px var(--color_principal_3) inset;
    }
    
    #body.select_modo_noche .cont_detalle_producto:before{
        background-color: var(--fondo_noche) !important;
        box-shadow: 0 0 1em 1px rgba(255, 255, 255, .05),
        0 0 1em 5px var(--color_principal_3) inset;
    }

    .cont_detalle_titulo{
        display: none;
    }
    .cont_detalle_img{
        width: 100%;
        margin-top: 0;
        z-index: 0;
    }
    .cont_img_fondo{
        margin-top: 6em !important;
    }
        .cont_detalle_img .cont_detalle_img_grupo{
            width: 80%;
            margin-left: 10%;
            overflow: initial;
            display: flex;
            flex-direction: column;
        }
    .cont_detalle_datos{
        width: calc(100% - 4em);
        margin-top: 2em;
    }
        .cont_detalle_datos .cont_detalle_datos_color{
            margin-bottom: 7em;
            margin-top: 2em;
            justify-content: center;
            flex-wrap: wrap;
            align-items: center;
        }
        .cont_detalle_datos .cont_detalle_datos_opciones{
            position: fixed;
            bottom: 0;
            border-radius: 1em;
            padding-top: 1em;
            padding-left: 1.5em;
            padding-right: 1.5em;
            padding-bottom: 1.5em;
            width: calc(100% - 5em);
            max-width: calc(40em - 3em);
            margin-left: -2em;
            z-index: 5;
            background: white;
            box-shadow: 0 0 .5em 1px var(--color_principal_3) inset;
            margin-bottom: 1em;
        }
        
        #body.select_modo_noche .cont_detalle_datos .cont_detalle_datos_opciones{
            background-color: var(--fondo_noche) !important;
        }
}

@media only screen and (max-width: 990px){
    .cont_detalle_producto{
        /* max-width: 65em; */
    }
}
@media only screen and (max-width: 956px){
    
    .cont_estadisticas_fondo .cont_estadisticas_informacion_datos:nth-child(3){
        max-width: 37.8em;
    }
}

@media only screen and (max-width: 800px){
    #btn_menu_opciones{
        display: flex;
    }
    #btn_ver_categoria,
    #btn_ver_filtros{
        display: flex;
    }
    #btn_mostrar_barra_busqueda{
        position: relative;
        display: flex;
    }

    .contenido_superior_opciones{
        display: none;
        position: absolute;
        flex-direction: column;
        width: min-content;
        right: 0;
        background-color: var(--fondo);
        border-radius: .7em;
        padding: .5em 1em;
        box-shadow:  0 0 1em 5px var(--color_principal_3) inset;
    }
    .contenido_superior_opciones .fondo_opciones{
        margin: .25em 0;
        border-color: var(--color_principal);
        justify-content: center;
    }
    .cont_opcion_menu:hover .contenido_superior_opciones{
        display: flex;
    }

    #body.select_modo_noche .contenido_superior_opciones{
        background-color: var(--fondo_noche);
    }

    .contenedor_productos .contenedor_productos_titulo{
        margin: 0 1em;
    }
    .contenedor_productos .contenedor_productos_filtro{
        padding-left: 1em;
        padding-right: 1em;
        padding-top: .25em;
    }

    .contenido_categoria_scroll,
    .opcion_filtro_cont_fondo{
        position: fixed;
        content: '';
        width: 100% !important;
        height: 100% !important;
        max-width: calc(100% - 1em);
        max-height: 100%;
        top: 0;
        left: 0;
        z-index: 11;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        background-color: rgba(0, 0, 0, .5);
        overflow-y: auto;
        margin-left: -200%;
        opacity: 0;
    }
    
    .opcion_filtro_cont_fondo{
        max-width: calc(100%);
    }
    
    .contenido_categoria_scroll .contenido_categoria_total{
        max-width:  calc(100%) !important;
        width: 18em;
    }

    .contenido_categoria_scroll .contenido_categoria_total,
    .opcion_filtro_cont_fondo .opcion_filtro_cont_fondo_contenedor{
        background-color: transparent !important;
        margin: 1em;
        overflow: hidden;        
        padding: 1em .25em 1em 1em;
        border-radius: .7em;
    }
    .contenido_categoria_scroll .contenido_categoria_total .contenido_categoria{
        min-height: 5em;
        position: relative;
        background-color: white;
    }   
    .opcion_filtro_cont_fondo .opcion_filtro_cont_fondo_contenedor .opcion_filtro,
    .opcion_filtro_cont_fondo .opcion_filtro_cont_fondo_contenedor .opcion_filtro .fondo{
        background-color: white;
    } 
    .contenido_categoria_filtro_min .opcion_filtro_cont_fondo_contenedor .contenedor_combo_box .combo_box .fondo .fondo_contenedor .opcion{
        width: calc(100% - 1em) !important;
    }
   
    .contenido_categoria_scroll .contenido_categoria_total .contenido_categoria .contenido_categoria_icon{
        margin-top: 1em;
    }
    
    #body.select_modo_noche .contenido_categoria_scroll .contenido_categoria_total{
        background-color: var(--fondo_noche);
    }

    /* CONSULTA */
    .cont_necesitas_ayuda{
        height: calc(100% - 4em);
        max-height: min-content;
        padding: 1em;
        max-width: 30em;
    }
    .cont_necesitas_ayuda_contenedor{
        width: calc(100% - 2em);
        height: calc(100% - 2em);
        padding: 1em;
    }
    .cont_necesitas_ayuda__cont_izquierda{
        width: 100%;
    }
    .cont_izquierda_superior{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .cont_necesitas_ayuda__opcion{
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 3em;
        margin-bottom: 3em;
    }
    .cont_necesitas_ayuda__formulario_consulta{
        height: auto;
    }
    .cont_estadisticas_compra_filtro{
        position: relative;
    }
}


@media only screen and (max-width: 750px){
    .cont_datos_personales .cont_datos{
        width: calc(100% - 1.5em) !important;
    }
    .cont_usuario_total{
        padding: 1.5em;
    }
    .cont_imagen_total{
        width: 13em;
        height: 13em;
    }
    .cirulo_desing_1{
        width: 2em;
        height: 2em;
        margin-top: 1em;
    }
    .cirulo_desing_2{
        width: 4em;
        height: 4em;
        margin-bottom: .5em;
    }
    .cont_datos_despacho{
        justify-content: center;
    }
    .cont_usuario_total{
        height: calc(100% - 5em);
    }
}

@media only screen and (max-width: 660px){
    .cont_estadisticas_fondo .cont_estadisticas_informacion_datos{
        max-width: 100% !important;
        margin: .5em 0 !important;
    }
}

@media only screen and (max-width: 600px){
    /*MODAL DETALLE PRODUCTO*/
    .cont_img_grupo .cont_img{
        width: 100%;
        margin: .5em 0;
    }
    .cont_img_grupo .cont_img img{
        width: 90%;
        margin-left: 5%;
    }
    .cont_img_grupo .cont_img:first-child{
        margin-top: 0 !important;
    }
    .cont_img_grupo .cont_img{
        margin-bottom:  1em !important;
        margin-top: 0 !important;
    }
    .cont_img_grupo .cont_img:last-child{
        margin-top: 1em;
        margin-bottom: 1.5em !important;
    }
    .cont_img_grupo .cont_img .detalle_img:nth-child(2){
        margin-top: 6em !important;
        width: 80%;
        height: 80%;
        margin-left: 10% !important;
    }
    .detalle_img.cont_img_fondo{
        margin-top: 5em !important;
    }
}

@media only screen and (max-width: 460px){
    .cont_datos_despacho .cont_datos{
        max-width: 100%;
    }
    .select_filtro_mes,
    .select_filtro_anio 
    {
        width: 100%;
    }
    .cont_estadisticas_compra .cont_cabecera.cont_estado .cont_estado_titulo{
        display: none;
    }
    .cont_estadisticas_compra .cont_cabecera.cont_estado .cont_estado_select_estados {
        margin: 0;
        margin-top: .7em;
    }
    #btn_ver_categoria,
    #btn_ver_filtros{ 
        width: calc(50% - 3.65em);
        justify-content: center;
    }
    #btn_ver_filtros{
        margin-right: 0;
    }
    .detalle_img.cont_img_fondo{
        margin-top: 3em !important;
    }
    .cont_img_grupo .cont_img .detalle_img:nth-child(2){
        margin-top: 3.5em !important;
        width: 80%;
        height: 80%;
        margin-left: 10% !important;
    }
}

