/* roboto-regular - latin_cyrillic_vietnamese */

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    src: local("Roboto"), local("Roboto-Regular"), url("../fonts/roboto-v20-latin_cyrillic_vietnamese-regular.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url("../fonts/roboto-v20-latin_cyrillic_vietnamese-regular.woff") format("woff");
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}


/* roboto-700 - latin_cyrillic_vietnamese */

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 700;
    src: local("Roboto Bold"), local("Roboto-Bold"), url("../fonts/roboto-v20-latin_cyrillic_vietnamese-700.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url("../fonts/roboto-v20-latin_cyrillic_vietnamese-700.woff") format("woff");
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
    font-family: "FontAwesome";
    font-style: normal;
    font-weight: 900;
    font-display: auto;
    src: url(../fonts/fa-solid-900.eot);
    src: url(../fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(../fonts/fa-solid-900.woff2) format("woff2"), url(../fonts/fa-solid-900.woff) format("woff"), url(../fonts/fa-solid-900.ttf) format("truetype")
}

.fa,
.fas {
    font-family: "FontAwesome";
    font-weight: 900
}

* {
    box-sizing: border-box;
}

h2 {
    margin: 20px 0 10px 0;
}

h3 {
    margin: 30px 0 15px 0;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.2;
    color: #ffffff;
    background: #111;
}

p {
    font-size: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
}

a {
    text-decoration: none;
    color: #2277ff;
    cursor: pointer;
}

a:hover {
    color: #51b9ff;
}

img {
    max-width: 100%;
}

table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
    border: none;
}

th,
td {
    border-right: 1px solid #1d1d1d;
    border-bottom: 1px solid #1d1d1d;
}

th {
    padding: 5px 0px;
}

td {
    padding: 2px 0px;
}

table>tbody>tr,
table.dataTable tbody tr {
    background: #292929;
}

table>tbody>tr:nth-child(2n) {
    background: #353535;
}

thead th,
thead td,
table.dataTable thead th,
table.dataTable thead td {
    padding: 5px 20px 5px 10px;
    white-space: nowrap;
}

tbody th,
tbody td,
table.dataTable tbody th,
table.dataTable tbody td {
    padding: 5px 10px 5px 10px;
}

thead th.new::before {
    content: "";
    display: inline-block;
    margin-right: 3px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 12px solid #ffc376;
}

ul hr {
    margin: 0;
    height: 5px;
    background: #222222;
    border: none;
    padding: 0;
}

.disable-select {
    user-select: none;
    /* supported by Chrome and Opera */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
}

.loader {
    border-left: 10px solid rgba(255, 255, 255, 1);
    /* Light grey */
    border-bottom: 10px solid rgba(255, 255, 255, 0.66);
    /* Light grey */
    border-right: 10px solid rgba(255, 255, 255, 0.33);
    /* Light grey */
    border-top: 10px solid transparent;
    /* Blue */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
}

.loader.mini {
    border-width: 3px;
    width: 16px;
    height: 16px;
    display: inline-block;
    position: relative;
}

@keyframes helper {
    0% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes coffee {
    0% {
        transform: rotate(0deg) scale(1);
    }
    70% {
        transform: rotate(0deg) scale(1);
    }
    75% {
        transform: rotate(0deg) scale(1.1);
    }
    80% {
        transform: rotate(0deg) scale(1.1);
    }
    84% {
        transform: rotate(-10deg) scale(1.1);
    }
    88% {
        transform: rotate(10deg) scale(1.1);
    }
    92% {
        transform: rotate(-10deg) scale(1.1);
    }
    96% {
        transform: rotate(10deg) scale(1.1);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes buttonglow {
    0% {
        background: #144bcc;
        box-shadow: 0 0 0px #165bff;
    }
    50% {
        background: #165bff;
        box-shadow: 0 0 15px #165bff;
    }
    100% {
        background: #144bcc;
        box-shadow: 0 0 0px #165bff;
    }
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

#lightbox {
    display: flex;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    background: #111111;
    padding: 10px;
}

#lightbox .content {
    width: 90%;
    max-width: 1200px;
    height: 80%;
    display: flex;
    flex-direction: column;
}

#logo {
    max-width: 230px;
    margin-bottom: 10px;
    margin-top: 10px;
    display: inline-block;
}

#header {
    overflow: visible;
    position: relative;
    background: #222222;
    margin-bottom: 10px;
}

#header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px 0 10px;
    position: relative;
}

#header.stuck {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #111111;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 300;
}

#header.stuck .container {}

#header h1 {
    display: none;
}

#stats {
    display: inline-block;
    float: right;
}

#stats .stat,
.stats .stat {
    display: inline-block;
    font-weight: 700;
    margin-right: 2px;
    font-size: 18px;
    vertical-align: top;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

#stats .stat:last-child {
    margin-right: 0px;
}

