@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-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);
	
}
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 {
  max-width: 375px;
  width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 35px;
  background: var(--color-transparent);
  position: relative;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
.is-z-1 {
  z-index: 1
}
.is-z-2 {
  z-index: 2
}
.is-z-3 {
  z-index: 3
}
.is-z-4 {
  z-index: 4
}
img.placehold {
  width: 100%;
}
.card-block {
  margin: 0 0 30px 0;
  position: relative;
}
.card-block:last-child{
	 margin: 0 0 0px 0;
}

.single-card {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  border-radius: 2px;
  overflow: hidden;
  transition: 0.8s opacity ease-in-out;
}
.single-card img{
	width: 100%;
}

.single-card.is-hide {
  opacity: 0;
  pointer-events: none;
}
.is-gif {
  display: none;
}
@media (max-width: 374px) {
  .app-container {
    max-width: 300px;
  }
}