/* Extra small devices (phones, 600px and down) */
@media screen and (max-width:450px){

} 
@media screen and (max-width:600px){ /*sm (576px) */ 
	.rows .col .number-wrapper .number {
		font-size: 1.8em;
	}
	.search-box-wrapper{
		width: 80%;
		left: 10%;
	}
	.rows-date {
		margin-right: 65px;
	}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media screen and (min-width:600px){ /* sm (576px) */
	
}

/* Medium devices (landscape tablets, 768px and up) */
@media screen and (min-width:768px){ /* md */

}

/* Large devices (laptops/desktops, 992px and up) */
@media screen and (min-width:992px){ /* lg */

}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media screen and (min-width:1200px){ /* xl */
}


@media screen and (min-width:1400px){ /* xxl */
}

@media only screen and (orientation: landscape) {
}