.block-fake-lang-switcher-block {
  position: relative;
  z-index: 10;
}
.block-fake-lang-switcher-block .fake-lang-switcher-container {
  position: relative;
  border-radius: 5px;
  width: 92px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 51, 0.25);
}
.block-fake-lang-switcher-block .fake-lang-switcher-container * {
  color: #002067;
}
.block-fake-lang-switcher-block .fake-lang-switcher-container .fake-lang-switcher-selected {
  position: relative;
  padding: 10px;
  cursor: pointer;
}
.block-fake-lang-switcher-block .fake-lang-switcher-container .fake-lang-switcher-selected:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 8px;
  vertical-align: middle;
  margin-left: 8px;
  background-image: url("../../assets/pictos/icon-chevron.svg");
  background-size: contain;
  transform-origin: center;
  transform: translateY(-50%);
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.375s;
}
.block-fake-lang-switcher-block .fake-lang-switcher-container .fake-lang-switcher-selected.actived:after {
  transform: translateY(-50%) rotate(180deg);
}
.block-fake-lang-switcher-block .fake-lang-switcher-container .fake-lang-switcher-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 51, 0.25);
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.375s;
}
.block-fake-lang-switcher-block .fake-lang-switcher-container .fake-lang-switcher-options .fake-lang-switcher-option {
  padding: 8px;
  background-color: #fff;
  border-bottom: 1px solid #002067;
  cursor: pointer;
}
.block-fake-lang-switcher-block .fake-lang-switcher-container .fake-lang-switcher-options .fake-lang-switcher-option:last-child {
  border-bottom: none;
}
.block-fake-lang-switcher-block .fake-lang-switcher-container .fake-lang-switcher-options .fake-lang-switcher-option:hover {
  text-decoration: underline;
}
.block-fake-lang-switcher-block .fake-lang-switcher-container .fake-lang-switcher-options.active {
  opacity: 1;
  pointer-events: all;
}