/*

Style   : Demo CSS
Version : 1.0
Author  : Surjith S M
URI     : http://themeforest.net/user/surjithctly

Copyright © All rights Reserved
Surjith S M / @surjithctly

*/

.color-picker {
    position: fixed;
    left: 0;
    top: 50%;
    margin-top: -175px;
    z-index: 10;
}

@media (max-width: 767px) {
    .color-picker {
        display: none;
    }
}

.color-picker a {
    display: block;
    position: relative;
    height: 50px;
    width: 50px;
    padding: 20px;
    margin-left: -30px;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.color-picker a:hover,
.color-picker a.selected {
    margin-left: 0;
}

.color-picker a:before {
    content: "";
    display: block;
    height: 10px;
    width: 10px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    background: #000;
    opacity: 0.2;
}

.color-picker a.selected:before {
    background: #fff;
    opacity: 1;
    -webkit-box-shadow: 0px 1px 0px 0px rgba(50, 50, 50, 0.25);
    -moz-box-shadow: 0px 1px 0px 0px rgba(50, 50, 50, 0.25);
    box-shadow: 0px 1px 0px 0px rgba(50, 50, 50, 0.25);
}

.color_purple {
    background-color: rgb(149, 122, 202);
}

.color_blue {
    background-color: rgb(31, 167, 218);
}

.color_orange {
    background-color: rgb(255, 127, 102);
}

.color_green {
    background-color: rgb(150, 202, 45);
}

.color_red {
    background-color: rgb(255, 88, 121);
}

.color_light_blue {
    background-color: rgb(109, 188, 219);
}

