/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 27px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--menu-color);
  border: 1px solid var(--hr-color);
}
.slider:before {
  position: absolute;
  content: '';
  width: 25px;
  height: 25px;
  left: 0px;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.4s transform;
  transition: 0.4s transform;
  background: #ffffff var(--page-icon) no-repeat -424px -24px;
}
input:checked + .slider:before {
  -webkit-transform: translateX(19px);
  -ms-transform: translateX(19px);
  transform: translateX(19px);
  background: #171717 var(--page-icon) no-repeat -466px -24px;
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}

/* Language  */
.language-switch-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 38px;
  padding: 0 10px;
  margin-right: 15px;
  background-color: var(--body-color);
  border: 1px solid var(--hr-color);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  font-family: zoho-puvi-regular;
  color: var(--font-lite-body-color);
  cursor: pointer;
}
.language-switch-btn:hover {
  box-shadow: 0px 0px 20px #a2a2a21a;
}
.language-icon {
  background: var(--page-icon) no-repeat -387px -30px;
  width: 13px;
  height: 13px;
  margin-right: 6px;
}
.language-list {
  position: absolute;
  bottom: 110%;
  right: 0;
  min-width: 100px;
  background-color: var(--body-color);
  border: 1px solid var(--hr-color);
  border-radius: 4px;
  box-shadow: 0px 0px 20px #a2a2a21a;
  padding: 3px 0;
}
.language-list ul {
  padding: 0;
  margin: 0;
}
.language-list li {
  list-style: none;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: zoho-puvi-regular;
  color: var(--font-lite-body-color);
}
.language-list li:hover {
  background-color: var(--menu-color);
}
