.accordionjs {
	position: relative;
	margin-top: 10px;
	padding: 0;
	list-style: none
}

.accordionjs .acc_section {
	border: 1px solid #ccc;
	position: relative;
	z-index: 10;
	margin-top: -1px;
	overflow: hidden
}

.accordionjs .acc_section .acc_head {
	position: relative;
	background: #fff;
	padding: 10px;
	display: block;
	cursor: pointer
}

.accordionjs .acc_section .acc_head h3 {
	line-height: 1;
	margin: 5px 0
}

.accordionjs .acc_section .acc_content {
	padding: 10px
}

.accordionjs .acc_section,
.accordionjs .acc_section .acc_head {
	border-radius: 4px;
}

.accordionjs .acc_section,
.accordionjs .acc_section .acc_content {
	border-radius: 4px;
}

.accordionjs .acc_section.acc_active>.acc_content {
	display: block
}

.accordionjs .acc_section.acc_active>.acc_head {
	background: #f9f9f9;
	border-bottom: 1px solid #ccc
}

/* Peida kõik olemasolevad SVG ikoonid */
.acc_button .icon,
.acc_button .icon-active {
  display: none !important;
}

/* Chevron acc_button peale */
.acc_button::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23232323' d='M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-153.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
  transform-origin: center center;
}

/* Rotatsioon kui aktiivne */
.acc_active .acc_button::after {
  transform: rotate(180deg);
}