.stat span {
    display: inline-block;
    padding: 8px 7px;
}

.stat {
    background: #777777;
}

.stat span.val {
    background: rgba(0, 0, 0, 0.25);
}

.stat span.val span {
    font-size: 16px;
    padding: 0;
}

.stat span.val span::before {
    content: "/";
    color: rgba(255, 255, 255, 0.8);
    display: inline;
    font-size: 16px;
    margin-right: 4px;
    margin-left: 4px;
}

.confirmed.stat {
    background: #b10dc9;
}

.infected.stat {
    background: #ff8f00;
}

.deaths.stat {
    background: #ff4136;
}

.recovered.stat {
    background: #17ac28;
}

#stats #language {
    background: #3668ff;
    position: relative;
    z-index: 100;
}

#stats #language>a {
    color: #fff;
    display: inline-block;
    padding: 5px 10px;
    cursor: pointer;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

#stats #language a:hover {
    background: #3686ff;
    color: #fff;
}

#stats #language img {
    height: 22px;
}

#stats #language ul {
    display: none;
    border-top: 10px solid transparent;
    position: absolute;
    z-index: 10;
    font-size: 16px;
    font-weight: 400;
    right: 0px;
}

#stats #language ul::after {
    content: "";
    display: block;
    position: absolute;
    top: -10px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #093cb5;
}

#stats #language.show>ul {
    display: block;
}

#stats #language ul>li>a {
    padding: 5px 10px;
    display: block;
    background: #093cb5;
    border-bottom: 2px solid #262696;
    white-space: nowrap;
    color: #ffffff;
    cursor: pointer;
}

#stats #language ul>li>a:hover {
    background: #4444ff;
}

#switcher {
    width: 100%;
    background: #222222;
    padding: 0;
}

#switcher .tab {
    padding: 8px 20px;
    background: #165bff;
    margin-right: 2px;
    display: inline-block;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    position: relative;
    max-height: 36px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

#switcher .tab:hover {
    background: #3496ff;
}

#switcher .tab.active {
    background: #eeeeee;
    color: #165bff;
}

#switcher .tab.active::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -10px;
    left: calc(50% - 10px);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #eeeeee;
}

.close_btn {
    width: 18px;
    height: 18px;
    color: #fff;
    background: url(../img/cross.svg) no-repeat;
    background-size: 100% 100%;
    line-height: 1;
    display: block;
    cursor: pointer;
}

.close_btn:hover {
    color: #ddd;
}

#notice {
    background: #551111;
    border: 2px solid #991111;
    color: #fff;
    font-size: 16px;
    padding: 10px;
    font-weight: 700;
    display: block;
    position: fixed;
    bottom: 10px;
    margin: 0 auto;
    z-index: 200;
    width: 1200px;
    max-width: calc(100% - 20px);
}

#notice h2 {
    margin: 0;
    display: inline-block;
    font-size: 18px;
    text-transform: uppercase;
}

#notice .close_btn {
    position: absolute;
    top: 5px;
    right: 5px;
}

#news .article {
    padding: 10px;
    background: #222222;
    margin: 10px 0;
    display: block;
    border: 1px solid #333;
    overflow: auto;
}

#news .article .image {
    width: 100px;
    height: 100px;
    background: #444;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
    background-size: cover;
    background-position: left top;
}

#news .article .desc {
    display: block;
}

#news .article:nth-child(2n) {
    background: #303030;
    border: 1px solid #444444;
}

#news .article:hover {
    background: #2f3751;
    border-color: #4c5779;
}

#news .article h3 {
    margin: 0 0 10px 0;
    color: #ff8b45;
    font-size: 16px;
    text-transform: none;
    width: 100%;
}

#news .article h3 a {
    color: #ffdc1d;
    margin: 0;
    text-transform: capitalize;
    font-weight: 400;
}

#news .article h3 a img {
    height: 16px;
    margin-left: 10px;
    opacity: 0.7;
}

#news .article h3 a:hover {
    color: #ffffff;
}

#news .article h3 a:hover img {
    opacity: 1;
}

#news .article p {
    color: #dddddd;
}

#news .time {
    font-size: 15px;
    display: block;
    width: 100%;
    text-align: right;
    color: #ffb27a;
    font-weight: 700;
}

#statistics {
    position: relative;
    width: 100%;
}

.col-1 {
    display: flex;
    width: 100%;
    position: relative;
}

.col-1>div {
    width: 100%;
}

.col-2 {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    position: relative;
}

.col-2>div {
    width: 50%;
    position: relative;
}

.col-2>div:nth-child(1) {
    padding-right: 10px;
}

.col-2>div:nth-child(2) {
    padding-left: 10px;
}

#statistics .loader:not(.mini) {
    position: absolute;
    z-index: 10;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
}

