.item-details, td {
	vertical-align: top;
}
.item {
	background-color: var(--secondary-fg-color);
	border: 1px solid black;
    margin-bottom: 1rem;
	box-shadow: 1px 1px 5px;
	overflow: hidden;
	border-radius: 10px;
}
.item-time {
	text-align: center;
	vertical-align: top;
}
.item-time-remaining {
	font-weight: bold;
}
.item-title {
	color: var(--main-fg-color);
	margin: 0px;
}
.item-location {
	color: var(--main-fg-color);
}

.item-bidder-status {
    vertical-align: middle;
}
.no-wrap {
    white-space: nowrap;
}
.center {
    text-align: center;
}
.bold {
	font-weight: bold;
}
.item-lot {
	background-color: var(--main-dark-accent-color);
	color: white;
}
.item-content {
	/* padding: 10px; */
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.item-header>a {
	padding: 0.25em 1em;
}
.item-header {
	background-color: var(--main-light-accent-color);
	display:flex;
	align-items: center;
	cursor: pointer;
}
.item-image-container {
	/* display: flex; */
	/* justify-content: center; */
	/* width: 100%; */
	cursor: pointer;
}
.item-image-container-small {
	display: flex;
	justify-content: center;
	width: 100%;
	cursor: pointer;
}
.item-image-small {
	float: left;
	max-width: 100%;
	max-height: 50vh;
	margin-right: 10px;
	width: auto;
	border-radius: 5px;
}
.item-image {
	object-fit: cover;
	float: left;
	/* max-width: 100%;
	max-height: 50vh;
	min-width: 150px !important; */
	height: 150px !important;
	width: 150px !important;
	/* height: 80px !important;
	width: 80px !important; */
	/* border-radius: 5px; */
}
.item-details {
	flex: 1;
	display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.bid {
	width: 5em;
	padding: 5px;
	font-size: large;
}
.submit-bid {
	padding: 5px;
	font-size: large;
}
.bid-options {
	text-align: center;
	font-size: large;
	vertical-align: bottom;
	min-width: 275px;
	flex:0;
}

@keyframes spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.spin {
	animation: spin 0.5s linear;
}

.copied {
	animation: copied-animation 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.copy::after {
	content: "Copy";
	padding-left: 5px;
	font-size: 14px;
	color: rgb(44, 62, 80);
}
.copy.copied::after {
	content: "Copied!";
	padding-left: 5px;
	color: rgb(44, 62, 80);
}
@keyframes copied-animation {
	0% { transform: scale(1); }
	50% { transform: scale(1.2); }
	100% { transform: scale(1); }
}

/* DESKTOP SPECIFIC RULES */
@media (min-width: calc(850px * 2)) {
	.bid-options {
		text-align: end !important;
	}
	.item-content {
		/* flex-wrap: nowrap !important; */
		justify-content: space-between;
	}

	.item-image {
		height: 175px !important;
		width: 175px !important;
	}
	.item-image-small {
		height: 80px !important;
		width: 80px !important;
	}
	.item-location::before {
		content: "Location: ";
	}
	.item-image-container {
		height: 175px !important;
		width: 175px !important;
	}
	.item-image-container-small {
		height: 80px !important;
		width: 80px !important;
	}
}
@media print {
	
}