@charset "UTF-8";
.branch-bar {
  position: fixed;
  bottom: 0;
  right: 0;
  min-width: 200px;
  z-index: 20000;
  z-index: var(--branch-bar-z-index, 20000);
  background-color: #00b2a9;
  background-color: var(--branch-bar-bg-color, #00b2a9);
  color: #fff;
  color: var(--branch-bar-color-light, #fff);
  padding: 10px;
  padding-top: 30px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 10px var(--branch-bar-shadow-color, rgba(0, 0, 0, 0.4));
          box-shadow: 0 0 10px var(--branch-bar-shadow-color, rgba(0, 0, 0, 0.4));
  opacity: 1;
  -webkit-transition: opacity 500ms ease-out;
  transition: opacity 500ms ease-out;
  visibility: visible;
}
.branch-bar--minified {
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
  opacity: 0.3;
  min-width: 0;
  min-height: 0;
  padding-top: 10px;
  border-top-left-radius: 3px;
}
.branch-bar--minified .branch-bar__content-col {
  height: 0;
  width: 0;
  opacity: 0;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  visibility: hidden;
}
.branch-bar--minified .branch-bar__toggle {
  display: none;
}
.branch-bar--minified .branch-bar__toggle::before {
  content: "▲";
}
.branch-bar--minified .branch-bar__preview {
  text-align: left;
}
.branch-bar--minified .branch-bar__preview-icon {
  display: inline-block;
}
.branch-bar--minified .branch-bar__branch-selector-label {
  display: none;
}
.branch-bar--minified .branch-bar__branch-selector-text {
  display: block;
}
.branch-bar--minified .branch-bar__branch-selector {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  opacity: 0;
}
.branch-bar--hidden {
  opacity: 1;
  visibility: hidden;
}
.branch-bar:hover {
  opacity: 1;
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
}
.branch-bar__label {
  font-weight: bold;
  display: block;
  margin: 0.2em 0;
}
.branch-bar__toggle {
  height: 26px;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 3px;
  padding-bottom: 3px;
  width: 100%;
  text-align: center;
  cursor: pointer;
}
.branch-bar__toggle:hover {
  background: rgba(#fff, 0.2);
  background: rgba(var(--branch-bar-color-light, #fff), 0.2);
}
.branch-bar__toggle::before {
  content: "▼";
}
.branch-bar__content-col {
  height: auto;
  width: auto;
  visibility: visible;
  opacity: 1;
  overflow: hidden;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 8px;
  margin-bottom: 8px;
  border-top: 1px solid rgba(#fff, 0.2);
  border-top: 1px solid rgba(var(--branch-bar-color-light, #fff), 0.2);
}
.branch-bar__select {
  color: #000;
  color: var(--branch-bar-color-dark, #000);
  width: 100%;
  max-width: 300px;
}
.branch-bar__button {
  color: #000;
  color: var(--branch-bar-color-dark, #000);
  border: 1px solid #fff;
  border: 1px solid var(--branch-bar-color-light, #fff);
  border-radius: 2px;
}
.branch-bar__preview {
  text-align: left;
  display: -ms-flexbox;
  display: flex;
}
.branch-bar__preview-title {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
}
.branch-bar__preview-icon {
  width: 30px;
  height: 30px;
  fill: currentColor;
  vertical-align: middle;
  margin-left: 20px;
  margin-top: auto;
  margin-bottom: auto;
  display: none;
  cursor: pointer;
  -webkit-filter: drop-shadow(0 0 1px rgba(#fff, 0));
          filter: drop-shadow(0 0 1px rgba(#fff, 0));
  -webkit-filter: drop-shadow(0 0 1px rgba(var(--branch-bar-color-light, #fff), 0));
          filter: drop-shadow(0 0 1px rgba(var(--branch-bar-color-light, #fff), 0));
  -webkit-transition: fill 200ms ease-out, -webkit-filter 200ms ease-out;
  transition: fill 200ms ease-out, -webkit-filter 200ms ease-out;
  transition: filter 200ms ease-out, fill 200ms ease-out;
  transition: filter 200ms ease-out, fill 200ms ease-out, -webkit-filter 200ms ease-out;
}
.branch-bar__preview-icon:hover {
  -webkit-filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff);
          filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff);
  -webkit-filter: drop-shadow(0 0 2px var(--branch-bar-color-light, #fff)) drop-shadow(0 0 2px var(--branch-bar-color-light, #fff)) drop-shadow(0 0 2px var(--branch-bar-color-light, #fff)) drop-shadow(0 0 2px var(--branch-bar-color-light, #fff));
          filter: drop-shadow(0 0 2px var(--branch-bar-color-light, #fff)) drop-shadow(0 0 2px var(--branch-bar-color-light, #fff)) drop-shadow(0 0 2px var(--branch-bar-color-light, #fff)) drop-shadow(0 0 2px var(--branch-bar-color-light, #fff));
  fill: #00b2a9;
  fill: var(--branch-bar-bg-color, #00b2a9);
}
.branch-bar__preview-icon svg {
  max-width: 100%;
  height: auto;
}
.branch-bar__selector-form {
  display: inline;
}
.branch-bar__branch-selector-text {
  position: relative;
  z-index: 1;
  display: none;
}
.branch-bar__branch-selector-label {
  display: block;
}
.branch-bar__branch-selector {
  width: 100%;
  cursor: pointer;
  color: #000;
  color: var(--branch-bar-color-dark, #000);
}

/*# sourceMappingURL=styles.css.map */

.header{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between}.header .header-top-wrap{display:-ms-flexbox;display:flex;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:start;align-items:flex-start;-ms-flex-positive:1;flex-grow:1}@media(max-width: 1170px){.header .header-top-wrap{display:block}}.header .header-main{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding-right:2rem;-ms-flex-positive:1;flex-grow:1}@media(max-width: 770px){.header .header-main{display:block}}.header .header-main h1{margin:0 0 .3rem;line-height:1}@media(max-width: 770px){.header .header-main h1{font-size:1.4em}}.header .header-main .subtitle{margin-bottom:0}@media(max-width: 770px){.header .header-h1-wrap{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;margin-bottom:.6rem}}.header .logo{background-color:#e80a9a;border-radius:100%;height:4rem;width:4rem;-ms-flex-negative:0;flex-shrink:0;text-align:center;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;color:#fff;font-size:1.3rem;margin-right:.9em;text-decoration:none}.header .logo:visited,.header .logo:hover{color:#fff}.header .logo--mobile{display:none}@media(max-width: 770px){.header .logo{margin-right:.5em}.header .logo--mobile{display:-ms-flexbox;display:flex}.header .logo--desktop{display:none}}.header form#covid-settings{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}@media(min-width: 1170px){.header form#covid-settings{-ms-flex-negative:0;flex-shrink:0}}@media(max-width: 540px){.header form#covid-settings{margin-top:1rem;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-align:end;align-items:flex-end}.header form#covid-settings .settings-block:first-child{padding-right:.6em}.header form#covid-settings .covid-data-period-input{width:100%;margin-right:0}}@media(max-width: 340px){.header form#covid-settings{-ms-flex-wrap:wrap;flex-wrap:wrap}}.navigation{width:100%;margin-top:1.4rem;margin-bottom:1.5rem;border-bottom:3px solid #444}.navigation.navigation-mobile{display:none;margin:.5em 0 1em;border-bottom:none}.navigation.navigation-mobile select{margin-top:0;padding:.58rem 1em;width:100%;font-family:"Lato",Helvetica,Arial,sans-serif;font-size:1rem;border:1px solid #dadada}.navigation .navigation__item{display:inline-block;padding:1rem;color:#000;text-decoration:none}@media(max-width: 760px){.navigation .navigation__item{margin:.2rem;padding:.6rem .8rem;font-size:.9rem}}.navigation .navigation__item:hover{background:#c4c4c4}.navigation .navigation__item.active{background-color:#444;color:#fff}@media(max-width: 500px){.navigation.navigation-desktop{display:none}.navigation.navigation-mobile{display:block}}*,*::before,*::after{-webkit-box-sizing:border-box;box-sizing:border-box}html,body{font-size:16px;background-color:#f0f0f0;max-width:100%;margin:0;padding:0;height:100%;font-family:"Lato",Helvetica,Arial,sans-serif}body{min-height:100%}img{max-width:100%}button{font-size:1rem;font-family:"Lato",Helvetica,Arial,sans-serif}@media(max-width: 540px){canvas{max-height:500px;max-height:90vh}}.flex{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center}@media(max-width: 700px){.setting-left{margin-bottom:.5rem}}.setting-space-right{margin-right:3em}@media(max-width: 540px){.setting-space-right{margin-right:0}}.btn{background-color:#fff;border:1px solid #dadada;padding:.5em 1em;cursor:pointer}@media(max-width: 540px){.btn{padding:.4em .5em;font-size:.9em}}.btn:focus{outline:1px solid #909090}[role=button]{cursor:pointer}.colors{margin:.5em 0;margin-left:-8px;margin-right:-8px}.colors--buttons{margin-left:-3px}.colors .color{position:relative;margin:2px 8px;display:inline-block}.colors .color-box{display:inline-block;width:12px;height:12px}.colors .color-remove{position:relative;top:-3px;background:#ccc;font-size:12px;line-height:1;margin-left:4px;color:#fff;display:inline-block;padding-top:1px;text-align:center;width:16px;border-radius:100%;height:16px;-webkit-transition:background-color .2s;transition:background-color .2s}.colors button.color{border:1px solid #d0cfcf;border-radius:3px;background:#fff;cursor:pointer;margin:3px;padding:2px 4px 2px 6px}.colors button.color:hover .color-remove,.colors button.color:focus .color-remove{background:#333}.delay-label{background:rgba(0,0,0,.8);border-radius:5px;color:#fff;font-weight:bold;font-size:.9em;padding:.3em .5em;margin-right:.2em}.covid-setting-heading{display:block;font-size:.95rem;font-weight:bold;padding-top:1em;margin-bottom:.5em;margin-right:1em}@media(max-width: 540px){.covid-setting-heading{padding-top:.2em}}.covid-data-period-input,.covid-rate-days-input{font-family:"Lato",Helvetica,Arial,sans-serif;font-size:1rem;border:1px solid #dadada;margin-top:0;height:44px}.covid-data-period-input{padding:.5rem 1rem;width:240px;border-radius:0;margin-right:1em}.covid-rate-days-input{padding:.58rem 1em;min-width:120px}.chart-tooltip{opacity:0 !important;position:absolute;min-width:180px;color:#fff;background:rgba(0,0,0,.7);border-radius:6px;transition:all .25s ease-in-out;-moz-transition:all .25s ease-in-out;-webkit-transition:all .25s ease-in-out}.chart-tooltip.tooltip-visible{opacity:1 !important}.chart-tooltip table,.tooltip-data{color:#fff;font-size:.8rem}.tooltip-title{font-weight:bold;font-size:.86rem;margin:.3rem 0 .5rem}.tooltip-color-label{display:inline-block;width:14px;border:1px solid #fff;height:14px;margin-right:.3rem;margin-bottom:-2px}#total-line-chart-tooltip .tooltip-data{-webkit-column-count:2;-moz-column-count:2;column-count:2;-webkit-column-gap:2px;-moz-column-gap:2px;column-gap:2px}@media(max-width: 730px){.chart-tooltip-container{position:relative}.chart-tooltip{opacity:1 !important;display:none;top:0 !important;left:0 !important;margin-top:20px;background:rgba(0,0,0,.8)}#dead-chart-tooltip,#hospital-line-chart-tooltip,#critical-line-chart-tooltip{top:auto !important;bottom:45px !important}.chart-tooltip.tooltip-visible{display:block}.tooltip-data{-webkit-column-count:2;-moz-column-count:2;column-count:2;-webkit-column-gap:2px;-moz-column-gap:2px;column-gap:2px}}.tooltip-highlight{font-size:1.2em;font-weight:bold}.color-blue{color:#0293d6}.color-gray{color:#707070}.color-orange{color:#ff8400}.color-green{color:#74b901}.color-red{color:red}.page-wrap{padding:1rem 2rem 3rem;width:1400px;margin:auto;max-width:100%}h1{font-size:2rem;line-height:1.3;margin:1rem 0 .1rem}h4{margin:auto;text-align:center}.center{text-align:center}.subtitle{margin:0 0 1rem;line-height:1.5}@media(max-width: 540px){.page-wrap{padding:.5rem 1rem 3rem}h1{font-size:1.8rem;line-height:1.2;margin:.5rem 0}.subtitle{font-size:.8rem}}.text-link{color:#000}.text-link:hover,.text-link:visited{color:#000}.block .extra-change-info{font-size:1rem;margin:0 0 1rem;font-weight:400;display:inline-block}@media(max-width: 525px){.block .extra-info,.block .extra-change-info{font-size:.8em}}.block .semi-sized{font-size:1.5rem}@media(max-width: 525px){.block .semi-sized{font-size:1.1em}}.block .change-bold{font-weight:bold}p.count-info{font-size:.9em;font-weight:normal}.change-count{display:inline-block;margin-top:-14px;font-weight:bold;margin-left:.2em;position:relative}.extra-change-info .change-count{font-size:1em}.extra-change-info.semi-sized .change-count{font-size:.8em}p.count-confirmed--with-info{margin-bottom:.2em}p.count-confirmed-change-info{position:relative;font-size:.8em;font-weight:normal;margin:0 0 .3em}.is-today{font-weight:900}.can-change{background:#f5f5f5}.can-change.can-change--last td{border-bottom:3px solid #000}.can-change.can-change--last td:first-child{position:relative}.can-change.can-change--last td:first-child::before{content:"Viive";position:absolute;left:-14px;font-size:11px;bottom:-9px;background:rgba(0,0,0,.8);padding:2px 4px;border-radius:3px;color:#fff}@media(max-width: 780px){select{margin-top:1.6em;font-size:16px}}@media(max-width: 500px){select{margin-top:.5em}}#select-total-per-day,#area-total-select{margin-top:0}.section-blocks{display:-ms-flexbox;display:flex;margin-left:-1rem;margin-right:-1rem;margin-bottom:1rem}.section-blocks>.block{-ms-flex:1 1 auto;flex:1 1 auto;width:33.333%;margin:0 1rem 1rem;position:relative}.section-blocks>.block .block-data-updated{font-size:.8em;color:#666;margin-bottom:-10px}.section-blocks>.block .block-update-info{color:#666;font-size:.8em;margin:0 0 -9px}.section-blocks>.block .block-heading-extra{font-size:.8em}.section-blocks .inner-block{padding:1rem 2rem;background:#fff}.section-blocks.transparent-bg>.block{background-color:rgba(0,0,0,0)}.section-blocks.transparent-bg>.block .inner-block{background-color:rgba(0,0,0,0)}.section-blocks.align-left>.block{text-align:left}@media(max-width: 992px){.section-blocks{margin-left:-0.5rem;margin-right:-0.5rem;margin-bottom:0}.section-blocks>.block{margin:0 .5rem 1rem}.section-blocks .inner-block{padding:.8rem}}@media(max-width: 780px){.section-blocks{-ms-flex-wrap:wrap;flex-wrap:wrap}.section-blocks>.block{display:-ms-flexbox;display:flex}.section-blocks .inner-block{padding:.5rem .3rem;width:100%}}@media(min-width: 541px){.section-blocks>.block{background-color:#fff}}@media(max-width: 540px){.section-blocks{margin-left:-0.5rem;margin-right:-0.5rem;margin-bottom:1rem}.section-blocks+.subtitle{margin-top:1em}.section-blocks h3{font-size:1rem;margin:.8rem 0}.section-blocks>.block{padding:.3rem;margin:0;width:100%}.section-blocks>.block.mobile-100{width:100%}}.section-header{background:#4a4a4a;padding:1rem;color:#fff;margin:2rem 0 1rem 0;font-size:1.2em}@media(max-width: 760px){.section-header{padding:.8rem;font-size:1.1rem}}.page-caption{font-size:1.5rem;line-height:1.3;margin-top:.5rem}.section{display:-ms-flexbox;display:flex}.section>div{-ms-flex:1 1 auto;flex:1 1 auto}@media(max-width: 920px){.section-fifty{display:block}}.section-fifty>div{width:50%}@media(max-width: 920px){.section-fifty>div{width:auto}}@media(max-width: 940px){.section-narrow-wide{display:block}}.section-narrow-wide .section-content-narrow{width:35%}@media(max-width: 10250px){.section-narrow-wide .section-content-narrow{width:40%}}@media(max-width: 940px){.section-narrow-wide .section-content-narrow{width:auto}}.section-narrow-wide .section-content-wide{width:65%}@media(max-width: 10250px){.section-narrow-wide .section-content-wide{width:60%}}@media(max-width: 940px){.section-narrow-wide .section-content-wide{width:100%}}.chart-container{padding:1em}@media(max-width: 730px){.chart-container{padding-left:0;padding-right:0;position:relative;margin:auto;height:300px !important;height:70vh !important}}.chart-info{font-size:.9em}.chart-data-info{font-size:.8em;text-align:right;color:#a4a4a4}.section .new-per-day{overflow:auto;max-height:480px;padding:1rem;background:#fff;width:30%;-ms-flex-positive:0;flex-grow:0;margin-top:.5rem;margin-right:5%}@media(max-width: 940px){.section .new-per-day{max-height:370px;width:35%;-ms-flex-negative:0;flex-shrink:0;margin-right:0}}.align-right{text-align:right}.table{text-align:left;font-size:.9em;background:#fff;width:100%;border-collapse:collapse}.table td,.table th{border-bottom:1px solid #e8e8e8;padding:.4rem}.table.slim td,.table.slim th{padding:.4rem .4rem .4rem 0}.table.slim td:first-child,.table.slim th:first-child{padding-left:.4rem}@media(max-width: 400px){.table.slim td:first-child,.table.slim th:first-child{max-width:85px}}.table.table-sortable th{font-weight:bold;cursor:pointer;vertical-align:bottom}.table.table-sortable th.sorting{text-decoration:underline}.js-table-dataset-click td{cursor:pointer}.js-table-dataset-click tr:hover td{background-color:#e0e0e0}.table-container{max-height:542px;overflow:auto;margin-right:1em}@media(max-width: 940px){.table-container{max-height:320px;margin-right:0;margin-bottom:1em}}#municipality-chart-areas{padding-left:1em;margin-bottom:1em}@media(max-width: 940px){#municipality-chart-areas{padding-left:0}}#municipality-total-table td:first-child{max-width:none;min-width:80px;word-break:break-word}.new-per-day table{width:100%;border-collapse:collapse;text-align:right}.new-per-day table td{border-bottom:1px solid #e8e8e8;padding:.4rem}.new-per-day table td:first-child{width:100px}.section .new-per-day-chart{width:70%}.section .new-per-day-chart .chart-container{height:480px;padding:1rem 0 0}.full-width-chart{height:500px}.chart-options-mobile{display:none}.total-per-day-options{text-align:center;margin-bottom:0}@media(max-width: 768px){.full-width-chart{height:auto}.chart-options-desktop{display:none}.chart-options-mobile{display:block}}@media(max-width: 768px){.section .new-per-day-chart .chart-container{height:auto}}@media(max-width: 768px){.section .new-per-day-chart{width:65%}.section .new-per-day-chart .chart-container{padding-right:0;padding-left:1rem}}@media(max-width: 540px){.section-header{margin-top:1rem}.section{display:block}.section .new-per-day{max-height:239px;width:auto;overflow:hidden}.new-per-day tr:nth-child(n+7){display:none}.section .new-per-day-chart{width:auto}.section .new-per-day-chart .chart-container{padding:1.5rem 0}}.new-per-day-helper{margin-top:-1em;float:right;position:relative;color:#545454}.new-per-day-helper span{position:absolute;color:#000;top:-0.4em;left:-1em;font-size:2em}@media(max-width: 430px){.new-per-day-helper{display:none}}#new-change-chart-container{display:none}#new-change-chart-container.visible{display:block}.covid-data-period-helper{font-size:.8em;color:#848383}@media(max-width: 686px){.covid-data-period-helper{display:block;margin-top:.3em}}.chart-data-type{margin-bottom:1.5em}@media(max-width: 580px){.chart-data-type{margin-bottom:1em}}.chart-data-type-heading{text-transform:uppercase;letter-spacing:1px;font-weight:bold;font-size:.9em}@media(max-width: 580px){.chart-data-type-heading{display:block;margin-bottom:.5em}}.chart-data-type label{margin-left:1em;cursor:pointer}@media(max-width: 580px){.chart-data-type label{margin:0 0 .5em 0;display:block;text-align:left}}.chart-data-type label:last-child{margin-bottom:0}@media(max-width: 580px){.chart-data-type-labels{display:block}}.section-content-wide .chart-data-type{margin-bottom:1em}.update-date{font-size:.9em;font-weight:bold}.site-notice{background:gray;margin:0;padding:.4em 1em;color:#fff;text-align:center}.site-notice--error{background-color:#b52200}.site-notice--warning{background-color:#d28745}.multiselect{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;max-height:300px;overflow:auto}.multiselect-item{width:25%}@media(max-width: 540px){.multiselect-item{font-size:.9em}}@media(min-width: 941px)and (max-width: 1099px){.multiselect-item{width:33.333%}}@media(max-width: 768px){.multiselect-item{width:33.333%}}@media(max-width: 650px){.multiselect-item{width:50%}}.multiselect-item label{display:block;padding:.4em .5em;cursor:pointer}.multiselect-item input{margin-right:.4em}@media(max-width: 540px){.multiselect--long-words{display:block}.multiselect--long-words .multiselect-item{width:100%}}.multiselect-count{display:inline-block;white-space:nowrap;margin-top:.2em}.dropdown{position:relative}.dropdown-btn{background-color:#fff;border:1px solid #dadada;padding:.5em 1em;margin-right:.5em;cursor:pointer}.dropdown-btn:focus{outline:1px solid #909090}.dropdown-btn:hover{background-color:#2f2f2f;color:#fff}.dropdown-btn::after{content:"»";display:inline-block;margin-left:.2em}.dropdown-actions{margin-bottom:1em}.dropdown-content{position:absolute;top:40px;padding:1em;background:#fff;border:1px solid #dadada;display:none;z-index:1}.dropdown-content--relative{top:auto}@media(max-width: 540px){.dropdown-content--relative{top:40px}}@media(max-width: 540px){.dropdown-content{width:100%}}.dropdown-close{margin-top:.5em;float:right}.dropdown-help{margin:1.5em 0 0;color:#525252;float:left;font-size:.8em}.dropdown.open .dropdown-content{display:block}@keyframes rotate{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes rotate{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg)}}.is-loading>*{opacity:.4}.is-loading .loader{opacity:1;position:absolute;top:3em;left:50%;padding:.8em 1.4em;-webkit-transform:translate(0, -50%);transform:translate(-50%, 0%);border-radius:5px;font-size:1.2em;color:#fff;background:#333;-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex}@media(max-width: 500px){.is-loading .loader{width:80%}}.is-loading .loader::before{content:" ";display:block;-ms-flex-negative:0;flex-shrink:0;margin-right:.5rem;border-top:8px solid #e80a9a;border-right:8px solid #a5a0a0;border-bottom:8px solid #fbbc05;border-left:8px solid #34a853;border-radius:50%;width:36px;height:36px;-webkit-animation:rotate 2s linear infinite;animation:rotate 2s linear infinite}#pages.is-loading>.loader{top:50vh;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);position:fixed}@media(max-width: 500px){#pages.is-loading>.loader{top:40%;position:fixed;-webkit-transform:none;transform:none;width:90%;left:5%}}#pages{overflow:hidden}.page-section{display:none}.page-section .loader{top:50%}.page-section.active{display:block}.page-section .section-header:first-child{margin-top:0}.fifty-title{margin-bottom:1rem}#dead-cumulative-multiselect .multiselect-item{width:100%}footer{margin-top:2em;background-color:#4a4a4a;color:#fff}footer .info{text-align:center;font-size:.9rem;width:1200px;line-height:1.6;padding:1.6rem .5rem;margin:0 auto;max-width:90%}footer .copy{margin:0;padding:.5em 1em;font-size:12px}footer .crasman{float:right}footer a{color:#fff}footer a:hover,footer a:visited{color:#fff}

/*# sourceMappingURL=covid19.css.map*/