.heading_desc {
    font-size: 14px;
    font-weight: 700;
    color: #dddddd;
    margin-bottom: 10px;
}

.chartjs-render-monitor {
    min-height: 350px;
}

.select2-results__option {
    color: #222;
}

.select2-results__option .con {
    font-weight: 700;
}

#stats-data-table {
    background: #222222;
    width: 100% !important;
    min-width: 100%;
    max-width: 100%;
    overflow-x: auto;
}

#stats-data-table_wrapper {
    overflow: hidden;
}

#stats-data-table_wrapper #stats-data-table {
    display: block;
}

#stats-data-table_wrapper label {
    color: #ffffff;
}

#stats-data-table_filter,
#stats-data-table_paginate {
    margin-bottom: 10px;
    padding: 0px;
    height: 30px;
}

#stats-data-table_length {
    float: right;
    margin-bottom: 10px;
    margin-left: 10px;
}

#stats-data-table_length select {
    padding: 0 5px 0 5px;
    height: 30px;
    background: #333333;
    color: #FFFFFF;
    border: none;
    border-radius: 2px;
}

#reg-search,
#table-search {
    width: 100%;
    margin: 0px;
    font-size: 16px;
    height: 30px;
    padding: 5px 5px;
    font-weight: 700;
    position: relative;
    font-family: "Roboto", "FontAwesome", sans-serif;
}

#reg-search {
    padding: 10px 10px;
    height: 35px;
}

#table-search {
    margin: 0 5px 0 0;
    width: 200px;
}

.table-header {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 0 10px 0;
    z-index: 10;
}

.table-header .dropdownbtn {
    height: 30px;
    padding: 7px 10px 9px;
    margin: 0;
}

.table-header .dropdownbtn>span {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #eeeeee;
}

.table-header .dropdownbtn.show>span {
    border-bottom: 12px solid #eeeeee;
}

.table-header .dropdownlist {
    left: unset;
    right: 0;
}

.dataTables_wrapper .dataTables_filter {
    float: left;
    text-align: left;
}

.dataTables_wrapper #stats-data-table_paginate .paginate_button {
    color: #ffffff !important;
    border: none !important;
    padding: 5px 10px;
}

.dataTables_wrapper #stats-data-table_paginate .paginate_button.previous,
.dataTables_wrapper #stats-data-table_paginate .paginate_button.next {
    background: #093cb5;
}

.dataTables_wrapper #stats-data-table_paginate .paginate_button:hover,
.dataTables_wrapper #stats-data-table_paginate .paginate_button.current {
    background: #165bff !important;
}

table.dataTable thead .sorting {
    background-image: url("../img/sort_both.svg");
}

table.dataTable thead .sorting_desc {
    background-image: url("../img/sort_desc.svg");
}

table.dataTable thead .sorting_asc {
    background-image: url("../img/sort_asc.svg");
}

.dropdownbtn {
    vertical-align: top;
    display: inline-block;
    position: relative;
    background: #444444;
    padding: 9px 10px 6px;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.2s;
    line-height: 1;
    animation: buttonglow 2s infinite;
    height: 0%;
    height: 34px;
    white-space: nowrap;
}

.dropdownbtn>label {
    cursor: pointer;
    margin-right: 10px;
    display: inline-block;
    line-height: 1;
    font-size: 16px;
    user-select: none;
    white-space: nowrap;
}

.dropdownbtn>span {
    display: inline-block;
    position: relative;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 16px solid #eeeeee;
    z-index: 10;
    transition: 0.2s;
}

.dropdownbtn:hover,
.dropdownbtn.show {
    background: #165bff !important;
}

.dropdownbtn:hover>span,
.dropdownbtn.show>span {
    border-top-color: #ffffff;
}

.dropdownbtn.show>span {
    border-top: 0px;
    border-bottom: 16px solid #eeeeee;
}

.dropdownlist {
    display: none;
    cursor: default;
    background: #444;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    top: 40px;
    left: 0px;
    border-top: 5px solid #165bff;
    z-index: 50;
}

.dropdownlist ul {
    display: none;
}

.dropdownlist>ul {
    display: block;
    background: #111111;
    max-height: 300px;
    overflow-y: scroll;
    min-width: 250px;
}

.dropdownbtn.show .dropdownlist,
.reg-filter.show ul {
    display: block;
}

.dropdownbtn ul>li {
    display: block;
}

.dropdownbtn ul>li>div {
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #444444;
    border-bottom: 2px solid #333333;
    white-space: nowrap;
    color: #ffffff;
    user-select: none;
}

.dropdownbtn ul>li>div:hover {
    background: #666666;
}

.dropdownbtn ul>li>div>.label {
    padding: 5px 0 5px 10px;
    margin-right: 10px;
    cursor: pointer;
    width: 100%;
}

