﻿.demo-tools {
    position: fixed;
    top: 100px;
    right: -5px;
    z-index: 9999;
    transition: right 0.8s;
}
.demo-tools.closed {
    right:-70px;
}
.demo-tools.closed .tool-close a i:before {content: "\f067";}
.color-pallete {
    background: #efeeee;
    padding: 10px 2px 10px 2px;
    width: 65px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.demo-tools .tool-close {
    border: none;
    position: absolute;
    top: -8px;
    left: -8px;
    font-size: 14px;
    color: red;
    display: block;
    background: #efeeee;
    border-radius: 12px;
    width: 25px;
    height: 25px;
    padding: 0px;
    padding-top: 2px;
    padding-left: 7px;
    margin: 0;
    border: solid 1px #ccc;
    transition: all 0.8s;
}
    .demo-tools.closed .tool-close {
        width:40px;padding-right:22px;left:-30px;
    }


    .color-pallete .tool-header {
        padding-top: 10px;
        padding-bottom: 10px
    }
    .color-pallete span {
        font-size: 10px;
        font-weight: bold;
        color: #3b3d3e;
        display: block;
        border-bottom: solid 1px #ccc;
        line-height: 10px;
        padding-bottom: 2px
    }
    .color-pallete ul {
        padding: 0;
        margin: 0;
        text-align: center;
        font-size:inherit;
    }
    .color-pallete ul li {
      
        display:block;
        
    }

        .color-pallete ul li:not(.full) {
            width: 20px;
            height: 20px;
            display: inline-block;
            text-indent: -9999999px;
        }

        .color-pallete ul li.device i {
            font-size: 1.4em;
            width: 100%;
            color: #95a3ab;
            padding-bottom: 10px;
            transition: color .2s ease-out;
        }
        .color-pallete ul li.device.desktop i {
            font-size: 1.8em;
            
        }


        .color-pallete ul li.device:hover i {
            color: #555C60;
        }

        .color-pallete ul li.device.d_selected i {
            color: #555C60;
        }
        

        .color-pallete ul li a {
            width:100%;height:100%;
            display: block;
            
        }
    
