select.is-invalid + .select2-container--default .select2-selection--single,
select.is-invalid + .select2-container--default .select2-selection--multiple {
  border: 1px solid #ff2324 !important;
  border-radius: 0.25rem;
  box-shadow: none;
}
select.is-invalid + .select2-container--default .select2-selection--single:focus,
select.is-invalid + .select2-container--default .select2-selection--multiple:focus {
  border-color: rgb(255, 9.5, 10.6159090909) !important;
}

.switch {
  position: relative;
  display: inline-block !important;
  width: 60px;
  height: 34px;
  margin-bottom: 0 !important;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch input:checked + .slider {
  background-color: #A19276;
}
.switch input:focus + .slider {
  box-shadow: 0 0 1px #A19276;
}
.switch input:checked + .slider:before {
  transform: translateX(26px);
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}
.switch .slider.round {
  border-radius: 34px;
}
.switch .slider.round:before {
  border-radius: 50%;
}

.login > .row {
  height: 100vh;
}
.login .right {
  background-color: #fafafa;
  background-image: url("../images/c21logo.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50% 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: #A19276;
  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;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0;
  box-sizing: border-box;
}
.masterLayout.collapsed aside .logo-lg {
  display: none;
}
.masterLayout.collapsed aside .menu {
  margin-top: 15px;
  max-height: 87vh;
}
.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 .logo-lg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0 2em;
  box-sizing: border-box;
}
.masterLayout aside .menu {
  margin: 30px -10px 0;
  max-height: 88vh;
  overflow: hidden;
}
.masterLayout aside .menu:hover {
  overflow-y: auto;
}
.masterLayout aside .menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}
.masterLayout aside .menu ul h5 {
  padding: 20px 20px 10px;
  color: #000;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
}
.masterLayout aside .menu ul li {
  text-indent: 5px;
}
.masterLayout aside .menu ul li a {
  display: flex;
  align-items: center;
  padding: 9px 18px;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}
.masterLayout aside .menu ul li a i {
  margin-right: 5px;
  font-size: 16px;
  color: #A19276;
}
.masterLayout aside .menu ul li a:hover {
  background-color: #d8e8f5;
  transition: all 0.1s ease;
}
.masterLayout aside .menu ul li a.active {
  background-color: #A19276;
  color: white;
  transition: all 0.1s ease;
}
.masterLayout aside .menu ul li a.active i {
  color: white;
}
.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 10px;
  background-color: #A19276;
  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: 28px;
  transition: transform 0.3s ease;
}
.masterLayout main nav #menuToggle.rotated {
  transform: rotate(180deg);
}
.masterLayout main .toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-bottom: 1px solid #d2d8dd;
  padding: 0 10px;
  position: relative;
}
.masterLayout main .toolbar .dropdown-related-to {
  display: inline-block;
  cursor: pointer;
  padding: 4px;
}
.masterLayout main .toolbar .dropdown-related-to i {
  font-size: 18px;
  color: #A19276;
}
.masterLayout main .toolbar .dropdown-related-to .dropdown-content-related-to {
  display: none;
  position: absolute;
  top: 2rem;
  left: 0;
  width: 100%;
  max-width: 100vw;
  overflow: auto;
  background: #f0f0f0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem 1.5rem;
  z-index: 1000;
  border-top: 1px solid #ddd;
  flex-direction: row;
  gap: 4rem;
}
.masterLayout main .toolbar .dropdown-related-to .dropdown-content-related-to:hover {
  display: flex;
}
.masterLayout main .toolbar .dropdown-related-to .dropdown-content-related-to .dropdown-section-related-to h3 {
  font-size: 14px;
  color: #A19276;
  margin: 0 0 20px 0;
  font-weight: bold;
}
.masterLayout main .toolbar .dropdown-related-to .dropdown-content-related-to .dropdown-section-related-to .dropdown-items {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.7rem 4rem;
  max-height: 200px;
}
.masterLayout main .toolbar .dropdown-related-to .dropdown-content-related-to .dropdown-section-related-to .dropdown-items .dropdown-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #555;
  text-decoration: none;
  font-size: 12px;
  max-width: 120px;
}
.masterLayout main .toolbar .dropdown-related-to .dropdown-content-related-to .dropdown-section-related-to .dropdown-items .dropdown-item i {
  font-size: 14px;
  color: #555;
}
.masterLayout main .toolbar .dropdown-related-to .dropdown-content-related-to .dropdown-section-related-to .dropdown-items .dropdown-item.active {
  color: #A19276;
}
.masterLayout main .toolbar .dropdown-related-to .dropdown-content-related-to .dropdown-section-related-to .dropdown-items .dropdown-item.active i {
  color: #A19276;
}
.masterLayout main .toolbar .dropdown-related-to .dropdown-content-related-to .dropdown-section-related-to .dropdown-items .dropdown-item.green {
  color: #28c76f;
}
.masterLayout main .toolbar .dropdown-related-to .dropdown-content-related-to .dropdown-section-related-to .dropdown-items .dropdown-item.green i {
  color: #28c76f;
}
.masterLayout main .toolbar .dropdown-related-to:hover .dropdown-content-related-to {
  display: flex;
  /* show on hover */
}
.masterLayout main .toolbar .action-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.masterLayout main .toolbar .action-buttons a,
.masterLayout main .toolbar .action-buttons button {
  padding: 10px;
  border: none;
  color: #555;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.masterLayout main .toolbar .action-buttons a i,
.masterLayout main .toolbar .action-buttons button i {
  margin-right: 2px;
  font-size: 14px;
  color: #A19276;
}
.masterLayout main .toolbar .action-buttons a:hover,
.masterLayout main .toolbar .action-buttons button:hover {
  background-color: #d2d8dd;
}
.masterLayout main .toolbar .action-buttons .bulkBtns {
  display: none;
}
.masterLayout main > .content {
  padding: 20px;
  flex: 1 1 auto;
  overflow-y: auto;
}
.masterLayout main footer {
  bottom: 0;
  font-size: 12px;
  padding: 10px 15px;
  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: 14px;
  color: #A19276;
  margin-right: 5px;
}

.blankLayout > .content {
  flex: 1 1 auto;
}

.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 {
  overflow-y: auto;
}
.activity-card .tabs-component .panels .panel {
  height: 295px;
}
.activity-card .blank-text {
  margin: 0;
  font-size: 12px;
  color: #555;
  text-align: center;
  gap: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.activity-card .blank-text i {
  color: #A19276;
  font-size: 16px;
}
.activity-card .activity-item {
  gap: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d2d8dd;
  font-size: 12px;
}
.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: calc(14px * 2);
  color: #A19276;
}
.activity-card .activity-item .content {
  flex: 1;
}
.activity-card .activity-item .content .text {
  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 {
  color: #A19276;
  margin-right: 3px;
}
.activity-card .activity-item .duration {
  margin-left: 35px;
}
.activity-card .notes {
  gap: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 15px;
}
.activity-card .notes .note {
  font-size: 12px;
  padding: 10px;
  cursor: pointer;
  width: 100%;
  height: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.activity-card .notes .note:hover {
  background-color: #f7f8fa;
}
.activity-card .notes .note h3 {
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
}
.activity-card .notes .note p {
  color: #555;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 24px;
}
.activity-card .notes .note .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 7px;
  border-top: 1px solid #d2d8dd;
}
.activity-card .notes .note .foot a {
  color: #A19276;
  text-decoration: none;
}
.activity-card .notes .note .foot i {
  font-size: 12px;
  color: #A19276;
  margin-right: 5px;
}

#showNoteModal .attachment_list a,
#showTaskModal .attachment_list a {
  display: block;
  font-size: 14px;
  color: #A19276;
  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 #A19276;
  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: #A19276;
}
#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 {
  font-size: 14px;
}
#showMeetingModal .email_viewer .header .top p {
  margin: 0;
}
#showMeetingModal .email_viewer .header .top p + p {
  padding-top: 10px;
}
#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);
  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: #A19276;
  border-bottom: 1px dashed #0070cc;
  box-shadow: 0 2px 0 #A19276;
}

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

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;
}

