@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
:root {
  --font: "Manrope", sans-serif;
  --bgColor: #F3F3F9;
  --titleColor: #000000;
  --subTitle: #71767D;
  --borderColor: #E8E8E9;
  --pirmaryColor: #2475EF;
  --primaryHoverColor: #1d62c9;
  --secondaryColor: #000;
  --secondaryHoverColor: #202020;
  --btnSuccess: #00bd79;
  --btnSuccessHoverColor: #03ad6e;
  --btnWarning: #f2c200;
  --btnWarningHoverColor: #d6ac00;
  --btnDanger: #FF666C;
  --btnDangerHoverColor: #cf4b4f;
  --btnInfo: #25a0e2;
  --btnInfoHoverColor: #1f88c0;
  --sidebarColor: #101010;
  --sidebarMenuColor: #797979;
  --sidebarMenuActiveColor: #FFF;
}

/*--- Reset Css ---*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a, a:focus, a:hover {
  text-decoration: none;
  outline: none;
  transition: all 0.3s;
}

input:focus {
  outline: none;
  box-shadow: none;
}

body,
html {
  height: 100%;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--font);
  font-optical-sizing: auto;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}

::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 5px;
}

::-webkit-scrollbar-track {
  padding: 0;
  background: rgba(0, 0, 0, 0);
}

:-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: rgba(0, 0, 0, 0);
}

h1 {
  font-size: clamp(2.8rem, 3vw, 3.4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(2.2rem, 3vw, 2.4rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.8rem, 3vw, 2rem);
  font-weight: 700;
}

h5 {
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  font-weight: 700;
}

h6 {
  font-size: clamp(1.4rem, 3vw, 1.4rem);
  font-weight: 700;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.btn {
  outline: 0;
  outline-offset: 0;
  border: 0;
  border-radius: 2px;
  text-transform: uppercase;
  transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
}
.btn:focus, .btn:active, .btn.active, .btn:active:focus, .btn.active:focus {
  outline: 0;
  outline-offset: 0;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

.btn-primary {
  background: var(--pirmaryColor);
  color: #FFF;
  border: none;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary svg, .btn-primary i {
  margin-right: 1.5rem;
  font-size: 2rem;
}
.btn-primary:active {
  background: var(--primaryHoverColor);
  color: #FFF;
}
.btn-primary:active:focus-visible {
  background: var(--primaryHoverColor);
}
.btn-primary:hover {
  background: var(--primaryHoverColor);
  color: #FFF;
}
.btn-primary:focus, .btn-primary:focus-visible, .btn-primary:active {
  background: var(--primaryHoverColor);
  color: #FFF;
}

.btn-secondary {
  background: rgba(36, 117, 239, 0.1);
  color: var(--pirmaryColor) !important;
  border: none;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-secondary svg, .btn-secondary i {
  margin-right: 1.5rem;
  font-size: 2rem;
}
.btn-secondary:active {
  background: var(--pirmaryColor);
  color: #FFF !important;
}
.btn-secondary:active:focus-visible {
  background: var(--pirmaryColor);
}
.btn-secondary:hover {
  background: var(--pirmaryColor);
  color: #FFF !important;
}
.btn-secondary:focus, .btn-secondary:focus-visible, .btn-secondary:active {
  background: var(--pirmaryColor);
  color: #FFF !important;
}

.btn-success {
  background: var(--btnSuccess);
  color: #FFF;
  border: none;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-success svg, .btn-success i {
  margin-right: 1.5rem;
  font-size: 2rem;
}
.btn-success:active {
  background: var(--btnSuccessHoverColor);
  color: #FFF;
}
.btn-success:active:focus-visible {
  background: var(--btnSuccessHoverColor);
}
.btn-success:hover {
  background: var(--btnSuccessHoverColor);
  color: #FFF;
}
.btn-success:focus, .btn-success:focus-visible, .btn-success:active {
  background: var(--btnSuccessHoverColor);
  color: #FFF;
}

.btn-danger {
  background: var(--btnDanger);
  color: #FFF;
  border: none;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-danger svg, .btn-danger i {
  margin-right: 1.5rem;
  font-size: 2rem;
}
.btn-danger:active {
  background: var(--btnDangerHoverColor);
  color: #FFF;
}
.btn-danger:active:focus-visible {
  background: var(--btnDangerHoverColor);
}
.btn-danger:hover {
  background: var(--btnDangerHoverColor);
  color: #FFF;
}
.btn-danger:focus, .btn-danger:focus-visible, .btn-danger:active {
  background: var(--btnDangerHoverColor);
  color: #FFF;
}

.btn-warning {
  background: var(--btnWarning);
  color: #FFF;
  border: none;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-warning svg, .btn-warning i {
  margin-right: 1.5rem;
  font-size: 2rem;
}
.btn-warning:active {
  background: var(--btnWarningHoverColor) !important;
  color: #FFF !important;
}
.btn-warning:active:focus-visible {
  background: var(--btnWarningHoverColor);
}
.btn-warning:hover {
  background: var(--btnWarningHoverColor);
  color: #FFF;
}
.btn-warning:focus, .btn-warning:focus-visible, .btn-warning:active {
  background: var(--btnWarningHoverColor) !important;
  color: #FFF !important;
}

.btn-outline {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem 2rem;
  color: var(--pirmaryColor);
  border: solid 1px var(--pirmaryColor);
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-outline svg, .btn-outline i {
  margin-right: 1.5rem;
  font-size: 2rem;
}
.btn-outline:hover {
  background: var(--pirmaryColor);
  color: #FFF;
}

.btn-link {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem;
  color: var(--pirmaryColor);
  border: none;
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.btn-link svg, .btn-link i {
  margin-right: 1.5rem;
  font-size: 2rem;
}
.btn-link:hover {
  background: rgba(36, 117, 239, 0.1);
  color: var(--pirmaryColor);
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
  color: #FFF !important;
}

.btn-lg {
  font-size: 1.5rem;
  padding: 1.5rem 2.5rem !important;
}

.btn-sm {
  padding: 0.8rem 1.5rem !important;
  font-size: 1.3rem;
  border-radius: 0.6rem;
}
.btn-sm i {
  font-size: 1.4rem;
  margin-right: 1rem;
}

.form-floating {
  position: relative;
}
.form-floating .icon {
  position: absolute;
  right: 15px;
  top: 16px;
  height: 25px;
  display: flex;
  align-items: center;
  font-size: 2rem;
  cursor: pointer;
}
.form-floating.icon-view .form-control {
  padding-right: 5rem;
}

.form-control:focus {
  box-shadow: none;
}

.form-control:disabled {
  --bs-secondary-bg: #f1f4f7;
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}

.form-floating > .form-control:disabled ~ label::after, .form-floating > :disabled ~ label::after {
  --bs-secondary-bg: #f1f4f7;
  background: var(--bs-secondary-bg);
}

.form-floating > .form-control, .form-floating > .form-control-plaintext, .form-floating > .form-select {
  height: calc(5.5rem + var(--bs-border-width) * 2);
  min-height: calc(5.5rem + var(--bs-border-width) * 2);
  line-height: 1.25;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  height: calc(5.5rem + var(--bs-border-width) * 2);
  min-height: calc(5.5rem + var(--bs-border-width) * 2);
  line-height: 1.25;
}

.form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
  height: calc(5.5rem + var(--bs-border-width) * 2);
  min-height: calc(5.5rem + var(--bs-border-width) * 2);
  line-height: 1.25;
}

.form-control {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  border-radius: 0.6rem;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #000;
}

.select2-container .select2-search--inline .select2-search__field::-moz-placeholder {
  color: #000;
  font-weight: 500;
}

.select2-container .select2-search--inline .select2-search__field::placeholder {
  color: #000;
  font-weight: 500;
}

.form-select {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  border-radius: 0.6rem;
}

.form-floating > .form-select {
  padding: 2.5rem 1.5rem 0.625rem 1.5rem;
}

.form-floating > label {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  font-size: 1.4rem;
}

.form-floating > .form-control-plaintext:not(:-moz-placeholder-shown), .form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 2.5rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control-plaintext:focus, .form-floating > .form-control-plaintext:not(:placeholder-shown), .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 2.5rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  transform: scale(0.9) translateY(-1.2rem) translateX(0.15rem);
  padding: 1rem 1.5rem;
}

.form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
  transform: scale(0.9) translateY(-1.2rem) translateX(0.15rem);
  padding: 1rem 1.5rem;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label::after {
  top: 14px;
}

.form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-select ~ label::after {
  top: 14px;
}

.form-floating > .form-control, .form-floating > .form-control-plaintext {
  padding: 1.5rem;
}

.form-floating > .form-control, .form-floating > .form-control-plaintext, .form-floating > .form-select {
  height: calc(5.5rem + var(--bs-border-width) * 2);
  min-height: calc(5.5rem + var(--bs-border-width) * 2);
  line-height: 1.25;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-check-input {
  width: 1.2em;
  height: 1.2em;
  margin: 0;
}

.form-check-input:focus {
  box-shadow: none;
}

.form-check-label {
  font-size: 1.4rem;
  font-weight: 600;
}

.animation {
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.slideDownIn {
  animation-name: slideDownIn;
}

@keyframes slideDownIn {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
  0% {
    transform: translateY(10px);
  }
}
.select2-container {
  width: 100% !important;
  height: calc(5.5rem + var(--bs-border-width) * 2);
}

.select2-container--default .select2-selection--multiple {
  --bs-border-width: 1px;
  border: 1px solid #dee2e6;
  border-radius: 0.8rem !important;
  padding-top: 2.5rem;
  padding-bottom: 0.625rem;
  padding-left: 0.9rem;
  padding-right: 1.5rem;
  min-height: calc(5.5rem + var(--bs-border-width) * 2) !important;
  overflow-y: auto;
  overflow-x: hidden;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #dee2e6;
}

.select2-dropdown {
  border: 1px solid #dee2e6;
}

.select2-results__option {
  font-size: 1.4rem;
  padding: 1rem;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background: #e5e9f6;
  color: #000;
  font-size: 1.4rem;
  border-color: #d2d5df;
  padding: 0.5rem 0.5rem 0.5rem 2rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  height: 25px;
  font-size: 1.5rem;
  border-right: 1px solid #d2d5df;
}

.select2-container .select2-search--inline .select2-search__field {
  height: 21px;
  font-size: 1.5rem;
  font-weight: 500;
}

.select2-container--default .select2-selection--single {
  border: 1px solid #dee2e6;
  border-radius: 0.6rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  height: 55px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 32px;
  color: #000;
  font-weight: 600;
  text-align: left;
  padding-left: 15px;
  top: 22px;
  position: absolute;
  width: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-size: 16px 12px;
  width: 13px;
  height: 13px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #dee2e6;
  border-radius: 0.4rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 12px;
  right: 5px;
  width: 20px;
}

.select2-results__option {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: left;
}

.select2-dropdown {
  border-radius: 0.6rem;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.auth-wrapper {
  display: flex;
  height: 100dvh;
}
.auth-wrapper .auth-left {
  flex: 0 0 60%;
  height: 100%;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.auth-wrapper .auth-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.auth-wrapper .auth-form-wrapper {
  margin: 0 auto;
  flex: 1;
  max-width: 45rem;
}
.auth-wrapper .auth-form-wrapper > a {
  display: block;
  margin-bottom: 5rem;
  text-align: center;
}
.auth-wrapper .auth-right {
  flex: 0 0 40%;
  padding: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-wrapper .auth-right h3 {
  font-size: clamp(1.8rem, 2.5vw, 1.8rem);
  margin-bottom: 2.5rem;
  font-weight: 700;
}
.auth-wrapper .auth-right .auth-external a {
  border: solid 1px var(--borderColor);
  padding: 1rem;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
}
.auth-wrapper .auth-right .auth-external a svg {
  margin-right: 1.5rem;
}
.auth-wrapper .auth-right p {
  font-size: 1.4rem;
}
.auth-wrapper .auth-right p a {
  color: #000;
  font-weight: 600;
}

.or {
  position: relative;
  border-top: solid 1px var(--borderColor);
  margin: 3.5rem 0;
}
.or::after {
  content: "OR";
  width: 100%;
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  font-size: 1.4rem;
  color: #848484;
  background: #FFF;
  display: block;
  padding: 1rem;
  max-width: -moz-max-content;
  max-width: max-content;
  z-index: 1;
  font-weight: 400;
}

.md-wrapper {
  display: flex;
  align-items: flex-start;
}

.md-sidebar-wrapper {
  background: var(--sidebarColor);
  flex: 0 0 6.5rem;
  height: 100vh;
  transition: all 0.3s ease;
  position: relative;
  z-index: 99;
}
.md-sidebar-wrapper .md-brand {
  margin: 0 auto;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.md-sidebar-wrapper .md-brand-icon {
  display: none;
  text-align: center;
}
.md-sidebar-wrapper .md-menu ul li {
  margin: 0 1rem 0.5rem 1rem;
  border-radius: 0.8rem;
  position: relative;
}
.md-sidebar-wrapper .md-menu ul li a {
  display: flex;
  padding: 1rem 2rem;
  align-items: center;
  gap: 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--sidebarMenuColor);
}
.md-sidebar-wrapper .md-menu ul li a svg {
  width: 2rem;
}
.md-sidebar-wrapper .md-menu ul li a:hover {
  color: var(--sidebarMenuActiveColor);
}
.md-sidebar-wrapper .md-menu ul li a:hover span {
  z-index: 9;
  left: 62px;
  opacity: 1;
  transition: ease 0.3s all;
  display: block;
}
.md-sidebar-wrapper .md-menu ul li a:hover:before {
  opacity: 1;
  left: 62px;
  z-index: 9;
  transition: ease 0.3s all;
}
.md-sidebar-wrapper .md-menu ul li a span {
  position: absolute;
  top: 10px;
  left: 55px;
  opacity: 0;
  display: none;
  white-space: nowrap;
  background: #000000;
  padding: 0.4rem 0.6rem;
  font-size: 1.2rem;
  border-radius: 0.3rem;
  color: #FFF;
  z-index: -1;
  transition: ease 0.3s all;
}
.md-sidebar-wrapper .md-menu ul li a span::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 5px;
  display: block;
  width: 1px;
  height: 1px;
  border-right: solid 5px #000;
  border-bottom: solid 5px transparent;
  border-top: solid 5px transparent;
}
.md-sidebar-wrapper .md-menu ul li.active {
  background: var(--pirmaryColor);
}
.md-sidebar-wrapper .md-menu ul li.active a {
  color: #FFF;
}
.md-sidebar-wrapper.collapsed {
  flex: 0 0 6.5rem;
  transition: all 0.3s ease;
}
.md-sidebar-wrapper.collapsed .md-brand {
  padding: 1rem;
}
.md-sidebar-wrapper.collapsed .md-brand-full {
  display: none;
}
.md-sidebar-wrapper.collapsed .md-brand-icon {
  display: block;
}
.md-sidebar-wrapper.collapsed .md-menu ul li a {
  padding: 1rem 1rem;
  justify-content: center;
}

body[data-sidebar=sm] .md-sidebar-wrapper {
  flex: 0 0 6.5rem;
  transition: all 0.3s ease;
}
body[data-sidebar=sm] .md-sidebar-wrapper .md-brand {
  padding: 1rem;
}
body[data-sidebar=sm] .md-sidebar-wrapper .md-brand-full {
  display: none;
}
body[data-sidebar=sm] .md-sidebar-wrapper .md-brand-icon {
  display: block;
}
body[data-sidebar=sm] .md-sidebar-wrapper .md-menu ul li a {
  padding: 1.2rem 1rem;
  justify-content: center;
}
body[data-sidebar=sm] .md-sidebar-wrapper .md-menu ul li a i {
  font-size: 2rem;
  color: #FFF;
}

body[data-sidebar=xs] .md-sidebar-wrapper {
  flex: 0 0 25rem;
  transition: all 0.3s ease;
  margin-left: -25rem;
}

.toggle-sidebar {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-right: 1rem;
  display: none;
}
.toggle-sidebar:active, .toggle-sidebar:focus, .toggle-sidebar:hover {
  background: rgba(36, 117, 239, 0.1);
}

.md-content-wrapper {
  flex: 1;
  width: calc(100% - 6.5rem);
}

.md-title-wrapper {
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px var(--borderColor);
}

.md-header-right {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
.md-header-right a {
  display: block;
  position: relative;
  padding: 1rem;
}
.md-header-right a i {
  color: #000;
}
.md-header-right i {
  font-size: 2rem;
}
.md-header-right .dropdown-menu.show {
  margin-top: 55px !important;
}

.md-logged-in {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.md-logged-in img {
  width: 4rem;
}
.md-logged-in p {
  text-align: left;
  display: block;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--subTitle);
}
.md-logged-in strong {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
  display: block;
  text-align: left;
}
.md-logged-in .md-customer-avatar {
  width: 4rem;
  height: 4rem;
}

.online::after {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid #FFF;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 30px;
  background: #00BD79;
}

.offline::after {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid #FFF;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 30px;
  background: #838383;
}

.dropdown-toggle {
  border: solid 2px transparent;
  background: transparent;
}
.dropdown-toggle::after {
  display: none;
}
.dropdown-toggle:active, .dropdown-toggle:focus, .dropdown-toggle:active {
  border: solid 2px transparent;
}

.dropdown-menu {
  min-width: 18rem;
  border: none;
  border-radius: 0.6rem;
  overflow: hidden;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  transition: all 0.3s ease;
}
.dropdown-menu .dropdown-item {
  padding: 1rem 1.5rem;
  font-size: 1.4em;
  font-weight: 500;
}
.dropdown-menu .dropdown-item svg {
  width: 2rem;
  margin-right: 0.5rem;
  color: #000;
}
.dropdown-menu .dropdown-item.active, .dropdown-menu .dropdown-item:active, .dropdown-menu .dropdown-item:hover {
  background: var(--pirmaryColor);
  color: #FFF;
}
.dropdown-menu .dropdown-item.active svg, .dropdown-menu .dropdown-item:active svg, .dropdown-menu .dropdown-item:hover svg {
  color: #FFF;
  opacity: 1;
}

.md-filter-wrapper {
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px var(--borderColor);
  align-items: center;
}
.md-filter-wrapper .md-right-filter {
  display: flex;
  gap: 1rem;
}
.md-filter-wrapper .md-right-filter .form-control {
  height: 3.8rem;
  font-size: 1.4rem;
  width: 15rem;
}
.md-filter-wrapper .md-right-filter .form-select {
  height: 3.8rem;
  font-size: 1.4rem;
  width: 15rem;
  text-overflow: ellipsis;
}
.md-filter-wrapper .nav-tabs {
  border: none;
}
.md-filter-wrapper .nav-tabs .nav-link {
  font-size: 1.4rem;
  letter-spacing: 0.2px;
  font-weight: 600;
  color: #595e66;
  padding: 1rem;
  border: none;
  border-radius: 0.6rem;
}
.md-filter-wrapper .nav-tabs .nav-link.active {
  color: var(--pirmaryColor);
  background: rgba(36, 117, 239, 0.1);
}
.md-filter-wrapper .select2-container {
  width: 200px !important;
  height: 3.8rem;
}
.md-filter-wrapper .select2-container--default .select2-selection--single {
  height: 38px !important;
  font-size: 1.4rem !important;
}
.md-filter-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
  top: 3px;
  font-size: 1.4rem !important;
}
.md-filter-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 4px;
}

.md-table-pagination {
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.md-table-pagination .pagination .page-item .page-link {
  font-size: 1.3rem;
  padding: 1rem;
  color: var(--pirmaryColor);
}
.md-table-pagination .pagination .page-item .page-link:hover {
  background: rgba(36, 117, 239, 0.1);
  color: var(--pirmaryColor);
}

.active > .page-link, .page-link.active {
  color: #FFF !important;
  background: var(--pirmaryColor);
}

.page-item:first-child .page-link {
  --bs-pagination-border-radius: .6rem;
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}

.datepicker-wrapper {
  position: relative;
}
.datepicker-wrapper .form-control {
  padding-right: 3rem;
}
.datepicker-wrapper::after {
  content: "\f133";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.6rem;
  color: #757575;
}

.search-wrapper {
  position: relative;
}
.search-wrapper .form-control {
  padding-right: 3rem;
}
.search-wrapper::after {
  content: "\f002";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.6rem;
  color: #757575;
}

.md-table-wrapper .dt-container {
  width: calc(100% - 0px);
}
.md-table-wrapper div.dt-scroll-body {
  height: calc(100vh - 216px);
}
.md-table-wrapper.full-height-wrapper div.dt-scroll-body {
  height: calc(100vh - 100px);
}

.table {
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 1rem;
  margin: 0;
}
.table thead tr td {
  padding: 1.5rem 1.5rem;
  font-weight: 600;
  border-bottom: solid 1px #f3f3f3;
  border-right: solid 1px #f3f3f3;
  white-space: nowrap;
  font-size: 1.3rem;
}
.table thead tr td:last-child {
  border-right: none;
}
.table tbody tr td {
  font-size: 1.3rem;
  padding: 1rem 1.5rem;
  font-weight: 500;
  color: #404040;
  border-bottom: solid 1px #f3f3f3;
  white-space: nowrap;
  vertical-align: middle;
}
.table tbody tr td a {
  color: #000;
  font-weight: 600;
}
.table tbody tr td .md-customer .data h6 {
  font-size: 1.3rem;
  font-weight: 700;
}
.table tbody tr.selected .md-customer h6 {
  color: #FFF;
}
.table tbody tr.selected .md-customer p {
  color: #ebebeb;
}
.table tbody tr.selected .btn-link {
  color: #FFF;
}
.table.table-lg tbody tr td {
  padding: 1.5rem;
}

table.table.dataTable {
  width: 100% !important;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-emphasis-color-rgb: #FAFAFC;
  --bs-emphasis-color: #000;
  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-emphasis-color: #000;
  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.03);
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

table.table.dataTable.table-striped > tbody > tr:nth-of-type(2n+1) > * {
  box-shadow: none;
  background: #fafafc;
}

table.dataTable thead > tr > th.dt-orderable-asc,
table.dataTable thead > tr > th.dt-orderable-desc,
table.dataTable thead > tr > th.dt-ordering-asc,
table.dataTable thead > tr > th.dt-ordering-desc,
table.dataTable thead > tr > td.dt-orderable-asc,
table.dataTable thead > tr > td.dt-orderable-desc,
table.dataTable thead > tr > td.dt-ordering-asc,
table.dataTable thead > tr > td.dt-ordering-desc {
  padding-right: 45px;
}

table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order,
table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order,
table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order,
table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order,
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order,
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order,
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order,
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order {
  right: 20px;
}

table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before {
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='15' width='15' viewBox='0 0 448 512'><path d='M207 143c9.4-9.4 24.6-9.4 33.9 0L401 303c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-143-143L81 337c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L207 143z'/></svg>") !important;
}

table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='15' width='15' viewBox='0 0 448 512'><path d='M241 337c-9.4 9.4-24.6 9.4-33.9 0L47 177c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l143 143L367 143c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L241 337z'/></svg>") !important;
}

table.dataTable thead > tr > th.dt-orderable-asc:hover,
table.dataTable thead > tr > th.dt-orderable-desc:hover,
table.dataTable thead > tr > td.dt-orderable-asc:hover,
table.dataTable thead > tr > td.dt-orderable-desc:hover {
  box-shadow: none;
  outline: none;
}

table.dataTable th.dt-type-numeric,
table.dataTable th.dt-type-date,
table.dataTable td.dt-type-numeric,
table.dataTable td.dt-type-date {
  text-align: left;
}

.dt-container .mt-2 {
  margin-top: 0 !important;
}

.md-customer-avatar {
  display: flex;
  width: 3.8rem;
  height: 3.8rem;
  flex: 0 0 3.8rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: #eff0f7;
  color: #93949e;
  font-weight: 800;
  position: relative;
  font-size: 1.3rem;
  text-transform: uppercase;
}
.md-customer-avatar.big {
  width: 4rem;
  flex: 0 0 4rem;
  height: 4rem;
}

.md-customer h6 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--titleColor);
}
.md-customer h6:not(:last-child) {
  margin-bottom: 0.5rem;
}
.md-customer p {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--subTitle);
  display: flex;
  align-items: center;
}
.md-customer p i {
  margin-right: 0.5rem;
}
.md-customer p:not(:last-child) {
  margin-bottom: 0.5rem;
}
.md-customer.pill {
  border: solid 1px var(--borderColor);
  padding: 0.5rem 1.2rem 0.5rem 0.5rem;
  border-radius: 5rem;
  align-items: center;
}

.md-details {
  font-weight: 600;
}
.md-details p {
  font-size: 1.3rem;
}
.md-details p i {
  font-size: 1.5rem;
  margin-right: 1rem;
  opacity: 0.7;
}
.md-details p:not(:last-child) {
  margin-bottom: 1rem;
}

.badge {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.1rem;
  line-height: 1rem;
}
.badge.text-bg-secondary:hover {
  background-color: var(--pirmaryColor) !important;
}

.hot-lead {
  background: #FF666C;
}

.cold-lead, .inactive {
  background: #FFCA00;
}

.nutral-lead {
  background: #4D587D;
}

.badge-processing, .badge-request_received {
  color: #FFF;
  background-color: #4D587D;
}

.badge-processing, .badge-in_transit, .badge-booking_pending {
  color: #FFF;
  background-color: #4D587D;
}

.badge-booking_confirmed, .badge-low {
  color: #FFF;
  background-color: #00bd9d;
}
.badge-booking_confirmed.soft, .badge-low.soft {
  color: #00bd9d !important;
  background-color: rgba(0, 189, 157, 0.1) !important;
}

.badge-on-duty {
  color: #FFF;
  background-color: #0091F3;
}

.badge-check-in {
  color: #FFF;
  background-color: #00BD79;
}

.badge-off-duty {
  color: #FFF;
  background-color: #5E5E5E;
}

.badge-sdesign, .badge-awb_gen, .badge-inprogress, .badge-inprogress {
  color: #FFF;
  background-color: #FF8B16;
}

.badge-cancelled, .badge-manager_approval, .badge-unpaid, .badge-booking_cancelled, .bg-danger, .badge-manager_approval, .badge-off-week, .badge-check-out {
  color: #FFF;
  background-color: #FF666C;
}

.badge-sapproval, .badge-booking_home_visited, .badge-home_visited, .badge-home_visited {
  color: #FFF;
  background-color: #44A7FF;
}

.badge-sproduction, .badge-pending, .badge-booking_scheduled, .badge-waiting, .badge-pending {
  color: #FFF;
  background-color: #FFCA00;
}

.badge-ready {
  color: #FFF;
  background-color: #7E8CFF;
}

.badge-shipped, .badge-upload_images {
  color: #FFF;
  background-color: #FF68B9;
}

.badge-delivered, .badge-completed, .badge-installation_completed, .badge-paid, .badge-booking_order_placed, .badge-accepted {
  color: #FFF;
  background-color: #00bd9d;
}

.badge-wating_for_production, .badge-booking_closed_online {
  color: #FFF;
  background-color: #CA81FF;
}

.badge-refunded {
  color: #FFF;
  background-color: #743235;
}

.failed-booking, .cancelled-order {
  background: rgba(255, 102, 108, 0.1);
}
.failed-booking:not(.collapsed), .cancelled-order:not(.collapsed) {
  background: rgba(255, 102, 108, 0.1);
}

.active-booking, .active-order {
  background: rgba(0, 155, 129, 0.1);
}
.active-booking:not(.collapsed), .active-order:not(.collapsed) {
  background: rgba(0, 189, 157, 0.1);
}

.pending-booking, .pending-order {
  background: rgba(255, 202, 0, 0.1);
}
.pending-booking:not(.collapsed), .pending-order:not(.collapsed) {
  background: rgba(255, 202, 0, 0.1);
}

.processing-booking, .processing-order {
  background: rgba(97, 104, 103, 0.05);
}
.processing-booking:not(.collapsed), .processing-order:not(.collapsed) {
  background: rgba(97, 104, 103, 0.05);
}

.completed-booking, .completed-order {
  background: white;
  border: solid 1px var(--borderColor);
}
.completed-booking:not(.collapsed), .completed-order:not(.collapsed) {
  background: white;
  border: solid 1px var(--borderColor);
}

/*---- Roles Colors ----*/
.bg-mdcrm_customer_chat {
  background: rgba(0, 189, 121, 0.2);
  color: #00BD79;
}

