

.tltp:after{
    font-family: FontAwesome;
    color: #1E91CF;
    content: "\f059";
    margin-left: 4px;
}
/*********************Modal box start************************/
.modalDialog {
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}
.modalDialog:target {
    opacity:1;
    pointer-events: auto;
}

.modalDialog > div {
    margin-top: 50px; 
    width:50%;
    min-height: 500px;
    height: auto;
    position: relative;
    margin: 3% auto;
    padding: 5px 16px 16px 17px;
    background: #fff;
    background: -moz-linear-gradient(#fff, #fff);
    background: -webkit-linear-gradient(#fff, #fff);
    background: -o-linear-gradient(#fff, #fff);
}
#close
{
    margin-top: 2px;
    float: right;
}
/*all icons here*/
.icon-delete	{
    display: block;
    float: right;
    height: 18px;
    width: 18px;
    margin: 0 8px 0 0;
    background: url(../images/delete.png) no-repeat;
    color: #fff;
}
.getallsize{
    min-height: 80px;
    overflow-y: auto
}
@media (max-width: 767px) and (min-width: 100px){
    .modalDialog > div {
        width:95%;       
        height: 300px;
        overflow-y: auto;
    }
}
.table-responsive tr th{
    background: #f5f5f5;
}