.home_body{
        margin-top: 60px;
}
.accordion-content{
  -webkit-transition: max-height 1s; 
  -moz-transition: max-height 1s; 
  -ms-transition: max-height 1s; 
  -o-transition: max-height 1s; 
  transition: max-height 1s;  

  overflow: hidden;
  max-height: 0;
}

.accordion-toggle{
  -webkit-transition: background .1s linear;   
  -moz-transition: background .1s linear;   
  -ms-transition: background .1s linear;   
  -o-transition: background .1s linear;   
  transition: background .1s linear;   
  border-radius: 0px;
  color: #fff;
  display: block;
  text-decoration: none;

  
}
.flex-1{
  flex:1
}
loading-modal .container {
 
  z-index: -1;
  transition: z-index 0.2s step-end;
 
  width: 100%;
  height: 100%;
  position: absolute;
 
  display: flex;
  justify-content: center;
  align-items: center;
 
  &.busy {
    z-index: 9999;
    transition: z-index 0.2s step-start;
    .backdrop {
      opacity: 0.3;
    }
  }
 
  .backdrop {
    opacity: 0.01;
    transition: opacity 0.2s;
  }
 
  ion-spinner {
    width: 60px;
    height: 60px;
  }
 
} 