#welcomecrs {
  padding: 30px;
  text-align: center; }
  #welcomecrs span {
    position: absolute;
    right: 5px;
    color: red;
    font-size: 1.5em; }
    #welcomecrs span:hover {
      color: darkgreen; }

h2 {
  text-align: center; }

.accordion {
  background-color: dodgerblue;
  color: white;
  cursor: pointer;
  padding: 10px 25px;
  border: none;
  border: 1px solid #666;
  width: 100%;
  height: 50px;
  max-width: 1200px;
  text-align: right;
  outline: none;
  font-size: 1em;
  font-weight: bold;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  display: -ms-grid;
  display: grid;
  text-align: left; }
  .accordion meter {
    width: 95%;
    height: 10px; }

.active,
.accordion:hover {
  background-color: #ccc; }

.panel {
  padding: 0 18px;
  display: none; }
  .panel ul {
    padding-left: 30px; }
  .panel button {
    padding: 5px 10px;
    cursor: pointer;
    display: inline-block;
    margin: 5px 10px 0 0; }
  .panel p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 5px; }
    .panel p span {
      color: red;
      font-weight: bold;
      margin-right: 5px; }
    .panel p a {
      text-decoration: none; }
    .panel p input {
      margin-left: 5px;
      cursor: pointer; }

nav {
  padding: 10px;
  text-align: center; }

section {
  overflow-x: scroll; }
  section table {
    min-width: 100%; }
    section table tr {
      background: #ddd; }
      section table tr:nth-child(even) {
        background: #eee; }
      section table tr th {
        background: dodgerblue;
        color: white; }
      section table tr td {
        min-width: 100%;
        padding: 5px; }
        section table tr td:first-child {
          cursor: pointer; }
      section table tr td.csrPointer:hover {
        cursor: pointer; }

.accordion:after {
  content: '\02795';
  /* Unicode character for "plus" sign (+) */
  position: absolute;
  right: 60px; }

.active:after {
  content: "\2796";
  /* Unicode character for "minus" sign (-) */ }

@media screen and (max-width: 1200px) {
  .accordion:after {
    right: 30px; }
  .panel {
    font-size: 14px; } }

@media screen and (max-width: 700px) {
  .accordion:after {
    right: 20px; }
  .panel {
    font-size: 14px; } }

@media screen and (max-width: 500px) {
  .accordion:after {
    right: 10px; }
  .panel {
    font-size: 12px; } }
