@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* font-family: "Inter", serif;  */

/* comman style
----------------------*/
html,
body {
  height: 100%;
  font-display: swap;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", serif;
  font-display: swap;
  font-size: 14px;
  line-height: 24px;
  color: var(--primary-font);
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: var(--primary-font);
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}

a:hover {
  color: var(--primary-font);
  text-decoration: none;
}

a:focus {
  outline: none;
  text-decoration: none;
}

:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px 0;
  color: var(--primary-font);
  padding: 0;
  line-height: 1.2;
  font-family: "Inter", serif;
  text-transform: none;
  font-weight: 600;
}

h1 {
  font-size: 38px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  text-decoration: none;
  font-size: inherit;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  text-decoration: none;
}

small {
  display: block;
  margin-top: 4px;
}

p {
  margin: 0 0 10px 0;
  line-height: 24px;
}

p:last-child {
  margin-bottom: 0px;
}

ul,
ol {
  margin: 0;
}

strong,
b {
  font-weight: 600;
}

button {
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}

img {
  transition: all 0.3s ease-in-out 0s;
}

/* comman form filed style -----------------------------*/

input::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
  opacity: 0.6;
}

input::-ms-input-placeholder,
.form-control::-ms-input-placeholder {
  opacity: 0.6;
}

input::placeholder,
.form-control::placeholder {
  opacity: 0.6;
}


textarea.select2-search__field::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
  opacity: 1 !important;

}

textarea.select2-search__field::-ms-input-placeholder,
.form-control::-ms-input-placeholder {
  opacity: 1 !important;

}

textarea.select2-search__field::placeholder,
.form-control::placeholder {
  opacity: 1 !important;

}

/* images alignment
--------------------------------*/
/* image alignments */
img.alignleft,
.alignleft {
  float: left;
  margin-right: 20px;
  max-width: 460px;
}

img.alignright,
.alignright {
  float: right;
  margin-left: 20px;
  max-width: 460px;
}

img.aligncenter,
.aligncenter,
img.alignnone,
.alignnone {
  display: block;
  margin: 0 auto 20px;
  clear: both;
}

img.alignleft,
.alignleft,
img.alignright,
.alignright {
  display: inline;
  margin-top: 0;
}

img.alignleft,
img.aligncenter,
img.alignright {
  margin-bottom: 20px;
}

/* image captions */
.alignleft .wp-caption-text {
  text-align: left;
}

.alignright .wp-caption-text {
  text-align: right;
}

.aligncenter .wp-caption-text {
  text-align: center;
}

hr {
  clear: both;
  margin-top: 20px;
  margin-bottom: 20px;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.content ul,
.content ol {
  margin: 0 0 20px 0px;
  padding: 0 0 0 15px;
  position: relative;
}

.content ul {
  list-style-type: none;
}

.content ul li,
.content ol li {
  margin-bottom: 8px;
}

.content ul li ul li,
.content ol li ul li,
.content ul li ol li {
  margin-top: 12px;
}

.content ul li:before {
  content: "";
  position: relative;
  display: inline-block;
  left: -15px;
  top: -2px;
  width: 7px;
  height: 7px;
  background-color: var(--primary-color);
  border-radius: 100%;
}

.content ul li ol li:before {
  display: none;
}

.menu-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: var(--primary-color);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}

.menu-overlay.show-overlay {
  opacity: 0.90;
  visibility: visible;
  z-index: 11;
}

.mainwrapper {
  overflow: hidden;
}

/*--------------*/

/* sticky header
========================*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

.mobile-show-html {
  overflow: hidden;
  position: fixed;
  height: 100%;
  width: 100%;
}

.show-overlay {
  width: 100%;
  height: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.overflowhidden {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  min-height: 100%;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}

/*--- header ------*/

/*--- common ------*/

.btn-check:focus+.btn-primary,
.btn-primary:focus {
  color: var(--white-font);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: none;
}

.btn-check:checked+.btn-primary:focus,
.btn-check:active+.btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.show>.btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn {
  border-radius: 8px;
  font-weight: 500;
  padding: 7px 12px;
  line-height: 24px;
  font-size: var(--ft-16);
  line-height: normal;
  position: relative;
}

.create-new-task-btn .btn {
  padding: 8px 20px;
}

.large-h-btn .btn {
  padding: 10px 20px;
}

.create-new-task-btn .btn img {
  margin-top: -3px;
  margin-right: 4px;
}

.btn-primary {
  color: var(--white-font);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  color: var(--white-font);
  background-color: rgba(12, 17, 29, 0.8);
  border-color: var(--primary-color);
}

.btn-white {
  color: #39404F;
  background-color: var(--white-color);
  border-color: var(--commonborder);
}

.btn-white:hover {
  color: #39404F;
  background-color: var(--lightgray-color);
  border-color: var(--commonborder);
}

