/* Verification OTP Input Styling */
.otp-box {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.otp-input {
  width: 20%;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  outline: 0;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  padding: 8px;
  font-size: 1.2rem;
  text-align: center;
}
.otp-input:focus {
  box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 3px;
}
.otp-input::-webkit-inner-spin-button {
  display: none;
}
/* Verification OTP Input Styling END---------*/

/* Top Loading Bar Style */
.top-loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #f2f2f2;
  z-index: 9999;
}
.progress {
  background: var(--bs-body-main-color);
  height: 4px;
  transition: width 0.2s ease;
}
/* Top Loading Bar Style END-------------*/

/* // SKELETEON LOADER */
.loading-skeleton h1,
.loading-skeleton h2,
.loading-skeleton h3,
.loading-skeleton h4,
.loading-skeleton h5,
.loading-skeleton h6,
.loading-skeleton p,
.loading-skeleton li,
.loading-skeleton .btn,
.loading-skeleton label,
.loading-skeleton span,
.loading-skeleton span .d-block,
.loading-skeleton .form-control {
  color: transparent;
  appearance: none;
  -webkit-appearance: none;
  background-color: #eee;
  border-color: #eee;
}
.loading-skeleton h1::placeholder,
.loading-skeleton h2::placeholder,
.loading-skeleton h3::placeholder,
.loading-skeleton h4::placeholder,
.loading-skeleton h5::placeholder,
.loading-skeleton h6::placeholder,
.loading-skeleton p::placeholder,
.loading-skeleton li::placeholder,
.loading-skeleton .btn::placeholder,
.loading-skeleton label::placeholder,
.loading-skeleton .form-control::placeholder {
  color: transparent;
}

@keyframes loading-skeleton {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.loading-skeleton {
  pointer-events: none;
  animation: loading-skeleton 1s infinite alternate;
}
.loading-skeleton img {
  filter: grayscale(100) contrast(0%) brightness(1.8);
}
/* // SKELETEON LOADER --ENDDDD*/

/* Bussiness Submenu Dropdown */
.business-dropdown {
  left: 0rem !important;
  min-width: 13rem !important;
}

/* Card Media footer */
.media-footer {
  background: transparent;
  border-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.75rem 1.25rem;
}
.media-footer:last-child {
  border-radius: 0 0 calc(0.5rem - 1px) calc(0.5rem - 1px);
}

/* Blink Animation */
.element-to-animate {
  animation: exampleAnimation 1s linear infinite !important;
}
/* @keyframes exampleAnimation {
  0%, 100% { background: #16db8c; }
  50% { background: transparent; }
} */
/* Confirm modal style */
.text_center {
  text-align: center;
}

.info-icon {
  color: #2f45c5;
  font-size: 20px;
  cursor: pointer;
  margin-top: -2px;
}

/* Tooltip */
.tooltip-container {
  position: relative;
  display: inline-block;
}
.tooltip-text {
  position: absolute;
  background-color: rgba(38, 42, 46, var(--bs-text-opacity));
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 9999;
  visibility: visible;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
/* Top placement */
.tooltip-text.top {
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
/* Right placement */
.tooltip-text.right {
  top: 50%;
  left: calc(80% + 10px);
  transform: translateY(-50%);
}
/* Left placement */
.tooltip-text.left {
  top: 50%;
  right: calc(100% + 10px);
  transform: translateY(-50%);
}
/* Bottom placement */
.tooltip-text.bottom {
  top: 88%;
  left: 50%;
  transform: translateX(-50%);
}
.tooltip-container:hover .tooltip-text {
  opacity: 1;
}

.pointer {
  cursor: pointer;
}

/* -----Maintainance Page----- */
.maintainance-page {
  width: 100%;
  height: 100vh;
  padding: 4rem;
}
.maintainance-box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 20px;
}
.maintainance-box h6 {
  letter-spacing: 2px;
  word-spacing: 4px;
}
.maintainance-box h2 {
  letter-spacing: 2px;
  background: rgb(51, 51, 51);
  color: #fff;
  padding: 2px 4px;
  border-radius: 5px;
}
.maintainance-box img {
  height: 350px;
}

.ball-wrapper {
  width: 200px;
  height: 60px;
  position: relative;
  z-index: 1;
}
.circles {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  background-color: var(--bs-body-main-color);
  left: 15%;
  transform-origin: 50%;
  animation: circle7124 0.5s alternate infinite ease;
}
@keyframes circle7124 {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }

  40% {
    height: 20px;
    border-radius: 50%;
    transform: scaleX(1);
  }

  100% {
    top: 0%;
  }
}
.circles:nth-child(2) {
  left: 45%;
  animation-delay: 0.2s;
}
.circles:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}
.shadows {
  width: 20px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.9);
  position: absolute;
  top: 62px;
  transform-origin: 50%;
  z-index: -1;
  left: 15%;
  filter: blur(1px);
  animation: shadow046 0.5s alternate infinite ease;
}
@keyframes shadow046 {
  0% {
    transform: scaleX(1.5);
  }

  40% {
    transform: scaleX(1);
    opacity: 0.7;
  }

  100% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }
}
.shadows:nth-child(4) {
  left: 45%;
  animation-delay: 0.2s;
}
.shadows:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