.dropdownbtn ul>li>div>.dropdown {
    display: inline-block;
    padding: 5px 8px;
    background: #222222;
    cursor: pointer;
}

.dropdownbtn ul>li>div>.dropdown>span {
    display: inline-block;
    position: relative;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 12px solid #165bff;
    z-index: 100;
    transition: 0.2s;
}

.dropdownbtn ul>li>div>.dropdown:hover {
    background: #333333;
}

.dropdownbtn ul>li>div>.dropdown:hover>span {
    border-top-color: #FFFFFF;
}

.reg-filter.active>div {
    background: #165bff;
}

.reg-filter.show>div {
    background: #144bcc;
}

.reg-filter.show>div:hover {
    background: #165bff;
}

.reg-filter.show .dropdown>span {
    border-top: 0px;
    border-bottom: 12px solid #FFFFFF;
}

.reg-filter ul {
    overflow: unset;
    position: relative;
    top: unset;
    left: unset;
    max-height: none;
    min-width: none;
    width: 100%;
    box-shadow: none;
    border: none;
}

.reg-filter ul::after {
    display: none;
}

.reg-filter ul>li>div {
    background: #333333;
    border-bottom: 2px solid #262626;
    padding-left: 10px;
}

.reg-filter ul>li>div:hover {
    background: #555555;
}

.reg-disabled {
    opacity: 0.7;
}

.reg-disabled>div>.label {
    cursor: default !important;
}

.chart {
    position: relative;
}

.chart.fullscreen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chart-header {
    margin-top: 30px;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.chart-header .btns {
    display: flex;
}

.chart-header .fs_btn_container {
    top: unset;
    left: unset;
    display: inline-block;
    position: relative;
    margin-left: 4px;
    width: auto;
    height: auto;
    padding: 0;
    z-index: 10;
}

.chart-header .fs_btn_container .fs_btn {
    border-width: 5px;
}

.chart-heading {
    display: inline-block;
    max-width: calc(100% - 64px);
}

.chart-heading h3 {
    margin: 0;
}

.chart.fullscreen .chart-header {
    margin-top: 0px;
}

.settings-btn {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #093cb5;
    background-image: url(../img/cog.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: center center;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.settings-btn:hover {
    background-color: #165bff;
}

.settings-btn.open {
    background-color: #165bff;
}

.settings {
    display: none;
    position: absolute;
    background: #333333;
    right: -35px;
    top: 40px;
    z-index: 500;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.settings.show {
    display: flex;
}

.settings::before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    top: -10px;
    right: 39px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #333333;
}

.table-header .settings::before {
    right: 5px;
}

.chart-container {
    height: 350px;
}

.chart.fullscreen .chart-container {
    height: 100%;
    padding: 10px;
}

div.toggle-switch {
    display: inline-block;
    padding: 7px 10px;
    border-right: 1px solid #555555;
    position: relative;
    white-space: nowrap;
}

.dropdownbtn ul>li>div.toggle-switch {
    border-right: none;
    border-bottom: 2px solid #333333;
    padding: 5px 10px;
}

.toggle-switch:last-child {
    border-right: none;
}

.toggle-switch>span {
    display: inline-block;
    position: relative;
    font-size: 14px;
    margin-right: 5px;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
}

.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 22px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(25, 27, 34);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: calc(50% - 4px);
    left: 4px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

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

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

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

#extra-stats {}

#extra-stats.open {}

.expand_btn,
#more-articles-btn {
    margin-top: 10px;
    padding: 5px 10px;
    background: #0052bd;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    max-width: 250px;
}

.expand_btn::after {
    content: "\25bc";
    display: inline-block;
    font-size: 16px;
    margin-left: 5px;
}

.expand_btn.expanded::after {
    content: "\25b2";
}

.expand_btn:hover,
#more-articles-btn:hover {
    background: #2277ff;
}

.map {
    width: 100%;
    height: 600px;
    background: #111111;
}

.map-container {
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
}

.map-container.fullscreen {
    display: flex;
    flex-direction: column;
    margin: 0;
    width: 100vw;
    height: 100vh;
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 5000;
}

.map-container.fullscreen .map {
    width: 100vw;
    height: 100%;
}

.legend.leaflet-control {
    line-height: 18px;
    color: #ddd;
    background: rgba(17, 17, 17, 0.9);
    margin: 0;
    padding: 10px;
}

.legend i {
    width: 18px;
    height: 18px;
    float: left;
    margin-right: 8px;
}

.fs_btn_container {
    position: absolute;
    top: 45px;
    left: 10px;
    z-index: 500;
}

.fs_btn span {
    display: none;
    margin-right: 10px;
}

.fs_btn {
    display: flex;
    align-items: center;
    color: #ffffff;
    background-color: #165bff;
    border: 5px #165bff solid;
    cursor: pointer;
}

.fs_btn>div {
    display: inline-block;
    background-image: url(../img/fullscreen.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    height: 20px;
    width: 20px;
}

div.fullscreen .fs_btn>div {
    background-image: url(../img/exitfullscreen.svg);
}

.fs_btn:hover {
    background-color: #2277ff;
    border-color: #2277ff;
}

.map .swipe-info {
    display: none;
    color: #fff;
    font-family: sans-serif;
    font-size: 24px;
    font-weight: 400;
    justify-content: center;
    align-items: center;
    padding: 15px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    pointer-events: none;
    text-align: center;
}

.map-container.fullscreen .swipe-info {
    z-index: 7000;
}

.map.swiping .swipe-info {
    display: flex;
}

#stats-filter,
#map-stats {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
    position: relative;
    align-items: center;
}

#map-stats {}

#header #stats-filter {
    padding-top: 15px;
}

