

/*------------------------------
	COLOR SWITCHER
------------------------------*/

#color-switcher {
	background-color: transparent;
    padding:10px;
    position:fixed;
    right: -181px;
    top: 130px;
    width: 180px;
    z-index: 1000;
	box-shadow: 0px 0px 0px 0 rgba(0,0,0,0.4);
}

#toggle-switcher {
	background-color: transparent;
	color:#FFFFFF;
	font-size:26px;
	text-align: center;
    position: absolute;
    left: -46px;
    top: 0;
    width: 45px;
	height: 45px;
	cursor:pointer;
	padding-top:3px;
}

#color-switcher span {
	color:#333333;
	display:block;
	font-weight:700;
}

#color-switcher ul {
	margin-bottom:0;
}

#color-switcher ul li {
	background-color: transparent;
	width:30px;
	height:30px;
	margin-bottom:7px;
	cursor:pointer;
}

#color-switcher ul li:last-child {
	margin-bottom:0;
}

#color-switcher ul.list-inline {
	margin:5px 0 10px;
}

#color-switcher ul.list-inline:last-child {
	margin:5px 0 0;
}

#color-switcher ul.list-inline li {
	margin:0 2px;
}

#color-switcher ul li#blue {background-color: #1d71f0;}
#color-switcher ul li#green {background-color: #92b06a;}
#color-switcher ul li#orange {background-color: #fe9601;}
#color-switcher ul li#red {background-color: #d7432d;}
#color-switcher ul li#purple {background-color: #57102c;}
#color-switcher ul li#light-blue {background-color: #2FC3DF;}
#color-switcher ul li#yellow {background-color: #e9e0d6;}
#color-switcher ul li#pink {background-color: #E84097;}
#color-switcher ul li#light-green {background-color: #BAD72F;}
#color-switcher ul li#black {background-color: #868686;}
