   	
.adjust-height{
	    max-height: 8vh;
}
.thumbs-wrapper {
   		display: flex;
   		flex-wrap: wrap;
   		gap: 10px;
   		margin-top: 15px;
   		justify-content: center;
   	}

   	.thumbs-wrapper .thumb-item img {
   		width: 100px;
   		height: 60px;
   		object-fit: cover;
   		cursor: pointer;
   		opacity: 0.5;
   		border: 2px solid transparent;
   		transition: 0.3s;
   	}

   	.thumbs-wrapper .thumb-item.active img {
   		opacity: 1;
   		border-color: #000;
   	}

   	@media (max-width:575px) {
   		.thumbs-wrapper .thumb-item img {
   			width: 60px;
   			height: 40px;

   		}
   	}
 