/* Convert px to rem
** Usage:
** font-size: rem(23);
*/
/* A small function allowing skipping base64 encoding
** and simply pasting the SVG markup right in the CSS.
** @author Jakob Eriksen
** @link http://codepen.io/jakob-e/pen/doMoML
** @param {String} $svg - SVG image to encode
** @return {String} - Encoded SVG data uri
*/
/* Replace `$search` with `$replace` in `$string`
** @author Hugo Giraudel
** @link http://sassmeister.com/gist/1b4f2da5527830088e4d
** @param {String} $string - Initial string
** @param {String} $search - Substring to replace
** @param {String} $replace ('') - New value
** @return {String} - Updated string
*/
/* Replace substring 'fillColor' to real color from variables */
/* Convert px to rem
** Usage:
** font-size: rem(23);
*/
/* A small function allowing skipping base64 encoding
** and simply pasting the SVG markup right in the CSS.
** @author Jakob Eriksen
** @link http://codepen.io/jakob-e/pen/doMoML
** @param {String} $svg - SVG image to encode
** @return {String} - Encoded SVG data uri
*/
/* Replace `$search` with `$replace` in `$string`
** @author Hugo Giraudel
** @link http://sassmeister.com/gist/1b4f2da5527830088e4d
** @param {String} $string - Initial string
** @param {String} $search - Substring to replace
** @param {String} $replace ('') - New value
** @return {String} - Updated string
*/
/* Replace substring 'fillColor' to real color from variables */
/* Mixin for button animation,
    use: @include button-animation(); for .btn-primary-dark--white-bg button
*/
/* Mixin for arrow link animation,
    use: @include arrow-link-animation(); for .btn-tertiary-dark--white-bg button
*/
/* Mixin for link animation,
    use: @include link-animation(); for .btn-link-dark--white-bg button
*/
/* Mixin for button background animation,
    use: @include hoverBgEffect($primary-slate, $scale: 1.4, $speed: 0.4s);
*/
/**
 * Mixin for adding gradient line to the bottom.
 * @param {$side-colors} color.
 */
/**
 * Mixin for adding text underline.
 */
/**
 * Mixin for cropping the text.
 * @param {$line-clamp} number of visible lines.
 */
.b-support-tiles__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 auto;
  overflow-x: auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .b-support-tiles__inner {
    max-width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.b-support-tiles-item {
  padding: 0 0.3125rem;
  text-align: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  height: 100%;
}
@media (min-width: 768px) {
  .b-support-tiles-item {
    padding: 0 1rem;
  }
}
.b-support-tiles-item__wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 var(--support-tiles-width-mobile);
          flex: 1 1 var(--support-tiles-width-mobile);
  min-width: var(--support-tiles-width-mobile);
}
@media (min-width: 1024px) {
  .b-support-tiles-item__wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 var(--support-tiles-width-desktop);
            flex: 0 1 var(--support-tiles-width-desktop);
    min-width: var(--support-tiles-width-desktop);
  }
}
.b-support-tiles-item__link {
  display: block;
  height: 100%;
  padding: 1.25rem;
  border-radius: 0.25rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.b-support-tiles-item__link:hover, .b-support-tiles-item__link.m-active {
  background: #f6f4f0;
}
.b-support-tiles-item__icon {
  margin-bottom: 0.3125rem;
  max-width: var(--support-tiles-max-width-mobile);
}
@media (min-width: 1024px) {
  .b-support-tiles-item__icon {
    max-width: var(--support-tiles-max-width-desktop);
  }
}
.b-support-tiles-item__title {
  display: block;
  font-size: 0.875rem;
  line-height: 1.43;
  margin-top: 1.25rem;
}
