/*
 * Style tweaks
 * --------------------------------------------------
 */
html,
body {
  overflow-x: hidden; /* Prevent scroll on narrow devices */
  background-color: #F5F5DC;
}
footer {
  margin-top: 30px;
  padding: 30px 0;
  border-top: 1px solid #c0c0c0;
}

.main-container {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

@media screen and (max-width: 576px) {
    .main-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.jumbotron {
    padding: 0;
    background-color: #CEB785;
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.pagination li a {
    color: rgb(85, 85, 85);
}

.pagination li.active a {
    background-color: #CEB785;
    border-color: #CEB785;
}

/* Menu */
#sidebar .product-category {   
    padding-left: 40px;
}

#sidebar .product-category:last-child {   
    border-bottom: 0;
    border-radius: 0;
}

#sidebar .product-category {   
    padding-left: 40px;
}

#sidebar .products-link-group {
    border-bottom: 0;
}

#sidebar .products-link,
#sidebar .products-link-group {
    color: rgb(85, 85, 85);
}

#sidebar .products-link-group .products-link-collapse {
    color: rgb(85, 85, 85);
    font-size: 22px ;
    font-weight: bold;
    vertical-align: bottom;
    padding: 1px 2px;
    border-radius: 10px;
    position: absolute;
    right: 10px;
    display: none;
}
    #sidebar .products-link-group:hover .products-link-collapse,
    #sidebar .products-link-group[aria-expanded="true"] .products-link-collapse {
        display: inline-block;
    }

.list-group-item {
  color: #555;
}

.list-group-item:hover {
    background-color: var(--bs-list-group-hover-bg, #f8f9fa);
}

.list-group-item.active,
.list-group-item.active:hover {
    background-color: #CEB785;
    border-color: #CEB785;
    color: #fff;
}
    
@media screen and (max-width: 576px) {
  h1, .h1 {
    font-size: 33px;
  }

  h2, .h2 {
    font-size: 28px;
  }

  h3, .h3 {
    font-size: 23px;
  }

  .row-offcanvas {
    position: relative;
    -webkit-transition: all .25s ease-out;
         -o-transition: all .25s ease-out;
            transition: all .25s ease-out;
  }

  .row-offcanvas-right {
    right: 0;
  }

  .row-offcanvas-left {
    left: 0;
  }

  .row-offcanvas-right
  .sidebar-offcanvas {
    right: -50%; /* 6 columns */
  }

  .row-offcanvas-left
  .sidebar-offcanvas {
    left: -50%; /* 6 columns */
  }

  .row-offcanvas-right.active {
    right: 50%; /* 6 columns */
  }

  .row-offcanvas-left.active {
    left: 50%; /* 6 columns */
  }

  .sidebar-offcanvas {
    position: absolute;
    top: 0;
    width: 50%; /* 6 columns */
  }
}

/* Various */
.text-justified {
    text-align: justify;
}
.price {
    white-space: nowrap;
}

.price .old_price{
    text-decoration: line-through;
}

.price .new_price{
    font-weight: bold;
}

/* Table transparency */
.table-transparent {
    background-color: transparent !important;
}

.table-transparent td,
.table-transparent th {
    background-color: transparent !important;
}

