html, body {
	max-width: 100vw;
	max-height: 100vh;
	overflow: hidden;
	margin:0px;
	font-family: 'Roboto', sans-serif !important;
	background: #ccc;
}

/* @media only screen and (max-width: 1100px) {
	html, body {
		max-height: 580px;
	}
} */

h1,h2,h3,p {
	font-family: 'Arial', sans-serif !important;
}

#canvas {
	display:block;
	margin: 0 auto;
}

#print-holder {
	display: none;
}

#print-footer {
	display: none;
}

h2.info, h3.info {
  display: none;
}

.fp-txt {
  display: none;
  position: absolute;
  z-index: 100;
  width: 220px;
  height: auto;
  padding: 0 10px 10px 10px;
  background: #cb007b;
  border: #555 1px solid;
  left: 50%;
  margin-left: -110px;
  top: 20px;
  box-shadow: 5px 5px rgba(0,0,0, 0.3);
  text-align: center;
}

button {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  padding: 5px 7px;
  color: #fff;
  background-color: #444;
  margin-top:6px;
  text-align:center;
}

.close-btn {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  padding: 5px 7px;
  color: #fff;
  background-color: #444;
  position: absolute;
  right:0;
  cursor: pointer;
}

.close-btn:hover {
  background-color: #222;
}

.text-area {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 13px;
  width: 100%;
  max-width: 220px;
  height: 80px;
  margin-top: 30px;
}

#disclaimer {
	display: none;
	width: 400px;
	position: absolute;
	z-index: 1000;
	left: 30%;
	top: 10%;
	background: #ccc;
	border: #555 2px solid;
}

#disclaimer h2 {
	width: 100%;
	text-align: center;
	font-size: 1.4em;
	color: #555;
	margin: 1em 0 0 0;
	text-transform: uppercase;
}

#disclaimer p {
	text-align: left;
	font-size: 0.8em;
	line-height: 1.3em;
	color: #555;
	padding: 0.5em 1em;
}

#disclaimer a:link#close, #disclaimer a:visited#close  {
	position: absolute;
	z-index: 1;
	right: 0;
	font-size: 0.9em;
	text-align: center;
	padding: 0.5em 0.7em;
	background: #555;
	color: #fff;
	text-decoration: none;
}

#disclaimer a:hover#close  {
	background: #333;
}

#disclaimer a:link#imt, #disclaimer a:visited#imt  {
	display: inline-block;
	width: 100%;
	font-size: 0.9em;
	margin: 0 auto 1em auto;
	text-align: center;
	color: #222;
	text-decoration: underline;
}

#disclaimer #ifp {
	display: block;
	width: 100%;
	text-align: center;
}

#disclaimer #ifp img {
	width: 40%;
	height: auto;
}

.loading {
	width: 200px;
	position: absolute;
	z-index: 300;
	left: 50%;
	margin-left: -100px;
	top: 50%;
	margin-top: -70px;
	display: none;
}

.loading img {
	width: 100%;
	height: auto;
}

@keyframes pulse_animation {
    0% { transform: scale(1); }
		10% { transform: scale(1.08); }
    20% { transform: scale(1); }
    30% { transform: scale(1.08); }
    40% { transform: scale(1); }
    50% { transform: scale(1.08); }
    60% { transform: scale(1); }
    70% { transform: scale(1.08); }
    80% { transform: scale(1); }
    90% { transform: scale(1.08); }
		100% { transform: scale(1); }
}

.pulse {
    animation-name: pulse_animation;
    animation-duration: 7000ms;
    transform-origin:70% 70%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@media print {
	h2.info, h3.info {
		display: block;
	}
	#print-holder {
		display: block;
		position: absolute;
		z-index: 200;
		width: 1100px !important;
		height: 90px !important;
		top: 0;
		left: 0;
	}
	#print-holder img {
		width: 100% !important;
		height: auto;
	}
}
