
/*maxilladent gwarantujemy - wypunktowanie*/
.checklist {
  padding-left: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 60px;
  margin-bottom: 30px;
  list-style-type: none;
  text-align: left;

}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #1f8b4c; /* zielony jak zaufanie 😉 */
  font-weight: bold;
  font-size: 40px;
}

@media screen and (min-width: 0px) and (max-width: 779px) {
.checklist li::before {  top: 0.3em;}
}




/*rozwijane FAQ*/

.toggle-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.toggle-content.open {
  max-height: 5000px; /* wystarczajaco duzo, dopasuj jesli potrzeba */
}

.toggle-trigger {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.toggle-trigger::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s;
}

.toggle-trigger.open::after {
  content: "–";
}







/*karuzela*/


.reviews-carousel {
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
  background: #f5f5f5;
  padding: 20px;
  background: rgba(235, 235, 233, 0.90);
}

.review {
  background: rgba(235, 235, 233, 0.90);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 10px;
  min-height: 300px; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.username {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 5px;
}

.stars {
  color: gold;
  margin-bottom: 5px;
  font-size: 25px;
}

.date {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 10px;
}

.description-wrapper {
  max-height: 130px;
  min-height: 130px;
  overflow: hidden;
  transition: max-height 0.5s ease;
  position: relative;
  flex-grow: 1;
  line-height: 1.5em;
}

.description-wrapper.expanded {
  max-height: 1000px;
}

.toggle-button {
  color: #007BFF;
  cursor: pointer;
  font-size: 0.9em;
  margin-top: 10px;
  align-self: flex-start;
}
	

.review-header			{display: flex;}
.img-carousel 			{width: 40px; height: 40px; margin: 0 5% 0 auto;}




/* efekt zoom*/
.ken-burns {
  overflow: hidden;
  position: relative;
  width: 100%;
    height: 400px;
  min-height: 400px;
  display: block;
   /*border-radius: 20px;*/
}

@media screen and (min-width: 780px) and (max-width: 5000px) {
.ken-burns {height: auto;}
}


.ken-burns img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  animation: kenburns 10s ease-in-out infinite alternate;
}


/*
@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.1) translate(-2%, -2%);
  }
}
*/


@keyframes kenburns {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.15);
  }
}

	
	
	
/*wjezdzajace okienka uslugi*/
#wrapper #content  #panel_uslugi .promo_cont {
    opacity: 0; /* Ustawiamy opacity na 0, aby elementy byly niewidoczne na poczatku */
    transform: translateX(-70%); /* Ustawienie pozycji poczatkowej z lewej */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Efekty przejscia */
}

/* Aby dodac efekt do drugiego 'td' */
#wrapper #content  #panel_uslugi .promo_cont:nth-of-type(even) {
    transform: translateX(70%); /* Ustawienie pozycji poczatkowej z prawej dla parzystych 'td' */

}

#wrapper #content  #panel_uslugi .promo_cont.show {
    opacity: 1; /* Po dodaniu klasy 'show' przez skrypt js, element bedzie widoczny */
    transform: translateX(0); /* Elementy przesuwaja sie na swoja pozycje */
}

/*-----------------*/


	