* {
    font-family: "Montserrat", sans-serif;
}

body {
    height: 100vh;
    min-height: 100%;
}

footer {
    /* position: fixed; */
    bottom: 0px;
    width: 100%;
}

#container_menu {
    min-height: 1000px;
}

.margin-top-15 {
    margin-top: 15px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-50 {
    margin-top: 50px;
}

.padding-15 {
    padding: 15px;
}

.padding-30 {
    padding: 30px;
}

.padding-50 {
    padding: 50px;
}

/* Estilos para los botones */
.button-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.button-container button {
    margin-right: 10px;
    background-color: #6c757d;
    /* Gris por defecto */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

.button-container button:hover {
    background-color: #007bff;
    /* Azul al pasar el ratón */
}

.selected {
    background-color: #007bff !important;
    /* Azul si está seleccionado */
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
}

#product_container .item .form-group input {
    width: 100%;
    color: black;
}

#product_container .item .card {
    padding: 5px;
}



#product_container .item .form-group {
    padding: 5px;
}

.navbar .collapse.navbar-collapse {
    text-align: center;
}

@media (min-width: 1025px) {
    .h-custom {
        height: 100vh !important;
    }
}

.itemCarrito .botoneraItemCarrito i {
    font-size: 21px;
}


.itemCarrito .botoneraItemCarrito .addOneItem:hover {
    color: #007bff;
}

.itemCarrito .botoneraItemCarrito .deleteOneItem:hover {
    color: #007bff;
}

.itemCarrito .botoneraItemCarrito .deleteItem:hover {
    color: red;
}

.rowActionsMenu .card {
    box-shadow: 2px 2px 5px black;
    transition: all .2s ease-in-out;
}

.rowActionsMenu .card:hover {
    transform: scale(1.1)
}

#ordersTable th {
    background-color: rgb(32, 32, 32);
    color: white;
}

#ordersTable .tablapedidoimpar>td {
    background-color: rgb(247, 246, 244);
}

.pedidosPeque {
    display: none;
}

.pedidosGrande {
    display: block;
}

@media (max-width: 1025px) {
    .pedidosPeque {
        display: block;
    }

    .pedidosGrande {
        display: none;
    }

}

.view-button {
    border: none;
    background-color: transparent;
    color: black;
    transition: color 0.3s ease;
    font-size: 20px;
}

.view-button.active {
    color: gray;
}

.view-button:hover {
    color: #333;
    /* Color negro ligeramente más oscuro */
}

th.dt-center,
td.dt-center {
    text-align: center !important;
}

table.dataTable tbody td {
    vertical-align: middle;
  }

.vertical-middle {
    vertical-align: middle !important;
  }

  /* Error 404 Page */

  #notfound {
    position: relative;
    height: 100vh;
  }
  
  #notfound .notfound {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  
  .notfound {
    max-width: 520px;
    width: 100%;
    line-height: 1.4;
    text-align: center;
  }
  
  .notfound .notfound-404 {
    position: relative;
    height: 240px;
  }
  
  .notfound .notfound-404 h1 {
    font-family: 'Montserrat', sans-serif;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 252px;
    font-weight: 900;
    margin: 0px;
    color: #262626;
    text-transform: uppercase;
    letter-spacing: -40px;
    margin-left: -20px;
  }
  
  .notfound .notfound-404 h1>span {
    text-shadow: -8px 0px 0px #fff;
  }
  
  .notfound .notfound-404 h3 {
    font-family: 'Cabin', sans-serif;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #262626;
    margin: 0px;
    letter-spacing: 3px;
    padding-left: 6px;
  }
  
  .notfound h2 {
    font-family: 'Cabin', sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    margin-top: 0px;
    margin-bottom: 25px;
  }

  #totalImportProducts{
    color: black !important ;
    opacity: 1 !important;
  }
  
  @media only screen and (max-width: 767px) {
    .notfound .notfound-404 {
      height: 200px;
    }
    .notfound .notfound-404 h1 {
      font-size: 200px;
    }
  }
  
  @media only screen and (max-width: 480px) {
    .notfound .notfound-404 {
      height: 162px;
    }
    .notfound .notfound-404 h1 {
      font-size: 162px;
      height: 150px;
      line-height: 162px;
    }
    .notfound h2 {
      font-size: 16px;
    }
  }

  @media screen and (max-width: 1000px) and (min-width: 760px){
    .itemProduct {
      width: 50% !important;
    }
  }
  
  