@import url("https://fonts.googleapis.com/css2?family=Play&display=swap");

* {
  padding: 0;
  margin: 0;
  font-family: "Play", sans-serif;
}
body{
    background: #F0F0F0;
    overflow-x: hidden;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
}
.espacio{
    padding-top: 80px;
    padding-bottom: 80px;
}
.puntero{
    cursor: pointer;
}
/* =====================================ESTILOS HEADER INDEX===================================== */

/* Logo */
#logo{
    cursor: pointer;
}
/* Modo PC */
#header_tienda{
    /* background: #124361; */
    background: #0C2C40;
    height: 80px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 1px 7px 10px rgba(0, 0, 0, 0.3);
    top: 0;
}
#contenedor_header{
    height: 80px;
}

#menu{
    display: none;
}
/* Menu modo movil (MEDIAQUIERI)*/
@media screen and (max-width:767px) {
    #menu{
        background: #0C2C40;
        width: 80%;
        height: 100%;
        /* right: -100%; */
        left: -100%;
        position: fixed;
        display: block;
        margin-top: 2px;
    }
    #menu nav ul{
        padding-left: 0px;
        padding-right: 0px;
    }
    #menu nav ul li{
        text-align: center;
        border-bottom: 1px solid #FFFFFF;
        padding: 12px;
    }
    #menu nav ul li a{
        color: #000000;
    }
    #menu nav ul li a:hover{
        background: none;
        color: #FFF3DA;
    }
}

#filtros{
    padding-top: 67px;
    position: fixed;
    z-index: 500;
    width: 100%;
    background: #FFFFFF;
}
.filtros-busqueda{
    /* background: #2d3138; */
    background: #3b424e;
}

.btn-menu{
    /* background: #FFFFFF; */
    border-radius: 10px;
}
.btn-menu:hover{
    background: #575858;
}
.active-menu-movil{
    font-weight: bold;
    background: #575858;
    color: #FFFFFF;
}
.active-menu-pc{
    font-weight: bold;
    background: #575858;
    color: #FFFFFF;
}

/* Categoria */
.cinta-movil{
    /* background: #357240; */
    background: #3b424e;
    padding-top: 15px;
    color: #FFF200;
}

.etiqueta{
    background: #124361;
    color: #FFFFFF;
    border-radius: 40px 40px 40px 40px;
}

/* estilos card producto */
.articulo{
    /* border: solid 1px rgba(0, 0, 0, 0.3); */
    background: #FFFFFF;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 0px 5px 5px;
    border-radius: 5px;
    margin: 0.5em;
    padding: 0.5em;
    width: 200px;
    height: 330px;
    justify-content: center;
    position: relative;
}
.oferta{
    position: absolute;
    top: 0;
    left: 0;
    background: #CC0000;
    color: #FFFFFF;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 5px;
}
.promo{
    position: absolute;
    top: 0;
    right: 0;
    background: #52cc00;
    color: #FFFFFF;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 5px;
}
.mas-detalles{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
}
.mas-detalles:hover{
    cursor: pointer;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 0px 5px 5px;
}
.img-producto{
    height: 170px;
    width: 170px;
}

.oferta{
    font-size: small;
}
.promo{
    font-size: small;
}

.overNombreProducto{
    width: 150px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    
}

.nombre-producto{
    font-size: 16px;
}

.img-producto-detalles:hover{
    transform: scale(1.8);
    cursor: zoom-in;
}
.nombre-producto-detalles{
    font-size: 20px;
}
.etiqueta-moneda-detalles{
    font-size: 24px;
}
.precio-producto-detalles{
    font-size: 24px;
}

.contPrecios{
    margin-top: 20px;
}
.etiqueta-moneda{
    font-size: 20px;
}
.precio-producto-1{
    font-size: 16px;
    text-decoration: line-through;
    margin-right: 10px;
    padding-top: 50px;
    color: #CC0000;
}
.precio-producto-2{
    font-size: 24px;
}

.btn-agregar-carro{
    background: #124361;
    color: #FFFFFF;
    width: 250px;
}
.btn-agregar-carro:hover{
    color: #AAD500;
    border-color: #AAD500;
}


