.BannerFilterArea{
    bottom: 0px;
    left: 0px;
    height: 32px;
    width: 100%;
    position: absolute; 
    display: flex;
    align-items: center; 
    @media @phone {
        position: relative;
    }
    .BannerFilter{
        position: relative;
        display: flex;
        margin: 0 16px;
        overflow: hidden;
        @media @phone {
            margin: 0 8px;
        }
        .previewImageInnerContainer{
            height: 22px;
            width: 22px;
            margin-right: 6px;
            img{
                max-height: 100%;
                max-width: 100%;
            }
        }
        .textArea{
            flex:1;
            margin:auto 12px auto 0;
            overflow: hidden;
            line-height: 18px;
            font-size: 15px;
            font-family: "Medium";
            text-overflow: ellipsis;
            white-space: nowrap;
            @media @phone{
                line-height: 16.8px;
                font-size: 14px;
                margin-right: 6px;
            }
        }

        .dropDownArrow{
            max-width: 15px;
            max-height: 15px;
            display: flex;
            align-self: center;
            img {
                width: 100%;
                height: 100%;
            }
    }
    }   

    .clearItem{
        img{
            max-width: 26px;
            max-height: 26px;
        }
    }
}

.BannerFlyout {
    height: inherit;
    .ScrollableContainer {
           .ScrollableContent{
               margin-bottom: 8px;
                .BannerFilterItems {
                    .BannerFilterRow{
                        display:flex;
                        align-items: center;
                        padding: 4px 16px;
                        @media @phone{
                            padding: 4px 8px;
                        }
                        .previewImageInnerContainer{
                            margin-right: 12px;
                            width: 32px;
                            height: 32px;
                            overflow: hidden;
                            img{
                                max-width: 100%;
                                max-height: 100%;
                            }
                            
                        }
                        .text {
                            display: -webkit-box;
                            overflow: hidden;
                            font-family: "Light";
                            font-size: 14px;
                            word-break: break-word;
                            -webkit-box-orient: vertical;
                            line-height: 15px;
                            @media @phone {
                                font-size: 13px;
                            }
                            &.clearOptionText{
                                font-family: "Bold";
                                font-size: 12px;
                            }
                            &.oneLine{
                                -webkit-line-clamp: 1;
                            }
                            &.twoLine{
                                -webkit-line-clamp: 2;
                            }
                        }
                        &.Selected {
                            background: rgba(255,255,255,0.10);
                        }
                    }
                }
            }
    }
}
