* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
@font-face {
	font-family: 'SF Rounded';
	src: url('./fonts/SF-Pro-Rounded-Regular.otf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'SF Rounded';
	src: url('./fonts/SF-Pro-Rounded-Medium.otf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'SF Rounded';
	src: url('./fonts/SF-Pro-Rounded-Bold.otf') format('truetype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'SF Pro';
	src: url('./fonts/SF-Pro-Display-Medium.otf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'SF Pro';
	src: url('./fonts/SF-Pro-Display-Bold.otf') format('truetype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Highway Gothic';
	src: url('./assets/HWYGEXPD.TTF') format('truetype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
/** Bold */ 
@font-face {
  font-family: "San Francisco";
  font-weight: 500;
  src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-medium-webfont.woff");
}
@font-face {
    font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: 500;
    src: local('SF Pro Display'), url('https://fonts.cdnfonts.com/s/59278/SFPRODISPLAYMEDIUM.woff') format('woff');
}
/* body */
html, body {
	background: linear-gradient(135deg, #e8e8e8 0%, #adadad 100%);
	color: #000000;

	font-family: SF Pro;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
/* logo */
.logo {
	width: 140px;
	margin: 5px 0px 0 15px;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));

	cursor: pointer;
}
.info {
	text-decoration: none;
	all: unset;
	cursor: pointer;
	background-color: #015aaa;
	color: #fff;
	padding: 8px 12px;
	border-radius: 10px;
	margin: 0 10px 0 0px;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
	/* border: 2px solid #fff; */
	/* font-family: SF Pro; */
	font-family: SF Pro Display;
	
  animation: zoom 5s;
  animation-iteration-count: infinite;
}
a {
	user-select: none;    
	-webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.shake {
  animation: shake 20s;
  animation-iteration-count: infinite;
}
@keyframes shake {
  0% { transform: translate(0, 0) rotate(0deg); } 
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(0, 0) rotate(0deg); } 
}
@keyframes zoom {
	0% { transform: scale(1); }
	50% { transform: scale(1.04); }
	100% { transform: scale(1); }
}
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/* container */
.container {
	margin-top: 10px;
	display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;

	min-height: 80vh;
}
.tabela {
	max-width: 75%;
	display: block;
	/* margin: 10px; */
	margin-bottom: 5px;
	height: auto;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.click-effect {
  animation: pulse 0.4s ease-in-out;
}
/* progress bar */
.progress-container {
  max-width: 300px;
	margin-top: 0px;
}
.progress-info {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  color: #000000;
  font-size: 18px;
	margin-bottom: 5px;

	/* font-family: SF Pro; */
	font-family: San Francisco;
}
.progress-bar-bg {
  width: 270px;
  height: 40px;
  background-color: #ffffff;
	border: 3px solid #000000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}
.progress-bar {
  height: 100%;
  width: 0%;
  /* background: linear-gradient(90deg, #eaeaea, #808080, #696969); */
	background: #015aaa;
  border-radius: 0px;
  transition: width 0.5s ease-out;
  /* box-shadow: 0 2px 8px rgba(238, 90, 111, 0.4); */
  position: relative;
  overflow: hidden;
}
/* Progress bar animasyon efekti */
.progress-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}
#stage-info {
	background-color: white;
	padding: 10px;

	position: absolute;
	bottom: 20px;
	/* margin-top: 20px; */
	z-index: 2;
	margin-bottom: 20px;
	font-size: 15px;
	font-weight: 500;

	font-family: Highway Gothic;
}
.esko {
	background-color: #015aaa;
	color: #fff;
	padding: 5px;
}
/* final */
.final {
	font-family: Highway Gothic;
	font-weight: 600;
	font-size: 40px;
}

@media (min-width: 500px) {
	html {
		display: flex;
		justify-content: center;
	}
	body {
		width: 60%;
	}
}
@media (min-width: 800px) {
	html {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	body {
		width: 40%;
	}
}
@media (min-height: 750px) {
	.logo {
		width: 170px;
	}
	.tabela {
		max-width: 80%;
	}
	#stage-info {
		bottom: 50px;
	}
}