/*!
 * TableExport.js v4.0.5 (https://www.travismclarke.com)
 * Copyright 2017 Travis Clarke
 * Licensed under the MIT license
 */

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

.top {
    caption-side: top;
    background-color: #d3d7eb;
}

.bottom {
    caption-side: bottom;
    background-color: #d3d7eb;
    margin-top: 5px;
    box-shadow: 3px 3px 3px 3px grey;
}

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

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

.button-default {
    /* font: bold 10px sans-serif; */
    font-size: 11px;
    color: #222222;
    cursor: pointer;
    padding: 5px;
    margin-right: 5px;
}

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

.xlsx, .xls, .csv, .txt {
    margin-right: 5px;
    /* width: auto; */
}

.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); */
    box-shadow: 5px 3px 5px rgba(1, 1, 1, 0.48);
}

.button-default.xlsx:before {
    content: "";
    background: #046004 url(../img/xlsx.svg) no-repeat center;
}
/* .xlsx {
    content: "";
    background: darkgreen url(../img/xlsx.png) no-repeat center;
} */

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

.button-default.csv:before {
    content: "";
    background: #0c89c7 url(../img/csv.svg) no-repeat center;
}

.button-default.txt:before {
    content: "";
    background: #7b017b url(../img/txt.svg) no-repeat center;
}
