.list-view-wrapper{
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	position: absolute;
	width: 100%;
}

.list-view-container{
    position: relative;
    .list-quickscroll{
        ul {
            list-style: none;
            margin: 0;
            padding: 0;
            position: absolute;
            top:0;
            right: 10px;
            z-index: 120;
            padding-top: 10px;
            padding-bottom: 10px;
            li a{
                font-size: 0.7em;
                vertical-align: baseline;
            }
        }

    }
}

.list-view-group-container {
	margin: 0;
	min-height: 1px;
	overflow: hidden;
	padding: 30px 0 0 0;
	position: relative;
}
.list-view-group-header, .list-view-fake-header {
	background: #f4f6f7;
	color: #232830;
	font: normal 15px/18px Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 5px 0 5px 15px;
	position: absolute;
}
.list-view-group-header {
	bottom: auto;
	min-height: 1px;
	top: 0;
	width: 100%;
}
.list-view-fake-header {
	width: 100%;
	z-index: 100;
}

.list-view-fake-header.list-view-hidden {
	visibility: hidden;
}
.list-view-group-container.list-view-animated .list-view-group-header {
	bottom: 0;
	top: auto;
}


input.list-view-search{
    font-size: 15px;
    color: #232830;
}

.list-view {
    ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    li{
        white-space: nowrap;
        cursor: pointer;
        &:hover {
            background-color: $color-complete-lighter;
        }
        p{
            line-height: 21.6px;
        }
    }
    
}


.list-view.boreded li + li {
	border-top: 1px solid #CCC;
}

[data-ios="true"] .list-view-group-header,
[data-ios="true"] .list-view-fake-header {
	width: 288px; /*scrollbars aren't visible in iOS devices, so make the headers wider */
}