/* Colors */
/* Main page and headers: R10,3: #3789A6 
Navbar + Footer: R5,4: #49736F
Section (App module+Business module) + Section (chapters): R4,3: #6DA6A6
Chapters (small boxes): R10,4: #96C6D9
*/

/*Container account header*/
/*color=dark*/
.account_section_css {
  display: flex;
  background: #fff;
  }
  
  .account_section_css .container {
  display: flex;
  background: #fff;
  }
  
  .account_section_css .container {
    display: flex;
    align-items: start;
    justify-content: space-between;
  }
      /*color=dark*/
  .account_section_css .container .box {
    flex: 1;
    background: #fff;
    color: #fff;
    border-radius: 2px;
    margin: 20px 10px;
    padding: 15px 20px;
    text-align:center;
  }
  
  .account_section_css .container  .box:nth-of-type(1) {
    flex-grow:1;
    background: #fff;
    color: #fff;
    border-radius: 10px;
    margin: 0px 0px;
    padding: 0px 0px;
    text-align:left;
  }
  
  .account_section_css .container  .box:nth-of-type(2) {
    flex-grow:2;
  background: #8bbbd9;
  color: #fff;
  border-radius: 10px;
  margin: 20px 10px;
  padding: 15px 20px;
  text-align:center;
  }
  
  .account_section_css .container  .box:nth-of-type(3) {
    flex-grow:1;
  background: #fff;
  color: #fff;
  border-radius: 10px;
  margin: 0px 0px;
  padding: 0px 0px;
  text-align:left;
  }
