/* # positioning */

.claim__main-section {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

/* # sections */
/* ## dropoff date */

.claim-pao__dropoff-date {
	color: #233235;
	font-family: 'DM Sans';
	font-size: 1rem;
	font-style: normal;
	border-bottom: 6px solid rgba(0, 125, 122, 1);
	padding: 10px 0;
	margin: 30px 0;
}

.claim-pao__dropoff-date p {
	margin: 0;
}

.claim-pao__dropoff-date p span {
	font-weight: 600;
}

/* ## card */
.claim__product-card {
	border: 2px solid #005e5c;
	display: flex;
	gap: 20px;
	padding: 15px;
	background-color: #fff;
	height: 100%;
}

/* ## image */
.claim__product-image {
	/* width: 100%; */
	width: 40%;
	height: 100%;
}

.claim__product-image > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ## info */
.claim__product-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 10px;
	width: 60%;
}

.claim__product-info > h4 {
	font-family: DM Sans;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 22px; /* 122.222% */
	text-transform: uppercase;
	grid-column: 1 / -1;
}

/* ### details-dropoff */
.claim__details-dropoff {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.claim__dropoff--box {
	border: 1px solid #233235;
	text-align: center;
}

.claim__dropoff--box div {
	padding: 5px;
}

.claim__dropoff--box div:nth-of-type(1) {
	border-bottom: 1px solid #233235;
	color: #233235;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}

.claim__dropoff--box div:nth-of-type(2) {
	background-color: #fbf5f2;
	color: #007d7a;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}

/* ### quantity claim */
.claim__quantity-claim {
	margin-top: 15px;
}

/* ### claim__counter-submit  */
.claim__counter-submit {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.claim__counter-submit p {
	grid-column: 1 / -1;
	margin: 0;
	color: #233235;
	font-family: DM Sans;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}

/* ### submit button */
.claim__submit {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	background-color: #007d7a;
	border-radius: 4px;
	border: 1px solid #007d7a;
	color: #fff;
}

.claim__submit:hover,
.claim__submit:focus {
	background-color: #005e5c;
	border: 1px solid #005e5c;
}

.claim__submit.disabled {
	background-color: #b3cece;
	border-color: #b3cece;
	cursor: not-allowed;
}

.claim__submit.claimed {
	background-color: #64b0af;
	cursor: not-allowed;
}

/* # text */
.claim__product-name {
	margin: 0;
}
.claim__details p {
	color: #686868;
	font-family: DM Sans;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	margin: 0;
}

.claim__dropoff--box p {
	margin: 0;
}

/* media queries */
@media (min-width: 768px) {
	.claim__product-card {
		gap: 30px;
	}
	.claim__details-dropoff {
		flex-direction: column;
		align-items: stretch;
		margin-top: 20px;
	}
	.claim__dropoff--box div {
		padding: 10px;
	}
}
@media (min-width: 1024px) {
	.claim__product-card {
		gap: 20px;
	}
	.claim__main-section {
		grid-template-columns: 1fr 1fr;
	}
	.claim__details-dropoff {
		flex-direction: row;
		align-items: center;
		margin: 0;
	}
	.claim__dropoff--box div {
		padding: 5px;
	}
}
@media (max-width: 600px){
	.claim__counter-submit {
		display: grid;
		grid-template-columns: 1fr;
		/* gap: 10px; */
	}

	.claim__details-dropoff {
		flex-direction: column;
		align-items: stretch;
		margin-top: 20px;
	}

	.claim__product-image {
		/* width: 100%; */
		width: 50%;
		height: 100%;
	}

	.claim__product-info {
		width: 50%;
	}
}
