.produkt-foto-male {
  display: inline-flex;
  justify-content: center;
  border: 1px solid lightgrey;
  border-radius: 1px;
  overflow: hidden;
  box-shadow: 0 1px 5px 0 #d6d6d6;
  width: 54px;
  height: 54px;
  padding: 5px;
  transition: all 0.3s ease;
}

.produkt-foto-male:hover {
  border-color: red;
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.produkt-foto-male:not(.hide) {
  animation: show 0.3s ease forwards;
}
#btnDalsiVarianty{
  margin: 32px 0px;
}
.obsah-varianty {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  line-height: 0px;
  gap: 8px;
  margin: 4px 0px;
}
.produkt-foto-male:hover .hover-produkt-info {
  display: block;


}

.hover-produkt-info {
  display: none;
  background-color: #666666;
  color: white;
  border-radius: 4px;
  padding: 6px 12px;
  position: absolute;
  z-index: 9999;
  font-size: 13px;
  text-align: center;
  animation: show 0.3s ease forwards;
  transform: translate(0%, -130%);
  line-height: normal;
}

.hide{
  display: none;
}

.obsah-varianty .hide-btn{
  width: 62px;
  text-align: center;
  margin: 32px 0px;
}

.res-var-img{
  object-fit: contain;
}
@media screen and (max-width: 670px) {
  .obsah-varianty {
    display: none;
  }
  .h-varianty{
    display: none;
  }
}
