@import url(/templates/OnePageBold_Master/styles.css);


/* Color Palette================================================================ */
#color-palette {
    display: block;
    position: fixed;
    padding: 15px;
    margin: 0;
    top: 0;
    bottom: 0;
    right: -155px;
    left: auto;
    height: 100%;
    width: 155px;
    background-color: #0A0A0A;
    border-left: 1px solid #7c7c7c;
    transition: all 0.4s ease;
    z-index: 999999;
  }
  #color-palette.expand {
    right: 0;
    -webkit-box-shadow: 0px 0px 12px -2px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 12px -2px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 12px -2px rgba(0,0,0,0.75);
  }
  #color-palette .palette-toggle {
    display: block;
    position: absolute;
    -ms-transform: rotate(-90deg); /* IE 9 */
    -webkit-transform: rotate(-90deg); /* Safari */
    transform: rotate(-90deg);
    top: 120px;
    left: -58px;
    padding: 5px 10px;
    border: 1px solid #7c7c7c;
    border-bottom: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background-color: rgba(0,0,0,0.9);
    color: #7c7c7c;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.4s ease;
  }
  #color-palette .palette-toggle:hover {
    color: #ffffff;
    text-decoration: none;
  }
  #color-palette .palette-toggle:focus { outline: 0;}
  #color-palette h3{
    padding: 15px;
    margin: 0;
    font-size: 2em;
    text-align: center;
    border-bottom: 1px solid #3d3d3d;
  }
  #colors {
    margin-top: 30px;
    list-style: none;
    width: 100%;
    padding-left: 0;
  }
  #colors li {
    display: inline-block;
    width: 50px;
    height: 50px;
    margin: 5px;
    border: 2px solid #3d3d3d;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  #colors li a {
    display: block;
    width: 100%;
    height: 100%;
  }
  
  #colors li:hover,
  #colors li.active {
    border-color: #dbdbdb;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 8px 0px rgba(255,255,255,1);
    box-shadow: 0px 0px 8px 0px rgba(255,255,255,1);
  }
  /* ============================================================================= */