/** Table reset **/
.droptablestable table {
    border-spacing: 0;
    border-collapse: collapse;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: none;
}
.droptablestable tr, .droptablestable th, .droptablestable td {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 13px;
    font-family: Arial;
    vertical-align: baseline;
    background: none;
    color: black;
    font-weight: normal;
    border: none;
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
}

.droptablestable td {
    line-height: 21px;
    padding: 0 4px 0 4px;
}

.droptablestable .sortable thead th {
    cursor: pointer;
}

div.droptablesoverflow {
    overflow-x: scroll;
}

.droptablesresponsive td img  {
   
    max-width: 100%;
    height: auto;
}

.droptables_tooltip {
    position: relative;
    display: inline-block;
    text-decoration: none;
}
.droptables_tooltip:hover {
    text-decoration: none;  
}
.droptables_tooltipcontent {
     display: none; 
       background: #000 ;
}
.droptables_tooltipcontent_show {
    position: absolute;  
    color: #FFF;
    background: #000 none repeat scroll 0% 0%;
    min-height: 40px;
    line-height: 22px;
    text-align: center;    
    border-radius: 2px;
    padding: 5px;
    visibility: visible;
    display:block;         
   
    z-index: 999;
    transition: all 0.3s ease-in-out 0s;
    opacity: 1;
}

span.droptables_tooltipcontent_show:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -8px;
	width: 0;
	height: 0;
	border-top: 8px solid #000000;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
}

input.tablesorter-filter[type="search"] {
    height: 26px;
}

@media (max-width: 480px) {
    .droptablesresponsive td img  {
        width: 100%;  
    }
}