.accordion {
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #ccc;
  color:#242943 !important;
  border-color:#242943;
  box-shadow: inset 0 0 0 2px #242943;
}


.tablebutton{
line-height:0.5em;
height:1.5em;
padding: 0 1em 0 1em;}

button:hover{
color:#242943;
border-color:#242943;
}

.accordion:after {
  content: '\002B';
  font-weight: bold;
  float: right;
  margin-left: 5px;
}


.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.mobileshow{
display:none;
}


@media screen and (max-width: 736px) {
.mobileshow{
display:inline;
}
}
