::-webkit-scrollbar {
  width: 8px;
  cursor: pointer;
}

::-webkit-scrollbar-track {
  background: #d2d8dd;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.login > .row {
  height: 100vh;
}

.login .right {
  background-color: #fafafa;
  background-image: url('../images/bg.svg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: 75% auto;
}

.login .login_logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto 75px;
}

.login .form-check {
  line-height: 20px;
}

.login .form-check .checkmark {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.login .form-check .checkmark::after {
  left: 7px;
  top: 3px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
}

.login .form-check input[type='checkbox']:checked ~ .checkmark {
  background: #16db72;
  border: none;
}

.masterLayout {
  display: none;
  grid-template-columns: 250px 1fr;
  grid-template-areas: 'aside main';
  justify-content: stretch;
  align-items: stretch;
  transition: grid-template-columns 0.3s ease;
}

.masterLayout.collapsed {
  grid-template-columns: 60px 1fr;
}

.masterLayout.collapsed aside .logo-sm {
  display: block;
}

.masterLayout.collapsed aside .logo-lg {
  display: none;
}

.masterLayout.collapsed aside .menu {
  margin-top: 15px;
}

.masterLayout.collapsed aside .menu ul h5 {
  display: none;
}

.masterLayout.collapsed aside .menu ul li a {
  padding: 10px;
}

.masterLayout.collapsed aside .menu ul li a span {
  display: none;
}

.masterLayout aside {
  grid-area: aside;
  padding: 10px;
  border-right: 1px solid #d2d8dd;
}

.masterLayout aside .logo-sm {
  display: none;
}

.masterLayout aside .menu {
  margin: 30px -10px 0;
}

.masterLayout aside .menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.masterLayout aside .menu ul h5 {
  padding: 20px 20px 10px;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}

.masterLayout aside .menu ul li {
  padding: 0;
  text-indent: 5px;
}

.masterLayout aside .menu ul li a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.masterLayout aside .menu ul li a i {
  margin-right: 5px;
  font-size: 20px;
  color: #16db72;
}

.masterLayout aside .menu ul li a:hover,
.masterLayout aside .menu ul li a.active {
  background-color: #d2d8dd;
}

.masterLayout main {
  grid-area: main;
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.masterLayout main nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  padding: 0 20px;
  background-color: #16db72;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.masterLayout main nav .dropdown .dropdown-content {
  left: -94px;
}

.masterLayout main nav #menuToggle {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 36px;
  transition: transform 0.3s ease;
}

.masterLayout main nav #menuToggle.rotated {
  transform: rotate(180deg);
}

.masterLayout main .toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: #fff;
  border-bottom: 1px solid #d2d8dd;
}

.masterLayout main .toolbar a,
.masterLayout main .toolbar button {
  padding: 10px;
  border: none;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.masterLayout main .toolbar a i,
.masterLayout main .toolbar button i {
  margin-right: 5px;
  font-size: 16px;
  color: #16db72;
}

.masterLayout main .toolbar a:hover,
.masterLayout main .toolbar button:hover {
  background-color: #d2d8dd;
}

.masterLayout main .toolbar .bulkBtns {
  display: none;
}

.masterLayout main > .content {
  padding: 20px;
  flex: 1 1 auto;
  overflow-y: auto;
}

.masterLayout main footer {
  bottom: 0;
  font-size: 14px;
  padding: 10px 20px;
  background-color: #fff;
  width: 100%;
  border-top: 1px solid #d2d8dd;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.masterLayout main footer i {
  font-size: 18px;
  color: #16db72;
  margin-right: 5px;
}

.recoveryCodes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  margin: 20px 0;
  padding: 10px;
  background-color: #f7f8fa;
  border: 1px solid #d2d8dd;
  border-radius: 4px;
}

.recoveryCodes span {
  text-align: center;
  padding: 10px;
  background-color: #fff;
  border-radius: 4px;
}

.activity-btns .dropdown .dropdown-content i {
  font-size: 18px;
}

.activity-btns .dropdown .dropdown-content button {
  gap: 5px;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  font-size: 14px;
}

.activity-card .card-body,
.activity-card .tabs-component .panels .panel {
  padding: 0;
}

.activity-card .tabs-component .panels .panel {
  height: 295px;
  overflow-y: scroll;
}

