.langchoose {
  width: 100%;
  height: 100%;
  background: #00000077;
  position: fixed;
  z-index: 9990;
  top: 0%;
  font-family: 'Montserrat', sans-serif
}

.langchoose ul,
.langchoose li {
  padding: 0;
  margin: 0;
  font-family: 'Montserrat', sans-serif
}

.langchoose__block {
  width: 90%;
  max-width: 1280px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 80vh;
  background: #222;
  overflow-x: hidden;
  -webkit-box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.479), -3px -3px 15px rgba(0, 0, 0, 0.479);
  -moz-box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.479), -3px -3px 15px rgba(0, 0, 0, 0.479);
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.479), -3px -3px 15px rgba(0, 0, 0, 0.479);
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.langchoose__block::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #949494;
}

.langchoose__block::-webkit-scrollbar {
  width: 6px;
  background-color: #949494;
}

.langchoose__block::-webkit-scrollbar-thumb {
  background-color: #f5f5f5;
}

.langchoose__block h2 {
  font-size: 32px;
  text-align: center;
  color: #333;
  background: #fff000;
  margin: 0;
  padding: 40px 0;
}

.langchoose__block > div {
  padding: 0px 0px;
}

.langchoose__block-sel {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.langchoose__block-sel li {
  width: calc(100% / 3 );
  text-align: center;
  list-style-type: none;
  margin: 0 0px;
  border-bottom: 2px solid #666;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  padding: 10px 0;
  background: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#222));
  background: -moz-linear-gradient(top, #222);
  background: linear-gradient(to bottom, #222);
  -moz-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.langchoose__block-sel li:hover {
  border-bottom: 2px solid #fff000 !important;
  background: #eee !important;
}

.langchoose__block-sel li:hover a {
  color: #000000 !important;
}

.langchoose__block-sel li a {
  text-decoration: none;
  color: #fff;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
}

.langchoose__block-sel--active {
  border-bottom: 2px solid #fff000 !important;
  background: #fff !important;
}

.langchoose__block-sel--active a {
  color: #000000 !important;
}

.langchoose__country {
  padding: 20px;
}

.langchoose__country-item {
  display: none;
}

.langchoose__country-item--active {
  display: block;
}

.langchoose__country ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.langchoose__country ul li {
  list-style-type: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -moz-calc(25% - 10px);
  width: calc(25% - 10px);
  background: #222;
  margin: 5px 4px;
  border: #ffffff18 1px solid;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .langchoose__country ul li {
    width: -moz-calc(50% - 10px);
    width: calc(50% - 10px);
  }
}

.langchoose__country ul li:hover {
  background: #333;
}

.langchoose__country ul li a {
  width: 100%;
  padding: 10px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  text-align: center;
  color: #fff;
  text-decoration: none;
}
