.arg-char-online { border: 3px solid var(--success-color); vertical-align: middle; }
.arg-char-offline { border: 3px solid var(--white-light-color); vertical-align: middle; }
.arg-char-blocked { border: 3px solid var(--error-color); vertical-align: middle; }

/* Tables */
.table {
  margin-bottom: 0;
  border: 0;
}

.table > thead > tr > th {
  border: 0;
  text-transform: uppercase;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  padding: 8px;
  border: 0;
  color: var(--white-light-color);
}

.table > thead > tr > th {
  border-bottom: 0;
  padding: 15px 5px;
  color: #1C93E4;
  font-size: 16px;
}

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

table.dataTable {
  margin-bottom: 20px !important;
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
  bottom: 15px;
}

div.dataTables_wrapper div.dataTables_filter {
    text-align: right;
}

div.dataTables_wrapper div.dataTables_filter label {
  text-align: right;
}

div.dataTables_wrapper div.dataTables_filter input {
  height: 36px;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--body-color);
  border: 1px solid var(--border-color);
  width: 200px;
  padding: 0 10px 0 10px;
}

div.dataTables_wrapper div.dataTables_length select {
  width: auto;
  padding: 0 0 0 5px;
  height: 36px;
  margin: 0 5px;
}

.dataTables_wrapper.container-fluid {
  padding: 0;
}

.table .custom-checkbox {
  margin-left: 8px;
  float: left;
}

.table thead .custom-checkbox {
  margin-left: 11px;
}

.vs-btn.disabled {
  cursor: not-allowed;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

/* Webshop */
.shop_credits_item {
  font-weight: 700;
  font-size: 22px;
  color: var(--white-light-color);
  font-family: var(--title-font);
}
  
.shop_class_requirement {
  font-style: italic;
  font-size: 13px;
  margin-top: 10px;
  padding: 8px;
  color: var(--body-color);
}	

.shop_credits_disabled {
  padding-left: 10px;
  color: var(--body-color);
}
  
.shop_credits_enabled {
  padding-left: 10px;
  color: var(--error-color);
}

.shop_ancient {
  font-size:14px;
  font-weight: 700;
  background: blue;
  color: #ffffff;
  padding: 5px 50px;	
}

.webshop-cat-wrap {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}

.webshop-cat-wrap a {
  display: inline-block;
  text-align: center;
  background-color: var(--bg-color, #464646);
  color: var(--white-color);
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  padding: 27px 0 24px 0;
  font-family: var(--title-font);
}

.webshop-cat-wrap a i {
  font-size: 1.3rem;
  margin-bottom: 10px;
  display: block;
}

.webshop-cat-wrap a:hover {
  background-color: var(--hover-bg, #FF7E02);
  color: var(--white-color);
}

.webshop-cat-wrap .special-items {
  --bg-color: #E52D27;
}

.webshop-cat-wrap .limited-stock {
  --bg-color: #3B5998;
}

.webshop-cat-wrap .limited-time {
  --bg-color: #B70098;
}

.webshop-cat-wrap .new-players-packs {
  --bg-color: #5561F5;
}

.webshop-cat-wrap .wings {
  --bg-color: #1C93E4;
}

.webshop-cat-wrap .jewelry {
  --bg-color: #A970FF;
}

.webshop-cat-wrap .vip-chests {
  --bg-color: #EA4C89;
}

/* Large devices */
@media (max-width: 1199px) {
  .webshop-cat-wrap {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .webshop-cat-wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Small devices */
@media (max-width: 767px) {
  .webshop-cat-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}