/********************
* Shell 300x250
* Rhino Hooton
* Mirum ~ 8/6/20
*
* Baseline
********************/
* {
	background-repeat: no-repeat;
	color: transparent;
	font-family: arial;
	font-size: 0;
	position: absolute;
}

body {
	background-color:#ffffff;
	margin: 00px;
	overflow:hidden;
}


/********************
* Containers
********************/
#main-container {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	background-color: #ffffff;
	border: 1px solid #c6c6c6;
	box-sizing: border-box;
	height:250px;
	overflow: hidden;
	width:300px;
}

.foreground {
	z-index: 2;
}

.background {
	z-index: 1;
}


/********************
* Brent
********************/
/* head */
#head {
	height: 73px;
	left: 235px;
	top:32px;
	width:55px;
	z-index:3;
}

#head div {
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	top: 0;
	width:100%;
}

/* head states */
#head .relaxed {
	background-image: url("images/head-state-01.png");
	opacity: 1;
	z-index: 1;
}

#head .left {
	background-image: url("images/head-state-02.png");
	z-index: 2;
}

#head .up {
	background-image: url("images/head-state-03.png");
	z-index: 3;
}

#head .right {
	background-image: url("images/head-state-04.png");
	z-index: 4;
}

#head .center {
	background-image: url("images/head-state-05.png");
	z-index: 5;
}

/* body */
.body {
	background-image: url("images/body-01.png");
	height: 200px;
	left: 159px;
	pointer-events: none;
	top: 32px;
	width:174px;
	z-index:1;
}

/* arm */
.arm {
	background-image: url("images/arm-01.png");
	height: 69px;
	left: 236px;
	position: fixed;
	pointer-events: none;
	top: 174px;
	width:63px;
	z-index:2;
}


/********************
* Slides
********************/
#slide {
	height:250px;
	left:-1px;
	overflow: hidden;
	position: relative;
	top:-1px;
	width:300px;
	background-color: #e00e20;
}

#slide div {
	background-position: center top !important;
	display: block;
	height: 100%;
	left: 0;
	top: 0;
	width:100%;
	opacity: 0;
}

#slide:after,
#slide:before {
	content: '';
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width:100%;
}

#slide:after {
	background-image: url("images/vignette.png");
	z-index: 7;
}

#slide:before {
	background-image: url("images/bg-logo.png");
	background-repeat: no-repeat;
	z-index: 6;
}

/* 01 ~ yellow */
#slide .intro {
	background-image: url("images/bg-01.png");
	opacity: 1;
	z-index: 1;
}

/* 02 ~ red */
#slide .red {
	background-image: url("images/bg-02.png");
	left: -350px;
	z-index: 2;
}

/* 03 ~ blue */
#slide .blue {
	background-image: url("images/bg-03.png");
	/* background-position: center -10px !important; */
	top: -650px;
	z-index: 3;
}

/* 04 ~ gray */
#slide .gray {
	background-image: url("images/bg-04.png");
	left: 350px;
	z-index: 4;
}

/* 05 ~ yellow */
#slide .final {
	background-image: url("images/bg-05.png");
	top: -650px;
	z-index: 5;
}


/********************
* Shelf
********************/
#shelf {
	display: block;
	height: 87px;
	left: 0;
	top: 216px;
	transition: top .75s cubic-bezier(0.42, 0, 0.58, 1);
	width: 300px;
	z-index: 2;
}

#shelf:before {
	background-color: #fff;
	content: '';
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width:100%;
	z-index: 1;
}

#shelf:after {
	background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 75%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 75%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 75%,rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
	content: '';
	display: block;
	height: calc(100% - 10px);
	left: 0;
	position: absolute;
	top: 10px;
	width:100%;
	z-index: 8;
}

/* cta */
.cta {
	background-image: url("images/cta.png");
	color: transparent;
	cursor: pointer;
	font-size: 0;
	height: 30px;
	left: 14px;
	top: 32px;
	transition: all .5s cubic-bezier(0.42, 0, 0.58, 1);
	width: 148px;
	z-index: 9;
}

.cta:hover {
	transform: scale(1.05);
	transition: all .25s cubic-bezier(0.42, 0, 0.58, 1);
}

/* legal */
.legal {
	background-image: url("images/cta-legal.png");
	color: transparent;
	cursor: pointer;
	font-size: 0;
	height: 11px;
	left: 175px;
	top: 32px;
	width: 100px;
	z-index: 9;
}

.legal:hover .legal-box {
	opacity: 1;
}

.legal-box {
	background-color: #fff;
	background-image: url("images/tac.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: initial;
	height: 84px;
	left: 14px;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	top: 96px;
	width: 142px;
}

.u {
	text-decoration: underline;
}


/********************
* Shared
********************/
#head div,
.body,
.arm,
#slide div,
#slide div:after,
.cta,
.legal {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
