/*Test align */
.text-center{
  text-align:center;
}

.text-right{
  text-align:right;
}

/*slider switch css */
.theme-switch-wrapper {
  display: flex;
  align-items: center;
  margin: 5px 45px 10px 10px;
  font-size: 0.5rem;
  float: right;
}
.theme-switch {
  display: inline-block;
  height: 26px;
  position: relative;
  width: 40px;
}

.theme-switch input {
  display:none;
}

.slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
}

.slider:before {
  background-color: #fff;
  bottom: 4px;
  content: "";
  height: 18px;
  left: 4px;
  position: absolute;
  transition: .4s;
  width: 18px;
}

input:checked + .slider {
  background-color: #66bb6a;
}

input:checked + .slider:before {
  transform: translateX(14px);
}

.slider.round {
  border-radius: 36px;
}

.slider.round:before {
  border-radius: 50%;
}