.colorchoicefix{
	position:fixed;
	bottom:100px;
	width:57px;
	padding:10px;
	background:#333;
	z-index:10000;
	left:0;
    border-radius:0 5px 5px 0;
}
.colorchoicefix h4 {
    text-align:center;
    text-transform:uppercase;
    font-size:12px;
    font-weight:bold;
    background:#000;
    margin:0 0 15px 0;
    padding:10px 0;
    color:#fff;
}
.colorchoicefix button {
	width:100%;
	height:25px;
	border:none;
	background:none;
	color:#fff;
	font-size:12px;
	text-transform:uppercase;
        margin:5px 0;
        outline:none;
    cursor:pointer;
}
.colorchoicefix button:hover {
	opacity:0.8;
}
.colorchoicefix button#blue {
	background:#3865a6;
}
.colorchoicefix button#orange {
	background:#e1965d;
}
.colorchoicefix button#green {
	background:#94aa1a;
}
.colorchoicefix button#maroon {
	background:#a42347;
}
@media screen and (max-width: 650px) { 
    .colorchoicefix {
        display:none;
    }
}