html:lang(en) .active-language {
  visibility: hidden;
  position: relative;
}

html:lang(en) .active-language::after {
  visibility: visible;
  position: relative;
  content: "\00a0";
  display: inline-block;
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
  width: 1.33333333rem;
  line-height: 1.2rem;
  margin-right: 1.1rem;
  background-image: url(../images/gb.svg);
}
html:lang(fr) .active-language {
  visibility: hidden;
  position: relative;
}

html:lang(fr) .active-language::after {
  visibility: visible;
  position: relative;
  content: "\00a0";
  display: inline-block;
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
  width: 1.33333333rem;
  line-height: 1.2rem;
  margin-right: 1.1rem;
  background-image: url(../images/fr.svg);
}
