/* --------
 Fonts - Calibre
  -------------------------------------------- */

@font-face {
  font-family: 'Calibre Web';
  font-weight: 200;
  src: local('Calibre Web Thin'), local('CalibreWeb-Thin'),
  url(../fonts/calibre/CalibreWeb-Thin.woff) format('woff');
}
@font-face {
  font-family: 'Calibre Web';
  font-weight: 200;
  font-style: italic;
  src: local('Calibre Web Thin Italic'), local('CalibreWeb-ThinItalic'),
  url(../fonts/calibre/CalibreWeb-ThinItalic.woff) format('woff');
}
@font-face {
  font-family: 'Calibre Web';
  font-weight: 300;
  src: local('Calibre Web Light'), local('CalibreWeb-Light'),
  url(../fonts/calibre/CalibreWeb-Light.woff) format('woff');
}
@font-face {
  font-family: 'Calibre Web';
  font-weight: 300;
  font-style: italic;
  src: local('Calibre Web Light Italic'), local('CalibreWeb-LightItalic'),
  url(../fonts/calibre/CalibreWeb-LightItalic.woff) format('woff');
}
@font-face {
  font-family: 'Calibre Web';
  font-weight: 400; /* 400 is the same as "normal", which I'm interpreting "regular" as */
  src: local('Calibre Web Regular'), local('CalibreWeb-Regular'),
  url(../fonts/calibre/CalibreWeb-Regular.woff) format('woff');
}
@font-face {
  font-family: 'Calibre Web';
  font-weight: 400; /* 400 is the same as "normal", which I'm interpreting "regular" as */
  font-style: italic;
  src: local('Calibre Web Regular Italic'), local('CalibreWeb-RegularItalic'),
  url(../fonts/calibre/CalibreWeb-RegularItalic.woff) format('woff');
}
@font-face {
  font-family: 'Calibre Web';
  font-weight: 500;
  src: local('Calibre Web Medium'), local('CalibreWeb-Medium'),
  url(../fonts/calibre/CalibreWeb-Medium.woff) format('woff');
}
@font-face {
  font-family: 'Calibre Web';
  font-weight: 500;
  font-style: italic;
  src: local('Calibre Web Medium Italic'), local('CalibreWeb-MediumItalic'),
  url(../fonts/calibre/CalibreWeb-MediumItalic.woff) format('woff');
}
@font-face {
  font-family: 'Calibre Web';
  font-weight: 600;
  src: local('Calibre Web Semibold'), local('CalibreWeb-Semibold'),
  url(../fonts/calibre/CalibreWeb-Semibold.woff) format('woff');
}
@font-face {
  font-family: 'Calibre Web';
  font-weight: 600;
  font-style: italic;
  src: local('Calibre Web Semibold Italic'), local('CalibreWeb-SemiboldItalic'),
  url(../fonts/calibre/CalibreWeb-SemiboldItalic.woff) format('woff');
}
@font-face {
  font-family: 'Calibre Web';
  font-weight: 700; /* 700 is the same as bold */
  src: local('Calibre Web Bold'), local('CalibreWeb-Bold'),
  url(../fonts/calibre/CalibreWeb-Bold.woff) format('woff');
}
@font-face {
  font-family: 'Calibre Web';
  font-weight: 700; /* 700 is the same as bold */
  font-style: italic;
  src: local('Calibre Web Bold Italic'), local('CalibreWeb-BoldItalic'),
  url(../fonts/calibre/CalibreWeb-BoldItalic.woff) format('woff');
}
@font-face {
  font-family: 'Calibre Web';
  font-weight: 900;
  src: local('Calibre Web Black'), local('CalibreWeb-Black'),
  url(../fonts/calibre/CalibreWeb-Black.woff) format('woff');
}
@font-face {
  font-family: 'Calibre Web';
  font-weight: 900;
  font-style: italic;
  src: local('Calibre Web Black Italic'), local('CalibreWeb-BlackItalic'),
  url(../fonts/calibre/CalibreWeb-BlackItalic.woff) format('woff');
}