.switch-text:hover {
  text-decoration: underline;
}

/* No Data Page */
.no-data-wrapper {
  display: grid;
  place-items: center;
}
.no-data-wrapper img {
  height: 250px;
  opacity: 0.2;
  background: #dcdcdc;
  padding: 4px;
  border-radius: 50%;
}
.no-data-wrapper button {
  padding: 8px 12px;
  border-radius: 8px;
  border: 0;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background: transparent;
}
.no-data-wrapper button:active {
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

/* floating button */
.floating-button {
  background-color: #3862dd;
  color: white;
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  padding: 25px;
  height: 25px;
  width: 25px;
  border-radius: 90%;
  border: none;
}

/* invitation details */
.invitation-details {
  position: absolute;
  top: 65px;
  right: 0;
  width: 50%;
  height: 620px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  border-left: 1px solid #eaeaea;
  background: #fff;
  display: flex;
  z-index: 100;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s;
  transition: all 0.2s ease;
  overflow: auto;
}

.invitation-details .nicescroll-bar {
  padding: 1.25rem;
}

/* //INVITATION APPROVE REJECT PAGE */

.workspace-container {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
}

.workspace-name {
  font-size: 34px;
  margin-bottom: 40px;
}

.button-container {
  display: flex;
  gap: 10px;
}

.accept-button,
.reject-button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 0.375rem;
}

.accept-button {
  background-color: #4caf50;
  color: white;
}

.reject-button {
  background-color: #f44336;
  color: white;
}

/* Add Space Style */
.add-space-title {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  opacity: 0.8;
}
.theme-color-select {
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid #d9d9d9;
}
.theme-color-select .colortheme-tile {
  color: #000;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.color-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.color-option {
  cursor: pointer;
  margin-right: 15px;
  border-radius: 50%;
  cursor: pointer;
}
.color-option.selected-color {
  box-shadow: rgba(0, 128, 0, 0.7) 0px 19px 38px,
    rgba(0, 128, 0, 0.5) 0px 15px 12px;
  transition: all 0.4s ease-in-out;
}
.icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.icon-option {
  cursor: pointer;
  margin: 0px 8px;
}
.icon-option.selected-icon {
  box-shadow: rgba(0, 0, 0, 0.4) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
  transition: all 0.4s ease-in-out;
}
.space-button {
  width: 107px;
  height: 45px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 0.8px solid #1f1f1f;
}
.selected-permission {
  border: 2px solid #1944c2;
}

/* Purple theme styles */
body[data-theme="purple"] {
  --bs-body-main-color: #7c5ce3;
  --bs-body-hover-color: #a03ef5;
  --bs-body-light-color: #ba55d33d;
  --bs-body-active-color-back: #9d3ab63d;
}

/* Yellow theme styles */
body[data-theme="yellow"] {
  --bs-body-main-color: #e4a11b;
  --bs-body-hover-color: #d6940f;
  --bs-body-light-color: #f6ff003d;
  --bs-body-active-color-back: #ffea003d;
}

/* Green theme styles */
body[data-theme="green"] {
  --bs-body-main-color: #14a44d;
  --bs-body-hover-color: #109043;
  --bs-body-light-color: #00ff083d;
  --bs-body-active-color-back: #00ff153d;
}

/* Red theme styles */
body[data-theme="red"] {
  --bs-body-main-color: #dc4c64;
  --bs-body-hover-color: #c72e47;
  --bs-body-light-color: #ff00003d;
  --bs-body-active-color-back: #ff00003b;
}

