.deewee-switch
{
	position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

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

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

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

input:checked + .deewee-slider 
{
  background-color: #769d27;
}

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

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

.message-disabled
{
	color:#910403;
}

.message-enabled
{
	color:#769d27;
}

.deewee-slider.deewee-round
{
	border-radius: 34px;
}


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

.deewee-fade-message-fadeout
{
  visibility: hidden;
	opacity: 0;
  transition: visibility 0s linear 300ms, opacity 300ms;
}

.deewee-fade-message-show
{
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}


@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

