/*!
*
* ColorPick jQuery plugin
* https://github.com/philzet/ColorPick.js
*
* Copyright (c) 2017-2019 Phil Zet (a.k.a. Phil Zakharchenko)
* Licensed under the MIT License
*
*/

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans"), local("OpenSans"),
    url(https://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3bO3LdcAZYWl9Si6vvxL-qU.woff)
      format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: local("Open Sans Bold"), local("OpenSans-Bold"),
    url(https://fonts.gstatic.com/s/opensans/v13/k3k702ZOKiLJc3WVjuplzKRDOzjiPcYnFooOUGCOsRk.woff)
      format("woff");
}

/* Used as an anchor point to position the color picker */
.colorPickWrapper {
    position: relative;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0,0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -ms-backdrop-filter: blur(5px);
    -o-backdrop-filter: blur(5px);

}

#colorPick * {
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
}

#colorPick {
  border:1px solid #ccc;
  border-radius:5px;
}
#colorPickContent{
  background: rgb(255, 255, 255);
  position: relative;
  border-radius: 8px;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
  padding: 15px;
  font-family: "Open Sans", sans-serif;
  width: 275px;
  box-sizing: content-box;
  z-index: 999;
  margin-left: auto;
  margin-right: auto;
  top:120px;
}
#colorPickHeader p{
  font-size: 18px;
    font-weight: bold;
    text-align: center;
}
#colorPickHeader span{
  border-radius: 5px;
    width: 80px;
    height: 40px;
    margin: 5px;
    cursor:not-allowed;
    display: inline-flex;
    border: thin solid #eee;
    text-align: center;
    justify-content: space-around;
    vertical-align: middle;
    padding: 6px;
}
#colorPick span {
  user-select: none;
  font-size: 9pt;
  text-transform: uppercase;
  font-weight: bold;
  color: #bbb;
  margin-bottom: 5px;
  display: block;
  clear: both;
}

.customColorHash {
  border-radius: 5px;
  height: 23px;
  width: 122px;
  margin: 1px 4px;
  padding: 0 4px;
  border: 1px solid #babbba;
  outline: none;
}
.customColorHash.error {
  border-color: #ff424c;
  color: #ff424c;
}

.colorPickButton {
  border-radius: 5px;
    width: 80px;
    height: 40px;
    margin: 5px;
    cursor: pointer;
    display: inline-flex;
    border: thin solid #eee;
    text-align: center;
    justify-content: space-around;
    vertical-align: middle;
    padding: 6px;
}

.colorPickButton:hover {
  transform: scale(1.1);
}

.colorPickDummy {
  background: #fff;
  border: 1px dashed #bbb;
}
