:root {
  --kt-font: 'Nunito', sans-serif;
  --kt-blue: #043ad0;
  --kt-blue-light: #548ce4;
  --kt-blue-shadow: #043ad087;
  --kt-yellow: #f8e300;
  --kt-yellow-light: #ffee32;
  --kt-violet: #342552;
  --kt-black: #000000;
  --kt-white: #ffffff;
  --kt-grey: #515151;
  --kt-cosmic: #fefce5;
  --c-grey-100: #f4f6f8;
  --c-grey-200: #e3e3e3;
  --c-grey-300: #b2b2b2;
  --c-grey-400: #7b7b7b;
  --c-grey-500: #3d3d3d;
  --c-blue-500: #688afd;
}

/* general css */
body {
  font-family: var(--kt-font);
  font-size: 17px;
  color: var(--kt-violet);
}

a {
  text-decoration: none;
}

/*side bar*/
aside {
  background: var(--c-grey-100);
  min-width: 240px;
  height: 100vh;
  overflow-y: auto;
}

aside .nav .nav-item:hover,
aside .nav .nav-item.active {
  background: var(--c-grey-200);
  border-radius: 5px;
}

aside .nav .nav-item .nav-link {
  font-weight: 600;
  color: var(--kt-violet);
  align-items: center;
  display: flex;
  line-height: normal;
}

aside .nav .nav-item .nav-link svg {
  margin-right: 10px;
}

.mainWrapper{
	overflow-y: auto !important;
    height: 100vh !important;
}
/*end side bar*/
/*top bar*/
.topbar {
  box-shadow: 2px 1px 2px 0px #cccccc85;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  border-color: transparent;
}

/*end top bar*/

.activityWrapper p {
  margin-bottom: 0px;
}

.activityWrapper {
  background: #f4f6f8;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 15px;
}

.activityWrapper .details {
  display: flex;
  align-items: center;
}

.activityWrapper .details .avatar {
  width: 35px;
  height: 35px;
  background: #ccc;
  justify-content: center;
  display: flex;
  align-items: center;
  border-radius: 50%;
  font-weight: 700;
  margin-right: 10px;
}

.activityWrapper .details .name p {
  line-height: 1;
  font-weight: 800;
  margin-bottom: 5px;
}

.activityWrapper .details .email p {
  line-height: 1;
  color: #8f8f8f;
}

.activityTimeline {
  margin-left: 30px;
  padding: 32px 0 32px 32px;
  border-left: 2px solid var(--c-grey-200);
  font-size: 1.125rem;
}

.activityTimeline .item {
  display: flex;
  gap: 24px;
}

.activityTimeline .item .itemIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: -52px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 0 0 6px #fff;
}

.activityTimeline .item .itemIcon svg {
  width: 25px;
  height: 25px;
}

.activityTimeline .item .itemIcon.fadedIcon {
  background-color: var(--c-grey-100);
  color: var(--c-grey-400);
}

.activityTimeline .item .itemIcon.filledIcon {
  background-color: var(--c-blue-500);
  color: #fff;
}

.addActivityWrapper .btnAddActivity {
  padding: 0px;
  font-weight: 600;
  color: var(--c-blue-500);
}

.addActivityWrapper .btn:focus,
.addActivityWrapper .btn:active {
  outline: none;
  border: none;
  color: var(--c-blue-500);
}

.addActivityWrapper .btn[aria-expanded="false"] span.text {
  display: block;
}

.addActivityWrapper .btn[aria-expanded="true"] span.text,
span.itemIcon[aria-expanded="false"] .svgCross,
span.itemIcon[aria-expanded="true"] .svgPlus {
  display: none;
}

.activityTimeline .item .description.detailed {
  border: 1px solid #ccc;
  padding: 15px 0px;
  border-radius: 5px;
}

.activityTimeline .activityDetails .activityHead {
  display: flex;
  border-bottom: 1px solid #ccc;
  position: relative;
  padding: 0px 15px 15px;
}

.activityTimeline .activityDetails .activityHead:after {
  content: '\25C0';
  position: absolute;
  left: -17px;
  font-size: 25px;
  right: 18px;
  top: -6px;
  color: #fff;
  text-shadow: -2px 0px 0 #ccc;
}

.activityTimeline .activityDetails .activityBody {
  padding: 15px 15px 0px;
}

/*tabs*/
.tabs-wrapper.nav-tabs {
  position: relative;
}

.tabs-wrapper .nav-link {
  position: relative;
  border: none;
  margin-right: 15px;
  color: #6c6c6c;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 15px;
  min-width: 120px;
}

.tabs-wrapper .nav-link.active {
    color: #000000;
}

.tabs-wrapper .nav-link::before  {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background-color: #688afd;
    transition: width 0.3s ease;
    border-radius: 5px 5px 0px 0px;
}

.tabs-wrapper .nav-link.active::before {
  width: 100%;
}
.tab-pane.fade:not(.show) {
    display: none;
}
