/*
* demo.css
* File include item demo only specific css only
******************************************************************************/

.light-style .menu .app-brand.demo {
  height: 64px;
}

.dark-style .menu .app-brand.demo {
  height: 64px;
}

.app-brand-logo.demo {
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  /*height: 45px;*/
  margin-left: -24px;
}

.app-brand-logo.demo svg {
  width: max-content;
  height: 40px;
}

.app-brand-text.demo {
  font-size: 1.375rem;
}

/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 64px !important;
}
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
  padding-top: 78px !important;
}
/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks > * {
  display: block !important;
}

.demo-inline-spacing > * {
  margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing > * {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-lg > * {
  margin-top: 1.875rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-lg.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-xl > * {
  margin-top: 5rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-xl.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.rtl-only {
  display: none !important;
  text-align: left !important;
  direction: ltr !important;
}

[dir='rtl'] .rtl-only {
  display: block !important;
}

/* Dropdown buttons going out of small screens */
@media (max-width: 576px) {
  #dropdown-variation-demo .btn-group .text-truncate {
    width: 254px;
    position: relative;
  }
  #dropdown-variation-demo .btn-group .text-truncate::after {
    position: absolute;
    top: 45%;
    right: 0.65rem;
  }
}

/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1rem;
}
.layout-demo-placeholder img {
  width: 900px;
}
.layout-demo-info {
  text-align: center;
  margin-top: 1rem;
}
.filter-container {
  display: flex;
  gap: 10px;
  margin-bottom: 2rem;
}

.filter-box {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  width: 350px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-box2 {
  width: 250px;
}
.selected-options {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  width: 100%;
}

.selected-options input {
  border: none;
  outline: none;
  width: 100%;
}

.arrow {
  font-size: 12px;
  color: #333;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 15px;
  padding-left: 5px;
  transition: 0.2s ease;
}

.options-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  background-color: #fff;
  z-index: 1000;
  display: none;
  max-height: 150px;
  overflow-y: auto;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
/* width */
.options-container::-webkit-scrollbar {
  width: 6px;
}

/* Track */
.options-container::-webkit-scrollbar-track {
  background-color: #cfd3ec;
  border-radius: 10px;
}

/* Handle */
.options-container::-webkit-scrollbar-thumb {
  background: linear-gradient(72.47deg, #7367f0 22.16%, rgba(115, 103, 240, 0.7) 76.47%);
  border-radius: 10px;
}
.option {
  padding: 8px;
  cursor: pointer;
}

.option:hover {
  background-color: #f0f0f0;
}

.selected-tag {
  background: linear-gradient(72.47deg, #7367f0 22.16%, rgba(115, 103, 240, 0.7) 76.47%);
  box-shadow: 0px 2px 6px 0px rgba(115, 103, 240, 0.48);
  color: #fff !important;
  padding: 5px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
}

.selected-tag span {
  margin-left: 5px;
  cursor: pointer;
}
.input-group {
  width: 100%;
  max-width: 400px;
  align-items: center;
  display: flex;
}
.input-group .form-control {
  padding: 12px 10px;
}
.input-group-append button {
  height: 100%;
  border-radius: 0px 10px 10px 0px;
}
.tableTd {
  display: flex;
  align-items: center;
  gap: 15px;
}
.tableTd h6 {
  margin-bottom: 0;
  color: #333;
}
.dark-style .tableTd h6 {
  margin-bottom: 0;
  color: #fafafa;
}
.tableTd p {
  margin-bottom: 0;
}

.otherTxt {
  background-color: #333;
  color: #fff;
  border-radius: 20px;
  padding: 3px 15px;
  /* width: 100%;
  max-width: 100%; */
  text-align: center;
  margin: 0 auto;
}
.categoryName {
  background-color: #333;
  color: #fff;
  border-radius: 20px;
  padding: 3px 15px;
  /* width: 100%;
  max-width: 100%; */
  text-align: center;
}
.newTxt {
  background-color: #7367f0;
  color: #fff;
  border-radius: 20px;
  padding: 0px 10px;
  width: 100%;
  max-width: 65px;
  text-align: center;
  margin-top: 3px;
}
.chevIcon i {
  font-size: 9px;
}
.aquaIcon {
  color: #00b5b5;
}
.orangeIcon {
  color: orange;
}
.redIcon {
  color: #ff4949;
}
.ti-md {
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
.ti-md:hover {
  color: #7367f0;
  transform: scale(1.1);
}
.jobCont {
  margin-bottom: 0;
}
.languageText {
  background-color: #a8aaae;
  color: #fff;
  border-radius: 5px;
  padding: 4px 14px;
  /* width: 100%;
  max-width: 100px; */
  text-align: center;
  margin-bottom: 0;
}
.jobCol {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.jobCol h6 {
  margin-bottom: 0;
}
.jobCol p {
  margin-bottom: 0;
}
.statusAc {
  background-color: #7367f0;
  color: #fff;
  border-radius: 5px;
  padding: 8px 10px;
  width: 100%;
  max-width: 100px;
  text-align: center;
  margin-bottom: 0;
}

.difficultyLevelSec h6 {
  margin-bottom: 0;
}
.openBtn {
  width: 100%;
  max-width: 205px;
}

.ratingStar {
  color: #ffe234;
}
.barChart {
  width: 100%;
  height: 50px;
  object-fit: cover;
}
.infoIcon {
  cursor: pointer;
}
.headinTop {
  font-weight: 700;
  font-size: 17px;
}
.editIcon {
  position: absolute;
  right: 12px;
  font-size: 25px;
  top: 18px;
  cursor: pointer;
}
.outStack {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 1.5rem;
}
.outStack i {
  color: #ffe234;
  font-size: 30px;
}
.outStack h4 {
  margin-bottom: 0;
  font-weight: bold;
  font-size: 30px;
}
.outStack p {
  margin-bottom: 0;
}

.phishIcon {
  font-size: 30px;
  margin-bottom: 0.9rem;
}
#myDoughnutChart {
  max-width: 100%;
  height: auto;
}

.activity-log {
  margin: 1.5rem 0;
}
.activity-item {
  display: grid;
  grid-template-columns: auto 1fr 0.04fr auto 0.25fr;
  grid-gap: 16px;
  align-items: center;
  padding: 0px 20px;
}
.lineDiv {
  background-color: #eaeaea;
  width: 1px;
  height: 30px;
  margin-left: 40px;
}
.activity-icon {
  width: 40px;
  height: 40px;
  background-color: #e0f7fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
}

.activity-icon.success {
  background-color: #d0f9e2;
  color: #34c759;
}

.activity-icon.missed {
  background-color: #e8edcb;
  color: #b5a212;
}

.activity-icon.failed {
  background-color: #edcbce;
  color: #b51225;
}

.activity-icon.sent {
  background-color: #e0f7fa;
  color: #007aff;
}

.activity-content {
  flex: 1;
}

.activity-title {
  font-size: 1rem;
  font-weight: bold;
}

.activity-subtitle {
  font-size: 0.875rem;
  color: #888;
}

.activity-action {
  display: flex;
  align-items: center;
}

.preview-button {
  background-color: #e0e0e0;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 0.875rem;
  color: #555;
}

.preview-button:hover {
  background-color: #d0d0d0;
}

.activity-time {
  font-size: 0.875rem;
  color: #888;
  white-space: nowrap;
}

.achievementsCard {
  background-color: #2a2c2d;
  border-radius: 10px;
  padding: 20px 20px;
  border-color: #007bff;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  height: 100% !important;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-icon {
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease;
}

.achievementsCard:hover .achievement-icon {
  transform: scale(1.09);
}
.achievementsCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
}
.achievementsCardContent {
  width: 100%;
}

.achievementsCardContent h3 {
  margin: 0;
  font-size: 1.2em;
  color: #ffffff;
}

.achievementsCardContent p {
  margin: 0px 0 5px 0;
  font-size: 0.9em;
  color: #8d8989;
}

.stats {
  font-size: 0.8em;
  color: #918e8e;
  display: flex;
  align-items: center;
  gap: 7px;
}

.stats span {
  font-weight: bold;
  color: #ffffff;
}
.legendary {
  background-image: linear-gradient(
    to top,
    #3f51b1 0%,
    #5a55ae 13%,
    #7b5fac 25%,
    #8f6aae 38%,
    #a86aa4 50%,
    #cc6b8e 62%,
    #f18271 75%,
    #f3a469 87%,
    #f7c978 100%
  );

  padding: 1px 8px;
  border-radius: 10px;
}
.userIcon {
  width: 16px;
  transition: transform 0.3s ease;
}

.achievementsCard:hover .userIcon {
  transform: scale(1.2);
}
.rare {
  background-image: none !important;
  background-color: #ff9a9e !important;
}
.progress-bar-container {
  background-color: #e2dddd;
  border-radius: 5px;
  /* margin-top: 10px; */
  /*height: 6px;*/
  width: 100%;
  overflow: hidden;
}

.progress-bar {
  background-color: #7367f0 !important; /* Progress bar color */
  /*height: 6px !important;*/
  border-radius: 10px !important;
  border-right: none !important;
}
.uncommon {
  background-color: #007bff !important;
  background-image: none !important;
}
.common {
  background-image: none !important;
  background-color: #a3a3a3 !important;
}
.lockImgSec {
  background-color: #434968;
  padding: 10px;
  border-radius: 50%;
  width: 90px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lockImgSec img {
  margin-right: 0 !important;
  width: 50px !important;
  height: 50px !important;
}
.progressText {
  color: #fff !important;
  font-weight: bold;
  margin-bottom: 0 !important;
}
.light-style .achievementsCardContent h3 {
  color: #777272;
}
.light-style .stats span {
  color: #777272;
}
.light-style .progressText {
  color: #777272 !important;
}

.dark-style body {
  background-color: #25293c !important;
}
.light-style .legendary {
  color: #fff !important;
}
.dark-style .filter-box {
  background-color: #25293c !important;
  border-color: #434968 !important;
}
.dark-style .selected-options input {
  background-color: #25293c !important;
  color: #fff !important;
}
.dark-style .selected-options input::placeholder {
  color: #cfd3ec !important;
}
.dark-style .filter-box .arrow i {
  color: #fff !important;
}
.dark-style .options-container {
  background-color: #25293c !important;
  border-color: #434968 !important;
}
.dark-style .option:hover {
  background: linear-gradient(72.47deg, #7367f0 22.16%, rgba(115, 103, 240, 0.7) 76.47%);
  color: #fff !important;
}
.dark-style .searchInput::placeholder {
  color: #cfd3ec !important;
}

.light-style .performanceCard {
  background-color: #eff4fd;
}
.performanceCard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  background-color: #434968;
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.performanceCard p {
  margin-bottom: 0;
}
.activePerfor {
  border-left: 5px solid #b6a87a;
}
.activePerfor p {
  color: #b6a87a;
}
.activePerfor .percentageDiv {
  color: #b6a87a;
}
.percentageDiv {
  background-color: #4d5373;
  color: #fff;
  border-radius: 8px;
  padding: 6px 16px;
}
.swiperContainer {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
  z-index: 2;
  min-height: 182px;
}
.swiperContainer .swiper-wrapper {
  position: unset !important;
}
.swiperContainer .swiper {
  position: unset !important;
}
.swiperContainer .mySwiper {
  position: unset !important;
  padding: 60px 0px;
}
.swiperContainer .swiper-slide {
  position: unset !important;
}
.shieldCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  position: relative;
  height: 220px;
}

.shieldCard img {
  width: 140px;
  height: 140px;
}

.swiper-slide-active .shieldCard img {
  width: 170px;
  height: 170px;
}

.swiper-slide-active .shieldCard img {
  transform: scale(1.09);
  opacity: 1;
}

.swiper-slide-next .shieldCard,
.swiper-slide-prev .shieldCard {
  opacity: 0.8;
}

.swiper-slide:not(.swiper-slide-active) {
  opacity: 0.5;
}

.swiperHr {
  width: 6px;
  height: 8px;
  background-color: #434968;
  position: relative;
  z-index: 99 !important;
}

.shieldCard .shieldLabel {
  margin-top: 10px;
  font-size: 14px;
  margin-bottom: 0px;
  font-weight: bold;
}

.swiperCardCont {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: absolute;
  bottom: -54px;
}
.swiperImgDev {
  width: 150px;
  height: 150px;
}
.count {
  font-size: 12px;
  color: #fff;
  margin-bottom: 0;
  margin-top: 0px;
  background-color: #2f3349;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.locked[disabled] {
  opacity: 0.1;
  pointer-events: none;
}

.streak-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.next-achievement h5 {
  margin-bottom: 5px;
}
.progress-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 10px solid #1eedb9;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.progress-text {
  font-size: 20px;
  font-weight: bold;
}

.progress-list {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  align-content: center;
}

.progress-list li {
  margin-bottom: 5px;
  display: flex;
  gap: 8px;
}

.streak-container {
  justify-content: center;
}
.progress-circleCont {
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
}
.streak-container h5 {
  margin: 10px 0 5px;
}

.progressBar {
  background-color: #cfd3ec !important;
  border-radius: 4px;
  width: 100%;
  height: 6px;
  margin-top: 8px;
  height: 6px;
}
.light-style .diamond {
  background-color: #7b77a7 !important;
}
.light-style .count {
  background-color: #5d596c !important;
}
.diamond {
  width: 45px;
  height: 45px;
  background-color: #7b77a7;
  border-radius: 8px;
  padding: 6px;
}
.diamond img {
  width: 100%;
}
.progressBar .progress {
  background-color: #19a8ec;
  height: 100%;
  border-radius: 4px;
}

.see-all {
  color: #cfd3ec;
  text-decoration: none;
  display: block;
  height: max-content;
}
.progress-container {
  width: 100%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  position: relative;
}
.progress-container .progress {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  position: relative;
  border-right: 5px solid #333;
}
.progress-container .progress .progress-bar {
  background-color: #3498db !important;
  border-right: 0 !important;
}
.progress-bar {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  position: relative;
  border-right: 5px solid #333;
  overflow: hidden;
}

.progress-value {
  height: 100%;
  background-color: #3498db;
  position: relative;
}
.progress-tooltip {
  position: absolute;
  top: 100%;
  transform: translateY(10px);
  display: flex;
  align-items: center;
  background-color: #3498db;
  padding: 5px 10px;
  border-radius: 20px;
  color: #fff;
  width: 55px;
}

.progress-number {
  color: white;
  font-size: 14px;
  margin-right: 5px;
}

.star-icon {
  width: 14px;
  height: 14px;
}

.light-style .see-all {
  color: #5d596c;
}
.see-all:hover {
  text-decoration: underline;
}
.starImg {
  width: 18px;
}
.nextAchie img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.nextAchie p {
  margin-bottom: 5px;
}
.next-achievement {
  display: flex;
  gap: 20px;
  width: 100%;
  align-items: end;
}
.progress-container2 {
  display: flex;
  /* justify-content: space-around; */
}
.navGap .nav-link {
  padding-left: 17px !important;
  padding-right: 17px !important;
}
.dark-style .jobText {
  color: #cfd3ec !important;
}
@media (max-width: 1400px) {
  .chartSec {
    height: 200px;
  }
  .outStack h4 {
    font-size: 25px;
  }
}
@media (max-width: 1200px) {
  .userTableSec td {
    min-width: 280px;
  }
}
@media (max-width: 992px) {
  .phishingTableSec td {
    min-width: 280px;
  }
}
@media (max-width: 768px) {
  .navGap {
    gap: 15px;
  }
  .chartSec {
    height: 300px;
  }
  .activity-item {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
  }
  .activity-log {
    margin: 0;
  }
  .activity-action {
    justify-content: space-between;
    margin-top: 10px;
  }
  .lineDiv {
    width: auto;
    height: 1px;
    margin-left: 0;
  }
  .activity-time {
    margin-top: 5px;
    text-align: right;
  }
}
@media (max-width: 576px) {
  .timelineUl {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  .timelineUl h6 {
    margin-bottom: 0;
  }
  .timelineUl li {
    display: flex;
    align-items: center;
  }
  .timelineUl li .timeline-point {
    top: 7px !important;
  }
  .cardResponsive {
    padding: 20px !important;
  }
  .lockImgSec {
    width: 70px;
    height: 70px;
  }
  .lockImgSec img {
    margin-right: 0 !important;
    width: 40px !important;
    height: 40px !important;
  }
  .achievementsCard {
    padding: 15px 15px;
    flex-direction: column !important;
    align-items: start !important;
  }
  .achievement-icon {
    width: 60px;
    height: 60px;
  }
  .filter-container {
    display: block;
    margin-bottom: 0;
  }
  .filter-box {
    width: 100% !important;
    margin-bottom: 0.5rem;
  }
  .input-group {
    max-width: 100%;
  }
  .performanceCard {
    padding: 8px 12px;
  }
  .next-achievement {
    gap: 15px;
  }
}