/* Pulse Badge */
.pulse {
  animation: animate 3s linear infinite;
}

@keyframes animate {
  0% {
    box-shadow: 0 0 0 0 var(--bs-body-main-color),
      0 0 0 0 var(--bs-body-main-color);
  }
  40% {
    box-shadow: 0 0 0 12px rgba(255, 109, 74, 0),
      0 0 0 0 var(--bs-body-main-color);
  }
  80% {
    box-shadow: 0 0 0 12px rgba(255, 109, 74, 0),
      0 0 0 8px rgba(255, 109, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 8px rgba(255, 109, 74, 0);
  }
}

/* Custom Color Top Shadow */
.custom-shadow-top-primary {
  box-shadow: 0px -1px 0px var(--bs-body-main-color) !important;
}
.custom-shadow-top-danger {
  box-shadow: 0px -1px 0px rgba(255, 0, 0, var(--bs-text-opacity)) !important;
}
.custom-shadow-top-warning {
  box-shadow: 0px -1px 0px rgba(255, 196, 0, var(--bs-text-opacity)) !important;
}
.custom-shadow-top-info {
  box-shadow: 0px -1px 0px rgba(24, 221, 239, var(--bs-text-opacity)) !important;
}
.custom-shadow-top-success {
  box-shadow: 0px -1px 0px rgba(0, 214, 127, var(--bs-text-opacity)) !important;
}
.custom-shadow-top-blue {
  box-shadow: 0px -1px 0px #3862dd !important;
}

/* REACT BIG CALENDAR */
.rbc-event,
.rbc-day-slot .rbc-background-event {
  background-color: #e3edff !important;
}
.rbc-ellipsis,
.rbc-show-more,
.rbc-row-segment .rbc-event-content,
.rbc-event-label {
  color: #3862dd;
  text-transform: capitalize;
}
.rbc-time-header {
  overflow: auto;
  height: 40vh;
}

/* COMPLAINT */
.complaint-imgcontainer {
  width: 531.733px;
  height: 334px;
  flex-shrink: 0;
}
/* TASK DETAILS */
.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.simple-scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.simple-scrollbar::-webkit-scrollbar-thumb {
  background-color: lightgrey;
  border-radius: 5px;
}
.simple-scrollbar::-webkit-scrollbar-track:hover {
  background-color: whitesmoke;
}

/* Upload Image */

.input-file {
  display: none;
}

.input-file + .file-label:before {
  content: "Browse";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* For Complaint Skeleton and some others */

/* Style for the image container */
.image-container {
  position: relative;
  display: inline-block;
}

/* Style for the anchor tag wrapping the image */
.image-link {
  display: block;
  position: relative;
  text-decoration: none;
}

/* Style for the image */
.image {
  width: 118px;
  height: 113px;
  transition: filter 0.3s ease;
}

/* Style for the overlay and "Click Here" text */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background color */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0; /* Hidden by default */
  transition: opacity 0.3s ease;
}

/* Style for the "Click Here" text */
.click-here {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

/* Hover effect: Show the overlay and make the image blur */
.image-link:hover .image {
  filter: blur(5px);
}

/* Show the overlay and "Click Here" text on hover */
.image-link:hover .image-overlay {
  opacity: 1;
}

.file-input {
  display: none;
}

.complaint-title {
  display: inline-block;
  padding: 10px;
  background: linear-gradient(90deg, #eee 25%, #f7f7f7 50%, #eee 75%);
  background-size: 200% 100%;
  color: transparent;
  background-clip: text;
  animation: loading 3s linear infinite;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  width: 50%;
}

.complaint-description-skel {
  display: inline-block;
  padding: 10px;
  background: linear-gradient(90deg, #eee 25%, #f7f7f7 50%, #eee 75%);
  background-size: 200% 100%;
  color: transparent;
  background-clip: text;
  animation: loading 3s linear infinite;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  width: 70%;
  height: 20%;
}
.complaint-svgs-skel {
  display: inline-block;
  padding: 10px;
  background: linear-gradient(90deg, #eee 25%, #f7f7f7 50%, #eee 75%);
  background-size: 200% 100%;
  color: transparent;
  background-clip: text;
  animation: loading 3s linear infinite;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  width: 200%;
  height: 20%;
}

.complaint-progress-bar-skel {
  display: inline-block;
  padding: 10px;
  background: linear-gradient(90deg, #eee 25%, #f7f7f7 50%, #eee 75%);
  background-size: 200% 100%;
  color: transparent;
  background-clip: text;
  animation: loading 3s linear infinite;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  width: 200%;
  height: 20%;
}
.complaint-withdraw-button-skel {
  display: inline-block;
  padding: 10px;
  background: linear-gradient(90deg, #eee 25%, #f7f7f7 50%, #eee 75%);
  background-size: 200% 100%;
  color: transparent;
  background-clip: text;
  animation: loading 3s linear infinite;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  width: 100%;
  height: 100%;
}
.image-container-skel {
  width: 118px;
  height: 130px;
  display: inline-block;
  padding: 10px;
  background: linear-gradient(90deg, #eee 25%, #f7f7f7 50%, #eee 75%);
  background-size: 200% 100%;
  color: transparent;
  background-clip: text;
  animation: loading 3s linear infinite;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.max-height-300 {
  max-height: 90%;
  overflow-y: auto;
}

.my-complaint-card {
  width: 98%;
  transition: transform 0.3s ease;
}

/* .my-complaint-card:hover {
  transform: scale(1.02);
  border: 1px solid #fcb900 !important;
} */

/* Style for the search container */
.search-container {
  position: relative;
  display: flex;
  align-items: center;
  width: auto; /* Allow the container to grow based on content */
}

/* Style for the search button */
.search-button {
  background-color: #f1f1f1;
  border: none;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s;
  position: relative; /* Remove absolute positioning */
}

/* Style for the search icon */
.fa-search {
  color: #888;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

/* Style for the open state (search box shown) */
.search-container.active .search-box {
  width: 300px;
  padding: 5px;
  opacity: 1;
  position: absolute;
  right: 20px;
  top: -150%;
}

/* Style for the search box */
.search-box {
  width: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: width 0.3s ease, opacity 0.3s ease;
}

.search-box input[type="text"] {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  text-align: left;
  margin-bottom: 100px;
}

.floating-button-complaint {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  margin-bottom: 4%;
  z-index: 9999;
}

/* Hover effect for the button */
.floating-button:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}

@media (max-width: 864px) {
  .todo-header .task-text {
    font-size: 1.3rem;
  }
}

/* Maintenance Page */
.maintenance-svg {
  animation: move-updown 2s ease-in infinite alternate-reverse;
  filter: drop-shadow(0 0 1px #fff);
}
.maintenance-responsive-btn {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.maintenance-responsive-btn:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.maintenance-responsive-btn:active {
  background: #dee2e6;
  box-shadow: none;
}
@keyframes move-updown {
  to {
    transform: translateY(10px);
  }

  from {
    transform: translateY(-10px);
  }
}
@media (max-width: 576px) {
  .text-responsive {
    color: #fff !important;
  }
}

/* ATTENDANCE CALENDER COLORS */
.calender-present {
  background-color: rgba(0, 193, 114, 1);
}

.calender-absent {
  background-color: rgba(255, 172, 153, 1);
}

.calender-halfday {
  background-color: rgba(255, 194, 7, 1);
}

.calender-leave {
  background-color: rgba(251, 16, 16, 1);
}

.calender-weeklyoff {
  background-color: rgba(196, 90, 208, 1);
  @media (max-width: 768px) {
    .w-90-sm {
      width: 90% !important;
    }
  }
}

.calender-holiday {
  background-color: rgb(221, 97, 69);
}

/* TASK TABLE SKELETON PADDING */

.task-table-skeleton {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.bg-skeleton {
  background: linear-gradient(90deg, #eee 25%, #f7f7f7 50%, #eee 75%);
}

.dropdown-item-subtext {
  color: #6f6f6f;
}
.subtext-bg {
  background-color: #eaeaea;
}

.hover-card:hover .scale-hover {
  transform: scale(1.1) rotate(5deg);
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
.objetFit-cover {
  object-fit: cover;
}
.objetFit-contain {
  object-fit: contain;
}

.show-hover {
  opacity: 0;
  transition: opacity 0.4s;
}

.hover-card:hover .show-hover {
  opacity: 1;
}

.hover-card {
  position: relative;
}

.text-overflow-top {
  position: absolute;
  top: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}

.position-top-end-overflow-2 {
  position: absolute;
  top: 2rem !important;
  right: 2rem !important;
  -webkit-transform: translate(50%, -50%) !important;
  -moz-transform: translate(50%, -50%) !important;
  -ms-transform: translate(50%, -50%) !important;
  -o-transform: translate(50%, -50%) !important;
  transform: translate(50%, -50%) !important;
}

.count-box {
  box-sizing: border-box;
  border: 0.879217px solid #d9d9d9;
  box-shadow: 0px 3.51687px 3.51687px rgba(0, 0, 0, 0.25);
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.header-button-shadow {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.header-title-font {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

/* for timeline */
.timeline {
  width: 85%;
  max-width: 700px;
  margin-left: 20px;
  margin-top: -20px;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--c-grey-200);
  font-size: 1.125rem;
}

.timeline-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin-left: -32px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 0 0 6px #fff;
  svg {
    width: 15px;
    height: 15px;
    padding: 1px;
  }

  &.faded-icon {
    background-color: #e3edff;
    color: var(--c-grey-400);
  }

  &.filled-icon {
    background-color: var(--c-blue-500);
    color: #fff;
  }
}

/* for breadcrumbs */

.breadcrumb {
  font-size: 1em;
}

.breadcrumb span {
  display: inline-block;
}

.breadcrumb span h6 {
  background-color: #fff;
  box-sizing: border-box;
  display: block;
  max-height: 2.5em;
  padding: 0.5em 1em 0.5em 1.5em;
  position: relative;
  text-decoration: none;
  transition: 0.25s;
  border-radius: 6px;
}

.order-customize-button {
  background: #e3edff;
  border: 0.5px solid #3862dd;
  border-radius: 4px;
  color: #3862dd;
}

/* .breadcrumb span h6:before {
  border-top: 1em solid transparent;
  border-bottom: 1em solid transparent;
  border-left: 1em solid #fff;
  content: "";
  position: absolute;
  top: 0;
  right: -1.25em;
  z-index: 1;
}

.breadcrumb span h6:after {
  border-top: 1em solid transparent;
  border-bottom: 1em solid transparent;
  border-left: 1em solid #E9E9E9;
  content: "";
  position: absolute;
  top: 0;
  right: -1em;
  transition: .25s;
  z-index: 1;
}

.breadcrumb span:last-child h6 {
  background-color: #E9E9E9;
  pointer-events: none;
}

.breadcrumb span:last-child h6:after {
  border-left-color: #E9E9E9;
} */

.text-link {
  color: #000;
  font-size: 15px;
  font-weight: 600;
}
.text-link:hover {
  text-decoration: underline;
  color: #1944c2;
  cursor: pointer;
}

.font-mon {
  font-family: Arial, Helvetica, sans-serif;
}
.font-in {
  font-family: inherit;
  /* ELASTIC TABS IN VENDOR DETAILS PAGE */
}
.tabs {
  font-size: 15px;
  padding: 0px;
  list-style: none;
  background: #fff;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  display: inline-block;
  border-radius: 50px;
  position: relative;
}

.tabs span {
  text-decoration: none;
  color: #777;
  text-transform: uppercase;
  padding: 10px 20px;
  display: inline-block;
  position: relative;
  z-index: 1;
  transition-duration: 0.6s;
}

.tabs .select {
  color: #ffffff;
  border-radius: 50px;
  background: #05abe0;
  background: -moz-linear-gradient(45deg, #05abe0 0%, #8200f4 100%);
  background: -webkit-linear-gradient(45deg, #05abe0 0%, #8200f4 100%);
  background: linear-gradient(45deg, #05abe0 0%, #8200f4 100%);
}

@media print {
  .invoice-wrapper {
    width: 100%;
    padding: 0.7rem 1rem;
  }
  .invoice {
    max-width: 600px;
    background: #fff;
    margin: auto;
    color: #000;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    margin: 0;
    padding: 0;
    margin-bottom: 8px;
  }
  table tbody tr td p {
    color: #000;
    font-size: 0.7rem;
    font-weight: 600;
  }
  .fs-md {
    font-size: 12px;
  }
  .text-center {
    text-align: center;
  }
  .text-left {
    text-align: left;
  }
  .text-right {
    text-align: right;
  }
  .text-uppercase {
    text-transform: uppercase;
  }
  table {
    width: 100%;
    border-collapse: collapse;
  }
  table tr td {
    padding: 2px 8px;
  }
  .border-top {
    border-top: 1px dotted #000;
  }
  .border-bottom {
    border-bottom: 1px dotted #000;
  }
  .border-top-dashed {
    border-top: 1px dashed #000;
  }
  .border-bottom-dashed {
    border-bottom: 1px dashed #000;
  }
  .w-100 {
    width: 100%;
  }
  .overflow-hide {
    overflow: hidden;
    max-height: 1.1rem;
  }
  .nowrap {
    white-space: nowrap !important;
  }
  .pb-0 {
    padding-bottom: 0;
  }
  .pb-sm {
    padding-bottom: 1rem;
  }
  .pt-sm {
    padding-top: 1rem;
  }
  .mt-0 {
    margin-top: 0 !important;
  }
  .mt-0-5 {
    margin-top: 4px !important;
  }
  .mt-sm {
    margin-top: 6px !important;
  }
  .mb-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm {
    margin-bottom: 0.5rem !important;
  }
  .mb-0-5 {
    margin-bottom: -3px !important;
  }
  .mb-00 {
    margin-bottom: -7px !important;
  }
  .f-sm {
    font-size: 0.8rem;
  }
  .f-lg {
    font-size: 0.9rem;
  }
  .fw-semibold {
    font-weight: 600;
  }
  .fw-bold {
    font-weight: 700;
  }
  .d-flex {
    display: flex;
  }
  .align-items-center {
    align-items: center;
  }
  .justify-content-between {
    justify-content: space-between;
  }
}

/* Order confirm Modal */

.order-confirm-modal {
  color: #636363;
  font-size: 14px;
}
.order-confirm-modal .modal-content {
  padding: 20px;
  border-radius: 5px;
  border: none;
}
.order-confirm-modal .modal-header {
  border-bottom: none;
  position: relative;
}
.order-confirm-modal h4 {
  text-align: center;
  font-size: 26px;
  margin: 30px 0 -15px;
}
.order-confirm-modal .form-control,
.order-confirm-modal .btn {
  min-height: 40px;
  border-radius: 3px;
}
.order-confirm-modal .close {
  position: absolute;
  top: -5px;
  right: -5px;
}
.order-confirm-modal .modal-footer {
  border: none;
  text-align: center;
  border-radius: 5px;
  font-size: 13px;
}
.order-confirm-modal .icon-box {
  color: #fff;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: -10px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  z-index: 9;
  background: #82ce34;
  padding: 15px;
  text-align: center;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.order-confirm-modal .icon-box i {
  font-size: 58px;
  position: relative;
  top: 3px;
}
.order-confirm-modal.modal-dialog {
  margin-top: 80px;
}
.order-confirm-modal .btn {
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.4s;
  line-height: normal;
  border: none;
}
.order-confirm-modal .btn:hover,
.order-confirm-modal .btn:focus {
  outline: none;
}
.trigger-btn {
  display: inline-block;
  margin: 100px auto;
}

/* Profile */
.custom_tab {
  cursor: pointer;
  padding: 0.5rem 1.2rem;
  color: #212529;
}
.custom_active {
  background: #e3edff;
  border-radius: 12px;
}

.custom_form_control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #888888;
  font-weight: 600;
  background-clip: padding-box;
  border: none;
  border-bottom: 1px solid #d8d8d8;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.custom_form_control:focus {
  border: none;
  border-bottom: 1px solid #5d5d5d;
  outline: 0;
}
.header_dark {
  color: #525252;
  font-weight: 600;
}
.custom_label {
  color: #6f6f6f !important;
  font-size: 1.2rem;
}
.floating-button-crm-group {
  position: fixed;
  bottom: 20px;
  right: 20px;
  transition: background-color 0.3s, transform 0.3s;
  margin-bottom: 4%;
  z-index: 9999;
}

.crm-activity-tab-active {
  width: 100px;
  height: 42px;
  background: #dce5ff;
  border-radius: 16px;
}
.crm-activity-tab {
  width: 100px;
  height: 42px;

  background: #f0f0f0;
  border-radius: 16px;
}

.crm-activity-card {
  box-sizing: border-box;
  width: 180%;
  height: 90px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  display: flex;
  align-items: center;
}
.crm-activity-card div {
  padding: 10px;
  text-align: center;
}

.activity-details-card {
  box-sizing: border-box;
  width: 100%;
  height: 200px;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  padding: 8px;
}

.activity-details-image-card {
  box-sizing: border-box;
  width: 50%;
  height: 80%;
  background: #f9f9f9;
  border: 1px dashed #6f6f6f;
  & span {
    &:last-child {
      width: 48%;
      height: 16%;
      background: #00c172;
      border-radius: 9px;
      padding: 4px 6px;
      color: #fff;
    }
  }
}

.activity-details-image-upload-card {
  box-sizing: border-box;
  width: 100%;
  height: 19%;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
}

.activity-details-location-card {
  width: 100%;
  height: 85px;
  border-radius: 10px;
  border: 1px solid #6f6f6f;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  color: #3862dd;
}

.activity-details-location-card:hover {
  background-color: #3862dd;
  color: white;
}

table tr:hover {
  background-color: #c7d2e7a4;
  cursor: pointer;
  /* font-weight: bold; */
  transition: all 0.7s;
}

/* Carousel CSS */
.custom-carousel {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
}
.custom-carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
}
.custom-carousel-item {
  min-width: 100%;
  transition: opacity 0.5s ease;
  opacity: 0;
}
.custom-carousel-item.active {
  opacity: 1;
}
.custom-carousel-control-prev,
.custom-carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  color: rgba(0, 0, 0, 0.5);
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
}
.custom-carousel-control-prev {
  left: 10px;
}
.custom-carousel-control-next {
  right: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.floating-button-crm-group {
  position: fixed;
  bottom: 25px;
  right: 20px;
  transition: background-color 0.3s, transform 0.3s;
  margin-bottom: 4%;
  z-index: 9999;
}

.vertical-align-top td {
  vertical-align: top !important;
}

@media screen and (max-width: 570px) {
  .hk-wrapper .hk-navbar {
    height: 100px;
  }
  .pg-title {
    margin-top: 40px;
  }
  .avatar.avatar-xs {
    width: 2rem;
    height: 2rem;
  }
  header {
    margin-top: 40px;
    height: 100px;
    display: flex;
    flex-direction: column;
  }
  .todoapp-wrap .todoapp-content .todoapp-detail-wrap header.todo-header {
    height: 100px;
    padding-bottom: 10px;
  }
  .dropdown-text {
    display: none;
  }
  .todoapp-wrap
    .todoapp-content
    .todoapp-detail-wrap
    header.todo-header
    .todoapp-title
    h1 {
    font-size: 1rem;
  }
}

.border-bottom-transparent {
  border-bottom: 4px solid transparent !important;
}
.task-tab-active {
  border-bottom: 4px solid #3862dd !important;
  color: #3862dd !important;
}

/* Responsive Navbar */
.d-none-sm {
  display: block;
}
.d-block-sm {
  display: none;
}
@media (max-width: 600px) {
  .d-none-sm {
    display: none;
  }
  .d-block-sm {
    display: block;
  }
}
.example-nav-tab-container {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  right: -185px;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  background: #0000001d;
  display: flex;
  justify-content: center;
  align-items: center;
}

.example-nav-tab-container .position-relative {
  position: relative;
  width: 100%;
  height: 100%;
}

.example-nav-tab-item {
  position: absolute;
  transform: translate(-50%, -50%);
}

.example-nav-tab-item:nth-child(1) {
  top: 50%;
  left: 96px;
}
.example-nav-tab-item:nth-child(2) {
  top: 100px;
  left: 34px;
}
.example-nav-tab-item:nth-child(3) {
  top: 147px;
  left: 54px;
}
.example-nav-tab-item:nth-child(4) {
  top: 166px;
  left: 100px;
}
.after-none::after {
  content: "" !important;
}

.comment-text {
  word-break: break-word;
  overflow-wrap: break-word;
}

.no-dropdown-arrow::after {
  display: none !important;
}

.ql-editor {
  min-height: 140px !important;
}
.ql-container.ql-snow {
  border: none !important;
}

.ql-editor h1 {
  font-size: 2em !important;
  font-weight: bold !important;
}
.ql-editor h2 {
  font-size: 1.5em !important;
  font-weight: bold !important;
}
.ql-editor h3 {
  font-size: 1.17em !important;
  font-weight: bold !important;
}
