.striked {
    text-decoration: line-through;
}

.asterisk {
    color: red;
    font-weight: bold;
}

.tox-notification {
    display: none !important;
}

/* Styles for larger screens */
@media (min-width: 768px) {
    .icon-only {
        display: inline;
        /* Display the icon for larger screens */
    }

    .language-name {
        display: inline;
        /* Display the language name for larger screens */
    }
}

/* Styles for smaller screens (e.g., mobile) */
@media (max-width: 767px) {
    .icon-only {
        display: inline;
        /* Display the icon for smaller screens */
    }

    .language-name {
        display: none;
        /* Hide the language name for smaller screens */
    }
}

.installer-div {
    max-width: 1000px !important;
}

.sticky-note-bg-primary {
    background: #007bff;
    /* Bootstrap primary color */
    /* color: #fff; */
    /* White text color on a primary background */
}

.sticky-note-bg-secondary {
    background: #6c757d;
    /* Bootstrap secondary color */
    color: #fff;
    /* White text color on a secondary background */
}

.sticky-note-bg-success {
    background: #9dffb4;
    /* Bootstrap success color */
    color: #fff;
    /* White text color on a success background */
}

.sticky-note-bg-dark {
    background: #343a40;
    /* Bootstrap dark color */
    color: #fff;
    /* White text color on a dark background */
}

.sticky-note-bg-info {
    background: #cfc;
}

.sticky-note-bg-warning {
    background: #ffc;
}

.sticky-note-bg-danger {
    background: #fcc;
}

.sticky-notes,
.sticky-note {
    list-style: none;
}

.sticky-notes {
    overflow: hidden;
    padding: 2em;
}

.sticky-notes .sticky-note .sticky-content {
   font-family: 'Roboto Mono', monospace;

    text-decoration: none;
    color: #000;
    display: block;
    padding: 1em;
    overflow-wrap: break-word;
    -moz-box-shadow: 5px 5px 7px rgba(33, 33, 33, 1);
    -webkit-box-shadow: 5px 5px 7px rgba(33, 33, 33, 0.3);
    box-shadow: 5px 5px 7px rgba(33, 33, 33, 0.3);
    -moz-transition: -moz-transform 0.15s linear;
    -o-transition: -o-transform 0.15s linear;
    -webkit-transition: -webkit-transform 0.15s linear;
    -webkit-transform: rotate(-2deg);
    -o-transform: rotate(-2deg);
    -moz-transform: rotate(-2deg);
}

.sticky-notes .sticky-note {
    margin-top: 1em;
    margin-bottom: 1em;
    /*float:left;*/
}

.sticky-notes .sticky-note:nth-child(even) .sticky-content {
    -o-transform: rotate(2deg);
    -webkit-transform: rotate(2deg);
    -moz-transform: rotate(2deg);
    position: relative;
    top: 5px;
}

.sticky-notes .sticky-note:nth-child(3n) .sticky-content {
    -o-transform: rotate(-2deg);
    -webkit-transform: rotate(-2deg);
    -moz-transform: rotate(-2deg);
    position: relative;
    top: -5px;
}

.sticky-notes .sticky-note:nth-child(5n) .sticky-content {
    -o-transform: rotate(2deg);
    -webkit-transform: rotate(2deg);
    -moz-transform: rotate(2deg);
    position: relative;
    top: -10px;
}

.sticky-notes .sticky-note .sticky-content {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;

}

.sticky-notes .sticky-note .sticky-content:hover,
.sticky-notes .sticky-note .sticky-content:focus {
    box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.4); /* Increase shadow size and opacity for depth */

    position: relative;
    z-index: 10; /* Increase z-index for more prominence */

    border-radius: 5px; /* Add rounded corners */
    outline: none; /* Remove default focus outline */
}


.sticky-notes .sticky-note .sticky-content i {
    font-size: 12px;
    float: right;
    vertical-align: top;
    padding: 6px;
    cursor: pointer;
}

