/**
 * Minimal flag-icons CSS — only includes flags used by the language picker.
 * Based on flag-icons by Panayiotis Lipiridis - Copyright (c) 2013 - MIT License
 * https://github.com/lipis/flag-icons
 * To add a new language flag, download its SVG to public/flags/{4x3,1x1}/ and add the .fi-xx rules below.
 */
.fi {
  position: relative;
  display: inline-block;
  width: 1.333333em;
  line-height: 1em;
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
}
.fi::before {
  content: "\00a0";
}
.fi.fis {
  width: 1em;
}

/* Great Britain */
.fi-gb { background-image: url(../flags/4x3/gb.svg); }
.fi-gb.fis { background-image: url(../flags/1x1/gb.svg); }

/* Germany */
.fi-de { background-image: url(../flags/4x3/de.svg); }
.fi-de.fis { background-image: url(../flags/1x1/de.svg); }

/* Netherlands */
.fi-nl { background-image: url(../flags/4x3/nl.svg); }
.fi-nl.fis { background-image: url(../flags/1x1/nl.svg); }

/* Portugal */
.fi-pt { background-image: url(../flags/4x3/pt.svg); }
.fi-pt.fis { background-image: url(../flags/1x1/pt.svg); }