#stats-filter .reg-selector {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

#stats-filter .dropdownbtn {
    padding: 7px 10px;
}

#stats-filter .dropdownbtn>span {
    background: url(../img/search.svg) no-repeat;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    border: none;
}

input {
    /*display: block;
    width: calc(100% - 10px);
    height: 30px;
    font-size: 16px;
    padding: 5px 10px;
    background: #222;
    border: 1px solid #555;
    color: #FFF;
    margin: 5px;*/
}

#stats-filter #reg-name {
    margin: 0;
    font-weight: 700;
    display: block;
    text-transform: uppercase;
    position: absolute;
    left: 50px;
    white-space: nowrap;
    overflow-x: hidden;
    width: calc(100% - 50px);
}

.tippy-box {
    background: #165bff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.tippy-arrow {
    color: #165bff;
}

.tippy-content {
    text-align: center;
}

.tippy-content span {
    font-size: 12px;
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    padding: 2px 4px;
}

.helper {
    display: inline-block;
    position: absolute;
    bottom: -40px;
    margin: 0;
    background: #165bff;
    line-height: 1;
    padding: 6px;
    font-size: 16px;
    color: #ffffff;
    white-space: nowrap;
    font-weight: 400;
    border-radius: 4px;
    animation: helper 1s infinite alternate;
    z-index: 50;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.helper.left {
    left: 0px;
}

.helper.right {
    right: 0px;
}

.helper::before {
    content: "";
    display: block;
    position: absolute;
    top: -12px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 12px solid #165bff;
}

.helper.left::before {
    left: 6px;
}

.helper.right::before {
    right: 6px;
}

.helper .close_btn {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 5px;
    vertical-align: middle;
}

#stats-filter .stats {
    display: flex;
    flex-shrink: 0;
}

#map-stats .stats {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

#stats-filter .stats .stat {
    border-radius: 4px;
    white-space: nowrap;
}

#map-stats {
    background: #333333;
    border-bottom: solid 2px #333333;
    margin: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 450;
}

#map-stats h3 {
    margin: 0 0 0 10px;
    display: inline-block;
    font-size: 18px;
}

#map-stats .stats .stat {
    border-radius: 0;
    font-size: 16px;
    white-space: nowrap;
}

#map-stats .stats .stat>span {
    padding: 5px 7px;
}

#map-stats .stats .stat .val {
    min-width: 120px;
    text-align: center;
}

#map-stats .stats .stat .val span {
    font-size: 15px;
}

#map-stats .stats .stat:first-child .val {
    min-width: 70px;
}

.DTFC_LeftBodyLiner {
    overflow: unset !important;
}

h1,
h2,
h3,
#stats .stat,
.region-stats table th {
    text-transform: capitalize;
}

.region-stats th {}

.region-stats th.sort-down::after {
    content: "";
    display: inline-block;
    position: relative;
    margin-left: 5px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid #eeeeee;
}

.region-stats th.sort-up::after {
    content: "";
    display: inline-block;
    position: relative;
    margin-left: 5px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #eeeeee;
}

.region-stats table td {
    text-align: left;
    white-space: nowrap;
}

.region-stats td span {
    font-size: 12px;
    padding: 3px 5px;
    margin-left: 5px;
    background: rgb(38, 31, 21);
    vertical-align: middle;
    line-height: 1;
    display: inline-block;
    color: #cccccc;
}

.region-stats td span.up {
    color: rgb(255, 65, 54);
}

.region-stats td span.down {
    color: rgb(23, 172, 40);
}

.region-stats td span::before {
    content: "";
    display: inline-block;
    margin-right: 3px;
    border-top: 1px solid #cccccc;
    width: 5px;
    vertical-align: middle;
    transform: translateY(-1px);
}

.region-stats td span.up::before {
    width: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 10px solid rgb(255, 65, 54);
    border-top: none;
    vertical-align: baseline;
    transform: none;
}

