/**
 * Makes a unit-based variable unitless
 * @param {number (with units)} $value      The variable that should be converted to unitless
 */
/**
 * Converts a variable (either px, unitless or rem) to a pixel based value. Assumes that 1rem
 * corresponds to 16px.
 * @param {number} $value      The variable that should be converted pixels
 */
/**
 * Creates a variable that represents a fluid value; it grows from $minPropertyValue to
 * $maxPropertyValue while the viewport width is between $minWidth and $maxWidth.
 * Return value always uses the same unit as $min/maxPropertyValue and adds pixel based value
 * depending on screen size.
 * Use rem units for $min/maxPropertyValue for fonts (for accessibility reasons; users can
 * thereby chose their default font size in the OS/browser) and px for layouts.
 * @param {number (px/rem)} $minPropertyValue       Fluid value will correspond to this value if
 *                                                  the viewport has $minWidth and will not fall
 *                                                  below this value
 * @param {number (px/rem)} $maxPropertyValue       Fluid value will correspond to this value if
 *                                                  the viewport has $maxWidth and will go above
 *                                                  this value
 * @param {number (px)} $minWidth                   Fluid value will be $minPropertyValue if the
 *                                                  viewport has this size or is smaller
 * @param {number (px)} $maxWidth                   Fluid value will be $maxPropertyValue if the
 *                                                  viewport has this size or is larger
 */
/**
 * Returns the layout fluid base unit multiplied with the factor provided
 * @param {number} $factor      Factor that the layout's fluid base unit should be multiplied with
 */
.c-patron-item {
  display: flex;
  align-items: center;
  position: relative;
  padding: calc(min(16px, max(12px, calc(12px + 0.0046403712 * calc(100vw - 320px)))) * 2) 0;
  border-bottom: 1px solid #efefef;
}
.c-patron-item__logo {
  width: 100%;
  max-width: 35%;
  max-height: 75px;
  margin-right: calc(min(16px, max(12px, calc(12px + 0.0046403712 * calc(100vw - 320px)))) * 2.5);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}
.c-patron-item__logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.c-patron-item__link {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1f2227;
  text-decoration: none;
  transition: text 0.35s cubic-bezier(0.2, 0.9, 0.4, 1);
}
.c-patron-item__link-icon {
  overflow: hidden;
  flex-shrink: 0;
  margin-left: calc(min(16px, max(12px, calc(12px + 0.0046403712 * calc(100vw - 320px)))) * 1);
}
.c-patron-item__link-icon svg {
  width: 24px;
  height: 13px;
  transform: translateX(-0.25em);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1);
}
.c-patron-item__link-icon svg path {
  transition: fill 0.35s cubic-bezier(0.2, 0.9, 0.4, 1);
}
.c-patron-item__title {
  margin: 0;
}
.c-patron-item__link:hover {
  color: #e30613;
}
.c-patron-item__link:hover .c-patron-item__link-icon svg {
  transform: translateX(0);
}
.c-patron-item__link:hover .c-patron-item__link-icon svg path {
  fill: #e30613;
}