@charset "UTF-8";

.lang {
  position: relative;
}

.global_ul {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  border-radius: 8px;
  border: 1px solid #e5e5ec;
  background: #fff;
  display: flex;
  width: 102px;
  padding: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.global_ul > li {
  width: 100%;
}
.global_ul > li button {
  color: #505050;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  width: 100%;
  letter-spacing: -0.35px;
}
.global_ul > li.active button {
  color: #111;
  font-weight: 500;
}
.global_ul > li button {
  background: #fff;
}
.global_lang_btn {
  display: flex;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 16px;
  color: #111111;
  border: 1px solid #e5e5ec;
  height: 48px;
  line-height: 48px;
  background: #fff;
  width: 103px;
}
.global_lang_btn::before {
  content: "";
  background: url(../img/icon/icon_lang.svg) no-repeat center center / contain;
  width: 16px;
  height: 16px;
}
.global_lang_btn::after {
  content: "";
  background: url(../img/icon/icon_lang_down.svg) no-repeat center center / contain;
  width: 16px;
  height: 16px;
}
