.world {
  border-radius: 6px;
  border: 1px solid #000;
  cursor: pointer;
  margin: 6px;
  min-width: 48px;
  width: 5%;
}
.world.is-selected{
  border: 3px solid red;
}

.flag-row {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 3px rgba(0,0,0,0.15);
  padding: 8px 6px;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

.flag-row::-webkit-scrollbar {
  height: 14px;
}
.flag-row::-webkit-scrollbar-track {
  background: #ffe5e5;
}
.flag-row::-webkit-scrollbar-thumb {
  background: #c00;
  border-radius: 7px;
}

.flag-tile {
  display: inline-block;
  margin: 0 4px;
}

.flag-tile.offline {
  display: none;
}

.flag-sprite {
  background-image: url("/assets/imgs/sprite_mt_56x42.png");
  background-repeat: no-repeat;
  background-position: calc( var(--n, 0) * -56px ) 0;

  width: 56px;
  height: 42px;

  border-radius: 20%;
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
}

#lang-info {
  margin-top: 10px;
  padding: 6px 10px;
  background: #ffffff;
  border-top: 1px solid #ccc;
  text-align: center;
  font-size: 20px;
  min-height: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#lang-info .lang-name {
  font-weight: bold;
}

#lang-info .lang-count {
  font-family: monospace;
  font-size: 18px;
  color: #111;
  margin-left: 10px;
}