.btn-primary:disabled {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.btn-full {
  width: 100%;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  color: var(--white-font);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: none;
}

.btn:focus-visible {
  color: var(--white-font);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: none;
}

.form-control:focus {
  border-color: #c2c3c6;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(12, 17, 29, .07);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: rgba(12, 17, 29, .30);
}

.form-check-input:focus {
  box-shadow: 0 0 0 .25rem rgba(12, 17, 29, .07);
  border-color: rgba(12, 17, 29, .30);
}

.btn-check:checked+.btn-white,
.btn-white.active,
.btn-white.show,
.btn-white:first-child:active,
:not(.btn-check)+.btn-white:active {
  color: #39404F;
  background-color: var(--lightgray-color);
  border-color: var(--commonborder);
  box-shadow: none;
}

.btn-check:focus+.btn-primary.btn-white,
.btn-primary.btn-white:focus {
  color: #39404F;
  background-color: var(--lightgray-color);
  border-color: var(--commonborder);
  box-shadow: none;
}

.btn-check:checked+.btn-primary.btn-white:focus,
.btn-check:active+.btn-primary.btn-white:focus,
.btn-primary.btn-white:active:focus,
.btn-primary.btn-white.active:focus,
.show>.btn-primary.btn-white.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-close:focus {
  box-shadow: 0 0 0 .25rem rgba(12, 17, 29, .07);
}

.btn-red:disabled,
.btn-red {
  background-color: var(--red-color);
  border-color: var(--red-color);
  color: var(--white-font);
}

.btn-red:hover {
  background-color: var(--secondarypink-light-color);
  border-color: var(--red-color);
  color: var(--red-font);
}

.btn-check:checked+.btn-red,
.btn-red.active,
.btn-red.show,
.btn-red:first-child:active,
:not(.btn-check)+.btn-red:active {
  color: var(--white-font);
  background-color: var(--red-color);
  border-color: var(--red-color);
  box-shadow: none;
}

.btn-check:focus+.btn-primary.btn-red,
.btn-primary.btn-red:focus {
  color: var(--red-font);
  background-color: var(--secondarypink-light-color);
  border-color: var(--red-color);
  box-shadow: none;
}

.btn-check:checked+.btn-primary.btn-red:focus,
.btn-check:active+.btn-primary.btn-red:focus,
.btn-primary.btn-red:active:focus,
.btn-primary.btn-red.active:focus,
.show>.btn-primary.btn-red.dropdown-toggle:focus {
  box-shadow: none;
}

/*--- common ------*/

/*-----container--- */

.container {
  padding-right: 15px;
  padding-left: 15px;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row>* {
  padding-left: 15px;
  padding-right: 15px;
}

/*-----container-end-- */

:root {

  --ft-20: 20px;
  --ft-18: 18px;
  --ft-16: 16px;
  --ft-14: 14px;
  --ft-13: 13px;
  --ft-12: 12px;

}



.form-control {
  display: flex;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid var(--commonborder);
  background: var(--white-color);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  color: var(--primary-font);
  font-size: var(--ft-16);
}

.form-check-input {
  border-color: rgba(12, 17, 29, .30);
}

textarea {
  resize: none;
}

.form-box-padding .form-secton span {
  display: block;
  font-size: var(--ft-14);
  color: var(--gray-font);
  padding-top: 5px;
}

@font-face {
  font-family: 'FontAwesome';
  src: url('fonts/fontawesome-webfont.eot?v=4.7.0');
  src: url('fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-facebook-f::before,
.fa-facebook::before {
  content: "\f09a";
}

@font-face {
  font-family: "tabler-icons";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/tabler-icons.eot?v2.24.0");
  src: url("fonts/tabler-icons.eot?#iefix-v2.24.0") format("embedded-opentype"), url("fonts/tabler-icons.woff2?v2.24.0") format("woff2"), url("fonts/tabler-icons.woff?") format("woff"), url("fonts/tabler-icons.ttf?v2.24.0") format("truetype");
}

.ti {
  font-family: "tabler-icons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ti-star:before {
  content: "\eb2e";
}

.ti-star-fill:before {
  content: "\f6a6";
}

.ti-chevron-down:before {
  content: "\ea5f";
}

.ti-chevron-right:before {
  content: "\ea61";
}

.ti-chevron-left:before {
  content: "\ea60";
}

.ti-chevron-up:before {
  content: "\ea62";
}

.ti-bell:before {
  content: "\ea35";
}

.ti-home:before {
  content: "\eac1";
}

.ti-category:before {
  content: "\f1f6";
}

.ti-user:before {
  content: "\eb4d" !important;
}

.ti-book:before {
  content: "\ea39";
}

.ti-file-description:before {
  content: "\f028";
}

.ti-users:before {
  content: "\ebf2";
}

.ti-users-group:before {
  content: "\fa21";
}

.ti-book-2:before {
  content: "\efc5";
}

.ti-file-search:before {
  content: "\ed5d";
}

.ti-settings:before {
  content: "\eb20";
}

.ti-dots-vertical:before {
  content: "\ea94";
}

.ti-rosette-discount-check:before {
  content: "\f1f8";
}

.ti-direction:before {
  content: "\ebfb";
}

.ti-x:before {
  content: "\eb55";
}

.ti-logout:before {
  content: "\eba8";
}

.ti-trash:before {
  content: "\eb41";
}

.ti-file-pencil:before {
  content: "\f039";
}

.ti-eye:before {
  content: "\ea9a";
}

.ti-report-analytics:before {
  content: "\eecb";
}

.ti-plus:before {
  content: "\eb0b";
}

.ti-minus:before {
  content: "\eaf2";
}

.ti-adjustments:before {
  content: "\ea03";
}

.ti-file-export:before {
  content: "\ede9";
}

.ti-certificate-2:before {
  content: "\f073";
}

.ti-heart:before {
  content: "\eabe";
}

.ti-heart-silid:before {
  content: "\f67c";
}

.ti-download:before {
  content: "\ea96";
}

.ti-clock-hour-4:before {
  content: "\f319";
}

.ti-activity-heartbeat:before {
  content: "\f0db";
}

.ti-route:before {
  content: "\eb17";
}

.ti-copy:before {
  content: "\ea7a";
}

.ti-circle-check:before {
  content: "\f704";
}

.ti-circle-x:before {
  content: "\f739";
}

.ti-cloud-upload:before {
  content: "\ea75";
}

.ti-clipboard-data:before {
  content: "\f563";
}

.ti-message-share:before {
  content: "\f078";
}

.ti-user-check:before {
  content: "\eb49";
}

.ti-caret-up:before {
  content: "\fb2d";
}

.ti-upload:before {
  content: "\eb47";
}

.ti-search:before {
  content: "\eb1c";
}

.ti-photo:before {
  content: "\eb0a";
}

.ti-tags:before {
  content: "\ef86";
}

.ti-bookmarks:before {
  content: "\ed08";
}

.ti-check:before {
  content: "\ea5e";
}

.ti-info-circle:before {
  content: "\eac5";
}

.ti-edit:before {
  content: "\ea98";
}

.ti-pencil-plus:before {
  content: "\f1ec";
}

.ti-route:before {
  content: "\eb17";
}

.ti-info-square-rounded:before {
  content: "\f635";
}

.ti-pencil:before {
  content: "\eb04";
}

.ti-refresh:before {
  content: "\eb13";
}

.ti-text-size:before {
  content: "\f2b1";
}

.ti-file-text:before {
  content: "\eaa2";
}

.ti-dots:before {
  content: "\ea95";
}

.ti-menu-order:before {
  content: "\f5f5";
}

.ti-menu-2:before {
  content: "\ec42";
}

.ti-files::before {
  content: "\edef";
}

.ti-file-analytics::before {
  content: "\ede7";
}


.ti-user-share::before {
  content: "\f9d8";
}


.ti-tilt-shift::before {
  content: "\eefe";
}



/*--------------------------*/
.flex-center-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash {
  /*display: flex;*/
  min-height: 100vh;
}

.dash-nav {
  width: 302px;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: var(--primary-color);
  color: var(--navebar-font);
  font-weight: 600;
  transition: all .3s ease-in-out 0s;
}

.leftsecpos {
  position: relative;
  padding-bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: auto;
}

.left-top-sec {
  padding: 32px 16px 20px 16px;
}

.leftftmenu {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-bottom: 15px;
}

.dash-app {
  margin-left: 302px;
  transition: all .3s ease-in-out 0s;
}

.dass-midd-padd {
  padding: 20px 32px 32px 32px;
}

.main-header {
  margin-bottom: 30px;
  position: relative;
}

.dash-app .support-mobile-sec {
  display: none;
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.header-bell-user {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.header-noti .grayborderbtn {
  width: 40px;
  height: 40px;
  font-size: 24px;
}

.grayborderbtn {
  border: 1px solid var(--commonborder);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-font);
  padding: 10px;
}

.grayborderbtn:hover {
  background-color: var(--primary-color);
  color: var(--white-font);
  border-color: var(--primary-color);
}

.header-pro-photo a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  overflow: hidden;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-pro-photo a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-search-form {
  position: relative;
}

.header-search-form input {
  width: 320px;
}

.header-search-form input[type=submit] {
  position: absolute;
  left: 15px;
  top: 12px;
  width: 20px !important;
  height: 20px;
  background: url(../images/search-icon.svg) no-repeat left center;
  border: none;
  cursor: pointer;
}

.header-search-form .form-input {
  background-color: var(--white-color);
  border: 1px solid var(--commonborder);
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, .05);
  padding: 10px 14px 10px 47px;
}

.mob-navbar {
  position: absolute;
  left: 0;
  top: 4px;
  display: none;
}

.switch-box {
  display: none;
  background: var(--white-color);
  border: 1px solid var(--lightgray-color);
  border-radius: 16px;
  box-shadow: 0px 10.667px 10.667px -5.333px rgba(16, 24, 40, 0.03), 0px 26.667px 32px -5.333px rgba(16, 24, 40, 0.08);
  padding: 20px 8px 12px 8px;
  position: absolute;
  width: 100%;
  z-index: 1;
  left: 20px;
  top: 90px;
  z-index: 99;
}

.switch-box-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.switch-box-h {
  padding: 0 6px;
}

.switch-box-h h3 {
  color: #6A7182;
  font-size: var(--ft-16);
  font-weight: 600;
  line-height: 18px;
  margin: 0;
}

.switch-box.open {
  display: block;
}

.navbar-icon {
  position: absolute;
  right: -43px;
  top: 13px;
  display: none;
}

.mobile-show .navbar-icon {
  right: -32px;
}

.navbar-icon a {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-icon a.desk-none {
  display: none;
  width: 24px;
}

.mobile-show .navbar-icon a.desk-none {
  display: block;
}

.mobile-show .navbar-icon a.desk-none i {
  font-size: 22px;
  color: var(--white-font);
}

.mobile-show .navbar-icon a img.nav-bar-icon {
  display: none;
}

.header-row {
  flex-wrap: wrap;
}

.h-title h2 {
  margin-bottom: 0px;
}

.user-meta h3,
.user-meta span {
  font-size: var(--ft-14);
  line-height: 20px;
}

.user-meta h3 {
  color: var(--white-font);
  font-weight: 600;
  margin: 0;
}

.user-meta span {
  color: var(--secondarygray-font);
  font-weight: 400;
}

.ft-bot-navbar {
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  margin-bottom: 22px;
  margin-top: 10px;
}

.ft-bot-navbar .nav-link {
  padding: 0;
}

.left-bottom-box {
  width: 100%;
}

.left-navbar {
  margin-top: 25px;
}

.left-navbar ul li a {
  align-items: center;
  border-radius: 6px;
  color: var(--navebar-font);
  display: flex;
  font-family: Inter;
  font-size: var(--ft-16);
  font-weight: 600;
  gap: 10px;
  line-height: 24px;
  margin-bottom: 5px;
  padding: 8px 12px 8px 12px;
  text-decoration: none;
  position: relative;
}

.left-navbar ul li a img {
  position: absolute;
  left: 11px;
  top: 8px;
}

.left-navbar ul li a:hover img {
  filter: brightness(0) invert(1);
}

.left-navbar ul li a:hover,
.left-navbar ul li a.active {
  background: var(--navebar-hover-color);
  color: var(--white-font);
}

.account-name {
  margin-bottom: 10px;
  position: relative;
}

.account-info {
  align-items: center;
  background: transparent;
  display: flex;
  justify-content: center;
  padding: 0px;
}

.userbox {
  padding: 16px;
  /*border-top: 1px solid #151923;*/
  border-top: 1px solid rgb(255, 255, 255, 0.2);
}

.userbox-flex,
.userbox-info {
  align-items: center;
  display: flex;
}

.userbox-flex {
  justify-content: space-between;
}

.userbox-info {
  gap: 10px;
}

.left-avtar-img {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 100%;
  background-color: var(--white-color);
}

.left-avtar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.left-navbar .nav-link:focus,
.left-navbar .nav-link:hover {
  color: var(--white-font);
}

.userinfo-dots {
  line-height: normal;
  width: 20px;
  height: 20px;
}

.userinfo-dots i {
  font-size: 20px;
}

.navbar-menu li .nav-submenu .nav {
  display: flex;
  flex-direction: column;
}

.navbar-menu li .nav-submenu a {
  font-size: 15px;
  padding: 5px 10px 5px 10px;
  margin-left: 25px;
  border-radius: 6px;
  position: relative;
}

.navbar-menu li .nav-submenu a:hover {
  background-color: var(--navebar-hover-color);
  /* border-radius: 0; */
  color: var(--white-font);
}

.left-navbar ul li a i {
  font-size: var(--ft-20);
}

.left-navbar ul li a.subarrow::before {
  position: absolute;
  right: 10px;
  top: 8px;
  font-family: "tabler-icons" !important;
  content: "\ea61";
}

.left-navbar ul li.menu-collapse-active a.subarrow::before {
  content: "\ea5f";
}

main.py-4 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.userprofile-logout {
  background: var(--white-color);
  border: 1px solid var(--commonborder);
  border-radius: 8px;
  box-shadow: 0 24px 48px -12px rgba(16, 24, 40, .18);
  padding: 0;
  position: absolute;
  left: 290px;
  width: 150px;
  bottom: 33px;
  display: none;
  z-index: 99;
  overflow: hidden;
}

.userprofile-logout li a {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #eff0f1;
  gap: 5px;
}

.userprofile-logout li a:hover {
  background-color: var(--lightgray-color);
  color: var(--primary-font);
}

.userprofile-logout li:last-child a {
  border-bottom: none;
}

.userprofile-logout li a i {
  font-size: 23px;
}

.header-pro-log {
  background: var(--white-color);
  border: 1px solid var(--commonborder);
  border-radius: 8px;
  box-shadow: 0 24px 48px -12px rgba(16, 24, 40, .18);
  padding: 0;
  position: absolute;
  right: 0px;
  width: 150px;
  top: 45px;
  display: none;
  z-index: 99;
  overflow: hidden;
}

.header-pro-log li a {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #eff0f1;
  gap: 5px;
}

.header-pro-log li a:hover {
  background-color: var(--lightgray-color);
  color: var(--primary-font);
}

.header-pro-log li:last-child a {
  border-bottom: none;
}

.header-pro-log li a i {
  font-size: var(--ft-18);
}

.notification-box {
  background: var(--white-color);
  border: 1px solid #eaecf0;
  border-radius: 12px;
  box-shadow: 0 24px 48px -12px rgba(16, 24, 40, .18);
  /*height: 420px;*/
  margin-top: 10px;
  overflow: hidden;
  overflow-y: hidden;
  overflow-y: visible;
  padding: 10px 0px 10px 0px;
  position: absolute;
  right: 32px;
  width: 64%;
  max-width: 400px;
  width: calc(100% - 30px);
  z-index: 9;
  display: none;
}

.notification-box.noti-open {
  display: block;
}

.notification-box.open {
  display: block;
}

.noti-head {
  margin-bottom: 9px;
}

.noti-head h5 {
  color: var(--primary-font);
  margin-bottom: 0;
  font-size: 16px;
}

.noti-head a {
  color: #151923;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
}

.noti-head a:hover {
  color: var(--gray-font);
}

.noti-bottomborder {
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 0px;
  border-bottom: 1px solid var(--commonborder);
}

.noti-list {
  padding-left: 8px;
  padding-right: 8px;
}

.notification-info-con {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  padding-right: 20px;
}

.noti-avtar-img {
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 100%;
  flex-shrink: 0;
}

.noti-avtar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notification-tabs-sec {
  height: 280px;
  overflow: hidden;
  overflow-y: auto;
}

.notification-info-title h4,
.notification-info-title span {
  color: #667085;
  font-weight: 400;
}

.notification-info-title b,
.notification-info-title strong {
  color: #344054;
  font-weight: 600;
}

.notification-info-title h4 {
  font-size: var(--ft-16);
  line-height: 20px;
  margin: 0;
  font-weight: 600;
}

.notification-listing a {
  position: relative;
  display: flex;
  align-items: flex-start;
  transition: all .3s;
  padding: 8px;
  border-radius: 8px;
}

.notification-listing a:hover {
  background-color: #EFF0F1;
}

.notification-tab-btn {
  gap: 8px;
}

.notification-tab-btn .nav-link {
  border: 1px solid var(--white-color);
  background-color: var(--white-color);
  font-size: var(--ft-14);
  font-weight: 600;
  color: var(--lightblue-font);
  border-radius: 8px;
  padding: 8px 16px;
  line-height: 20px;
}

.notification-tab-btn .nav-link.active,
.notification-tab-btn .show>.nav-link {
  background-color: var(--white-color);
  border-color: var(--commonborder);
  color: var(--primary-font);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.notification-modal .modal-dialog {
  max-width: 825px;
}

.notification-modal .modal-content {
  background: var(--white-color);
  border: 1px solid #f9fafb;
  border-radius: 16px;
  box-shadow: 0 8px 8px -4px rgba(16, 24, 40, .03), 0 20px 24px -4px rgba(16, 24, 40, .08);
}

.notification-modal .search-form {
  width: 100%;
}

.notification-modal .search-form img {
  position: absolute;
  top: 13px;
  left: 14px;
}

.notification-modal .search-form .form-input {
  font-size: var(--ft-16);
  line-height: 24px;
  color: #6A7182;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  border-color: var(--commonborder);
  border-radius: 8px;
  background-color: var(--white-color);
}

.notification-modal h6.popup-title {
  font-size: var(--ft-14);
  font-weight: 600;
  color: #6A7182;
  line-height: 20px;
  margin-bottom: 10px;
}

.noti-heads.flex-center-between.view-all-noti {
  padding: 10px 0px 0px 0px;
  margin-bottom: 0;
  border-top: 1px solid var(--commonborder);
  text-align: center;
  justify-content: center;
}

.noti-heads a {
  color: #151923;
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
}

.noti-heads a:hover {
  opacity: 0.7;
}

.noti-listing:last-child ul li:last-child {
  border-bottom: none;
}

.noti-listing {
  margin-bottom: 15px;
}

.noti-listing:last-child {
  margin-bottom: 0;
}

.noti-listing h5 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
}

.noti-listing li {
  border-bottom: 1px solid var(--commonborder);
  line-break: normal;
}

/* .noti-listing li a{ padding: 10px 15px 10px 10px;display: flex;align-items: flex-start;gap: 8px;} */
.noti-u-img {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  overflow: hidden;
}

.noti-u-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.noti-sm-list {
  position: relative;
  flex-grow: 1;
}

.noti-list-det {
  padding-right: 60px;
}

.noti-list-det h6 {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 4px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
}

.viewprofile-link {
  font-size: 11px;
  color: #707070;
  line-height: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
  margin-bottom: 5px;
  font-weight: 500;
  word-break: break-all;
}

.noti-list-det h6 a {
  font-weight: 500;
  color: var(--secondary-font);
}

.noti-list-det h6 a:hover {
  color: #000;
}

.noti-tile {
  /* position: absolute;top: 14px;right: 0;*/
  font-size: 11px;
  color: #adb4bd;
  line-height: normal;
}

.notifi-flex {
  padding: 10px 15px 10px 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.notifi-flex .noti-u-img a {
  display: flex;
  height: 100%;
  width: 100%;
}


.black-dot {
  background-color: #151923;
}

.green-dot {
  background-color: #12B76A;
}

table.dataTable thead>tr>td.sorting::after,
table.dataTable thead>tr>td.sorting::before,
table.dataTable thead>tr>td.sorting_asc::after,
table.dataTable thead>tr>td.sorting_asc::before,
table.dataTable thead>tr>td.sorting_asc_disabled::after,
table.dataTable thead>tr>td.sorting_asc_disabled::before,
table.dataTable thead>tr>td.sorting_desc::after,
table.dataTable thead>tr>td.sorting_desc::before,
table.dataTable thead>tr>td.sorting_desc_disabled::after,
table.dataTable thead>tr>td.sorting_desc_disabled::before,
table.dataTable thead>tr>th.sorting::after,
table.dataTable thead>tr>th.sorting::before,
table.dataTable thead>tr>th.sorting_asc::after,
table.dataTable thead>tr>th.sorting_asc::before,
table.dataTable thead>tr>th.sorting_asc_disabled::after,
table.dataTable thead>tr>th.sorting_asc_disabled::before,
table.dataTable thead>tr>th.sorting_desc::after,
table.dataTable thead>tr>th.sorting_desc::before,
table.dataTable thead>tr>th.sorting_desc_disabled::after,
table.dataTable thead>tr>th.sorting_desc_disabled::before {
  position: absolute;
  display: block;
  opacity: .3 !important;
  right: 10px;
  line-height: 9px;
  font-size: 14px !important;
  color: var(--gray-font);
}

table.dataTable thead>tr>td.sorting::before,
table.dataTable thead>tr>td.sorting_asc::before,
table.dataTable thead>tr>td.sorting_asc_disabled::before,
table.dataTable thead>tr>td.sorting_desc::before,
table.dataTable thead>tr>td.sorting_desc_disabled::before,
table.dataTable thead>tr>th.sorting::before,
table.dataTable thead>tr>th.sorting_asc::before,
table.dataTable thead>tr>th.sorting_asc_disabled::before,
table.dataTable thead>tr>th.sorting_desc::before,
table.dataTable thead>tr>th.sorting_desc_disabled::before {
  font-family: tabler-icons !important;
  content: "\ea62" !important;
}

table.dataTable thead>tr>td.sorting::after,
table.dataTable thead>tr>td.sorting_asc::after,
table.dataTable thead>tr>td.sorting_asc_disabled::after,
table.dataTable thead>tr>td.sorting_desc::after,
table.dataTable thead>tr>td.sorting_desc_disabled::after,
table.dataTable thead>tr>th.sorting::after,
table.dataTable thead>tr>th.sorting_asc::after,
table.dataTable thead>tr>th.sorting_asc_disabled::after,
table.dataTable thead>tr>th.sorting_desc::after,
table.dataTable thead>tr>th.sorting_desc_disabled::after {
  font-family: tabler-icons !important;
  content: "\ea5f" !important;
}

table.dataTable thead>tr>td.sorting_asc::before,
table.dataTable thead>tr>td.sorting_desc::after,
table.dataTable thead>tr>th.sorting_asc::before,
table.dataTable thead>tr>th.sorting_desc::after {
  opacity: .7 !important;
}

.round-dot {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  display: flex;
  position: absolute;
  right: 14px;
  top: 16px;
}

.action_btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
}

.tab-border-none {
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow-x: inherit;
}

.tab-border-none .dt-row {
  padding-top: 12px;
  margin-bottom: 12px !important;
}

.tab-border-none .col-sm-12 .table {
  background: var(--white-color);
  border: 1px solid #eff0f1;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, .05);
  overflow-x: auto;
}

.tab-border-none .col-sm-12 .table tr:first-child th:first-child {
  border-radius: 13px 0px 0px 0px;
}

.tab-border-none .col-sm-12 .table tr:first-child th:last-child {
  border-radius: 0px 13px 0px 0px;
}

.tab-border-none .col-sm-12 .table tr:last-child td:first-child {
  border-radius: 0px 0px 0px 13px;
}

.tab-border-none .col-sm-12 .table tr:last-child td:last-child {
  border-radius: 0px 0px 13px 0px;
}

.tab-border-none .col-sm-12 .table tr:last-child td.dt-empty,
.tab-border-none .table tr:last-child td.dt-empty {
  border-radius: 0px 0px 13px 13px;
}

.table-sm-btn.greenbg {
  border-color: var(--green-color);
}

.table-sm-btn.greenbg:hover {
  border-color: var(--green-color);
  background-color: var(--green-color);
}

.table-sm-btn.redbg {
  border-color: var(--red-color);
  background-color: var(--red-color);
}

.table-sm-btn.redbg:hover {
  border-color: var(--red-color);
}

.table-sm-btn.orangebg {
  border-color: var(--yellow-color);
}

.table-sm-btn.orangebg:hover {
  border-color: var(--yellow-color);
  background-color: var(--yellow-color);
}

.table-sm-btn.purplebg {
  border-color: #7c3aed;
}

.table-sm-btn.purplebg:hover {
  border-color: #7c3aed;
  background-color: #7c3aed;
}

.table-sm-btn.bluebg {
  border-color: var(--secondary-color);
}

.table-sm-btn.bluebg:hover {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}

.table-sm-btn.blackbg {
  border-color: var(--primary-color);
}

.table-sm-btn.blackbg:hover {
  border-color: var(--table-btn-black-color);;
  background-color: var(--table-btn-black-color);;
}

.table-sm-btn.whitebg {
  border-color: var(--secondarygray-color);
  background-color: var(--lightgray-color);
  color: var(--primary-font);
}

.table-sm-btn.whitebg:hover {
  border-color: var(--secondarygray-color);
  background-color: var(--secondarygray-color);
  color: var(--primary-font) !important;
}

.table-sm-btn.darkgraybg {
  border-color: var(--darkgray-color);
}

.table-sm-btn.darkgraybg:hover {
  border-color: var(--darkgray-color);
  background-color: var(--darkgray-color);
}

.table-sm-btn.bg-info {
  border-color: var(--secondary-color) !important;
  background-color: var(--secondary-color) !important;
}

.table-sm-btn.bg-info:hover {
  border-color: var(--secondary-color) !important;
  background-color: var(--secondary-color) !important;
}

.round-border-btn {
  border-radius: 6px;
  background-color: transparent !important;
  color: var(--primary-font);
}

.round-border-btn:hover {
  opacity: 1;
  color: initial;
}

.round-border-btn.greenbg {
  border-color: var(--green-color);
  color: var(--green-color);
}

.round-border-btn.greenbg:hover {
  background-color: transparent !important;
}

.round-border-btn.redbg {
  border-color: var(--red-color);
  color: var(--red-color);
}

.round-border-btn.redbg:hover {
  background-color: transparent !important;
}

.round-border-btn.orangebg {
  border-color: var(--yellow-color);
  color: var(--yellow-color);
}

.round-border-btn.orangebg:hover {
  background-color: transparent !important;
}

.round-border-btn.bluebg {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.round-border-btn.bluebg:hover {
  background-color: transparent !important;
}

.round-border-btn.blackbg {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.round-border-btn.blackbg:hover {
  background-color: transparent !important;
}

.round-border-btn.darkgraybg {
  border-color: var(--darkgray-color);
  color: var(--darkgray-color);
}

.round-border-btn.darkgraybg:hover {
  background-color: transparent !important;
}

.paging_simple_numbers ul.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.paging_simple_numbers .page-item .page-link {
  align-items: center;
  background: var(--white-color) !important;
  border: 1px solid #d0d5dd !important;
  border-radius: 7px;
  color: #39404f;
  display: inline-flex;
  font-size: var(--ft-14);
  font-weight: 600;
  gap: 8px;
  line-height: 20px;
  padding: 7px 14px;
  text-decoration: none !important;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, .05);
  width: 33px;
  height: 33px;
  justify-content: center;
}

.paging_simple_numbers .page-item .page-link:hover {
  background: 0 0 !important;
  background-color: var(--secondary-color) !important;
  color: var(--white-font) !important;
  border-color: var(--secondary-color) !important;
}

.paging_simple_numbers .page-item.active .page-link {
  background: none !important;
  background-color: var(--secondary-color) !important;
  color: var(--white-font) !important;
  border-color: var(--secondary-color) !important;
}

.paging_simple_numbers .page-item.disabled {
  background-color: transparent;
  opacity: 1;
}

.paging_simple_numbers .page-item.disabled .page-link {
  background: none !important;
  background-color: var(--lightgray-color) !important;
  color: #a0a0a0 !important;
  border-color: #eaebed !important;
}

.select2-dropdown {
  z-index: 9999;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid var(--commonborder);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.select2-container .select2-selection--multiple {
  min-height: 44px;
}

.select2-container--default .select2-selection--multiple {
  border-radius: 8px;
  border-color: var(--commonborder);
}

.select2-container .select2-search--inline .select2-search__field {
  margin-top: 9px;
  margin-left: 10px;
  height: 22px;
  color: #767676;
  font-size: var(--ft-16);
  font-family: "Inter", serif;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-input-placeholder {
  opacity: 0.6;
}

.select2-container .select2-search--inline .select2-search__field::-moz-placeholder {
  opacity: 0.6;
}

.select2-container .select2-search--inline .select2-search__field:-ms-input-placeholder {
  opacity: 0.6;
}

.select2-container .select2-search--inline .select2-search__field:-moz-placeholder {
  opacity: 0.6;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--primary-color);
  color: var(--white-font);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  background: url(../images/chevron-down-arrow.svg) no-repeat right center;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border: none;
  left: 0;
  right: 0;
  margin-left: 0;
}

.select2-container .select2-selection--single {
  height: 44px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 44px;
  right: 6px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #39404F;
  line-height: 42px;
}

.select2-container--default .select2-selection--single {
  border-radius: 8px;
  border: 1px solid var(--commonborder);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  font-size: var(--ft-16);
}

.select2-dropdown {
  border-color: var(--commonborder);
  border-radius: 8px;
}

.select2-container--open .select2-dropdown--below {
  border-top: 1px solid var(--commonborder);
}

/*----------table-start------------*/
.cstmTable {
  width: 100%;
}

.cstmTable th,
.cstmTable td {
  padding: 16px 24px;
}

.cstmTable th {
  color: var(--primary-font);
  font-size: var(--ft-12);
  border-bottom: 1px solid #EBEBED;
  font-weight: 500;
  line-height: 18px;
}

.cstmTable thead {
  background-color: transparent;
  border-radius: 5px
}

.cstmTable td {
  color: var(--gray-font);
  font-size: var(--ft-14);
  border-bottom: 1px solid #EBEBED;
  vertical-align: middle;
}

.cstmTable tr td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.cstmTable tr td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.act-td {
  text-align: right;
}

.table {
  border: 1px solid #dee2e6;
  font-size: var(--ft-16);
}

.table th,
.table thead th {
  background-color: #f0f0f0;
  border-bottom: none;
  font-weight: 600;
}

.table td,
.table th {
  padding: 10px;
}

table.bt thead,
table.bt tbody th {
  display: none;
}

.tab-bord-none th,
.tab-bord-none td {
  border: none;
}

/*----------table-end------------*/

.title-table-head-sec h6 {
  margin-bottom: 15px;
}

.invoice-table .table {
  /* border: none;*/
  border-radius: 12px;
  border-collapse: separate !important;
  border-spacing: 0;
}

.invoice-table th {
  font-size: var(--ft-12);
  color: var(--primary-font);
  font-weight: 500;
}

.invoice-table .cstmTable th {
  padding: 12px 18px;
  background-color: var(--lightgray-color);
  white-space: nowrap;
}

.invoice-table .cstmTable td {
  padding: 16px 18px;
}

.tablesection {
  background: var(--white-color);
  border: 1px solid #eff0f1;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, .05);
  /* overflow-x: auto; -webkit-overflow-scrolling: touch; */
}

.table-sm-btn {
  background-color: var(--primary-color);
  color: var(--white-font);
  font-size: 11px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 6px 10px;
  line-height: normal;
  border: none;
  border: 1px solid var(--primary-color);
}

.green-text {
  color: var(--green-font);
}

.green-text a {
  color: var(--green-font);
}

.greenbg {
  background-color: var(--green-color);
}

.purplebg {
  background-color: #7c3aed;
}

.redbg {
  background-color: var(--red-color);
}

.orangebg.btn:disabled,
.orangebg {
  background-color: var(--yellow-color);
}

.orangebg.btn:disabled {
  color: #fff;
}

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

.blackbg {
  background-color: var(--primary-color);
}

.darkgraybg {
  background-color: var(--darkgray-color);
}

a.table-sm-btn {
  opacity: 1;
  color: var(--white-font);
}

a.table-sm-btn:hover {
  color: var(--white-font) !important;
}

button.table-sm-btn {
  color: var(--white-font);
}

button.table-sm-btn:hover {
  color: var(--white-font) !important;
}

.table-sm-btn,
a.table-sm-btn,
button.table-sm-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  list-style: circle;
  cursor: pointer;
}

.table-sm-btn::before,
.table-sm-btn::after,
a.table-sm-btn::before,
button.table-sm-btn::before,
button.table-sm-btn::after {
  position: absolute;
  width: 0;
  height: 0;
  background-color: rgb(255, 255, 255, 0.2);
  content: "";
  transition: all 0.3s ease-in-out 0s;
}

.table-sm-btn::before,
a.table-sm-btn:before,
button.table-sm-btn:before {
  left: 0;
  bottom: 0;
}

.table-sm-btn:after,
a.table-sm-btn:after,
button.table-sm-btn:after {
  right: 0;
  top: 0;
}

a.table-sm-btn:hover:before,
.table-sm-btn:hover:before,
a.table-sm-btn:hover::after,
.table-sm-btn:hover::after,
button.table-sm-btn:hover:before,
button.table-sm-btn:hover::after {
  width: 100%;
  height: 100%;
}

.desktop-none {
  display: none !important;
  position: relative;
}

.brand-title h6 {
  font-weight: 500;
}

.brand-info h6 {
  font-weight: 400;
  font-size: var(--ft-14);
  margin-bottom: 0px;
}

.brand-div {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  white-space: nowrap;
}

/*.brand-div a {align-items: center; display: flex; gap: 8px; transition:all 0.3s ease-in-out 0s;}*/
.brand-div a .table-hed-title {
  transition: all 0.3s ease-in-out 0s;
}

.brand-div a:hover .table-hed-title {
  opacity: 0.7;
}

/*.table a:hover {opacity: 0.7;}*/
.camp-tab-dark-color .brand-div .brand-icon {
  margin-top: 3px;
}

.camp-tab-dark-color .brand-icon,
.camp-overview-box-border .brand-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  background-color: #F7F6F4;
}

.camp-tab-dark-color .brand-icon img,
.camp-overview-box-border .brand-icon img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.oddeven-table tr:nth-child(2n+1) .brand-icon {
  background-color: var(--white-color);
}

.oddeven-table .table th {
  background-color: var(--white-color);
  padding-top: 12px;
  padding-bottom: 12px;
}

.oddeven-table .table tr:nth-child(odd) {
  background-color: var(--lightgray-color);
}

.oddeven-table .table tr:nth-child(even) {
  background-color: var(--white-color);
}

.oddeven-table .table thead tr:nth-child(1) {
  background-color: var(--white-color);
}

.oddeven-table .table tr td {
  background-color: transparent;
  border-bottom: none !important;
}

.dash-resent-comp .col-lg-6 {
  margin-bottom: 30px;
}

.dashboard-big-box .col-lg-3,
.dashboard-big-box .col-lg-4 {
  margin-bottom: 30px;
}

.table a {
  transition: all 0.3s ease-in-out 0s;
}

.commontable .table {
  margin-bottom: 0px;
  border-radius: 12px;
  overflow: hidden;
  /* overflow-x: auto !important; */
}

.commontable th {
  padding: 10px 13px;
  background-color: var(--lightgray-color);
  white-space: nowrap;
  line-height: 18px;
  font-size: var(--ft-12);
  color: var(--gray-font);
  font-weight: 500 !important;
}

.commontable td {
  padding: 10px 13px;
  color: var(--primary-font) !important;
  font-size: var(--ft-14) !important;
  border-bottom: 1px solid #EBEBED !important;
  vertical-align: middle;
  white-space: nowrap;
}

.status-radio {
  display: flex;
  align-items: center;
  gap: 15px;
}

.radio-div {
  display: inline-flex;
  align-items: center;
  padding: 9px 10px;
  border-radius: 8px;
  border: 1px solid var(--commonborder);
  background: var(--white-color);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, .05);
  color: var(--primary-font);
  font-size: var(--ft-16);
  gap: 7px;
}

.radio-div input,
.radio-div label {
  cursor: pointer;
}

.form-check.radio-div .form-check-input {
  margin-left: 0;
  margin-top: 0;
}

.noti-btn {
  display: flex;
  align-items: center;
  gap: 5px;
}

.noti-btn a {
  border-radius: 5px;
  padding: 2px 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--white-font);
  border: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: normal;
  background-color: var(--primary-color);
}

.noti-cancle-icon {
  position: absolute;
  right: 0px;
  top: -2px;
}

.noti-cancle-icon a:hover {
  opacity: 0.7;
}

a.btn-effect {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  list-style: circle;
}

a.btn-effect::before,
a.btn-effect::after {
  position: absolute;
  width: 0;
  height: 0;
  background-color: rgb(255, 255, 255, 0.2);
  content: "";
  transition: all 0.3s ease-in-out 0s;
}

a.btn-effect:before {
  left: 0;
  bottom: 0;
}

a.btn-effect:after {
  right: 0;
  top: 0;
}

a.btn-effect:hover:before,
a.btn-effect:hover::after {
  width: 100%;
  height: 100%;
}

.text-link-unline {
  position: relative;
  display: inline-flex;
  padding-bottom: 3px;
  line-height: normal;
}

.text-link-unline::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-font);
  content: "";
  transition: all 0.3s ease-in-out 0s;
}

.text-link-unline:hover:before {
  width: 100%;
}

.green-text .text-link-unline::before {
  background-color: var(--green-color);
}

.modal-main-title {
  line-height: normal;
  font-size: 14px;
  color: var(--gray-font);
  font-weight: 500;
}

.modal-main-title h5 {
  margin-bottom: 0px;
  line-height: normal;
  font-weight: 500;
  font-size: 18px;
}

.mod-hed-flex {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mod-title-logo {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  overflow: hidden;
  /* background-color: var(--primary-color); */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mod-title-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fillter-add-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.fil-exp-btns {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.big-btn {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 10px;
  border-radius: 8px;
  display: flex;
  gap: 5px;
  min-height: 44px;
}

.big-btn i {
  font-size: 16px;
}

.big-btn strong {
  font-weight: 700;
}

.table-sm-btn.whiteborder-btn {
  background-color: transparent;
  border: 1px solid var(--commonborder);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, .05);
  color: #39404F !important;
}

.table-sm-btn.whiteborder-btn:hover {
  background-color: var(--lightgray-color);
  color: #39404F !important;
}

.disable-hover:hover {
  color: #39404F !important;
  background-color: transparent !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

.disable-hover:hover:before,
.disable-hover:hover:after {
  display: none;
}

.big-btn.bluebg i.ti-plus {
  padding-top: 2px;
}

.form-box-padding {
  position: relative;
  width: 100%;
  padding: 50px 0px;
  height: 100%;
  display: table;
}

.form-box-padding .container {
  display: table-cell;
  vertical-align: middle;
}

.tab-border-none .dataTables_filter {
  margin-bottom: 20px;
}

.tablesection {
  background-color: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0px;
  padding-bottom: 12px;
}

.tab-border-none table.table {
  background: var(--white-color);
  border: 1px solid #eff0f1;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, .05);
  overflow-x: auto;
}

.tab-border-none .oddeven-table .table th:first-child {
  border-radius: 10px 0px 0px 0px;
}

.tab-border-none .oddeven-table .table th:last-child {
  border-radius: 0px 10px 0px 0px;
}

.table th:first-child {
  border-radius: 10px 0px 0px 0px;
}

.table th:last-child {
  border-radius: 0px 10px 0px 0px;
}

button.nav-link {
  background-color: transparent;
  color: var(--primary-font);
  padding: 0px;
  border-radius: 0px;
  position: relative;
  padding-bottom: 5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

button.nav-link:hover {
  color: var(--primary-font);
}

button.nav-link:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0px;
  height: 1px;
  background-color: var(--primary-color);
  content: "";
  transition: all 0.3s ease-in-out 0s;
}

button.nav-link:hover:before {
  width: 100%;
}

.nav-pills button.nav-link.active,
.nav-pills .show>button.nav-link {
  background-color: transparent;
  color: var(--primary-font);
}

.nav-pills button.nav-link.active::before,
.nav-pills .show>button.nav-link::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary-font);
  content: "";
  transition: all 0.3s ease-in-out 0s;
}

.error {
  color: var(--red-font);
  font-size: var(--ft-12);
}

/* table.table {overflow-x: auto !important; -webkit-overflow-scrolling: touch !important; width: 100% !important;} */
.dataTables_info {
  float: left;
}

.dataTables_paginate {
  float: right;
}

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,
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 {
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  width: 12px;
}

[role=button] {
  cursor: pointer;
}

table.dataTable thead>tr>td.dt-orderable-asc span.dt-column-order::after,
table.dataTable thead>tr>td.dt-orderable-asc span.dt-column-order::before,
table.dataTable thead>tr>td.dt-orderable-desc span.dt-column-order::after,
table.dataTable thead>tr>td.dt-orderable-desc span.dt-column-order::before,
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order::after,
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order::before,
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order::after,
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order::before,
table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order::after,
table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order::before,
table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order::after,
table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order::before,
table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order::after,
table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order::before,
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order::after,
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order::before {
  left: 0;
  opacity: .25;
  line-height: 9px;
  font-size: .8em;
}

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,
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 {
  position: absolute;
  display: block;
  bottom: 50%;
  content: "\25B2";
}

table.dataTable.nowrap td,
table.dataTable.nowrap th {
  white-space: nowrap;
}

table.dataTable tfoot td,
table.dataTable tfoot th,
table.dataTable thead td,
table.dataTable thead th {
  text-align: left;
}

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,
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 {
  position: absolute;
  display: block;
  top: 50%;
  content: "\25BC";
  content: "\25BC" /"";
}

table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order::before,
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order::after,
table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order::before,
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order::after {
  opacity: .6;
}

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

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

table.dataTable>thead>tr>td,
table.dataTable>thead>tr>th {
  border-bottom: none;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control,
table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control {
  cursor: pointer;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control::before,
table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control::before {
  margin-right: .5em;
  display: inline-block;
  box-sizing: border-box;
  content: "";
  border-top: 5px solid transparent;
  border-left: 10px solid rgba(0, 0, 0, .5);
  border-bottom: 5px solid transparent;
  border-right: 0 solid transparent;
}

table.dataTable.dtr-inline.collapsed>tbody>tr.dtr-expanded>td.dtr-control::before,
table.dataTable.dtr-inline.collapsed>tbody>tr.dtr-expanded>th.dtr-control::before {
  border-top: 10px solid rgba(0, 0, 0, .5);
  border-left: 5px solid transparent;
  border-bottom: 0 solid transparent;
  border-right: 5px solid transparent;
}

.tablesection .dt-search {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
}

.tablesection .dt-search .dt-input {
  background-color: var(--white-color);
  border: 1px solid var(--commonborder);
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, .05);
  padding: 7px 14px 7px 14px;
}

.tablesection .dt-container .dt-info {
  display: inline-flex;
  align-items: center;
  padding-top: 15px;
}

.tablesection .dt-container .dt-paging {
  float: right;
  padding-top: 15px;
}

.dt-paging nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

div.dt-container .dt-paging .dt-paging-button {
  align-items: center;
  background: var(--white-color);
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  color: #39404f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ft-14);
  font-weight: 600;
  gap: 8px;
  line-height: 20px;
  padding: 7px 14px;
  text-decoration: none;
  width: 36px;
  height: 36px;
}

div.dt-container .dt-paging .dt-paging-button.disabled,
div.dt-container .dt-paging .dt-paging-button.disabled:active,
div.dt-container .dt-paging .dt-paging-button.disabled:hover {
  color: rgba(0, 0, 0, .5) !important;
  border: 1px solid var(--commonborder);
  background: var(--lightgray-color);
  box-shadow: none;
}

div.dt-container .dt-paging .dt-paging-button.current,
div.dt-container .dt-paging .dt-paging-button.current:hover {
  background: 0 0;
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: var(--white-font) !important;
}

div.dt-container .dt-paging .dt-paging-button:hover {
  background: 0 0;
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: var(--white-font) !important;
}

table.dataTable td.child ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px solid var(--secondarygray-color);
}

table.dataTable td.child ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.common-box {
  box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.10);
  border: 1px solid var(--commonborder);
  border-radius: 12px;
}

.box-padd {
  padding: 20px;
  margin-bottom: 15px;
}

.dt-control-custom .btn {
  width: 28px;
  height: 28px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  border: var(--primary-color);
  color: var(--white-font);
  font-size: 20px;
}

.dt-control-custom .btn:hover {
  background-color: var(--gray-color);
}

table.dataTable thead>tr>td.dt-orderable-asc:hover,
table.dataTable thead>tr>td.dt-orderable-desc:hover,
table.dataTable thead>tr>th.dt-orderable-asc:hover,
table.dataTable thead>tr>th.dt-orderable-desc:hover {
  background-color: var(--lightblue-color);
}

.dgraybg {
  background-color: var(--darkgray-color) !important;
}

.oddeven-table .table .inner-sub-table table tr:nth-child(2n+1) {
  background-color: var(--lightblue-color);
}

/* .oddeven-table .table .inner-sub-table table th {background-color: var(--tabletrbg) !important; color: var(--white-font);} */
.oddeven-table .table .inner-sub-table .bg-body-secondary {
  border-radius: 13px !important;
  overflow: hidden;
  margin: 10px 0px;
  border: 1px solid #dee2e6;
}

div:where(.swal2-container) div:where(.swal2-popup) {
  background-color: var(--white-color) !important;
  border-radius: 16px !important;
  max-width: 400px !important;
  width: 100% !important;
  font-family: "Inter", serif !important;
  padding: 20px !important;
}

.cust-pop-mess h2.my-custom-title {
  font-size: 20px !important;
  font-weight: 600 !important;
  font-family: "Inter", serif !important;
  margin-bottom: 15px !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
  color: #151923 !important;
  text-align: left !important;
}

.cust-pop-mess .swal2-html-container {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: var(--gray-font) !important;
  text-align: left !important;
  padding-top: 0px;
  font-family: "Inter", serif !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.cust-pop-mess div:where(.swal2-icon).swal2-warning {
  border: 8px solid #fef3f2;
  color: #000;
  background: var(--secondarypink-light-color);
  width: 50px;
  height: 50px;
  padding-left: 0px !important;
  padding-right: 0px !important;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cust-pop-mess div:where(.swal2-icon) .swal2-icon-content {
  font-size: 31px !important;
  color: var(--red-font) !important;
  background-image: url(../images/delete-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
  text-indent: -9999999px;
}

div:where(.swal2-container) div:where(.swal2-actions) {
  width: 100% !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap !important;
}

.cust-pop-mess button.btn {
  width: 100% !important;
  padding: 10px !important;
}

.bntsize {
  min-width: 100px;
  min-height: inherit;
}

.removediv {
  display: none;
}

.modal-backdrop.show {
  opacity: 0.8;
}

.searchlist-header {
  position: relative;
}

.searchlist-header input {
  width: 320px;
}

.searchlist-header input[type=submit] {
  position: absolute;
  left: 15px;
  top: 12px;
  width: 20px !important;
  height: 20px;
  background: url(../images/search-icon.svg) no-repeat left center;
  border: none;
  cursor: pointer;
}

.searchlist-header .form-input {
  background-color: var(--white-color);
  border: 1px solid var(--commonborder);
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, .05);
  padding: 10px 14px 10px 47px;
}

.boxlist-border-header {
  border: 1px solid #dee2e6;
  border-radius: 12px;
  margin-top: 2px;
  box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.10);
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 45px;
  width: 455px;
  z-index: 99;
  background-color: var(--white-color);
  display: none;
}

.boxlist-border-header ul {
  font-size: var(--ft-13);
  max-height: 210px;
  overflow: hidden;
  overflow-y: auto;
}

.boxlist-border-header ul li {
  display: flex;
  align-items: center;
  background-color: var(--white-color);
  justify-content: space-between;
  gap: 15px;
}

.boxlist-border-header ul li:nth-child(odd) {
  background-color: var(--lightgray-color);
}

.boxlist-border-header .nav-item {
  padding: 7px 15px;
}

.boxlist-border-header .nav-pills {
  padding-bottom: 8px;
  padding-top: 4px;
}

.boxlist-border-header .ser-list-flex-block {
  display: inherit;
  width: 100%;
}

.boxlist-border-header .ser-list-flex-block a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.boxlist-border-header ul li a {
  padding: 10px 15px;
}

.boxlist-border-header ul li a span {
  position: relative;
  display: inline-flex;
  padding-bottom: 5px;
}

.boxlist-border-header ul li a span::before {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0%;
  height: 1px;
  background-color: var(--primary-font);
  content: "";
  transition: all 0.3s ease-in-out 0s;
}

.boxlist-border-header ul li a:hover span::before {
  width: 100%;
}

.modal form label span {
  color: var(--red-font);
}

.modal-dialog {
  max-width: 600px;
}

.modal form .mb-3 {
  margin-bottom: 7px !important;
}

/* .custom-toast {background-color: #43c242 !important; border-radius:10px !important; display: flex !important; gap:10px; padding:10px 10px 10px 18px !important; font-size: 14px !important; width: calc(100% - 303px) !important; left: 303px !important;} 
.custom-toast .toast-close {opacity: 1;}
*/

.custom-toast {
  /* background-color: var(--secondary-color); */
  border-radius: 0px !important;
  display: flex !important;
  text-align: center;
  justify-content: center !important;
  gap: 10px;
  padding: 10px 10px 10px 10px !important;
  font-size: 14px !important;
  width: 100% !important;
  left: inherit !important;
  right: inherit !important;
  bottom: 0px !important;
  max-width: 100% !important;
}

.custom-toast .toast-close {
  opacity: 1;
  display: none !important;
}

.upload-file-error {
  position: relative;
}

.upload-file-error label.error {
  background-color: var(--lightgray-color);
  padding: 5px 10px;
  font-size: 12px;
  left: 0;
  position: absolute;
  top: 0;
  line-height: normal;
  border-radius: 4px;
  z-index: 1;
  max-width: 50%;
}

.upload-file-error .browserbtn-upload .dragBox,
.upload-file-error .browserbtn-upload,
.upload-file-error .browserbtn-upload .bor-up-photo-r {
  position: inherit;
}

.upload-file-error .logouploadtext {
  display: none;
}


.midd-max-widht {
  max-width: 775px;
  margin: 0px auto 30px auto;
}

.profile-form-box label,
.addlearner-popup label {
  margin-bottom: 5px;
}

.profile-form-box input::-webkit-outer-spin-button,
.profile-form-box input::-webkit-inner-spin-button,
.addlearner-popup input::-webkit-outer-spin-button,
.addlearner-popup input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.profile-form-box input[type=number],
.addlearner-popup input[type=number] {
  -moz-appearance: textfield;
}

.form-check label {
  margin-bottom: 0px;
}

.profile-form-box {
  padding: 20px;
  border-radius: 15px;
  border: 1px solid var(--commonborder);
}

.pro-submitbtn {
  padding-top: 15px;
  border-top: 1px solid var(--commonborder);
}

.pro-submitbtn .big-btn {
  padding: 12px 20px;
}

.profile-form-box h4 {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--commonborder);
}

.profile-form-box label span,
.addlearner-popup label span {
  color: var(--red-font);
}

.photo-max-widht {
  position: relative;
  max-width: 150px;
  max-height: 200px;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
}

.dragBox input[type="file"] {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  top: 0;
  left: 0;
  cursor: pointer;
  text-indent: -999px;
}

.form-input-icon {
  position: relative;
}

.browser-file-bor {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border-radius: 8px;
  border: 1px solid var(--commonborder);
  background: var(--white-color);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  color: #767676;
  font-size: var(--ft-16);
}

.browser-file-bor .file-img-prev {
  width: 29px;
  height: 29px;
  background-color: #eff0f1;
  border-radius: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.browser-file-bor .file-img-prev img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bor-photobg {
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-font);
  background: var(--lightgray-color);
  margin-bottom: 10px;
  transition: all .3s ease-in-out 0s;
}

.bor-photobg:hover {
  background-color: #e5e5e5;
}

.bor-photobg .photo-text-cover {
  font-size: 14px;
}

/* .bor-photobg .file-img-prev {font-size: 18px; width: 30px;  height: 30px; background-color: var(--primary-color); border-radius: 100%; display: flex; align-items: center; justify-content: center;   color: var(--white-color);} */
.bor-photobg .uploadpitcicon {
  font-size: 18px;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-font);
}

