:root {
  --theadColor: #000;
  --theadTextColor: #fff;
  --darkColor:#000;
  --lightColor:#fff;
  --darkRowColor: #1b1d1b;
}

#header {
    max-width: 350px;
    min-width: 350px;
}

h4 {
    color: black;
}

.dataTables_wrapper {
    margin-top: 30px;
}

table.dataTable {
    border:1px solid #000;
    background-color: transparent;
}

th,tr,td
{
    border-color: #000 !important;
}

thead {
    background-color: transparent;

}
thead > tr,
thead > tr > th {
    background-color: transparent;
    font-weight: normal;
    text-align: start;
}
table.dataTable thead th,
table.dataTable thead td {
    border-bottom: 0px solid #111 !important;
}

.dataTables_wrapper > div {
    margin: 5px;
}
table.dataTable.display tbody tr.even > .sorting_1,
table.dataTable.order-column.stripe tbody tr.even> .sorting_1,
table.dataTable.display   tbody tr.even,
table.dataTable.display tbody tr.odd > .sorting_1,
table.dataTable.order-column.stripe tbody tr.odd > .sorting_1,
table.dataTable.display tbody tr.odd {
background-color: rgb(74 73 73 / 40%);
    color:var(--lightColor);
}

.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
    color: #fff !important;
}
table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  cursor: pointer;
  *cursor: hand;
  background-repeat: no-repeat;
  background-position: center right;
}
table.dataTable thead .sorting {
  background-image: url("https://cdn.datatables.net/1.10.21/images/sort_both.png");
}
table.dataTable thead .sorting_asc {
  background-image: url("https://cdn.datatables.net/1.10.21/images/sort_asc.png");
}
table.dataTable thead .sorting_desc {
  background-image: url("https://cdn.datatables.net/1.10.21/images/sort_desc.png");
}
table.dataTable thead .sorting_asc_disabled {
  background-image: url("https://cdn.datatables.net/1.10.21/images/sort_asc_disabled.png");
}
table.dataTable thead .sorting_desc_disabled {
  background-image: url("https://cdn.datatables.net/1.10.21/images/sort_desc_disabled.png");
}

table.dataTable.display tbody tr:hover > .sorting_1,
table.dataTable.order-column.hover tbody tr:hover > .sorting_1,
tbody tr:hover {
    background-color: var(--darkColor) !important;
    color: #fff;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
     background: none !important;
     border-radius: 50px;
     background-color: var(--theadColor) !important;
     color:var(--lightColor) !important
}


.dataTables_wrapper .dataTables_paginate .paginate_button {
     background: none !important;
     color: #666 !important;
}

.paginate_button.current:hover
{
    background: none !important;
    border-radius: 50px;
    background-color: var(--theadColor) !important;
    color:#fff !important
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {

	border: 1px solid #979797;
	background: none !important;
	border-radius: 50px !important;
    background-color: #000 !important;
    color: #fff !important;
}



/* https://codepen.io/simonpatrat/pen/JdKvzO */
.menubtn {
  cursor: pointer;
  width: 40px;
  height: 40px;
  right: 0;
  top: 15px;
  position: absolute;
}
.menubtn span {
  display: block;
  width: 30px;
  height: 3px;
  position: absolute;
  background: #fff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.menubtn span::before {
  content: '';
  width: 30px;
  height: 3px;
  position: absolute;
  top: 8px;
  background: #fff;
  -webkit-transition: all 100ms ease;
  transition: all 100ms ease;
}
.menubtn span::after {
  content: '';
  width: 30px;
  height: 3px;
  position: absolute;
  top: 16px;
  background: #fff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.menubtn.opened span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.menubtn.opened span::before {
  opacity: 0;
}
.menubtn.opened span::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  top: 0px;
}
.navmenu {
  width: 240px;
  margin-top: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: #fff;
  text-align: center;
  position: absolute;
  right: 10px;
  top: 25px;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.navmenu.opened {
  visibility: visible;
  opacity: 1;
}
.navmenu::before {
  content: '';
  position: absolute;
  top: -5px;
  right: 7px;
  width: 15px;
  height: 15px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navmenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.navmenu ul.text-list {
  text-align: left;
  width: 90%;
  margin: auto;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding-top: 10px;
  padding-bottom: 10px;
}
.navmenu ul.text-list li a {
  text-decoration: none;
  padding-left: 5px;
  padding-right: 5px;
  color: #343434;
  font-weight: 600;
  display: block;
  line-height: 27px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
.navmenu ul.text-list li a:hover {
  color: tomato;
}
.navmenu ul.thumbs-list {
  margin: 10px auto;
  padding: 0;
  width: 90%;
}
.navmenu ul.thumbs-list::after {
  display: table;
  clear: both;
  content: '';
}
.navmenu ul.thumbs-list li {
  display: block;
  float: left;
  height: 98px;
  width: 98px;
  background: steelBlue;
  margin: 5px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.navmenu ul.thumbs-list li a {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
}
.navmenu ul.thumbs-list li a i {
  line-height: 98px;
  font-size: 40px;
}
.navmenu ul.thumbs-list li:nth-of-type(2) {
  background: tomato;
}
.navmenu ul.thumbs-list li:nth-of-type(3) {
  background: tomato;
}
.navmenu ul.thumbs-list li:nth-of-type(4) {
  background: #2ABB9B;
}
.navmenu ul.thumbs-list li:nth-of-type(6) {
  background: tomato;
}
.navmenu ul.thumbs-list li:hover {
  opacity: 0.8;
}




.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }

  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }

  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }

  input:checked + .slider {
    background-color: #2196F3;
  }

  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }

  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }

  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }

  .slider.round:before {
    border-radius: 50%;
  }