@media print {
    /* Reset some styles to maintain the column structure */
    body * {
        visibility: hidden;
    }

    .row::before,
    .row::after {
        content: "";
        display: table;
        clear: both;
    }

    #section-not-to-print,
    #section-not-to-print * {
        display: none;
    }

    #section-to-print,
    #section-to-print * {
        visibility: visible;
    }

    #section-to-print {
        position: absolute;
        left: 0;
        top: 0;
    }

    /* Adjust other specific styles as needed for your layout */
}

.language-dropdown {
    min-width: auto !important;
    width: auto !important;
}

@media (max-width: 768px) {
    .menu-container {
        max-height: calc(100vh - 50px) !important;
        overflow-y: auto !important;
    }
}

@media (max-width: 768px) {
    /* You can adjust the max-width as needed */
    .demo-mode {
        display: none;
        /* Hide the badge on mobile devices */
    }
}

@media (min-width: 769px) {
    .demo-mode-icon-only i {
        display: none;
        /* Hide the icon on large devices */
    }
}

@media (max-width: 768px) {
    .nav-item .nav-mobile-hidden {
        display: none;
    }
}

.timer-img {
    width: 55px !important;
    border-radius: 50px;
    cursor: pointer;
    position: fixed;
    bottom: 0.7rem;
    right: 1.625rem;
    z-index: 999999;
    transition: transform 0.3s ease;
    /* Adding transition for smooth animation */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.timer-img:hover {
    transform: translateY(-5px);
    /* Lift the image slightly on hover */
}

/* Stopwatch container */
.stopwatch {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.stopwatch_time {
    text-align: center;
    margin: 0 10px;
}

.stopwatch_time_input {
    padding: 1em !important;
    text-align: center !important;
    border-radius: 5px !important;
    border-color: #6c757d !important;
    background: #6c757d !important;
    color: #ffffff !important;
    padding: 0.5em 0 !important;
    font-size: 3em !important;
    padding-top: 1em !important;
    padding-bottom: 1em !important;
    font-weight: bold;
}

.stopwatch_time_lable {
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

/* Buttons */
.selectgroup {
    display: flex;
    justify-content: center;
}

.selectgroup-item {
    margin: 0 5px;
}

.selectgroup-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-color: #e4e6fc;
    border-width: 1px;
    border-style: solid;
    border-radius: 50%;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    transition: background-color 0.3s ease;
}

.selectgroup-button:hover {
    background-color: #0056b3;
}

#start[disabled],
#end[disabled],
#pause[disabled] {
    background: none !important;
    color: var(--gray) !important;
}
#stopTimerModal {
    z-index: 1100;
}

/* Hide on smaller screens (mobile) */
@media (max-width: 768px) {
    .hide-mobile {
        display: inline;
    }

    .show-mobile {
        display: none;
    }
}
.img-box {
    position: relative;
    width: 100%;
    padding-top: calc(12 / 16 * 100%);
    /* 16:9 aspect ratio (height = width * 9/16) */
    overflow: hidden;
}

.img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: ease-in-out 0.5s;
    /* Ensure the image covers the entire container */
}
/* .img-box img:hover{ */
/* transition: ease-in-out 0.5s; */
/* transform: scale(1.1); */
/* cursor: pointer; */
/* } */

