.lang__wrapper {
  position: relative;
}
.lang__ttl {
  position: relative;
  background-color: #fff;
  width: 115px;
  height: 33px;
  padding: 0 10px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  border: 1px solid #e6e8ea;
  cursor: pointer;
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 767px) {
  .lang__ttl {
    width: 105px;
    font-size: 0.7rem;
  }
}
.lang__ttl::before, .lang__ttl::after {
  content: "";
}
.lang__ttl::before {
  background: url(../img/icon-lang.png) no-repeat top left/contain;
  width: 12px;
  height: 12px;
  margin-right: 6px;
}
@media only screen and (max-width: 767px) {
  .lang__ttl::before {
    width: 11px;
    height: 11px;
  }
}
.lang__ttl::after {
  width: 7px;
  height: 7px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(135deg);
  position: absolute;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .lang__ttl::after {
    width: 6px;
    height: 6px;
  }
}
.lang__ttl.arrow-open::after {
  transform: translateY(-50%) rotate(315deg);
  margin-top: 2px;
}
.lang__content {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 43px;
  right: 0;
  z-index: 1;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .lang__content {
    padding: 10px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .lang__content {
    padding: 10px 0 0;
  }
}
.lang__content::before, .lang__content::after {
  content: "";
  display: block;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  position: absolute;
}
.lang__content::before {
  background-color: #fff;
  width: 15px;
  height: 10px;
  z-index: 2;
  top: 2px;
  right: 54px;
}
.lang__content::after {
  background-color: #000;
  width: 16px;
  height: 10px;
  z-index: 1;
  top: 1px;
  right: 53.5px;
}
.lang__content.lang-open {
  opacity: 1;
  pointer-events: auto;
}
.lang__content-wrraper {
  background-color: #fff;
  border: 1px solid #000;
  box-sizing: border-box;
  border-radius: 7px;
  display: grid;
  gap: 6px 0;
  width: 150px;
}
@media only screen and (max-width: 767px) {
  .lang__content-wrraper {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 768px) {
  .lang__content-wrraper {
    padding: 25px 0;
  }
}
.lang__item {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
}
.lang a {
  color: #000;
  position: relative;
  display: inline-block;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .lang a:hover::after {
    width: 100%;
  }
}
.lang a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000;
  transition: 0.3s;
}
.lang .lang-selected a {
  pointer-events: none;
}
.lang .lang-selected a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}/*# sourceMappingURL=lang.css.map */