* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.clear {
  clear: both;
}
::selection {
  background: rgba(85, 45, 39, 0.3);
}
-moz-::selection {
  background: rgba(85, 45, 39, 0.3);
}
body,
html {
  padding: 0;
  margin: 0;
  color: #552d27;
  font-family: "Museo Slab", "museo-slab";
}
#page {
  margin-top: 90px;
}
.navbar {
  background-color: #fff;
  border-bottom: 1px solid #552d27;
  box-shadow: 0 2px 6px rgba(85, 45, 39, 0.2);
  height: 70px;
  padding-top: 10px;
}

/* Assicura che il navbar-right rimanga sulla stessa linea */
@media (min-width: 768px) {
  .navbar-nav.navbar-right {
    margin-right: 0;
  }
  .navbar-nav.navbar-right > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  
  /* Previene il wrap del menu su schermi medi */
  .navbar-collapse {
    display: flex !important;
    justify-content: space-between;
  }
  
  .navbar-nav {
    display: flex;
    flex-wrap: nowrap;
  }
  
  /* Riduce padding su schermi più piccoli */
  @media (max-width: 1200px) {
    .navbar-nav > li > a {
      padding-left: 10px;
      padding-right: 10px;
    }
  }
  
  @media (max-width: 992px) {
    .navbar-nav > li > a {
      padding-left: 8px;
      padding-right: 8px;
      font-size: 13px;
    }
  }
}
.navbar .container .navbar-header .navbar-brand {
  padding: 5px 15px;
}
.navbar .container .navbar-header .navbar-brand img {
  height: 100%;
  width: auto;
}
.navbar .container .nav {
  border-left: 1px solid #552d27;
}
.navbar .container .nav li a {
  color: rgba(85, 45, 39, 0.6);
  font-weight: 500;
  -webkit-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.1s;
  -ms-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.navbar .container .nav li a:hover {
  background-color: transparent;
  color: #552d27;
}
.navbar .container .cart,
.navbar-nav .cart {
  cursor: pointer;
  color: rgba(85, 45, 39, 0.6);
  -webkit-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.1s;
  -ms-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

.navbar-nav .cart:hover {
  color: #552d27;
}
.navbar .container .cart span {
  -webkit-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.1s;
  -ms-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.navbar .container .cart span.prodottiCarrello,
.navbar-nav .cart span.prodottiCarrello {
  background-color: #552d27;
  color: #fff;
  font-size: 14px;
  font-weight: 100;
  margin-right: 10px;
  height: 24px;
  border-radius: 12px;
  padding: 0 10px;
  line-height: 26px;
  display: inline-block;
  min-width: 20px;
  text-align: center;
}
.navbar .container .cart span.carrello,
.navbar-nav .cart span.carrello {
  font-size: 22px;
  display: inline-block;
  height: 24px;
  color: #552d27;
  border-left: 1px solid #552d27;
  padding-left: 10px;
  vertical-align: middle;
}
.removeNav {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 80px;
  background-color: #fff;
  top: 0;
  left: 0;
}
.containerLog .brand {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}
.containerLog .brand img {
  width: 100%;
  height: auto;
}
.containerLog .login {
  margin: 0 auto;
  width: 300px;
  min-height: 300px;
}
.containerLog .login h1 {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
.containerLog .login label {
  width: 100%;
  display: block;
  font-weight: 300;
  margin-top: 15px;
  text-align: left;
}
.containerLog .login input {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  border: 1px solid rgba(85, 45, 39, 0.3);
  padding-left: 10px;
  padding-right: 10px;
  outline: none;
  outline: 0;
  font-weight: 500;
  -webkit-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.1s;
  -ms-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.containerLog .login input:focus,
.containerLog .login input:hover {
  border: 1px solid #552d27;
}
.containerLog .login input[type="submit"],
.containerLog .login .btn-primary {
  background-color: transparent;
  color: #552d27;
  border: 2px solid #552d27;
  font-weight: 500;
  margin: 20px auto;
  display: block;
  width: 150px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 20px;
  height: 40px;
}
.containerLog .login input[type="submit"]:hover,
.containerLog .login .btn-primary:hover {
  background-color: #552d27;
  color: #fff;
}
.containerLog .login hr {
  width: 50%;
  height: 1px;
  background-color: rgba(85, 45, 39, 0.3);
  margin: 30px auto;
  border: 0;
}
.containerLog .login .errorMessage {
  color: red;
  margin-top: 5px;
}
.containerSearch {
  margin-bottom: 1px;
  margin-top: -55px;
}
.containerSearch > div {
  position: relative;
}
.containerSearch > div > div {
  background-color: rgba(85, 45, 39, 0.1);
  padding-top: 70px;
  padding-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
}
.containerSearch > div > div > div {
  display: inline-block;
  position: relative;
}
.containerSearch > div > div > div h3 {
  position: absolute;
  font-size: 10px;
  font-weight: 500;
  bottom: -15px;
  left: 20px;
  margin: 0;
}
.containerSearch > div > div > div h3.cerca {
  left: 20%;
  margin-left: 22px;
}
.containerSearch > div > div > div.searchTxt {
  width: 30%;
  padding-right: 5px;
}
.containerSearch > div > div > div.filter {
  padding-left: 5px;
  width: 13%;
}
.containerSearch input {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  border: 1px solid rgba(85, 45, 39, 0.3);
  padding-left: 10px;
  outline: none;
  outline: 0;
  font-weight: 500;
  margin-right: 5px;
  -webkit-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.1s;
  -ms-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.containerSearch input:focus,
.containerSearch input:hover {
  border: 1px solid #552d27;
}
.containerSearch select {
  width: 100%;
  box-shadow: 0;
  -webkit-appearance: none;
  outline: none;
  outline: 0;
  border: 1px solid rgba(85, 45, 39, 0.3);
  height: 40px;
  border-radius: 0;
  padding-left: 10px;
  overflow: hidden;
  background: #ffffff url(../images/arrowdown.gif) no-repeat 95% 50%;
  border-radius: 20px;
  font-weight: 500;
  -webkit-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.1s;
  -ms-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.containerSearch select:focus,
.containerSearch select:hover {
  border: 1px solid #552d27;
}
.containerSearch svg {
  position: absolute;
  right: 130px;
  top: 65px;
}
.containerSearch button {
  float: right;
  width: 100px;
  height: 40px;
  background-color: transparent;
  color: #552d27;
  border-radius: 20px;
  font-weight: 100;
  outline: 0;
  outline: none;
  border: 1px solid #552d27;
  font-size: 16px;
  -webkit-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.1s;
  -ms-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.containerSearch button:hover,
.containerSearch button:focus {
  background-color: #552d27;
  color: #fff;
}
.containerArticoli > div {
  overflow-x: scroll;
}
.containerArticoli table thead tr th {
  padding: 18px 5px 15px 5px;
  border-bottom: 0px solid #552d27;
  background-color: rgba(85, 45, 39, 0.2);
  border-left: 1px solid rgba(85, 45, 39, 0.05);
  font-weight: 500;
  vertical-align: middle;
}
.containerArticoli table thead tr th:first-child {
  border-left: 0;
  padding-left: 10px;
}
.containerArticoli table thead tr th:nth-child(2) {
  border-left: 0;
}
.containerArticoli table thead tr th:nth-child(3),
.containerArticoli table thead tr th:nth-child(4),
.containerArticoli table thead tr th:nth-child(5),
.containerArticoli table thead tr th:nth-child(6),
.containerArticoli table thead tr th:nth-child(7) {
  text-align: center;
}
.containerArticoli table thead tr th:last-child,
.containerArticoli table thead tr th:nth-last-child(2),
.containerArticoli table thead tr th:nth-last-child(3) {
  width: 40px;
  text-align: center;
}
.containerArticoli table thead tr th:last-child {
  padding-right: 0;
  border-left: 0;
}
.containerArticoli table tbody tr.addToChart td {
  background-color: rgba(85, 45, 39, 0.05);
}
.containerArticoli table tbody tr.addToChart td:first-child {
  background-color: #fff;
}
.containerArticoli table tbody tr td {
  font-weight: 100;
  padding: 5px;
  border-top: 0;
  width: 150px;
  border-left: 1px solid rgba(85, 45, 39, 0.05);
  border-bottom: 1px solid rgba(85, 45, 39, 0.05);
  vertical-align: middle;
}
.containerArticoli table tbody tr td .name {
  display: block;
  font-weight: 500;
  cursor: pointer;
}
.containerArticoli table tbody tr td .code {
  display: block;
  font-size: 12px;
  font-weight: 500;
}
.containerArticoli table tbody tr td:first-child {
  width: 100px;
  padding-left: 0px;
  border-left: 0;
}
.containerArticoli table tbody tr td:first-child img {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.containerArticoli table tbody tr td:nth-child(2) {
  width: 50%;
  border-left: 0;
  padding-left: 10px;
  padding-right: 10px;
}
.containerArticoli table tbody tr td:nth-child(3),
.containerArticoli table tbody tr td:nth-child(4),
.containerArticoli table tbody tr td:nth-child(5),
.containerArticoli table tbody tr td:nth-child(6),
.containerArticoli table tbody tr td:nth-child(7) {
  text-align: center;
}
.containerArticoli table tbody tr td:last-child,
.containerArticoli table tbody tr td:nth-last-child(2),
.containerArticoli table tbody tr td:nth-last-child(3) {
  width: 40px;
  text-align: center;
}
.containerArticoli table tbody tr td:nth-last-child(4) {
  padding: 0 10px;
}
.containerArticoli table tbody tr td:nth-last-child(4) input {
  outline: none;
  outline: 0;
  text-align: center;
  border: 1px solid rgba(85, 45, 39, 0.1);
  height: 30px;
  width: 100%;
  line-height: 30px;
  -webkit-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.1s;
  -ms-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

/* Rimuove border-radius specificamente per input numerici */
.containerArticoli table tbody tr td:nth-last-child(4) input[type="number"] {
  border-radius: 0;
}
.containerArticoli table tbody tr td:nth-last-child(4) input:hover,
.containerArticoli table tbody tr td:nth-last-child(4) input:focus {
  border-color: #552d27;
}
.containerArticoli table tbody tr td:last-child,
.containerArticoli table tbody tr td:nth-last-child(2) {
  padding: 0 10px;
}
.containerArticoli table tbody tr td:last-child .button,
.containerArticoli table tbody tr td:nth-last-child(2) .button {
  cursor: pointer;
  display: block;
  background-color: rgba(85, 45, 39, 0.1);
  color: #552d27;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 15px;
  -webkit-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.1s;
  -ms-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.containerArticoli table tbody tr td:last-child .button:hover,
.containerArticoli table tbody tr td:nth-last-child(2) .button:hover {
  color: #fff;
  background-color: #552d27;
}
.containerArticoli table tbody tr:last-child td {
  border-bottom: 0;
}
.containerGenerico > div {
  overflow-x: scroll;
}
.containerGenerico.caontainerCarrello h3 {
  text-align: left;
}
.containerGenerico h3 {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 30px;
}
.containerGenerico p.indicativo {
  font-weight: 300;
  font-style: italic;
  font-size: 12px;
}
.containerGenerico table.carrello.totale thead tr th,
.containerGenerico table.totale.totale thead tr th {
  text-align: left!important;
}
.containerGenerico table.carrello.totale tbody tr td,
.containerGenerico table.totale.totale tbody tr td {
  text-align: left!important;
}
.containerGenerico table.carrello.totale tbody tr td:last-child,
.containerGenerico table.totale.totale tbody tr td:last-child,
.containerGenerico table.carrello.totale tbody tr td:nth-last-child(2),
.containerGenerico table.totale.totale tbody tr td:nth-last-child(2) {
  padding-left: 5px;
  padding-right: 5px;
}
.containerGenerico table.carrello.totale tbody tr td.indicativo,
.containerGenerico table.totale.totale tbody tr td.indicativo {
  font-weight: 500;
}
.containerGenerico table.carrello thead tr th:nth-child(3),
.containerGenerico table.totale thead tr th:nth-child(3),
.containerGenerico table.carrello thead tr th:nth-child(4),
.containerGenerico table.totale thead tr th:nth-child(4),
.containerGenerico table.carrello thead tr th:nth-child(5),
.containerGenerico table.totale thead tr th:nth-child(5),
.containerGenerico table.carrello thead tr th:nth-child(6),
.containerGenerico table.totale thead tr th:nth-child(6),
.containerGenerico table.carrello thead tr th:nth-child(7),
.containerGenerico table.totale thead tr th:nth-child(7) {
  text-align: center;
}
.containerGenerico table.carrello thead tr th:last-child,
.containerGenerico table.totale thead tr th:last-child,
.containerGenerico table.carrello thead tr th:nth-last-child(2),
.containerGenerico table.totale thead tr th:nth-last-child(2),
.containerGenerico table.carrello thead tr th:nth-last-child(3),
.containerGenerico table.totale thead tr th:nth-last-child(3) {
  width: 40px;
  text-align: center;
}
.containerGenerico table.carrello thead tr th:last-child,
.containerGenerico table.totale thead tr th:last-child {
  padding-right: 0;
  border-left: 0;
}
.containerGenerico table.carrello tbody tr td,
.containerGenerico table.totale tbody tr td {
  height: 40px;
}
.containerGenerico table.carrello tbody tr td:nth-child(2),
.containerGenerico table.totale tbody tr td:nth-child(2) {
  width: 35%;
}
.containerGenerico table.carrello tbody tr td:nth-child(3),
.containerGenerico table.totale tbody tr td:nth-child(3),
.containerGenerico table.carrello tbody tr td:nth-child(4),
.containerGenerico table.totale tbody tr td:nth-child(4),
.containerGenerico table.carrello tbody tr td:nth-child(5),
.containerGenerico table.totale tbody tr td:nth-child(5),
.containerGenerico table.carrello tbody tr td:nth-child(6),
.containerGenerico table.totale tbody tr td:nth-child(6),
.containerGenerico table.carrello tbody tr td:nth-child(7),
.containerGenerico table.totale tbody tr td:nth-child(7) {
  text-align: center;
}
.containerGenerico table.carrello tbody tr td:last-child,
.containerGenerico table.totale tbody tr td:last-child,
.containerGenerico table.carrello tbody tr td:nth-last-child(2),
.containerGenerico table.totale tbody tr td:nth-last-child(2),
.containerGenerico table.carrello tbody tr td:nth-last-child(3),
.containerGenerico table.totale tbody tr td:nth-last-child(3) {
  width: 40px;
  text-align: center;
}
.containerGenerico table.carrello tbody tr td:nth-last-child(4),
.containerGenerico table.totale tbody tr td:nth-last-child(4) {
  width: 70px;
  padding: 0 10px;
}
.containerGenerico table.carrello tbody tr td:nth-last-child(4) input,
.containerGenerico table.totale tbody tr td:nth-last-child(4) input {
  outline: none;
  outline: 0;
  text-align: center;
  border: 1px solid rgba(85, 45, 39, 0.1);
  border-radius: 15px;
  height: 30px;
  width: 100%;
  line-height: 30px;
  -webkit-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.1s;
  -ms-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.containerGenerico table.carrello tbody tr td:nth-last-child(4) input:hover,
.containerGenerico table.totale tbody tr td:nth-last-child(4) input:hover,
.containerGenerico table.carrello tbody tr td:nth-last-child(4) input:focus,
.containerGenerico table.totale tbody tr td:nth-last-child(4) input:focus {
  border-color: #552d27;
}
.containerGenerico table.carrello tbody tr td:last-child,
.containerGenerico table.totale tbody tr td:last-child,
.containerGenerico table.carrello tbody tr td:nth-last-child(2),
.containerGenerico table.totale tbody tr td:nth-last-child(2) {
  padding: 0 10px;
}
.containerGenerico table.carrello tbody tr td:last-child .button,
.containerGenerico table.totale tbody tr td:last-child .button,
.containerGenerico table.carrello tbody tr td:nth-last-child(2) .button,
.containerGenerico table.totale tbody tr td:nth-last-child(2) .button {
  cursor: pointer;
  display: block;
  background-color: rgba(85, 45, 39, 0.1);
  color: #552d27;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 15px;
  -webkit-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.1s;
  -ms-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.containerGenerico table.carrello tbody tr td:last-child .button:hover,
.containerGenerico table.totale tbody tr td:last-child .button:hover,
.containerGenerico table.carrello tbody tr td:nth-last-child(2) .button:hover,
.containerGenerico table.totale tbody tr td:nth-last-child(2) .button:hover {
  color: #fff;
  background-color: #552d27;
}
.containerGenerico table.carrello tbody tr.errore td input,
.containerGenerico table.totale tbody tr.errore td input {
  border-color: red;
}
.containerGenerico table.carrello tbody tr.errore td:nth-last-child(3),
.containerGenerico table.totale tbody tr.errore td:nth-last-child(3),
.containerGenerico table.carrello tbody tr.errore td:first-child,
.containerGenerico table.totale tbody tr.errore td:first-child,
.containerGenerico table.carrello tbody tr.errore td:nth-child(2),
.containerGenerico table.totale tbody tr.errore td:nth-child(2) {
  color: red;
}
.containerGenerico table.carrello tbody tr.errore td.message,
.containerGenerico table.totale tbody tr.errore td.message {
  padding-left: 5px;
  padding-right: 5px;
  text-align: left;
  font-weight: 500;
}
.containerGenerico table thead tr th {
  padding: 18px 5px 15px 5px;
  border-bottom: 0px solid #552d27;
  background-color: rgba(85, 45, 39, 0.2);
  border-left: 1px solid rgba(85, 45, 39, 0.05);
  font-weight: 500;
}
.containerGenerico table thead tr th:first-child {
  border-left: 0;
}
.containerGenerico table tbody tr td {
  font-weight: 100;
  padding: 5px;
  border-top: 0;
  border-left: 1px solid rgba(85, 45, 39, 0.05);
  border-bottom: 1px solid rgba(85, 45, 39, 0.05);
  vertical-align: middle;
}
.containerGenerico table tbody tr td:first-child {
  border-left: 0;
}
.containerGenerico table tbody tr td:last-child td {
  border-bottom: 0;
}
.lineSpedizione {
  height: 1px;
  border: 0;
  background-color: rgba(85, 45, 39, 0.3);
}
.containerSpedizione h3 {
  margin-top: 60px;
  margin-bottom: 40px;
  font-size: 30px;
}
.containerSpedizione select {
  width: 100%;
  box-shadow: 0;
  -webkit-appearance: none;
  outline: none;
  outline: 0;
  border: 1px solid rgba(85, 45, 39, 0.3);
  height: 40px;
  border-radius: 0;
  padding-left: 10px;
  overflow: hidden;
  background: #ffffff url(../images/arrowdown.gif) no-repeat 96% 50%;
  border-radius: 20px;
  font-weight: 500;
  -webkit-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.1s;
  -ms-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.containerSpedizione select:focus,
.containerSpedizione select:hover {
  border: 1px solid #552d27;
}
.containerSpedizione input[type="text"] {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  border: 1px solid rgba(85, 45, 39, 0.3);
  padding-left: 10px;
  outline: none;
  outline: 0;
  font-weight: 500;
  margin-bottom: 5px;
  -webkit-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.1s;
  -ms-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.containerSpedizione input[type="text"]:focus,
.containerSpedizione input[type="text"]:hover {
  border: 1px solid #552d27;
}
.containerSpedizione input[type="text"].ng-invalid {
  border-color: red;
  background-color: #fff;
}
.containerSpedizione textarea {
  width: 100%;
  border-radius: 20px;
  padding: 10px;
  resize: none;
  outline: none;
  outline: 0;
  height: 265px;
  border: 1px solid rgba(85, 45, 39, 0.3);
}
.containerSpedizione textarea:focus,
.containerSpedizione textarea:hover {
  border: 1px solid #552d27;
}
.containerSpedizione button,
.containerSpedizione input[type='submit'] {
  height: 40px;
  background-color: transparent;
  color: #552d27;
  border-radius: 20px;
  font-weight: 100;
  outline: 0;
  outline: none;
  border: 1px solid #552d27;
  font-size: 16px;
  margin-right: 10px;
  -webkit-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.1s;
  -ms-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.containerSpedizione button:hover,
.containerSpedizione input[type='submit']:hover,
.containerSpedizione button:focus,
.containerSpedizione input[type='submit']:focus {
  background-color: #552d27;
  color: #fff;
}
.containerSpedizione button.pericolo,
.containerSpedizione input[type='submit'].pericolo {
  border-color: red;
  color: red;
}
.containerSpedizione button.pericolo:hover,
.containerSpedizione input[type='submit'].pericolo:hover,
.containerSpedizione button.pericolo:focus,
.containerSpedizione input[type='submit'].pericolo:focus {
  background-color: red;
  color: #fff;
}
.skipTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  z-index: 100;
}
.skipTop p {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #552d27;
  color: #552d27;
  font-size: 16px;
  line-height: 37px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 0px 4px rgba(85, 45, 39, 0.3);
  margin: 0;
  cursor: pointer;
  -webkit-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.1s;
  -ms-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.skipTop p:hover {
  color: #fff;
  background-color: #552d27;
  box-shadow: 0px 0px 0px rgba(85, 45, 39, 0.3);
}
.modal {
  background-color: rgba(255, 255, 255, 0.8);
}
.modal .modal-dialog {
  position: relative;
  margin-top: 120px;
}
.modal .modal-dialog .modal-content {
  border-radius: 0;
  border: 0;
  box-shadow: 4px 4px 8px rgba(85, 45, 39, 0.2);
}
.modal .modal-dialog .modal-content .modal-header {
  border-bottom: 1px solid #552d27;
  padding: 15px 15px 13px 15px;
}
.modal .modal-dialog .modal-content .modal-header h2 {
  position: absolute;
  font-size: 30px;
  font-weight: 700;
  top: -60px;
  left: -10px;
}
.modal .modal-dialog .modal-content .modal-header .modal-title {
  font-weight: 500;
}
.modal .modal-dialog .modal-content .modal-body .containerImage img {
  width: 100%;
  height: auto;
}
.modal .modal-dialog .modal-content .modal-body .descrizioneProdotto {
  padding-bottom: 15px;
}
.modal .modal-dialog .modal-content .modal-body .descrizioneProdotto p {
  margin: 0;
}
.modal .modal-dialog .modal-content .modal-body .descrizioneProdotto p span.desc {
  display: block;
  border-bottom: 1px solid rgba(85, 45, 39, 0.1);
  padding-bottom: 15px;
  padding-top: 5px;
  margin-bottom: 25px;
  font-weight: 500;
}
.modal .modal-dialog .modal-content .modal-body .descrizioneProdotto p label {
  display: block;
  font-weight: 300;
}
.modal .modal-dialog .modal-content .modal-body .descrizioneProdotto p label span {
  font-weight: 500;
}
.modal .modal-dialog .modal-content .modal-body .descrizioneProdotto .allegati {
  border-top: 1px solid rgba(85, 45, 39, 0.1);
  margin-top: 25px;
  padding-top: 5px;
}
.modal .modal-dialog .modal-content .modal-body .descrizioneProdotto .allegati a {
  font-size: 14px;
  font-weight: 500;
  color: #552d27;
}
.modal .modal-dialog .modal-content .modal-body .descrizioneProdotto .allegati a:hover {
  text-decoration: underline;
}
.modal .modal-dialog .modal-content .modal-footer {
  border-top: 1px solid #552d27;
}
.modal .modal-dialog .modal-content .modal-footer span {
  display: inline-block;
  margin-right: 5px;
}
.modal .modal-dialog .modal-content .modal-footer span.line {
  width: 1px;
  background-color: #552d27;
  margin-right: 10px;
  margin-left: 10px;
  height: 30px;
  line-height: 30px;
}
.modal .modal-dialog .modal-content .modal-footer input {
  outline: 0;
  outline: none;
  border: 1px solid rgba(85, 45, 39, 0.1);
  border-radius: 15px;
  height: 30px;
  width: 50px;
  text-align: center;
  -webkit-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.1s;
  -ms-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.modal .modal-dialog .modal-content .modal-footer input:hover,
.modal .modal-dialog .modal-content .modal-footer input:focus {
  border-color: #552d27;
}
.modal .modal-dialog .modal-content .modal-footer button {
  font-weight: 300;
  color: #552d27;
  background-color: rgba(85, 45, 39, 0.1);
  border: 1px solid #552d27;
  height: 30px;
  text-align: center;
  border-radius: 15px;
  padding: 0 10px;
  -webkit-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.1s;
  -ms-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.modal .modal-dialog .modal-content .modal-footer button:hover {
  background-color: #552d27;
  color: #fff;
}
.footer {
  text-align: center;
  margin-top: 90px;
}
.footer p {
  display: inline-block;
  font-weight: 100;
  font-size: 14px;
  border-top: 1px solid #552d27;
  padding: 20px 0;
}
.footer p a {
  color: #552d27;
}
.footer p span {
  display: block;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .navbar .container .navbar-header button {
    border: 1px solid #552d27;
  }
  .navbar .container .navbar-header button span {
    background-color: #552d27;
  }
  .navbar .container .nav {
    border-left: 0px solid #552d27;
    background-color: #fff;
    border-top: 1px solid #552d27;
    box-shadow: 0 2px 6px rgba(85, 45, 39, 0.2);
    padding-left: 15px;
  }
  .navbar .container .nav li {
    border-bottom: 1px solid rgba(85, 45, 39, 0.3);
  }
  .navbar .container .nav li a {
    color: #552d27;
    font-weight: 500;
    -webkit-transition-property: all;
    -ms-transition-property: all;
    -o-transition-property: all;
    -moz-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.1s;
    -ms-transition-duration: 0.1s;
    -o-transition-duration: 0.1s;
    -moz-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
  }
  .navbar .container .nav li a:hover,
  .navbar .container .nav li a:focus {
    background-color: rgba(85, 45, 39, 0.1);
  }
  .navbar .container .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
  .navbar .container .cart {
    float: none;
    background-color: #552d27;
    display: block;
    width: 100%;
    margin-top: -8px;
    box-shadow: 0 2px 6px rgba(85, 45, 39, 0.2);
    padding-left: 15px;
    color: #fff;
    font-weight: 300;
    line-height: 50px;
    padding-top: 0;
  }
  .navbar .container .cart span.linkCar {
    float: left;
  }
  .navbar .container .cart span.prodottiCarrello {
    float: right;
    background-color: #fff;
    color: #552d27;
    margin-right: 15px;
    padding: 0 10px;
    margin-top: 12px;
  }
  .containerSearch > div > div {
    padding-bottom: 36px;
  }
  .containerSearch > div > div > div {
    display: block;
  }
  .containerSearch > div > div > div.searchTxt {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }
  .containerSearch > div > div > div.filter {
    width: 100%;
    padding-left: 0;
    margin-bottom: 46px;
  }
  .containerSearch svg {
    right: 25px;
    top: 221px;
  }
  .containerSearch button {
    float: none;
    width: 100%;
  }
  .containerArticoli {
    padding-right: 15px;
    padding-left: 15px;
  }
  .containerArticoli > div {
    padding-left: 0;
    padding-right: 0;
  }
  .containerArticoli table {
    min-width: 1100px;
  }
  .containerGenerico {
    padding-right: 15px;
    padding-left: 15px;
  }
  .containerGenerico > div {
    padding-left: 0;
    padding-right: 0;
  }
  .containerGenerico.caontainerCarrello h3 {
    text-align: left;
  }
  .containerGenerico h3 {
    text-align: left;
  }
  .containerGenerico table {
    min-width: 1100px;
  }
  .containerGenerico table.carrello,
  .containerGenerico table.totale {
    min-width: 850px;
  }
  .containerGenerico table.carrello.totale,
  .containerGenerico table.totale.totale {
    min-width: initial;
  }
  .footer {
    text-align: left;
  }
  .footer p {
    font-size: 13px;
    padding: 30px 0 5px 0;
  }
}
@media (min-width: 767px) and (max-width: 1200px) {
  .containerArticoli {
    padding-right: 15px;
    padding-left: 15px;
  }
  .containerArticoli > div {
    padding-left: 0;
    padding-right: 0;
  }
  .containerArticoli table {
    min-width: 700px;
  }
  .containerArticoli table tbody tr td:nth-child(2),
  .containerArticoli table thead tr td:nth-child(2),
  .containerArticoli table tbody tr th:nth-child(2),
  .containerArticoli table thead tr th:nth-child(2) {
    min-width: 150px;
  }
  .containerGenerico {
    padding-right: 15px;
    padding-left: 15px;
  }
  .containerGenerico > div {
    padding-left: 0;
    padding-right: 0;
  }
  .containerGenerico.caontainerCarrello h3 {
    text-align: left;
  }
  .containerGenerico h3 {
    text-align: left;
  }
  .containerGenerico table {
    min-width: 1100px;
  }
  .containerGenerico table.carrello,
  .containerGenerico table.totale {
    min-width: 850px;
  }
  .containerGenerico table.carrello.totale,
  .containerGenerico table.totale.totale {
    min-width: initial;
  }
}

/* Stili per le tabelle GridView */
.grid-view table {
  width: 100%;
}

.grid-view table thead th {
  color: #552d27;
}

.grid-view table thead th a {
  color: #552d27;
}

.grid-view table a {
  color: #552d27;
  text-decoration: none;
}

.grid-view table a:hover {
  text-decoration: underline;
}

/* Prima colonna ID con larghezza massima - solo per viste admin specifiche */
#fornitore-grid table th:first-child,
#fornitore-grid table td:first-child,
#unita-grid table th:first-child,
#unita-grid table td:first-child,
#categoria-grid table th:first-child,
#categoria-grid table td:first-child,
#allergene-grid table th:first-child,
#allergene-grid table td:first-child,
#rappresentante-grid table th:first-child,
#rappresentante-grid table td:first-child,
#user-grid table th:first-child,
#user-grid table td:first-child,
#ingrediente-grid table th:first-child,
#ingrediente-grid table td:first-child,
#product-grid table th:first-child,
#product-grid table td:first-child,
#category-grid table th:first-child,
#category-grid table td:first-child,
#inoltro-grid table th:first-child,
#inoltro-grid table td:first-child {
  max-width: 100px;
  width: 100px;
}

/* Stili per tabelle Bootstrap */
.table thead th {
  color: #552d27;
}

.table thead th a {
  color: #552d27;
}

.table a {
  color: #552d27;
  text-decoration: none;
}

.table a:hover {
  text-decoration: underline;
}

/* Stili per icone nelle tabelle Bootstrap */
.table .glyphicon {
  color: #552d27;
}

.table td.text-center a {
  margin: 0 3px;
}

/* Icona di eliminazione rosso vivo */
.grid-view .action-column a[title="Delete"],
.grid-view .action-column a[title="Elimina"],
.grid-view td[class*="action-column"] a[title="Delete"],
.grid-view td[class*="action-column"] a[title="Elimina"],
.table a[title="Delete"],
.table a[title="Elimina"],
.grid-view .glyphicon-trash,
.table .glyphicon-trash,
a .glyphicon-trash {
  color: #F2561D !important;
}

/* Icona di eliminazione bianca su hover */
.grid-view table tbody tr:hover td a[title="Delete"],
.grid-view table tbody tr:hover td a[title="Elimina"],
.table tbody tr:hover td a[title="Delete"],
.table tbody tr:hover td a[title="Elimina"],
.grid-view table tbody tr:hover td .glyphicon-trash,
.table tbody tr:hover td .glyphicon-trash {
  color: white !important;
}

/* Effetto hover sulle righe - GridView e tabelle Bootstrap */
.grid-view table tbody tr:hover td,
.table tbody tr:hover td,
.containerArticoli table tbody tr:hover td {
  background-color: #8b5a3c;
  color: white;
  transition: all 0.2s ease;
}

/* Esclude il primo td (immagine) dall'hover nella home */
.containerArticoli table tbody tr:hover td:first-child {
  background-color: transparent;
  color: inherit;
}

/* Mantiene il textbox della quantità visibile durante l'hover */
.containerArticoli table tbody tr:hover td input[type="text"],
.containerArticoli table tbody tr:hover td input[type="number"],
.containerArticoli table tbody tr:hover td input.addcart {
  background-color: white;
  color: #552d27;
  border: 1px solid #ccc;
}

.grid-view table tbody tr:hover td a,
.table tbody tr:hover td a,
.containerArticoli table tbody tr:hover td a {
  color: white !important;
  text-decoration: none;
}

.grid-view table tbody tr:hover td a:hover,
.table tbody tr:hover td a:hover,
.containerArticoli table tbody tr:hover td a:hover {
  text-decoration: underline;
}

.grid-view table tbody tr:hover td svg,
.table tbody tr:hover td svg,
.containerArticoli table tbody tr:hover td svg {
  fill: white !important;
}

.grid-view table tbody tr:hover td .glyphicon,
.table tbody tr:hover td .glyphicon,
.containerArticoli table tbody tr:hover td .glyphicon {
  color: white !important;
}

/* Icone del carrello e lente bianche su hover */
.containerArticoli table tbody tr:hover td .icon-cart,
.containerArticoli table tbody tr:hover td .icon-search,
.containerArticoli table tbody tr:hover td .icon {
  color: white !important;
}

.containerArticoli table tbody tr:hover td .icon-cart:before,
.containerArticoli table tbody tr:hover td .icon-search:before,
.containerArticoli table tbody tr:hover td .icon:before {
  color: white !important;
}

/* Stili per la colonna delle azioni */
.grid-view .action-column {
  text-align: right;
  width: 120px;
  white-space: nowrap;
}

.grid-view td[class*="action-column"] {
  text-align: right;
}

.grid-view .action-column a,
.grid-view td[class*="action-column"] a {
  color: #552d27;
  margin: 0 5px;
  font-size: 16px;
  display: inline-block;
}

.grid-view .action-column a:first-child,
.grid-view td[class*="action-column"] a:first-child {
  margin-left: 0;
}

.grid-view .action-column a:last-child,
.grid-view td[class*="action-column"] a:last-child {
  margin-right: 0;
}

/* Stili per icone SVG e glyphicon nelle azioni */
.grid-view .action-column svg,
.grid-view td[class*="action-column"] svg {
  width: 16px;
  height: 16px;
  fill: #552d27;
}

.grid-view .action-column .glyphicon,
.grid-view td[class*="action-column"] .glyphicon {
  color: #552d27;
}

.grid-view .action-column a:hover,
.grid-view td[class*="action-column"] a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/* Rimuove sfondo rosso dai pulsanti con icona cestino nella pagina ordine */
.site-ordine .btn-danger.btn-xs {
  background-color: transparent;
  border-color: transparent;
  padding: 2px 6px;
}

.site-ordine .btn-danger.btn-xs:hover,
.site-ordine .btn-danger.btn-xs:focus,
.site-ordine .btn-danger.btn-xs:active {
  background-color: transparent;
  border-color: transparent;
  opacity: 0.7;
}

.site-ordine .btn-danger.btn-xs .glyphicon-trash {
  color: #d9534f;
  font-size: 14px;
}



