body, svg {
	font-family: "Source Sans Pro";
}

/* Blocksatz */
p {
	text-align: justify;
}

.credits {
	text-align: right;
	padding: 0px 2px 2px 2px;
	font-size: 70%;
}

h1, h2, h3, h4, h5, a {
	font-family: "Source Sans Pro";
	font-weight: bold;
	text-decoration: none;
}

#reply-title, #comments {
	font-size: 1.3em !important;
}

p.has-small-font-size {
	margin: 25px 0px 25px 0px;
	padding: 0px 0px 25px 0px;
}

.wp-block-heading {
	font-family: "Source Sans Pro";
}

.wp-block-post-title, .wp-block-spacer, .wp-block-post-featured-image {
	display: none;
}

.uppercase {
	font-family: "Source Sans Pro";
	font-weight: bold;
	font-size: 24;
}

/* inputs */
input[type="range"] {
	padding: 0 10px 0 10px;
}

/* General Styles */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 50%;
    background: transparent; /* Transparent background */
}

/* Track styling */
input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    background: lightgray;
    border-radius: 3px;
}

input[type="range"]::-moz-range-track {
    height: 6px;
    background: gray;
    border-radius: 3px;
}

input[type="range"]::-ms-track {
    height: 6px;
    background: transparent; /* Hides the default track */
    border-color: transparent;
    border-width: 6px 0;
    color: transparent;
}

/* Thumb styling */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: black;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -5px; /* Align thumb vertically */
}

input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: black;
    border-radius: 50%;
    cursor: pointer;
}

input[type="range"]::-ms-thumb {
    width: 16px;
    height: 16px;
    background: black;
    border-radius: 50%;
    cursor: pointer;
}

div.vega-bind {
	padding-bottom: 25px;
}

/* logo */
.logo {
	width: 50px;
  height: 50px;
	display: block;
	border-radius: 100%;
	animation: spin 10s linear infinite, moveLeftToRight 4s linear;
	 transition: all 1s ease;
}

/* logo spinning */
@keyframes spin {
  0% { transform: rotate(0deg); }
	25% { transform: rotate(360deg); }
	50% { transform: rotate(360deg); }
  75% { transform: rotate(0deg); }
}

@keyframes moveLeftToRight {
  0%   { left: -10%; }
  100% { left: 100%; }
}

/* vega lite */
text {
  font-family: "Source Sans Pro";
}
  
label, input, button, output {
  font-family: "Source Sans Pro";
	font-size: 14px !important;
}
  
select {
  font-family: "Source Sans Pro" !important;
	padding: 4px 4px 4px 4px;
	margin: 4px 4px 4px 4px;
	font-size: 13px !important;
/*     width: 600px; */
}

[name="input"] {
  height: 28px;
	margin: 0px 0px 0px 0px;
}

#observablehq-viewof-selectCountry2-3fad78c2 {
	margin: 0px 0px 0px 0px;
}

#observablehq-viewof-selectCountry1-3fad78c2 {
	margin: 0px 0px 0px 0px;
}

path {
    z-index: 9999;
}

/* tooltip:   */
table {
	font-family: "Source Sans Pro";
	font-Size: 13px;
	margin: 0px 0px 0px 0px;
}

#vg-tooltip-element {
	font-family: "Source Sans Pro";
	font-Size: 13px;
	background-color: rgba(255,255,255,1);
	border-radius: 0px;
	border: 0px solid;
}
  
.grid-container {
	display: grid;
	grid-template-columns: auto auto;
	grid-gap: 10px;
	background-color: #ccc;
	padding: 10px;
}
  
.grid-container > div {
	background-color: #666;
	text-align: center;
	padding: 20px 0;
	font-size: 20px;
}