.region-stats td span.down::before {
    transform: translateY(1px);
    width: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 10px solid rgb(23, 172, 40);
    border-bottom: none;
    vertical-align: baseline;
}

.region-stats table th {
    background-color: #444;
}

.region-stats table th:hover {
    background-color: #555;
}

.region-stats table th.confirmed {
    background-color: rgb(137, 14, 155);
    min-width: 60px;
}

.region-stats table th.confirmed:hover {
    background-color: #b10dc9;
}

.region-stats table th.infected {
    background-color: rgb(232, 131, 2);
    min-width: 90px;
}

.region-stats table th.infected:hover {
    background-color: #ffae00;
}

.region-stats table th.deaths {
    background-color: rgb(195, 53, 44);
    min-width: 55px;
}

.region-stats table th.deaths:hover {
    background-color: #ff4136;
}

.region-stats table th.recovered {
    background-color: rgb(21, 133, 34);
    min-width: 60px;
}

.region-stats table th.recovered:hover {
    background-color: #17ac28;
}

.region-stats table th.new,
.region-stats table th.hundredk {
    min-width: 40px;
}

.region-stats table th.percent {
    min-width: 35px;
}

.region-stats table td.area {
    width: 100%;
}

.region-stats table td.confirmed {
    background-color: rgba(133, 10, 151, 0.2);
}

.region-stats table td.confirmed.new,
.region-stats table td.confirmed.hundredk {
    background-color: rgba(177, 13, 201, 0.30);
}

.region-stats table td.confirmed:hover,
.region-stats table td.confirmed.new:hover,
.region-stats table td.confirmed.hundredk:hover {
    background-color: rgba(177, 13, 201, 1) !important;
}

.region-stats table td.infected {
    background-color: rgba(255, 143, 0, 0.3);
}

.region-stats table tr:nth-child(2n) td.infected {
    background-color: rgba(255, 143, 0, 0.4);
}

.region-stats table td.infected:hover {
    background-color: rgba(255, 143, 0, 1) !important;
}

.region-stats table td.infected.percent {
    color: rgb(255, 236, 182);
}

.region-stats table td.deaths {
    background-color: rgba(255, 65, 54, 0.2);
}

.region-stats table td.deaths.new,
.region-stats table td.deaths.hundredk,
.region-stats table td.deaths.percent {
    background-color: rgba(255, 65, 54, 0.35);
}

.region-stats table td.deaths:hover,
.region-stats table td.deaths.new:hover,
.region-stats table td.deaths.hundredk:hover,
.region-stats table td.deaths.percent:hover {
    background-color: rgba(255, 65, 54, 0.8) !important;
}

.region-stats table td.deaths.percent {
    color: rgb(255, 211, 197);
}

.region-stats table td.recovered {
    background-color: rgba(23, 172, 40, 0.2);
}

.region-stats table td.recovered.new,
.region-stats table td.recovered.hundredk,
.region-stats table td.recovered.percent {
    background-color: rgba(23, 172, 40, 0.35);
}

.region-stats table td.recovered:hover,
.region-stats table td.recovered.new:hover,
.region-stats table td.recovered.hundredk:hover,
.region-stats table td.recovered.percent:hover {
    background-color: rgba(23, 172, 40, 1) !important;
}

.region-stats table td.recovered.percent {
    color: rgb(191, 232, 162);
}

.region-stats table tr:hover td {
    background-color: rgba(255, 255, 255, 1);
}

.region-stats table tr:hover td.confirmed {
    background-color: rgba(186, 14, 212, 0.6);
}

.region-stats table tr:hover td.infected {
    background-color: rgba(255, 143, 0, 0.8);
}

.region-stats table tr:hover td.deaths {
    background-color: rgba(255, 65, 54, 0.6);
}

.region-stats table tr:hover td.recovered {
    background-color: rgba(23, 172, 40, 0.6);
}

.row {
    height: calc(50% - 22px);
    overflow: auto;
}

#toggle_fullscreen {
    position: relative;
    display: block;
    height: 5px;
}

#toggle_fullscreen .fs_btn {
    position: absolute;
    top: 0;
    right: 0;
}

#about .sources {
    font-size: 14px;
}

#about .sources span {
    font-weight: bold;
    display: block;
    font-size: 16px;
    margin-bottom: 2px;
}

#section-scroller {
    width: 100%;
    display: block;
}

.swipe {
    overflow: hidden;
    visibility: hidden;
    position: relative;
}

.swipe-wrap {
    padding-top: 20px;
    overflow: hidden;
    position: relative;
}

.swipe-wrap>div {
    float: left;
    width: 100%;
    position: relative;
}

.tab-section {
    padding: 0 10px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

.tab-section h2:first-child {
    margin-top: 0px;
}

#about .translations {
    font-size: 16px;
}

.spacer-sml {
    display: block;
    width: 100%;
}

