
.toggle-container {
      position: absolute;
	  right: 50px;
	  top: 50px;
	display: flex;
      align-items: center;
      justify-content: center;
	z-index: 100000;
}

.toggle-btn {
      width: 60px;
      height: 31px;
      background-color: gray;
      border-radius: 30px;
      padding: 5px;
      transition: all .3s ease-in-out;
	cursor: pointer;
}

.toggle-btn > .inner-circle {
      width: 30px;
      height: 30px;
      background-color: #fff;
      border-radius: 50%;
      transition: all 300ms ease-in-out;
}

.toggle-btn.active {
      background-color: #1c993d;
}

.toggle-btn.active > .inner-circle {
      margin-left: 30px;
}
