.accordion__item {
      margin-bottom: 12px;
	  text-align:left;	
}
#accordion .accordion__item:last-child{margin-bottom:0;}	
.accordion__header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 24px;
      color: #000;
      background-color: #F9E2BE;
      border-top-left-radius:2px;
      border-top-right-radius:2px;
      cursor: pointer;
      transition: background-color 0.2s ease-out;
}

.accordion__header::after {
      flex-shrink: 0;
      width: 16px;
      height: 10px;
      margin-left: auto;
     background-image: url("data:image/svg+xml;charset=UTF-8, %3csvg width='17' height='11' viewBox='0 0 17 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M15 2L8.5 8.5L2 2' stroke='%23463524' stroke-width='3'/%3e%3c/svg%3e ");
      background-repeat: no-repeat;
	  background-position:center;
      content: "";
      transition: transform 0.2s ease-out;
}

.accordion__item_show .accordion__header::after, .accordion__item_slidedown .accordion__header::after {transform: rotate(-180deg);}

.accordion__header:hover{background-color:#A57C52;color:#fff;}
.accordion__header:hover::after{
	     background-image: url("data:image/svg+xml;charset=UTF-8, %3csvg width='17' height='11' viewBox='0 0 17 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M15 2L8.5 8.5L2 2' stroke='white' stroke-width='3'/%3e%3c/svg%3e ");	
}

.accordion__item:not(.accordion__item_show) .accordion__header {
    border-bottom-right-radius:2px;
    border-bottom-left-radius:2px;
}

.accordion__content{padding:24px 0 20px 0;}
#accordion .accordion__item:last-child .accordion__content{padding-bottom:0;}
.accordion__content p, .accordion__content ul, .accordion__content ol{margin-bottom:16px;}
.accordion__content ul li{
	list-style:none;
	padding:0 0 0 24px;
	margin:6px 0;
	position:relative;
}
.accordion__content ul li:before{
	content:'';
	display:inline-block;
	background:url("../images/point.svg") no-repeat center;
	width:4px;height:4px;
	position:absolute;left:0;top:10px;
}
.accordion__content table{width:100%;border-collapse: collapse;max-width: 100%;white-space: nowrap;}
.accordion__content table td{text-align:center;}
.accordion__content table thead{font-family:'Montserrat-Bold', 'Arial', Sans-Serif;color:#A57C52;}
.accordion__content table thead td{border-bottom:2px solid #A57C52;padding:20px 0;}
.accordion__content table tbody td{padding:8px 0;border-bottom:1px solid #F9E2BE;}
.accordion__content table tbody tr td:first-child{
	text-transform:uppercase;
	font:16px/24px 'Montserrat-Medium', 'Arial', Sans-Serif;
	letter-spacing:2px;
}
.accordion__content table thead tr td:first-child, .accordion__content table tbody tr td:first-child{text-align:left;}
.accordion__item:not(.accordion__item_show) .accordion__body {display: none;}

@media (max-width: 640px) {
	.accordion__content table{overflow-x:scroll;width:100%;max-width:100%;display:inline-block;}
	.accordion__content table td{
		overflow-x: hidden;
		min-width: 160px;
		text-overflow: ellipsis;
		display:inline-block;
	}
	.accordion__content table tbody td{padding:12px 0;}
}