body {
    background-image: url("/images/bg_dark2.jpg");
    color: #fff;
}

.logo {
    height: 64px;
}

.bg-green {
    background-color: #28a745;
}

.bg-gray {
    background-color: #ddd;
}

.h-5 {
    height: 5px;
}

.text-black {
    color: #272727;
}

.text-green {
    color: #28a745;
}

.border-bottom-radius {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  /* background-color: #000; */
  color: #fff;
  cursor: pointer;
  padding: 5px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* 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: #000;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: #282828;
  color:#fff;
  display: none;
  overflow: hidden;
  margin-left: 20px;
}
