 
.acc-container {
  max-width: 768px;
  width: 100%;
  margin:0 auto;
  /*background-color:var(--white);
  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1); */ 
}

.acc {
  margin-bottom: 10px;
}

.acc-head {
  /*background-color: var(--primary-color);*/
  padding:15px 70px 15px 0;
  font-size: 20px;
  font-weight:var(--font-medium);
  position: relative;
  cursor: pointer;
  line-height:normal;
  vertical-align:middle;
  /*border-radius: 8px;*/
  border-bottom:1px solid var(--black);
 
 }
 .acc-head p{
 	margin:0;
	
 }
 .acc-head::before,
 .acc-head::after {
  content: '';
  position: absolute;  
  top: 50%;
  background-color:var(--secondary-color)!important;
  transition: all .3s;
 }

 .acc-head::before {
  right: 8px;
  width: 3px;
  height: 20px;
  margin-top: -10px;
}

.acc-head::after {
  right: 0;
  width: 20px;
  height: 3px;
  margin-top: -2px;
}

.acc-head p {
  color: #000;
  font-weight:var(--font-meidium);
}

.acc-content {
  padding: 25px;
  display: none;
}
.acc-content  p:last-child{
  margin:0;
}
          
.acc-head.active::before {
    transform: rotate(90deg);
	 
	
}
.acc-head.active p{
	/*background-color:var(--secondary-color);*/
	color: var(--secondary-color)!important;
}
/************************************* 480px *************************************/
@media only screen and (max-width: 640px) {


.acc-head {
  
  
  font-size: 16px;
  font-weight:normal;
 
 
 }
 	  
}

