/* ========================================= General styles ======================================*/
@font-face {
    font-family: 'FontFamilyLogo';
    src: url('../fonts/goodtime-webfont.woff2') format('woff2'),
         url('../fonts/goodtime-webfont.woff') format('woff'),
         url('../fonts/goodtime-webfont.ttf') format('truetype'),
         url('../fonts/goodtime-webfont.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'FontFamilySPro';
    src: url('../fonts/sourcesanspro-regular-webfont.woff2') format('woff2'),
         url('../fonts/sourcesanspro-regular-webfont.woff') format('woff'),
         url('../fonts/sourcesanspro-regular-webfont.ttf') format('truetype'),
         url('../fonts/sourcesanspro-regular-webfont.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
body{
    font-family: "FontFamilySPro";
    line-height: 1.5;
    font-size: 1.4em;
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #fff;
}
nav{
    width: 100%;
    position: fixed;
    top: 0px;
    background-color: #03a9f4;
    box-shadow: 2px 0px 7px #000;
	z-index: 50;
}
.contenedor-tabla{
    display: table;
    width: 100%;
}
.contenedor-tr {
  display: table-row;
  width: 100%;
}
.contenedor-tr > a{
	text-decoration: none;
	color: #fff;
}
.contenedor-tr > a:hover{
	background-color: rgba(255, 255, 255,.1);
    transition: background-color .4s ease-in;
}
.contenedor-tr > a:last-child{
	border-right: 1px solid rgba(255, 255, 255,0.3);
}
.table-cell-td {
  display: table-cell;
  padding: 20px 7px;
  border-left: 1px solid rgba(255, 255, 255,0.3);
  text-align: center;
  width: 20%;
}
.table-cell-td:focus{
	outline: none;
}

.text-navbar{
    color: #fff;
    font-size: 19px;
    float: left;
    margin-left: 2%;
    margin-top: 15px;
}
#mobile-menu-list{
	display: none;
}
section{
    width: 100%;
    margin: 0px;
    padding: 90px 0px;
}
article{
    width: 100%;
    margin: 0px;
    padding: 10px;
}
footer{
    width: 100%;
    color: #fff;
    background-color: #333;
    padding: 40px 0px;
}
.text-footer{
    color: #5bc0de;
}
footer a{
    color: #fff;
}
.tittles-pages-logo{
    font-family: "FontFamilyLogo";
}
.center-all-contens{
    margin-left: auto;
    margin-right: auto;
}
.ResbeforeSend{
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
    background-color: rgb(255, 255, 255);
    z-index: 99999;
}
.container-form-admin{
    border: 1px solid #e0e1e1 !important;
    border-radius: 4px;
    padding: 10px;
    margin-top: 25px;
}
/* ========================================= index styles ======================================*/
#container-page-index{
    background-image: url("../assets/img/font-index.JPG");
}
#new-prod-index{
    background-color: rgba(255,255,255,.9);
}
#reg-info-index{
    background-color: rgba(255,255,255,.9);
    border-top: 1px solid rgba(183, 165, 165,.2);
}
#distribuidores-index{
    background-color: rgba(186, 188, 171,.87);
    color: #000;
}
/* ========================================= product styles ======================================*/
#container-page-product{
    background-image: url(../assets/img/font-registration.jpg);
}
#store, #infoproduct, #container-pedido{
    background-color: rgba(255,255,255,.97);
    min-height: 900px;
}


/*
.img-product{
    max-height: 250px;
    display: block;
    margin: 0 auto;
}

*/
/* General layout for the product thumbnails */
/* General styles for the product card */
/* Estilos generales para la tarjeta del producto */
/* Asegura que las tarjetas de producto tengan un ancho y alto fijo */
/* Estilos generales para la tarjeta del producto */
.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    background-color: #fff;
    padding: 0;
}

.product-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Estilos para las imágenes del carrusel y las imágenes únicas */
.img-product {
    width: 100%;
    height: 200px; /* Altura fija para las imágenes */
    object-fit: cover; /* Mantiene la proporción de la imagen */
    border-bottom: 1px solid #e0e0e0;
}

/* Estilos para el carrusel */
.product-carousel .carousel-inner {
    height: 200px; /* Debe coincidir con la altura de las imágenes */
}

.product-carousel .carousel-inner .item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-carousel .carousel-control.left,
.product-carousel .carousel-control.right {
    background-image: none;
    color: #333;
    top: 50%;
    transform: translateY(-50%);
}

/* Estilos para los detalles del producto */
.product-details {
    padding: 15px;
    text-align: center;
    flex-grow: 1;
}

.product-brand {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
}

.product-name {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.3em;
    font-weight: 700;
    color: #ff5722;
}

.discounted-price {
    font-size: 1.2em;
    color: #e91e63;
}

/* Estilos para los botones */
.btn {
    border-radius: 20px;
    font-weight: 600;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .img-product {
        height: 180px;
    }

    .product-details {
        padding: 10px;
    }
}

/* Estilos para el slider principal */
#slider-store .carousel-inner .item img {
    width: 100%;
    height: 400px; /* Ajusta esta altura según tus necesidades */
    object-fit: cover;
}

#slider-store .carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
    bottom: 20px;
}

.page-header h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.tittles-pages-logo {
    color: #ff5722;
}

#new-prod-index .page-header h1 {
    font-size: 2em;
    color: #333;
}

#reg-info-index {
    padding: 50px 0;
}

#reg-info-index img {
    max-width: 100%;
    height: auto;
}

@media (min-width: 992px) {
    .col-md-3 {
        margin-bottom: 30px;
    }
}

.pagination > li > a,
.pagination > li > span {
    color: #333;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    background-color: #ff5722;
    border-color: #ff5722;
    color: #fff;
}

.pagination > li > a:hover,
.pagination > li > a:focus {
    background-color: #ddd;
    color: #333;
}


.texto-verde {
    color: green !important;
}

.texto-rojo {
    color: red !important;
}






































/* ========================================= registration styles ======================================*/
#container-page-registration{
    background-image: url(../assets/img/font-registration.jpg);
}
#form-registration{
    min-height: 900px;
    background-color: rgba(255,255,255,.95);
    padding-top: 120px;
}
#container-form{
    padding: 20px;
    border-radius: 7px;
    border: 2px dashed lightblue;
}
/* ========================================= configAdmin styles ======================================*/
#container-page-configAdmin{
    background-image: url(../assets/img/font-registration.JPG);
}
#prove-product-cat-config{
    background-color: #fff;
    min-height: 900px;
}