/*Ülemine osa ja nupud*/
.top-text {
	display: flex;
	gap: 10px;
	margin: 0px 3px;
	padding: 15px 15px 0px 3px;
	background: #FFFFFF;
}
.top-menu {
	display: flex;
	gap: 5px;
	margin: 0px 3px;
	padding: 15px 3px;
	background: #FFFFFF;
	justify-content: flex-start;
	flex-wrap: wrap; 
}
.top-menu a {
	text-decoration: none;text-transform: uppercase;
	flex: 1 1 auto;
	max-width: 150px;
}
.top-nupp {
	position: relative; 
	padding: 6px 6px;
	background: #f0f0f0;
	font-size: 12px;
	color: #505050;
	cursor: pointer;
	text-align: center;
	flex: 1 1 auto;
	min-width: 45px;
	max-width: 150px;
	/*border-radius: 4px;*/
}
.top-nupp:hover {
	border-color: #ff9800;
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.top-nupp.active {
	background:#ff9800;
	color: white;
}
.top-nupp_fa {
	position: absolute;
	left: 50%;
	bottom: -10px; 
	transform: translateX(-50%);
	display: none;
	font-size: 20px;
	color: #f89b09;
}
.fa_kuva {
	display: block;
}

/* Nupud alla 350px ekraani laiuse korral */
@media (max-width: 350px) {
	.top-menu {
		flex-direction: column;
		align-items: stretch;
	}
	.top-menu a {
		max-width: 100%;
	}
	.top-nupp {
		width: 100%;
		max-width: none;
		box-sizing: border-box;
	}
}

/*tootebox kuva osa*/
.top-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
	padding:6px;

}
.top-item {
	display: flex;
	position:relative;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 6px;
	padding: 10px 16px;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.top-item:hover {
	-moz-box-shadow: 0 0 5px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0 0 5px rgba(0,0,0,0.3);
	box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.top-rank {
	position: absolute;
	top:15px;
	left:15px;
	/*flex-shrink: 0;*/
	width: 36px;
	height: 36px; 
	line-height:36px;
	text-align: center;
	background:#ff9800;
	font-weight: 700;
	color: #FFFFFF;
	font-size: 18px;
	border-radius: 23px;
}
.top-img-wrap {
	width: 180px;
	height: 180px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0px 7% 0px 7%;
}
.top-img {
	max-width: 160px;
	max-height: 160px;
	object-fit: contain;
}
.top-info {
	flex-grow: 1;
	font-size: 14px;
}
.top-name {
	font-weight: 600;
	margin-bottom: 10px;
}
.top-meta {
	margin-bottom:10px;
	color: #777;
	font-size: 13px;
	line-height: 1.3em;
}
.top-lingid {
	 font-size: 14px;    
}
.top-lingid a {
	color: inherit;          /* Võtme ümbritseva elemendi värvi */
	font-size: 13px;
	text-decoration: none;  
	text-decoration: underline;
}
.top-lingid a:hover {
	text-decoration: underline;  
	color:#ff9800;
}
.top-trend {
	flex-shrink: 0;
	align-self: flex-end;
	width: 30px;
	text-align: right;
	font-size: 16px;
	padding-bottom:10px;
}

@media   (max-width : 600px) and (min-width : 480px){
	.top-img-wrap {
		width: 130px;
		height: 130px;
		margin: 0px 15px 0px 15px;
	}
	.top-img {
		max-width: 120px;
		max-height: 120px;
		object-fit: contain;
	}
	.top-rank {
		top:10px;
		left:10px;
	}
}
@media (max-width: 479px) {
	.top-item {
		flex-direction: column;
		align-items: flex-start;
	}
	.top-img-wrap {
		align-self:center;
		width: 160px;
		height: 160px;
		margin: 8px 0;
	}
	.top-rank {
		top:10px;
		left:10px;
	}
}
@media (max-width: 400px) {
	.top-img-wrap {
		align-self:center;
		margin: 10px 0px 20px 0px
	}
}
