.switch {
  display: inline-block;
  height: 27px;
  position: relative;
  width: 52px;
  top: 7px;
}

.switch input {
  display:none;
}

.slider {
  background-color: #707070;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
}

.slider:before {
  background-color: #fff;
  opacity: 0.8;
  content: "";
  height: 27px;
  box-shadow: 0px 0px 4px grey;
  position: absolute;
  transition: .4s;
  width: 27px;
}

input:checked + .slider {
  background-color: #707070;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
  text-align: left !important;
}

.slider.round:before {
  border-radius: 50%;
}

.country-1 {
  width:21px;
  height:21px;
  border-radius:50%;
  margin-top:3px;
  margin-left:3px;
  float:left;
  box-shadow: 0px 0px 2px #363636;
  background-image: url('../img/lang-id.png');
  background-size: cover;
}

.country-2 {
  width:21px;
  height:21px;
  border-radius:50%;
  margin-top:3px;
  margin-left:3px;
  float:left;
  box-shadow: 0px 0px 2px #363636;
  background-image: url('../img/lang-en.png');
  background-size: cover;
}