.text-orange {
    background-color: #ff204e;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.text-black {
    background-color: #000;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.text-gradient-pink-soft {
    /* Create a gradient background */
    background-color: #7752fe;
    /* Apply text fill with transparent background to maintain the gradient effect */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.text-gradient-purple-soft {
    background-color: #11235a;

    /* Create a gradient background */

    /* Apply text fill with transparent background to maintain the gradient effect */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pricing-card:hover {
    cursor: pointer;
    opacity: 1;
    /* border: 1px solid #696cff !important */
}

.pricing-card:not(:hover) {
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: none;
}

.pricing-card:hover img {
    transform: scale(1.2);
}

.pricing-card:not(:hover) .card-body {
    opacity: 1;
}

.pricing-card:not(:hover) .card-title {
    color: #696cff;
}

.img-box {
    position: relative;
    width: 100%;
    margin: 2px auto;
    padding-top: calc(14 / 16 * 100%);
    overflow: hidden;
}

.img-box img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    transition: transform 1s;
}
.thumbnail-img {
    max-width: 100px; /* Adjust the maximum width as needed */
    max-height: 100px; /* Adjust the maximum height as needed */
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto; /* Center the image horizontally */
}

.fs-small {
    font-size: small;
    width: 120px;
}

.promiser-sign {
    touch-action: none;
    user-select: none;
    border: 1px solid #6c757d !important;
}

.display-flex-wrap {
    display: flex;
    flex-wrap: wrap;
}
.min-height-200 {
    min-height: 200px;
}

.overflow-x-y-hidden {
    overflow-x: scroll;
    overflow-y: hidden;
}

.status-row {
    background-color: none;
    min-width: 300px;
    max-width: 300px;
}
.todo-description {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

select2-close-mask {
    z-index: 2099 !important;
}
.select2-dropdown {
    z-index: 3051 !important;
}
/* Apply general styling to select2 elements */
.select2.select2-container.select2-container--default:not(
        #global-search + .select2-container
    ) {
    display: block !important;
    width: 100% !important;
    min-height: calc(2.25rem + 2px) !important;
    padding: 0.2rem 0.75rem !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #495057 !important;
    background-color: #fff !important;
    background-clip: padding-box !important;
    border: 1px solid #d9dee3 !important;
    border-radius: 0.25rem !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}
.select2-container--default
    .select2-selection--multiple:not(
        #global-search + .select2-container .select2-selection--single
    ) {
    border: 0px !important;
}
.select2-container--default .select2-selection--single {
    border: 0px !important;
}
.select2-container:not(#global-search + .select2-container)
    .select2-search--inline
    .select2-search__field {
    height: 21px !important;
}
/* Apply specific styling to #global-search select2 */
#global-search + .select2-container .select2-selection--single {
    height: auto !important;
    border: 0px !important;
    padding: 0.375rem 0.75rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
}

#global-search
    + .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    display: none !important;
}

#global-search + .select2-container--default .select2-selection--single {
    width: 300px !important;
}

@media (max-width: 768px) {
    #global-search + .select2-container--default .select2-selection--single {
        width: 100px !important;
    }
}

#unreadNotificationsCount {
    position: relative;
    left: -10px;
    top: -8px;
    width: auto !important;
}

.statisticsDiv {
    height: 600px;
}

#confirmSaveColumnVisibility,
#edit_project_modal,
#edit_task_modal {
    z-index: 1091;
}

#create_status_modal,
#create_priority_modal,
#create_tag_modal,
#create_contract_type_modal {
    z-index: 1092;
}

.select-bg-label-success {
    color: #71dd37 !important;
    background-color: #e8fadf !important;
}

.select-bg-label-success:focus {
    border-color: #e8fadf !important;
}

.select-bg-label-primary {
    color: #696cff !important;
    background-color: #e7e7ff !important;
}

.select-bg-label-primary:focus {
    border-color: #e7e7ff !important;
}

.select-bg-label-secondary {
    color: #8592a3 !important;
    background-color: #ebeef0 !important;
}

.select-bg-label-secondary:focus {
    border-color: #ebeef0 !important;
}

.select-bg-label-danger {
    color: #ff3e1d !important;
    background-color: #ffe0db !important;
}

.select-bg-label-danger:focus {
    border-color: #ffe0db !important;
}

.select-bg-label-warning {
    color: #ffab00 !important;
    background-color: #fff2d6 !important;
}

.select-bg-label-warning:focus {
    border-color: #fff2d6 !important;
}

.select-bg-label-info {
    color: #03c3ec !important;
    background-color: #d7f5fc !important;
}

.select-bg-label-info:focus {
    border-color: #d7f5fc !important;
}

.select-bg-label-dark {
    color: #233446 !important;
    background-color: #dcdfe1 !important;
}

