form 
	{
		margin-top:50px;
		padding:0px;
		border:solid 1px #dedede;
		border-radius:5px;
		width:100%;
		margin:0px ;
		}
		
 .floating-label label,  fieldset label {

  
  position: absolute;
  top: 13px;
  left: 23px;
  color: #909090;
    font-weight:300;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
}
		
 .floating-label {
  position: relative;
  margin-bottom: 20px;
}

.floating-select {
	
  font-size:20px;
	width: 89%;
	margin-left:12px;
    padding:10px 12px 6px 12px !important;
    height:40px !important;
  border: solid 1px #dedede !important;
  box-shadow:none !important;
  border-bottom:solid 1px #dedede !important;
}	


.floating-select:focus~label,
.floating-select:not([value=""]):valid~label {
  top: -18px;
  font-size: 14px;
  color: #5264AE;
}


.floating-select:focus~.bar:before,
.floating-select:focus~.bar:after {
  width: 50%;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.highlight {
  position: absolute;
  height: 50%;
  width: 100%;
  top: 15%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}


/* active state */

.floating-input:focus~.highlight,
.floating-select:focus~.highlight {
  -webkit-animation: inputHighlighter 0.3s ease;
  -moz-animation: inputHighlighter 0.3s ease;
  animation: inputHighlighter 0.3s ease;
}


/* animation */

@-webkit-keyframes inputHighlighter {
  from {
    background: #5264AE;
  }
  to {
    width: 0;
    background: transparent;
  }
}

@-moz-keyframes inputHighlighter {
  from {
    background: #5264AE;
  }
  to {
    width: 0;
    background: transparent;
  }
}

@keyframes inputHighlighter {
  from {
    background: #5264AE;
  }
  to {
    width: 0;
    background: transparent;
  }
}


	
		
form fieldset {
		border:none;
		position:relative;

		}



form fieldset input {
	font-size:20px;
	width: 95%;
    padding:15px 12px 6px 12px !important;
    height:40px !important;
  border: solid 1px #dedede !important;
  box-shadow:none !important;
  border-bottom:solid 1px #dedede !important;
}








form fieldset input:valid + label, form fieldset input:focus + label {
  color: #5264AE;
  font-weight: 700;
  font-size: 13px;
  -webkit-transform: translate3d(-5px, -19px, 0);
          transform: translate3d(-5px, -19px, 0);
}


input[type=submit] {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form input[type=submit]:hover {
  background-color: #45a049;
}

.dzien {display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  
  }
#dzien_tygodnia {
	padding:10px;
	}
.dzien input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.dzien:hover input ~ .checkmark {
  background-color: #4CAF50;
}
.dzien input:checked ~ .checkmark {
  background-color: #4CAF50;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.dzien input:checked ~ .checkmark:after {
  display: block;
}
.dzien .checkmark:after {
  left: 9px;
  top: 0px;
  width: 10px;
  height: 20px;
  border: solid white;
  border-width: 0 5px 5px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}