/*
vHistory v25.11
*/

.my-v-history-clear { float: right;cursor: pointer; }
.my-v-history-head {
	line-height: 24px;
	padding: 5px 0 0 0;
	background-color:#F3F3F3;
}
.my-v-history {
	background-color:#F3F3F3;
	background: linear-gradient(180deg, #F3F3F3, transparent);
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	/*justify-content: flex-end;
    flex-direction: row-reverse;*/
	flex-wrap: wrap;
}
.my-v-horizontal {
	flex-wrap: nowrap;
	overflow-y: hidden;
	overflow-x: auto;
	/*height: 300px;*/
}
.my-v-vertical {
	overflow-x: hidden;
	overflow-y: auto;
	width: 300px;
	height: calc(100vh - 300px);
}
.my-v-history div {
	flex-shrink: 0;
	display: block;
	margin: 4px;
	padding: 6px;
	border: 1px solid #6C6C6C;
	background-color: white;
	min-width: 250px;
	min-height: 250px;
	max-width: 250px;
	max-height: 250px;
	overflow: hidden;
}
.my-v-history img {
	display: flex;
	flex-direction: row;
	height: 150px;
	margin: auto;
	max-width: 250px;
	object-fit: contain;
}
.my-v-history a {
    display: flex;
    flex-direction: column;
	text-decoration: none;
	word-break: break-all;
	text-align: center;
}
.my-v-history strong {
	display: block;
	white-space: nowrap;
	width: calc(100% - 2px);
	overflow: hidden;
}
@media 
screen and (max-width: 600px),
screen and (max-device-width: 600px)
{
	.my-v-history div {
		flex-shrink: 0;
		display: block;
		margin: 4px;
		padding: 6px;
		border: 1px solid #6C6C6C;
		background-color: white;
		min-width: calc(100vw - 75px);
		min-height: calc(100vw - 75px);
		max-width: calc(100vw - 75px);
		max-height: calc(100vw - 75px);
		overflow: hidden;
	}
	.my-v-history img {
		display: flex;
		flex-direction: row;
		height: calc(100vw - 175px);
		margin: auto;
		max-width: calc(100vw - 75px);
		object-fit: contain;
	}
}