body{
    font-family: sans-serif;
}
.header{
    background-color: black;
    min-height:15px;
}

.anchorMenu{
    color: #fff;
    display:inline-block;
    padding:5px;
    text-decoration:none;
}

/* sidebar start */
.sidebar{
    flex-basis:20%;
}

.sidebar a{
    color: #000;
    display:block;
    padding:5px;
    border-bottom:1px solid #000;
    text-decoration:none;
}

.sidebarMenuHeading{
    padding:5px;
    font-weight:bold;
    font-size:18px;
    border-bottom:1px solid #000;
}

/* sidebar end*/

.content{
    flex-basis:80%;
}

.profileHeading
{
    /*text-align: center;*/
}

.padding-20{
    padding:20px;
}

.flex-container {
  display: flex;
  /*align-items: stretch;
  background-color: DodgerBlue;*/
}

.flex-container > div {
  background-color: #f1f1f1;
  margin: 10px;
  padding: 20px;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #000;
  color: #fff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #fff;
  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: #fff;
  color: #000;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

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

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

/*Ids */
#profile-img{
    width:100%;
}