@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-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-receipt:before { content: "\edfd"; }

/*--------------------------*/
.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;
}
.leftsecpos .user-meta h3 {
  color: var(--navebar-font);
}
.leftsecpos .user-meta span {
  color: var(--navebar-font);
  opacity: 0.8;
}

.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;
}

.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;
}
.account-info .account-holder { width: 100%; }
.account-info .account-holder a {
  display: block;
  text-align: center;
  background: #fdfcfa;
  border-radius: 12px;
}

.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;
}

.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.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(--primary-color);
  background-color: var(--primary-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);
}

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

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

.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;
}

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

a.table-sm-btn::before,
.table-sm-btn::after,
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;
}

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

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

a.table-sm-btn:hover:before,
a.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: 120px;
}

.login-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  background: #fdfcfa;
  border-radius: 12px;
}

.login-logo span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 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;
}

.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);
}

.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: 140px;  
  /* max-width: 250px; */
  max-width: 100%;
}

.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; */
  max-height: 255px;
}

.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: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 10px 15px;
  margin-top: 10px;
}
.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); }

.remove_all_btn, .add_all_btn { display: flex; justify-content: flex-end; margin-bottom: 10px; }
.search-panel .search-result .card-cls { margin-bottom: 15px; }
.search-panel .search-result .left-list { border-right: 1px solid var(--commonborder); }

.add-remove-loader { position: absolute; top: 30%; left: 50%; transform: translateX(-50%); z-index: 11; }



.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);
}