@charset "utf-8";

.accordion_title {
  display: flex;
  position: relative;
}

.accordion_title::before {
  content: '';
  display: block;
  width: 20px;
  height: 4px;
  background-color: #fff!important;
  position: absolute;
  right: 0;
  transform: rotate(90deg);
  transition: .5s;
	z-index: 1;
}

.accordion_title::after {
  content: '';
  display: block;
  width: 20px;
  height: 4px;
  background-color: #fff;
  position: absolute;
  right: 0;

  transform: rotate(0deg);
}

.accordion_title.active::before {
  transform: rotate(0deg);
}

.accordion_title:hover {
  cursor: pointer;
}

.accordion_content {
  display: block;
  margin: 0;
  height: 0;
  overflow: hidden;

  transition: .5s;
}

.accordion_content.show {
  margin-bottom: 20px;
}

/*.accordion_content:last-of-type {
  margin-bottom: 40px;
}*/