.bg-mdcrm_design_consultant {
  background: rgba(255, 139, 22, 0.2);
  color: #FF8B16;
}

.bg-mdcrm_support_general {
  background: rgba(255, 102, 108, 0.2);
  color: #FF666C;
}

.bg-mdcrm_support_installations {
  background: rgba(112, 71, 118, 0.2);
  color: #704776;
}

.bg-mdcrm_manager {
  background: rgba(77, 88, 125, 0.2);
  color: #4D587D;
}

.bg-mdcrm_design_production, .bg-pending {
  background: rgba(255, 202, 0, 0.2);
  color: #FFCA00;
}

.bg-mdcrm_support_installations {
  background: rgba(126, 140, 255, 0.2);
  color: #7E8CFF;
}

.bg-mdcrm_admin {
  background: rgba(255, 104, 185, 0.2);
  color: #FF68B9;
}

.bg-mdcrm_norole {
  background: rgba(0, 0, 0, 0.2);
  color: #000;
}

.bg-mdcrm_influencer {
  background: rgba(137, 13, 220, 0.2);
  color: #890ddc;
}

.bg-mdcrm_customer_relations_sales {
  background: rgba(0, 145, 243, 0.2);
  color: #0091F3;
}

.bg-mdcrm_hv_maharashtra, .bg-mdcrm_hv_hyderabad, .bg-mdcrm_hv_karnataka {
  background: rgba(116, 50, 53, 0.2);
  color: #743235;
}

