.switch {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 64px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #c00;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 56px;
  width: 56px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #0c0;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(38px);
  -ms-transform: translateX(36px);
  transform: translateX(36px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

#dwhtk_msg_mom {
	padding-top:15px;
	width:100%;	
}
#dwhtk_msg {
	font-size: 1.4em;
	background-color: #e8e8e8;
	display: none;
	margin: 0 auto;
	padding: 10px;
	width: 80%;
	min-width: 255px;
	border: 1px solid #c3c4c7;
	box-shadow: 0 1px 1px rgba(0,0,0,.04);
	text-align: center;
	
}

.dwhtk_page {
	width:400px;
}
.dwhtk_input {
	width:100%;
	max-width:800px;
	min-width:400px;
	
}	