/* EXAMPLE USAGE
@media (max-width: @screen-xs) { display: none; }
*/
@media (min-width: 601px) {
  display: none;
}
/* ==========================================================================
   Feefo Reviews
   ========================================================================== */

.feefo-reviews__header {
  display: flex;
  border-bottom: 1px solid var(--greyLightest1);
  margin: 0 0 30px;
  padding: 0 0 30px;
  align-items: center;
}
.feefo-reviews__content {
  flex: 1;
}
.feefo-reviews__content h2 {
  margin: 0;
}
.feefo-reviews__content p {
  margin: 0;
}
.feefo-reviews__rating {
  color: var(--orange);
  font-size: 24px;
}
.feefo-reviews__img {
  width: 150px;
}
.feefo-reviews__img img {
  display: block;
  max-width: 100%;
}
.feefo-reviews__item {
  margin: 0 0 30px;
  padding: 0 0 30px;
  border-bottom: 1px solid var(--greyLightest1);
}
.feefo-reviews__item h3 {
  display: flex;
  font-style: normal;
  margin: 0 0 5px;
  font-family: var(--sans-serif);
  font-size: 20px;
}
.feefo-reviews__item__rating {
  padding: 0 10px 0 0;
}
.feefo-reviews__item__name {
  color: var(--blue);
  font-weight: 700;
}
.feefo-reviews__item__date {
  color: var(--greyLight);
}
.feefo-reviews__item p {
  margin: 0;
  font-size: 16px;
}
.feefo-reviews__pagination {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feefo-reviews__pagination li {
  padding: 0 2px;
  line-height: 1;
  margin: 0;
}
.feefo-reviews__pagination li.current a {
  background: var(--blueLight);
  color: var(--white);
}
.feefo-reviews__pagination a {
  border: none;
  outline: none;
  display: block;
  padding: 5px 10px;
  text-decoration: none;
  color: var(--blue);
  transition: all 0.3s;
  cursor: pointer;
}
.feefo-reviews__pagination a:hover {
  background: var(--blueLightest2);
}
