table tr td {
	text-align: right;
}

table tr td:nth-child(1), #cases tr td:nth-child(2) {
	text-align: center;
}

#cases tr td:nth-child(3) {
	text-align: left;
}

#countries tr td:nth-child(2) {
	text-align: left;
}

#chart {
	width: 100%;
	height: 100%;
}

.bold {
	font-weight: bold;
}

.mb-15 {
	margin-bottom: 15px !important;
}

.ml-15 {
	margin-left: 15px !important;
}

.custombox {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.custombox.block {
  display: block;
}

/* Hide the browser's default checkbox */
.custombox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.custombox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.custombox input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.custombox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.custombox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 7px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (min-width: 1600px) {
	.container {
		width: 1600px;
	}
}