/*
 * Stisla Components CSS
 */

/* Shadows */
.shadow-light { box-shadow: 0 2px 6px rgba(0,0,0,.04) !important; }
.shadow { box-shadow: 0 4px 8px rgba(0,0,0,.03) !important; }

/* Section Title */
.section-title { font-size: 18px; color: #191d21; font-weight: 700; position: relative; margin-bottom: 25px; }
.section-title::before { content: ''; position: absolute; bottom: -8px; left: 0; width: 40px; height: 4px; background: #6777ef; border-radius: 2px; }

/* Empty State */
.empty-state { text-align: center; padding: 40px 20px; }
.empty-state .empty-state-icon { background: #e3eaef; border-radius: 50%; width: 80px; height: 80px; line-height: 80px; margin: 0 auto 20px; font-size: 36px; color: #98a6ad; }

/* User Avatar */
.user-img-radious-style { border-radius: 50%; width: 45px; height: 45px; object-fit: cover; }

/* Badge */
.badge { font-weight: 600; letter-spacing: .3px; border-radius: 3px; font-size: 12px; }

/* Tooltip */
[data-toggle="tooltip"] { cursor: pointer; }

/* Progress */
.progress { border-radius: 30px; height: 14px; }
.progress-bar { border-radius: 30px; }

/* Hero */
.hero {
  padding: 65px 50px;
  border-radius: 3px;
  background-color: #6777ef;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.hero h2 { font-size: 28px; font-weight: 700; }
.hero p { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 25px; }
.hero .hero-inner { position: relative; z-index: 1; }

/* Wizard */
.wizard-steps {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
}
.wizard-steps .wizard-step {
  flex: 1;
  text-align: center;
  padding: 15px;
  position: relative;
}
.wizard-steps .wizard-step.wizard-step-active .wizard-step-icon {
  background: #6777ef;
  color: #fff;
}
.wizard-step-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background: #e3eaef;
  border: 2px solid transparent;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.wizard-step-label { font-weight: 600; font-size: 14px; }

/* Activities Widget */
.activities .activity {
  position: relative;
  padding-left: 35px;
  padding-bottom: 20px;
}
.activities .activity::before {
  content: '';
  position: absolute;
  width: 2px;
  background: #e4e6fc;
  left: 9px;
  top: 0;
  bottom: 0;
}
.activities .activity .activity-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 3px;
  text-align: center;
  line-height: 20px;
  font-size: 10px;
  color: #fff;
}
