/* // TERMINE // */

.faq-items {
  margin-bottom: 30px;
}

.faq-item {
  //border-bottom: 1px dotted rgb(255, 255, 0);
  padding: 15px 18px;
  position: relative;
  cursor: pointer;
  display: block;
}

.selected, .faq-item:hover {
  background-color: #555;
  color: yellow;
}

.faq-item-q {
  font-weight: 400;
}

.faq-item-a {
  display: none;
  padding: 0 30px 0 0;
}

.faq-item-q p {
  margin-bottom: 0;
	font-size: 1.2em;
	color: #fff;
	letter-spacing: 2px;
	//font-variant:small-caps;
	text-align: left;
	margin: 10px 0px 10px 0px;
}

.xxfaq-item-a p {
  font-size: 16px;
}

.faq-item::after {
  transition: 0.2s linear transform;
  content: ' ';
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C!--%20License%3A%20MIT.%20Made%20by%20halfmage%3A%20https%3A%2F%2Fgithub.com%2Fhalfmage%2Fmajesticons%20--%3E%0A%3Csvg%20width%3D%22800px%22%20height%3D%22800px%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%3E%3Cpath%20stroke%3D%22yellow%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%20d%3D%22M5%2012h7m7%200h-7m0%200V5m0%207v7%22%2F%3E%3C%2Fsvg%3E);
  background-size: cover;
  background-position: center center;
}

.faq-item.selected::after {
  transform: translateY(-50%) rotate(45deg);
}

/* m */
@media (max-width:768px) {
  .faq-item.active .faq-item-q p {
  font-weight:bold;
  }

  .faq-item-a {
    /*     padding-right:0; */
  }

  .faq-item::after {
    right: 10px;
    z-index: 1;
    //width: 10px;
    //height: 10px;
  }

  .faq-item {
    margin: 0px 0px;
    /*     padding:15px 30px 15px 40px; */
    text-align: left;
  }
}

.faq-item .faq-item-q {
  flex-basis: 270px;
  flex-shrink: 0;
  border: none;
  padding: 0 30px 0 0;
}

.faq-item .faq-item-a {
  border-bottom: none;
  padding: 15px 30px 0 0;
  //font-weight: 300;
  //font-size: 16px;
  display: none;
}

.faq-item .faq-item-q p {
  //font-weight: 400;
  //font-size: 18px;
}

.faq-item .faq-item-a p {
  //font-weight: 300;
  //font-size: 16px;
}

.faq-item:hover .faq-item-q {
  border: none;
}


/* // TERMINE - ENDE // */