/*!
 * TableExport.js v3.2.4 (http://www.clarketravis.com)
 * Copyright 2016 Travis Clarke
 * Licensed under the MIT license
 */

/*-----------------------------------/
/* CAPTION POSITIONS
/*----------------------------------*/

.top {
    caption-side: top;
}

.bottom {
    caption-side: bottom;
}

/*-----------------------------------/
/* BUTTON CUSTOM CLASSES
/*----------------------------------*/

.button-default, .button-default:hover, .button-default:focus, .button-default:active {
    text-decoration: none;
}

.button-default {
    font: bold 12px sans-serif;
    color: #222222;
    cursor: pointer;
    padding: 5px;
    margin: 5px;
}

.button-default.xlsx:before, .button-default.xls:before, .button-default.csv:before, .button-default.txt:before {
    content: none;
}

.xlsx, .xls, .csv, .txt {
    margin: 4px 0;
}

.xlsx:before, .xls:before, .csv:before, .txt:before {
    margin-right: 10px;
    padding: 11px 15px 12px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.xlsx:before {
    content: "";
    background: darkgreen url(../img/xlsx.svg) no-repeat center;
}

.xls:before {
    content: "";
    background: green url(../img/xls.svg) no-repeat center;
}

.csv:before {
    content: "";
    background: blue url(../img/csv.svg) no-repeat center;
}

.txt:before {
    content: "";
    background: purple url(../img/txt.svg) no-repeat center;
}