﻿
/*----- rjAccordion -----*/
    


.accordion, .accordion * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.accordion p { font-size:20px; line-height:20px; text-align:justify; direction:rtl; }
.accordion {
  overflow: hidden;
  color: #fff;
  width: 100%;
}

.accordion-section-header {
  width: 100%;
  padding: 5px;
  display: inline-block;
  border-bottom: 1px solid #156c6e;
  background: #329a9b;
  transition: all linear 0.15s;
  font-size: 22px;
  color: #fff;
}

.accordion-section-header.active, .accordion-section-header:hover {
  background: #71a016;
  text-decoration: none;
}

.accordion-section:last-child .accordion-section-header { border-bottom: none; }

.accordion-section-content {
  display: none;
}


