#country_menu{
  max-width:1180px;
  margin:0 auto;
  padding:20px 22px 40px;
  color:#fff;
}

#country_menu *{
  box-sizing:border-box;
}

#country_menu .cm-top{
  display:flex;
  flex-direction:column;
  align-items:center; /* ВОТ ЭТО */
  gap:14px;
  margin-bottom:30px;
}

#country_menu .cm-continents,
#country_menu .cm-letters{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
}

#country_menu .cm-continents{
  gap:10px;
}

#country_menu .cm-letters{
  gap:10px 16px;
}

#country_menu .cm-chip{
  appearance:none;
  border:0; /* было border:1px */
  background:transparent;
  color:#fff;
  border-radius:999px;
  padding:8px 13px;
  font-size:13px;
  line-height:1;
  font-weight:500;
  cursor:pointer;
  transition:all .18s ease;
}
	
	
	
/*	  appearance:none;
  border:0;
  background:none;
  color:#fff;
	padding:8px 13px;
  font-size:13px;
  line-height:1;
  font-weight:500;
  letter-spacing:.04em;
  cursor:pointer;
  padding:0;
  opacity:.88;
  transition:opacity .18s ease, color .18s ease;*/
}

#country_menu .cm-chip:hover,
#country_menu .cm-chip.is-active{
  background:#151515;
}

#country_menu .cm-letter{
  appearance:none;
  border:0;
  background:none;
  color:#fff;
  font-size:15px;
  line-height:1;
  font-weight:600;
  letter-spacing:.04em;
  cursor:pointer;
  padding:0;
  opacity:.88;
  transition:opacity .18s ease, color .18s ease;
}

#country_menu .cm-letter:hover,
#country_menu .cm-letter.is-active{
  opacity:1;
  color:#f0f0f0;
}

#country_menu .cm-groups{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:34px 28px;
  align-items:start;
}

#country_menu .cm-group{
  min-width:0;
}

#country_menu .cm-group.is-hidden{
  display:none;
}

#country_menu .cm-group-title{
  margin:0 0 16px;
  padding:0 0 16px;
  border-bottom:1px solid rgba(255,255,255,.25);
  font-size:20px;
  line-height:1;
  font-weight:600;
  letter-spacing:.03em;
}

#country_menu .cm-list{
  list-style:none;
  margin:0;
  padding:0;
}

#country_menu .cm-list li{
  margin:0 0 10px;
}
#country_menu .cm-name{
  display:block;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
#country_menu .cm-link{
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  color:#fff;
  font-size:14px;
  line-height:1.25;
  transition:opacity .18s ease;
}

#country_menu .cm-link:hover{
  opacity:.78;
}

#country_menu .cm-flag{
  width:18px;
  height:18px;
  min-width:18px;
  border-radius:50%;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#111;
  border:1px solid rgba(255,255,255,.08);
}

#country_menu .cm-flag img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

#country_menu .cm-name{
  min-width:0;
}

#country_menu .cm-empty{
  display:none;
  padding:12px 0 0;
  color:rgba(255,255,255,.72);
  font-size:15px;
}

#country_menu .cm-empty.is-visible{
  display:block;
}

@media (max-width:1100px){
  #country_menu .cm-groups{
    grid-template-columns:repeat(4, minmax(0, 1fr));
  }
}

@media (max-width:760px){
  #country_menu{
    padding:16px 14px 34px;
  }

  #country_menu .cm-groups{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:24px 18px;
  }

  #country_menu .cm-group-title{
    font-size:18px;
    margin-bottom:14px;
    padding-bottom:14px;
  }

  #country_menu .cm-link{
    font-size:14px;
  }

  #country_menu .cm-letters{
    gap:8px 12px;
  }

  #country_menu .cm-letter{
    font-size:14px;
  }
}

@media (max-width:480px){
  #country_menu .cm-groups{
    grid-template-columns:1fr;
    gap:22px;
  }

  #country_menu .cm-chip{
    font-size:12px;
    padding:7px 11px;
  }
}

#country_menu .cm-search-wrap{
  width:100%;
  display:flex;
  justify-content:center;
  margin-top:2px;
}

#country_menu .cm-search{
  position:relative;
  width:100%;
  max-width:520px;
}

#country_menu .cm-search__icon{
  position:absolute;
  left:14px;
  top:50%;
  width:18px;
  height:18px;
  color:rgba(255,255,255,.55);
  transform:translateY(-50%);
  pointer-events:none;
}

#country_menu .cm-search__icon svg{
  width:100%;
  height:100%;
  display:block;
}

#country_menu .cm-search__input{
  width:100%;
  height:46px;
  border:0;
  outline:0;
  border-radius:14px;
  background:#111;
  color:#fff;
  padding:0 42px 0 42px;
  font-size:14px;
  line-height:46px;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
  transition:box-shadow .18s ease, background .18s ease;
}

#country_menu .cm-search__input::placeholder{
  color:rgba(255,255,255,.45);
}

#country_menu .cm-search__input:focus{
  background:#151515;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.16);
}

#country_menu .cm-search__clear{
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  width:22px;
  height:22px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  color:#fff;
  cursor:pointer;
  font-size:16px;
  line-height:22px;
  padding:0;
  display:none;
}

#country_menu .cm-search__clear.is-visible{
  display:block;
}

#country_menu .cm-search__clear:hover{
  background:rgba(255,255,255,.14);
}