.bor-photobg .cov-photo label {
  display: flex;
}

.bor-photobg .up-pit-rel {
  position: relative;
}

.up-pit-rel .photoposi {
  position: relative;
  display: inline-flex;
}

.up-pit-rel .photoposi .file-img-prev {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/*.up-pit-rel .photoposi .file-img-prev::before {position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); opacity: 0; content: ""; transition: all .3s ease-in-out 0s;}
.up-pit-rel .photoposi .file-img-prev:hover:before {opacity: 1;} */
.up-pit-rel .photoposi .file-img-prev img {
  max-height: 230px;
  border-radius: 12px;
}

.closephoto {
  font-size: 13px;
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 1;
}

.closephoto a {
  color: var(--primary-font);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 100%;
  border: 1px solid var(--secondarygray-color);
}


.searchlistpro {
  position: relative;
}

.ser-list-flex-block {
  display: flex;
  align-items: center;
  gap: 7px;
}

.ser-list-img {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.ser-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ser-list-info-title h6 {
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 0px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
  word-break: break-all;
}

.ser-list-info-title {
  font-size: 11px;
  color: var(--gray-font);
  line-height: normal;
}

.ser-list-info-title p {
  line-height: normal;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
  word-break: break-all;
}

.ser-list-flex-block a {
  color: var(--gray-font);
}

.ser-list-flex-block a {
  color: var(--primary-font)
}

/*--------login-box-start-------*/

.login-logo img {
  max-width: 200px;
  max-height: 60px;
}

.login-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.login-logo span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px !important;
  border-radius: 10px;
}

/* background-color: var(--secondary-color); */


.formwhitebg {
  color: var(--white-font);
  background-color: var(--primary-color);
  border-radius: 16px;
  border: 1px solid rgba(12, 17, 29, .1);
  box-shadow: 0 2px 4px -2px rgba(16, 24, 40, .06), 0 12px 32px 0 rgba(16, 24, 40, .1);
  width: 100%;
  padding: 40px 32px 32px 32px;
}

.sm-box-width {
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.form-logo {
  margin-bottom: 10px;
}

.form-title {
  color: var(--white-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  margin-bottom: 15px;
}

.for-employee {
  background: rgba(201, 36, 43, 0.4);
  padding: 7px;
  margin-bottom: 15px;
  border-radius: 7px;
}

.for-employee p {
  font-weight: 300;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.4;
}

.form-title h3 {
  margin-bottom: 10px;
  font-weight: 600;
}

.on-bording-form-part .mb-3 {
  margin-bottom: 18px !important;
}

.on-bording-form-part .form-label {
  color: var(--white-font);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}

.form-input-icon {
  position: relative;
}

.form-control {
  display: flex;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid var(--commonborder);
  background: var(--white-color);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, .05);
  color: var(--primary-font);
  font-size: var(--ft-16);
  line-height: 28px;
}

.form-mes-icon {
  cursor: pointer;
  position: absolute;
  right: 12px;
  top: 8px;
  z-index: 2;
}

.forget-a {
  font-size: 14px;
  color: var(--white-font);
}

.forget-a a {
  font-weight: 600;
  color: var(--white-font);
  font-size: 14px;
  text-decoration: underline;
}

.forget-a a:hover {
  text-decoration: none;
  color: var(--white-font);
}

.form-login-forg .btn-primary {
  color: var(--white-font);
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transition: all 0.3s ease-in-out 0s;
}

.form-login-forg .btn-primary:hover {
  color: var(--white-font);
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  opacity: 0.8;
}

.form-login-forg .btn-primary:focus {
  color: var(--white-font);
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  box-shadow: none;
}

/*--------login-box-end-------*/

img {
  max-width: 100%;
}

.left-top-sec .account-holder img {
  max-height: 60px;
  max-width: 200px;
}

.no-img-mess img {
  max-width: 350px;
}

.groupmessageler {
  padding: 30px;
  height: auto;
  min-height: 200px;
}

.messageler {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 12px;
  color: #929292;
  background-color: var(--lightgray-color);
  border-radius: 12px;
  margin-bottom: 10px;
  flex-direction: column;
  gap: 15px;
}

.message-text {
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 12px;
  color: #929292;
}

.radio-acco .accordion-button:not(.collapsed) {
  color: var(--secondary-font);
}

.orange-gred-bg {
  background: var(--coursebox-color);
}

.orange-gred-bg .boxicon-round-cor i {
  color: var(--coursebox-color);
}

.blue-gred-bg {
  background: var(--learnerbox-color);
}

.blue-gred-bg .boxicon-round-cor i {
  color: var(--learnerbox-color);
}

.black-gred-bg {
  background: var(--learningpathbox-color);
}

.black-gred-bg .boxicon-round-cor i {
  color: var(--learningpathbox-color);
}

.green-gred-bg {
  background: var(--totalgroupbox-color);
}

.green-gred-bg .boxicon-round-cor i {
  color: var(--totalgroupbox-color);
}

.courses-in-progress {
  background: var(--coursesinprogress-color);
}

.courses-in-progress .boxicon-round-cor i {
  color: var(--coursesinprogress-color);
}

.courses-completed .boxicon-round-cor i {
  color: var(--coursescompletedbox-color);
}

.courses-completed {
  background: var(--coursescompletedbox-color);
}

.certificates-box {
  background: var(--certificatesbox-color);
}

.certificates-box .boxicon-round-cor i {
  color: var(--certificatesbox-color);
}

table th {
  background-color: var(--tabletr-color) !important;
  color: var(--white-font) !important;
}

.status-boxbg {
  background-color: var(--statusbg-color) !important;
}

table .table-sm-btn.bg-info {
  border-color: var(--table-btn-blue-color) !important;
  background-color: var(--table-btn-blue-color) !important;
}

table .table-sm-btn.bg-info:hover {
  border-color: var(--table-btn-blue-color) !important;
  background-color: var(--table-btn-blue-color) !important;
}

table .table-sm-btn.blackbg {
  border-color: var(--table-btn-black-color);
  background-color: var(--table-btn-black-color);
}

table .table-sm-btn.blackbg:hover {
  border-color: var(--table-btn-black-color);
  background-color: var(--table-btn-black-color);
}

table .table-sm-btn.orangebg {
  border-color: var(--table-btn-orange-color);
  background-color: var(--table-btn-orange-color);
}

table .table-sm-btn.orangebg:hover {
  border-color: var(--table-btn-orange-color);
  background-color: var(--table-btn-orange-color);
}

.image-preview-pop-over img {
  max-width: 678px;
  border: 1px solid var(--commonborder);
  overflow: hidden;
  border-radius: 6px;
}

.setting-account-sec .form-setting {
  position: relative;
}

.image-preview-pop-over {
  left: 0px !important;
  top: 24px !important;
}

.form-setting a.hoverLink {
  font-size: 14px;
  color: var(--secondary-color);
  transition: all 0.3s ease-in-out 0s;
}

.form-setting a.hoverLink:hover {
  opacity: 0.8;
}

.reload-btn-set a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.ui-widget.ui-widget-content {
  border: none;
  border-radius: 12px;
  box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.10);
}

.ui-widget-header {
  border: none;
  background: #fff;
}

.ui-datepicker .ui-datepicker-calendar thead th {
  padding: 5px 3px;
}

.ui-button,
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: none;
  border-radius: 4px;
  text-align: center;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight,
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  background: var(--tabletr-color);
  color: var(--primary-color);
}

