.custom-table__content *{
  line-height:20px;
  font-size:14px;
}
.custom-table__headings,
.custom-table__item-content{
  display:grid;
  grid-template-rows: auto;
}
.custom-table__content{
  overflow: hidden;
}
.custom-table__footer-description,
.custom-table__heading-item,
.custom-table__item{
  padding:15px;
  display: flex;
  justify-content: center;
  flex-direction:column;
}
.custom-table__footer-description,
.custom-table__footer-description *,
.custom-table__item *,
.custom-table__item{
  margin:0;
}
.custom-table__heading-item{
  font-weight:700;
}
.custom-table__heading-item{
  width:100%;
}

.custom-table__item-icon{
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-table__item-icon svg{
  width:20px;
  fill:#3E3C3D;
}
{#***************** Accordion **********************#}
.custom-table__accordion-icon{
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-table__accordion-icon svg{
  width:16px;
}
.custom-table__accordion-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:10px
}
.custom-table__accordion-title{
  margin:0;
}
.custom-table__accordion-icon{
  cursor: pointer;
}

.custom-table--accordion .custom-table__accordion-content {
  max-height:0;
  overflow: hidden;
  transition:  max-height .3s ease-in-out;
  transition-timing-function: ease-in-out;
}
.custom-table__accordion-icon svg {
  transition: transform 0.3s ease;
}

.custom-table--accordion-open .custom-table__accordion-icon svg {
  transform: rotate(-180deg);
}
.custom-table__links-group{
  display: flex;
  flex-direction:column;
  gap:15px;
  margin-top:25px;
}
.custom-table__link-icon{
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-table__link-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:8px;
  width: fit-content;
}
.custom-table__link-icon svg{
  width:16px;
}
.custom-table--hide-table .custom-table__content{
  display:none;
}
@media(max-width:992px){
  .custom-table__heading--first{
    display:none;
  }
}
@media(max-width:765px){
  .custom-table--horizontal-scroll .custom-table__content{
    overflow-x:auto;
  }
  .custom-table__footer-description,
  .custom-table__heading-item,
  .custom-table__item{
    padding: 8px;
  }
}