.bg-mdcrm_customer_relations_voice {
  background: rgba(0, 15, 185, 0.2);
  color: #000fb9;
}

.chat-yes {
  background: #00bd9d;
  color: #FFF;
}

.chat-no {
  background: rgba(255, 102, 108, 0.2);
  color: #FF666C;
}

/*-------*/
.tooltip {
  font-size: 1.2rem;
}

.new-lead, .active-status {
  background: #00bd9d;
}

.action-buttons {
  display: flex;
  gap: 1.5rem;
}
.action-buttons .btn-round {
  border-radius: 5rem;
  padding: 1.2rem !important;
}
.action-buttons .btn-round i {
  margin: 0;
  font-size: 1.5rem;
}

.cursor-pointer {
  cursor: pointer;
}

.md-order-wrapper {
  background: #f4f6fa;
  height: calc(100vh - 13.4rem);
  padding: 1rem;
  overflow: auto;
  display: flex;
}
.md-order-wrapper .md-order-details {
  background: #FFF;
  padding: 1rem;
  margin-right: 1rem;
  border-radius: 0.8rem;
  flex: 0 0 35rem;
  width: 35rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.md-order-wrapper .md-order-stats {
  background: #FFF;
  padding: 1rem;
  border-radius: 0.8rem;
  width: calc(100% - 35rem);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

/* From Uiverse.io by Galahhad */
.switch {
  /* switch */
  --switch-width: 46px;
  --switch-height: 24px;
  --switch-bg: rgb(131, 131, 131);
  --switch-checked-bg: rgb(0, 218, 80);
  --switch-offset: calc((var(--switch-height) - var(--circle-diameter)) / 2);
  --switch-transition: all .2s cubic-bezier(0.27, 0.2, 0.25, 1.51);
  /* circle */
  --circle-diameter: 18px;
  --circle-bg: #fff;
  --circle-shadow: 1px 1px 2px rgba(146, 146, 146, 0.45);
  --circle-checked-shadow: -1px 1px 2px rgba(163, 163, 163, 0.45);
  --circle-transition: var(--switch-transition);
  /* icon */
  --icon-transition: all .2s cubic-bezier(0.27, 0.2, 0.25, 1.51);
  --icon-cross-color: var(--switch-bg);
  --icon-cross-size: 6px;
  --icon-checkmark-color: var(--switch-checked-bg);
  --icon-checkmark-size: 10px;
  /* effect line */
  --effect-width: calc(var(--circle-diameter) / 2);
  --effect-height: calc(var(--effect-width) / 2 - 1px);
  --effect-bg: var(--circle-bg);
  --effect-border-radius: 1px;
  --effect-transition: all .2s ease-in-out;
}

.switch input {
  display: none;
}

.switch {
  display: flex;
  align-items: center;
}

.switch svg {
  transition: var(--icon-transition);
  position: absolute;
  height: auto;
}

.switch .checkmark {
  width: var(--icon-checkmark-size);
  color: var(--icon-checkmark-color);
  transform: scale(0);
}

.switch .cross {
  width: var(--icon-cross-size);
  color: var(--icon-cross-color);
}

.slider {
  box-sizing: border-box;
  width: var(--switch-width);
  height: var(--switch-height);
  background: var(--switch-bg);
  border-radius: 999px;
  display: flex;
  align-items: center;
  position: relative;
  transition: var(--switch-transition);
  cursor: pointer;
}

.circle {
  width: var(--circle-diameter);
  height: var(--circle-diameter);
  background: var(--circle-bg);
  border-radius: inherit;
  box-shadow: var(--circle-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--circle-transition);
  z-index: 1;
  position: absolute;
  left: var(--switch-offset);
}

.slider::before {
  content: "";
  position: absolute;
  width: var(--effect-width);
  height: var(--effect-height);
  left: calc(var(--switch-offset) + var(--effect-width) / 2);
  background: var(--effect-bg);
  border-radius: var(--effect-border-radius);
  transition: var(--effect-transition);
}

/* actions */
.switch input:checked + .slider {
  background: var(--switch-checked-bg);
}

.switch input:checked + .slider .checkmark {
  transform: scale(1);
}

.switch input:checked + .slider .cross {
  transform: scale(0);
}

.switch input:checked + .slider::before {
  left: calc(100% - var(--effect-width) - var(--effect-width) / 2 - var(--switch-offset));
}

.switch input:checked + .slider .circle {
  left: calc(100% - var(--circle-diameter) - var(--switch-offset));
  box-shadow: var(--circle-checked-shadow);
}

.md-dashboard-wrapper {
  padding: 1.5rem;
  width: calc(100% - 0px);
  height: calc(100vh - 58px);
  overflow-y: auto;
}

.chats-wrapper {
  width: calc(100% - 0px);
  height: calc(100vh - 58px);
  overflow-y: auto;
}

.md-scroll-wrapper {
  padding: 0rem;
  width: calc(100% - 0px);
  height: calc(100vh - 116px);
  overflow-y: auto;
  overflow-x: hidden;
}
.md-scroll-wrapper .md-table-wrapper div.dt-scroll-body {
  height: auto;
}

.md-kpi-wrapper .md-kpi {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 0.8rem;
  border: 1px solid var(--borderColor);
  margin-bottom: 1.5rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 12px;
}
.md-kpi-wrapper .md-kpi .icon {
  padding: 0.8rem;
  border-radius: 1rem;
  background: rgba(36, 117, 239, 0.1);
}
.md-kpi-wrapper .md-kpi .icon i {
  font-size: 2.2rem;
  color: var(--pirmaryColor);
}
.md-kpi-wrapper .md-kpi p {
  font-size: 1.3rem;
  color: #8c8c8c;
  margin-top: 1rem;
  font-weight: 600;
}
.md-kpi-wrapper .md-kpi h4 {
  font-size: 1.8rem;
  letter-spacing: 0.2px;
  color: #000;
}
.md-kpi-wrapper .md-kpi h4 a {
  color: var(--titleColor);
}
.md-kpi-wrapper .md-kpi h4 a:hover {
  color: var(--pirmaryColor);
}

.card {
  border: solid 1px var(--borderColor);
  border-radius: 0.8rem;
}
.card .card-header {
  padding: 0.4rem;
  border-radius: 0.8rem 0.8rem 0 0;
  border-bottom: 1px solid var(--borderColor);
  background: #FFF;
  overflow: hidden;
}
.card .card-header .card-title {
  margin: 0;
}
.card .card-header .nav-tabs .nav-item .nav-link {
  padding: 1.5rem 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  color: var(--subTitle);
  border-radius: 0.5rem;
}
.card .card-header .nav-tabs .nav-item .nav-link.active {
  background: #2e3641;
  color: #FFF;
}
.card .card-header .nav-tabs .nav-item .nav-link .badge {
  font-size: 1.1rem;
  padding: 0.4rem;
  border-radius: 2rem;
}
.card .card-header .search-wrapper .form-control {
  height: 3.8rem;
  font-size: 1.4rem;
}
.card .card-body div.dt-scroll-body {
  border-bottom: none !important;
}

.fa-phone-missed, .fa-message-lines {
  color: var(--btnDanger);
}

.btn-gallabox {
  padding: 0.5rem;
  position: relative;
  color: #009b81 !important;
}
.btn-gallabox i {
  font-size: 2.6rem !important;
}
.btn-gallabox:hover {
  background: transparent !important;
}

[data-count]:before {
  content: attr(data-count);
  position: absolute;
  right: -0.5rem;
  top: 0.2rem;
  font-size: 1rem;
  font-weight: 700;
  padding: 0rem 0.5rem;
  border-radius: 5rem;
  background-color: #e33237;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-c2c i {
  font-size: 1.9rem !important;
}

.bg-danger {
  background: #e33237 !important;
}
.bg-danger p {
  color: #FFF !important;
}
.bg-danger h4 {
  color: #FFF !important;
}
.bg-danger .icon {
  background: rgba(255, 255, 255, 0.2) !important;
}
.bg-danger .icon i {
  color: #FFF !important;
}

.bg-success {
  background: #03ad6e !important;
}
.bg-success p {
  color: #FFF !important;
}
.bg-success h4 {
  color: #FFF !important;
}
.bg-success .icon {
  background: rgba(255, 255, 255, 0.2) !important;
}
.bg-success .icon i {
  color: #FFF !important;
}

.bg-warning {
  background: #e3811d !important;
}
.bg-warning p {
  color: #FFF !important;
}
.bg-warning h4 {
  color: #FFF !important;
}
.bg-warning .icon {
  background: rgba(255, 255, 255, 0.2) !important;
}
.bg-warning .icon i {
  color: #FFF !important;
}

.text-warning {
  color: #FF8B16 !important;
}

.counter {
  background-color: #e33237;
  background-clip: padding-box;
  border-radius: 100px;
  color: white;
  font: bold 11px "Helvetica Neue", sans-serif;
  padding: 2px 6px 3px 6px;
  text-decoration: none;
  transform: scale(1.2);
  -ms-transform: scale(1.2); /* IE 9 */
  -webkit-transform: scale(1.2); /* Chrome, Safari, Opera */
}

.md-notification-wrapper {
  height: 52.2rem;
  overflow: auto;
}
.md-notification-wrapper::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 5px;
}
.md-notification-wrapper::-webkit-scrollbar-track {
  padding: 0;
  background: rgba(0, 0, 0, 0);
}
.md-notification-wrapper::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: rgba(0, 0, 0, 0);
}

