@charset "utf-8";
:root {
  --color-blue: #007bff;
  --color-indigo: #6610f2;
  --color-purple: #6f42c1;
  --color-pink: #e83e8c;
  --color-red: #dc3545;
  --color-orange: #fd7e14;
  --color-yellow: #ffc107;
  --color-green: #28a745;
  --color-teal: #20c997;
  --color-cyan: #17a2b8;
  --color-white: #fff;
  --color-black: #000;
  --color-bg: #292929;
  --color-transparent: rgba(0, 0, 0, 0);
  --color-gray: #868e96;
  --color-gray-dark: #343a40;
  --color-primary: #007bff;
  --color-secondary: #868e96;
  --color-success: #28a745;
  --color-info: #17a2b8;
  --color-warning: #ffc107;
  --color-danger: #dc3545;
  --color-light: #f8f9fa;
  --color-dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
}
@-ms-viewport {
  width: device-width
}
body {
  font-size: 15px;
  font-weight: 400;
 background: var(--color-transparent);
  font-family: var(--font-theme);
  color: var(--color-black);
  opacity: 1;
  overflow-x: hidden;
  font-style: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.is-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  overflow: hidden;
}
.is-loading .app-container {
  opacity: 0;
}
.loading {
  display: none;
}
.is-loading .loading {
  display: block;
}
span.loading {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  background-image: url(../images/loading.svg);
  z-index: 9999;
}
html, body {
  height: 100%;
  overflow: hidden;
  position: fixed;
  width: 100%;
  transform: translateZ(0);
} 
.is-hide {
  display: none !important;
}
.is-show {
  display: block !important;
}
p {
  line-height: 160%;
  margin-bottom: 25px;
  margin: 0;
}
a {
  text-decoration: none;
  outline: none;
}
button, a {
  outline: none;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-size: 100%;
  font-family: var(--font-headline);
}
.app-container { 
  width: 300px;
  margin: 0 auto; 
  background: var(--color-bg);
  position: relative;
  opacity: 1;
  transition: opacity 1s ease-in-out; 
}
.app-body{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

.app-points{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}

.app-body img{
	width: 100%;
}

.app-screens{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 2;
}

.app-screens img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: 0.5s ease-in-out;
}

.app-screens img.is-active{
	opacity: 1;
}


