
.form-heading
	{
	padding:10px;
	margin-bottom:10px;
	border-bottom-width:medium;
	border-bottom:1px solid #666666;
	}
input[type=text], select, textarea {
  width: 96%;
  margin:1%;
  padding: 1%;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size:16px;
  padding-top:15px;
  padding-bottom:15px;
}
/*---date ---*/
input[type="date"] 
	{
	width: 96%;
	margin:1%;
	padding: 1%;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size:16px;
	padding-top:15px;
	padding-bottom:15px;


	&::-webkit-datetime-edit-month-field 
		{
    	color: blue;
  		}
  	&::-webkit-datetime-edit-day-field 
		{
    	color: blue;
  		}
  	&::-webkit-datetime-edit-year-field 
		{
    	color: blue;
  		}

	&::-webkit-clear-button 
		{
		font-size: 18px;
		height: 30px;
		position: relative;
		right: 5px;
		margin-right: 4px;
		}
	&::-webkit-inner-spin-button 
		{
		height: 30px;
		}
	&::-webkit-calendar-picker-indicator 
		{
    	font-size: 18px;

    	&:hover 
			{
			background-color: lighten(#2f2f2f, 40%);
			color: darken(#fff, 10%);
			cursor: pointer;
    		}
    	&:active 
			{
      		color: blue;
    		}
  		}
	}
/*--- /date ----*/
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: #04AA6D;
  padding: 1%;
  padding-top:5px;
  padding-bottom:5px;
  margin:1%;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  width:96%;
  font-size:20px;
}


input[type=submit]:hover {
  background-color: #45a049;
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}


.buttonP {
  background-color:#E9E9E9;
  padding:10px;
  margin:10px;
  color: white;
  border: 1px solid #CCCCCC;
  cursor: pointer;
  border-radius: 10px;
  font-size:20px;
  display:inline-table;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
  input[type=submit] {
    width: 96%;
    margin-top: 0;
  }
  
}

.blink {
  animation: blinker 500ms step-start infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}