.bx-rating--custom {
  position: relative;

  display: flex;
  align-items: center;
  column-gap: 16px;

  margin: 1rem 0 2rem;
}

.bx-rating-icon-container { cursor: pointer; }

.bx-rating .bx-rating-icon-container:last-child { margin-right: 0; }

.bx-rating-icon { fill: #005f7d; }

.container__response {
  display: none;
  height: 16px;

  padding: 8px;

  text-align: center;
}

.rating--custom__container,
.share-button,
.rating--custom__info { 
  display: flex;
  align-items: center;
  column-gap: 8px;
  width: 100%;

  padding: 8px;
}

.rating--custom__container { column-gap: 16px; }

.rating--custom__info { justify-content: flex-end; }

.share-button {
  padding: 12px 16px;

  color: #fff;

  border-radius: 32px;
  background-color: #005f7d;

  cursor: pointer;
}

.block__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  width: 36px;

  background-color: #005f7d;
  border-radius: 50%;
}

.share-button__icon,
.block__wrapper .wrapper {
  height: 20px;
  width: 20px;

  color: #fff;
}

.share__block {
  position: absolute;
  bottom: 100px;

  display: none;
  min-width: 250px;

  background-color: #fff;
  border: 1px solid #e1e1e1;
}

.share__block__header {
  font-weight: 700;
  text-align: center;
}

.share__block.open { display: block; }

.block__social {
  display: flex;
  align-items: center;
  column-gap: 16px;
  width: 100%;

  padding: 8px;

  background-color: inherit;
  border: 0;
  border-top: 1px solid #e1e1e1;

  cursor: pointer;
}

.block__social-wa {
  border-bottom: 1px solid #e1e1e1;
}

.block__social span.success {
  display: flex;
  align-items: center;
  height: 54px;

  color: #005f7d;
}

.social__name { font-weight: 700; }

.rating--custom__info p { margin: 0; }

.info__rating,
.info__votes {
  font-size: 14px;
  font-weight: 400;
  color: #747883;
}

@media screen and (max-width: 768px) {
  .bx-rating--custom {
    flex-direction: column;
    row-gap: 16px;
  }

  .share__block { bottom: 120px; }
}

@media screen and (max-width: 504px) {
  .block__wrapper {
    height: 24px;
    width: 24px;
  }

  .share__block { right: 5%; }

  .share-button__icon,
  .block__wrapper .wrapper {
    height: 20px;
    width: 20px;
  }
}