/** swithch to dark mode button - start **/
.switch {
  position: relative;
  display: inline-block;
  width: 65px;
  height: 33px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider.round {
  border-radius: 34px;
  cursor: pointer;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-image: url(//wso2.cachefly.net/wso2/sites/all/2022-optimized/library-2022/moon.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 40px 8px;
  border: none;
}
.slider::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #212a32;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 2px solid #ff7300;
  transform: translateX(0px);
}
.slider.round:before {
  border-radius: 50%;
}
.Dark .slider {
  background-image: url(//wso2.cachefly.net/wso2/sites/all/2022-optimized/library-2022/sun.svg);
  background-repeat: no-repeat;
  background-size: 19px;
  background-position: 8px 7px;
  border: none;
  background-color: #202124;
}
.Dark .slider:before {
  transform: translateX(32px);
}