.select-bg-label-dark:focus {
    border-color: #dcdfe1 !important;
}
.chat-img {
    width: 54px !important;
    border-radius: 50px;
    cursor: pointer;
    position: fixed;
    bottom: 0.7rem;
    right: 6.625rem;
    padding: 10px;
    background-color: #ffffff;
    z-index: 999999;
    transition: transform 0.3s ease;
    /* Adding transition for smooth animation */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.chat-img:hover {
    transform: translateY(-5px);
    /* Lift the image slightly on hover */
}

.chat-iframe-container {
    display: none;
    /* Hidden by default */
    position: fixed;
    bottom: 70px;
    /* Adjust to position above the chat icon */
    right: 10px;
    /* Adjust to position near the chat icon */
    width: 350px;
    /* Adjust width as needed */
    height: 500px;
    /* Adjust height as needed */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 999998;
}

.chat-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}
.statisticsDiv {
    height: 600px;
}

.tox-menu.tox-swatches-menu {
    z-index: 1000000 !important; /* Use a high z-index value */
}

/* Comment Discussions  Style */

.comment-thread {
    margin: auto;
    padding: 0 30px;
    border: 1px solid transparent;
}

.m-0 {
    margin: 0;
}

.sr-only {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Comment styles */
.comment {
    position: relative;
    margin: 20px auto;
}

.comment-heading {
    display: flex;
    align-items: center;
    height: 50px;
    font-size: 14px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-info {
    color: rgba(0, 0, 0, 0.5);
}

.comment-author {
    color: rgba(0, 0, 0, 0.85);
    font-weight: bold;
    text-decoration: none;
}

.comment-author:hover {
    text-decoration: underline;
}

.replies {
    margin-left: 20px;
}

/* Comment border link styles */
.comment-border-link {
    display: block;
    position: absolute;
    top: 50px;
    left: 0;
    width: 12px;
    height: calc(100% - 50px);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    background-color: rgba(0, 0, 0, 0.1);
    background-clip: padding-box;
}

.comment-border-link:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.comment-body {
    padding: 0 20px;
    padding-left: 28px;
}

.replies {
    margin-left: 28px;
}

/* Toggleable comment styles */
details.comment summary {
    position: relative;
    list-style: none;
    cursor: pointer;
}

details.comment summary::-webkit-details-marker {
    display: none;
}

details.comment:not([open]) .comment-heading {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.comment-heading::after {
    display: inline-block;
    position: absolute;
    right: 5px;
    align-self: center;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.55);
}

.comment-heading {
    position: relative;
    padding-right: 20px; /* Space for the chevron */
}
.comment-heading {
    position: relative;
    padding-right: 20px;
}

.comment-heading::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #6c757d;
    border-bottom: 2px solid #6c757d;
    transform: translateY(-50%) rotate(45deg); /* Arrow pointing down */
    transition: transform 0.3s ease;
}

/* Arrow points up when the details element is open */
details[open] .comment-heading::after {
    transform: translateY(-50%) rotate(-135deg); /* Arrow pointing up */
}


/* Button styles */
.comment-body button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    font-size: 14px;
    padding: 4px 8px;
    color: rgba(0, 0, 0, 0.85);
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    margin-right: 10px;
    cursor: pointer;
}

.comment-body button:hover,
.comment-body button:focus,
.comment-body button:active {
    background-color: #ecf0f1;
}

/* Comment form styles */
.comment-form-container {
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
}
.comment-actions .btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.comment-actions .btn i {
    font-size: 1.25rem;
    vertical-align: middle;
}

.attachment-preview-container {
    position: relative;
}

.attachment-preview {
    display: none;
    position: relative;
    bottom: 100%;
    left: 0;
    background-color: #fff;
    /* border: 0.5px solid #ddd;
    border-radius: 4px; */
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
    padding: 10px;
    z-index: 1000;
}

.attachment-preview img {
    max-width: 200px;
    max-height: 200px;
}
.comment-heading {
  transition: all 0.3s ease-in-out;
}

.comment-body {
  transition: all 0.3s ease-in-out;
  max-height: 0;
  overflow: hidden;
}

details[open] .comment-body {
  max-height: 100vh;
  padding: 20px;
}
.menu-search-bar {
    margin-bottom: 1rem;
}

#menu-search {
    width: 100%;
    padding: 0.5rem;
}
.status-selector,
.priority-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.status-tag.selected,
.priority-tag.selected {
    opacity: 1;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px currentColor;
}

