
.card {	
	align-items: center;
	justify-content: center;
	border: red solid 2px;
  background-color: green;
  color: white;
  padding: 0px;
  height: 4rem;
  text-align: center;
  width: 55%;
 
}

.cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 0rem;
  gap: .5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

if ( $('[type="date"]').prop('type') != 'date' ) {
    $('[type="date"]').datepicker();
}