.notification {
  position: relative;
  padding: 12px 16px;
  width: 100%;
  max-height: 108px;
  background-color: white;
  border: 1px solid rgba(0, 16, 75, 0.1490196078);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  transition: all 0.4s ease-out, max-height 0.4s ease-out 0.2s, z-index 0s linear;
  animation: notification-move-in 0.4s ease-out forwards;
  box-sizing: border-box;
  margin-bottom: 1rem;
}
.notification > div {
  display: flex;
  align-items: center;
}
.notification.success .icon {
  background-color: #ECFAF5;
}
.notification.warning .icon {
  background-color: #FFF8EB;
}
.notification.danger .icon {
  background-color: #FFF2F2;
}
.notification.danger .title {
  color: #FF5252;
}
.notification.info .icon {
  background-color: #F4F3FC;
}
.notification .icon {
  padding: 7px;
  background-color: #F2F8FF;
  border-radius: 10px;
}
.notification .icon svg {
  display: block;
}
.notification p {
  margin: 0;
}
.notification .content {
  padding: 0 12px;
}
.notification .title {
  margin-bottom: 0.2rem;
  color: #00104B;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
}
.notification .subtitle {
  color: #667093;
  font-size: 13px;
  line-height: 1.5;
}
.notification .dismiss {
  margin: 0;
  padding: 4px;
  background-color: white;
  border: none;
  border-radius: 6px;
}
.notification .dismiss:hover {
  background-color: #F2F3F6;
}
.notification .dismiss svg {
  display: block;
}

