
/* Country flags switcher */
.nav-bar__actions{
  display:flex;
  align-items:center;
  gap:14px;
  margin-left:auto;
}
.country-flags{
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.country-flags__link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:24px;
  border-radius:3px;
  overflow:hidden;
  border:2px solid transparent;
  box-shadow:0 1px 3px rgba(0,0,0,.12);
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  line-height:0;
}
.country-flags__link img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.country-flags__link:hover{
  transform:translateY(-1px);
  box-shadow:0 3px 8px rgba(0,0,0,.18);
}
.country-flags__link.is-active{
  border-color:#1e3a4f;
  box-shadow:0 0 0 2px rgba(30,58,79,.15);
}
.country-flags--mobile{
  margin:16px 0 8px;
  justify-content:flex-start;
  gap:10px;
}
.country-flags--mobile .country-flags__link{
  width:40px;
  height:28px;
}