/* MediaQuery para vista movil */
@media screen and (max-width: 450px){
 
    .articulo{
        /* border: solid 1px rgba(0, 0, 0, 0.3);
        border-radius: 10px; */
        background: #FFFFFF;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 0px 5px 5px;
        margin: 0.5em;
        padding: 0.5em;
        width: 150px;
        height: 260px;
        justify-content: center;
        position: relative;
    }
    .mas-detalles{
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 100%;
    }
    .mas-detalles:hover{
        cursor: pointer;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 0px 5px 5px;
    }
    .img-producto{
        height: 125px;
        width: 125px;
    }
    .overNombreProducto{
        width: 130px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        justify-content: center;
    }
    .nombre-producto{
        font-size: 14px;
    }
    .descripcion-producto{
        font-size: 14px;
    }
    .precio-producto-1{
        font-size: 14px;
        margin-right: 10px;
        color: #CC0000;
    }
    .precio-producto-2{
        font-size: 16px;
    }
    .etiqueta-moneda{
        font-size: 16px;
    }
    .btn-agregar-carro{
        background: #124361;
        color: #FFFFFF;
        width: 120px;
    }

}
/* =====================================ESTILOS LOGIN===================================== */
#login{
    /* background: linear-gradient(rgba(5, 7, 12, 0.20),rgba(5, 7, 12, 0.20)),
    url(/img/fondoLogin.jpg) no-repeat center center fixed; */
    background: #0C2C40;
    background-size: cover;
    height: 100vh;
}
#formulario_login{
    background: #ffffff;
    /* background: rgba(18, 67, 97, 0.60); */
    background: rgba(12, 12, 15, 0.445);
    border-radius: 10px;
}
.inputs{
    border-radius: 30px;
    color: #ffffff;
}
.boton-color{
    background: #FFD000;
    border-radius: 30px;
    color: #000000;
}

/* =====================================ESTILOS INDEX ===================================== */
#slider1{
    padding-top: 107px;
    margin-bottom: 2px;
}

@media screen and (max-width:767px){
    #slider1{
        padding-top: 164px;
        margin-bottom: 2px;
    }
}

#contenedor_productos{
    min-height: 30vh;
}
.overUrlCarousel{
    width: 130px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    justify-content: center;
}
.btn-submenu{
    padding: 5px;
    cursor: pointer;
}

.active-submenu{
    font-weight: bold;
    text-decoration: underline;
}

#contenedorImgKit{
    height: 350px;
    overflow-y: auto;
}

.img-producto-kit{
    opacity: .7;
}
.img-producto-kit:hover{
    opacity: 1;
}

.active-img{
    opacity: 1 !important;
    border: 2px solid #000000;
    border-radius: 5px;
}
@media screen and (max-width: 425px){
    #contenedorImgKit{
        height: 200px;
        overflow-y: auto;
    }
}

.imgDetalles{
    position: relative;
}

.imgDetalles .promo-detalles{
    position: absolute;
    top: 0;
    right: 50px;
    height: 5px;
}
.precio-producto1-detalles{
    font-size: 18px;
    text-decoration: line-through;
    margin-right: 10px;
    padding-top: 50px;
    color: #CC0000;
}

.oferta-detalles{
    color: #FFFFFF;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 5px;
}
/* .promo-detalles{
    color: #FFFFFF;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 5px;
    font-size: 30px;
} */

.cantidad-detalles{
    width: 80px;
    height: 20px;
    margin-top: 3px;
}

.icono-confirmacion{
    font-size: 25px;
    color: #52cc00;
}
.icono-advertencia{
    font-size: 25px;
    color: #FFD000;
}

.text-confirmacion{
    font-size: 14px;
}

/* Detalle de politicas */
.active-detalle{
    display: block;
}

#contenedor_nosotros{
    padding-top: 90px;
}
/* =====================================ESTILOS CARRITO===================================== */
#lista_carrito{
    padding-top: 80px;
}
.btn-carrito{
    background: #FFD000;
    border-radius: 20px;
    margin-top: 30px;
    width: 100%;
}
.btn-carrito:hover{
    background: #124361;
    color: #ffffff;
}

