@charset "utf-8";

/********************************************************
■ COLOR-PICKER
********************************************************/
.palette{position:relative;width:70px;background-color:#fff;border-radius:4px;box-shadow:0 10px 10px -5px rgb(0 0 0 / 5%),0 10px 10px -5px rgb(0 0 0 / 4%)!important;-webkit-box-shadow:0 10px 10px -5px rgb(0 0 0 / 5%),0 10px 10px -5px rgb(0 0 0 / 4%)!important;-moz-box-shadow:0 10px 10px -5px rgb(0 0 0 / 5%),0 10px 10px -5px rgb(0 0 0 / 4%)!important;-ms-box-shadow:0 10px 10px -5px rgb(0 0 0 / 5%),0 10px 10px -5px rgb(0 0 0 / 4%)!important;-o-box-shadow:0 10px 10px -5px rgb(0 0 0 / 5%),0 10px 10px -5px rgb(0 0 0 / 4%)!important;flex-direction:column}.palette .colours{height:40px;display:flex;flex-direction:row}.palette .colours>*{cursor:crosshair;flex-grow:1;transition:.25s ease}.palette .colours>:hover{flex-grow:1.5}.palette .colours .c1{border-top-left-radius:4px}.palette .colours .c2{border-top-right-radius:4px}.palette .details{padding:6px 10px}.palette .details .name{font-weight:700}.palette .details .values{display:none;font-size:12px;color:#aab2bd}
.picker-title {
  outline: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #5380F7;
  min-width: 100%;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  padding: 16px 20px;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  overflow: hidden;
}

.title-box {
  display: block;
  height: 50px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
  margin-bottom: 15px;
  text-align: center;
}
.title-box:after {
  position: absolute;
  content: "";
  display: inline-block;
  background: #3bade3;
  background: linear-gradient(45deg, #3bade3 0%, #576fe6 25%, #9844b7 51%, #ff357f 100%);
  height: 50px;
  width: 372px;
  z-index: -1;
  transform: translateX(-280px);
  transition: transform 400ms ease-in;
}
.title-box:hover:after {
  transform: translateX(-200px);
}
.title-box span {
  position: relative;
  top: 14px;
}

.color_picker { position: fixed; left: 0px; top: 0; width: 185px; height: 100%; margin-left:-185px; transition-property: left; transition-duration: 0.1s; box-shadow: 0 0 5px 5px rgb(50 60 70 / 15%); -webkit-box-shadow: 0 0 5px 5px rgb(50 60 70 / 5%); -moz-box-shadow: 0 0 5px 5px rgba(50, 60, 70, 0.15); z-index: 99; }
#color_picker .color_body { width: 185px; height: 100%; overflow-y: auto; overflow-x: hidden; }
.color_picker.active { margin-left:0px; opacity:1; }
.color_picker>div { height: 100%; padding: 15px; box-sizing: border-box; }
@media screen and (min-width: 576px) {
.color_picker .bt_openclose { position: absolute; top: 135px; left: 100%; width: 45px; height: 45px; border-radius: 0 10px 10px 0; font-size: 18px; background-color: var(--color-picker-bg-primary); color: var(--color-picker-btton-bg-primary); box-shadow: 0 0 5px 5px rgb(50 60 70 / 15%); -webkit-box-shadow: 0 0 5px 5px rgb(50 60 70 / 5%); -moz-box-shadow: 0 0 5px 5px rgba(50, 60, 70, 0.15); }
}
@media screen and (max-width: 576px) {
.color_picker .bt_openclose { position: absolute; left: 100%; width: 45px; height: 45px; border-radius: 0 10px 10px 0; font-size: 18px; bottom: 112px; background-color: var(--color-picker-bg-primary); color: var(--color-picker-btton-bg-primary); box-shadow: 0 0 5px 5px rgb(50 60 70 / 15%); -webkit-box-shadow: 0 0 5px 5px rgb(50 60 70 / 5%); -moz-box-shadow: 0 0 5px 5px rgba(50, 60, 70, 0.15); }
}
.color_picker .bt_openclose i { padding-top: 8px; }
.color_picker .light_mode { margin-top: 0px; margin-bottom: 25px; }
.color_picker .light_mode h3  { 
    position: relative;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    letter-spacing: -.5px;
    vertical-align: top;
	text-align: center;
    margin: 9px 0;
    height: 31px;
    display: block;
    line-height: 31px;
    border-radius: 15px;
    background-color: #615dfa;
    top: 50%; transform: translateY(-50%);
 }
.color_picker ul { font-size: 0;}
.color_picker li { display: inline-block; width: 70px; font-size: 12px; margin-right: 15px; margin-bottom: 15px; text-align: center; }
.color_picker li:nth-child(2n)	{ margin-right: 0;}
.color_picker .img_wrap { display: inline-block; width: 50px; height: 50px; padding: 10px; margin-bottom: 10px; border-radius: 15px; background-color: #eee; }
.color_picker .dark_mode h3 {
	position: relative;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    letter-spacing: -.5px;
    vertical-align: top;
	text-align: center;
    margin: 9px 0;
    height: 31px;
    display: block;
    line-height: 31px;
    border-radius: 15px;
    background-color: #222;
    top: 50%; transform: translateY(-50%);
}
.color_picker img { border-radius: 5px; width: 100%; height: auto;}
.color_picker .bt_nemo	{ display: inline-block; width: 100%; margin-bottom: 15px; padding: 10px 0; text-align: center; }
.color_picker	{ background-color: var(--color-picker-bg-primary); }
.color_picker,
.color_picker a { color: #222;}