.ui-datepicker-calendar thead tr th.ui-datepicker-week-end:first-child {
  border-radius: 10px 0 0 10px;
}

.ui-datepicker-calendar thead tr th.ui-datepicker-week-end:last-child {
  border-radius: 0 10px 10px 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  cursor: pointer;
  display: flex;
  color: var(--primary-color);
}

.ui-datepicker .ui-datepicker-prev::before,
.ui-datepicker .ui-datepicker-next::before {
  font-family: "tabler-icons" !important;
  content: "\ea61";
  font-size: 15px;
  line-height: 16px;
  font-weight: 600;
  margin: auto;
}

.ui-datepicker .ui-datepicker-prev::before {
  content: "\ea60";
}

.ui-datepicker .ui-datepicker-prev .ui-icon,
.ui-datepicker .ui-datepicker-next .ui-icon {
  display: none;
}

/* .ui-datepicker .ui-datepicker-prev span {  }
.ui-datepicker .ui-datepicker-next span {  } */
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 2px;
  border: none;
  background: transparent;
  color: var(--tabletr-color);
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 2px;
}

.boxlist-border.li_suggestion {
  margin-top: 10px;
  border: none;
  box-shadow: none;
  border-radius: 0px;
}

.boxlist-border.li_suggestion ul {
  max-height: 60vh;
}