.spacer-sml {
    height: 20px;
}

.bmc-button img {
    height: 25px !important;
    vertical-align: middle !important;
    animation: coffee 3s infinite;
    padding: 2px 0;
}

.bmc-button {
    display: inline-block;
    text-decoration: none !important;
    color: #ffffff !important;
    max-height: 36px;
    background-color: #ec7434 !important;
    border: 1px solid transparent !important;
    padding: 2px 8px !important;
    font-size: 20px !important;
    font-family: sans-serif !important;
    box-sizing: border-box !important;
    float: right;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    margin-top: 3px;
}

.bmc-button:hover,
.bmc-button:active,
.bmc-button:focus {
    text-decoration: none !important;
    background-color: #ffb24d !important;
    color: #ffffff !important;
}

.bmc-button span {
    font-size: 16px;
    line-height: 1;
    margin-left: 10px;
}

.tw-button img {
    height: 25px !important;
    padding: 2px 0;
    vertical-align: middle !important;
}

.tw-button {
    display: inline-block;
    text-decoration: none !important;
    color: #ffffff !important;
    max-height: 36px;
    background-color: rgb(29, 161, 242) !important;
    border: 1px solid transparent !important;
    padding: 2px 8px !important;
    font-size: 20px !important;
    font-family: sans-serif !important;
    box-sizing: border-box !important;
    float: right;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    margin-top: 3px;
    margin-right: 2px;
}

.tw-button:hover,
.tw-button:active,
.tw-button:focus {
    text-decoration: none !important;
    background-color: rgb(0, 130, 211) !important;
    color: #ffffff !important;
}

.tw-button span {
    font-size: 16px;
    line-height: 1;
    margin-left: 5px;
}

.mobile-only {
    display: none;
}

#about,
#faq {
    text-align: center;
}

#about .container,
#faq .container {
    max-width: 700px;
    margin: 0 auto;
}

#about p,
#faq p {
    font-size: 18px;
    margin-bottom: 10px;
}

#faq table {
    font-size: 18px;
}

#about h2,
#faq h2 {
    font-size: 30px;
}

#about h3,
#faq h3 {
    background: #333;
    padding: 8px;
    font-size: 22px;
}

#about .bmc-button {
    border-radius: 5px;
    float: none;
    display: inline-block;
    margin-top: 20px;
}

#about .tw-button {
    border-radius: 5px;
    float: none;
    display: inline-block;
    margin-top: 10px;
}

#stats-data-table thead th:first-child {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
}

#stats-data-table tbody tr td:first-child {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    background: #292929;
}

#stats-data-table tbody tr:hover td:first-child {
    background: #545454;
}

#stats-data-table tbody tr:nth-child(2n) td:first-child {
    background: #353535;
}

#stats-data-table tbody tr:hover:nth-child(2n) td:first-child {
    background: #5d5d5d;
}

@media (max-width: 1200px) {
    #header,
    #header.stuck {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 150;
    }
    #stats {
        float: none;
        display: flex;
        margin-bottom: 10px;
    }
    #stats .stat {
        display: flex;
        width: 100%;
        border-radius: 0;
    }
    #stats .stat.recovered {
        margin-right: 0;
    }
    .stat>span {
        padding: 8px 8px;
        width: 100%;
        white-space: nowrap;
    }
    #stats #language {
        display: inline-block;
        position: absolute;
        top: 0px;
        right: 10px;
        width: auto;
    }
    #stats #language ul {
        right: -10px;
        width: 100vw;
        padding: 0 10px;
        text-align: center;
        border-top-width: 10px;
    }
    #stats #language ul>li>a {
        padding: 10px 10px;
        color: #ffffff;
    }
    #stats-filter,
    #map-stats {
        display: block;
    }
    #stats-filter .stats,
    #map-stats .stats {
        display: flex;
        margin-top: 5px;
    }
    #stats-filter .stats .stat,
    #map-stats .stats .stat {
        float: none;
        width: 100%;
        display: flex;
    }
    #header #stats-filter .stats {
        display: none;
    }
    #notice {
        position: fixed;
        bottom: 10px;
        left: 10px;
        right: 10px;
        z-index: 200;
    }
    .swipe-wrap {
        padding-top: 0;
    }
    .tab-section {
        width: 100vw !important;
        max-height: calc(100vh - 5px);
        overflow-y: auto;
        padding-top: 150px;
    }
    .fs_btn_container {
        top: 76px;
    }
    #map-stats {
        display: none;
        padding: 10px 10px 0px 10px;
    }
    .fullscreen #map-stats {
        display: block;
    }
    #map-stats h3 {
        margin: 0 0 8px 50px;
        font-size: 18px;
    }
    #map-stats .stat:last-child {
        margin-right: 0;
    }
    #map-stats .stats .stat .val {
        min-width: unset;
    }
    .fs_btn {
        border-width: 10px;
    }
    .fs_btn_container {
        display: flex;
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: flex-end;
        top: 0px;
        left: 0px;
        background: rgba(0, 0, 0, 0);
        padding: 10px;
    }
    .fullscreen .fs_btn_container {
        height: auto;
        width: auto;
        padding-top: 0;
    }
    .fs_btn span {
        display: inline-block;
    }
    .fullscreen .fs_btn span {
        display: none;
    }
    #lightbox .content {
        width: 100%;
        height: 100%;
    }
    #stats-data-table_filter {
        float: none;
    }
}

