.settingsindex .light-grey {
	/*background-color: #f7f7f7*/
}

.settingsindex .checkbox-container input:checked ~ .checkmark {
    background-color: white;
}

.settingsindex .bold {
	font-weight: bold;
}

.settingsindex .hide {
	display: none;
}
.settingsindex .checkbox-container {
	margin-top: 10px;
}
.settingsindex .checkmark {
	top: 0;
	background-color: white;
      border: 1px solid #0eb3fc;
}

.settingsindex .switch-container,.settingsindex .notifications-level-container{
	padding: 0 10px;
	/*background-color: #F0F0F0;*/
}
   
.settingsindex .notifications-level-container{
	padding-top: 12px;
}
.settingsindex .switch-title {
	display: inline-block;
}

.settingsindex .switch {
  float: right;
  position: relative;
  display: inline-block;
  width: 40px;
  height: 16px;
  margin-bottom: 0;
  margin-top: 7px;
}

.settingsindex .switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.settingsindex .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .3s;
  transition: .3s;
}

.settingsindex .slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 3px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .3s;
  transition: .3s;
}

.settingsindex  input:checked + .slider {
  background-color: #34c759;
}

.settingsindex  input:focus + .slider {
  box-shadow: 0 0 1px #34c759;
}

.settingsindex  input:checked + .slider:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px);
}

/* Rounded sliders */
.settingsindex  .slider.round {
  border-radius: 34px;
}

.settingsindex  .slider.round:before {
  border-radius: 50%;
}