button.secondary, .button.secondary {
	color:#fff;
	font-size:30px;
	font-weight:200;
	background-color:#999;
	margin-bottom:10px;
	padding:5px 10px;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;

	transition:all ease .5s;
	-webkit-transition:all ease .5s;
	-moz-transition:all ease .5s;
	-o-transition:all ease .5s;
}
button.secondary:hover, .button.secondary:hover {
	color:#fff;
	background-color:#777;
}

/* END Foundation overrides */

/*** SIZE CONTROL CONTROLLER **/
.sizing-controls-cont {
	color:#4A4A4A;
	position:fixed;
	bottom:-175px;
	right:1rem;
	padding:0px 10px 0px 0px;
	background-color:transparent;
	z-index:9999;

	transition:all ease 1s;
	-webkit-transition:all ease 1s;
	-moz-transition:all ease 1s;
	-o-transition:all ease 1s;
}
.sizing-controls-cont.openme {
	bottom:0px;
}
ul.size-control-list {
	list-style:none;
	margin:0px;
	padding:0px;
}
ul.size-control-list li {
	width:100%;
}
ul.size-control-list li div {
	width:100%;
	cursor:pointer;
}

.size-gear i,
.arrow-prev i,
.arrow-next i,
.home i {
	color:#999!important;
	font-size:22px;
	text-align:center;
	position:relative;
	top:7px;
	width:100%;
	height:42px;
	line-height:42px;
	display:inline-block;
	margin:20px 0px;
	z-index:9999;

	transition:all ease .7s;
	-webkit-transition:all ease .7s;
	-moz-transition:all ease .7s;
	-o-transition:all ease .7s;
}
.size-gear i:hover {
	color:#333!important;
	transform:scale(1.3) rotate(170deg);
}
.controls-cont {
	position:fixed;
	bottom:0px;
	right:5em;
	margin: 0px;
	z-index:9999;
	list-style: none;
}
.controls-cont li {
	height:4.6em;
	padding:0px 10px;
	display: inline-block;
}
ul.size-gear {
	position:absolute;
	list-style:none;
	right:5em;
}
.arrow-prev i:hover,
.arrow-next i:hover,
.home i:hover {
	color:#333!important;
	transform:scale(1.3);
	-ms-transform:scale(1.3);
	-webkit-transform:scale(1.3);
}
.size-control-list .button.small {
	margin-bottom:0px;
}

/** HIGHLIGHT FOR CURSOR **/
body {
	overflow-x: hidden;
}
.lucky-luke {
	position:absolute;
	z-index:99;
}
.lucky-luke:before {
	content:"";
	position:absolute;
	top:50%;
	left:50%;
	width:100px;
	height:100px;
	opacity:0;
	border-radius:50%;
	box-shadow:0px 0px 14.371px rgba(0,0,0,.5);
	transform:translate(-50%,-50%) scale(0);
	-ms-transform:translate(-50%,-50%) scale(0);
	-webkit-transform:translate(-50%,-50%) scale(0);
	transition:all ease .5s;
}
.highlighter .lucky-luke:before {
	opacity:.5;
	background-color:rgba(0,164,228,.35);
	transform:translate(-50%,-50%) scale(1);
	-ms-transform:translate(-50%,-50%) scale(1);
	-webkit-transform:translate(-50%,-50%) scale(1);
}
.lucky-luke:after {
	content:"";
	position:absolute;;
	top:50%;
	left:50%;
	width:100px;
	height:100px;
	border-radius:50%;
	border:50px #00a4e4 solid;
	opacity:0;
	transform:translate(-50%,-50%) scale(0);
	-ms-transform:translate(-50%,-50%) scale(0);
	-webkit-transform:translate(-50%,-50%) scale(0);
	transition:all ease .5s, border ease .35s 0s;
}
.highlighter .lucky-luke:after {
	opacity:.7;
	border:3px #00a4e4 solid;
	transform:translate(-50%,-50%) scale(1);
	-ms-transform:translate(-50%,-50%) scale(1);
	-webkit-transform:translate(-50%,-50%) scale(1);
	transition:all ease .5s, border ease .35s .2s;
}

/* GREEN HIGHLIGHT OPTION */
.lucky-green.highlighter .lucky-luke:before {
	background-color:rgba(141,198,63,.7);
}
.lucky-green .lucky-luke:after {
	border-color: #8dc63f;
}
/* YELLOW HIGHLIGHT OPTION */
.lucky-yellow.highlighter .lucky-luke:before {
	background-color:rgba(253,185,36,.7);
}
.lucky-yellow .lucky-luke:after {
	border-color: #fdb924;
}
.lucky-spotlight.highlighter .lucky-luke:before {
	background-color:transparent;
	    box-shadow: 0px 0px 0px 300vw #000;
}
