@charset "UTF-8";
/*__________________________________________ */
/*----------------------------------- CONFIG */
video {

	min-width: 150%;
	min-height: 150%;
	margin-left:-20%;
	margin-top: -20%;
	transform: skew(10deg);
	transition:0.3s;

}

/*__________________________________________ */
/*------------------------------- SESAM OPEN */
#n77_sesamopen{
	position: fixed;
	top:0px;
	width: 100%;
	height: calc(100% - 0px);
	overflow: show;
	z-index: 77;
}


/*__________________________________________ */
/*---------------------------------- L&R B&W */
#n77_sesamopen .right_gate,
#n77_sesamopen .right_trigger,
#n77_sesamopen .left_gate,
#n77_sesamopen .left_trigger{
	position: fixed;
	width: 60%;
	height: 100%;
	overflow: hidden;
	transform: skew(-10deg);
	transition:0.6s;

	z-index: 50;
}



#n77_sesamopen .left_gate,
#n77_sesamopen .left_trigger{
	left: -10%;
}

#n77_sesamopen .right_gate,
#n77_sesamopen .right_trigger{
	right: -10%;
}



#n77_sesamopen .left_gate{
	border-right: 0px solid grey;
}
#n77_sesamopen .right_gate{
	border-left: 0px solid #000;
}


/*__________________________________________ */
/*--------------------------------- LOGO B&W */
#n77_sesamopen .n77_logo_b, #n77_sesamopen .n77_logo_w{
	position: fixed;
	width: 300px;
	height: calc(100% - 100px);
	
	top:75px;
	z-index: 200;

	opacity: 1.0;

	transition: 0.3s;

	transform: skew(10deg);


	border:0px solid red;
}

#n77_sesamopen .n77_logo_b {
	background:url(/data/hello_page_n77_logo_b.svg);
		background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center center;

	left:-150px;
	filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.8));

}

#n77_sesamopen .n77_logo_w {
	background:url(/data/hello_page_n77_logo_w.svg);
		background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center center;

	right:-150px;
	filter: drop-shadow(8px 8px 10px rgba(255, 255, 255, 0.2));
}

#n77_sesamopen .n77_logo_b.active{
	left:0%;
}

#n77_sesamopen .n77_logo_w.active{
	right:0%;
}









/*__________________________________________ */
/*-------------------------------- NEXT LEFT */
#n77_sesamopen .left_next{
	position: fixed;
	left:-25%;
	top:0%;
	height: 100%;
	width: 20%;
	z-index: 300;
	text-align: left;
	transform: skew(-10deg);
	color:#fff;
	transition: 0.3s;

	background: rgba(0, 0, 0, 0.2);

	border-right:1px solid grey;

	cursor:pointer;

	&:hover {
		background: rgba(0, 0, 0, 0.8);
		width: 25%;
	}
	&:hover > h1 {
		color:#ff6600;
		left:-5%;
	}

}



#n77_sesamopen .left_next h1{
	position: inherit;
	
	top: 40%;
	height: auto;
	width: 90%;
	left:0%;
	text-align: right;
	transform: skew(10deg);

	transition: 0.6s;


	border:0px solid orange;

}

/*__________________________________________ */
/*------------------------------- NEXT RIGHT */
#n77_sesamopen .right_next{
	position: fixed;
	right:-25%;
	top:0%;
	height: 100%;
	width: 20%;
	z-index: 300;
	text-align: right;
	transform: skew(-10deg);
	color:#333;
	transition: 0.3s;
		transition: all 400ms cubic-bezier(.47,1.64,.41,.8);

	background: rgba(255, 255, 255, 0.1);

	border-left:1px solid grey;

	cursor:pointer;

	&:hover {
		background: rgba(255, 255, 255, 0.3);
		width: 25%;
	}
	&:hover > h1 {
		color:#000;
		right:-5%;
	}

}



#n77_sesamopen .right_next h1{
	position: inherit;
	
	top:40%;
	height: auto;
	width: 90%;
	right:0%;
	text-align: left;
	transform: skew(10deg);

	transition: 0.6s;


	border:0px solid orange;

}


/*__________________________________________ */
/*-------------------------------- INFO DARK */

#n77_sesamopen .n77_info_dark, #n77_sesamopen .n77_info_bright{
	position: fixed;
	top:0%;
	height: 100%;
	width: 20%;
	z-index: 200;
	

	border-left:0px solid red;
	overflow-y: auto;
	transition: 0.6s;
}
#n77_sesamopen .n77_info_dark{
	right:-77%;
	color:#fff;
}
#n77_sesamopen .n77_info_bright{
	left:-77%;
	color:#1d1d1d;
}
#n77_sesamopen .n77_info_dark.active{ right:5%; }
#n77_sesamopen .n77_info_bright.active{	left:2%; }



#n77_sesamopen .n77_info_dark h1, #n77_sesamopen .n77_info_bright h1{
	float:left;
	font-size: 32px;
	font-weight: bold;
	width: 100%;
	margin-top: 200px;
	text-align: right;
	border-bottom: 1px solid #ccc;
}
#n77_sesamopen .n77_info_dark h1{ text-align: left;}
#n77_sesamopen .n77_info_bright h1{ text-align: left; }

#n77_sesamopen .n77_info_dark p, #n77_sesamopen .n77_info_bright p{
	float:left;
	width: 100%;
	font-size: 18px;
	font-weight: normal;
	hyphens: auto;
	white-space: pre-line;
}