@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap);

@font-face {
  font-family: "Cerebri Sans,sans-serif";
  src: url(../fonts/cerebrisans-light.eot);
  src: local("Cerebri-sans Light"),
    url(../fonts/cerebrisans-light.woff) format("woff");
  font-weight: 300;
}

@font-face {
  font-family: "Cerebri Sans,sans-serif";
  src: url(../fonts/cerebrisans-regular.eot);
  src: local("Cerebri-sans Regular"),
    url(../fonts/cerebrisans-regular.woff) format("woff");
  font-weight: 400;
}

@font-face {
  font-family: "Cerebri Sans,sans-serif";
  src: url(../fonts/cerebrisans-medium.eot);
  src: local("Cerebri-sans Medium"),
    url(../fonts/cerebrisans-medium.woff) format("woff");
  font-weight: 500;
}

@font-face {
  font-family: "Cerebri Sans,sans-serif";
  src: url(../fonts/cerebrisans-semibold.eot);
  src: local("Cerebri-sans Semibold"),
    url(../fonts/cerebrisans-semibold.woff) format("woff");
  font-weight: 600;
}

@font-face {
  font-family: "Cerebri Sans,sans-serif";
  src: url(../fonts/cerebrisans-bold.eot);
  src: local("Cerebri-sans Bold"),
    url(../fonts/cerebrisans-bold.woff) format("woff");
  font-weight: 700;
}

:root {
  --primary-color: #2f77fd;
  --secondary-color: #eaf1ff;
}

/*!
 * Waves v0.7.6
 * http://fian.my.id/Waves 
 * 
 * Copyright 2014-2018 Alfiana E. Sibuea and other contributors 
 * Released under the MIT license 
 * https://github.com/fians/Waves/blob/master/LICENSE */