.nCarrito1{
    background: #CC0000;
    font-size: 10px;
}
.nCarrito2{
    background: #CC0000;
    font-size: 10px;
}

.btn-disminuye{
    background: #B0C0CA;
    color: #000000;
    display: flex;
    height: 30px;
    width: 30px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
}
.btn-aumenta{
    background: #B0C0CA;
    display: flex;
    height: 30px;
    width: 30px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
}

.btn-eliminar{
    background: #CC0000;
    color: #FFFFFF;
    display: flex;
    height: 30px;
    width: 30px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
}
.btn-disminuye:hover{
    border: 1px solid #33435F;
    cursor: pointer;
}
.btn-aumenta:hover{
    border: 1px solid #33435F;
    cursor: pointer;
}
.btn-eliminar:hover{
    border: 1px solid #33435F;
    cursor: pointer;
    color: #FFFFFF;
}
.contenedor-fila{
    height: 50px;
}

.oferta-carrito{
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 5px;
    color: #FFFFFF;
}

.carro-vacio{
    font-size: 50px;
    color: #CC0000;
}

.oferta-carrito-alterado{
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 5px;
    color: #FFFFFF;
    
}

.promo-carrito-alterado{
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 5px;
    color: #FFFFFF;
}

.estado-carrito-alterado{
    background: #353f45;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 5px;
    color: #FFFFFF;
}
/* =====================================ESTILOS COMPRA===================================== */
.color-formularios{
    background: #CAD5DB;
}

/* =====================================ESTILOS CLIENTE===================================== */
 /* fondo de dasborad */
.fondo-oferta{
    background: #FFFFFF;
}

.contenedor1{
    background: #CAD5DB;
    border-right: solid 5px #FFFFFF;
    height: 350px;
}
.contenedor2{
    background: #DBE3E7;
    border-left: solid 5px #FFFFFF;
    padding: 1em;
    height: 350px;
}

.contenedorImg{
    height: 350px;;
}

.cardNivel{
    height: 250px;
    overflow-y: scroll;
}
#nivel_Varios{
    height: 150px;
    overflow-y: scroll;
}
.color-progres-bar{
    background: #AAD500;
}

.posicion{
    position: relative;
}

.sms-container{
    background: #3b424e;
    color: #FFF200;
}

