/****
wis-settings.css
****/
/* demo style */
.cd-nugget-info {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 40px;
	line-height: 40px;
	top: 0;
	left: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.cd-nugget-info a {
	width: 160px;
	position: relative;
	font-size: 14px;
	color: #6375ad;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}
.cd-nugget-info a:hover {
	opacity: .8;
}
.cd-nugget-info span {
	vertical-align: middle;
	display: inline-block;
}
.cd-nugget-info span svg {
	display: block;
}
.cd-nugget-info .cd-nugget-info-arrow {
	fill: #6375ad;
}
.nav-tab-wrapper{display:none;}
.cd-tabs {
	position: relative;
	width: 90%;
	max-width: 960px;
	margin-top:15px;
}
.cd-tabs__navigation a:focus{
	box-shadow:none;
}
@supports (background: linear-gradient(to left, #000, #000)) or (background: -webkit-linear-gradient(to left, #000, #000)) {
	/* if linear-gradient is supported */
	.cd-tabs::after {
		/* subtle gradient layer on top right of the tabbed navigation- to indicate it's possible to scroll */
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		height: 60px;
		width: 50px;
		z-index: 1;
		pointer-events: none;
		background: -webkit-gradient(linear, right top, left top, from(#f8f7ee), to(rgba(248, 247, 238, 0)));
		background: linear-gradient(to left, #f8f7ee, rgba(248, 247, 238, 0));
		visibility: visible;
		opacity: 1;
		-webkit-transition: opacity .3s 0s, visibility 0s 0s;
		transition: opacity .3s 0s, visibility 0s 0s;
	}
	.cd-tabs.cd-tabs--scroll-ended::after {
		/* class added in JavaScript - remove the gradient layer when it's no longer possible to scroll */
		visibility: hidden;
		opacity: 0;
		-webkit-transition: opacity .3s 0s, visibility 0s .3s;
		transition: opacity .3s 0s, visibility 0s .3s;
	}
}
.cd-tabs nav {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	background: #f8f7ee;
	-webkit-box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
	box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
}
@media only screen and (min-width: 768px) {
	.cd-tabs::after {
		display: none;
	}
	.cd-tabs nav {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		-webkit-box-shadow: inset -2px 0 3px rgba(203, 196, 130, 0.06);
		box-shadow: inset -2px 0 3px rgba(203, 196, 130, 0.06);
		z-index: 1;
	}
}
@media only screen and (min-width: 960px) {
	.cd-tabs nav {
		position: relative;
		float: none;
		background: transparent;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
}
.cd-tabs__navigation {
	width: 360px;
	margin:0;
}
.cd-tabs__navigation:after {
	/* clearfix */
	content: "";
	display: table;
	clear: both;
}
.cd-tabs__navigation li {
	float: left;
}
.cd-tabs__navigation a {
	position: relative;
	display: block;
	height: 60px;
	width: 60px;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	color: #c3c2b9;
	padding-top: 35px;
}
.cd-tabs__navigation a:hover {
	color: #29324e;
	background-color: rgba(233, 230, 202, 0.3);
}
.cd-tabs__navigation a.cd-selected {
	background-color: #ffffff !important;
	-webkit-box-shadow: inset 0 2px 0 #f05451;
	box-shadow: inset 0 2px 0 #f05451;
	color: #29324e;
}
.cd-tabs__navigation a::before {
	/* icons */
	content: "";
	position: absolute;
	top: 15px;
	left: 50%;
	margin-left: -8px;
	display: inline-block;
	height: 16px;
	width: 16px;
	background-repeat: no-repeat;
}
.cd-tabs__navigation a[data-content='new']::before {
	background-position: 0 0;
}
.cd-tabs__navigation a[data-content='gallery']::before {
	background-position: -16px 0;
}
.cd-tabs__navigation a[data-content='store']::before {
	background-position: -32px 0;
}
.cd-tabs__navigation a[data-content='settings']::before {
	background-position: -48px 0;
}
.cd-tabs__navigation a[data-content='trash']::before {
	background-position: -64px 0;
}
.cd-tabs__navigation a[data-content='inbox']::before {
	background-position: -80px 0;
}
.cd-tabs__navigation a[data-content='new'].cd-selected::before {
	background-position: 0 -16px;
}
.cd-tabs__navigation a[data-content='gallery'].cd-selected::before {
	background-position: -16px -16px;
}
.cd-tabs__navigation a[data-content='store'].cd-selected::before {
	background-position: -32px -16px;
}
.cd-tabs__navigation a[data-content='settings'].cd-selected::before {
	background-position: -48px -16px;
}
.cd-tabs__navigation a[data-content='trash'].cd-selected::before {
	background-position: -64px -16px;
}
.cd-tabs__navigation a[data-content='inbox'].cd-selected::before {
	background-position: -80px -16px;
}
@media only screen and (min-width: 768px) {
	.cd-tabs__navigation {
		/* move the nav to the left on medium sized devices */
		width: 80px;
		float: left;
	}
	.cd-tabs__navigation a {
		height: 80px;
		width: 80px;
		padding-top: 46px;
	}
	.cd-tabs__navigation a.cd-selected {
		-webkit-box-shadow: inset 2px 0 0 #f05451;
		box-shadow: inset 2px 0 0 #f05451;
	}
	.cd-tabs__navigation a::before {
		top: 24px;
	}
}
@media only screen and (min-width: 960px) {
	.cd-tabs__navigation {
		/* tabbed navigation on top on big devices */
		width: auto;
		background-color: #f8f7ee;
		-webkit-box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
		box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
	}
	.cd-tabs__navigation li{
		margin:0;
	}
	.cd-tabs__navigation a {
		height: auto;
		line-height:initial;
		width: auto;
		text-align: left;
		font-size: 13px;
		padding: 10px 15px;
		text-decoration: none;
	}
	.cd-tabs__navigation a.cd-selected {
		-webkit-box-shadow: inset 0 2px 0 #f05451;
		box-shadow: inset 0 2px 0 #f05451;
	}
	.cd-tabs__navigation a::before {
		top: 50%;
		margin-top: -8px;
		margin-left: 0;
		left: 40px;
	}
}
.cd-tabs__content {
	background: #ffffff;
	margin:0;
}
.cd-tabs__content li {
	display: none;
	padding:1px 20px;
}
.cd-tabs__content li.cd-selected {
	display: block;
	-webkit-animation: cd-fade-in 0.5s;
	animation: cd-fade-in 0.5s;
}
@media only screen and (min-width: 768px) {
	.cd-tabs__content {
		min-height: 480px;
	}
}
@media only screen and (min-width: 960px) {
	.cd-tabs__content {
		min-height: 0;
	}
}
@-webkit-keyframes cd-fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes cd-fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}