
/* 
Global Styles 
Theme    : Lantern Offer Theme 
Version  : v1.0
*/

/* --------------- Color switcher --------------- */

.colors-switcher {
    width:50px;
    padding:10px;
    position:fixed;
    z-index:1993;
    top:50px;
    right:0;
    background-color:#fff;
    border-radius:0 5px 5px 0;
    border:1px solid rgba(0,0,0,.1);
    -webkit-transition:all .4s ease-in-out;
    -moz-transition:all .4s ease-in-out;
    -ms-transition:all .4s ease-in-out;
    -o-transition:all .4s ease-in-out;
    transition:all .4s ease-in-out;
	color:#000000;
}
.colors-switcher > p {
    font-size: 11px;
    line-height:0;
	padding-top:10px;
	margin:0 0 20px 0;
}
.colors-switcher #show-panel {
    position:absolute;
    right:-33px;
    top:15px;
    width:33px;
    height:38px;
    z-index:1992;
    display:block;
    background-color:#fff;
    border:1px solid rgba(0,0,0,.1);
    border-radius:0 5px 5px 0;
	border-right:5px solid #ebebeb;
	margin-left:0;
    cursor: pointer;
}
.colors-switcher #show-panel i {
    color: #3D3D3D;
    font-size: 20px;
    line-height: 38px;
    margin-left:5px;
}
.colors-switcher .colors-list {
    margin:0;
    padding:0;
}
.colors-switcher .colors-list li {
    float:left;
    display:block;
    margin-bottom:2px;
    margin-right:6px;
}
.colors-switcher .colors-list li a {
    display:inline-block;
    width:24px;
    height:24px;
    border-radius:2px;
    transition:all 0.2s linear;
    -moz-transition:all 0.2s linear;
    -webkit-transition:all 0.2s linear;
    -o-transition:all 0.2s linear;
    cursor: pointer;
}
.colors-switcher .colors-list li a:hover {
    box-shadow:inset 0 0 6px rgba(0,0,0,.4);
}

.colors-switcher .colors-list a.blue {
    background-color:#6964fa;
}
.colors-switcher .colors-list a.yellow {
    background-color:#fef200;
}
.colors-switcher .colors-list a.orange {
    background-color:#fe5e00;
}
.colors-switcher .colors-list a.pink {
    background-color:#e64461;
}
.colors-switcher .colors-list a.green {
    background-color:#003e00;
}
.colors-switcher .colors-list a.black {
    background-color:#000000;
}