.boxlist-border.li_suggestion ul#course_list {
  max-height: 45vh;
}

.boxlist-border.li_suggestion ul li:nth-child(odd) {
  background-color: transparent;
}

.boxlist-border.li_suggestion ul .searchitemlist {
  border-bottom: 1px solid var(--commonborder);
  padding: 12px 10px;
}

.boxlist-border.li_suggestion ul .searchitemlist:last-child {
  border: none;
}

.boxlist-border.li_suggestion ul .loading_learner {
  justify-content: center;
}

.boxlist-border.li_suggestion ul .loading_learner img {
  width: 50px;
}

.common-box.box-padd.course-box-sec.course-bg-4 {
  position: relative;
}

.new-due-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}

.new-due-action input[type=number]::-webkit-inner-spin-button,
.new-due-action input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.new-due-action .new-due-apply {
  display: flex;
  align-items: center;
  gap: 10px;
}

.new-due-action .error-due-date {
  position: absolute;
  bottom: 0px;
  right: 20px;
}

.new-due-action .cur-group-lear {
  gap: 0;
}

.new-due-action .new-due-apply .table-sm-btn.blackbg {
  font-size: 13px;
}

.date-day-input input.input-day,
.new-due-action .cur-group-lear .date-day-input input.input-date {
  border-radius: 5px;
  cursor: pointer;
  padding: 2px;
  border: 1px solid var(--commonborder);
}

