@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
	font-family: "Lato";
}

.pointer {
	cursor: pointer;
}

.order-card {
	cursor: pointer;
	border:  1px solid transparent;
	border-top: 1px solid rgba(222, 226, 230, 1);
	transition: all 0.2s ease-in-out;
}

.order-card:hover {
	background: rgba(238,238,238,1);
	transform: scale(1.0);
}