
/*
00 - Progress
------------------------------------------------------------*/
.progress-bar {
  -webkit-box-shadow: none;
  box-shadow: none;
  position: relative;
}

.progress {
  background-color: #EEE;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 5px;
  overflow: visible;
  position: relative;
}
.progress.progress-dark {
  background-color: #2d3237;
}
.progress.progress-white {
  background-color: rgba(0, 0, 0, 0.3);
}
.progress.progress-sm {
  height: 10px;
}
.progress.progress-xs {
  height: 5px;
}

.progress-label {
  font-size: 10px;
  margin-bottom: 15px;
  position: relative;
  top: -5px;
}
.progress-label.lasted {
  margin-bottom: 0px;
}
.progress-label.label-white {
  color: white !important;
}

.progress .progress-tooltip {
  filter: alpha(opacity=60);
  opacity: 0.6;
  background-color: #000;
  color: #FFF;
  display: none;
  font-size: 10px;
  padding: 3px 5px 3px 7px;
  position: absolute;
  right: -10px;
  top: -25px;
}
.progress .progress-tooltip:before {
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px;
  border-top-color: black;
  bottom: -10px;
  content: "";
  position: absolute;
  right: 5px;
}

.progress-bar-theme {
  background-color: #6CC3A0;
}

.progress-bar-success {
  background-color: #5cb85c;
}

.progress-bar-white {
  background-color: #FFF;
}

.progress:hover .progress-tooltip, .progress.tooltip-in .progress-tooltip {
  display: inline-block;
}

.progress-stripes .progress-bar {
  background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -ms-linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear, 135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent;
  -webkit-animation: animate-stripes 3s linear infinite;
  -moz-animation: animate-stripes 3s linear infinite;
  animation: animate-stripes 3s linear infinite;
  -webkit-background-size: 30px 30px;
  -moz-background-size: 30px 30px;
  background-size: 30px 30px;
}

.progress-shine span {
  position: absolute;
}
.progress-shine .progress-bar::after {
  background: #fff;
  bottom: 0;
  content: '';
  left: 0;
  filter: alpha(opacity=0);
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-animation: animate-shine 2s ease-out infinite;
  -moz-animation: animate-shine 2s ease-out infinite;
  animation: animate-shine 2s ease-out infinite;
}

