/*Basic reset*/
* {margin: 0; padding: 0;}

#accordian {
    background: #FFFFFF;
    color: white;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #E1E1E1;
    margin: 10px 5px;
    width: calc(100% - 12px);
    position: relative;
}
/*heading styles*/
#accordian h3 {
    line-height: 34px;
    padding: 15px 10px 15px 20px;
    cursor: pointer;
    background: #F0F0F0; 
    font-family: Arial, Helvetica, sans-serif;
    color: #6B6B6B;
    position:relative;
    font-size: 18px;
    height: auto;
    width: calc(100% - 30px);
    font-weight: normal;
    transition: all 0.15s;

}
#accordian h3.activo {
    line-height: 34px;
    padding: 15px 10px 15px 20px;
    cursor: pointer;
    background: #F0F0F0; 
    font-family: Arial, Helvetica, sans-serif;
    color: #FE2D42;
    position:relative;
    font-size: 18px;
    height: auto;
    width: calc(100% - 30px);
    font-weight: bold;
    transition: all 0.15s;

}
/*heading hover effect*/
#accordian h3:hover {
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}
/*iconfont styles*/
#accordian h3 span {
    font-size: 16px;
    margin-right: 10px;
}
/*list items*/
#accordian li {
    list-style-type: none;
}
/*links*/
#accordian ul ul li {
    background-image: url(http://localhost/xpertpay/mobile/css/../images/bullet_submenu.png);
    background-repeat: no-repeat;
    background-position: 20px center;
    min-height: 46px;
    overflow: hidden;
    line-height: 46px;
    position: relative;
    border-bottom: 1px #e8e8e8 solid;
}

#accordian ul ul li a {
    line-height: 46px;
    position: relative;
    color: #6B6B6B;
    padding-left: 32px;
    text-decoration: none;
    font-size: 16px;
    height: auto;
    width: calc(100% - 46px);

    /*color: white;
    text-decoration: none;
    font-size: 11px;
    line-height: 27px;
    display: block;
    padding: 0 15px;*/
    /*transition for smooth hover animation*/
    transition: all 0.15s;
}
/*hover effect on links*/
/*#accordian ul ul li a:hover {
    background: #003545;
    border-left: 5px solid lightgreen;
}*/
/*Lets hide the non active LIs by default*/
#accordian ul ul {
    display: none;
}
#accordian li.active ul {
    display: block;
}  