/*
 * *
 * * Brand Page
 */
.c-brand-page-grid {
  margin-bottom: 40px;
}


.c-brand__info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 150px;
}


.c-brand__image-wrapper {
  width: 25%;
  text-align: center;
}


.c-brand__description-wrapper {
  width: 65%;
  text-align: left;
}


.c-brand__image {
  max-width: 200px;
  height: auto;
}


.c-brand__name {
  font-size: 16px;
  margin-bottom: 5px;
}


.c-brand__description * {
  color: #666666;
}


.c-brand__brand-website-link {
  color: black;
}


.c-brand__information-title {
  font-size: 16px;
  margin: 0 0 12px 0;
}


.c-brand__description {
  margin: 0 0 12px 0;
}


.c-brand__contact-row {
  margin: 0 0 4px 0;
  color: #666666;
}


.c-brand__brand-website {
  margin: 16px 0;
}


.c-brand__brand-address {
  white-space: pre-line;
}


.c-brand__contact-row a {
  color: #666666;
}

.c-brand__contact-row a:hover {
  text-decoration: underline;
}


.c-brand__information-wrapper {
  max-height: 120px;
  width: 100%;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-out;
}

.c-brand__information-wrapper::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}

.c-brand__information-wrapper.is-opened {
  max-height: 2500px;
  transition: all 0.4s ease-in;
}
.c-brand__information-wrapper.is-opened::before {
  content: none;
}


.c-brand__toggle-description {
  cursor: pointer;
  width: fit-content;
}

.c-brand__toggle-description:after {
  font-family: 'Awesome-icons';
  display: inline-block;
  content: "\f103";
  font-size: 14px;
  color: black;
  margin-right: 5px;
}

.c-brand__toggle-description::after {
  margin: 2px 0 0 4px;
  position: relative;
  top: 0;
  transition: all 0.2s ease;
}

.c-brand__toggle-description:hover::after {
  top: 2px;
  transition: all 0.2s ease;
}

.c-brand__toggle-description.is-opened::after {
  transform: rotate(-180deg);
}


.c-brand__product-counter-number {
  font-size: 30px;
  margin-bottom: 5px;
}


.c-brand__product-counter-wrapper {
  width: 10%;
  text-align: center;
}


@media only screen and (max-width: 640px) {
  /*
 * Brand page
 */
.c-brand__info {
  flex-wrap: wrap;
}


.c-brand__image-wrapper, .c-brand__description-wrapper, .c-brand__product-counter-wrapper {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
}


.c-brand__info {
  padding: 20px 0;
}


.c-brand__description-wrapper {
  padding: 0 20px;
}


@media only screen and (max-width: 1110px) {
  .c-brand__info {
  flex-wrap: wrap;
}


.c-brand__image-wrapper, .c-brand__description-wrapper, .c-brand__product-counter-wrapper {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
}


