/*body {
  font-size: 62.5%;
  background: #dadada;
  font-family: 'Open Sans', sans-serif;
  line-height: 2;
  padding: 5em;
}*/
.nmbr {
    display: block;
    float: left;
    color: #000;
    width: 16px;
    height: 20px;
	font-weight:bold;
    text-align: center;
    padding: 7px 8px 7px 10px;
    border-radius: 25px;
    border: 1px solid #444;
    margin: -7px 10px 0 -7px;
}
.accordion {
  font-size: 1rem;
  width: 100%;
  margin: 0 auto;
  border-radius: 5px;
}

.accordion-header,
.accordion-body {
  background: white;
}

.accordion-header {
  padding: 1em 1em;
  background:#caaa71;
  color: #000;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  transition: all .3s;
  border-radius: 30px;
  font-family:"Segoe UI","Source Sans Pro",Calibri,Candara,Arial,sans-serif;
}

.accordion__item {
    /*border-bottom: 1px solid #3a4ba4;*/
	margin: 10px 0 0;
}

.accordion__item .accordion__item {
  /*border-bottom: 1px solid rgba(0, 0, 0, 0.08);*/
}

.accordion-header:hover {
  background: #ab251c;
  position: relative;
  color:#fff;
  z-index: 5;
}
.accordion-header:hover .nmbr{color:#fff; border: 1px solid #fff;}

.accordion-body {
  background: #fcfcfc;
  color: #353535;
  display: none;
}

.accordion-body__contents {
  padding: 1.5em 1.5em;
  font-size: 16px;
  font-family:"Segoe UI","Source Sans Pro",Calibri,Candara,Arial,sans-serif;
}

.accordion__item.active:last-child .accordion-header {
  border-radius: none;
}

.accordion:first-child > .accordion__item > .accordion-header {
  border-bottom: 1px solid transparent;
}

.accordion__item > .accordion-header:after {
  content: "\f3d0";
  font-family: IonIcons;
  font-size: 1.2em;
  float: right;
  position: relative;
  top: -2px;
  transition: .3s all;
  transform: rotate(0deg);
}

.accordion__item.active > .accordion-header:after {
  transform: rotate(-180deg);
}

.accordion__item.active .accordion-header {
  background: #caaa71;
}

.accordion__item .accordion__item .accordion-header {
  background: #caaa71;
  color: #000;
}

/*TABLE*/
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

table {
    background-color: transparent;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
    padding: 8px;
    line-height: 1.42857;
    vertical-align: top;
    border: 1px solid #000;
}
.table tr:nth-child(even) {background: #FFF!important;}
.table tr:nth-child(odd) {background: #F2F2F2!important;}

.table b, strong {
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        overflow-x: auto;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
        -webkit-overflow-scrolling: touch;
    }

        .table-responsive > .table {
            margin-bottom: 0;
            width: 1240px;
        }
}
/*TABLE*/

@media screen and (max-width: 1000px) {
  body {
    /*padding: 1em;*/
  }
  
  .accordion {
    width: 100%;
  }
}