@keyframes notification-move-in {
  0% {
    top: 35%;
    opacity: 0;
    filter: blur(10px);
  }
  50% {
    opacity: 1;
    filter: blur(0px);
  }
  100% {
    top: 50%;
  }
}
#template {
  display: none;
}

#controls {
  position: absolute;
  bottom: 20px;
  display: flex;
}
#controls * {
  margin-right: 1em;
}
#controls *:last-child {
  margin-right: 0;
}
#controls button {
  padding: 0.5em 1em;
  color: #0077ff;
  font-family: Avenir;
  font-size: 10pt;
  background-color: white;
  border: none;
  border-radius: 2em;
}

.minh-50 {
  height: calc(100vh - 242px);
  overflow-y: auto;
  overflow-x: hidden;
}
.minh-50::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 5px;
}
.minh-50::-webkit-scrollbar-track {
  padding: 0;
  background: rgba(0, 0, 0, 0);
}
.minh-50::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: rgba(0, 0, 0, 0);
}

.md-call-notification {
  position: fixed;
  top: 0;
  left: 50%;
  width: 400px;
  transform: translateX(-50%);
  padding: 1rem;
  color: white;
  z-index: 9999;
}
.md-call-notification .incoming-call, .md-call-notification .outgoing-call {
  background: #101010;
  color: #FFF;
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1019607843);
}
.md-call-notification .incoming-call .md-customer-avatar, .md-call-notification .outgoing-call .md-customer-avatar {
  height: 4.5rem;
  width: 4.5rem;
  background: #0091F3;
}
.md-call-notification .incoming-call .title, .md-call-notification .outgoing-call .title {
  color: #FFF;
}
.md-call-notification .incoming-call .subtitle, .md-call-notification .outgoing-call .subtitle {
  color: #ababab;
}
.md-call-notification .incoming-call .call-action .btn, .md-call-notification .outgoing-call .call-action .btn {
  width: 4rem;
  height: 4rem;
  border-radius: 5rem;
  padding: 0;
  display: grid;
  place-items: center;
}
.md-call-notification .incoming-call .call-action .btn svg, .md-call-notification .outgoing-call .call-action .btn svg {
  margin: 0;
}

.pulse {
  animation: pulse-animation 1s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
.md-sm-kpi p {
  font-size: 1.2rem;
  color: var(--subTitle);
  margin-top: 0.5rem;
}

.group td strong {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000000;
}

.error.error-message {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  margin-top: -0.5rem;
  color: #e33237;
}

.chat-info {
  padding: 2rem;
  overflow-y: auto;
  height: calc(100vh - 251px);
}
.chat-info .row:not(:last-child) {
  margin-bottom: 2rem;
}
.chat-info p {
  font-size: 1.3rem;
  color: var(--subTitle);
}
.chat-info h6, .chat-info strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
}
.chat-info .md-customer-avatar {
  font-size: 1.4rem;
}

