*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;	
}
.logo{
	margin: 50px;
	height: 50px;
	width: auto;
}
h1, h2, h3{
	text-align: center;
}
.wrapper{
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	margin: 0 auto;	
}
article{
	display: grid;
	width: 900px;
	grid-template-columns: 1fr 2fr;
	grid-template-rows: 200px 200px 250px;
	margin-top: 50px;
}
.articulo{
	display: flex;
	justify-content: center;
	text-align: center;
}
.pago-vuelto{
	grid-column: 2;
	grid-row: 1 / 3;
}
figcaption{
	color: steelBlue;
	font-weight: 600;
	font-size: 18px;
}
.pago-vuelto img {
	margin-left: 5px;
	margin-top: 5px;
}
.pago-vuelto figure{
	display: flex;
	justify-content: center;
	align-items: center;
}
.recibo{
	width: 250px;
	background-image: url(../images/receipt.jpg);
	margin: 0 auto;
}
.recibo th:first-child{
	padding-top: 5px;
}
span.circle {
	background: #e3e3e3;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	color: #6e6e6e;
	display: inline-block;
	font-weight: bold;
	line-height: 40px;
	margin-right: 5px;
	text-align: center;
	width: 40px;
}
tbody tr:last-child td{
	text-align: center;
	padding-bottom: 10px;
}
td{
	padding-left: 10px;
	padding-right: 10px;
}
.cifra{
	text-align: right;
}
.problema{
	grid-column: 1;
	grid-row: 2;
}
.billetera-caja{
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	grid-column: 1 / 3;
	grid-row: 3;
}
.billetera-caja img{
	margin-left: 5px;
	cursor: pointer;
}
.problema p{
	padding-left: 5px;
	padding-right: 5px;
}
p{
	white-space: normal;
}
button{
	display: block;
	margin-top: 20px;
	margin-bottom: 20px;
	width: 100px;
	height: 50px;
	font-size: 14px;
	border: 4px double;
	border-radius: 20px;
	background: steelBlue;
	color: white;
	visibility: hidden;
	margin: 0 auto;
}
.img{
	display: block;
	height: 50px;
	width: 50px;
	background-size: cover;
}
footer{
	text-align: center;
	margin: 50px;
}
