.con_error_div{
	display:none;
}
.con_div {
	width:100%;
	border-bottom: solid 1px #333;
	padding: 10px;
	margin-bottom: 15px;
	display:flow-root;
}
.con_field_div{
	width:40%;
	display: unset;
	align-items: center;
}
.consecutive_days_notification_container {
	display: flex;
	align-items: center;
}

.switch {
	position: relative;
	display: inline-block;
	width: 56px;
	height: 28px;
	margin-bottom: 0;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #8a919a;
  -webkit-transition: .4s;
  transition: .4s;
}

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

input:checked + .slider {
  background-color: #328689;
}

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

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

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

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