/*body[data-user-id="1"] .card[data-owner-id="1"] {*/
/*    border: 2px solid red;*/
/*}*/

        /* Zoom animáció szünetekkel */
        @keyframes zoomEffect {
            0%   { transform: scale(1) translate(0, 0); }
            20%  { transform: scale(1) translate(0, 0); }
            30%  { transform: scale(3) translate(-20%, -20%); } /* Bal felső */
            35%  { transform: scale(3) translate(-20%, -20%); } /* Vár 1 mp-et */
            40%  { transform: scale(1) translate(0, 0); }

            50%  { transform: scale(3) translate(20%, -20%); }  /* Jobb felső */
            55%  { transform: scale(3) translate(20%, -20%); }  /* Vár 1 mp-et */
            60%  { transform: scale(1) translate(0, 0); }

            70%  { transform: scale(3) translate(-20%, 20%); }  /* Bal alsó */
            75%  { transform: scale(3) translate(-20%, 20%); }  /* Vár 1 mp-et */
            80%  { transform: scale(1) translate(0, 0); }

            90%  { transform: scale(3) translate(20%, 20%); }   /* Jobb alsó */
            95%  { transform: scale(3) translate(20%, 20%); }   /* Vár 1 mp-et */
            100%  { transform: scale(1) translate(0, 0); }

            100% { transform: scale(1) translate(0, 0); } /* Vissza alapállapotba */
        }
.card-box-img-container {
  overflow: hidden;
}
.zoomeffect {
  animation: zoomEffect 12s;
}
.cards-title {
	margin: 20px;
}
.cards-title h1 {
	font-size: 30px;
	font-weight: 500;
}
.cards-title span {
/*	font-weight: 400;*/
/*    background-color: #aaa;*/
/*    padding: 5px;*/
/*    border-radius: 5px;*/
/*    color: #f5f7f6;*/
}
.cards-title button {

}



.card {
	box-sizing: border-box;
/*	width: 14.28%;*/
	width: 20%;
    margin-left: auto;
    left: auto;
    right: auto;
    float: left;
    padding: 0 10px;
    margin: 0 0 20px 0;
    /*box-shadow: inset 0 0 1px #000;*/
}
.card img {
	width: 100%;
	border-bottom: 1px solid #eaeaea;
	aspect-ratio: 1 / 1;
  object-fit: cover;
  height: -webkit-fill-available;
  object-position: top left;
}
.card-image {
  background-color: #000;
  display: flex;
}


.card-text {
	width: 100%;
	height: 64px;
/*	background-color: #fff;*/
	padding: 0px;
	box-sizing: border-box;
	overflow: hidden;
	line-height: 1.4em;
}
.card-score {
	border-radius: 4px;
	background-color: #01c466;
	width: 75px;
	height: 60px;
	float: left;
	text-align: center;
	margin-right: 15px;
}
.card-score h2 {
	line-height: 60px;
    font-size: 32px;
    font-weight: bold;
    padding: 0;
    margin: 0 2px 0 0;
    display: inline-block;
    color: #fff;
    position: relative;
}
.card-score span {
	font-size: 16px;
    line-height: 50px;
    padding-left: 1px;
    color: #fff;
    position: absolute;
}

