/**
 * Main
 */

body {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 300;
  font-size: 11px;
  text-shadow: 1px 1px 1px rgba(10, 10, 10, 0.2);
  background-color: #333;
}

a {
  text-decoration: none;
}

/**
 * Panels
 **/

.panel {
  display: inline-block;
}

select, .special-check, .special-button {
  margin: 1px;
}

/**
 * Controls
 **/

.special-check {
  display: inline-block;
  height: 16px;
}
.special-check label {
  cursor: pointer;
  vertical-align: baseline;
  width: 100%;
  height: 100%;
  font-size: 10px;
  font-weight: 400;
  z-index: 1;
  text-align: center;
  line-height: 16px;
  padding: 2px 4px;
  border: 1px solid #26ca28;
  border-radius: 5px;
  color: #26ca28;
  transition: all .5s ease;
}
.special-check input[type=checkbox] {
  display: none;
  visibility: hidden;
}
.special-check input[type=checkbox]:checked+label {
  background: #26ca28;
  color: #fff;
}

input[type=text] {
  width: 350px;
}

.special-button {
  cursor: pointer;
  outline: none;
  border: none;
  border-radius:5px;
  background-color: #3385ff;
  color: #fff;
  transition: all .5s ease;
}
.special-button:hover{
  background-color: #0066ff;
}
.special-button:active {
  background-color: #0052cc;
}

/**
 * Table
 **/

.tabulator-header {
  font-size: 10px;
}
.tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {
  padding-right: 12px;
}
.tabulator .tabulator-header .tabulator-col .tabulator-col-content {
  padding: 3px;
  line-height: 12px;
}
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-arrow {
  top: 6px;
  right: 3px;
}

.tabulator-tableHolder {
  min-height: 45px;
}

.tabulator-row {
  border-bottom: 1px solid transparent;
}
.tabulator-row:hover .tabulator-cell {
  background-color: rgba(200, 200, 200, 0.5);
}

.tabulator-table .tabulator-cell[tabulator-field="media"] {
  background-color: #fff;
  padding: 0;
}
.tabulator-table .tabulator-cell[tabulator-field="media"] img {
  height: 23px;
}

.tabulator-table .tabulator-cell[tabulator-field="status"] {
  color: rgba(255,255,255,0.5);
  border: 0;
}

/**
 * Tags
 **/

.tag:after {
  display: inline-block;
  padding: 3px;
  margin-left: 1px;
  font-size: 9px;
  font-weight: 900;
  color: #ffffff;
  background-color: #008b00;
  border-radius: 2px;
}
.tag.sale:after {
  content: "SALE";
  background-color: #008b00;
}
.tag.new:after {
  content: "NEW";
  background-color: #3399ff;
}
.tag.retiringSoon:after {
  content: "RETIRING";
  background-color: #6897bb;
}
.tag.retired:after {
  content: "RETIRED";
  background-color: #303030;
}
.tag.removed:after {
  content: "REMOVED";
  background-color: #000000;
}
