.nested_list_root{
    background: #CFD8DC;
    padding: 24px 96px 24px 48px;
    position : absolute;
    bottom : 0px;
    top : 0px;
    left : 0px;
    right : 0px;
}

.nested_list_group_background{
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 24px;
    padding-right: 24px;

    margin-top: 0px;
    margin-bottom: 1px;
    margin-left: 0px;
    margin-right: 0px;

    transition: all 0.2s ease-in-out;
}

.nested_list_group_background_expanded{
    background: rgba(0, 0, 0, 0.05);

    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;

    margin-top: 24px;
    margin-bottom: 24px;
    margin-left: 0px;
    margin-right: 0px;
    transition: all 0.2s ease-in-out;
}

.nested_list_group_header {
    background : #FFFF;
    border-radius: 2px;
    box-shadow : 2px 2px 1px rgba(0, 0, 0, .14);
    padding-left: 24px;
    padding-right: 12px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.nested_list_group_header_expanded{
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;

    z-index: 3;

    /*margin-left: -12px;
    margin-right: -12px;*/
    margin-bottom: 12px;

    transition: all 0.2s ease-in-out;
}

.nested_list_group_header_hovered{
    background: #EEE;
    transition: all 0.2s ease-in-out;
}

.nested_list_item {
    margin-top: 1px;
    margin-bottom: 0px;
    margin-right: 0px;
    margin-left: 0px;
    transition: all 0.2s ease-in-out;
}

.nested_list_item_expanded {
    margin-top: 12px;
    margin-bottom: 12px;
    /*margin-right: -12px;
    margin-left: -12px;*/

    transition: all 0.2s ease-in-out;
}


.nested_list_item_header{
    background: #FFF;
    height: 48px;

    padding-left: 24px;
    padding-right: 12px;

    border-radius: 2px;
    box-shadow : 2px 2px 1px rgba(0, 0, 0, .14);

    cursor: pointer;

    transition: all 0.2s ease-in-out;
}

.nested_list_item_header_expanded{
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 48px;

    z-index: 2;

}

.nested_list_item_header_hovered{
    background: #EEE;
    transition: all 0.2s ease-in-out;
}

.nested_list_item_content{
    background : #FFFF;
    border-radius: 2px;
    box-shadow : 2px 2px 1px rgba(0, 0, 0, .14);
    padding-left: 24px;
    padding-right: 12px;

    margin-top: 1px;

    /*height: 120px;*/
}

.nested_list_item_content_separator{
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -24px;
    margin-right: -12px;

    border-style: solid;
    border-color: #DDD;
    border-width: 1px 0 0 0;
}
