/* Turn on custom 8px wide scrollbar */
::-webkit-scrollbar {
  width: 10px; /* 1px wider than Lion. */
  /* This is more usable for users trying to click it. */
  background-color: rgba(0,0,0,0);
  -webkit-border-radius: 100px;
}
/* hover effect for both scrollbar area, and scrollbar 'thumb' */
::-webkit-scrollbar:hover {
  background-color: rgba(0, 0, 0, 0.09);
}
 
::-webkit-scrollbar-thumb:vertical {
  
  background: rgba(0,0,0,0.5);
  -webkit-border-radius: 100px;
  background-clip: padding-box;
  border: 2px solid rgba(0, 0, 0, 0);
  min-height: 10px; /*Prevent it from getting too small */
}
::-webkit-scrollbar-thumb:vertical:active {
  background: rgba(0,0,0,0.61); /* Some darker color when you click it */
  -webkit-border-radius: 100px;
}

.col-centered{
    float: none;
    margin: 0 auto;
}

body {
	font-family: 'Quicksand', monospace;
	color: #383732;
	overflow-y: scroll;
}

#app {
	min-height: 100vh;
}

.top-bar {
	font-family: 'Just Another Hand', monospace;
	font-size: 1.5em;
	padding-bottom: 1em;
}

.top-bar h1 {
	margin-top: 0.3em;
	font-size: 2.1em;
	line-height: 0.8em;
}

small {
	opacity: 0.7;
	font-size: 0.55em;
}

a {
	color: #EE7469;
}

a:hover {
	color: #B8959B;
	cursor: pointer;
}

.logo {
	width: 5em;
}

.qr-img-cont {
	padding: 1em;
	margin-top: 2em;
	margin-bottom: 2em;
}

.show {
	display: block !important;
}

.hide {
	display: none !important;
}

.qr-img {
	width: 15em;
}

#svg_link {
	display: none;
	font-weight: bold;
}

.footer {
	position: relative;
    width: 100%;
    text-align: center;
    padding: 0.5em;
}

.license {
	font-size: 0.8em;
	font-family: monospace;
}

input[type=submit] {
	cursor: pointer;
}

.who-dis {
	font-weight: bold;
}

.who-dis .fa-heart {
	color: #F77D65;
}