.theme-switch{
  position: fixed;
  top: 20px;
  right: 0;
  z-index: 11;
  background-color: #ffffff;
  padding: 15px;
  border: 1px solid #d4d4e3;
  border-right: none;
  border-radius: 0 0 0 5px;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.theme-switch.open{
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.theme-switch h5{
  font-size: 16px;
  margin-top: 0;
  color: #302e4d;
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid #e8dfec;
}
.theme-switch ul{
  margin: 0;
  list-style-type: none;
  padding: 0;
  display: block;
  margin-bottom: 5px;
}
.theme-switch ul li{
  display: inline-block;
}
.theme-switch ul li a{
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 50%;
  cursor: pointer;
  text-decoration: none;
  margin-right: 2px;
}
.theme-switch .toggle-theme-switcher{
  position: absolute;
  height: 45px;
  width: 45px;
  background-color: #ffffff;
  left: -46px;
  top: -1px;
  border: 1px solid #d4d4e3;
  border-right: none;
  text-align: center;
  cursor: pointer;
  border-radius: 5px 0 0 5px;
}
.theme-switch .toggle-theme-switcher .fa{
  font-size: 20px;
  line-height: 43px;
}