.gallery-image {
  position: relative;
}
.gallery-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}
.gallery-image button {
  background: #c83225;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  position: absolute;
  top: 0;
  right: 0;
  line-height: 1.2;
  padding: 0 2px;
  scale: 0;
  transition: scale 0.3s ease;
  cursor: pointer;
  display: inline-block;
}
.gallery-image:hover button {
  scale: 1;
}

.barcode {
  width: 100%;
  margin: 0 auto;
}
.barcode.barcode-zoom {
  cursor: zoom-in;
  transition: transform 0.3s ease;
  will-change: transform;
}
.barcode.barcode-zoom:hover {
  --_barcode-zoom-position: absolute;
}
.barcode.barcode-zoom.zoom-2x:hover {
  --_barcode-zoom-width: 200%;
}
.barcode.barcode-zoom.zoom-3x:hover {
  --_barcode-zoom-width: 300%;
}
.barcode.barcode-zoom.zoom-4x:hover {
  --_barcode-zoom-width: 400%;
}
.barcode svg {
  width: var(--_barcode-zoom-width, 100%);
  height: auto;
  position: var(--_barcode-zoom-position, relative);
  top: 0;
  right: 0;
  shape-rendering: geometricPrecision;
  text-rendering: geometricPrecision;
  image-rendering: pixelated;
}

.dataTables_processing {
  z-index: 1000 !important;
}
.dataTables_processing > div:last-child > div {
  background: #A19276 !important;
}

.upload-file-section {
  position: relative;
  display: inline-block;
  width: 100%;
}
.upload-file-section .upload-file-btn i {
  cursor: pointer;
}
.upload-file-section input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  cursor: pointer;
}
.upload-file-section .upload-file-text {
  font-size: 10px;
  margin-top: 3px;
  line-height: 1.4;
}
.upload-file-section .upload-file-text .file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.upload-file-section .upload-file-text .file-item .file-name {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  color: #A19276;
}
.upload-file-section .upload-file-text .file-item .file-actions {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: calc(10px + 2px);
}
.upload-file-section .upload-file-text .file-item .file-actions .remove-file {
  cursor: pointer;
  color: #ff2324;
}
.upload-file-section .upload-file-text .file-item .file-actions .download-file {
  cursor: pointer;
  color: #28c76f;
}

@media (max-width: 768px) {
  .dropdown-items {
    flex-direction: column;
    gap: 10px;
  }
  .dropdown-section h3 {
    margin-top: 1rem;
  }
}/*# sourceMappingURL=style.css.map */