button:focus {
	outline:none;
}

button.blue {
	box-shadow: inset 0px 1px 0px 0px #bee2f9;
	background: linear-gradient(to bottom, #63b8ee 5%, #0098ea 100%);
	background-color: #0098ea;
	border: 1px solid #008fd4;
	color:#fff;
	text-shadow:0px 1px 0px #7cacde;
	border-radius:.1em;
	display:inline-block;
	cursor:pointer;
	font-family:Arial;
	font-size:1em;
	/*font-weight:bold;*/
	/*padding:6px 24px;*/
	padding: .75em;
	text-decoration:none;
}

button.blue:hover {
	background:linear-gradient(to bottom, #468ccf 5%, #0098ea 100%);
	background-color:#468ccf;
}

button.blue:active {
	position:relative;
	top:1px;
}

button.blue:disabled, button.blue[disabled] {
	background-color:#f5f5f5;
	background:#f5f5f5;
	color:#aaa;
	border:1px solid #bbb;
	box-shadow:none;
	text-shadow:none;
}


button {
	width: 100%;
}

input[type=text],input[type=password],select {
	font-size: 1em;
	font-family: inherit;
	padding: 0.35em 0.5em;
	margin: 0 0 .25em 0;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: .13em;
	line-height:1em;
	/*transition: 180ms box-shadow ease-in-out;*/
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

input[type=text]:focus,input[type=password]:focus,select:focus,textarea:focus {
	border-color: #acacac;
	outline: 0;
	/*box-shadow: 0 0 0 0.2rem #caecff;*/
}

textarea {
	font-size: 1em;
	font-family: inherit;
	padding: 0.35em 0.5em;
	margin: 0 0 .25em 0;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: .13em;
	line-height:1em;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}


.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

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

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

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

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

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

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

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

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