
.theme-switch-wrapper {
  display: flex;
  align-items: center;
	position: fixed;
	bottom: 1rem;
	left: 1rem;
	z-index: 99999;
}
.theme-switch-wrapper * {
  transition: all .2s ease-out;
}

.theme-switch-wrapper .theme-switch {
  position: relative;
  display: inline-block;
  height: 60px;
  width: 34px;
  margin-bottom: 0;

  input {
    display:none;
  }
}

.theme-switch-wrapper .slider {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #ccc;
  cursor: pointer;
  border-radius: 34px;
  box-shadow: 0 0 20px -10px #000;
}
.theme-switch-wrapper .slider:before,
.theme-switch-wrapper .slider:after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 4px;
  height: 26px;
  border-radius: 100%;
  transition: all .2s ease-out;
}

.theme-switch-wrapper .slider:before {
  background-color: #fff;
  width: 26px;
  transform: translateY(-26px);
}

.theme-switch-wrapper .slider:after {
  z-index: 1;
  background-color: #ccc;
  width: 16px;
  transform: translateY(-26px) scale(0);
  transform-origin: center left;
}
.theme-switch-wrapper input:checked + .slider {
  background-color: #e4c200;
}
.theme-switch-wrapper input:checked + .slider:before {
  background-color: #000;
  transform: translateY(0);
}
.theme-switch-wrapper input:checked + .slider:after {
  background-color: #e4c200;
  transform: translateY(0) scale(1);
}


[data-theme=dark] body {
  background: #000;
  color: #fff;
}
[data-theme=dark] .divider {
  filter: invert(1);
}
[data-theme=dark]  .icon-gradient {
  background: linear-gradient(0deg, rgba(0,0,0, 0.2) 50%, #000), url(/media/electrician-pattern.png);
}
[data-theme=dark]  .icon-gradient-accent {
  background: #e4c200;
}
[data-theme=dark] .dark {
  color: #fff!important;
}
[data-theme=dark]  .firefly::before {
  background: #999;
}
[data-theme=dark]  .primary-btn {
  color: #fff!important;
}
[data-theme=dark] .hero-video:before {
  background: linear-gradient(0deg,rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.4) 60%);
}
[data-theme=dark] .accordion .card .card-body.grey-bkg {
  background: #333;
}
[data-theme=dark] .accordion .card .card-header .card-title,
[data-theme=dark] .accordion .card .card-header:after {
  color: #000!important;
}
[data-theme=dark] .slick-arrow {
  color: #e4c200;
}