@-webkit-keyframes animate-stripes {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 60px 0;
  }
}
@-moz-keyframes animate-stripes {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 60px 0;
  }
}
@keyframes animate-stripes {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 60px 0;
  }
}
@-webkit-keyframes animate-shine {
  0% {
    opacity: 0;
    width: 0;
  }

  50% {
    opacity: .5;
  }

  100% {
    opacity: 0;
    width: 95%;
  }
}
@-moz-keyframes animate-shine {
  0% {
    opacity: 0;
    width: 0;
  }

  50% {
    opacity: .5;
  }

  100% {
    opacity: 0;
    width: 95%;
  }
}
@keyframes animate-shine {
  0% {
    opacity: 0;
    width: 0;
  }

  50% {
    opacity: .5;
  }

  100% {
    opacity: 0;
    width: 95%;
  }
}
/*
00 - colpick Color Picker
------------------------------------------------------------*/
.colpick {
  background: #FFF;
  border: 1px solid #CCC;
  display: none;
  font-family: Arial, Helvetica, sans-serif;
  height: 170px;
  margin-top: 3px;
  position: absolute;
  width: 346px;
  z-index: 10;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.colpick:before {
  border-bottom: 9px solid;
  border-bottom-color: inherit;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  content: '';
  display: inline-block;
  left: 7px;
  position: absolute;
  top: -9px;
}
.colpick:after {
  border-bottom: 8px solid;
  border-bottom-color: #FFF;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  content: '';
  display: inline-block;
  left: 8px;
  position: absolute;
  top: -8px;
}

.colpick_flat {
  display: block;
  overflow: hidden;
  position: relative;
}

.colpick_color {
  cursor: crosshair;
  height: 156px;
  left: 7px;
  outline: 1px solid #aaa;
  overflow: hidden;
  position: absolute;
  top: 7px;
  width: 156px;
}

.colpick_color_overlay1 {
  background-image: -webkit-linear-gradient(left, white, rgba(255, 255, 255, 0));
  background-image: linear-gradient(to right, white, rgba(255, 255, 255, 0));
  height: 156px;
  left: 0;
  position: absolute;
  top: 0;
  width: 156px;
}

.colpick_color_overlay2 {
  background-image: -webkit-linear-gradient(top, transparent, black);
  background-image: linear-gradient(to bottom, transparent, black);
  height: 156px;
  left: 0;
  position: absolute;
  top: 0;
  width: 156px;
}

.colpick_selector_outer {
  background: none;
  border: 1px solid black;
  border-radius: 50%;
  height: 13px;
  margin: -7px 0 0 -7px;
  position: absolute;
  width: 13px;
}

.colpick_selector_inner {
  border: 2px solid white;
  border-radius: 50%;
  height: 11px;
  position: absolute;
  width: 11px;
}

.colpick_hue {
  border: 1px solid #aaa;
  cursor: n-resize;
  height: 156px;
  left: 175px;
  position: absolute;
  top: 6px;
  width: 19px;
}

.colpick_hue_arrs {
  height: 7px;
  left: -8px;
  margin: -7px 0 0 0;
  position: absolute;
  width: 35px;
}

.colpick_hue_larr {
  border-bottom: 6px solid transparent;
  border-left: 7px solid #858585;
  border-top: 6px solid transparent;
  height: 0;
  position: absolute;
  width: 0;
}

.colpick_hue_rarr {
  border-bottom: 6px solid transparent;
  border-right: 7px solid #858585;
  border-top: 6px solid transparent;
  height: 0;
  position: absolute;
  right: 0;
  width: 0;
}

.colpick_new_color {
  background: #f00;
  height: 25px;
  left: 207px;
  position: absolute;
  top: 6px;
  width: 60px;
}

.colpick_current_color {
  background: #f00;
  height: 25px;
  left: 277px;
  position: absolute;
  top: 6px;
  width: 60px;
}

.colpick_field, .colpick_hex_field {
  background: #f3f3f3;
  border: 1px solid #bdbdbd;
  color: #b8b8b8;
  font-size: 12px;
  height: 20px;
  overflow: hidden;
  position: absolute;
  width: 60px;
}

.colpick_rgb_r {
  left: 207px;
  top: 40px;
}

.colpick_rgb_g {
  left: 207px;
  top: 67px;
}

.colpick_rgb_b {
  left: 207px;
  top: 94px;
}

.colpick_hsb_h {
  left: 277px;
  top: 40px;
}

.colpick_hsb_s {
  left: 277px;
  top: 67px;
}

.colpick_hsb_b {
  left: 277px;
  top: 94px;
}

.colpick_hex_field {
  left: 207px;
  top: 121px;
  width: 130px;
}

.colpick_focus {
  border-color: #999;
}

.colpick_field_letter {
  background: #efefef;
  border-right: 1px solid #bdbdbd;
  color: #777;
  font-weight: bold;
  height: 20px;
  line-height: 20px;
  padding: 0 4px;
  position: absolute;
}

.colpick_field input {
  background: transparent;
  border: none;
  color: #555;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  height: 20px;
  line-height: 20px;
  margin: 0;
  outline: none;
  padding: 0;
  position: absolute;
  right: 15px;
  text-align: right;
}

.colpick_hex_field input {
  background: transparent;
  border: none;
  color: #555;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  height: 20px;
  line-height: 20px;
  margin: 0;
  outline: none;
  padding: 0;
  position: absolute;
  right: 15px;
  right: 4px;
  text-align: right;
}

.colpick_field_arrs {
  cursor: n-resize;
  height: 21px;
  position: absolute;
  right: 2px;
  top: -1px;
  width: 9px;
}

.colpick_field_uarr {
  border-bottom: 4px solid #959595;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  height: 0;
  position: absolute;
  top: 5px;
  width: 0;
}

.colpick_field_darr {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #959595;
  bottom: 5px;
  height: 0;
  position: absolute;
  width: 0;
}

.colpick_submit {
  background: #efefef;
  color: #555;
  font-size: 12px;
  font-weight: bold;
  height: 22px;
  left: 207px;
  line-height: 22px;
  position: absolute;
  text-align: center;
  top: 140px;
  width: 130px;
}
.colpick_submit:hover {
  background: #f3f3f3;
  border-color: #999;
  cursor: pointer;
}

.colpick_full_ns .colpick_submit, .colpick_full_ns .colpick_current_color {
  display: none;
}
.colpick_full_ns .colpick_new_color {
  height: 25px;
  width: 130px;
}
.colpick_full_ns .colpick_rgb_r, .colpick_full_ns .colpick_hsb_h {
  top: 42px;
}
.colpick_full_ns .colpick_rgb_g, .colpick_full_ns .colpick_hsb_s {
  top: 73px;
}
.colpick_full_ns .colpick_rgb_b, .colpick_full_ns .colpick_hsb_b {
  top: 104px;
}
.colpick_full_ns .colpick_hex_field {
  top: 135px;
}

.colpick_rgbhex {
  width: 282px;
}
.colpick_rgbhex .colpick_hsb_h, .colpick_rgbhex .colpick_hsb_s, .colpick_rgbhex .colpick_hsb_b {
  display: none;
}
.colpick_rgbhex .colpick_field, .colpick_rgbhex .colpick_submit {
  width: 68px;
}
.colpick_rgbhex .colpick_new_color {
  border-right: none;
  width: 34px;
}
.colpick_rgbhex .colpick_current_color {
  border-left: none;
  left: 240px;
  width: 34px;
}
.colpick_rgbhex .colpick_hex_field {
  width: 68px;
}

.colpick_rgbhex_ns .colpick_submit, .colpick_rgbhex_ns .colpick_current_color {
  display: none;
}
.colpick_rgbhex_ns .colpick_new_color {
  border: 1px solid #8f8f8f;
  width: 68px;
}
.colpick_rgbhex_ns .colpick_rgb_r {
  top: 42px;
}
.colpick_rgbhex_ns .colpick_rgb_g {
  top: 73px;
}
.colpick_rgbhex_ns .colpick_rgb_b {
  top: 104px;
}
.colpick_rgbhex_ns .colpick_hex_field {
  top: 135px;
  width: 68px;
}

.colpick_hex {
  height: 201px;
  width: 206px;
}
.colpick_hex .colpick_hsb_h, .colpick_hex .colpick_hsb_s, .colpick_hex .colpick_hsb_b, .colpick_hex .colpick_rgb_r, .colpick_hex .colpick_rgb_g, .colpick_hex .colpick_rgb_b {
  display: none;
}
.colpick_hex .colpick_hex_field {
  height: 25px;
  left: 80px;
  top: 168px;
  width: 72px;
}
.colpick_hex .colpick_hex_field div, .colpick_hex .colpick_hex_field input {
  height: 25px;
  line-height: 25px;
}
.colpick_hex .colpick_new_color {
  border-right: none;
  left: 7px;
  top: 168px;
  width: 30px;
}
.colpick_hex .colpick_current_color {
  border-left: none;
  left: 40px;
  top: 168px;
  width: 30px;
}
.colpick_hex .colpick_submit {
  height: 25px;
  left: 164px;
  line-height: 25px;
  top: 168px;
  width: 30px;
}

.colpick_hex_ns .colpick_submit, .colpick_hex_ns .colpick_current_color {
  display: none;
}
.colpick_hex_ns .colpick_hex_field {
  width: 114px;
}
.colpick_hex_ns .colpick_new_color {
  left: 8px;
  width: 60px;
}

.colpick_dark {
  background: #161616;
  border-color: #2a2a2a;
}
.colpick_dark:after {
  border-bottom-color: #161616;
}
.colpick_dark .colpick_color {
  outline-color: #333;
}
.colpick_dark .colpick_hue {
  border-color: #555;
}
.colpick_dark .colpick_field, .colpick_dark .colpick_hex_field {
  background: #101010;
  border-color: #2d2d2d;
}
.colpick_dark .colpick_field_letter {
  background: #131313;
  border-color: #2d2d2d;
  color: #696969;
}
.colpick_dark .colpick_field input, .colpick_dark .colpick_hex_field input {
  color: #7a7a7a;
}
.colpick_dark .colpick_field_uarr {
  border-bottom-color: #696969;
}
.colpick_dark .colpick_field_darr {
  border-top-color: #696969;
}
.colpick_dark .colpick_focus {
  border-color: #444;
}
.colpick_dark .colpick_submit {
  background: #131313;
  border-color: #2d2d2d;
  color: #7a7a7a;
}
.colpick_dark .colpick_submit:hover {
  background-color: #101010;
  border-color: #444;
}

.colpick_gray {
  background: #3C4A4D;
  border-color: #3C4A4D;
}
.colpick_gray:after {
  border-bottom-color: #3C4A4D;
}
.colpick_gray .colpick_color {
  outline: 0;
}
.colpick_gray .colpick_hue {
  border: 0;
}
.colpick_gray .colpick_field, .colpick_gray .colpick_hex_field {
  background: #30393B;
  border-color: #30393B;
  color: #DDD;
}
.colpick_gray .colpick_field_letter {
  background: #2F393B;
  border-color: #2F393B;
  color: #DDD;
}
.colpick_gray .colpick_field input, .colpick_gray .colpick_hex_field input {
  color: #AAA;
}
.colpick_gray .colpick_field_uarr {
  border-bottom-color: #696969;
}
.colpick_gray .colpick_field_darr {
  border-top-color: #696969;
}
.colpick_gray .colpick_focus {
  border-color: #444;
}
.colpick_gray .colpick_submit {
  background: #212530;
  color: #7a7a7a;
}
.colpick_gray .colpick_submit:hover {
  background-color: #101010;
  border-color: #444;
}

/*
00 - Color palette
------------------------------------------------------------*/
.bootstrap-colorpalette {
  border: 1px #ededed solid;
  line-height: 1;
  padding: 3px 3px;
  white-space: normal;
}
.bootstrap-colorpalette div {
  line-height: 0;
  width: 160px;
}
.bootstrap-colorpalette a.btn-color {
  border: 0;
  display: inline-block;
  height: 20px;
  margin: 0;
  padding: 0;
  -webkit-transition: all .2s ease-in-out;
  width: 20px;
}
.bootstrap-colorpalette .btn-color:hover {
  -webkit-transform: scale(1.2);
}

/*
00 - alert notific8
------------------------------------------------------------*/
.jquery-notific8-container {
  display: block;
  margin: 0;
  padding: 0;
  position: fixed;
}
.jquery-notific8-container.top {
  top: 55px;
}
.jquery-notific8-container.top.right {
  right: 15px;
}
.jquery-notific8-container.bottom.right {
  right: 15px;
}
.jquery-notific8-container.top.left {
  left: 15px;
}
.jquery-notific8-container.bottom {
  bottom: 0;
}
.jquery-notific8-container.bottom.left {
  left: 15px;
}

.jquery-notific8-notification {
  border-radius: 1px;
  display: block;
  opacity: 0;
  padding: 10px 15px;
  position: relative;
  -webkit-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0);
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 290px;
}
.jquery-notific8-notification.in {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.jquery-notific8-notification:hover .jquery-notific8-close {
  display: block;
}

.jquery-notific8-heading {
  font-weight: bold;
  margin-bottom: 0.3125em;
}

.jquery-notific8-close {
  cursor: pointer;
  display: none;
  padding: 0 0.25em;
  position: absolute;
  top: 5px;
}

.jquery-notific8-close-sticky {
  cursor: pointer;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 5.5625em;
}
.jquery-notific8-close-sticky span {
  display: inline-block;
  font-size: 0.625em;
  padding: 5px 0;
}

.right .jquery-notific8-notification {
  clear: right;
  float: right;
  padding-right: 2.0625em;
}
.right .jquery-notific8-close {
  right: 7px;
}

.left .jquery-notific8-close {
  right: 7px;
}

.right .jquery-notific8-close-sticky {
  right: -5px;
  top: -5px;
}

.left .jquery-notific8-notification {
  clear: left;
  float: left;
  opacity: 0;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}
.left .jquery-notific8-notification.in {
  opacity: 1;
  -webkit-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
.left .jquery-notific8-close-sticky {
  right: -5px;
  top: -5px;
}

.top .jquery-notific8-notification {
  margin-top: 0.625em;
}

.bottom .jquery-notific8-notification {
  margin-bottom: 0.625em;
}

.jquery-notific8-notification {
  background-color: #F7F4D0;
}
.jquery-notific8-notification.default {
  color: #FFF;
}

/*
00 -  parsley validate
------------------------------------------------------------*/
input.parsley-success:focus, textarea.parsley-success:focus, input.parsley-success[type="text"]:focus, input.parsley-success[type="password"]:focus, input.parsley-success[type="datetime"]:focus, input.parsley-success[type="datetime-local"]:focus, input.parsley-success[type="date"]:focus, input.parsley-success[type="month"]:focus, input.parsley-success[type="time"]:focus, input.parsley-success[type="week"]:focus, input.parsley-success[type="number"]:focus, input.parsley-success[type="email"]:focus, input.parsley-success[type="url"]:focus, input.parsley-success[type="search"]:focus, input.parsley-success[type="tel"]:focus, input.parsley-success[type="color"]:focus, .parsley-success.uneditable-input:focus {
  border: 1px solid #D6E9C6 !important;
  color: #468847 !important;
}

input.parsley-error, textarea.parsley-error {
  border: 1px solid #F36523 !important;
  color: #B94A48 !important;
}

ul.parsley-error-list {
  color: #E15258;
  font-size: 12px;
  list-style-type: none;
  margin: 3px 0;
}

/*

/*
00 -  wizard step
------------------------------------------------------------*/
.wizard-step {
  background-color: #FFF;
}
.wizard-step ul.nav-wizard {
  padding: 15px;
}
.wizard-step ul.nav-wizard li {
  display: inline-block;
  margin: 5px;
}
.wizard-step ul.nav-wizard li a {
  background-color: #f7f6f1;
  border-radius: 50%;
  color: #a1a1a1;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  position: relative;
  text-align: center;
  -moz-transition: background 0.5s ease-in-out;
  -webkit-transition: background 0.5s ease-in-out;
  transition: background 0.5s ease-in-out;
  width: 40px;
}
.wizard-step ul.nav-wizard li.active a, .wizard-step ul.nav-wizard li.completed a {
  background-color: #6cc3a0;
  color: #FFF;
}
.wizard-step ul.nav-wizard li.active a {
  background-color: #5db491;
}
.wizard-step .pager {
  margin-top: 0;
}
.wizard-step .wizard-status {
  color: #CCC;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
}
.wizard-step .final {
  display: none;
}