body {
    font-family: 'Calibre Web', system, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Lucida Grande";
  -webkit-font-smoothing: antialiased;
}

.card-box {
    background-color: #fff;
    padding: 1.25rem;
    -webkit-box-shadow: 0 0 35px 0 rgba(73,80,87,.15);
    box-shadow: 0 0 35px 0 rgba(73,80,87,.15);
    margin-bottom: 24px;
    border-radius: 0.5rem;
    margin: 1rem;
}

.card-box > .icon {
    float: right;
}

.card-box h3, h6 {
    margin: 0;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
}
h3 {
    font-size: 2.5rem;
    font-weight: 600;
}

.lh-copy {
    font-size: 1.25rem;
    padding: 0;
}

.header > h1, p {
    margin: 0;
}

.header > h1 {
    font-weight: 600;
}

.country-table {
    padding: 1rem;
}
h1 {
    font-weight: 600;
    margin-bottom: 0;
}
/* --------
Tables
  -------------------------------------------- */

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.03) !important;
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8daff;
}

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #7abaff;
}

.table-hover .table-primary:hover {
  background-color: #9fcdff;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}

.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #b3b7bb;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #8fd19e;
}

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffdf7e;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #ed969e;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered {
  border: 0;
}

  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
/*    background-color: #fff !important;*/
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }

.table-curved {
   border-collapse: separate !important;
   border: solid #ddd 1px !important;
   border-radius: 6px !important;
   border-left: 0px !important;
   border-top: 0px !important;
}
.table-curved > thead:first-child > tr:first-child > th {
    border-bottom: 0px;
    border-top: solid #ddd 1px;
}
.table-curved td, .table-curved th {
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
}
.table-curved > :first-child > :first-child > :first-child {
    border-top-left-radius: 6px;
}
.table-curved > :first-child > :first-child > :last-child {
    border-top-right-radius: 6px;
}
.table-curved > :last-child > :last-child > :first-child {
    border-bottom-left-radius: 6px;
}
.table-curved > :last-child > :last-child > :last-child {
    border-bottom-right-radius: 6px;
}

th {
    font-weight: 600;
}

.pagination li {
    display: block;
    padding: 0.75rem;
}

.pagination li a {
    text-decoration: none;
}


.pagination li a:link {
    color: black;
    outline: none;
}

.pagination {
    display: inline-flex !important;
}

input[type=search] {
        height: 2rem;
    border-radius: 6px;
    border: 1px lightgrey solid;
    outline: none;
    margin-bottom: 1rem;
}

td > img {
    height: 1rem;
    width: 1.5rem;
    border-radius: 2px;
    margin-right: 0.5rem;
}

footer {
    padding: 1rem;
    font-size: 1rem;
}


.mt1 a {
    text-decoration: none;
}

table > td, th, div{
    font-size: 1rem !important;
}

.product-hunt {
    float: right;
}

 .country {
        width: 150px;
        display: inline;
    }


@media (max-width:1000px)  {
    .stat-card {
        width: 100% !important;
    }

    div.dataTables_wrapper div.dataTables_filter label {
position: sticky;
        left: 0;
}
    .country {
        width: 150px;
        display: inline-flex;
    }

    .dataTables_info {
        position: sticky;
        left: 0;
    }

    .table-responsive{
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
}

    header div:first-child {
        width: 100%;
    }
    header div:nth-child(2) {
        display: none;
    }

    .product-hunt {
            float: left;
    padding-bottom: 0.5rem;
    }

    .product-hunt {
    padding: 0.5rem;
}

    header {
        max-width: 100% !important;
float: left;
    }

    .form-control {
        width: 100% !important;
    }

    .pagination {
        padding-left: 0 !important;
    }


    }


    div.dataTables_paginate ul.pagination {
    margin: 2px 0;
    white-space: nowrap;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
    padding-top: 1rem;
}.pagination>li {
    display: inline;
    padding: 0;
}
    .pagination>li:first-child>a, .pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.pagination>.disabled>span, .pagination>.disabled>span:hover, .pagination>.disabled>span:focus, .pagination>.disabled>a, .pagination>.disabled>a:hover, .pagination>.disabled>a:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}