.status-tag[data-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Base class for the mind map container */
.mind-map-container {
    height: 800px;
    /* Default height for larger screens */
}

/* Adjust height for medium screens */
@media (max-width: 1200px) {
    .mind-map-container {
        height: 600px;
        /* Height for medium screens */
    }
}

/* Adjust height for small screens */
@media (max-width: 992px) {
    .mind-map-container {
        height: 500px;
        /* Height for small screens */
    }
}

/* Adjust height for extra small screens */
@media (max-width: 768px) {
    .mind-map-container {
        height: 400px;
        /* Height for extra small screens */
    }
}

/* Base class for mind map node */
jmnode {
    padding: 5px;
    border: 1px solid;
    cursor: pointer;
}
#deleteModal {
    z-index: 1200; /* Higher than other modals */
}
.max-height-450 {
    max-height: 450px;
    overflow-y: auto;
}
.scrollbar-thin{
     scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}
.tribute-container {
  position: absolute;
  top: 0;
  left: 0;
  max-height: 300px;
  max-width: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  display: block;
  z-index: 1200000;
  background-color: #ffffff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  margin-top: 5px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

.tribute-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tribute-container li {
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
  color: #333333;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.tribute-container li.highlight,
.tribute-container li:hover {
  background-color: #f0f7ff;
  color: #0066cc;
}

.tribute-container li span {
  font-weight: 600;
  color: #0066cc;
  margin-right: 5px;
}

.tribute-container li.no-match {
  cursor: default;
  color: #999999;
  padding: 15px;
  text-align: center;
  font-style: italic;
}

.tribute-container .menu-highlighted {
  font-weight: 600;
  background-color: #e6f2ff;
}

.tribute-container::-webkit-scrollbar {
  width: 6px;
}

.tribute-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.tribute-container::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

.tribute-container::-webkit-scrollbar-thumb:hover {
  background: #999999;
}

/* Add a subtle animation for smoother appearance */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tribute-container {
  animation: fadeIn 0.2s ease-out;
}



/* Improve readability for highlighted text */
.tribute-container li.highlight span,
.tribute-container li:hover span {
  color: #004999;
}

/* Add a subtle separator between items */
.tribute-container li:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}


.input-group .error-message {
    display: block;
    color: red;
    font-size: 0.875rem; /* Slightly smaller than normal text */
    margin-top: 0.25rem;
    position: relative;
}

/* Ensure that the input doesn't overlap with the error */
.input-group .form-control {
    margin-bottom: 0;
}

.input-group .error-message {
    margin-left: 0; /* Align the error message below the input group */
}


.menu-item {
    position: relative;
}

.pin-icon {
    position: absolute;
    right: 32px;
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Ensures vertical center */
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.2s, transform 0.2s ease-in-out; /* Added transition for smooth transform */
    font-size: 18px;
}

.pin-icon:hover {
    opacity: 0.6;
}

.menu-item.pinned .pin-icon {
    opacity: 1;
    transform: translateY(-50%) rotate(-320deg); /* Tilts the icon by -20 degrees */
}

.menu-item:not(:hover):not(.pinned) .pin-icon {
    display: none;
}

.daterangepicker .prev i {
    font-family: 'boxicons' !important;
    content: "\eb41"; /* Boxicons left arrow (bx-chevron-left) */
}

.daterangepicker .next i {
    font-family: 'boxicons' !important;
    content: "\eb42"; /* Boxicons right arrow (bx-chevron-right) */
}

.fc-event {
    cursor: pointer;
}
.status-column {
    min-width: 250px;
}

.priority-column {
    min-width: 200px;
}
.payment-option {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border-color: #d9dee3;
    background-color: transparent;
}

.payment-option:hover {
    border-color: #696cff;
    background-color: #f8f7ff;
}

.btn-check:checked + .payment-option {
    border-color: #696cff;
    background-color: #f8f7ff;
}

.btn-check:focus + .payment-option {
    border-color: #696cff;
    box-shadow: 0 0 0.25rem 0.05rem rgba(105, 108, 255, 0.1);
}

.payment-option:active {
    transform: scale(0.98);
}