@media (max-width: 767px) {
    .table-header {
        position: relative;
        width: 100%;
    }
    #table-search,
    #reg-search {
        width: 100%;
    }
    #reg-search {
        margin: 5px 0;
    }
    #header .tw-button {
        display: none;
    }
    #about p {
        font-size: 16px;
    }
    #header .bmc-button {
        padding: 5px 0 !important;
        width: 40px !important;
        float: none;
        position: absolute;
        border-radius: 0;
        top: 0;
        left: 10px;
        text-align: center;
        margin-top: 0;
    }
    #header .bmc-button span {
        display: none;
    }
    div.toggle-switch {
        padding: 7px 6px;
    }
    .tab-section {
        padding-top: 160px;
    }
    #stats,
    #stats-filter .stats,
    #map-stats .stats {
        margin-bottom: 5px;
        display: block;
    }
    #stats .stat,
    #stats-filter .stats .stat,
    #map-stats .stats .stat {
        width: 100%;
        margin-bottom: 3px;
    }
    #stats .stat>span,
    #stats-filter .stat>span,
    #map-stats .stats .stat>span {
        width: 50%;
        padding: 4px 7px;
    }
    #logo {
        max-width: 250px;
        width: calc(100vw - 120px);
        height: 37px;
        margin: 0 auto 10px auto;
        display: block;
    }
    #stats #language {
        top: 0;
    }
    #header #stats {
        overflow-y: auto;
        overflow-x: hidden;
    }
    #header #logo {
        max-width: 250px;
        margin-bottom: 2px;
    }
    #header #stats .stat:not(#language) {
        width: calc(50% - 2px);
        margin: 4px 2px 0 0;
        float: left;
    }
    #header #stats .stat:not(#language):nth-child(2n) {
        margin: 4px 0 0 2px;
    }
    #header #stats .stat .name {
        display: none;
    }
    #header #stats .stat .val {
        background: none;
        width: 100%;
        font-size: 16px;
    }
    #header #stats .stat::before {
        content: "";
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        min-width: 20px !important;
        display: block;
        margin-left: 5px;
        box-sizing: border-box;
    }
    #update_time::before {
        background-image: url(../img/time.svg);
    }
    #header #stats .stat.confirmed::before {
        background-image: url(../img/danger.svg);
    }
    #header #stats .stat.deaths::before {
        background-image: url(../img/cross.svg);
        min-width: 16px !important;
        margin-left: 7px;
    }
    #header #stats .stat.recovered::before {
        background-image: url(../img/tick.svg);
    }
    #switcher {
        margin-top: 6px;
        display: flex;
    }
    #switcher .tab {
        margin: 0 2px 0 0;
        padding: 5px 5px;
        width: 100%;
        border-radius: 0;
    }
    #switcher .tab.about {
        width: auto;
        padding: 5px 9px;
        font-size: 0;
    }
    #switcher .tab.about::before {
        content: "?";
        display: inline;
        font-size: 22px;
        line-height: 22px;
    }
    #switcher .tab:last-child {
        margin-right: 0;
    }
    .col-1 {
        display: block;
    }
    .col-2 {
        display: block;
    }
    .col-2>div {
        width: 100%;
        position: relative;
        padding: 0 !important;
    }
    .dropdownbtn ul {
        top: 40px;
        right: 0;
        width: calc(100vw - 20px);
        text-align: center;
    }
    .dropdownbtn ul>li>div>.label {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .dropdownbtn ul>li>div>.dropdown {
        padding: 10px 12px;
    }
    .reg-filter ul {
        top: unset;
    }
    .region-stats .body {
        height: auto;
    }
    .region-stats table td:first-child {
        white-space: normal;
    }
    .hide-mobile {
        display: none;
    }
    .mobile-only {
        display: block;
    }
    .map {
        height: 350px;
    }
    .legend {
        display: none;
    }
    .leaflet-control-container .leaflet-control {
        margin: 0;
    }
    #news .article .desc {
        clear: both;
    }
    .region-stats th.sort-down::after,
    .region-stats th.sort-up::after {
        display: block;
        margin: 5px auto 0;
    }
    .chrt-settings {
        width: 100%;
    }
}