/*Accordion*/
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #ededed; /*lidt lysere end lysegrå*/
  color: #444;
  cursor: pointer;
  padding: 5px 10px 5px 20px;
  width: 100%;
  text-align: left;
  outline: none;
  transition: 0.4s;
/*  font-family: verdana, times new roman, arial, helvetica;*/
  font-size: 1em;
  border-style: solid;
  border-color: white; /* samme farve som global/content */
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: solid;
  border-left-style: none;
  border-width: 5px;
}

/* 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) */
.active, .accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.accordionpanel {
  padding: 0 10px 0 60px;
  background-color: white;
  display: none;
  overflow: hidden;
/*  font-family: verdana, times new roman, arial, helvetica; 
  font-size: 1em;*/
}

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: left;
  margin-left: 5px;
  margin-right: 15px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}