@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

.buyer-pending-orders__container:nth-last-of-type(2n) {
	margin-bottom: 40px;
}

.buyer-pending-orders__date-banner {
	border-bottom: 6px solid #f1d7cc;
	color: #233235;
	font-family: DM Sans;
	font-size: 16px;
	font-style: normal;
	margin: 30px 0;
	padding-bottom: 10px;
}

.buyer-pending-orders__date-banner p {
	margin: 0;
	font-weight: 400;
}

.buyer-pending-orders__date-banner span {
	font-weight: 600;
}

.buyer-pending-orders {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}

.buyer-pending-order__card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	background: #f1d7cc;
	padding: 40px 15px 17px;
}

.buyer-pending-order__img {
	display: flex;
	justify-content: center;
}

.buyer-pending-order__card p {
	margin: 0;
	text-align: center;
	color: #000;
	font-family: 'Poppins';
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

/* .buyer-view-order-details__button {
	font-size: 16px;
	font-weight: 600;
	text-wrap: wrap;
} */

.buyer-view-order-details__button {
	background: #de5a61;
	border-color: #de5a61;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	text-wrap: wrap;
	padding: 0.5rem 0;
}

.buyer-view-order-details__button:hover,
.buyer-view-order-details__button:focus {
	background: rgba(154, 63, 68, 1);
	border-color: rgba(154, 63, 68, 1);
}

.buyer-view-order-details__button:active {
	background: #de5a61;
	border-color: #de5a61;
}

.no-pending-orders {
	grid-column: 1 / -1;
	text-align: center;
	font-size: 24px;
	font-weight: 400;
	margin-top: 25px;
}

@media (min-width: 640px) {
	.buyer-pending-orders {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 768px) {
	.buyer-pending-orders {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (min-width: 1024px) {
	.buyer-pending-orders {
		grid-template-columns: repeat(5, 1fr);
	}
}