.chat-message {
  background: url("../images/chat-bg.png") repeat center center;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.chat-message .msg-body {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  margin-bottom: 1rem;
  min-width: 100px;
}
.chat-message .msg-body:last-child {
  margin-bottom: 0;
}
.chat-message .msg-body img {
  max-width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.chat-message .msg-body.sender:before {
  display: block;
  clear: both;
  content: "";
  position: absolute;
  top: -6px;
  left: -7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 15px 12px;
  border-color: transparent transparent #FFF transparent;
  transform: rotate(-37deg);
}
.chat-message .msg-body.sender {
  color: #000;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  padding: 8px 10px;
  background: #FFF;
  border-radius: 0 10px 10px 10px;
}
.chat-message .msg-body.sender p {
  color: #000;
  font-weight: 500;
  font-size: 1.4rem;
  word-break: break-word;
}
.chat-message .msg-body.sender span {
  display: block;
  text-align: right;
  font-size: 11px;
  color: #848484;
  margin-top: 5px;
  line-height: normal;
}

.modal-content {
  border: none;
  border-radius: 1rem;
}

.modal-header {
  padding: 1.5rem 2rem;
  border: none;
}
.modal-header .modal-title {
  font-size: 1.6rem;
  font-weight: 700;
}

.modal-body {
  padding: 2rem;
}

.modal-md {
  --bs-modal-width: 550px;
}

.md-modal-content h1 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
.md-modal-content p {
  color: #27272a;
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin-bottom: 0.2rem;
}
.md-modal-content .form-control {
  height: 40px;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  text-align: center;
}

.editPanel.offcanvas.offcanvas-end {
  --bs-offcanvas-width: 50%;
  width: var(--bs-offcanvas-width);
  border: none;
}
.editPanel .offcanvas-header {
  padding: 1.5rem;
}
.editPanel .offcanvas-body {
  padding: 1.5rem;
}

.offcanvas-body {
  position: relative;
}

/*----------------------------*/
.badge-processing, .badge-request_received {
  color: #FFF !important;
  background-color: #4D587D !important;
}

.badge-processing, .badge-in_transit, .badge-booking_pending {
  color: #FFF !important;
  background-color: #4D587D !important;
}

.badge-booking_confirmed {
  color: #FFF !important;
  background-color: #00D8BF !important;
}

.badge-on-duty {
  color: #FFF !important;
  background-color: #0091F3 !important;
}

.badge-check-in {
  color: #FFF !important;
  background-color: #00BD79 !important;
}

.badge-invalid-check-in {
  color: #FFF !important;
  background-color: #FFCA00 !important;
}

.badge-off-duty {
  color: #FFF !important;
  background-color: #5E5E5E !important;
}

.badge-sdesign, .badge-awb_gen, .badge-inprogress, .badge-inprogress {
  color: #FFF !important;
  background-color: #FF8B16 !important;
}

.badge-cancelled, .badge-manager_approval, .badge-unpaid, .badge-booking_cancelled, .bg-danger, .badge-manager_approval, .badge-off-week, .badge-check-out, .badge-rejected {
  color: #FFF !important;
  background-color: #FF666C !important;
}

.badge-sapproval, .badge-booking_home_visited, .badge-home_visited, .badge-home_visited {
  color: #FFF !important;
  background-color: #44A7FF !important;
}

.badge-sproduction, .badge-pending, .badge-booking_scheduled, .badge-waiting, .badge-waiting_for_approval {
  color: #FFF !important;
  background-color: #FFCA00 !important;
}

.badge-ready {
  color: #FFF !important;
  background-color: #7E8CFF !important;
}

.badge-shipped, .badge-upload_images {
  color: #FFF !important;
  background-color: #FF68B9 !important;
}

.badge-delivered, .badge-completed, .badge-installation_completed, .badge-paid, .badge-booking_order_placed, .badge-accepted {
  color: #FFF !important;
  background-color: #00bd9d !important;
}

.badge-waiting_for_production, .badge-booking_closed_online {
  color: #FFF !important;
  background-color: #CA81FF !important;
}

.badge-refunded {
  color: #FFF !important;
  background-color: #743235 !important;
}

.failed-booking, .cancelled-order {
  background: rgba(255, 102, 108, 0.1);
}
.failed-booking:not(.collapsed), .cancelled-order:not(.collapsed) {
  background: rgba(255, 102, 108, 0.1);
}

.active-booking, .active-order {
  background: rgba(0, 155, 129, 0.1);
}
.active-booking:not(.collapsed), .active-order:not(.collapsed) {
  background: rgba(0, 189, 157, 0.1);
}

.pending-booking, .pending-order {
  background: rgba(255, 202, 0, 0.1);
}
.pending-booking:not(.collapsed), .pending-order:not(.collapsed) {
  background: rgba(255, 202, 0, 0.1);
}

.processing-booking, .processing-order {
  background: rgba(97, 104, 103, 0.05);
}
.processing-booking:not(.collapsed), .processing-order:not(.collapsed) {
  background: rgba(97, 104, 103, 0.05);
}

.completed-booking, .completed-order {
  background: white;
  border: solid 1px var(--borderColor);
}
.completed-booking:not(.collapsed), .completed-order:not(.collapsed) {
  background: white;
  border: solid 1px var(--borderColor);
}

.badge-rs {
  color: #FF68B9;
  background-color: rgba(255, 104, 185, 0.1882352941);
}

.badge-is {
  color: #CA81FF;
  background-color: rgba(203, 129, 255, 0.1882352941);
}

.badge-ps {
  color: #44A7FF;
  background-color: rgba(68, 168, 255, 0.1882352941);
}

.badge-freei {
  color: #FF666C;
  background-color: rgba(255, 102, 107, 0.1882352941);
}

.badge-paidi {
  color: #00bd9d;
  background-color: rgba(0, 189, 157, 0.1882352941);
}

.badge-notri {
  color: #4D587D;
  background-color: rgba(77, 88, 125, 0.1882352941);
}

/*----------------------------*/
.roles {
  white-space: normal;
}

.loader, .loader-update {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.6);
  z-index: 99;
}
.loader .spinner-border, .loader-update .spinner-border {
  --bs-spinner-width: 5rem;
  --bs-spinner-height: 5rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-border-width: 3px;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-border;
}

.spinner-border-sm {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-border-width: 2px;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-border;
}

.page-numbers {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-width: var(--bs-border-width);
  --bs-pagination-border-color: var(--bs-border-color);
  --bs-pagination-border-radius: var(--bs-border-radius);
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  --bs-pagination-hover-border-color: var(--bs-border-color);
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: var(--bs-secondary-bg);
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #0d6efd;
  --bs-pagination-active-border-color: #0d6efd;
  --bs-pagination-disabled-color: var(--bs-secondary-color);
  --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  display: flex;
  padding-left: 0;
  list-style: none;
}
.page-numbers li .page-numbers {
  font-size: 1.3rem;
  padding: 1rem 1.2rem;
  color: var(--pirmaryColor);
  position: relative;
  display: block;
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.page-numbers li .page-numbers.current {
  color: #FFF !important;
  background: var(--pirmaryColor);
  border-color: var(--pirmaryColor);
}
.page-numbers li:not(:first-child) .page-numbers {
  margin-left: calc(var(--bs-border-width) * -1);
}
.page-numbers li:first-child .page-numbers {
  --bs-pagination-border-radius: .6rem;
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}
.page-numbers li:last-child .page-numbers {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}

.alert {
  font-size: 1.4rem;
  padding: 1.4rem 1.4rem;
  border-radius: 0.6rem;
}

.table .md-ticket-id {
  color: var(--pirmaryColor) !important;
}
.table tfoot {
  position: sticky;
  bottom: 0;
  width: 100%;
}
.table tfoot .pagination {
  float: right;
}

.rate-area {
  float: left;
  border-style: none;
}

.rate-area:not(:checked) > input {
  position: absolute;
  top: -9999px;
  clip: rect(0, 0, 0, 0);
}

.rate-area:not(:checked) > label {
  float: right;
  width: 30px;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 180%;
  color: lightgrey;
}

.rate-area:not(:checked) > label:before {
  content: "★";
}

.rate-area > input:checked ~ label {
  color: gold;
}

.rate-area:not(:checked) > label:hover,
.rate-area:not(:checked) > label:hover ~ label {
  color: gold;
}

.rate-area > input:checked + label:hover,
.rate-area > input:checked + label:hover ~ label,
.rate-area > input:checked ~ label:hover,
.rate-area > input:checked ~ label:hover ~ label,
.rate-area > label:hover ~ input:checked ~ label {
  color: gold;
}

#toast-container > div {
  box-shadow: 0 0 20px #c2c2c2;
  width: 350px;
  opacity: 0.9;
  border-radius: 0.8rem;
}

#toast-container > :hover {
  box-shadow: 0 0 20px #c2c2c2;
}

.md-active-chats tbody tr {
  cursor: pointer;
}
.md-active-chats tbody tr:hover td {
  background: rgba(36, 117, 239, 0.1) !important;
}

#pending-chat .md-customer h6 {
  width: 20rem;
}

.toast-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.toast-message {
  font-size: 1.4rem;
  line-height: 2.2rem;
}

#toast-container > div {
  opacity: 1;
}

#toast-container > div:hover {
  box-shadow: none;
}

.chats-wrapper .chat-info {
  height: calc(100vh - 233px) !important;
  border-bottom: solid 1px var(--bs-border-color);
}
.chats-wrapper .card {
  border-radius: 0;
  border-top: 0;
  border-bottom: 0;
}

.md-ticket-list h6 {
  word-break: break-word;
  white-space: normal;
  line-height: 2rem;
}

.md-ticket-wrapper {
  height: calc(100vh - 0rem);
}
.md-ticket-wrapper .md-lhs {
  flex: 0 0 38rem;
  height: calc(100vh - 5.5rem);
  overflow: auto;
  background: #f6f8fb;
  border-right: solid 1px var(--borderColor);
}
.md-ticket-wrapper .md-rhs {
  flex: 0 0 calc(100% - 38rem);
  height: calc(100vh - 5.5rem);
  overflow: auto;
}

.md-ticket-details .card-body {
  padding: 1.5rem;
}
.md-ticket-details .card-body > h6 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  text-transform: capitalize;
}
.md-ticket-details .card-body p {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--subTitle);
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}
.md-ticket-details .card-body p i {
  margin-right: 1rem;
}
.md-ticket-details .card-body p strong {
  color: #000;
  font-weight: 600;
}
.md-ticket-details .card-body small {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--subTitle);
  display: block;
  margin-bottom: 1.2rem;
}
.md-ticket-details .card-body .btn:first-child:active {
  border-color: transparent !important;
}
.md-ticket-details .card-body .btn-status {
  padding: 0.2rem 1.2rem !important;
  font-size: 1.3rem;
  border-radius: 0.6rem;
  font-weight: 800;
}
.md-ticket-details .card-body .btn-status:focus, .md-ticket-details .card-body .btn-status:active, .md-ticket-details .card-body .btn-status:hover {
  box-shadow: none;
  border-color: transparent !important;
}

.md-status-flag {
  padding: 0.6rem 1.2rem;
  position: absolute;
  top: 65px;
  right: -15px;
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #FFF;
}
.md-status-flag::before {
  content: "";
  position: absolute;
  top: 11px;
  left: -12px;
  width: 0;
  height: 0;
  border-width: 7px;
  border-style: solid;
}
.md-status-flag::after {
  content: "";
  position: absolute;
  top: 0;
  left: -12px;
  width: 0;
  height: 0;
  border-width: 7px;
  border-style: solid;
}
.md-status-flag.ticket_open::before, .md-status-flag.new::before {
  border-color: transparent #4D587D #4D587D transparent;
}
.md-status-flag.ticket_open::after, .md-status-flag.new::after {
  border-color: #4D587D #4D587D transparent transparent;
}
.md-status-flag.ticket_close::before, .md-status-flag.closed::before {
  border-color: transparent #00bd9d #00bd9d transparent;
}
.md-status-flag.ticket_close::after, .md-status-flag.closed::after {
  border-color: #00bd9d #00bd9d transparent transparent;
}
.md-status-flag.ticket_processing::before, .md-status-flag.replied::before {
  border-color: transparent #FFCA00 #FFCA00 transparent;
}
.md-status-flag.ticket_processing::after, .md-status-flag.replied::after {
  border-color: #FFCA00 #FFCA00 transparent transparent;
}
.md-status-flag.ticket_reopen::before, .md-status-flag.awaiting_reply::before {
  border-color: transparent #FF666C #FF666C transparent;
}
.md-status-flag.ticket_reopen::after, .md-status-flag.awaiting_reply::after {
  border-color: #FF666C #FF666C transparent transparent;
}
.md-status-flag.close_pending::before {
  border-color: transparent #7E8CFF #7E8CFF transparent;
}
.md-status-flag.close_pending::after {
  border-color: #7E8CFF #7E8CFF transparent transparent;
}