.waves-effect {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* .overlay{
  width: 100%;
  height:100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.slide-in .overlay{
  background-color: #da9800;
  line-height: 200px;
  color: #fff;
  opacity: 0;
  transform: rotateY(180deg);
  -webkit-transition: transform 0.6s ease-in-out 0.3s, opacity 0.3s ease-in-out;
  -o-transition: transform 0.6s ease-in-out 0.3s, opacity 0.3s ease-in-out;
  transition: transform 0.6s ease-in-out 0.3s, opacity 0.3s ease-in-out;
}

.slide-in .box-animation:hover .overlay{
  opacity: 1;
  transform: rotateY(0deg);
} */

/* .box-animation{
  display: block;
  width: 100%;
  overflow: hidden;
  text-align: center;
  position: relative;
} */

/* border animation*/
/* .animated-border-box, .animated-border-box-glow{
  width: 200px;
  overflow: hidden; 
  z-index: 0;
	border-radius: 10px;
}

.animated-border-box-glow{
  overflow: hidden;
}

.animated-border-box:hover:before, .animated-border-box-glow:hover:before {
  content: '';
  z-index: -2;
  text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(0deg);
  position: absolute;
	width: 99999px;
	height: 99999px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-image: conic-gradient(rgba(0,0,0,0), white, rgba(0,0,0,0) 25%);
	animation: rotate 2s linear infinite;
}

.animated-border-box:after {
	content: '';
	position: absolute;
	z-index: -1;
	left: 5px;
	top: 5px;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	background: #797c8c;
	border-radius: 3px;
}

@keyframes rotate {
	100% {
		transform: translate(-50%, -50%) rotate(1turn);
	}
}


.border-animation{
	position: relative;
	font-size: 18px;
}

.border-animation:hover:before{
	content: '';
	position: absolute;
	left: 0;
  top: 0;
	width: 0;
	border-bottom: 5px solid #b8cef6;
  border-radius: 3px;
	animation: border_anim 2s linear forwards;
}

@keyframes border_anim {
	0%{
		width: 0%;
	}
	100%{
		width: 100%;
	}
}

.waves-effect .waves-ripple {
  position: absolute;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.2);
  background: radial-gradient(rgba(0, 0, 0, 0.2) 0,
      rgba(0, 0, 0, 0.3) 40%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.5) 60%,
      rgba(255, 255, 255, 0) 70%);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transition-property: -webkit-transform, opacity;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transform: scale(0) translate(0, 0);
  transform: scale(0) translate(0, 0);
  pointer-events: none;
}

.waves-effect.waves-light .waves-ripple {
  background: rgba(255, 255, 255, 0.4);
  background: radial-gradient(rgba(255, 255, 255, 0.2) 0,
      rgba(255, 255, 255, 0.3) 40%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0.5) 60%,
      rgba(255, 255, 255, 0) 70%);
}

.waves-effect.waves-classic .waves-ripple {
  background: rgba(0, 0, 0, 0.2);
}

.waves-effect.waves-classic.waves-light .waves-ripple {
  background: rgba(255, 255, 255, 0.4);
}

.waves-notransition {
  -webkit-transition: none !important;
  transition: none !important;
}

.waves-button,
.waves-circle {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(circle, #fff 100%, #000 100%);
} */

/* .waves-button,
.waves-button-input,
.waves-button:hover,
.waves-button:visited {
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  outline: 0;
  color: inherit;
  background-color: rgba(0, 0, 0, 0);
  font-size: 1em;
  line-height: 1em;
  text-align: center;
  text-decoration: none;
  z-index: 1;
}

.waves-button {
  padding: 0.85em 1.1em;
  border-radius: 0.2em;
}

.waves-button-input {
  margin: 0;
  padding: 0.85em 1.1em;
}

.waves-input-wrapper {
  border-radius: 0.2em;
  vertical-align: bottom;
}

.waves-input-wrapper.waves-button {
  padding: 0;
}

.waves-input-wrapper .waves-button-input {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}

.waves-circle {
  text-align: center;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  border-radius: 50%;
}

.waves-float {
  -webkit-mask-image: none;
  -webkit-box-shadow: 0 1px 1.5px 1px rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 1.5px 1px rgba(0, 0, 0, 0.12);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.waves-float:active {
  -webkit-box-shadow: 0 8px 20px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 20px 1px rgba(0, 0, 0, 0.3);
}

.waves-block {
  display: block;
}

.waves-effect.waves-light .waves-ripple {
  background-color: rgba(255, 255, 255, 0.4);
}

.waves-effect.waves-primary .waves-ripple {
  background-color: rgba(78, 172, 109, 0.4);
}

.waves-effect.waves-success .waves-ripple {
  background-color: rgba(6, 214, 160, 0.4);
}

.waves-effect.waves-info .waves-ripple {
  background-color: rgba(80, 165, 241, 0.4);
}

.waves-effect.waves-warning .waves-ripple {
  background-color: rgba(255, 209, 102, 0.4);
}

.waves-effect.waves-danger .waves-ripple {
  background-color: rgba(239, 71, 111, 0.4);
} */

.avatar-xs {
  height: 1.8rem;
  width: 1.8rem;
}

.avatar-sm {
  height: 2.4rem;
  width: 2.4rem;
}

.avatar-md {
  height: 4rem;
  width: 4rem;
}

.avatar-lg {
  height: 5rem;
  width: 5rem;
}

.avatar-xl {
  height: 6rem;
  width: 6rem;
}

.avatar-title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(var(--bs-primary-rgb), 1);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.avatar-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 8px;
}

.avatar-group .avatar-group-item {
  margin-left: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.avatar-group .avatar-group-item:hover {
  position: relative;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

body[data-layout-mode="dark"] .avatar-group .avatar-group-item {
  border-color: #262626;
}

.font-size-10 {
  font-size: 10px !important;
}

.font-size-11 {
  font-size: 11px !important;
}

.font-size-12 {
  font-size: 12px !important;
}

.font-size-13 {
  font-size: 13px !important;
}

.font-size-14 {
  font-size: 14px !important;
}

.font-size-15 {
  font-size: 15px !important;
}

.font-size-16 {
  font-size: 16px !important;
}

.font-size-17 {
  font-size: 17px !important;
}

.font-size-18 {
  font-size: 18px !important;
}

.font-size-20 {
  font-size: 20px !important;
}

.font-size-22 {
  font-size: 22px !important;
}

.font-size-24 {
  font-size: 24px !important;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.social-list-item {
  height: 2rem;
  width: 2rem;
  line-height: calc(2rem - 4px);
  display: block;
  border: 2px solid #adb5bd;
  border-radius: 50%;
  color: #adb5bd;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.social-list-item:hover {
  color: #797c8c;
  background-color: #f9f9f9;
}

.w-xs {
  min-width: 80px;
}

.w-sm {
  min-width: 95px;
}

.w-md {
  min-width: 110px;
}

.w-lg {
  min-width: 140px;
}

.w-xl {
  min-width: 160px;
}

.bg-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  background-color: rgba(52, 58, 64, 0.7);
}

.border-primary {
  border-color: rgba(var(--bs-primary-rgb), 1) !important;
}

body[data-layout-mode="dark"] .text-muted {
  color: #8f9198 !important;
}

body[data-layout-mode="dark"] .text-dark {
  color: #adb5bd !important;
}

body[data-layout-mode="dark"] .text-body {
  color: #8f9198 !important;
}

body[data-layout-mode="dark"] .border,
body[data-layout-mode="dark"] .border-bottom {
  border-color: #2e2e2e !important;
}

body[data-layout-mode="dark"] .border-primary {
  border-color: #4eac6d !important;
}

body[data-layout-mode="dark"] .border-secondary {
  border-color: #797c8c !important;
}

body[data-layout-mode="dark"] .border-success {
  border-color: #06d6a0 !important;
}

body[data-layout-mode="dark"] .border-info {
  border-color: #50a5f1 !important;
}

body[data-layout-mode="dark"] .border-warning {
  border-color: #ffd166 !important;
}

body[data-layout-mode="dark"] .border-danger {
  border-color: #ef476f !important;
}

body[data-layout-mode="dark"] .border-purple {
  border-color: #6153cc !important;
}

body[data-layout-mode="dark"] .border-pink {
  border-color: #e83e8c !important;
}

body[data-layout-mode="dark"] .border-light {
  border-color: #f6f6f9 !important;
}

body[data-layout-mode="dark"] .border-indigo {
  border-color: #560bad !important;
}

body[data-layout-mode="dark"] .border-dark {
  border-color: #343a40 !important;
}

body[data-layout-mode="dark"] .border-primary {
  border-color: rgba(var(--bs-primary-rgb), 1) !important;
}

body[data-layout-mode="dark"] .popover {
  background-color: #333;
  border-color: #383838;
}

body[data-layout-mode="dark"] .bs-popover-top > .popover-arrow::before {
  border-top-color: #383838;
}

body[data-layout-mode="dark"] .bs-popover-top > .popover-arrow::after {
  border-top-color: #333;
}

body[data-layout-mode="dark"] .img-thumbnail {
  background-color: #262626;
  border-color: #333;
}

body[data-layout-mode="dark"] .btn-close {
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
    center/.6em auto no-repeat;
}

body[data-layout-mode="dark"] .alert .btn-close {
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
    center/.6em auto no-repeat;
}

body[data-layout-mode="dark"] .list-group-item {
  background-color: #262626;
  border-color: #2e2e2e;
}

.loader-line {
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

.loader-line .line:nth-last-child(1) {
  -webkit-animation: loadingLine 1.25s 1s infinite;
  animation: loadingLine 1.25s 1s infinite;
}

.loader-line .line:nth-last-child(2) {
  -webkit-animation: loadingLine 1.25s 0.75s infinite;
  animation: loadingLine 1.25s 0.75s infinite;
}

.loader-line .line:nth-last-child(3) {
  -webkit-animation: loadingLine 1.25s 0.5s infinite;
  animation: loadingLine 1.25s 0.5s infinite;
}

.loader-line .line:nth-last-child(4) {
  -webkit-animation: loadingLine 1.25s 0.25s infinite;
  animation: loadingLine 1.25s 0.25s infinite;
}

.loader-line .line:nth-last-child(5) {
  -webkit-animation: loadingLine 1.25s 0s infinite;
  animation: loadingLine 1.25s 0s infinite;
}

.line {
  display: inline-block;
  width: 4px;
  height: 10px;
  border-radius: 14px;
  background-color: rgba(121, 124, 140, 0.7);
}

@-webkit-keyframes loadingLine {
  0% {
    height: 10px;
  }

  50% {
    height: 28px;
  }

  100% {
    height: 10px;
  }
}

@keyframes loadingLine {
  0% {
    height: 10px;
  }

  50% {
    height: 28px;
  }

  100% {
    height: 10px;
  }
}

.custom-accordion .card + .card {
  margin-top: 0.5rem;
}

.custom-accordion a i.accor-plus-icon {
  font-size: 16px;
}

.custom-accordion a.collapsed i.accor-plus-icon:before {
  content: "\F0142";
}

.accordion-button:after {
  margin-left: auto;
  margin-right: 0;
}

body[data-layout-mode="dark"] .accordion-button {
  background-color: #262626;
  border-color: #2e2e2e;
  color: #adb5bd;
}

body[data-layout-mode="dark"] .accordion-button:not(.collapsed) {
  background-color: #2e2e2e;
  -webkit-box-shadow: inset 0 -1px 0 #262626;
  box-shadow: inset 0 -1px 0 #262626;
}

body[data-layout-mode="dark"] .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

body[data-layout-mode="dark"] .accordion-item {
  border-color: #2e2e2e;
  background-color: #262626;
}

body[data-layout-mode="dark"] .accordion-collapse {
  border-color: #2e2e2e;
}

body[data-layout-mode="dark"] .modal-footer,
body[data-layout-mode="dark"] .modal-header {
  border-color: #2e2e2e;
}

.modal-header-colored .modal-header {
  background-color: rgba(var(--bs-primary-rgb), 1);
  margin: 0 -1px -1px -1px;
}

[type="email"]::-webkit-input-placeholder,
[type="number"]::-webkit-input-placeholder,
[type="tel"]::-webkit-input-placeholder,
[type="url"]::-webkit-input-placeholder {
  text-align: left;
}

[type="email"]::-moz-placeholder,
[type="number"]::-moz-placeholder,
[type="tel"]::-moz-placeholder,
[type="url"]::-moz-placeholder {
  text-align: left;
}

[type="email"]:-ms-input-placeholder,
[type="number"]:-ms-input-placeholder,
[type="tel"]:-ms-input-placeholder,
[type="url"]:-ms-input-placeholder {
  text-align: left;
}

[type="email"]::-ms-input-placeholder,
[type="number"]::-ms-input-placeholder,
[type="tel"]::-ms-input-placeholder,
[type="url"]::-ms-input-placeholder {
  text-align: left;
}

[type="email"]::placeholder,
[type="number"]::placeholder,
[type="tel"]::placeholder,
[type="url"]::placeholder {
  text-align: left;
}

.form-check,
.form-check-input,
.form-check-label {
  cursor: pointer;
  margin-bottom: 0;
}

.form-check-input:checked {
  background-color: rgba(var(--bs-primary-rgb), 1);
  border-color: rgba(var(--bs-primary-rgb), 1);
}

body[data-layout-mode="dark"] .form-control {
  color: #8f9198;
  background-color: #333;
  border: 1px solid #333;
}

body[data-layout-mode="dark"] .form-control::-webkit-input-placeholder {
  color: #757575;
}

body[data-layout-mode="dark"] .form-control::-moz-placeholder {
  color: #757575;
}

body[data-layout-mode="dark"] .form-control:-ms-input-placeholder {
  color: #757575;
}

body[data-layout-mode="dark"] .form-control::-ms-input-placeholder {
  color: #757575;
}

body[data-layout-mode="dark"] .form-control::placeholder {
  color: #757575;
}

body[data-layout-mode="dark"] .form-control:disabled,
body[data-layout-mode="dark"] .form-control[readonly] {
  background-color: #262626;
  border-color: #262626;
}

body[data-layout-mode="dark"] .form-select {
  color: #8f9198;
  background-color: #333;
  border: 1px solid #333;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23f9f9f9' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

body[data-layout-mode="dark"] .form-check-input {
  background-color: #2e2e2e;
  border-color: rgba(255, 255, 255, 0.25);
}

body[data-layout-mode="dark"] .form-check-input:checked {
  background-color: #4eac6d;
  border-color: #4eac6d;
}

body[data-layout-mode="dark"] .form-switch .form-check-input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

body[data-layout-mode="dark"] .input-group-text {
  background-color: #2e2e2e;
  border-color: #2e2e2e;
  color: #adb5bd;
}

body[data-layout-mode="dark"] .form-control::-webkit-file-upload-button {
  background-color: #2e2e2e;
  color: #adb5bd;
}

body[data-layout-mode="dark"]
  .form-control:hover:not(:disabled):not(
    [readonly]
  )::-webkit-file-upload-button {
  background-color: #2e2e2e;
}

[data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0 !important;
  bottom: 0;
  right: 0 !important;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  width: auto;
  visibility: visible;
  overflow: auto;
  max-width: 100%;
  max-height: 100%;
  scrollbar-width: none;
  padding: 0 !important;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.simplebar-content:after,
.simplebar-content:before {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
  -ms-flex-positive: inherit;
  flex-grow: inherit;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  right: 2px;
  width: 7px;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: #a2adb7;
  border-radius: 7px;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  -webkit-transition: opacity 0s linear;
  transition: opacity 0s linear;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

[data-simplebar-direction="rtl"] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
}

.custom-scroll {
  height: 100%;
}

.fg-emoji-picker {
  width: 250px !important;
  -webkit-box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12) !important;
  box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12) !important;
  top: auto !important;
  bottom: 70px;
}

.fg-emoji-picker * {
  font-family: var(--bs-font-sans-serif) !important;
  color: #495057 !important;
}

@media (max-width: 991.98px) {
  .fg-emoji-picker {
    left: 14px !important;
    top: auto !important;
    bottom: 60px;
  }
}

.fg-emoji-picker .fg-emoji-picker-container-title {
  color: #343a40 !important;
}

.fg-emoji-picker .fg-emoji-picker-search {
  height: 40px !important;
}

.fg-emoji-picker .fg-emoji-picker-search input {
  background-color: #fff !important;
  color: #495057 !important;
  border: 1px solid #f6f6f9;
  padding: 0.5rem 1rem !important;
  font-size: 0.9375rem !important;
}

.fg-emoji-picker .fg-emoji-picker-search input::-webkit-input-placeholder {
  color: #797c8c !important;
}

.fg-emoji-picker .fg-emoji-picker-search input::-moz-placeholder {
  color: #797c8c !important;
}

.fg-emoji-picker .fg-emoji-picker-search input:-ms-input-placeholder {
  color: #797c8c !important;
}

.fg-emoji-picker .fg-emoji-picker-search input::-ms-input-placeholder {
  color: #797c8c !important;
}

.fg-emoji-picker .fg-emoji-picker-search input::placeholder {
  color: #797c8c !important;
}

.fg-emoji-picker .fg-emoji-picker-search svg {
  fill: #495057 !important;
  right: 11px;
  top: 12px;
}

.fg-emoji-picker .fg-emoji-picker-categories {
  background-color: #f6f6f9 !important;
}

.fg-emoji-picker .fg-emoji-picker-categories li.active {
  background-color: rgba(var(--bs-primary-rgb), 0.2);
}

.fg-emoji-picker .fg-emoji-picker-categories a:hover {
  background-color: rgba(var(--bs-primary-rgb), 0.2);
}

.fg-emoji-picker-grid > li:hover {
  background-color: rgba(var(--bs-primary-rgb), 0.2) !important;
}

a.fg-emoji-picker-close-button {
  background-color: #eaeaf1 !important;
}

body[data-layout-mode="dark"] .fg-emoji-picker {
  background-color: #2e2e2e;
}

body[data-layout-mode="dark"] .fg-emoji-picker * {
  color: #757575 !important;
}

body[data-layout-mode="dark"] .fg-emoji-picker .fg-emoji-picker-categories {
  background-color: #333 !important;
}

body[data-layout-mode="dark"] .fg-emoji-picker .fg-emoji-picker-categories svg {
  fill: #8f9198;
}

body[data-layout-mode="dark"] .fg-emoji-picker .fg-emoji-picker-search input {
  background-color: #2e2e2e !important;
  border-color: #333 !important;
}

body[data-layout-mode="dark"] .fg-emoji-picker .fg-emoji-picker-search svg {
  fill: #8f9198 !important;
}

body[data-layout-mode="dark"] .fg-emoji-picker-grid > li {
  background-color: #2e2e2e;
}

body[data-layout-mode="dark"] a.fg-emoji-picker-close-button {
  background-color: #333 !important;
}

body[data-layout-mode="dark"] {
  background-color: #2b2b2b;
  color: #8f9198;
}

body[data-layout-mode="dark"] .h1,
body[data-layout-mode="dark"] .h2,
body[data-layout-mode="dark"] .h3,
body[data-layout-mode="dark"] .h4,
body[data-layout-mode="dark"] .h5,
body[data-layout-mode="dark"] .h6,
body[data-layout-mode="dark"] h1,
body[data-layout-mode="dark"] h2,
body[data-layout-mode="dark"] h3,
body[data-layout-mode="dark"] h4,
body[data-layout-mode="dark"] h5,
body[data-layout-mode="dark"] h6 {
  color: #adb5bd;
}

.ml-44 {
  margin-left: 44px;
}

.side-menu {
  position: sticky;
  left: 0;
  top: 0;
  min-width: 75px;
  max-width: 75px;
  height: 100vh;
  min-height: 570px;
  /* background-color: #2e2e2e; */
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 9;
  /* border-right: 1px solid #2e2e2e; */
  padding: 0 8px;
  color: black;
  border-right: 0.2px solid rgba(177, 177, 177, 0.2);
}

@media (max-width: 991.98px) {
  .side-menu {
    position: fixed;
    bottom: 0 !important;
    top: auto;
    height: 60px;
    min-width: 100%;
    min-height: auto;
    border-top: 1px solid #2e2e2e;
  }
}

.side-menu .navbar-brand-box {
  text-align: center;
}

.side-menu .navbar-brand-box svg {
  fill: rgba(var(--bs-primary-rgb), 1);
}

@media (max-width: 991.98px) {
  .side-menu .navbar-brand-box {
    display: none;
  }
}

.side-menu .navbar-brand-box .logo {
  line-height: 70px;
}

.side-menu .navbar-brand-box .logo-dark {
  display: block;
}

.side-menu .navbar-brand-box .logo-light {
  display: none;
}

.sidemenu-navigation {
  height: 100%;
}

@media (max-width: 991.98px) {
  .sidemenu-navigation {
    width: 100%;
  }

  .sidemenu-navigation .tooltip {
    display: none;
  }
}

.side-menu-nav {
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 991.98px) {
  .side-menu-nav {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.side-menu-nav .nav-item {
  margin: 5px 0;
  display: block;
  width: 100%;
}

@media (max-width: 991.98px) {
  .side-menu-nav .nav-item {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 5px 0;
  }
}

.side-menu-nav .nav-item .nav-link {
  text-align: center;
  font-size: 28px;
  color: #878a92;
  width: 100%;
  height: 46px;
  line-height: 36px;
  border-radius: 0;
  padding: 0;
  position: relative;
}

.side-menu-nav .nav-item .nav-link i {
  vertical-align: middle;
}

.side-menu-nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  height: 45px;
  width: 200px;
  right: -8px;
  top: 8px;
}
.side-menu-nav .nav-item .nav-link:hover::before {
  background-color: rgba(var(--bs-primary-rgb), 0.1);
}

@media (max-width: 991.98px) {
  .side-menu-nav .nav-item .nav-link::before {
    width: 20px;
    height: 2px;
    right: auto;
    top: -5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media (max-width: 991.98px) {
  .side-menu-nav .nav-item .nav-link {
    font-size: 20px;
    width: 44px;
    height: 44px;
    line-height: 44px;
    margin: 0 auto;
  }
}

.side-menu-nav .nav-item .nav-link.active {
  background-color: transparent;
  color: rgba(var(--bs-primary-rgb), 1);
}

.side-menu-nav .nav-item .nav-link.active::before {
  background-color: rgba(var(--bs-primary-rgb), 0.1);
}

.side-menu-nav .nav-item.show > .nav-link {
  color: rgba(var(--bs-primary-rgb), 1);
}

.side-menu-nav .profile-user {
  height: 36px;
  width: 36px;
  background-color: #f6f6f9;
  padding: 3px;
}

.light-mode {
  display: none;
}

body[data-layout-mode="dark"] .side-menu {
  background-color: #2e2e2e;
  border-color: #2e2e2e;
}

body[data-layout-mode="dark"] .side-menu-nav .nav-item .nav-link {
  color: #8f9198;
}

body[data-layout-mode="dark"]
  .side-menu-nav
  .nav-item
  .nav-link.light-dark
  .bx-moon:before {
  content: "\eb90";
}

body[data-layout-mode="dark"] .side-menu-nav .nav-item .nav-link.active {
  color: rgba(var(--bs-primary-rgb), 1);
}

body[data-layout-mode="dark"] .side-menu-nav .profile-user {
  background-color: #262626;
}

body[data-layout-mode="dark"] .light-mode {
  display: inline-block;
}

body[data-layout-mode="dark"] .dark-mode {
  display: none;
}

.chat-leftsidebar {
  height: calc(100vh - 60px);
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12);
  box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12);
}

@media (min-width: 992px) {
  .chat-leftsidebar {
    min-width: 300px;
    max-width: 300px;
    height: calc(100vh + 15px);
  }
}

.chat-leftsidebar .user-status-box {
  background-color: #f6f6f9;
  padding: 8px;
  border-radius: 8px;
  text-align: center;
  margin-top: 16px;
  display: block;
}

.chat-leftsidebar .user-status-box .chat-user-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.chat-search-box .form-control {
  border: 0;
}

.chat-search-box .search-icon-btn {
  font-size: 16px;
  position: absolute;
  right: 13px;
  top: 0;
}

.chat-room-list {
  max-height: calc(100vh - 130px);
}

@media (max-width: 991.98px) {
  .chat-room-list {
    height: calc(100vh - 190px) !important;
  }
  .input-group .btn {
    z-index: 0 !important;
  }
}

.chat-group-list {
  height: calc(100vh - 140px);
}

@media (max-width: 991.98px) {
  .chat-group-list {
    height: calc(100vh - 198px);
  }
}

.chat-list {
  margin: 0;
}

.chat-list.left {
  border-top: 2px solid #f6f6f9;
}

.chat-list li.active a {
  background-color: rgba(var(--bs-primary-rgb), 1);
  color: #fff;
}
.chat-list li:hover a {
  background-color: var(--primary-color) !important;
  color: #fff;
}
.groupmemberlist li:hover {
  background-color: var(--primary-color) !important;
  color: #fff;
}
.chat-list li.active a span.avatar-title {
  color: #fff !important;
}

.chat-list li.active a span.avatar-title.bg-light {
  background-color: rgba(246, 246, 249, 0.25) !important;
}

.chat-list li.active a .badge {
  background-color: rgba(246, 246, 249, 0.25) !important;
  color: #fff !important;
}

.chat-list li.active a .bg-primary {
  background-color: rgba(255, 255, 255, 0.25) !important;
}

.chat-list li a {
  display: block;
  padding: 5px 24px;
  color: #5a636c;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  font-size: 14px;
}

.chat-list li .chat-user-message {
  font-size: 14px;
}

.chat-list li .unread-msg-user {
  font-weight: 600;
}

.chat-list li.typing .chat-user-message {
  color: rgba(var(--bs-primary-rgb), 1);
  font-weight: 500;
}

.chat-list li.typing .chat-user-message .dot {
  background-color: rgba(var(--bs-primary-rgb), 1);
}

.chat-list li .unread-message {
  position: absolute;
  display: inline-block;
  right: 24px;
  left: auto;
  top: 33px;
}

.chat-list li .unread-message .badge {
  line-height: 16px;
  font-weight: 600;
  font-size: 10px;
}

.chat-user-img {
  position: relative;
}

.chat-user-img .user-status {
  width: 10px;
  height: 10px;
  background-color: #adb5bd;
  border-radius: 50%;
  border: 2px solid #fff;
  position: absolute;
  right: 0;
  left: auto;
  bottom: 0;
}

.chat-user-img.online .user-status {
  background-color: #06d6a0;
}

.chat-user-img.away .user-status {
  background-color: #ffd166;
}

.contact-list li {
  cursor: pointer;
  padding: 8px 24px;
}

.contact-list-title {
  padding: 6px 24px;
  color: rgba(var(--bs-primary-rgb), 1);
  font-weight: 500;
  position: relative;
  font-size: 12px;
}

.contact-list-title:after {
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 50px;
  right: 0;
  background-color: #f6f6f9;
}

.chat-bookmark-list,
.chat-call-list {
  max-height: calc(100vh - 68px);
}

@media (max-width: 991.98px) {
  .chat-bookmark-list,
  .chat-call-list {
    height: calc(100vh - 200px) !important;
  }
}

.chat-bookmark-list .chat-list,
.chat-call-list li {
  position: relative;
  padding: 10px 24px;
  border-bottom: 1px solid #f6f6f9;
}

.chat-bookmark-list .chat-list:last-child,
.chat-call-list li:last-child {
  border-bottom: 0;
}

.profile-user {
  position: relative;
  display: inline-block;
}

.profile-user .profile-photo-edit {
  position: absolute;
  right: 0;
  left: auto;
  bottom: 0;
  cursor: pointer;
}

.profile-user .user-profile-img {
  -o-object-fit: cover;
  object-fit: cover;
}

.profile-user .profile-img-file-input {
  display: none;
}

.theme-btn-list.theme-color-list
  .form-check
  .form-check-input:checked
  + .form-check-label::before {
  color: #fff;
}

.theme-btn-list .form-check {
  padding: 0;
}

.theme-btn-list .form-check .form-check-input {
  display: none;
}

.theme-btn-list .form-check .form-check-label {
  position: relative;
}

.theme-btn-list
  .form-check
  .form-check-input:checked
  + .form-check-label::before {
  content: "\e9a4";
  font-family: boxicons !important;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: rgba(var(--bs-primary-rgb), 1);
  font-size: 16px;
  z-index: 1;
}

.theme-btn-list
  .form-check
  .form-check-input:checked
  + .form-check-label.light-background::before {
  color: rgba(var(--bs-primary-rgb), 1);
}

.theme-btn-list.theme-btn-list-img .theme-btn {
  background-color: transparent !important;
}

.theme-btn {
  cursor: pointer;
  border: 1px solid #e6ebf5;
}

body[data-layout-mode="dark"] .chat-leftsidebar {
  background-color: #262626;
}

body[data-layout-mode="dark"] .chat-list li a {
  color: #adb5bd;
}

body[data-layout-mode="dark"] .chat-list li.active a {
  color: #fff;
}

body[data-layout-mode="dark"] .chat-user-img .user-status {
  border-color: #262626;
}

body[data-layout-mode="dark"] .contact-list-title:after {
  background-color: #2e2e2e;
}

body[data-layout-mode="dark"] .theme-btn {
  border-color: #2e2e2e;
}

body[data-layout-mode="dark"] .chat-bookmark-list li,
body[data-layout-mode="dark"] .chat-call-list li {
  border-bottom: 1px solid #2e2e2e;
}

.user-chat {
  /*background: url(../images/bg-pattern/pattern-05.png);*/
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
  /* background-color: #f5f5f5; */
}

.bg-grey {
  background-color: #f5f5f5;
}

.user-chat .user-chat-overlay {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: transparent;
  opacity: 0.1;
}

@media (max-width: 991.98px) {
  .card-boxess {
    width: 250px;
  }
  .row-center {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal-backdrop {
    z-index: 0 !important;
    display: none;
  }

  .user-chat {
    position: fixed;
    left: 0;
    top: 0%;
    width: 100%;
    height: 100%;
    /* padding: 0 20px; */
    /* visibility: hidden; */
    /* -webkit-transform: translateX(100%); */
    /* transform: translateX(100%); */
    z-index: 0;
    overflow-x: scroll;
  }

  .user-chat.user-chat-show {
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.user-chat .chat-content {
  position: relative;
}

.user-chat.user-chat-show .chat-welcome-section {
  display: none;
}

@media (min-width: 992px) {
  .user-chat.user-chat-show .chat-content {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.chat-welcome-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100vh;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 991.98px) {
  .chat-welcome-section {
    display: none;
  }
}

.copyclipboard-alert {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.user-chat-topbar {
  /*position: absolute;
  left: 0;
  right: 0;
  top: 0;*/
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid #eaeaf1;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  position: relative;
}
.dashboardContentSection{
  overflow-y: scroll;
  height: calc(100vh - 16vh);
}
@media (max-width: 991.98px) {
  .user-chat-topbar {
    /* position: fixed; */
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .chat-conversation-list {
    height: 70% !important;
  }
  .chat-conversation .conversation-list .message-img img {
    width: 100% !important;
  }
  #headerSubMenu .list-inline-item a.active::after{
    bottom: 0px !important;
  }
  #headerSubMenu{
    margin-top: 15px;
  }
  .dashboardContentSection{
    top:10%;
    height: calc(100vh - 18vh);
  }
}

.user-chat-topbar .topbar-bookmark {
  /*position: absolute;
  bottom: -51px;
  left: 0;
  right: 0;
  border-radius: 0;*/
}

.user-chat-topbar .topbar-bookmark .bookmark-tabs .tab-links {
  color: #cc8f00;
  font-size: 14px;
  padding: 1px 16px;
  border-right: 1px solid rgba(255, 209, 102, 0.7);
  white-space: nowrap;
}

.user-chat-topbar .topbar-bookmark .bookmark-tabs .tab-links:first-child {
  padding-left: 4px;
}

.user-chat-topbar .topbar-bookmark .bookmark-tabs .tab-list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
}

.user-chat-topbar
  .topbar-bookmark
  .bookmark-tabs
  .tab-list-link::-webkit-scrollbar {
  -webkit-appearance: none;
}

.user-chat-topbar
  .topbar-bookmark
  .bookmark-tabs
  .tab-list-link::-webkit-scrollbar:vertical {
  width: 12px;
}

.user-chat-topbar
  .topbar-bookmark
  .bookmark-tabs
  .tab-list-link::-webkit-scrollbar:horizontal {
  height: 5px;
}

.user-chat-topbar
  .topbar-bookmark
  .bookmark-tabs
  .tab-list-link::-webkit-scrollbar-thumb {
  background-color: rgba(52, 58, 64, 0.1);
  border-radius: 10px;
  border: 2px solid transparent;
}

.user-chat-topbar
  .topbar-bookmark
  .bookmark-tabs
  .tab-list-link::-webkit-scrollbar-track {
  border-radius: 10px;
}
.card-body-scroll::-webkit-scrollbar-track {
  border-radius: 10px;
}
.card-body-scroll::-webkit-scrollbar {
  -webkit-appearance: none;
}
.card-body-scroll::-webkit-scrollbar:vertical {
  width: 5px;
}
.card-body-scroll::-webkit-scrollbar:horizontal {
  height: 5px;
}
.card-body-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(52, 58, 64, 0.1);
  border-radius: 10px;
  border: 1px solid transparent;
}

.chat-conversation-list::-webkit-scrollbar-track {
  border-radius: 8px;
}
.chat-conversation-list::-webkit-scrollbar {
  -webkit-appearance: none;
}
.chat-conversation-list::-webkit-scrollbar:vertical {
  width: 8px;
}
.chat-conversation-list::-webkit-scrollbar:horizontal {
  height: 5px;
}
.chat-conversation-list::-webkit-scrollbar-thumb {
  background-color: rgba(45, 50, 54, 0.3);
  border-radius: 10px;
  border: 2px solid transparent;
}

.user-chat-topbar .topbar-bookmark .btn-close {
  padding: 12px 20px;
}

.call-close-btn {
  -webkit-box-shadow: 0 0 0 6px #fff;
  box-shadow: 0 0 0 6px #fff;
}

.user-chat-nav .nav-btn {
  height: 40px;
  width: 40px;
  line-height: 10px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
  font-size: 22px;
  color: #797c8c;
}

@media (max-width: 575.98px) {
  .user-chat-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

.replymessage-block {
  padding: 12px 20px;
  font-size: 14px;
  margin-bottom: 8px;
  text-align: left;
  border-radius: 4px;
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  border-left: 2px solid rgba(var(--bs-primary-rgb), 1);
}

.replymessage-block .conversation-name {
  color: rgba(var(--bs-primary-rgb), 1);
  font-size: 15px;
}

.chat-conversation {
  height: calc(100vh - 200px);
}

@media (max-width: 991.98px) {
  .chat-conversation {
    height: calc(100vh - 190px);
    margin-bottom: 78px;
  }
  .chat-input-section {
    margin-bottom: 75px;
  }
  .task-height {
    height: calc(100vh - 225px);
  }
}

.chat-conversation .simplebar-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.chat-conversation .simplebar-content-wrapper .simplebar-content {
  margin-top: auto;
}

.chat-conversation .chat-conversation-list {
  /*margin-top: 60px;
  padding-top: 10px;*/
  margin-bottom: 0;
}

.chat-conversation .chat-conversation-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.chat-conversation li:last-of-type .conversation-list {
  margin-bottom: 0;
}

.chat-conversation .chat-list.left .check-message-icon {
  display: none;
}

.chat-conversation .chat-list .message-box-drop {
  visibility: hidden;
}

.chat-conversation .chat-list:hover .message-box-drop {
  visibility: visible;
}

.chat-conversation .chat-avatar {
  margin: 0 16px 0 0;
}

.chat-conversation .chat-avatar img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.chat-conversation .chat-day-title {
  position: relative;
  text-align: center;
  margin-bottom: 24px;
  margin-top: 12px;
  width: 100%;
}

.chat-conversation .chat-day-title .title {
  background-color: #fff;
  position: relative;
  font-size: 13px;
  z-index: 1;
  padding: 6px 12px;
  border-radius: 5px;
}

.chat-conversation .chat-day-title:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  right: 0;
  background-color: rgba(var(--bs-primary-rgb), 0.2);
  top: 10px;
}

.chat-conversation .chat-day-title .badge {
  font-size: 12px;
}

.chat-conversation .conversation-list {
  margin-bottom: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: end;
  -ms-flex-align: end;
  /*align-items: flex-end;*/
  max-width: 98%;
}

@media (max-width: 575.98px) {
  .chat-conversation .conversation-list {
    max-width: 90%;
  }
}

.chat-conversation .conversation-list .ctext-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: block;
  margin-bottom: 10px;
}

.chat-conversation .conversation-list .ctext-content {
  word-wrap: break-word;
  word-break: break-word;
}

.chat-conversation .conversation-list .ctext-wrap-content {
  padding: 12px 0px;
  background-color: transparent;
  position: relative;
  /*border-radius: 3px;
  -webkit-box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12);
  box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12);*/
}

@media (max-width: 575.98px) {
  .chat-conversation
    .conversation-list
    .ctext-wrap-content
    .attached-file
    .attached-file-avatar {
    display: none;
  }

  .chat-conversation
    .conversation-list
    .ctext-wrap-content
    .attached-file
    .dropdown
    .dropdown-toggle {
    display: block;
  }
}

.chat-conversation .conversation-list .conversation-name {
  font-weight: 700;
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  text-transform: capitalize;
}

.chat-conversation .conversation-list .dropdown .dropdown-toggle {
  font-size: 18px;
  padding: 4px;
  color: #797c8c !important;
}

@media (max-width: 575.98px) {
  .chat-conversation .conversation-list .dropdown .dropdown-toggle {
    display: block;
  }
  .chat-conversation .chat-list .message-box-drop {
    visibility: visible !important;
  }
  .chat-input-section {
    margin-bottom: 80px;
  }
}

.chat-conversation .conversation-list .chat-time {
  font-size: 12px;
  margin-top: 4px;
  text-align: right;
}

.chat-conversation .conversation-list .message-img {
  border-radius: 0.2rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-conversation .conversation-list .message-img .message-img-list {
  position: relative;
}

.chat-conversation .conversation-list .message-img img {
  width: 400px;
  height: auto;
}
.chat-conversation .conversation-list .message-img img:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.chat-conversation .conversation-list .message-img .message-img-link {
  position: absolute;
  right: 10px;
  left: auto;
  bottom: 10px;
}

.chat-conversation .conversation-list .message-img .message-img-link li > a {
  font-size: 18px;
  color: #fff;
  display: inline-block;
  line-height: 20px;
  width: 26px;
  height: 24px;
  border-radius: 3px;
  background-color: rgba(52, 58, 64, 0.7);
  text-align: center;
}

.chat-conversation .right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.chat-conversation .right .chat-avatar {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  margin-right: 0;
  margin-left: 16px;
}

.chat-conversation .right .chat-time {
  text-align: left;
  color: #797c8c;
}

.chat-conversation .right .conversation-list {
  text-align: right;
}

.chat-conversation .right .conversation-list .ctext-wrap {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.chat-conversation .right .conversation-list .ctext-wrap .ctext-wrap-content {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  background-color: rgba(var(--bs-primary-rgb), 0.23);
  text-align: right;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.chat-conversation
  .right
  .conversation-list
  .ctext-wrap
  .ctext-wrap-content
  .replymessage-block {
  background-color: rgba(255, 255, 255, 0.5);
  border-color: rgba(var(--bs-primary-rgb), 1);
  color: #495057;
}

.chat-conversation
  .right
  .conversation-list
  .ctext-wrap
  .ctext-wrap-content
  .replymessage-block
  .conversation-name {
  color: rgba(var(--bs-primary-rgb), 1);
}

.chat-conversation .right .conversation-list .conversation-name {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.chat-conversation
  .right
  .conversation-list
  .conversation-name
  .check-message-icon {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.chat-conversation .right .conversation-list .conversation-name .time {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.chat-conversation .right .conversation-list .conversation-name .name {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.chat-conversation .right .conversation-list .dropdown {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.chat-conversation .right .dot {
  background-color: #343a40;
}

.videocallModal .modal-content {
  min-height: 450px;
  overflow: hidden;
}

@media (max-width: 575.98px) {
  .videocallModal .modal-content {
    min-height: 350px;
  }
}

.videocallModal-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.user-chat-remove {
  background-color: rgba(var(--bs-primary-rgb), 1);
  color: #fff;
  border-radius: 3px;
  line-height: 1;
}

.chat-input-section {
  background-color: rgba(255, 255, 255, 0.05);
  border-top: 1px solid #eaeaf1;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .chat-input-section {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
}

.chat-input-section .chat-input-collapse {
  position: absolute;
  bottom: 92px;
  left: 0;
  /*right: 0;*/
  border-top: 1px solid #f6f6f9;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .chat-input-section .chat-input-collapse {
    bottom: 74px;
  }
}

.chat-input-section .chat-input-feedback {
  display: none;
  position: absolute;
  top: -18px;
  left: 16px;
  font-size: 12px;
  color: #ef476f;
}

.chat-input-section .show {
  display: block;
}

.chat-input-section .replyCollapse {
  z-index: 1;
}

.file_Upload {
  background-color: #fff;
  border-top: 1px solid #f6f6f9;
  padding: 16px 24px;
}

.file_Upload .card {
  margin-bottom: 0;
  border-color: rgba(var(--bs-primary-rgb), 1) !important;
}

.file_Upload,
.replyCard {
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid #f6f6f9;
  overflow: hidden;
  opacity: 0;
  bottom: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

@media (max-width: 991.98px) {
  .file_Upload,
  .replyCard {
    bottom: -12px;
  }
}

.file_Upload.show,
.replyCard.show {
  -webkit-transform: translateY(-92px);
  transform: translateY(-92px);
  opacity: 1;
}

@media (max-width: 991.98px) {
  .file_Upload.show,
  .replyCard.show {
    -webkit-transform: translateY(-86px);
    transform: translateY(-86px);
  }
}

.contact-modal-list .contact-list li {
  margin: 2px 0;
}

.contact-modal-list .contact-list li.selected {
  background-color: rgba(var(--bs-primary-rgb), 0.1);
}

.chat-input-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.chat-input-links .links-list-item > .btn {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
  font-size: 22px;
  width: 43px;
  height: 43px;
}

.chat-input-links .links-list-item > .btn.btn-link {
  color: #797c8c;
}

.animate-typing .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin-right: -1px;
  background: #343a40;
  -webkit-animation: wave 1.3s linear infinite;
  animation: wave 1.3s linear infinite;
  opacity: 0.6;
}

.animate-typing .dot:nth-child(2) {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.animate-typing .dot:nth-child(3) {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes wave {
  0%,
  100%,
  60% {
    -webkit-transform: initial;
    transform: initial;
  }

  30% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@keyframes wave {
  0%,
  100%,
  60% {
    -webkit-transform: initial;
    transform: initial;
  }

  30% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

body[data-layout-mode="dark"] .user-chat {
  background-color: #2e2e2e;
}

body[data-layout-mode="dark"] .user-chat-overlay {
  opacity: 0.04;
}

body[data-layout-mode="dark"] .chat-input-section,
body[data-layout-mode="dark"] .user-chat-topbar {
  border-color: #333;
  background-color: rgba(46, 46, 46, 0.5);
}

body[data-layout-mode="dark"] .user-chat-nav .nav-btn {
  color: #adb5bd;
}

body[data-layout-mode="dark"] .call-close-btn {
  -webkit-box-shadow: 0 0 0 6px #262626;
  box-shadow: 0 0 0 6px #262626;
}

body[data-layout-mode="dark"] .chat-conversation .chat-day-title .title {
  background-color: #2e2e2e;
}

body[data-layout-mode="dark"]
  .chat-conversation
  .conversation-list
  .ctext-wrap-content {
  background-color: #383838;
  color: rgba(255, 255, 255, 0.8);
}

body[data-layout-mode="dark"]
  .chat-conversation
  .conversation-list
  .dropdown
  .dropdown-toggle {
  color: #8f9198;
}

body[data-layout-mode="dark"]
  .chat-conversation
  .conversation-list
  .message-img
  .message-img-link
  li
  > a {
  color: #fff;
}

body[data-layout-mode="dark"]
  .chat-conversation
  .right
  .conversation-list
  .ctext-wrap
  .ctext-wrap-content {
  color: rgba(255, 255, 255, 0.8);
}

body[data-layout-mode="dark"]
  .chat-conversation
  .right
  .conversation-list
  .ctext-wrap
  .ctext-wrap-content
  .replymessage-block {
  background-color: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.8);
}

body[data-layout-mode="dark"] .animate-typing .dot {
  background: rgba(255, 255, 255, 0.8);
}

body[data-layout-mode="dark"] .chat-input-section .chat-input-collapse {
  border-color: #333;
}

body[data-layout-mode="dark"]
  .chat-input-links
  .links-list-item
  > .btn.btn-link {
  color: #8f9198;
}

@-moz-document url-prefix() {
  .chat-input-section,
  .user-chat-topbar {
    background-color: #f2f2f2 !important;
  }

  [data-layout-mode="dark"] .chat-input-section,
  [data-layout-mode="dark"] .user-chat-topbar {
    background-color: #2e2e2e !important;
  }
}

.user-profile-sidebar {
  height: 100vh;
  background-color: #fff;
  display: none;
  min-width: 380px;
  max-width: 380px;
  position: fixed;
  right: 0;
}

@media (min-width: 992px) {
  .user-profile-sidebar {
    border-left: 4px solid #f6f6f9;
  }
}

@media (max-width: 1199.98px) {
  .user-profile-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99;
  }
}

@media (max-width: 575.98px) {
  .user-profile-sidebar {
    min-width: 100%;
  }
}

.user-profile-img {
  position: relative;
}

.user-profile-img .overlay-content {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(10%, rgba(0, 0, 0, 0.5)),
    color-stop(60%, rgba(0, 0, 0, 0)),
    to(rgba(0, 0, 0, 0.5))
  );
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 10%,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.5) 100%
  );
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  color: rgba(255, 255, 255, 0.6);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.user-profile-img .user-name {
  font-size: 16px;
  color: #fff;
}

.user-profile-img .profile-img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 991px) {
  .user-profile-img .profile-img {
    height: 160px;
  }
}

.user-profile-img .profile-foreground-img-file-input {
  display: none;
}

.user-profile-img .profile-photo-edit {
  cursor: pointer;
}

.user-profile-image {
  -o-object-fit: cover;
  object-fit: cover;
}

.user-profile-desc {
  /*height: calc(100vh - 285px);*/
}

@media (max-width: 991.98px) {
  .user-profile-desc {
    height: calc(100vh - 194px);
  }
}

.profile-desc {
  height: calc(100vh - 285px);
}

@media (max-width: 991.98px) {
  .profile-desc {
    height: calc(100vh - 330px);
  }
}

.profile-media-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.profile-media-img .media-img-list {
  position: relative;
}

.profile-media-img .media-img-list a {
  display: block;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.profile-media-img .media-img-list a img {
  /* width: 60px; */
  /* height: 60px; */
  -o-object-fit: cover;
  object-fit: cover;
}

.profile-media-img .media-img-list a .bg-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

.profile-media-img .media-img-list .image-remove {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  background: rgba(52, 58, 64, 0.7);
  width: 18px;
  height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  margin: 4px;
}

.favourite-btn.active .bx-heart {
  color: #ef476f;
}

.favourite-btn.active .bx-heart:before {
  content: "\ed36";
}

.edit-input.form-control[readonly] {
  padding: 0;
  font-weight: 500;
}

.edit-input.form-control[readonly]:focus {
  border-color: transparent;
}

.user-setting {
  height: calc(100vh - 288px);
}

@media (max-width: 991.98px) {
  .user-setting {
    height: calc(100vh - 320px);
  }
}

body[data-layout-mode="dark"] .user-profile-sidebar {
  background-color: #262626;
}

@media (min-width: 992px) {
  body[data-layout-mode="dark"] .user-profile-sidebar {
    border-color: #333;
  }
}

.auth-logo .logo {
  margin: 0 auto;
}

.auth-logo .logo-dark {
  display: block;
}

.auth-logo .logo-light {
  display: none;
}

.auth-bg {
  background-color: rgba(var(--bs-primary-rgb), 1);
  min-height: 100vh;
  background-size: cover;
  background-position: center;
}

.auth-logo-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 992px) {
  .auth-logo-section {
    height: 100vh;
  }
}

@media (max-width: 991.98px) {
  .auth-logo-section {
    text-align: center;
  }
}

.authentication-page-content {
  height: calc(100% - 48px);
  background-color: #fff;
  border-radius: 16px;
  margin: 24px;
}

.auth-img {
  position: relative;
}

@media (min-width: 992px) and (max-width: 1549.98px) {
  .auth-img {
    max-width: 180%;
  }
}

@media (min-width: 1550px) {
  .auth-img {
    max-width: 160%;
  }
}

@media (max-width: 991.98px) {
  .auth-img {
    display: none;
  }
}

.auth-pass-inputgroup input[type="text"] + .btn .ri-eye-fill:before {
  content: "\ec80";
}

.signin-other-title {
  position: relative;
}

.signin-other-title:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  right: 0;
  background-color: #f6f6f9;
  top: 10px;
}

.signin-other-title .title {
  display: inline-block;
  position: relative;
  z-index: 9;
  background-color: #fff;
  padding: 2px 16px;
}

body[data-layout-mode="dark"] .authentication-page-content {
  background-color: #262626;
}

body[data-layout-mode="dark"] .signin-other-title .title {
  background-color: #262626;
}

body[data-layout-mode="dark"] .signin-other-title::after {
  background-color: #2e2e2e;
}

/*# sourceMappingURL=app.min.css.map */
.content.dashboard-col {
  /*background: url(../images/bg-pattern/pattern-05.png);*/
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
  background-color: #f2f2f2;
}

body {
  overflow: hidden !important;
}

.leftColor {
  background-color: #f8f8ff;
}

.chat-conversation .conversation-list .ctext-wrap {
  margin-bottom: unset;
}

.chat-conversation .conversation-list {
  margin-bottom: unset;
}

.backgroung-profile-image {
  background-image: url("../images/bg2.jpg_large");
  height: 200px;
}

.profile-row {
  position: relative;
  top: 125px;
  left: 45px;
}

.profile-picture img {
  border-radius: 100px;
  width: 208px;
  height: 208px;
  object-fit: cover;
}
.profile-picture {
  /* display: flex; */
  justify-content: center;
  margin-top: 20px;
}

.col-4-image {
  position: relative;
  top: 119px;
}

.profile-row-box {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 22px 22px;
  border-radius: 10px;
}

.name-p {
  font-size: 16px;
  font-weight: 500;
  font-family: "Cerebri Sans,sans-serif";
  margin: 0;
  margin-bottom: 10px;
}

.name-p span {
  margin-left: 10px;
  font-weight: 400;
  font-size: 17px;
}

.about-text {
  font-weight: 500;
  font-size: 14px;
}

.profile-row-box .about {
  font-size: 19px;
  font-weight: 500;
  padding: 0;
  margin: 0;
}

.general-info {
  font-size: 19px;
  font-weight: 500;
  /* padding: 0; */
  /* margin: 0; */
}

.edit-btn {
  width: 10%;
  position: absolute;
  right: 0;
  top: 0;
  background: white;
  color: black;
  font-size: 20px;
  border-radius: 100px;
  padding: 0;
  width: 32px;
  border: 1px solid;
  cursor: pointer;
}

.form-input-div label {
  margin-bottom: 3px;
}

.form-input-div {
  margin-bottom: 7px;
}

.form-input-div input {
  border: 1px solid #ccc;
  padding: 6px 6px;
}
.profile-header {
  border-bottom: 1px solid #ccc;
}
.profile-heading {
  font-size: 20px;
  font-family: "Cerebri Sans,sans-serif";
}

.profile-heading i {
  font-size: 30px;
}

.profile-bell-icon {
  cursor: pointer;
  font-size: 25px;
  border: 1px solid #ccc;
  width: 43px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.user-info-div h1 {
  font-size: 27px;
}
.email-div {
  margin-top: 32px;
}
.profile-email label {
  font-size: 16px;
  padding-bottom: 3px;
}
.name-div {
  margin-top: 32px;
}
.name-div label {
  font-size: 16px;
  padding-bottom: 3px;
}
.hours-div {
  margin-top: 32px;
}
.clockInTime-div label {
  font-size: 16px;
  padding-bottom: 3px;
}
.profile-h1 {
  font-size: 20px;
  margin-top: 20px;
}
.profile-picture-div {
  padding-right: 20px;
  margin-top: 20px;
}
.timing-para {
  margin-top: 20px;
}
.timing-para p {
  font-weight: 400;
  font-size: 16px;
  margin: auto;
  padding-bottom: 3px;
}
.edit-icon {
  position: relative;
  right: 127px;
  font-size: 47px;
  color: white;
  top: 22px;
  cursor: pointer;
}
/* task */

.user-chat-header {
  width: 35%;
  border: 1px solid #f6f6f6;
  border-radius: 26px;
  background: #f4f4f4;
  padding-bottom: 0;
}

.user-chat-header p {
  min-width: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  margin: 0;
  font-family: "Cerebri Sans,sans-serif";
}

.user-chat-para-span {
  font-size: 23px;
  font-weight: bold;
  margin-right: 4px;
  font-family: "Cerebri Sans,sans-serif";
}

.task-main-div {
  padding: 0 100px;
  /* height: 200px; */
  border: 1px solid #ccc;
  border-radius: 15px;
  padding: 9px 0px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.task-header {
  border-bottom: 1px solid #ccc;
  padding-bottom: 7px;
  padding: 6px 10px;
}

.header-left-div img {
  width: 50px;
  height: 50px;
  border: 1px dashed black;
  border-radius: 100px;
}

.task-content {
  line-height: 1;
}

.task-content h4 {
  font-size: 20px;
  padding-left: 10px;
  font-family: "Cerebri Sans,sans-serif";
  margin: 0;
}

.task-content span {
  font-family: "Cerebri Sans,sans-serif";
  padding-left: 10px;
}

.add-icon {
  font-size: 20px;
  /* border: 1px solid black; */
  border-radius: 100px;
  height: 30px;
  width: 30px;
  background-color: rgba(var(--bs-primary-rgb), 1) !important;
  color: white;
  cursor: pointer;
  text-align: center;
}

.task-badge-div p {
  margin: 0;
  font-family: "Cerebri Sans,sans-serif";
}

.task-heading {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin: 0;
  font-family: "Cerebri Sans,sans-serif";
  color: #646464;
}

.task-badge-div span {
  background-color: #50a5f1 !important;
}

.task-modal-input {
  width: 100%;
  padding: 3px 10px;
  border-radius: 6px;
}

.task-scroll-div {
  overflow-y: scroll;
  height: 300px;
  max-height: fit-content;
}

.detail-form-heading {
  font-size: 20px;
  font-weight: 400;
  font-family: "Cerebri Sans,sans-serif";
}

.modal-scroll-div {
  height: 280px;
  overflow-y: scroll;
}

.task-boxes {
  cursor: pointer;
  padding: 2px 15px;
}

.task-boxes:hover {
  cursor: pointer;
  background: #f5f5f5;
  padding: 2px 15px;
  border-radius: 6px;
}

.input-task-save {
  border: none;
  padding: 6px 30px;
  color: white;
  background: cornflowerblue;
  border-radius: 7px;
}
.textarea:focus-visible {
  outline: 0px !important;
}

.comments-div {
  padding: 7px 8px !important;
  padding-bottom: 0 !important;
  font-weight: 500;
}

.task-scroller-class::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
.border-box-shadow {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.text-font {
  font-family: "Lexend Deca" !important;
  /* font-weight: 600; */
  color: #716c6c;
}

.clock {
  font-size: 25px;
  color: black;
  letter-spacing: 2px;
}
.dashboard-table table {
  width: 100%;
}

.dashboard-table thead {
  background: #c1d7ff;
}

.dashboard-table th {
  padding: 12px !important;
}

.dashboard-table th:first-child {
  border-top-left-radius: 0.5rem;
}

.dashboard-table th:last-child {
  border-top-right-radius: 0.5rem;
}

.dashboard-table tr:hover {
  background: #eff4ff;
  cursor: pointer;
}

.swal2-confirm.swal2-styled {
  background-color: rgba(var(--bs-primary-rgb), 0.9) !important;
  border-color: rgba(var(--bs-primary-rgb), 0.9) !important;
  color: #fff !important;
}
.swal2-styled.swal2-confirm:focus {
  box-shadow: none !important;
}

.swal2-icon.swal2-warning {
  border-color: rgba(var(--bs-primary-rgb)) !important;
  color: rgba(var(--bs-primary-rgb)) !important;
}

.todo-edit-icon {
  display: none;
}

.todo-edit-icon svg {
  font-size: 14px;
}

.list-group.list-group-flush .list-group-item:hover .todo-edit-icon {
  display: inline;
}

.view-all-list {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.chat-conversation-list .user-chat .accordion .accordion-body ul {
  height: 200px;
  min-height: 250px;
  overflow-y: auto;
}

.chat-conversation-list .user-chat .accordion .accordion-body {
  min-height: 376px;
}

.nav-li-title {
  font-size: 11px;
  /* margin-top: -35px; */
  color: rgba(0, 0, 0, 0.4);
  /*font-weight: bold;*/
}

.dashboard-header {
  padding: 15px 24px;
}

.dashboard-header span {
  font-weight: 500;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
}

.font-weight-bold {
  font-weight: 500;
}

.text-grey {
  color: grey;
}

.welcome-div {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 20px;
  border-radius: 8px;
  background: var(--primary-color);
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
  color: white;
  padding: 20px;
}

.welcome-div p {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.welcome-div img {
  width: 30px;
}

.dashboard-sections {
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
}

.dashboard-sections .header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-sections .header p {
  font-weight: bold;
}

.dashboard-sections table {
  width: 100%;
}

table thead {
  background: var(--secondary-color);
  padding: 10px 14px;
  color: var(--primary-color);
}

table th,
table td {
  padding: 10px !important;
}

tbody tr {
  border-bottom: 1px solid #ddd !important;
}

tbody tr:last-child {
  border-bottom: 0px !important;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: white;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0px !important;
}
.dashboard-sections .channels-div {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 10px;
}

.dashboard-sections .channels-div p {
  margin: 0;
  font-weight: bold;
  color: #495057;
}

.btn.btn-primary {
  border-radius: 8px !important;
  background: var(--primary-color) !important;
  border: 0 !important;
}

input,
select,
textarea {
  border-radius: 8px !important;
  border: 0.2px solid rgba(0, 0, 0, 0.4) !important;
  background: #fff !important;
}

.dashboard-sections a {
  font-weight: bold;
  font-size: 12px;
}

.Hightlight-date {
  color: var(--primary-color) !important;
  font-weight: bold;
  font-size: 16px !important;
}

.text-light-grey {
  color: rgba(0, 0, 0, 0.4) !important;
}

.cursor-pointer {
  cursor: pointer;
}

.chat-list li.active a {
  background-color: var(--primary-color) !important;
}

.chat-leftsidebar {
  background-color: var(--secondary-color);
}

.employe-report-header {
  background: var(--secondary-color);
  padding: 20px 32px;
  z-index: 9 !important;
  position: relative;
}

.employe-report-header h4 {
  font-weight: 500;
  color: black;
  margin: 0;
}

#serachChatUser {
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

.table > :not(caption) > * > * {
  border-bottom-width: 0px !important;
}

.custom-scroll-bar::-webkit-scrollbar {
  display: none;
}

.feedback-group-items {
  border-radius: 8px !important;
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
}

.accordion-button:not(.collapsed) {
  background-color: var(--secondary-color);
}

.feedback-group-items p {
  color: var(--primary-color);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
}

.feedback-group-items span {
  color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.theme-color {
  color: var(--primary-color) !important;
}

.checklist-ul li {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
  padding: 10px 20px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .nav-li-title {
    display: none;
  }
  .side-menu {
    border: none !important;
  }
}
.radius-0{
  border-radius: unset !important;
}