.listview {
    position: relative;

    &:not(.lv-lg):not(.lv-message) {
        .lv-item {
            padding: 12px 20px;
        }
    }

    &.lv-lg {
        .lv-item {
            @media (min-width: $screen-xs-min) {
                padding: 17px 35px 17px 25px;
            }

            @media (max-width: $screen-xs-max) {
                padding: 17px 35px 17px 20px;
            }

            &:hover {
                background-color: #FFFFDB;
            }
        }
    }

    .lv-item {
        position: relative;
        display: block;
        @include transition(background-color);
        @include transition-duration(300ms);

        .lv-small {
            font-size: 12px;
            color: #A9A9A9;
            @include text-overflow();
            display: block;
            width: 100%;
        }

        .checkbox,
        &.media {
            margin: 0;
        }

        .lv-actions {
            position: absolute;
            right: 15px;
            top: 10px;

            @media (max-width: $screen-xs-min) {
                right: 7px;
            }
        }
    }

    .lv-title {
        @include text-overflow();
        display: block;
    }

    a.lv-item:hover {
        background: #ECF9FF;
    }

    &.lv-bordered {
        .lv-item {
            &:not(:last-child) {
                border-bottom: 1px solid #f0f0f0;
            }
        }
    }

    .lv-attrs {
        list-style: none;
        padding: 0;
        margin: 5px 0 0 0;

        @mixin listview-attrs($b-color: lighten($text-color, 50%), $bg: #fff, $color: $text-color) {
            border: 1px solid $b-color;
            background: $bg;
            color: $color;
        }

        & > li {
            display: inline-block;
            padding: 2px 10px 3px;
            font-size: 12px;
            margin-top: 5px;
            margin-right: 2px;

            &:not(.info):not(.primary):not(.warning):not(.danger) {
                @include listview-attrs();
            }

            &.info { @include listview-attrs($m-cyan, $m-cyan, #fff); }
            &.primary { @include listview-attrs($m-blue, $m-blue, #fff); }
            &.warning { @include listview-attrs($m-orange, $m-orange, #fff); }
            &.danger { @include listview-attrs($m-red, $m-red, #fff); }

            & > a {
                display: block;
            }
        }
    }

    &:not(.lv-message) {
        .lv-title {
            color: #000;
        }
    }
}

[class*="lv-img"] {
    border-radius: 50%;
}

.lv-img {
    width: 48px;
    height: 48px;
}

.lv-img-sm {
    width: 35px;
    height: 35px;
}

.lv-header {
    text-align: center;
    padding: 15px 10px 13px;
    line-height: 100%;
    text-transform: uppercase;
    border-bottom: 1px solid #F0F0F0;
    font-weight: 500;
    color: #4C4C4C;
    margin-bottom: 10px;

    .actions {
        position: absolute;
        top: 6px;
        right: 8px;
        z-index: 10;
    }
}

.lvh-search {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 4;
    background: #fff;
    @include animated('fadeIn', 300ms);

    &:before {
        content: "\f1c3";
        font-family: 'Material-Design-Iconic-Font';
        position: absolute;
        left: 24px;
        top: 17px;
        font-size: 22px;
    }
}

.lvhs-input {
    border: 0;
    padding: 0 26px 0 55px;
    height: 63px;
    font-size: 18px;
    width: 100%;
    font-weight: 100;
    background: #fff;
    border-bottom: 1px solid #EEE;
}

.lvh-search-close {
    font-style: normal;
    position: absolute;
    top: 23px;
    right: 22px;
    font-size: 17px;
    width: 18px;
    height: 18px;
    background-color: $m-light-gray;
    line-height: 100%;
    color: #fff;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;

    &:hover {
        background: #333;
    }
}

.lv-header-alt {
    position: relative;
    background: #f8f8f8;
    padding: 15px;

    .lv-actions {
        z-index: 3;
        float: right;
        margin-top: 3px;
        position: relative;

        & > li > a {
            margin: 0 3px;
        }
    }
}

.lvh-label {
    color: #818181;
    display: inline-block;
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    padding: 0 6px;
    line-height: 33px;
    vertical-align: middle;
}



.lv-footer {
    display: block;
    text-align: center;
    padding: 7px 10px 8px;
    border-top: 1px solid #F0F0F0;
    line-height: 100%;
    font-size: 11px;
    margin-top: 20px;
    color: #828282;
}

a.lv-footer:hover {
    color: darken(#919191, 55%);
}


/*
 * Inside Card will have more padding
 */
.card-body {
    .lv-item {
        padding: 12px 20px;
    }
}
