#manufacturer #main ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

#manufacturer #main ul .brand {
  position: relative;
  width: calc(20% - 10px);
  min-width: 210px;
  padding: 10px;
  margin: 5px;
  text-align: center;
  background: #FFFFFF;
  transition: 0.4s ease-out;
  border: 1px solid #FFFFFF;
}

#manufacturer #main ul .brand-infos a {
  display: inline-block;
}

#manufacturer #main ul .brand:hover {
  border-color: var(--primary_color);
}

#manufacturer #main ul .brand-products {
  display: none;
}

#manufacturer #main ul .brand-img {
  position: relative;
  width: 200px;
  margin: auto;
}

#manufacturer #main ul .brand-img a::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
}

#manufacturer #main .manufacturer_short_desc {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: inherit;
  padding: 0;
  background: var(--background) !important;
}

#manufacturer #main .manufacturer_short_desc .manufacturer-cover {
  margin-left: auto;
}

#manufacturer #main .manufacturer_short_desc p {
  font-size: 15px;
  line-height: 24px;
}

#manufacturer .dbproductcomments {
  display: table;
  background-color: #FFF;
  padding: 25px;
}

#manufacturer .dbproductcomments .dbcomments_category .info_comment a {
  color: var(--color_font);
}

#manufacturer-description {
  display: table;
  width: 100%;
  margin-top: 48px;
}

#manufacturer-description p {
  font-size: 15px;
  line-height: 24px;
}

#manufacturer-description .title {
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
  text-align: center;
}

#full-column {
  margin-top: 2rem;
}

@media (max-width: 1199px) {
  #manufacturer-description {
    margin-top: 1.25rem;
  }
}

@media (max-width: 991px) {
  #js-product-list-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    margin: 1rem 0;
  }

  #js-product-list-top > div {
    width: 50%;
  }

  #manufacturer #main ul {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
  }

  #manufacturer #main .manufacturer_short_desc {
    flex-direction: column;
    align-content: center;
    padding: 1.25rem;
  }

  #manufacturer #main .manufacturer_short_desc > * {
    width: 100%;
  }

  #manufacturer #main .manufacturer_short_desc .manufacturer-cover img {
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  #manufacturer #main ul .brand {
    width: calc(50% - 10px);
    min-width: auto;
  }

  #manufacturer #main ul .brand .brand-img {
    width: 100%;
  }
}