/*!
 * TableExport.js v5.2.0 (https://www.travismclarke.com)
 *
 * Copyright (c) 2018 - Travis Clarke - https://www.travismclarke.com
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at

 * http://www.apache.org/licenses/LICENSE-2.0

 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */

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

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

.button-default {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.3rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  color: #fff;
  background-color: #0168fa;
  border-color: #0168fa;
}

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

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

.xlsx:before,
.xls:before,
.csv:before,
.txt:before {
  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;
}