.btn-aux-guardar{
    border-color: #124361;
    color: #000000;
    border-radius: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.btn-aux-guardar:hover{
    background: #124361;
    color: #AAD500;
    border-color: #AAD500;
}

.style-btn-afirmar{
    background: #124361;
    color: #FFFFFF;
    border-radius: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.style-btn-afirmar:hover{
    color: #AAD500;
    border-color: #AAD500;
}

/* Estilo de botones de redes sociales */
.style-btn-whatsapp{
    color: #AAD500;
    font-size: 25px;
}

.style-btn-whatsapp:hover{
    border-radius: 20px;
    color: #0A1E2E;
}

.style-btn-facebook{
    color: #1009d1;
    font-size: 25px;
}

.style-btn-facebook:hover{
    border-radius: 20px;
    color: #0A1E2E;
}

.style-btn-instagram{
    color: #9902b7;
    font-size: 25px;
}

.style-btn-instagram:hover{
    border-radius: 20px;
    color: #0A1E2E;
}

.style-btn-tiktok{
    color: #0A1E2E;
    font-size: 25px;
}

.style-btn-tiktok:hover{
    border-radius: 20px;
    color: #212e38;
}

.div-disabled{
    pointer-events: none;
    opacity: 50%;
}

#modalCarritoStyle{
    background: #F0F0F0;
}

/* sección Pedidos */
.btn-notificar{
    border: 1px solid black;
    color: #02A302; 
    width: 100px;   
}

.btn-ver{
    border: 1px solid black;
    color: #2D89EF;
    width: 100px;
}

.btn-orden{
    border: 1px solid black;
    color: #3a3d3f;
    width: 100px;
}

.proceso-pedido{
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 5px;
    color: #FFFFFF;
}

.btn-disabled{
    /* display: none; */
    opacity: .0;
    pointer-events: none;
}

.pedidos-vacio{
    font-size: 50px;
    color: #CC0000;
}

.oferta-item-pedido{
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 5px;
    color: #FFFFFF;
}

.btn-atras{
    background: #5e6366;
    color: #FFFFFF;
}

/* =====================================ESTILOS ADMINISTRADOR===================================== */
/* Estilos para oferta */
.scroll-style-productos{
    height: 500px;
    overflow-y: auto;
}

/* Productos style */
.over-descripcion{
    width: 100px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.style-btn-ver{
    width: 100px;
}
.style-btn-elimnar{
    width: 50px;
}

#dashborard{
    padding-top: 80px;
    margin-top: 25px;
}

.texto-contador{
    font-size: 30px;
}

.aviso-importante{
    background: #FF8400;
    color: #FFFFFF;
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
    
}

.clientes{
    background: #603CBA;
    /* height: 100px;
    width: 150px; */
    
    color: #FFFFFF;
    margin: 5px;
    border-radius: 8px;
}
.productos{
    background: #00578E;
    color: #FFFFFF;
    margin: 5px;
    border-radius: 8px;
}

.pedidos{
    background: #2D89EF;
    color: #FFFFFF;
    margin: 5px;
    border-radius: 8px;
}
.pendientes{
    background: #FF8400;
    color: #FFFFFF;
    margin: 5px;
    border-radius: 8px;
}
.cancelados{
    background: #CC0000;
    color: #FFFFFF;
    margin: 5px;
    border-radius: 8px;
}
.procesados{
    background: #02A302;
    color: #FFFFFF;
    margin: 5px;
    border-radius: 8px;
}

.estilo-btn-add{
    background: #02A302;
    color: #FFFFFF;
}

.card-acceso-admin{
    position: relative;
    height: 320px;
}
.card-acceso-admin:hover{
    cursor: pointer;
    box-shadow: inset 0px 0px 10px 0 rgba(20, 20, 20, 0.2);
    /* box-shadow: 0 0 20px #4f9; */
}
.click-acceso-admin{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

/* ========================================ESTILOS VENDEDOR======================================= */
.bg-filtros{
    background: #DBE3E7;
}
.estilo-filtros{
    /* background: #124361; */
    background: #FFFFFF;
    color: #000000;
    border-radius: 20px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
    border: solid 0.1px #8C959C;
}

#pedidosVendedor{
    background: #2D89EF;
    color: #FFFFFF;
    width: 180px;
    height: 120px;
    font-size: 21px;
    margin: 5px;
    border-radius: 8px;
}
#pendientesVendedor{
    background: #FF8400;
    color: #FFFFFF;
    width: 180px;
    height: 120px;
    font-size: 21px;
    margin: 5px;
    border-radius: 8px;
}
#canceladosVendedor{
    background: #CC0000;
    color: #FFFFFF;
    width: 180px;
    height: 120px;
    font-size: 21px;
    margin: 5px;
    border-radius: 8px;
}
#procesadosVendedor{
    background: #02A302;
    color: #FFFFFF;
    width: 180px;
    height: 120px;
    font-size: 21px;
    margin: 5px;
    border-radius: 8px;
}


/* ========================================ESTILOS WHATSAPP FLOAT======================================= */
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:30px;
	right:20px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 2px 2px 3px #999;
    z-index:100;
    padding-top: 8px;
}
.float:hover {
	text-decoration: none;
	color: #25d366;
    background-color:#fff;
}

/* =========================================ESTILOS FOOTER========================================= */
#footer{
    background: #0C2C40;
    color: #ffffff;
    padding-top: 50px;
}
#copyright{
    color: #FFFFFF;
}

/* Estilo de iconos de redes*/
.fs-ico{
    font-size: 30px;
}
.fs-ico a{
    /* color: #CC0000; */
    color: #FFFFFF;
}
.fs-ico a:hover{
    color: #b6b6b6;
}

/* Estilo Condiciones */
.fs-politicas a{
    /* color: #CC0000; */
    color: #FFFFFF;
}
.fs-politicas a:hover{
    color: #b6b6b6;
}

.parrafo{
    text-align: justify;
}