.card-text p {
	margin-top: 9px;
	padding-left: 1px;
    font-weight: 500;
    font-size: 16px;
    color: #000;
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.card-text p span {
	font-size: 13px;
	color: #4185f2;
	font-weight: normal;
}
.card-box {
	position: relative;
	padding: 10px 10px 0px;
    background-color: #fff;
	/*box-shadow: 0 0 0 1px #eaeaea;*/
	/*box-shadow: 0 0 0 1px #eaeaea,4px 4px 5px -3px rgba(0,0,0,0.3);*/
	/*box-shadow: 0 0 0 1px #eaeaea,6px 6px 6px -6px #ddd;*/
	/*box-shadow: 6px 8px 6px -6px #ddd;*/
	/*box-shadow: 0 8px 6px -6px #eaeaea;*/
/*	box-shadow: 0 1px 1px 0 rgba(0,0,0,0.14), 0 2px 1px -1px rgba(0,0,0,0.12), 0 1px 3px 0 rgba(0,0,0,0.2);*/
}
.card.viewed .card-image img {
/*  opacity: 0.5;*/
}
.card.viewed .card-box {
  background-color: #eaeaea;
}


.sidebar .card {
	width: 100%;
	padding: 0;
}
.pricetag {
	position: absolute;
/*	top: -4px;*/
/*	left: -4px;*/
	bottom: 60px;
    right: 5px;
	background-color: #1ff11f;
	color: black;
	padding: 2px 6px;
	border-radius: 6px;
    font-size: larger;
}
.price {
  color: rgba(0, 0, 0, 0.6);
  background-color: #ffe68b;
  display: block;
  width: 80px;
  padding: 10px 5px 10px 0px;
  position: absolute;
  right: 20px;
  bottom: 55px;
  text-align: right;
  font-family: courier;
  border-radius: 2px;
  filter: drop-shadow(1px 1px 0.8px rgba(0, 0, 0, 0.2));
  transform: rotateZ(-5deg) scale(1);
  transition: all 0.5s ease;
  font-size: 20px;
  z-index: 100;
}


.pr0 { transform: rotateZ(-5deg) scale(1); }
.pr1 { transform: rotateZ(-4deg) scale(1); }
.pr2 { transform: rotateZ(-3deg) scale(1); }
.pr3 { transform: rotateZ(-2deg) scale(1); }
.pr4 { transform: rotateZ(-1deg) scale(1); }
.pr5 { transform: rotateZ(1deg) scale(1); }
.pr6 { transform: rotateZ(2deg) scale(1); }
.pr7 { transform: rotateZ(3deg) scale(1); }
.pr8 { transform: rotateZ(4deg) scale(1); }
.pr9 { transform: rotateZ(5deg) scale(1); }



body .product:nth-child(4n+2) .price {
/*  transform: rotateZ(2deg) scale(1);*/
}

body .product:nth-child(2n+3) .price {
/*  transform: rotateZ(6deg) scale(1);*/
}

.price::before {
  content: "";
  padding: 18px;
  position: absolute;
  background-color: #ffe68b;
  left: -6px;
  top: 1px;
  border-bottom-left-radius: 50%;
  border-top-left-radius: 50%;
  z-index: -1;
}

.price::after {
  content: "";
  padding: 18px;
  position: absolute;
  background-color: #ffe68b;
  right: -6px;
  top: 1px;
  border-bottom-right-radius: 50%;
  border-top-right-radius: 50%;
  z-index: -1;
}


.bookmark {
	background: url('/site/img/bookmark.png') 0 -20px no-repeat;
	position: absolute;
    width: 64px;
    height: 64px;
    right: -6px;
    top: 0px;
    z-index: 100;
}

@media (max-width: 1680px) {
.card {
	width: 25%;
}

}
@media (max-width: 1024px) {
.card {
  width: 33.33%;
}

}



@media (max-width: 800px) {
.card {
	width: 50%;
    padding: 0 10px;
    margin: 0 0 30px 0;
}

}

@media (max-width: 599px) {
.card {
/*	width: 50%;*/
    padding: 0 5px;
    margin: 0 0 10px 0;
/*    max-width: 417px;*/
/*    float: none;*/
/*	margin-left: auto;*/
/*	margin-right: auto;*/
}
.card-text p {
/*	font-size: 18px;*/
}
.cards-title button {
  width: 20%;
  height: 70px;
  font-size: 16px;
  padding: 5px;
}
.cards-title span {
/*  display: block;*/
/*  width: min-content;*/
/*  margin: 0 auto;*/
/*  margin-top: 10px;*/
}
.cards-title {
  margin: 10px;
}
.cards-title h1 {
  font-size: 24px;
}
}

