@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;
  --font-headline: 'Muli', sans-serif;
  ;
  --font-theme: 'Muli', sans-serif;
  ;
}
@-ms-viewport {
  width: device-width
}
body {
  font-size: 15px;
  font-weight: 400;
  background: var(--color-bg);
  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: 85px auto 50px auto; 
  border-radius: 35px;
  background: var(--color-transparent);
  position: relative;
  opacity: 1;
  transition: opacity 1s ease-in-out; 
}
.app-container::before {
  position: absolute;
  top: 1%;
  left: 1%;
  width: calc(100% - 2%);
  height: calc(100% - 2%);
  border-radius: 35px;
  content: '';
  box-shadow: 0 3px 90px 0 rgba(0, 0, 0, 0.8);
  background: var(--color-transparent);
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.app-container.is-design::before {
	box-shadow: 0 3px 90px 0 rgba(247, 247, 247, 0.4);
}
.aap-popup {
  position: absolute;
  width: 18%;
  top: 0px;
  left: 50%;
  transform: translate3d(-50%, 0%, 0);
  transition: 0.3s all ease-in-out;
}
.aap-bg {
  position: relative;
  pointer-events: none;
}
.aap-layer {
  position: absolute;
  top: -1px;
  left: 1px;
  z-index: 100;
  padding: 1.6%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.aap-layer img {
  height: 100%;
}
.aap-screen {
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 9;
  padding: 1.6%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.5;
}
.aap-screen img {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.6%;
  transition: opacity 1s ease-in-out;
}
.aap-screen img:nth-child(2) {
  opacity: 0;
}
.aap-screen-container {
  position: absolute;
  top: 0px;
  left: 5%;
  z-index: 10;
  padding: 0;
  width: 90%;
  height: 100%;
  overflow: hidden;
}
.aap-screen-container ul {
  position: absolute;
  width: 100%;
  top: 50%;
  display: block;
  transform: translate3d(0%, -50%, 0);
  transition: 0.3s all ease-in-out;
}
.aap-screen-container ul li {
  margin: 0 0 25px 0;
  display: block;
  text-align: center;
}
.aap-screen-container ul li:last-child {
  margin: 0 0 0px 0;
}
.aap-screen-container ul li a {
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--color-black);
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.25);
  font-size: 15px;
  display: inline-block;
  line-height: 46px;
  height: 46px;
  width: 80%;
  border-radius: 40px;
  font-weight: 700;
}
.aap-screen-container ul li a:hover {
  color: #3428ad;
  background-color: rgba(255, 255, 255, 1);
}
.app-details {
  padding: 20px 5%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(100%, -50%, 0);
  transition: 0.3s all ease-in-out;
  width: 100%;
}
.app-details a {
  background: var(--color-bg);
  display: block;
  height: 38px;
  line-height: 38px;
  border-radius: 10px 10px 0px 0px;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}
.app-details-content {
  background-color: var(--color-white);
  padding: 20px;
  line-height: 130%;
  color: var(--color-black);
  border-radius: 0px 0px 10px 10px;
  font-weight: 600;
}
.app-details-content h1 {
  background-color: #3428ad;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
  line-height: 130%;
  padding: 9px 5px 9px 20px;
  margin: 0px 0px 10px -20px;
  border-radius: 0px 10px 10px 0px;
}
.app-details-content p {
  margin: 0;
  line-height: 160%;
  font-size: 14px;
  color: var(--color-black);
}
.aap-fingerprint {
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: 50px;
  transform: translate3d(-50%, 0, 0);
  z-index: 99;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.aap-battery {
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: 70px;
  transform: translate3d(-50%, 0, 0);
  z-index: 99;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.aap-fingerprint img, .aap-battery img {
  width: 100%
}
.app-container.is-popup .aap-popup {
  transform: translate3d(-50%, -100%, 0);
}
.app-container.is-des .aap-screen-container ul {
  transform: translate3d(-100%, -50%, 0);
}
.app-container.is-des .app-details {
  transform: translate3d(0%, -50%, 0);
}
.app-container.is-bg .aap-screen img:nth-child(1) {
  opacity: 0;
}
.app-container.is-bg .aap-screen img:nth-child(2) {
  opacity: 1;
}
.app-container.is-fingerprint .aap-fingerprint {
  opacity: 1;
}
.app-container.is-battery .aap-battery {
  opacity: 1;
}
@media (max-width: 768px) {

}