.ticket_open, .new {
  background: #4D587D !important;
}

.ticket_close, .ticket_medium, .closed {
  background: #00bd9d !important;
}

.ticket_processing, .ticket_low, .replied {
  background: #FFCA00 !important;
}

.ticket_reopen, .ticket_high, .awaiting_reply {
  background: #FF666C !important;
}

.close_pending {
  background: #7E8CFF !important;
}

.md-card-title {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.md-agents .select2-container {
  height: auto !important;
}

.md-detail-header {
  position: sticky;
  top: 0;
  background: #FFF;
  z-index: 10;
}
.md-detail-header h4 {
  font-size: clamp(1.8rem, 3vw, 2rem);
  line-height: 2.5rem;
  letter-spacing: 0px;
  margin-bottom: 1.2rem;
}
.md-detail-header .nav {
  gap: 1rem;
  margin: 0.5rem -1.5rem 0 -1.5rem;
  padding: 0 1.5rem;
  border-bottom: solid 1px var(--borderColor);
}
.md-detail-header .nav .nav-item .nav-link {
  font-size: 1.4rem;
  letter-spacing: 0.2px;
  font-weight: 600;
  color: #595e66;
  padding: 1.2rem 1rem;
}
.md-detail-header .nav .nav-item .nav-link.active {
  color: var(--pirmaryColor);
  border-bottom: solid 2px var(--pirmaryColor);
}

.md-titket-info {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.md-titket-info p {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--subTitle);
  position: relative;
}
.md-titket-info p:not(:last-child)::after {
  content: ".";
  color: #abb2bb;
  display: block;
  font-size: 2rem;
  position: absolute;
  top: -7px;
  right: -14px;
}

.md-msg {
  border: solid 1px var(--borderColor);
  border-radius: 0.8rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.md-msg .md-msg-header {
  margin-bottom: 1.5rem;
}
.md-msg .md-msg-header .md-titket-info {
  margin-top: -3px;
}
.md-msg .md-msg-body {
  color: #27272a !important;
  font-size: 1.4rem !important;
  line-height: 1.7 !important;
  font-weight: 400 !important;
  letter-spacing: 0.3px;
}
.md-msg .md-msg-body div {
  color: #27272a !important;
  font-size: 1.4rem !important;
  line-height: 1.7 !important;
  font-weight: 400 !important;
  letter-spacing: 0.3px;
}
.md-msg .md-msg-body div:not(:last-child) {
  margin-bottom: 0.8rem;
}
.md-msg .md-msg-body p {
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.md-msg .md-msg-body p:not(:last-child) {
  margin-bottom: 0.8rem;
}
.md-msg .md-msg-body p a {
  text-decoration: underline;
}
.md-msg .md-msg-body p:empty {
  display: none !important;
}
.md-msg .md-msg-body a {
  text-decoration: underline;
}
.md-msg .md-msg-body img {
  max-width: 400px;
  height: auto;
}
.md-msg .md-msg-body strong {
  font-weight: 700;
}
.md-msg.internal-comment {
  border-color: #f0e09e;
  background-color: #fffbea;
}

blockquote {
  color: #27272a !important;
  font-size: 1.4rem !important;
  line-height: 1.8 !important;
  font-weight: 400 !important;
  letter-spacing: 0.3px;
  padding-left: 15px !important;
  margin-left: 10px !important;
  margin-top: 10px;
  border-left: 1px solid var(--borderColor);
  display: none;
}
blockquote blockquote {
  margin-top: 10px;
  padding-left: 15px !important;
  margin-left: 10px !important;
  border-left: 1px dotted var(--borderColor);
}

.attachments a {
  display: inline-block;
}
.attachments img {
  max-width: 100% !important;
  margin: 0 !important;
  display: inline-block;
}
.attachments p {
  font-size: 13px;
  margin-top: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 15rem;
  color: #595e66;
}

.tox-tinymce {
  border-width: 1px !important;
}

.md-replay-post {
  border: solid 1px var(--borderColor);
  border-radius: 0.8rem;
}
.md-replay-post .recipients {
  border-bottom: solid 1px var(--borderColor);
}
.md-replay-post .recipients label {
  font-size: 1.3rem;
  color: var(--subTitle);
  min-width: 6rem;
}
.md-replay-post .recipients p {
  font-size: 1.4rem;
  color: #27272a;
  font-weight: 600;
}
.md-replay-post .tox-tinymce {
  border-width: 1px 0 1px 0 !important;
  border-radius: 0 !important;
}

.md-history .md-history-header {
  padding-top: 18px;
  padding-bottom: 18px;
  position: sticky;
  display: flex;
  top: 115px;
  background: #FFF;
  z-index: 9;
}
.md-history .md-history-header::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: var(--borderColor);
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  left: 7px;
  z-index: 1;
}
.md-history .md-history-header .date-time {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
  margin-left: 24px;
  position: relative;
  z-index: 2;
}
.md-history .md-history-header .date-icon {
  background-color: #FFF;
  width: 14px;
  height: 14px;
  position: relative;
  z-index: 9;
}
.md-history .md-history-item {
  display: flex;
}
.md-history .md-history-item:not(:last-child) {
  padding-bottom: 2.2rem;
}
.md-history .md-history-item .dotWrapper {
  position: relative;
  width: 10px;
  margin-right: 28px;
  top: 0;
}
.md-history .md-history-item .dotWrapper::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: #ebf0f5;
  transform: translateX(-50%);
  top: -16px;
  bottom: -10px;
  left: 7px;
  z-index: 1;
}
.md-history .md-history-item .dotWrapper::after {
  content: "";
  position: absolute;
  top: 25px;
  background-color: #bbc1c8;
  padding: 3px;
  border-radius: 50%;
  left: 7px;
  transform: translateX(-50%);
  z-index: 2;
}
.md-history .md-history-item .md-history-content {
  font-size: 1.5rem;
  color: #27272a;
}
.md-history .md-history-item .md-history-content small {
  display: block;
  font-size: 1.3rem;
  color: var(--subTitle);
  margin-bottom: 1rem;
  line-height: 1.8rem;
}
.md-history .md-history-item .md-history-content small strong {
  font-weight: 700;
  color: #000;
}
.md-history .md-history-item .md-history-content p {
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.md-history .md-history-item .md-history-content p:not(:last-child) {
  margin-bottom: 1rem;
}
.md-history .md-history-item .md-history-content p a {
  text-decoration: underline;
}
.md-history .md-history-item .md-history-content a {
  text-decoration: underline;
}
.md-history .md-history-item .md-history-content img {
  max-width: 400px;
  margin-bottom: 1rem;
}

.edit-phn i {
  font-size: 1.6rem !important;
}

.md-phn .iti {
  width: 100%;
  font-size: 1.4rem;
}
.md-phn .form-control {
  height: 40px;
  font-size: 1.4rem;
}

.error {
  border-color: #ff5257 !important;
}

.md-editor {
  margin-top: -18px;
}
.md-editor .wp-editor-container {
  border-left: 0px;
  border-right: 0px;
}

.md-user-msg {
  background: #f6f8fb;
  padding: 1rem;
  border-radius: 0.8rem;
  border: solid 1px var(--borderColor);
}
.md-user-msg p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  font-weight: 500;
}
.md-user-msg strong {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  display: block;
  border-bottom: solid 1px var(--borderColor);
  font-weight: 700;
}

.select-from {
  margin: -1.5rem 0;
  border: none;
  padding-left: 0;
  max-width: 280px;
}
.select-from:focus {
  box-shadow: none;
}

.highlighted-row td {
  background: rgba(220, 53, 69, 0.08) !important;
  border-color: rgba(220, 53, 69, 0.08) !important;
}

.disabled {
  pointer-events: none;
  cursor: not-allowed;
}

.duplicate-ticket .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.duplicate-ticket .item a {
  color: #58151c;
  font-weight: 700;
}

#spark3 {
  position: relative;
  padding-top: 15px;
}

.open-ticket {
  background: rgba(3, 173, 110, 0.2);
  border-color: rgba(3, 173, 110, 0.2) !important;
}
.open-ticket h4 {
  color: #03ad6e !important;
}
.open-ticket .icon {
  background: rgba(3, 173, 110, 0.2) !important;
}
.open-ticket .icon i {
  color: #037f51 !important;
}

.resolution {
  background: rgba(227, 50, 55, 0.2);
  border-color: rgba(227, 50, 55, 0.2) !important;
}
.resolution h4 {
  color: #e33237 !important;
}
.resolution .icon {
  background: rgba(227, 50, 55, 0.2) !important;
}
.resolution .icon i {
  color: #b9262b !important;
}

.iti__selected-dial-code {
  font-weight: 600;
  font-size: 1.4rem;
}

