 
.acc-new-container {
  max-width: 100%;
  width: 100%;
  background-color:var(--white);
  /*border-radius: 10px;
  padding:20px;
    box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  */
}

.acc-new {
  margin-bottom: 10px;
}

.acc-new-head {
  background-color: var(--primary-color);
  padding:15px 20px;
  font-size:18px;
  position: relative;
  cursor: pointer;
  line-height:normal;
  vertical-align:middle;
  font-family:var(--body-font);
  font-weight:normal;
  /*border-radius: 8px;*/
 
 }
 .acc-new-head p{
 	margin:0;
 }
 .acc-new-head::before,
 .acc-new-head::after {
  content: '';
  position: absolute;
  top: 50%;
  background-color: #fff;
  transition: all .3s;
 }

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

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

.acc-new-head p {
  color: #fff;
  font-weight: bold;
}

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


.acc-new-head {
  
  padding:10px 20px;
  font-size: 14px;
  font-weight:normal;
 
 
 }
 	  
}

