 @charset "utf-8";
 :root {
   --font-base: "proxima-nova", sans-serif;
   --font-headline: "proxima-nova", sans-serif;
   --color-text: #bababa;
   --color-white: #fff;
   --color-black: #000;
   --color-theme: #3f5ef7;
   --color-dark: #222;
   --color-light: #edf2f6;
   --color-red: #da1e28;
   --color-red-hover: #6d080e;
   --color-green: #24a249;
   --color-yellow: #febf0f;
   --color-bg: #292929;
   --style-border: 1px solid #6c6c6c;
 }
 body {
   font-size: 16px;
   color: var(--color-text);
   background-color: var(--color-white);
   font-family: var(--font-base);
   font-style: normal;
   font-weight: 400;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
   overflow: hidden;
   position: fixed;
   width: 100%;
   height: 100%;
   padding: 60px 0px 0px 0;
 }
 .not-select {
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
 }
 .is-hide {
   display: none !important;
 }
 .is-show {
   display: block !important;
 }
 .el-map svg {
   width: 100% !important;
 }
 p {
   line-height: 150%;
   margin-bottom: 25px;
 }
 a {
   text-decoration: none;
   outline: none;
   color: var(--color-base);
 }
 button, a {
   outline: none;
   transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -webkit-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
 }
 h1, h2, h3, h4, h5, h6 {
   font-weight: 400;
   font-size: 100%;
   font-family: var(--font-headline);
 }
 /*Start theme css*/
 main.main-wrapper {
   position: relative;
   z-index: 2;
 }
 .header-wrapper {
   position: fixed;
   top: 0;
   transform: translate3d(0, 0, 0);
   width: 100%;
   height: 60px;
   z-index: 999;
   background-color: var(--color-white);
   box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
   transition: 0.2s all ease-in-out;
 }
 .header-wrapper.is-up {
   transform: translate3d(0, -100%, 0);
 }
 .header-wrapper .container {
   width: 100%;
   height: 100%;
   margin: 0;
   padding: 0;
 }
 a.is-logo {
   position: absolute;
   left: 5%;
   display: inline-block;
   width: 75px;
   transform: translateY(-50%);
   top: 50%;
 }
 a.is-logo.is-hq {
   width: 100px;
 }
 a.is-logo.is-fit {}
 img.is-content, a.is-logo img {
   width: 100%;
 }
 .header-right {
   position: absolute;
   right: 5%;
   top: 50%;
   transform: translateY(-50%);
   display: inline-block;
 }
 .header-btns {
   position: absolute;
   right: 5%;
   top: 50%;
   transform: translateY(-50%);
   display: inline-block;
 }
 .header-btns .btn {
   background: #bababa;
   -webkit-appearance: none;
   margin: 0;
   border: 0px solid #bababa;
   height: 42px;
   line-height: 42px;
   padding: 0px 15px;
   background-color: #718096;
   font-family: var(--font-base);
   color: var(--color-white);
   border-radius: 4px;
   font-weight: 600;
   font-size: 16px;
   display: inline-block;
 }
 .header-right select {
   background: transparent;
   -webkit-appearance: none;
   margin: 0;
   width: 200px;
   border: var(--style-border);
   height: 40px;
   padding: 0px 10px;
   font-family: var(--font-base);
   color: var(--color-text);
   border-radius: 4px;
   font-weight: 600;
   font-size: 16px;
 }
 .header-right::before {
   width: 0;
   height: 0;
   position: absolute;
   top: 15px;
   left: 168px;
   content: '';
   border-left: 8px solid transparent;
   border-right: 8px solid transparent;
   border-top: 10px solid var(--color-text);
 }
 .select-box {
   margin-bottom: 20px;
   position: relative;
 }
 .select-box::before {
   width: 0;
   height: 0;
   position: absolute;
   top: 15px;
   right: 15px;
   content: '';
   border-left: 8px solid transparent;
   border-right: 8px solid transparent;
   border-top: 10px solid var(--color-bg);
 }
 .select-box select {
   background: #edf2f6;
   -webkit-appearance: none;
   margin: 0;
   width: 100%;
   border: 1px solid #bababa;
   height: 40px;
   padding: 0px 10px;
   font-family: var(--font-base);
   color: var(--color-bg);
   border-radius: 4px;
   font-weight: 600;
   font-size: 16px;
 }
 .svg-map {
   margin: 0 auto;
   width: 100%;
   max-width: 600px;
   height: 100%;
 }
 .svg-map svg {
   height: 100%;
   margin: 0 auto;
   display: block;
 }
 .svg-map svg path {
   cursor: pointer;
   transition: 0.2s all ease-in-out;
   opacity: 1;
   fill: var(--color-white);
   pointer-events: none;
 }
 .svg-map svg polyline {
   fill: var(--color-transparent);
 }
 .svg-map svg path.is-na {
   fill: #292928;
   cursor: default;
   pointer-events: none;
 }
 .svg-map svg path:hover {
   /*   fill: var(--color-dark);*/
 }
 .svg-map svg path.is-active {
   /*   fill: var(--color-red);*/
   pointer-events: inherit;
   /*   stroke: var(--color-white);*/
 }
 .svg-map svg path.is-active:hover, .svg-map svg path.is-active.active-state {
   /*   fill: var(--color-red-hover);*/
   /*
	 transform: scale3d(2,2,2);
	 transform-origin: center;
*/
 }
 #mapSVG.is-tap path {
   opacity: 0.5;
 }
 #mapSVG.is-tap path.is-active.active-state {
   opacity: 1;
   fill: #718096 !important;
 }
 .headline-wrapper {
   height: 80px;
 }
 .headline-wrapper h1 {
   line-height: 100%;
   position: relative;
   display: block;
   left: 0;
   margin-top: 0px;
   top: 50%;
   transform: translateY(-50%);
   text-align: center;
   font-size: 30px;
   font-weight: 700;
   color: var(--color-bg);
 }
 .headline-wrapper h1 strong {
   color: var(--color-red);
 }
 .headline-wrapper h1 span {
   font-weight: 400;
   color: var(--color-white);
   font-size: 80%;
   display: inline-block;
   line-height: 120%;
 }
 .body-wrapper {
   height: calc(100vh - 170px);
 }
 .body-wrapper .container {
   height: 100%;
 }
 .inner-container {
   height: 100%;
   float: left;
 }
 .inner-container.left-container {
   width: 60%;
   padding: 0px 15px;
 }
 .inner-container.right-container {
   width: 40%;
   padding: 0px 15px;
 }
 .content-block {
   height: 100%;
   border-radius: 5px;
   overflow: hidden;
   position: relative;
 }
 .inner-container.right-container .content-block {
   background-color: #edf2f6;
   height: calc(100% - 270px);	 
 }
 .result {
   background-color: var(--color-white);
   border-radius: 5px;
   padding: 0px 0px;
   margin: 0px -10px;
 }
 .result-box {
   width: 33.333%;
   float: left;
   padding: 0px 10px;
 }
 .box-inner {
   padding: 14px 0px 0px 0;
   border: var(--style-border);
   border-radius: 4px;
   height: 80px
 }
 .box-inner h3 {
   white-space: nowrap;
   font-size: 17px;
   text-align: center;
   line-height: 100%;
   font-weight: 600;
   color: var(--color-bg);
 }
 .box-inner h4 {
   white-space: nowrap;
   font-size: 25px;
   font-weight: 700;
   text-align: center;
   line-height: 100%;
   margin: 8px 0 0 0;
 }
 .is-confirmed .box-inner h4 {
   color: var(--color-red);
 }
 .is-deaths .box-inner h4 {
   color: #718096;
 }
 .is-recovered .box-inner h4 {
   color: var(--color-green);
 }
 .is-confirmed .box-inner {
   background-color: #fff5f5;
 }
 .is-deaths .box-inner {
   background-color: #edf2f6;
 }
 .is-recovered .box-inner {
   background-color: #f0fff4;
 }
 .map-container {
   background-color: var(--color-light);
   border-radius: 5px;
   padding: 10px;
   height: calc(100% - 160px);
   margin-top: 20px;
   position: relative;
 }
 .is-stories {
   padding: 0px 20px 0px 20px;
 }
 .is-stories li {
   display: block;
   position: relative;
   margin-bottom: 25px;
   transition: all 0.3s ease-in-out;
 }
 .is-stories li:last-child {
/*   margin-bottom: 0px;*/
	 
	border-bottom: 1px solid #dadada;
    padding-bottom: 25px;
    margin-bottom: 20px; 
	 
 }
 .is-stories li a {
   display: block;
   min-height: 60px;
   padding-right: 120px;
   color: var(--color-bg);
   font-weight: 600;
 }
 .is-stories li a:hover {
   color: var(--color-black);
 }
 .news-pic {
   width: 105px;
   height: 58px;
   background-color: var(--color-bg);
   position: absolute;
   top: 0;
   right: 0;
   border-radius: 4px;
   overflow: hidden;
 }
 .news-pic img {
   width: 100%;
 }
 ul#tabs-nav {
   list-style: none;
   margin: 0 0px;
   padding: 20px 15px;
   overflow: hidden;
   position: absolute;
   width: 100%;
   top: 0;
   left: 0;
 }
 ul#tabs-nav li {
   font-weight: 600;
   cursor: pointer;
   width: 33.333%;
   float: left;
   overflow: hidden;
   padding: 0px 5px;
 }
 #tabs-nav li a {
   text-decoration: none;
   height: 40px;
   line-height: 40px;
   display: block;
   padding: 0px 0px;
   text-align: center;
   background-color: var(--color-bg);
   border-radius: 4px;
 }
 .right-container .block-header {
   position: absolute;
   width: 100%;
   top: 20px;
   left: 0;
 }
 .right-container h3 {
   text-decoration: none;
   display: block;
   padding: 0px 0px;
   text-align: center;
   color: var(--color-dark);
   border-radius: 4px 4px 0px 0px;
   font-weight: 700;
   text-transform: uppercase;
   font-size: 20px;
 }
 .right-container h3 span {
   color: var(--color-red);
 }
 .right-container h4 {
   color: var(--color-bg);
   font-weight: 700;
   text-align: center;
   font-size: 17px;
   letter-spacing: 0;
   margin: 5px 0 0 0;
   line-height: 100%;
 }
 .right-container h4 {
   display: none;
 }
 .right-container #tabs-content {
   padding-top: 60px;
   height: 100%;
 }
 .right-container.is-state #tabs-content {
   padding-top: 90px;
 }
 .right-container.is-state h4 {
   display: block;
 }
 ul#tabs-nav li.active a {
   background-color: var(--color-yellow);
   color: var(--color-dark);
 }
 .tab-content {
   height: 100%;
   overflow: auto;
 }
 body.is-modal, body.has-modal {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   transform: translateZ(0);
 }
 .subs-modal, .source-modal {
   width: 100%;
   height: 100%;
   float: none;
   position: fixed;
   top: 0;
   left: 0;
   display: block;
   z-index: 9999;
   pointer-events: none;
   background-color: #edf2f6;
   opacity: 0;
   transition: opacity 0.3s ease-in-out;
   padding: 20px;
 }
 .is-modal .subs-modal, .has-modal .source-modal {
   pointer-events: inherit;
   opacity: 1;
 }
 .subs-modal .subscribe-form {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate3d(-50%, -50%, 0);
   width: 100%;
   max-width: 480px;
   text-align: center;
   margin-top: -50px;
 }
 .subs-modal .subscribe-form .form-header {
   color: var(--color-bg);
   font-size: 20px;
   line-height: 120%;
   font-weight: 600;
   margin-bottom: 15px;
 }
 .subs-modal .subscribe-form .form-header span {
   color: var(--color-red);
   font-weight: 700;
   font-size: 95%;
   cursor: pointer;
 }
 .subs-modal .subscribe-form form {
   position: relative;
   margin: 0px 20px;
 }
 .subs-modal .subscribe-form input[type='text'], .subs-modal .subscribe-form input[type='email'] {
   width: 100%;
   height: 42px;
   line-height: 40px;
   border: 1px solid #bababa;
   background-color: #e2e8f0;
   border-radius: 4px;
   padding: 0px 90px 0 10px;
   font-size: 15px;
   font-family: "proxima-nova", sans-serif;
   font-weight: 500;
   color: var(--color-bg);
   -moz-appearance: none;
   -webkit-appearance: none;
   position: absolute;
   top: 0;
   left: 0;
   text-align: left;
 }
 .subs-modal .subscribe-form input[type='submit'], .subs-modal .subscribe-form input[type='button'], .subs-modal .subscribe-form button, .subs-modal .subscribe-form .btn-submit {
   position: absolute;
   top: 0;
   right: 0;
   font-family: "proxima-nova", sans-serif;
   border: 0;
   -moz-appearance: none;
   -webkit-appearance: none;
   border-radius: 0px 4px 4px 0px;
   height: 42px;
   width: 100px;
   text-align: center;
   font-size: 16px;
   font-weight: 600;
   line-height: 40px;
   background-color: #718096;
   color: var(--color-white);
   cursor: pointer;
 }
 /*Email*/
 .subs-modal .response {
   line-height: 130%;
   position: absolute;
   width: 100%;
   height: 100%;
   left: 0;
   bottom: -42px;
   font-size: 14px;
   font-weight: 500;
   text-align: center;
   padding: 10px 0px;
 }
 .subs-modal #mce-error-response {
   color: #da1e28;
 }
 .subs-modal #mce-success-response {
   color: #24a249;
 }
 .mce_inline_error {
   color: var(--color-red);
   text-align: center;
   padding: 10px 0px;
   font-size: 14px;
   font-weight: 500;
   position: absolute;
   left: 0;
   bottom: -37px;
   width: 100%;
   line-height: 130%;
 }
 .mc-field-group.is-theme {
   position: relative;
   height: 42px;
 }
 .btn-source {
   position: absolute;
   bottom: 10px;
   right: 10px;
   font-weight: 600;
   text-decoration: underline;
   z-index: 994;
   color: var(--color-bg);
   font-size: 14px;
   line-height: 100%;
   padding: 5px;
   display: inline-block;
 }
 .modal-content {
   position: relative;
   top: 50%;
   left: 50%;
   transform: translate3d(-50%, -50%, 0);
   width: 100%;
   max-width: 480px;
   text-align: center;
   color: var(--color-bg);
   font-size: 17px;
   font-weight: 500;
   line-height: 150%;
 }
 .modal-content strong {
   font-weight: 600;
 }
 .sticky-footer {
   display: none;
 }
 .btn.btn-faq {
   border: 1px solid var(--color-bg);
   background-color: #fff5f5;
   color: var(--color-bg);
   margin-right: 10px;
 }

.not-found{
	color: var(--color-bg);
	font-weight: 600;
	padding-bottom: 20px;
}

.not-found p{
	line-height: 140%;
}

.not-found a{
	color: var(--color-red);
    text-decoration: underline;
}

.ad-block{
	display: block;
	margin-bottom: 20px;
}
.ad{
	width: 300px;
	height: 250px;
	background-color: #f5f5f5;
	margin: 0 auto;
	border-radius: 4px;
}

.message{
	padding: 0px 20px;
}

.donate-block{
	text-align: center;
	padding: 0px 20px 20px 20px;
	display: none;
}

.donate-container{
  border-radius: 5px;
  border: solid 1px #718096;
  background-color: #edf2f6; 
  padding: 18px 15px 20px 15px;
}

.donate-block h3{
	text-transform: initial;
    font-size: 18px;
    line-height: 140%;
    font-weight: 700;
}

.btn.btn-donate{
	background: #bababa;
    -webkit-appearance: none;
    margin: 0;
    border: 0px solid #bababa;
    height: 40px;
    line-height: 40px;
    padding: 0px 20px;
    background-color: #718096;
    font-family: var(--font-base);
    color: var(--color-white);
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 18px;
}

