.lang__popup {
  font-family: "Segoe UI", "Helvetica", "Arial", sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99999;
}

.lang__popup--hide {
  display: none;
}

.lang__popup * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.lang__popup ul,
.lang__popup li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.lang__popup .lang__title {
  padding: 15px;
  font-size: 30px;
  color: #ffaac1;
  text-align: center;
  margin-bottom: 1em;
  line-height: 1.5em;
  font-weight: bold;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f0a9ff), to(#8bddff));
  background-image: linear-gradient(#f0a9ff, #8bddff);
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-filter: drop-shadow(3px 3px 1px rgba(2, 60, 167, 0.8235294118));
          filter: drop-shadow(3px 3px 1px rgba(2, 60, 167, 0.8235294118));
  z-index: 10;
  -webkit-filter: drop-shadow(5px 5px 1px rgba(2, 60, 167, 0.8235294118));
  filter: drop-shadow(5px 5px 1px rgba(2, 60, 167, 0.8235294118));
}


/* .lang__popup .lang__title {
  padding: 15px;
  color: #ffffff;
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
} */

.lang__popup .lang__wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow-y: auto;
}

.lang__popup .lang__box {
  position: relative;
  width: 90%;
  max-width: 1400px;
  background: rgba(0, 0, 0, 0.2);
  /* border: #0f7766 1px solid; */
  margin: 5% auto;
  padding: 2%;
}

.lang__popup .lang__box:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 10;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left top, right top, from(#f7a8e8), to(#8bddff));
  background-image: linear-gradient(to right, #f7a8e8, #8bddff);
  background-origin: border-box;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(white), to(white)), -webkit-gradient(linear, left top, left bottom, from(white), to(white));
  -webkit-mask-image: linear-gradient(white, white), linear-gradient(white, white);
  mask-image: -webkit-gradient(linear, left top, left bottom, from(white), to(white)), -webkit-gradient(linear, left top, left bottom, from(white), to(white));
  mask-image: linear-gradient(white, white), linear-gradient(white, white);
  -webkit-mask-composite: xor, source-over;
  mask-composite: exclude, add;
  -webkit-mask-clip: padding-box, border-box;
  mask-clip: padding-box, border-box;
  z-index: -1;
}

.lang__popup .lang__txt {
  text-align: center;
  color: #fff;
}

.lang__popup .lang__txt h3 {
  color: #26bea5;
  font-size: 24px;
  padding: 0 0 15px;
}

.lang__popup .lang__close {
  text-align: center;
  position: absolute;
  right: 0%;
  top: 1%;
}

.lang__popup .lang__close button {
  outline: none;
  /* border: #fff 1px solid; */
  color: #ffffff;
  background: none;
  font-size: 16px;
  padding: 10px 25px;
  cursor: pointer;
}

.lang__popup .lang__close button:hover {
  border-color: #26bea5;
  color: #26bea5;
}

.lang__popup .lang__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.lang__popup .lang__nav li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  border-bottom: #f1a9ff6d 5px solid;
  color: #f1a9ff6d;
  margin: 0 10px;
  padding: 15px;
  font-size: 20px;
  cursor: pointer;
}

.lang__popup .lang__nav li:hover,
.lang__popup .lang__nav li.lang__nav--active {
  color: #f0a9ff;
  border-color: #f0a9ff;
  text-shadow: 0 0 3px #f0a9ff;
}

.lang__popup .lang__list-box {
  display: none;
}

.lang__popup .lang__list-box:first-child {
  display: block;
}

.lang__popup .lang__list-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 15px;
}

.lang__popup .lang__list-box ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: calc(25% - 20px);
  margin: 5px 10px;
}

.lang__popup .lang__list-box ul li a {
  color: #fff;
  font-weight: bold;
  display: block;
  padding: 10px;
  background: linear-gradient(45deg, #3872b4, #8d9efb);
  width: 100%;
  text-decoration: none;
  /* background: #527fd3; */
  border: 1px solid #c2c2c2;
}

.lang__popup .lang__list-box ul li a:hover {
  background: #527fd3cb;
}

@media (max-width: 960px) {
  .lang__popup .lang__title {
    font-size: 22px;
  }

  .lang__popup .lang__box {
    width: 100%;
    padding: 2%;
    margin-top: 0;
  }

  .lang__popup .lang__nav {
    display: block;
  }

  .lang__popup .lang__list-box ul li {
    width: calc(50% - 10px);
    margin: 5px;
  }

  .lang__popup .lang__close {
    top: 7%;
  }
}

/*# sourceMappingURL=black-friday-lang.css.map */