.venue-information .venue-address{
margin-bottom: 20px;
}

.venue-information .button-small{
margin-top: 20px;
}

.venue-information .venue-image{
width: 300px;
height: 300px;
object-fit: cover;
border-radius: 250px;
margin-bottom: 20px;
}

.venue-information .expenses-notice {
  padding: 15px 20px 12px 20px;
  margin-bottom: 10px;
  border: solid 3px var(--secondary-color);
  border-radius: 2px;
}

/* Style the buttons that are used to open and close the accordion panel */
.venue-information .venue-accordion {
  background-color: var(--primary-color-a15);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: solid;
  border-width: 1px;
  border-color: var(--primary-color);
  border-radius: 30px;
  outline: none;
  transition: 0.4s;
  margin-bottom: 5px;
  {# note: should be using gap instead, rewrite layout! #}
}

/* 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) */
.venue-information .active, .venue-accordion:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Style the accordion panel. Note: hidden by default */
.venue-information .venue-accordion-panel {
  padding: 10px 20px 20px 20px;
  background-color: white;
  display: none;
  overflow: hidden;
  font-size: 0.8em;
}

.venue-information .venue-accordion-panel h3 {
  margin: 10px 0;
}

.venue-information .venue-accordion:after {
/*  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

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