/**
 * Justmotion v1.0
 * One page HTML template
 * http://axminenko.com
 *
 * Copyright 2014 Alexander Axminenko
 */
.switcher {
    -webkit-backface-visibility: hidden;
    display: block;
    position: fixed;
    z-index: 9999;
    width: 158px;
    background-color: #fff;
    border: 1px solid rgba(229, 229, 229, 0.5);
    border-radius: 0 0 3px 0;
    padding: 20px 20px 8px 20px;
    left: -200px;
}
body.mobile .switcher { display: none }
.switcher .link {
    position: absolute;
    width: 50px;
    height: 50px;
    right: -50px;
    top: -1px;
    background-color: #fff;
    border: 1px solid rgba(229, 229, 229, 0.5);
    border-left: 0;
    border-radius: 0 50% 50% 0;
}
.switcher .link i {
    cursor: pointer;
    display: block;
    position: absolute;
    padding-top: 18px;
    padding-left: 15px;
    width: 35px;
    height: 35px;
    border-radius: 0 50% 50% 0;
    background-color: transparent !important;
    opacity: 1;
    transition: all .2s ease-in;
}
.switcher .link i:hover {
    opacity: .6;
}
.switcher .color {
    display: block;
    width: 30px;
    height: 30px;
    float: left;
    margin-right: 12px;
    margin-bottom: 12px;
    text-align: center;
}
.switcher .color:nth-child(4n+4) { margin-right: 0 }
.switcher .color i {
    color: #fff !important;
    line-height: 1.8rem;
    visibility: hidden;
    opacity: 0;

    transition: all .2s ease-in;
}
.switcher .color.active i,
.switcher .color.active:hover i {
    visibility: visible;
    opacity: 1;
}
.switcher .color:hover i {
    visibility: visible;
    opacity: .5;
}
.switcher span {
    display: block;
    font-weight: 600;
    color: rgba( 0, 0, 0, 0.25 );
    margin: 20px 0;
}
.switcher span.first { margin-top: 0 }

.switcher .default      { background-color: #61D2D6; color: #61D2D6 }
.switcher .pink         { background-color: #ff8fa0; color: #ff8fa0 }
.switcher .green        { background-color: #88d661; color: #88d661 }
.switcher .yellow       { background-color: #e9e452; color: #e9e452 }
.switcher .coral        { background-color: #ff824b; color: #ff824b }
.switcher .steelblue    { background-color: #93CBC0; color: #93CBC0 }
.switcher .darksalmon   { background-color: #DA9586; color: #DA9586 }
.switcher .skyblue      { background-color: #86ABD7; color: #86ABD7 }