.pagination>li>a, .pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #428bca;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.pagination>li.active > a {
    background: lightslategray;
    color: white;
}




table.dataTable thead .sorting:before, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_desc:before, table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_desc_disabled:before {
    margin-right: 5px;
    top:0.5rem;
}

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 {
    margin-left: 5px;
    top: 0.5rem;
}

.table td, .table th {
/*    background-color: rgba(0,0,0,0) !important;*/
}

.badge {
    color: #fff;
    float: left;
}

.mr-1, .mx-1 {
    margin-right: .5rem!important;
}
.badge-success {
    color: #fff;
    background-color: #1bb99a;
}

.badge-danger {
    color: #fff;
    background-color: #d9534f;
    font-weight: 600;
}
.badge-info {
    color: #fff;
    background: lightslategray;
}



.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}
.text-muted {

    float: left;
    font-size: 1.25rem;
}

.up {
    float: left;
    height: 20px;
    padding-right: 0.5rem;
}

button {
    display: flex;
    align-items: center;
    justify-content: space-around;
    cursor: pointer !important;
    outline: 0px;
    border: 0px;
    height: 40px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
}

.chart-wrapper {
    margin: 0 !important;;
    padding: 2rem;
    padding-top: 0.5rem;
    min-height: 500px;
}


.chart-container {
  position: relative;
  margin: auto;
}

.navlinkblock {

    display: flex;
    height: 48px;
    margin-left: 20px;
    padding-right: 16px;
    padding-left: 16px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(0,0,0,.1);
    border-radius: 6px;
    color: #000;
    text-decoration: none;
    padding-top: 1rem;
    padding-bottom: 1rem;

}

.navlinkblock {
       transition: all .3s ease-in-out;
}
.navlinkblock:hover {

    transform: scale(1.05)
}



.navbuttoniconwrapper {

    position: relative;
    display: flex;
    margin-right: 22px;
    padding-left: 8px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;


}

.phcopy {
    font-weight: 600;
    padding-top:2px;
}

a:hover > div {
    color: white;
}
a:hover > .navbuttoniconwrapper {
    filter: invert(1);
}

.navlinkblock:hover {
    background-color: #e4461b !important;;
}

.link {

    margin-bottom: 24px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    float: right;
    display: flex;

}

.navlinktext.phtitle {

    opacity: .5;
    font-size: 0.8rem !important;
    line-height: 8px;
    font-weight: 400;

}

header {
    height: 150px;
    clear: both;

}


.theme-switch {
  color: black;
  width: 60px;
  height: 30px;
  background: black;
  border-radius: 50px;
  position: relative;
  border: 4px black solid;
  display: inline-flex;
  cursor: pointer;
}
.theme-switch .switch {
  background: white;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 100%;
  position: absolute;
  top: 3px;
  left: 4px;
  transition: 0.5s all ease;
}


.light-theme {
  background: black;
}
body:not(.light-theme) {
    background: white;
}

.light-theme .theme-switch {
    border: 4px rgba(255,255,255, 0) solid;
  background: rgba(255,255,255, 0.2);
}
.light-theme .theme-switch .switch {
  transform: translateX(28px);
  background: white;
}
.light-theme a {
  color: white;
}

.light-theme .theme-icon {
    filter: invert(1);
}

.light-theme p {
    color: white;
}
.light-theme .lh-copy {
    color: rgba(255,255,255, 0.6) !important;
}

.light-theme h1 {
    color: white;
}

.light-theme .card-box {
    background-color: rgba(255,255,255, 0.075);
}

.light-theme h3 {
    color: white;
}

.light-theme .select2-selection__rendered {
    color: white !important;
}


.light-theme h6 {
    color: rgba(255,255,255, 0.4);
}
.light-theme .text-muted {
    color: rgba(255,255,255, 0.4);
}

.light-theme table {
    color: white;
}

.light-theme .navbuttoniconcontainer {
   filter: invert(1);
}

.light-theme .navlinkblock {
    border-color: rgba(255,255,255,.1);
}


.light-theme label {
    color: white;
}

