.bl_langSwitcher {
  border-radius: 5px 5px 0 0;
  margin-right: 60px;
  min-width: 100px;
  position: relative;
  transform: translateX(10%);
  /* display: none; */
}
.bl_langSwitcher_item{
  display: none!important;
}
.bl_langSwitcher:focus,
.bl_langSwitcher:hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
.bl_langSwitcher_modal {
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  display: block;
  left: 0;
  list-style-type: none;
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  transform: translateY(0);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  visibility: hidden;
  width: 100%;
}
.bl_langSwitcher:focus .bl_langSwitcher_modal,
.bl_langSwitcher:hover .bl_langSwitcher_modal {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.bl_langSwitcher_item {
  border-radius: 0 0 4px 4px;
  display: block;
  padding-bottom: 13px;
  padding-top: 13px;
  text-align: center;
  text-decoration: none;
  transition: 0.25s;
}
.bl_langSwitcher_item:focus,
ul.bl_langSwitcher_modal li a.bl_langSwitcher_item:last-child:hover {
  background-color: #17375e;
  border-radius: 0 0 4px 4px;
  color: #fff;
}
ul.bl_langSwitcher_modal li a.bl_langSwitcher_item:first-child:hover {
  border-radius: 0;
}
.bl_langSwitcher_current {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  position: relative;
}
.bl_langSwitcher_current > * + * {
  margin-left: 7px;
}
.bl_langSwitcher_current:hover {
  background-color: #fff;
  color: currentColor;
}
.bl_langSwitcher_modal li {
  margin-bottom: 0;
  padding-left: 0;
}
.bl_langSwitcher_modal li:last-child {
  border-radius: 0 0 4px 4px;
  margin-bottom: 0;
  padding-left: 0;
}
.dropdown-arrow {
  height: 12px;
  margin-left: 8px;
  width: 12px;
  fill: currentColor;
  transition: transform 0.25s;
}
.bl_langSwitcher.show .dropdown-arrow {
  transform: rotate(180deg);
}
@media only screen and (max-width: 767px) {
  .bl_langSwitcher {
    margin-right: 0;
  }
  .sp-atter {
    margin-left: auto;
  }
}
