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

::-webkit-scrollbar-track {
  background: #d2d8dd;
  border-radius: 4px;
}

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

::-webkit-scrollbar-thumb:hover {
  background: #9bb247;
}

.login > .row {
  height: 100vh;
}
.login .right {
  background-color: #fafafa;
  background-image: url("../images/abel-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: #cae75c;
  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 {
  text-align: center;
}
.masterLayout aside .logo-sm {
  display: none;
}
.masterLayout aside .logo-lg {
  max-height: 70px;
}
.masterLayout aside .menu {
  margin: 30px -10px 0;
  overflow-y: auto;
  max-height: calc(100vh - 115px);
}
.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: #cae75c;
}
.masterLayout aside .menu ul li a:hover, .masterLayout aside .menu ul li a.active {
  background-color: #cae75c30;
}
.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: #cae75c;
  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: #cae75c;
}
.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: #cae75c;
  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: #cae75c;
  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: #cae75c;
}
.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: #cae75c;
  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: #cae75c;
  text-decoration: none;
}
.activity-card .notes .note .foot i {
  font-size: 16px;
  color: #cae75c;
  margin-right: 5px;
}

#showNoteModal .attachment_list a,
#showTaskModal .attachment_list a {
  display: block;
  font-size: 14px;
  color: #cae75c;
  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: 3px solid #cae75c;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader.inline-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
}
.loader.sm {
  width: 24px;
  height: 24px;
  border-top-width: 2px;
}

#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: #cae75c;
}
#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: #cae75c;
  border-bottom: 1px dashed #cae75c;
  box-shadow: 0 2px 0 #cae75c;
}

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

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

.delete-row {
  border: none;
  background: none;
  font-size: 26px;
  display: flex;
  align-items: flex-end;
  height: 100%;
  cursor: pointer;
}
.delete-row i {
  margin-bottom: 5px;
}

label.advance-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-card a {
  text-decoration: none;
}
.dashboard-card .card-body {
  height: 260px;
  width: auto;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.dashboard-card .card-body .card-image {
  margin-bottom: 10px;
}
.dashboard-card .card-body .card-image img {
  width: auto;
  height: 150px;
  aspect-ratio: 1;
  object-fit: cover;
}
.dashboard-card .card-body .title {
  font-size: 24px;
}
.dashboard-card .card-body .description {
  font-size: 12px;
}

.required {
  color: red;
  margin-left: 5px;
}

.folder-container {
  position: relative;
  display: inline-block;
  text-align: center;
}
.folder-container .notification-count {
  position: absolute;
  top: 10px;
  right: -5px;
  background-color: #ff0000;
  color: white;
  font-weight: bold;
  padding: 2px 7px;
  border-radius: 15px;
  border: 3px solid white;
  min-width: auto;
  text-align: center;
  line-height: 1.3;
  z-index: 1;
  font-size: 13px;
}
.folder-container .folder {
  position: relative;
  cursor: pointer;
  transition: all 300ms ease;
  max-width: 100px;
}
.folder-container .folder:hover .folder-title {
  color: var(#cae75c);
}
.folder-container .folder.folder-original .folder-title {
  color: #ff9900;
}
.folder-container .folder .folder-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.folder-container .folder .folder-icon {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.folder-container .folder .folder-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.folder-container .folder .folder-title {
  margin-top: 0.5em;
  font-size: 0.8em;
  font-weight: bold;
  color: #343434;
  text-align: center;
}
.folder-container.folder-sm .folder {
  max-width: 50px;
}
.folder-container.folder-sm .folder .folder-title {
  font-size: 0.6em;
}
.folder-container.folder-sm .notification-count {
  font-size: 10px;
  padding: 1px 5px;
}
.folder-container.folder-md .folder {
  max-width: 100px;
}
.folder-container.folder-md .folder .folder-title {
  font-size: 0.8em;
}
.folder-container.folder-md .notification-count {
  font-size: 12px;
  padding: 2px 7px;
}
.folder-container.folder-lg .folder {
  max-width: 150px;
}
.folder-container.folder-lg .folder .folder-title {
  font-size: 1em;
}
.folder-container.folder-lg .notification-count {
  font-size: 14px;
  padding: 3px 10px;
}

.fc-event {
  border: 1px solid #0d89f1;
  border-radius: calc(0.42rem - 1px);
  padding: 0;
  cursor: pointer;
}
.fc-event .fc-content {
  width: 100%;
}
.fc-event .fc-content .fc-event-custom-title {
  font-weight: bold;
  color: white;
  background-color: #0d89f1;
  padding: 4px;
  border-radius: calc(0.42rem - 1px) calc(0.42rem - 1px) 0 0;
}
.fc-event .fc-content .fc-event-custom-detail {
  font-weight: bold;
  padding: 4px;
  color: #0c0e1a;
  border-radius: 0 0 calc(0.42rem - 1px) calc(0.42rem - 1px);
}
