@media print{
  .noprint{
      display:none;
  }
}

.small{
  font-size: smaller;
}

.text-center{
  text-align: center;
}

.text-right{
  text-align: right;
}

.text-left{
  text-align: left !important;
}

.right{
  float: right;
}

.d-flex{
  display: flex;
}

.d-flex>div{
  flex: 1;
}

.justify-between{
  justify-content: space-between;
}

.justify-end{
  justify-content: flex-end;
}

.justify-center{
  justify-content: center;
}

.items-center{
  align-items: center;
}

.spacer{
  padding: 1rem;
}

.bordered{
  border: 2px solid;
}

.elevation-z1{
  box-shadow: 0 3px 1px -2px #0003, 0 2px 2px #00000024, 0 1px 5px #0000001f;
}

.table{
  border-collapse: collapse;
  border-spacing: 0;
}

.table-responsive{
  position: relative;
  overflow: auto;
  white-space: nowrap;
}

.table-responsive .fixed-col{
  position: -webkit-sticky;
  position: sticky;
}

.table-responsive tr>th:first-child.fixed-col,
.table-responsive tr>td:first-child.fixed-col{
  left: 0;
}

.table-responsive .striped>tbody>tr:nth-child(odd) td.fixed-col{
  background-color: #ffffff;
}
.table-responsive .striped>tbody>tr:nth-child(even) td.fixed-col{
  background-color: #f2f2f2;
}
.table-responsive .striped>tfoot td.fixed-col{
  background-color: #ffffff;
}

table{
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

table.striped>thead{
  background-color: #f2f2f2;
}
table.striped>tbody>tr:nth-child(even){
  background-color: #f2f2f2;
}

.accordion {
  margin: 90px auto;
  color: black;
  background-color: white;
}

.accordion .container {
  position: relative;
  margin: 10px 10px;
  padding: 0;
}

.accordion .label {
  position: relative;
  padding: 10px 0;
  font-size: 25px;
  color: black;
  cursor: pointer;
}

.accordion .label::before {
  content: '+';
  color: black;
  position: absolute;
  top: 50%;
  right: -5px;
  font-size: 30px;
  transform: translateY(-50%);
}

.accordion .content {
  position: relative;
  background: white;
  height: 0;
  font-size: 20px;
  text-align: justify;
  overflow: hidden;
  transition: 0.5s;
}

.accordion hr {
  width: 100;
  margin-left: 0;
  border: 1px solid grey;
}

.accordion .container.active .content {
  height: auto;
}

.accordion .container.active .label::before {
  content: '-';
  font-size: 30px;
}
