/**
 * Set custom typography sizes (e.g. header)
 * @param  {int} $size        font-size
 * @param  {int} $line-height line-height
 * @param  {int} $av          AV letter-spacing from XD
 * @return {void}
 */
/**
 * Converts a pixel, percentage, rem or em value to a unitless value based on a given font size. Ideal for working out unitless line heights.
 *
 * @param {Number} $value - Value to convert to a unitless line height
 * @param {Number} $base - The font size to use to work out the line height - defaults to $rem-font-size
 *
 * @return {Number} - Unitless number
 */
/**
 * AV letter spacing measurement convertor from Adobe applications
 * https://scotch.io/tutorials/converting-photoshop-letter-spacing-to-css
 */
.wp-block-sht-status-lamp__content {
  font-size: 1rem;
  line-height: 1.5625;
  display: flex;
  align-items: center;
  color: var(--wp--preset--color--green);
  text-transform: none;
}
.wp-block-sht-status-lamp__content::before {
  content: "";
  margin-right: var(--unit-small);
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 1.5rem;
  background: url("../../../img/icons/greenlamp.min.svg") center/contain no-repeat;
}
.wp-block-sht-status-lamp__content--off {
  color: var(--wp--preset--color--red);
}
.wp-block-sht-status-lamp__content--off:before {
  background-image: url("../../../img/icons/redlamp.min.svg");
}