.activity-card .blank-text {
  margin: 0;
  font-size: 14px;
  color: #555;
  text-align: center;
  gap: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.activity-card .blank-text i {
  color: #16db72;
  font-size: 24px;
}

.activity-card .activity-item {
  gap: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d2d8dd;
}

.activity-card .activity-item:hover {
  cursor: pointer;
  background-color: #f7f8fa;
}

.activity-card .activity-item .icon {
  flex: 0 0 auto;
}

.activity-card .activity-item .icon i {
  font-size: 45px;
  color: #16db72;
}

.activity-card .activity-item .content {
  flex: 1;
}

.activity-card .activity-item .content .text {
  font-size: 16px;
  color: #555;
  margin-bottom: 5px;
}

.activity-card .activity-item .content .text span {
  font-weight: bold;
  color: #000;
}

.activity-card .activity-item .content .text:last-child {
  margin-bottom: 0;
}

.activity-card .activity-item .date,
.activity-card .activity-item .duration {
  flex: 0 0 auto;
}

.activity-card .activity-item .date strong,
.activity-card .activity-item .duration strong {
  display: block;
  margin-bottom: 5px;
}

.activity-card .activity-item .date i,
.activity-card .activity-item .duration i {
  font-size: 16px;
  color: #16db72;
  margin-right: 3px;
}

.activity-card .activity-item .duration {
  margin-left: 35px;
}

.activity-card .notes {
  gap: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 15px;
}

.activity-card .notes .note {
  padding: 15px;
  cursor: pointer;
  width: 100%;
  height: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.activity-card .notes .note:hover {
  background-color: #f7f8fa;
}

.activity-card .notes .note h3 {
  font-size: 16px;
  color: #555;
  margin-bottom: 5px;
}

.activity-card .notes .note p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 34px;
}

.activity-card .notes .note .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #d2d8dd;
}

.activity-card .notes .note .foot a {
  color: #16db72;
  text-decoration: none;
}

.activity-card .notes .note .foot i {
  font-size: 16px;
  color: #16db72;
  margin-right: 5px;
}

#showNoteModal .attachment_list a,
#showTaskModal .attachment_list a {
  display: block;
  font-size: 14px;
  color: #16db72;
  padding: 10px 5px;
  background: #f7f8fa;
  text-decoration: none;
  border-bottom: 1px solid #d2d8dd;
}

#showNoteModal .attachment_list a:last-child,
#showTaskModal .attachment_list a:last-child {
  border-bottom: 0;
}

#showNoteModal .attachment_list a:hover,
#showTaskModal .attachment_list a:hover {
  background: #e6e8eb;
}

.tox.tox-silver-sink.tox-tinymce-aux {
  width: 500px !important;
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 4px solid #16db72;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

#showEmailModal .email_viewer .header {
  padding: 15px;
  border-radius: 5px;
  background-color: #f3f3f3;
}

#showEmailModal .email_viewer .header > .row > .col-md-12:first-of-type {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

#showEmailModal
  .email_viewer
  .header
  > .row
  > .col-md-12:first-of-type
  > div:not(:first-child) {
  padding-top: 15px;
}

#showEmailModal .email_viewer .header a {
  color: #000;
}

#showEmailModal .email_body {
  padding: 15px;
  border-radius: 5px;
  border: 3px solid #f3f3f3;
}

#showEmailModal .attachments .filesList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#showEmailModal .attachments .filesList a {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  background-color: #f7f8fa;
  border: 2px solid #f3f3f3;
}

#showEmailModal .attachments .filesList a i {
  font-size: 34px;
  color: #16db72;
}

#showEmailModal .attachments .filesList a p {
  margin: 0;
}

#showEmailModal .attachments .filesList a span {
  font-size: 12px;
  color: #555;
}

#showMeetingModal .email_viewer .header {
  padding: 15px;
  border-radius: 5px;
  background-color: #f3f3f3;
}

#showMeetingModal .email_viewer .header .top p {
  margin: 0;
}

#showMeetingModal .email_viewer .header .top p:not(:first-child) {
  padding-top: 15px;
}

#showMeetingModal .email_viewer .header a {
  color: #000;
}

#showMeetingModal .email_body {
  padding: 15px;
  border-radius: 5px;
  border: 3px solid #f3f3f3;
}

time.icon {
  font-size: 1em;
  display: block;
  position: relative;
  width: 7em;
  height: 7em;
  background-color: #fff;
  border-radius: 0.6em;
  box-shadow: 0 1px 0 #bdbdbd, 0 2px 0 #fff, 0 3px 0 #bdbdbd, 0 4px 0 #fff,
    0 5px 0 #bdbdbd, 0 0 0 1px #bdbdbd;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform: rotate(0deg) skewY(0deg);
  -webkit-transform-origin: 50% 10%;
  transform-origin: 50% 10%;
}

time.icon * {
  display: block;
  width: 100%;
  font-size: 1em;
  font-weight: bold;
  font-style: normal;
  text-align: center;
}

time.icon strong {
  position: absolute;
  top: 0;
  padding: 0.4em 0;
  color: #fff;
  background-color: #16db72;
  border-bottom: 1px dashed #0070cc;
  box-shadow: 0 2px 0 #16db72;
}

time.icon em {
  position: absolute;
  bottom: 0.3em;
  color: #16db72;
}

time.icon span {
  width: 100%;
  font-size: 2.8em;
  letter-spacing: -0.05em;
  padding-top: 0.8em;
  color: #2f2f2f;
}

.rotate-ac {
  display: inline-block;
  animation: rotate-anticlockwise 1s linear infinite;
}

.status-indicator {
  width: 8px;
  margin-right: 5px;
}

@keyframes rotate-anticlockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=style.css.map */