.md-customer-item {
  display: inline-block;
  padding: 0.5rem;
  overflow: hidden;
}
.md-customer-item .md-customer-avatar .fa-share-from-square {
  font-size: 1.6rem;
}
.md-customer-item .md-customer-avatar .fa-whatsapp {
  font-size: 2rem;
}
.md-customer-item .md-customer-avatar.whatsapp {
  background: #009b81;
  color: #FFF;
}
.md-customer-item .md-customer-avatar.transfer {
  background: var(--pirmaryColor);
  color: #FFF;
}
.md-customer-item.md-designer {
  border-left: solid 1px var(--borderColor);
}
.md-customer-item.md-designer h6 {
  color: #e33237;
}
.md-customer-item.md-designer p {
  display: block;
  color: #e33237;
}
.md-customer-item:first-child:hover {
  background: rgba(0, 155, 129, 0.1);
}
.md-customer-item:last-child:hover {
  background: rgba(36, 117, 239, 0.1);
}

.table-border {
  border: solid 1px #f3f3f3;
}
.table-border .form-select, .table-border .form-control {
  font-size: 1.4rem;
}

.card-body.md-refund-info p {
  font-size: 1.4rem;
  margin-bottom: 1.8rem;
  gap: 2px;
}

.no-data {
  height: calc(100vh - 60px);
  display: grid;
  place-content: center;
}

.fa-thumbtack {
  color: #e8b600;
  transform: rotate(35deg);
}

.md-chat-wrapper {
  display: flex;
  height: calc(100vh - 58px);
}

.md-chat-list {
  flex: 0 0 400px;
  height: 100%;
  overflow-y: auto;
  border-right: solid 1px var(--borderColor);
}
.md-chat-list .chat {
  padding: 1.2rem 1rem;
  border-bottom: solid 1px var(--borderColor);
  cursor: pointer;
  transition: all 0.3s ease;
}
.md-chat-list .chat:hover {
  background: #E7F3FF;
}
.md-chat-list .chat:hover .name {
  background: var(--pirmaryColor);
  color: #FFF;
}
.md-chat-list .chat.activeChat {
  background: #E7F3FF;
}
.md-chat-list .chat.activeChat .name {
  background: var(--pirmaryColor);
  color: #FFF;
}
.md-chat-list .chat .name {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--pirmaryColor);
  background: #E7F3FF;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}
.md-chat-list .chat .name .unread {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 8px;
  height: 8px;
  background: #F8565C;
  border-radius: 50%;
}
.md-chat-list .chat .userinfo h5 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #000;
}
.md-chat-list .chat .userinfo p {
  font-size: 1.3rem;
  color: var(--subTitle);
}
.md-chat-list .chat .chatinfo .time {
  font-size: 1.3rem;
  color: var(--subTitle);
  margin-bottom: 1rem;
}
.md-chat-list .chat .chatinfo .badge {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 5rem;
}
.md-chat-list .chat .chatinfo .badge.bg-info {
  background: var(--pirmaryColor) !important;
}
.md-chat-list .chat.unreadChat .userinfo h5 {
  font-weight: 700;
}
.md-chat-list .chat.closedChat {
  opacity: 0.6;
}
.md-chat-list .chat.closedChat span {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
  color: #F8565C;
}

.chat-window {
  flex: 0 0 calc(100% - 400px);
  height: 100%;
  overflow-y: auto;
  position: relative;
}
.chat-window .chat-header {
  padding: 1rem 1.5rem;
  height: 50px;
  display: flex;
  align-items: center;
  border-bottom: solid 1px var(--borderColor);
}
.chat-window .chat-header h5 {
  font-weight: 600;
}
.chat-window .chat-container {
  height: calc(100% - 60px);
}
.chat-window .chat-container .loader, .chat-window .chat-container .loader-update {
  height: 100%;
}

.req-loader {
  height: 171px;
  top: 50px;
  left: 0px;
}

.design-request {
  padding: 1rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow-y: hidden;
  overflow-x: auto;
}
.design-request .card {
  flex: 0 0 250px;
}
.design-request .card .static-txt-loader .spinner-border {
  --bs-spinner-width: 3rem;
  --bs-spinner-height: 3rem;
  --bs-spinner-border-width: 3px;
}
.design-request .card-body p {
  font-size: 1.3rem;
  line-height: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.design-request .card-body a {
  display: block;
  padding: 0 0 2px;
}
.design-request .card-body .btn-primary {
  font-size: 1.2rem;
  padding: 0.8rem 2rem;
}
.design-request .preview .fa-file-pdf {
  font-size: 2.5rem;
  color: #e5252a;
}
.design-request .preview p {
  margin-bottom: 0;
  width: 150px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.design-request .approved {
  background: #ecf9f2;
  border-color: #cfe4d9;
}
.design-request .approved i {
  font-size: 2.2rem;
  color: #00BD79;
}
.design-request .rejected {
  background: #FEEEEF;
  border-color: #f0dbdc;
}
.design-request .pending {
  background: #fef7ee;
}
.design-request .pdf {
  min-height: 40px;
}

.new-chat-loader {
  text-align: center;
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 100%;
  font-size: 1.2rem;
  color: #6d6d6d;
}

[hidden] {
  display: none !important;
}

.chat-message-wrapper {
  height: calc(100vh - 354px);
  overflow-y: auto;
  padding: 0 1.5rem 1.5rem 1.5rem;
  margin-top: 1.5rem;
}
.chat-message-wrapper ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
}
.chat-message-wrapper ul li {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
  color: #000;
  min-width: 100px;
  max-width: 50%;
  border-radius: 0.8rem;
  padding: 8px 10px;
  margin-bottom: 0.8rem;
}
.chat-message-wrapper ul li pre {
  white-space: break-spaces;
  word-wrap: break-word;
}
.chat-message-wrapper ul li.sender {
  background: #F7F8FD;
  margin-right: auto;
}
.chat-message-wrapper ul li.repaly {
  background: #E7F3FF;
  margin-left: auto;
}
.chat-message-wrapper ul li.system {
  font-size: 12px;
  color: #F77F24;
  background: rgba(247, 127, 36, 0.05);
  margin: 0 auto 0.8rem auto;
  padding: 5px 10px;
}
.chat-message-wrapper ul li .time {
  display: block;
  text-align: right;
  font-size: 11px;
  color: #848484;
  margin-top: 5px;
  line-height: normal;
}

.chat-input {
  padding: 0 1.5rem 1rem 1.5rem;
}
.chat-input .form-control {
  min-height: 50px;
  padding: 0.375rem 2rem;
}
.chat-input .btn-send {
  background: transparent;
  font-size: 2.5rem;
  border: none;
  position: absolute;
  top: 11px;
  right: 20px;
  color: var(--pirmaryColor);
}
.chat-input .img-upload {
  background: transparent;
  font-size: 2.5rem;
  border: none;
  position: absolute;
  top: 11px;
  right: 70px;
  color: var(--secondaryHoverColor);
  cursor: pointer;
}

.md-task-wrapper {
  height: calc(100vh - 50px);
  overflow-y: auto;
}

.md-task-card {
  padding: 2rem;
  border: solid 1px var(--borderColor);
  border-radius: 0.8rem;
  margin-bottom: 1.5rem;
}
.md-task-card .md-task-header {
  margin-bottom: 1.5rem;
}
.md-task-card .md-task-header h6 {
  font-size: 1.6rem;
}
.md-task-card .md-task-header .badge {
  font-size: 1.2rem;
}
.md-task-card .md-task-header i {
  font-size: 1.8rem;
}
.md-task-card .md-task-body p {
  font-size: 1.2rem;
  color: var(--subTitle);
  margin-bottom: 1rem;
}
.md-task-card .md-task-body strong {
  font-size: 1.4rem;
  display: block;
  font-weight: 600;
}
.md-task-card .md-task-body .btn-call-action {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: #FFF;
  background: #00a569;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.md-task-card .md-task-body .btn-call-action:hover {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #FFF;
  background: #00bf79;
}

#md-call-records-list_wrapper .dt-container {
  width: calc(100% - 0px);
}
#md-call-records-list_wrapper div.dt-scroll-body {
  max-height: calc(100vh - 257px) !important;
}
#md-call-records-list_wrapper.full-height-wrapper div.dt-scroll-body {
  height: calc(100vh - 100px);
}

#md-call-records-list tbody tr td, #md-calls-list tbody tr td {
  padding: 1.5rem 1.5rem;
}

.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-width: var(--bs-border-width);
  --bs-pagination-border-color: var(--bs-border-color);
  --bs-pagination-border-radius: var(--bs-border-radius);
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  --bs-pagination-hover-border-color: var(--bs-border-color);
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: var(--bs-secondary-bg);
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #0d6efd;
  --bs-pagination-active-border-color: #0d6efd;
  --bs-pagination-disabled-color: var(--bs-secondary-color);
  --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  display: flex;
  padding-left: 0;
  list-style: none;
}
.pagination .page-link {
  font-size: 1.3rem;
  padding: 1rem 1.2rem;
  color: var(--pirmaryColor);
  position: relative;
  display: block;
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.dt-paging-button.page-item.active .page-link {
  color: #FFF !important;
  background: var(--pirmaryColor);
  border-color: var(--pirmaryColor);
}

.dt-paging.paging_full_numbers {
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.missed {
  color: #e3811d;
  font-weight: 700;
}

.outgoing, .assigned {
  color: #00a569 !important;
  font-weight: 700;
}

.incoming, .unanswered {
  color: #e33237 !important;
  font-weight: 700;
}

.completed {
  color: #00a569 !important;
  font-weight: 700;
}

.answered {
  color: #0d6efd !important;
  font-weight: 700;
}/*# sourceMappingURL=styles.css.map */