.background-table {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 576px) {
  .background-table {
    background-image: none !important;
  }
}

.product-table-container {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
}
@media (max-width: 576px) {
  .product-table-container {
    border-radius: 0px;
  }
}

.border-table-bottom {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1607843137);
}

.product-table-header {
  background-color: #F5F5F5;
  border-radius: 10px;
}

table.product-table > colgroup > col:nth-child(1) {
  width: 33%;
}
@media (max-width: 576px) {
  table.product-table > colgroup > col:nth-child(1) {
    width: 50%;
  }
}

table.product-table > colgroup > col:nth-child(2), table.product-table > colgroup > col:nth-child(3) {
  width: 33%;
}
@media (max-width: 576px) {
  table.product-table > colgroup > col:nth-child(2), table.product-table > colgroup > col:nth-child(3) {
    width: 25%;
  }
}

p.dropdown-toggle::after {
  margin: 0;
  border: 0;
  vertical-align: 0;
  position: relative;
  left: 5px;
  content: "\f107";
  font-family: "FontAwesome";
  transition: transform 0.5s ease;
  transform: rotate(0deg);
}
p.dropdown-toggle[aria-expanded=true]::after {
  transform: rotate(-180deg);
}
p.dropdown-toggle[aria-expanded=true]:focus::after {
  transform: rotate(-180deg);
}
@media (min-width: 992px) {
  p.dropdown-toggle.hide-toggle {
    pointer-events: none;
  }
  p.dropdown-toggle.hide-toggle::after {
    display: none;
  }
}