.light-theme input {
    background: rgba(255,255,255, 0.1);
    border: 1px rgba(255,255,255, 0.1) solid;
}

.light-theme .table th,
.table td {

  border-top: 1px solid rgba(255,255,255, 0.1);
}

.light-theme .table-curved > thead:first-child > tr:first-child > th {
    border-top: 1px solid rgba(255,255,255, 0.1);

}

.light-theme .table-curved td, .light-theme .table-curved th {
 border-left:   1px solid rgba(255,255,255, 0.1);
    border-bottom: 1px solid rgba(255,255,255, 0.1);
}


.light-theme .table-curved {
    border: 1px solid rgba(255,255,255, 0.1) !important;
}

.light-theme #country-table_info {
    color: white;
}

.light-theme .table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255,255,255, 0.05) !important;
}

.light-theme .pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
    padding-top: 1rem;
}
.light-theme .pagination>li {
    display: inline;
    padding: 0;
}
    .light-theme .pagination>li:first-child>a, .pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.light-theme .pagination>.disabled>span, .light-theme .pagination>.disabled>span:hover, .pagination>.disabled>span:focus, .light-theme .pagination>.disabled>a, .pagination>.disabled>a:hover, .light-theme .pagination>.disabled>a:focus {
    color: white;
    cursor: not-allowed;
    background-color: rgba(255,255,255, 0.1);
    border-color: rgba(255,255,255, 0.1);
}
.light-theme .pagination>li>a, .pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: white;
    text-decoration: none;
    background-color: rgba(255,255,255, 0.1);
    border: 1px solid rgba(255,255,255, 0.1);
}

.light-theme input {
    color: white;
}

.light-theme a:hover > .navbuttoniconwrapper {
    filter: none;
}

.pagination>li.active > a {
    background: lightslategray;
    color: white;
}

.pagination {
    outline: none;
}

.light-theme .pagination>li:last-child>a, .pagination>li:last-child>span {
    margin-left: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.light-theme .select2-container--default .select2-selection--single {
    background: rgba(255,255,255, 0.1);
}


.theme-icon {
    height: 24px;
    filter: opacity(0.2);
    display: inline-flex;
    margin-right: 1rem;
}

.switch-wrapper {
    float: right;
}
.select2-container {
  float: right;
  outline: none;
}

.img-flag {
            height: 1rem;
    width: 1.5rem;
    border-radius: 2px;
    margin-right: 0.5rem;
    padding-top: 4px;
}


.select2 {
    margin-top: 1rem !important;
}

.select2-selection {
    outline: none;
}

div.dataTables_wrapper div.dataTables_filter {
    text-align: left !important;
}

div.dataTables_wrapper div.dataTables_filter label {
    padding: 0;
    padding-top: 1rem;
}

Hide info of no checked inputs
.tabs__content input:not(:checked) ~ .tabs__content__info {
  display: none;
}

.tabs-main {
  min-width: 320px;
  max-width: 800px;
  padding: 50px;
  margin: 0 auto;
  background-color: blue;
}

label {
  display: inline-block;
  margin: 0 0 -1px;
  padding: 15px 25px;
  font-weight: 600;
  text-align: center;
}

label:nth-child(2):hover {
  color: rgba(0,0,0,0.4);
  cursor: pointer;
}

.red {
        border-bottom: 2px solid;
    border-color: lightslategray;
    color: lightslategray !important;
}

.w-75 h1 {
    margin-bottom: 0;
}


.country-table h2 {
    font-weight: 600;
    color: black;
    display: inline-flex;
    margin: 0;

}
.country-table p {
    display: inline-flex;
    margin-left: 0.25rem;
}

.invisible {
    display: none !important;
}
.freeze {
    position: sticky !important;;
    left: 0px;
    background-color: #ffffff !important;
    z-index: 1000000;
}

.light-theme .freeze {
    background-color: #000 !important;
}

#country-table_filter label {
      position: sticky !important;;
    left: 0px;
}



.badge-warning {
  color: #000000;
  background-color: #FFEEAA;
    font-weight: 600;
}


.badge-warning  {
    
}