/*
  ========================================
  Color Switcher
  ========================================
*/


#color-switcher {
  background-color: #fff;
  max-width: 205px;
  position: fixed;
  top: 200px;
  z-index: 999;
  border-radius: 0;
  left: -206px;
  text-align: center;
}

#color-switcher h2 {
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  line-height: 30px;
  padding: 7px 0 6px 0px;
  margin: 0;
  text-align: center;
}

#color-switcher h2 a {
  background-color: transparent;
  display: block;
  height: 43px;
  position: absolute;
  right: -43px;
  top: 0;
  width: 43px;
  text-align: center;
}

#color-switcher i {
  margin: 7px 0;
}

#color-switcher h3 {
  color: rgba(0, 0, 0, .7);
  font-size: 13px;
  font-weight: 600;
  margin-top: 20px;
  text-align: center;
}

.colors {
  list-style: none;
  overflow: hidden;
  padding: 0;
  display: inline-block;
  padding: 10px 10px 15px 11px;
  
}

.colors li {
  float: left;
  margin: 5px 3px 0 3px; 
}

.colors li a {
  display: block;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border-radius: 0;
}
.colors li a:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
}
#color-switcher p {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    padding-bottom: 20px;
    color: rgba(0, 0, 0, .7);
}

.default {
  background: #26a8e4;
}

.orange {
  background: #fb724e;
}

.green-1 {
  background: #00ccad;
}
.yellow-1 {
  background: #fda527;
}

.yellow-2 {
  background: #f1dd00;
}

.red {
  background: #ff0030;
}

.purple-1 {
  background: #e47ac2;
}

.purple-2 {
  background: #9b59b6;
}

.pink-1 {
  background: #ec008c;
}

.pink-2 {
  background: #ec005f;
}

.beige {
  background: #b8a279;
}

.golden {
  background: #dac14c;
}

.emerald {
  background: #14A989;
}

.aqua {
  background: #008f95;
}

.peach {
  background: #fea680;
}

	@media only screen and (max-width: 1023px) { #color-switcher { display: none; } }