.new-due-action .cur-group-lear .date-day-input input.input-date {
  width: 105px;
}


/* .camp-tab-dark-color .brand-icon img,
.camp-overview-box-border .brand-icon img {
  max-width: 100%;
  max-height: 100%;
} */


.curl-flex-cen {
  display: flex;
  align-items: center;
  gap: 5px;
}

.noti-head-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.noti-clickhere a {
  font-size: 11px;
  text-decoration: none;
  color: var(--secondary-color);
}

.noti-clickhere a:hover {
  color: var(--primary-font)#000;
  opacity: 0.7;
}


/* .boxlist-border.li_suggestion.list_scrollable ul {max-height: 28vh;} */
a.setting_icon {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  font-size: 14px;
}

a.setting_icon:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.popup_due_date .cour-flex {
  flex-direction: column;
}

.popup_due_date .cour-flex .cour-dur-cont {
  width: 100%;
  margin-bottom: 10px;
}

.popup_due_date .cour-flex .new-due-action {
  justify-content: flex-start;
  gap: 12px;
}

.popup_due_date .cour-flex .new-due-action .date-day-input input.input-day {
  min-width: 55px;
  width: 55px;
}

.popup_due_date .date-day-input input.input-day,
.popup_due_date .new-due-action .cur-group-lear .date-day-input input.input-date {
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
}

.brand-color-picker .form-check .error {
  top: 25px;
  position: relative;
  font-size: 15px;
}

.modal .modal-dialog.import-modal {
  max-width: 1140px;
}

.import-download {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
}

.import-download .form-label {
  margin-bottom: 0px;
}

.import-download .table-sm-btn {
  font-size: 14px;
  line-height: 1.4;
}

.clsimportlog {
  margin-top: 10px;
}

.clsimportlog .import-output {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.clsimportlog .import-errors {
  padding: 2px 6px;
  border-radius: 4px;
  background: #ffa7a7;
}

.clsimportlog .import-underline span,
.clsimportlog ul li .import-errors {
  display: block;
  width: fit-content;
  line-height: 17px;
  margin: 1px 0;
}

.clsimportlog .import-underline span {
  display: inline-block;
  padding: 2px 2px;
  border-radius: 0px;
  border-bottom: 1px solid #ffa7a7;
}

.clsimportlog ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dee2e6;
  position: relative;
}

.clsimportlog ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.clsimportlog ul li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(220, 53, 69);
}

.clsimportlog ul li b {
  width: 75px;
  display: inline-block;
}

.clsimportlog .imp-row-error span {
  display: block;
}

.clsimportlog .imp-reason-error,
.clsimportlog .imp-row-error {
  display: flex;
  gap: 5px 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.boxlist-border-header ul li .search-tab-icon {
  background-color: var(--lightgray-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.boxlist-border-header ul li .search-tab-icon i {
  font-size: 18px;
}

.boxlist-border-header ul li:nth-child(odd) .search-tab-icon {
  background-color: var(--white-color);
}

.brand-color-picker .gunmetal-gray-btn.form-check-input {
  background: #545859 !important;
}

.brand-color-picker .cherry-red-btn.form-check-input {
  background: #d22730 !important;
}

.brand-color-picker .snow-white-btn.form-check-input {
  background: #fcfcfc !important;
}

.brand-color-picker .charcoal-black-btn.form-check-input {
  background: #333 !important;
}

.brand-color-picker .golden-yellow-btn.form-check-input {
  background: #ffc700 !important;
}

.brand-color-picker .tangerine-orange-btn.form-check-input {
  background: #ff953a !important;
}

.brand-color-picker .scarlet-orange-btn.form-check-input {
  background: #ff3a21 !important;
}

.invalid-feedback,
label.error {
  background-color: #ffe0e0;
  padding: 5px 10px;
  border-radius: 5px;
  line-height: normal;
  color: #b60808;
  border: 1px solid #e8979d;
  font-weight: 500;
}

label.error {
  display: block;
  margin-top: 3px;
}


/* 24-07-25 */
.text-link-unline {
  display: inline-block;
  margin-left: 14px;

}

.text-link-unline i {
  margin-left: 5px;

}

.is-invalid .select2-container--default .select2-selection--multiple {
  border-color: var(--bs-form-invalid-border-color);
  background-image: url(../images/in-valid.svg);
  background-repeat: no-repeat;
  background-position: right calc(.375em + .1875rem) center;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}


.note-box {
  margin: 8px 0 4px 0px;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.2px;
  background: #ececec;
  border-radius: 6px;
  padding: 3px 8px;
  width: fit-content;
}

.data-table-popup-button {
  padding: 0px 0;
  border: 0;
  font-size: 20px;
  color: var(--gray-font);
}

.data-table-popup-button:first-child:active,
.data-table-popup-button:active,
.data-table-popup-button:focus-visible,
.data-table-popup-button:hover {
  background: transparent;
  color: var(--primary-font);
}

.data-table-view-more {
  max-width: 550px !important;
}

.data-table-view-more.cust-pop-mess h2.my-custom-title {
  padding: 0;
  font-size: 24px !important;
}

.data-table-view-more .swal2-close {
  width: 30px;
  height: 30px;
  margin-bottom: -25px;
}

.data-table-view-more.cust-pop-mess .swal2-html-container {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 20px;
  margin-top: 10px;
}

.data-table-view-more.cust-pop-mess .swal2-html-container p {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
}

.data-table-view-more.cust-pop-mess .swal2-html-container p::before {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: 6px;
  width: 6px;
  height: 11px;
  border: solid var(--green-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.data-table-view-more.cust-pop-mess .swal2-html-container p {
  margin: 0;
}

.data-table-view-more .swal2-actions {
  margin: 0 !important;
}

.red-text a {
  color: var(--red-color);
}

.red-text a::before {
  background-color: var(--red-color);
}

.quiz-attempt-box {
  border-radius: 12px;
  margin-bottom: 30px;
  /* border: 1px solid #e0e0e0; */
  /* background-color: rgba(250, 179, 61, 0.1); */
  background-color: var(--lightgray-color);
  overflow: hidden;
}

.quiz-attempt-box.final-attempt-box {
  background-color: rgba(222, 241, 227, 0.4);
}

.quiz-attempt-box .quiz-attempt-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 15px;
  padding: 15px 25px;
  margin-bottom: 20px;
  /* border-bottom: 1px solid #e0e0e0; */
  /* background: rgba(250, 179, 61, 1); */
  background: #707070;
}

.quiz-attempt-box.final-attempt-box .quiz-attempt-title {
  background: #059669;
}

.quiz-attempt-box .quiz-attempt-title h3,
.quiz-attempt-box .quiz-attempt-title h4 {
  color: #fff;
}

.quiz-attempt-box .quiz-attempt-title h3 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 0;
}

.quiz-attempt-box .quiz-attempt-title h4 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}

.quiz-attempt-box .lightgreenbg {
  background: transparent;
  border: 1px solid var(--green-color);
}

.quiz-attempt-box .lightredbg {
  background: transparent;
  border: 1px solid var(--navebar-hover-color);
}

.quiz-attempt-box .lear-report-sec {
  padding: 0 25px;
  margin-bottom: 25px;
}

.quiz-attempt-box .rep-listing::before {
  top: -5px;
  right: -75px;
  width: 180px;
  height: 150%;
  transform: none;
  clip-path: polygon(60px 0, 100% 0, 100% 100%, 0% 100%);
}


/*11-11-25*/
/* //for disable access */
.disabled-field,
.disabled-field input,
.disabled-field textarea,
.disabled-field select,
.disabled-field button {
  pointer-events: none;
  /* block clicks/typing */
  opacity: 0.6;
  /* faded look */

  cursor: not-allowed;
  /* show disabled cursor */
}



/* 01-09-25 */

.disabled-field {
  background-color: black;
  color: #fff;
  border-radius: 8px;
}

.radio-deactive {
  background-color: transparent;
  color: var(--primary-font);
}

.disabled-field .select2-selection--single,
.disabled-field .select2-selection--multiple {
  background-color: black;
  color: #fff;
}

.disabled-field .select2-search--inline textarea::placeholder {
  color: #fff !important;
}

#description::placeholder {
  color: #fff;
}

.disabled-field .select2-selection__choice__remove {
  display: none;
}

.disabled-field .select2-selection--single .select2-selection__rendered,
.disabled-field .select2-selection--multiple ul li {
  background-color: #666666 !important;
  border: none !important;
  color: #ffffff !important;
}

.disabled-field .select2-selection--single .select2-selection__rendered {
  width: fit-content;
  margin: 3px;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 5px 9px 5px;
  line-height: 1.2;
  border-radius: 6px;
}


/* .toggle-switch, */

.btn-blackbg {
  background-color: var(--primary-color);
  padding: 8px 8px !important;
  border-radius: 7px;
  color: var(--white-font);
  display: flex;
  align-items: center;
}

.btn-blackbg.form-switch {
  padding-left: 0px;
  /* padding-right: 2.5em; */
  line-height: normal;
  min-height: inherit;
  margin: 0px;
  display: flex;
  align-items: center;
  width: fit-content;
}

/* .toggle-switch { background-color: transparent; color: var(--primary-font); display: flex; align-items: center; margin-bottom: 10px; } */
#settingform .toggle-switch {
  margin: 30px auto;
}

.btn-blackbg.form-switch label {
  line-height: normal;
  color: var(--white-font);
  margin: 0;
  cursor: pointer;
  padding-right: 8px;
}

.btn-blackbg .form-check .form-check-input {
  float: none;
}

.btn-blackbg.form-switch .form-check-input:focus {
  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='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
}

.btn-blackbg.form-switch .form-check-input:checked[type=checkbox]:focus {
  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");
}

.btn-blackbg .form-check-input:checked {
  background-color: var(--gray-color);
}

.toggle-switch .form-check-input,
.btn-blackbg .form-check-input {
  height: 20px;
  width: 36px;
  margin: 0px;
  background-color: var(--gray-color);
  cursor: pointer;
}

.btn-blackbg.form-switch .form-check-input {
  margin-left: 0px;
  background-color: var(--secondary-color);
}

.toggle-switch .form-check-input {
  --bs-form-switch-bg: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e);
  background-image: var(--bs-form-switch-bg);
  background-position: left center;
  border-radius: 2em;
  transition: background-position .15s ease-in-out;
  margin-left: 0;
  background-color: var(--secondary-color);
  box-shadow: none !important;
  border: none !important;
}


