/*
 * Zabaan custom additions
 * ------------------------------------------------------------------
 * 1. Tripadvisor icon
 *    Font Awesome 6 (bundled with the theme) dropped the Tripadvisor
 *    brand glyph, so `fa-tripadvisor` renders nothing. The icon is
 *    recreated here from the original Font Awesome artwork as a CSS
 *    mask, which keeps it monochrome and inheriting `currentColor`
 *    exactly like every other social network icon.
 * 2. Tripadvisor brand color, matching the theme's --clb-color-* set.
 */

:root {
  --clb-color-tripadvisor: #34e0a1;
}

.fa-tripadvisor {
  --fa: "";
}

.fa-tripadvisor::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20576%20512'%3E%3Cpath%20d='M528.91,178.82,576,127.58H471.66a326.11,326.11,0,0,0-367,0H0l47.09,51.24A143.911,143.911,0,0,0,241.86,390.73L288,440.93l46.11-50.17A143.94,143.94,0,0,0,575.88,285.18h-.03A143.56,143.56,0,0,0,528.91,178.82ZM144.06,382.57a97.39,97.39,0,1,1,97.39-97.39A97.39,97.39,0,0,1,144.06,382.57ZM288,282.37c0-64.09-46.62-119.08-108.09-142.59a281,281,0,0,1,216.17,0C334.61,163.3,288,218.29,288,282.37Zm143.88,100.2h-.01a97.405,97.405,0,1,1,.01,0ZM144.06,234.12h-.01a51.06,51.06,0,1,0,51.06,51.06v-.11A51,51,0,0,0,144.06,234.12Zm287.82,0a51.06,51.06,0,1,0,51.06,51.06A51.06,51.06,0,0,0,431.88,234.12Z'/%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20576%20512'%3E%3Cpath%20d='M528.91,178.82,576,127.58H471.66a326.11,326.11,0,0,0-367,0H0l47.09,51.24A143.911,143.911,0,0,0,241.86,390.73L288,440.93l46.11-50.17A143.94,143.94,0,0,0,575.88,285.18h-.03A143.56,143.56,0,0,0,528.91,178.82ZM144.06,382.57a97.39,97.39,0,1,1,97.39-97.39A97.39,97.39,0,0,1,144.06,382.57ZM288,282.37c0-64.09-46.62-119.08-108.09-142.59a281,281,0,0,1,216.17,0C334.61,163.3,288,218.29,288,282.37Zm143.88,100.2h-.01a97.405,97.405,0,1,1,.01,0ZM144.06,234.12h-.01a51.06,51.06,0,1,0,51.06,51.06v-.11A51,51,0,0,0,144.06,234.12Zm287.82,0a51.06,51.06,0,1,0,51.06,51.06A51.06,51.06,0,0,0,431.88,234.12Z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.social-networks.-default-colors:not(.-contained) .tripadvisor {
  color: var(--clb-color-tripadvisor);
}

.social-networks.-default-colors.-contained .tripadvisor {
  color: var(--clb-color-white);
  background-color: var(--clb-color-tripadvisor);
}

.social-networks.-hover-default-colors:not(.-contained) .tripadvisor:hover {
  color: var(--clb-color-tripadvisor);
}

.social-networks.-hover-default-colors.-contained .tripadvisor:hover {
  color: var(--clb-color-white);
  background-color: var(--clb-color-tripadvisor);
}
