@charset "UTF-8";
/* MINE IMAGES SLIDER */

.mine-wrap {
	position: relative;
	width: 100%;
	opacity: 1;
}
.mine-wrap.loading {
	background: transparent url(../img/loader.gif) no-repeat center center scroll;	
}

.slider {
	margin: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	font-size: 0px;
	opacity: 0;
	
	-webkit-transition: all 666ms ease-in-out;
	-moz-transition: all 666ms ease-in-out;
	-ms-transition: all 666ms ease-in-out;
	-o-transition: all 666ms ease-in-out;
	transition: all 666ms ease-in-out;
}

.mine-wrap li.slide {
	display: inline-block;
	opacity: .1666;
	-webkit-transition: all 1000ms ease-in-out;
	-moz-transition: 	all 1000ms ease-in-out;
	-ms-transition: 	all 1000ms ease-in-out;
	-o-transition: 		all 1000ms ease-in-out;
	transition: 		all 1000ms ease-in-out;
}
.mine-wrap li.active {
	opacity: 1;
}

.mine-wrap li.slide > img {
	width: auto;
	padding: 0 10px;
}

/* CONTROLLER */
.mine-wrap .controller a {
	display: block;
	font-size: 20px;
	padding: 10px;
	background-color: transparent;
	position: absolute;
	top: 50%;
	margin-top: -20px;
}
.mine-wrap .controller a.prev {
	left: 0;
}
.mine-wrap .controller a.next {
	right: 0;
}

/* CATEGORIES */
.menu-slide-category {
	width: 100%;
	text-align: center;
	margin: 12px 0 20px;
	font-family: 'MercuryDisplay-Roman';
	font-size:0.9rem;
}
.menu-slide-category a {
	padding: 10px 10px 1px 10px;
	text-transform: uppercase;
	color:#000;
	border-right:1px solid #000;
}
.menu-slide-category a:last-child {
	border-right:none;
}
.menu-slide-category a.active {
	text-decoration: underline;
}

	/* HEIGHT */


/* Small screens  -  max-width 640px, mobile-only styles, use when QAing mobile issues */
@media only screen and (max-width: 640px) {
	.mine-wrap,
	.mine-wrap li.slide > img {
		height: 300px;
	}
}

/* Medium screens  -  min-width 641px, medium screens */
@media only screen and (min-width: 40.063em) { 

}

/* Medium screens  -  min-width 641px and max-width 1024px, use when QAing tablet-ONLY issues */
@media only screen and (min-width: 40.063em) and (max-width: 64em) { 
	.mine-wrap,
	.mine-wrap li.slide > img {
		height: 400px;
	}
}

/* Large screens  -  min-width 1025px, large screens */
@media only screen and (min-width: 64.063em) { 

}

/* Large screens  -  min-width 1024px and max-width 1440px, use when QAing large screen-ONLY issues */
@media only screen and (min-width: 64.063em) and (max-width: 90em) { 
	.mine-wrap,
	.mine-wrap li.slide > img {
 		height: 500px;
	}
}


/* XLarge screens  -  min-width 1441px, xlarge screens */
@media only screen and (min-width: 90.063em) { 
	.mine-wrap,
	.mine-wrap li.slide > img {
		height: 700px;
	}
}

