.accordion-sign {
  float: right;
  margin-right: 10px;
  margin-top:15px
}
#accordion {
  width: 100%;
  margin-top:50px;
}
h2.accordion {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently                                  not supported by any browser */

  line-height: 55px;
  background-color: #f7f7f7;
  color: #444;
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: 1px solid #eee;
  outline: none;
  transition: 0.4s;
  -webkit-border-radius:5px;
  -moz-border-radius:5px;
  border-radius:5px;
  /*font-weight: bold;*/
  /*font-size: 1.2em;*/
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-size: 16px;
  margin-bottom:2px;
  margin-top: 4px;
  padding-left: 20px;
  height: 60px;
}

h2.accordion span {
  vertical-align: middle;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
h2.accordion.active, h2.accordion:hover {
  background-color: #fefefe;
}

/* Style the accordion panel. Note: hidden by default */
div.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
}

/* The "show" class is added to the accordion panel when the user clicks on one of the buttons. This will show the panel content */
div.panel.show {
  display: block;
}