.allergyList_family {
	margin-top: 20px;
}
.text-center {
	text-align: center;
}
.margin-top-40 {
	margin-top: 40px;
}
.lang-select{
  position: relative;
  width: 160px; /* small */
  font: 14px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.lang-trigger{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 6px 10px;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  user-select: none;
}

.lang-trigger:focus{
  outline: none;
  border-color: #2684ff;
  box-shadow: 0 0 0 3px rgba(38,132,255,.2);
}

.lang-value{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.flag{
  font-size: 16px;
  line-height: 1;
}

.label{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chev{
  margin-left: 10px;
  opacity: .7;
}

.lang-select {
	position: absolute;
	top: 0;
	right: 0;
}
.lang-menu{
  position: absolute;
  z-index: 1000;
  top: calc(100% + 6px);
  left: 0;
  right: 0;

  margin: 0;
  padding: 6px;
  list-style: none;

  border: 1px solid #d7d7d7;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,.12);

  display: none;
}

.lang-select.is-open .lang-menu{
  display: block;
}

.lang-option{
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.lang-option:hover,
.lang-option.is-active{
  background: rgba(38,132,255,.12);
}

.lang-option.is-selected{
  font-weight: 600;
}
