<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.accordion
{
	/*width: 100%;
  border-radius: 5px;
  overflow: hidden;
  margin: auto;*/
	margin: 0 0 20px 0;
	padding: 0;
	list-style-type: none;
	background: #f0f0f0;
}

.accordion .item .heading
{
	cursor: pointer;
	border: 1px solid #DDD;
	padding: 10px 30px 10px 10px;
	background: #FFF;
	color: #0b8593;
	line-height: normal;
	position: relative; 
	
	
	
	/*height: 50px;
	line-height: 50px;
	font-size: 17px;
	cursor: pointer;
	color: #fff;
	padding-left: 15px;
	background: #ee6363 url('../../images/mzain/arrow.png') no-repeat;
	background-position: right 20px top -95px;
	border-bottom: 1px solid #ec8484;
	box-sizing: border-box;*/
}

.accordion .item.open .heading, .accordion .item:last-child .heading
{
	border: 0;
	border-bottom:1px solid #DDD;
	
}

.accordion .item.open .heading { background-position: right 20px top -5px; }

.accordion .item .content
{
	/*display: none;
  padding: 15px;
  background: #fff;
  font-size: 14px;*/
  
	display: none;
	/*border: 1px solid #DDD;*/
	border-top: 0;
	padding: 20px;
	background: #FFF;
}</pre></body></html>