/* Estilos para telas menores (smartphones) */
@media (max-width: 767px) {
  .thumbnail.product .caption .product-name {
    height: auto;
    max-height: 3.75rem; /* 60px / 16px */
  }

  .list.panel .panel-body .checkbox label,
  .list.panel .panel-body .radio label {
    padding: 1.25rem; /* 12px / 16px */
  }
}

/* Estilos para telas médias (tablets) */
@media (min-width: 768px) and (max-width: 991px) {
  .thumbnail.product figure img {
    max-height: 200px;
  }
}

/* Estilos para telas grandes (desktops) */
@media (min-width: 992px) {
  .thumbnail.product figure img {
    max-height: 250px;
  }
}

* {
  outline: none;
}
a {
  color: #2196f3;
  padding: 0px;
  border-radius: 0px;
  -o-border-radius: 0px;
  -ms-border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;

}
a:hover {
  color: #1976d2;
  text-decoration: none;
}
a:focus {
  color: #2196f3;
  text-decoration: none;
}
a:active {
  color: #1976d2;
  text-decoration: none;
}


body {
  background-color: #eeeeee;
  font-size: 16px; /* Base font size */
}

.list.panel {
  overflow: hidden;
  box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border: 1px solid #e0e0e0;
}
.list.panel.panel-pri {
  border: 0;
  box-shadow: 0 0 6px 0px rgba(51, 51, 51, 0.4);
  -o-box-shadow: 0 0 6px 0px rgba(51, 51, 51, 0.4);
  -ms-box-shadow: 0 0 6px 0px rgba(51, 51, 51, 0.4);
  -moz-box-shadow: 0 0 6px 0px rgba(51, 51, 51, 0.4);
  -webkit-box-shadow: 0 0 6px 0px rgba(51, 51, 51, 0.4);
}
.list.panel.panel-pri > .panel-heading {
  color: #333333;
  border-color: #2196f3;
  background-color: #2196f3;
}
.list.panel.panel-pri > .panel-heading .panel-title {
  font-size: 1.25rem; /* 20px / 16px */
      color: #000;
    /* font-size: 12px; */
    /* font-weight: 700; */
    padding-bottom: 6px;
}
.list.panel .panel-body {
  padding: 0;
}
.list.panel .panel-body .list-group {
  display: flex;
  flex-wrap: wrap;
  /* margin-bottom: 0; */
}
.list.panel .panel-body .list-group-item {

  flex: 1 0 100%;

  border: 0;
  color: #333333;
  padding: 0;
  border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;

}

@media (min-width: 768px) {
  .list.panel .panel-body .list-group-item {
    flex: 1 0 50%;
  }
}

.list.panel .panel-body .checkbox,
.list.panel .panel-body .radio {
  margin: 0;
}
.list.panel .panel-body .checkbox label,
.list.panel .panel-body .radio label {
  display: block;
 padding: 10px 15px;
  position: relative;
}
.list.panel .panel-body .checkbox label.active,
.list.panel .panel-body .radio label.active {
  background-color: #f5f5f5;
}
.list.panel .panel-body .checkbox input[type="checkbox"],
.list.panel .panel-body .radio input[type="checkbox"],
.list.panel .panel-body .checkbox input[type="radio"],
.list.panel .panel-body .radio input[type="radio"] {
  margin-left: 0;
  position: static;
  margin-right: 10px;
}

.thumbnail.product {
  display: flex;
  flex-direction: column;
}

.thumbnail.product figure {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.thumbnail.product figure img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.thumbnail.product {
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #fff;
  border: 1px solid #cfd8dc;
}
.thumbnail.product:hover {
  border-color: #2196f3;
}
.thumbnail.product figure img {
  max-height: 250px;
}
.thumbnail.product .caption {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 10px; 
}

.thumbnail.product .caption .product-name {
  color: #0066c0;
  display: block;
  font-size: 1.45rem; /* 12px / 16px */
  overflow: hidden;
  padding-top: 5px;
  line-height: 1.45rem; /* 20px / 16px */
  text-overflow: ellipsis;
}
.thumbnail.product .caption .price {
  font-size: 1.45rem; /* 12px / 16px */
  margin-top: 5px;
  line-height: 1.45rem; /* 20px / 16px */
  display: inline-block;
  color :#b12704!important;
  font-weight: 700;
}


@media (min-width: 768px) {
  .navbar .navbar-brand {
    margin-left: 0 !important;
  }
}


.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 90px;
    height: 90px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
