.container {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.tools-container {
	min-height: 100%;
	display: flex;
	flex-direction: row;
	align-self: flex-end;
}

.container div {
}

.canvas-holder{
	width: 100%;
	height: 97vh;
	margin: 10px;
}

html, body {
	width: 100%;
	height: 100%;
	margin: 0px;
	font-family: sans-serif;
	background-color: #121212;
}

.header-container {
	background-color: rgb(23, 23, 26);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.logo {
	display: flex;
	align-items: center;
	padding: 5px;
	overflow: hidden;
}

.logo h2 {
	color: white;
	margin: 0;
}

footer {
	background-color: rgb(23, 23, 26);
	padding: 10px;
	text-align: center;
	color: white;
	overflow: hidden;
}


.loader {
	padding: 10px;
	margin: 10px;
	border: 16px solid #f3f3f3; /* Light grey */
	border-top: 16px solid #3498db; /* Blue */
	border-radius: 50%;
	width: 120px;
	height: 120px;
	animation: spin 2s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.btn {
  background-color: #121212;
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
  font-size: 30px;
  margin-right: 10px;
  margin-left: auto;
}

.btn:active {
}

.btn:hover {
  color: #00bbd4;
}

.h1-link {
	all: unset;
	cursor: pointer;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  font-size: 16px;
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 110%;
  left: 50%;
  margin-left: -75px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.elementToFadeInAndOut {
    opacity: 1;
    animation: fade 1.5s linear;
}

@keyframes fade {
  0% {opacity: 1; visibility: visible}
  50% { opacity: 1 }
  100% { opacity: 0;  visibility: hidden}
}

footer {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

footer div
{
	padding: 0.1em;
	margin: 0.1em;
	max-width: 600px;
}

.footer__headline {
  font-weight: bold;
  font-family: 'Helvetica';
}

.footer__list {
  font-family: 'Helvetica';
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__list p {
  text-align: justify;
  text-justify: inter-word;
}
.fa-twitter {
  padding: 20px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  color: white;
}

.fa-twitter:hover {
    opacity: 0.7;
}


/* Marquee style */
.ticker-wrap {
  width: 100%;
  /*height: 80px;*/
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #333638;
  border-bottom: 1px solid #333638;

  /*
  position: fixed;
  bottom: 0;
  height: 3.5rem;
*/
  /*background-color: #FFCA46; */
}
.ticker {
  display: inline-block;
  /*margin-top: 5px;*/
  animation: marquee 300s linear infinite;
}
.item-collection-1 {
  position: relative;
  left: 0%;
  animation: swap 300s linear infinite;
}

.item {
  display: inline-block;
  padding: 0 1rem;
  font-size: 1.5rem;
  color: #00bbd4;
  font-weight: 800;
  font-family: sans-serif;
}

/* symbol color */
.item b {
	color: white;
}

/* Transition */
@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes swap {
  0%, 50% {
    left: 0%;
  }
  50.01%,
  100% {
    left: 100%;
  }
}

/* wrapping tickers https://codepen.io/Jaskaranbir/pen/JKNgrb */
/*
.tickers {
	display: flex;
	align-items: center;
	border-top: 1px solid #333638;
	border-bottom: 1px solid #333638;
	
	overflow: auto;
}

.tickers span {
	padding: 5px;
	font-size: 1.0rem;
	white-space: nowrap;
	color: #00bbd4;
}

.tickers b {
	color: white;
}
*/