/* 12-11-25 */
.search-panel .remove_all_btn,
.search-panel .add_all_btn {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.search-panel {
  border: 1px solid var(--commonborder);
  padding: 20px 20px;
  border-radius: 8px;
}

.search-panel .search-result .left-list {
  border-right: 1px solid var(--commonborder);
}

.search-panel .card-cls {
  height: 421px;
  overflow-y: scroll;
  margin-bottom: 30px;
  flex: 1;
  max-height: 450px;
  overflow-y: auto;
}

.search-panel .search-result .card-cls.group_card .card {
  display: flex;
  flex-direction: inherit;
}


.search-panel .card-text {
  line-height: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}


.search-panel .like-tooltip .note-box {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 100%;
  left: -61px;
  transform: translateX(-50%);
  width: 214px;
  line-height: 1.4;
  padding: 6px 10px;
  transition: all 0.3s linear;
}

.search-panel .like-tooltip .note-box::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ececec;
}
/* 
span.dtr-data, .dtr-inline tr:first-child td:nth-child(2){
  white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 400px; 
    display: block;  
}

.dtr-details li:first-child{justify-content: flex-start !important;} */

/*-----------------*/
.addlearner-popup button.btn-secondary {padding: 5px 5px;
  font-size: 12px;
  line-height: normal;
  margin-left: 0px;
  color: #d92d20;
  background-color: transparent;
  border: none;
  text-decoration: underline;}

  
.learner-user-profile {
    display: flex;
    gap: 70px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    padding: 15px;
    border-radius: 20px;
    background-color: var(--lightgray-color);
}

.profile_info {
    padding: 20px 30px;
    border-radius: 15px;
    background-color: var(--primary-color);
    text-align: center;
    font-size: 13px;
    line-height: normal;
    color: var(--white-font);
    position: relative;
    overflow: hidden;
}

.profile_info h6 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--white-font);
}

.profile_info p {
    line-height: normal;
    margin-bottom: 0px;
}




.learner-pro-img {
    width: 79px;
    height: 79px;
    overflow: hidden;
    position: relative;
    /* background-color: var(--white-color); */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto 10px auto;
    padding: 2px;
    border-radius: 100%;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-font);
    border: 5px solid rgba(255, 255, 255, 0.5);
    
}

.learner-pro-img img {
    max-width: 72px;
    max-height: 72px;
}

.progress-cls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.status-cls h6 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.answer-cls li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.answer-cls li span strong {
    font-size: 18px;
}

.answer-cls li span {
    display: flex;
    align-content: center;
    gap: 5px;
}

.answer-cls li .box-cl {
    font-size: 18px;
}

.answer-cls li .box-cl i.ti-circle-check {
    color: var(--green-font);
}

.answer-cls li .box-cl i.ti-circle-x {
    color: var(--red-font);
}

.pro-box-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}


.chart-container {
    position: relative;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.chart-container canvas {
    z-index: 2;
    position: relative;
}

.chart-center-position {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 14px auto auto auto;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.chart-pers {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cou-pro-color {
    width: 15px;
    height: 10px;
    background-color: #000;
    border-radius: 3px;
}

.greencolorbg {
    background-color: var(--green-color);
}

.yellowcolorbg {
    background-color: var(--yellow-color);
}

.graycolorbg {
    background-color: var(--secondarygray-color);
}

.skycolorbg {
    background-color: rgb(0, 210, 248 );
}

.reporting-box {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.course-char-box {
    gap: 20px 100px;
}

.reporting-box h2 {
    margin-bottom: 5px;
}

.ch-report span {
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 5px;
    color: var(--white-font);
}

.ch-report i {
    font-size: 18px;
}

.col-pl {
    position: relative;
}

.cour-rep-flex {
    display: inline-flex;
    flex-direction: column;
}


/*-----*/

.all-filter-group .select2-selection__clear {
    display: none;
}

.all-filter-group {
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 8px;
    border: 1px solid var(--commonborder);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    font-size: var(--ft-14);
    padding: 0px 0px 0px 10px;
    font-weight: 500;
}

.all-filter-group .select2-container--default .select2-selection--single {
    border-radius: 0px;
    border: none;
    box-shadow: none;
    font-size: var(--ft-14);
}

.all-filter-group .select2-container .select2-selection--single {
    height: 42px;
    border-radius: 0px 10px 10px 0px;
}

.all-filter-group .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px;
}

.all-filter-group .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 42px;
}

.all-filter-group .select2-container {
    min-width: 140px !important;
    width: 140px !important;
}

.all-filter-group .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-weight: 700;
}

.all-filter-group .select2-container .select2-selection--single .select2-selection__rendered {
    padding-right: 27px;
}


.select-2-box.custom-dropdown .select2-container .select2-search--inline .select2-search__field {
    font-family: Inter;
}

.select-2-box.custom-dropdown .select2-container--default.select2-container--focus .select2-selection--multiple {
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.select-2-box.custom-dropdown .select2-container--default .select2-selection--multiple {
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding-bottom: 1px;
    padding-right: 78px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 0;
    margin-left: 0;
    background-color: var(--white-color);
    border: 1px solid #e4e5e8;
    color: #39404f;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 21px 9px 5px;
    line-height: 1.2;
    border-radius: 6px;
}

.select2-container--default .select2-selection--multiple li.select2-selection__choice {
    margin: 3px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    top: 8px;
    right: 2px;
    z-index: 1;
    color: var(--lightblue-font);
    left: inherit;
    border: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    background-color: transparent;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    margin: 0;
    padding: 0;
    white-space: pre-wrap;
}

.select2-selection__choice__display .select2-selection__choice img.selected_option {
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 100%;
    max-width: 100%;
    height: auto;
    max-width: 16px;
    max-height: 16px;
    display: inline-flex;
    align-items: center;
    margin-right: 5px;
    width: 100%;
    height: 16px;
    object-fit: cover;
}

.select2-results__option img.img-thumbnail {
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 100%;
    max-width: 100%;
    height: auto;
    max-width: 24px;
    max-height: 24px;
    display: inline-flex;
    align-items: center;
    margin-right: 5px;
    width: 24px;
    height: 24px;
}

body .select2-container--default .select2-results__option--selected span::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 6px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/check-icon-black.svg) no-repeat;
    background-position-x: 0;
    background-position-y: 0;
    background-size: auto;
    background-position: center;
    background-size: contain;
}

body .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--lightgray-color);
    color: var(--primary-font);
}

body .select2-container--default .select2-results__option--selected {
    background-color: #e3e3e3;
    color: var(--primary-font);
}

.select2-selection__choice__display .select2-selection__choice img.selected_option {
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 100%;
    max-width: 100%;
    height: auto;
    max-width: 16px;
    max-height: 16px;
    display: inline-flex;
    align-items: center;
    margin-right: 5px;
    width: 100%;
    height: 16px;
    object-fit: cover;
}


.learner-training-info .section-header {flex-wrap: wrap;}
.learner-training-info .all-filter-group input.datepicker {width: 109px;}
.learner-training-info .trainig-sec {min-width: 235px !important; width: auto !important;}



/* notification bell count css */

.noti-btn {
    position: relative;
   /* display: inline-block; */
}

.noti-btn i {
    font-size: 20px;
    position: relative;
}

.noti-count {
    position: absolute;
    /*top: -6px;
    right: -6px;
    */
    top: -15px;
    right: -9px;
    background: #ff3b30;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 1px 1px;
    line-height: 1;
    border-radius: 50%;
    min-width: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 29px;
    width: 100%;
    height: 29px;
}

/* end */

