
.color-scheme {
  position: fixed;
  z-index: 99999;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.bg-dark [data-darkmode-toggle] .switch {
 background-color:rgba(255,255,255,.1);
 color:rgba(255,255,255,.5)
}
[data-darkmode-toggle] .switch {
 position:relative;
 display:inline-flex;
 align-items:center;
 justify-content:space-between;
 width:64px;
 height:32px;
 font-size:1rem;
 font-weight:500;
 background-color:#e7e7e7;
 color:rgba(0,0,0,.5);
 border-radius:16px
}
[data-darkmode-toggle] .switch::before {
 content:"light_mode";
 font-family:"Material Icons";
 transform:translateX(8px)
}
[data-darkmode-toggle] .switch::after {
 content:"dark_mode";
 font-family:"Material Icons";
 transform:translateX(-8px)
}
[data-darkmode-toggle] .switch>.slider {
 position:absolute;
 cursor:pointer;
 top:0;
 left:0;
 right:0;
 bottom:0;
 color:#121212
}
[data-darkmode-toggle] .switch>.slider:before {
 content:"light_mode";
 font-family:"Material Icons";
 position:absolute;
 width:32px;
 height:32px;
 left:0;
 bottom:0;
 display:inline-flex;
 align-items:center;
 justify-content:center;
 background-color:#fff;
 border-radius:32px;
 line-height:1.2;
 box-shadow:-1px 0 4px rgba(23,22,26,.05);
 transform:scale(1.1);
 -webkit-transition:.3s;
 transition:.3s;
 z-index:1
}
[data-darkmode-toggle] .switch>input {
 opacity:0;
 width:0;
 height:0
}
[data-darkmode-toggle] .switch>input:checked+.slider:before {
 content:"dark_mode";
 -webkit-transform:translateX(32px) scale(1.1);
 -ms-transform:translateX(32px) scale(1.1);
 transform:translateX(32px) scale(1.1)
}
[data-darkmode-toggle].bottom-right {
 position:fixed;
 bottom:0;
 right:0;
 z-index:99;
 margin:0;
 transform:translateY(-100%)
}
[data-darkmode-toggle].bottom-right .switch {
 transform:rotate(-90deg)
}
@media screen and (min-width:480px) {
 [data-darkmode-toggle].bottom-right {
  transform:translateY(calc(-100% - 24px)) translateX(-28px)
 }
}

.bg-dark, .bg-dark body, .bg-dark body section {
 background:#111111;
 color:#aaa
}
.bg-dark body h1,
.bg-dark body h2,
.bg-dark body h3,
.bg-dark body h4,
.bg-dark body h5,
.bg-dark body h6 {
 color:#ffffff
}

.bg-dark body a {
 color:#aaa 
}

