.animation{
	display: block;
	position:fixed;
	width: 100%;
	height: 100%;
	color:#737373;
	z-index: 99999999;
}

.animation .wrapper {
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
    text-align: center;
    margin: 0 auto 0 auto;
	background: url('../../images/felix-mooneeram-222805-unsplash.jpg') center center no-repeat;
	background-size: cover;
	
	width: 200%;
    position: absolute;
}

.animation .wrapper:before {
	content: '';
	width:100%;
	height: 100%;
	display: block;
	position:absolute;
	top:0;
	left: 0;
	background: linear-gradient(0deg, rgba(249,249,253,.8), rgba(255,0,0,0) 70.71%);
}


.animation .wrapper:after {
	content: '';
	width:100%;
	height: 100%;
	display: block;
	position:absolute;
	top:0;
	left: 0;
	background: url('../../images/paul-green-126960-unsplash.png') bottom -50px right no-repeat;
	background-size: cover;
}


.animation .wrapper .logo-large {
	content: '';
	width:100%;
	height: 100%;
	display: block;
	position:absolute;
	top:0;
	left: 0;
	background: url('../../images/logo-large.png') center center no-repeat;
}

.animation p {
    position: relative;
    display: inline-block;
    -webkit-filter: brightness(1) contrast(500%) invert(0);
	top: 50%;
	margin-top: -125px;
}


.animation p img {
    display: block;
    background: white;
    -webkit-filter: brightness(0.8);
}

.animation p loader {
    display: block;
    position: absolute;
    
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(91, 13, 13, 0.24);
	z-index:9;
	width: 100%;
	height: 0%;
}











.curtain-panel .left-curtain .wrapper {
  left:0;
}

.curtain-panel .right-curtain .wrapper {
  left: -100%;
}

















.stage {
  background: #fff;
  width: 560px;
  margin: 4em auto;
  border: 15px solid #333;
  box-shadow: 1px 4px 11px #aaa, inset 1px 3px 6px #ccc;
  padding: 1em 0 3em;
  position: relative;
}

.stage-content {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding-top: 56.25%;
  background: red;
}

.stage-content:after {
  content: 'Achievement Unlock';
  text-align: center;
  display: block;
  text-transform: uppercase;
  transform: translateY(0.5em);
  font-size: 1.1em;
}

.curtain-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin-bottom: 0;
}

.curtain-panel {
  display: flex;
  height: 100%;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
}

.curtain-panel .curtain {
  width: 50%;
  position: relative;
  transition: transform 1.5s ease-out;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.curtain-panel .curtain:before {
  content: attr(data-title);
  text-align: center;
  width: 200%;
  position: absolute;
  top: 50%;
  line-height: 0;
  font-size: 1.1em;
  text-shadow: 1px 1px 3px #ccc;
}

.curtain-panel .left-curtain:before {
  left: 0;
}

.curtain-panel .right-curtain:before {
  right: 0;
}

.curtain-panel .curtain:after {
  content: '';
  background-size: 20px 20px;
  display: block;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.curtain-trigger {
  visibility: hidden;
  position: absolute;
}

.curtain-panel .curtain-panel-checked.left-curtain {
  transform: translateX(calc(-100%));
}

.curtain-panel .curtain-panel-checked.right-curtain {
  transform: translateX(calc(100%));
}