@charset "UTF-8";

.lang {
  margin: 0;
  right: 22%;
  top: 20px;
  position: absolute;
  align-items: center;
  font-size: 18px;
  color: #fff;
  border-radius: 24px;
  border: solid 2px #fff;
  padding: 8px 20px;
  z-index: 999;
  cursor: pointer;
  font-weight: bold;
  width: 150px;
  text-align: center;
}

.lang:hover {
  background: #fff;
  color: #313131;
}


.lang img {
  width:18px;
  margin-right: 8px;
}

.lang li {
  margin-right: 16px;
}

.lang li.current,
.lang li a {
  width: 120px;
  height: 40px;
  font-size: 1.8rem;
  color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang li.current {
  background: #b01e2b;
}

.lang li a {
  background: #313131;
}

.select {
  font-family: 'Roboto',arial,sans-serif;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  top: 64px;
  right: 23%;
  background: #fff;
  list-style: none;
  z-index: 999;
  border: solid 1px #E2E2E2;
  border-radius: 4px;
}


.select a {
  color: #313131;
  border-bottom: #E2E2E2 1px solid;
  font-size: 12px;
  padding: 12px;
  text-align: center;
  display: block;
  text-decoration: none;
  font-weight: 700;
}

@media(max-width:767px){
  .lang {
    padding: 8px 32px;
    color: #000;
    border: solid 1px #000;
    top: 14px;
    right: 5%;
    font-weight: 100;
    font-size: 14px;
  }
  .select {
    top: 46px;
    right: 8%;
    width: 100px;
    border: solid 1px #E2E2E2;
    border-radius: 4px;
  }

  .select a {
    font-weight: 800;
    border-bottom: #E2E2E2 1px solid;
  }
}