.leftftmenu .left-bottom-box .left-navbar {margin-bottom: 20px; margin-top: 20px;}
.session-status .btn-group a.btn {border-radius: 5px !important; border: none;}
.setting-account-sec .form-setting a {color: #d22730;}
.setting-account-sec .form-setting a:hover {color: #d22730; text-decoration: underline;}
.common-multi-color-bg {background: #ccc; padding: 16px; border-radius: 15px; display: flex; align-items: center; gap: 16px; margin-bottom: 16px; position: relative; transition: all 0.3s; overflow: hidden;}
.common-multi-color-bg::before, .common-multi-color-bg::after {position: absolute;  top: 0; height: 100%; background-clip: border-box; content: "";}
.common-multi-color-bg::before {left: 0; background: linear-gradient(45deg, rgba(255, 255, 255, 0.50), rgba(255, 255, 255, 0.30), transparent) border-box;  width: 100%;}
.common-multi-color-bg::after {right: 0; background: linear-gradient(93deg,rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, 0.15) 100%); width: 80%;}
.common-multi-color-bg.red-bgcolor {background-color: #d92d20;}
.common-multi-color-bg.green-bgcolor {background-color: #059669;}
.common-multi-color-bg.orange-bgcolor {background-color: #ff752c;}
/*---------------*/
.acc-colr {color: #059669;}
.ped-colr {color: var(--yellow-color);}
.dec-colr {color: var(--red-color);}
.session-meta {display: flex; flex-wrap: wrap;  gap:5px 10px; font-size: 14px;}
.learner-detail {display: flex; align-items: center; margin-top: 10px; gap: 10px;}
.learner-detail h4 {margin-bottom: 0; color: var(--secondary-color); font-size: 16px;}
/*----------*/

.session-content, .session-status {position: relative; z-index: 1;}
/* .black-cont-ft, .black-cont-ft .session-content a, .black-cont-ft .session-title, .black-cont-ft span  {color: #000 !important;}
.white-cont-ft, .white-cont-ft .session-content a, .white-cont-ft .session-title, .white-cont-ft span  {color: #fff !important;} */
.box-border-green {border-bottom: 6px solid #059669; border-left: 3px solid #059669;}
.box-border-red {border-bottom: 6px solid #d92d20; border-left: 3px solid #d92d20;}
.box-border-orange {border-bottom: 6px solid #ff752c; border-left: 3px solid #ff752c;}
.box-border-black {border-bottom: 6px solid #000; border-left: 3px solid #000;}
.box-border-skyblue {border-bottom: 6px solid #00d2f8; border-left: 3px solid #00d2f8;}
.box-border-purple {border-bottom: 6px solid #7c3aed; border-left: 3px solid #7c3aed;}
.common-multi-color-bg .session-status .btn-group .btn {border: 1px solid rgba(255, 255, 255, .3);}
.common-multi-color-bg .session-content {padding: 10px 15px; border-radius: 10px; background: rgba(255, 255, 255, 6.4); background: linear-gradient(90deg,rgba(255, 255, 255, 0.70) 20%, rgba(255, 0, 0, 0) 60%);}
.manage-schedule-popup .common-multi-color-bg .session-title{font-size: 15px; margin-bottom: 5px;}
.manage-schedule-popup .common-multi-color-bg .session-content {font-size: 10px; padding: 8px; flex: 1; line-height: normal;}
.manage-schedule-popup  .common-multi-color-bg .session-title img {width: 30px; height: 30px;}
.manage-schedule-popup .common-multi-color-bg .session-content .session-meta {font-size: 11px; line-height: normal;}
.manage-schedule-popup .common-multi-color-bg {padding: 8px;}
.manage-schedule-popup .common-multi-color-bg .learner-detail {margin-top: 5px; gap:5px 10px;}

.common-multi-color-bg .session-title {display: flex; align-items: center; gap: 7px;}
.common-multi-color-bg .session-title img {width: 35px; height: 35px; object-fit: cover; border-radius: 100%; overflow: hidden; border: 1px solid #ccc;}



.session-meta i {
    margin-right: 5px;
}

.session-meta .date i::before {
    content: "\ee21";
}

.session-meta .time i::before {
    content: "\f318";
}
.ti-map-pin::before {
    content: "\eae8";
}
.calendar-grid .training-event {border-left-width: 5px; border-left-style: solid;}

.cls-learner-profile-box {margin-bottom: 30px !important;}
.template-color {width: 40px; height: 15px; border-radius: 10px; margin-bottom: 0px;}
/* .box-border-green.template-color {border-bottom: 3px;} */

.list_training .session-content{width: 50%; word-wrap: anywhere;}

.calendar-grid .calendar-day .training_required {/* border-bottom: 3px solid rgba(0, 100, 0, 0.5); border-right: 3px solid rgba(0, 100, 0, 0.5); border-radius: 8px; */ position: relative; padding-right: 23px;}

.cls-learner-report {margin-bottom: 15px; background-color: #545859; border-radius: 10px; }
.cls-learner-report ul {display: flex; align-items: center;}
.cls-learner-report ul li {display: inline-flex;  position: relative;}
.cls-learner-report ul li.cls-active::before {position: absolute; left: 0; right: 0; margin-left: auto; margin-right: auto; bottom: -6px; width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent; border-top: 8px solid var(--red-color); background-color: transparent; content: "";}
.cls-learner-report ul li a {display: inline-flex; padding: 15px 25px; line-height: normal; font-weight: 500; color: #fff; align-items: center; gap: 4px;}
.cls-learner-report ul li:first-child a {border-radius: 10px; margin-left: -1px;}
.cls-learner-report ul li:last-child a {border-radius: 10px;} 
.cls-learner-report ul li a:hover {background-color: #3c4142;}
.cls-learner-report ul li.cls-active a, .cls-learner-report ul li.cls-active a:hover {background-color: var(--red-color); color: #fff;}


.common-multi-color-bg .round-border-btn.greenbg {border: 1px solid rgba(255, 255, 255, .3) !important; color: #fff !important; background-color: var(--green-color) !important;}

.common-multi-color-bg .round-border-btn.redbg {border: 1px solid rgba(255, 255, 255, .3) !important; color: #fff !important; background-color: var(--red-color) !important;}

.common-multi-color-bg .round-border-btn.orangebg {border: 1px solid rgba(255, 255, 255, .3) !important; color: #fff !important; background-color: var(--yellow-color) !important;}

/*------10-12-25-------*/



.sendcertificate {margin-left: 10px;}
.learner-report-box .profile_info {padding: 20px 10px; max-width: 300px; width: 100%;}
.learner-report-box .learner-pro-img img {width: 70px; height: 70px;}
.learner-report-box .progress-cls {max-width: 340px; width: 100%;}
.learner-report-box .progress-box-contain {flex: 1;}
.form-login-forg .card-body button.btn-secondary { padding: 6px 5px; font-size: 12px; line-height: normal; margin-left: 0px; color: #fff; font-weight: 600; background-color:transparent; border:none; text-decoration:underline; float: right;}
.form-login-forg .card-body button.btn-secondary:hover {text-decoration: none;}
.input-group-append .company-cancel-btn {height: 100%; border-radius: 0px 8px 8px 0px; border-color: var(--red-color); background-color: var(--red-color); color: #fff;}
.input-group-append .company-cancel-btn:hover  {border-color: #b93138; background-color:#b93138; color: #fff;}
.input-group-append .company-cancel-btn:focus {border-color: var(--red-color); background-color: var(--red-color); color: #fff;}

.learner-form-sec .fillter-add-row form {display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; flex-wrap: wrap; width: 100%;}
.learner-form-sec .all-filter-group .rangepicker {max-width: 240px; min-width: 240px; background-color: #fff; background-image: url(../images/calendar-time.svg); background-repeat: no-repeat; background-size: 20px; background-position: right 8px center; border: none; font-family: "Inter", serif; font-size: 14px; font-weight: 700; color: #39404F;}
.learner-progress-page-sec .learner-chart-1 {margin-top: 0px;}
.learner-progress-page-sec .learner-chart-2, .learner-progress-page-sec .learner-chart-3 {margin-top: 40px;}
.learner-progress-page-sec .note-box {margin-top: 30px; /* background: var(--navebar-hover-color); color: var(--white-font); */}
.learner-progress-page-sec .learner-performers .note-box {margin-top: 5px; margin-bottom: 20px;}
.learner-progress-page-sec .learner-perf .note-box {margin-top: 0px; margin-bottom: 10px;}
.learner-progress-page-sec ul.pagination{ display: flex;justify-content: center;gap: 4px;align-items: center;}
.learner-progress-page-sec .page-item .page-link{ align-items: center;background: var(--white-color)!important;border: 1px solid #d0d5dd!important;border-radius: 7px;color: #39404f;display: inline-flex;font-size: var(--ft-14);font-weight: 600;gap: 8px;line-height: 20px;padding: 7px 14px;text-decoration: none!important;box-shadow: 0 1px 2px 0 rgba(16,24,40,.05);width: 33px;height: 33px;justify-content: center;}
.learner-progress-page-sec .page-item .page-link:hover{ background: 0 0!important;background-color: var(--secondary-color)!important;color: var(--white-font)!important;border-color: var(--secondary-color)!important;}
.learner-progress-page-sec .page-item.active .page-link{ background: 0 0!important;background-color: var(--secondary-color)!important;color: var(--white-font)!important;border-color: var(--secondary-color)!important;}
.learner-progress-page-sec .page-item.disabled{ background-color: transparent;opacity: 1;}
.learner-progress-page-sec .page-item.disabled .page-link{ background: 0 0!important;background-color: var(--lightgray-color)!important;color: #a0a0a0!important;border-color: #eaebed!important;}
.chart-box.lms-learner-chart-1, .chart-box.lms-learner-chart-2 {height: 100%;}

.filters_Applied {width: 100%; display: flex; line-height: normal; font-weight: 600; padding-bottom: 17px; border-bottom: 1px solid #eaeaea !important; }
.filters_Applied .note-box {margin-top: 0px !important; margin-bottom: 0px !important;}
.learner-perf {margin-top: 40px;}

.action_btn a i {color: #fff; font-size: 14px;}

.profile-default-box {background-color: #f7f7f7 !important; border: 1px solid #545859; border-left: 6px solid #545859; }
.profile-default-box .profile_info {background-color: #545859;}
.profile-red-box {background-color: #FEF2F2 !important; border: 1px solid #E93B3B; border-left: 6px solid #E93B3B; }
.profile-red-box .profile_info {background-color: #E93B3B;}
.profile-green-box {background-color: #F0FDF4 !important; border: 1px solid #16A34A; border-left: 6px solid #16A34A; }
.profile-green-box .profile_info {background-color: #16A34A;}
.profile-yellow-box {background-color: #FEFCE8 !important; border: 1px solid #E3AB07; border-left: 6px solid #E3AB07; }
.profile-yellow-box .profile_info {background-color: #E3AB07;}
.profile-orange-box {background-color: #FFF7ED !important; border: 1px solid #F66D14; border-left: 6px solid #F66D14; }
.profile-orange-box .profile_info {background-color: #F66D14;}

.cls-inactive-details{ position: absolute;top: 8px;right: -33px;padding: 6px 10px;background: #fef2f2;line-height: normal;color: #e93b3b;transform: rotate(45deg);font-size: 12px;font-weight: 700;display: flex;justify-content: center;align-items: center;width: 125px;flex-direction: column;line-height: normal;gap: 0;}
/*.cls-profile-status{ position: absolute;top: 11px;right: -24px;padding: 6px 10px;background: #fef2f2;line-height: normal;color: #e93b3b;transform: rotate(45deg);font-size: 12px;font-weight: 700;display: flex;justify-content: center;align-items: center;width: 100px;} */
.cls-inactive-date {font-size: 11px;}

.must-required { display: flex;align-items: center;gap: 5px;position: absolute;right: 10px;top: 10px;background-color: #fef2f2;padding: 5px 7px;line-height: normal;border-radius: 5px;color: #e93b3b;font-size: 11px;font-weight: 500; z-index: 1;}
.must-required i {font-size: 12px;}

/*.calendar-grid .calendar-day .training_required::before {position: absolute; right: 5px; top: 2px; font-family: "tabler-icons" !important; content: "\eefe"; font-size: 16px; color: #fff;}*/
.calendar-grid .calendar-day .training_required::before{ position: absolute;right: 4px;top: 5px;font-family: tabler-icons!important;content: "\eefe";font-size: 14px;color: #e93b3b;background-color: #fef2f2;line-height: normal;padding: 1px 2px;border-radius: 3px;}

.impersonate-details{ font-size: 12px;display: flex;align-items: center;gap: 3px;flex-wrap: wrap;padding: 3px 3px 3px 10px;border: 1px solid #ccc;border: 1px solid var(--commonborder);border-radius: 8px;height: 40px;}
.impersonate-details a.btn-secondary {padding: 7px 12px;font-size: 12px; line-height: normal; margin-left: 5px; color: #fff; border: none; text-decoration: none; border-radius: 6px; background-color: #d92d20;}
.impersonate-details a.btn-secondary:hover {/*text-decoration: none; background-color: transparent; color: #b93138;*/}

.calendar-general-view .general-calendar-view {margin: 0px 15px 0px 15px; padding: 0px; box-shadow: none; border: none;}
.calendar-general-view .general-calendar-view .calendar-grid {border: 1px solid #e5e7eb;}

.general-calendar-body .footer-sec {position: fixed; width: 100%; bottom: 0; left: 0; z-index: 1; margin-top: 0px;}
.calendar-general-view {padding-bottom: 20px; padding-top: 70px;}

.general-tab-filter {display: flex; align-items: center; margin-bottom: 15px; gap:10px 20px; flex-wrap: wrap;}
.general-tab-filter .calendar-header {flex-shrink: 0; align-self: flex-start;}
.calendar-general-view .calendar-nav {margin-bottom: 15px;} 
.general-tab-filter .calendar-header, .general-tab-filter .room-filter.mb-4 {margin-bottom: 0px !important;}

.calendar-general-view .calendar-grid .calendar-day {min-height: 95px;}

.unread .brand-info h6, .unread td {font-weight: 600;}

.learner-training-info .calendar-grid .calendar-day .training-event {white-space: normal; padding: 7px 23px 7px 6px; line-height: normal;}

.tablesection.top_space .dt-container .dt-info, .tablesection.top_space .dt-container .dt-paging {padding-top: 0px; float: none;}
.tablesection.top_space .dt-container .top, .tablesection.top_space .dt-container .bottom {margin-bottom: 15px; margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 15px; flex-wrap: wrap;}

 @media print {
    body {background: #fff;}
    .searchlistpro, .header-bell-user, .notification-sec, .fillter-add-row, .mob-navbar, .notification-sec, .learner-perf .perf-grid nav.d-flex {display: none !important;}
    .learner-form-sec {clear: both; margin-bottom: 30px;}
    .learner-form-sec .row {display: table; width: 100%; }
    .learner-form-sec .col-md-6 {display:table-cell; width: 33.3333%; padding-left: 0px; padding-right: 0px;}
    .learner-form-sec .dash-top-boxs {padding-left: 15px; padding-right: 15px;}
    .learner-chart-1, .learner-chart-2, .learner-chart-3 {clear: both; padding-bottom: 30px; display: block;}
    .learner-form-sec .row, .learner-chart-1 .row, .learner-chart-2 .row, .learner-chart-3 .row {margin-left: 0; margin-right: 0;}
    .learner-chart-1 .row {display: block; width: 100%;  padding-bottom: 30px; clear: both;}
    .learner-chart-1 .col-md-6 {float: left; width: 50%; padding-left: 15px; padding-right: 15px; height: 100%;}
    .chart-box.lms-learner-chart-1, .chart-box.lms-learner-chart-2 {height: 100%; clear: both; margin-bottom: 30px;}
    .learner-perf .perf-grid .perf-card {display: table; clear: both; border: 3px solid #e8edf3; margin-bottom: 15px;}
    .learner-perf .perf-grid .perf-card .left {display: table-cell; width: 25%; vertical-align: middle;}
    /* .learner-perf .perf-grid .perf-card .left h3 {padding-top: 22px;} */
    .learner-perf .perf-grid .perf-card .right {display: table-cell; vertical-align: top; display: flex; gap: 10px; flex-wrap: nowrap; justify-content: flex-end;}
    .learner-chart-1 canvas#chart1 {max-width: 100% !important; width: auto !important; height: 250px !important;}
    .learner-chart-1 canvas#avgChart {max-width: 100% !important; width: auto !important; height: 250px !important;}
    .learner-chart-2 canvas#chart2 {width: 100% !important; height: auto !important;}
    .learner-chart-3 canvas#activityChart {width: 100% !important; height: auto !important;}
    .learner-performers .commontable th {height: 43px;}
    .learner-performers .commontable td {white-space: inherit;} 

}


/* 

 body{ font-family: DejaVu Sans,sans-serif;font-size: 12px;margin: 20px;color: #333;}
h2{ text-align: center;margin-bottom: 10px;}
h3{ margin-top: 30px;margin-bottom: 10px;}
.section{ margin-bottom: 25px;page-break-inside: avoid;}
.chart-row{ display: flex;justify-content: space-between;gap: 20px;width: 100%;}
.chart-col{ width: 48%;text-align: center;}
.chart-col img{ width: 100%;border: 1px solid #ccc;padding: 6px;background: #fafafa;}
.chart-box{ text-align: center;margin-bottom: 20px;}
.chart-box img{ width: 100%;margin: 0 auto;border: 1px solid #ccc;padding: 6px;background: #fafafa;}
table{ width: 100%;border-collapse: collapse;margin-top: 10px;font-size: 12px;}
table td,table th{ padding: 6px;border: 1px solid #666!important;text-align: left;}
table th{ background: #eee;}
.stats-box{ display: flex;gap: 20px;margin-bottom: 15px;}
.stat-item{ padding: 10px;background: #f3f3f3;border: 1px solid #ccc;width: 30%;text-align: center;font-size: 14px;}
.learner-listingpart table.dataTable{ border-collapse: separate!important;background: #fff;border: 1px solid #eff0f1!important;border-radius: 12px!important;border-spacing: 0;box-shadow: 0 1px 2px 0 rgba(16,24,40,.05);}
.learner-listingpart table.dataTable th{ background-color: #545859!important;color: #fff!important;}
.learner-listingpart table.dataTable td,.learner-listingpart table.dataTable th{ border: none!important;}
.learner-listingpart table.dataTable td{ background-color: transparent!important;}
.learner-listingpart table.dataTable tr:nth-child(2n+1){ background-color: #f7f7f7!important;}
.learner-listingpart table.dataTable tr:nth-child(2n){ background-color: #fff!important;}
.learner-perf .perf-grid table{ border-collapse: separate!important;background: #fff;border: 1px solid #eff0f1!important;border-radius: 12px!important;border-spacing: 0;box-shadow: 0 1px 2px 0 rgba(16,24,40,.05);} */