@import url("https://fonts.googleapis.com/css2?family=K2D:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
:root {
  --white: #fff;
  --white-50: rgba(255, 255, 255, 0.05);
  --white-100: rgba(255, 255, 255, 0.1);
  --white-200: rgba(255, 255, 255, 0.2);
  --white-300: rgba(255, 255, 255, 0.3);
  --white-400: rgba(255, 255, 255, 0.4);
  --white-500: rgba(255, 255, 255, 0.5);
  --white-600: rgba(255, 255, 255, 0.6);
  --white-700: rgba(255, 255, 255, 0.7);
  --white-800: rgba(255, 255, 255, 0.8);
  --white-900: rgba(255, 255, 255, 0.9);

  --black: #292929;
  --black-800: rgba(41, 41, 41, 0.8);
  --black-700: rgba(41, 41, 41, 0.7);
  --black-600: rgba(41, 41, 41, 0.6);
  --black-500: rgba(41, 41, 41, 0.5);
  --black-400: rgba(41, 41, 41, 0.4);
  --black-300: rgba(41, 41, 41, 0.3);
  --black-200: rgba(41, 41, 41, 0.2);
  --black-150: rgba(41, 41, 41, 0.15);
  --black-100: rgba(41, 41, 41, 0.1);

  --mcolor: rgba(33, 150, 243);
  --mcolor-050: rgba(33, 150, 243, 0.05);
  --mcolor-100: rgba(33, 150, 243, 0.1);
  --mcolor-150: rgba(33, 150, 243, 0.15);
  --mcolor-200: rgba(33, 150, 243, 0.2);
  --mcolor-300: rgba(33, 150, 243, 0.3);
  --mcolor-400: rgba(33, 150, 243, 0.4);
  --mcolor-500: rgba(33, 150, 243, 0.5);
  --mcolor-700: rgba(33, 150, 243, 0.7);
  --mcolor-800: rgba(33, 150, 243, 0.8);

  --radius: 5px;
  --main_font: "K2D", sans-serif;
  --tcolor: rgba(41, 41, 41, 0.7);
  --grey: #737373;

  /* transition */
  --tran-02: all 0.2s ease;
  --tran-03: all 0.3s ease;
  --tran-04: all 0.4s ease;
  --tran-05: all 0.5s ease;
}
*,
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--main_font);
  color: var(--black-700);
  background-color: var(--white);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  line-height: 1.5;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0.4px;
  /* background-image: url(../img/body-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; */
}
::selection {
  color: #fff;
  background-color: #000;
}
a {
  color: var(--mcolor);
  transition: all 0.3s;
  text-decoration: none;
}
a:hover {
  color: var(--mcolor);
}
svg{
  transition: var(--tran-02);
}
ul {
  padding: 0;
  margin: 0;
}
.number-list {
  list-style-type: decimal;
}
.disc-list {
  list-style-type: disc;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
}
.fw-500 {
  font-weight: 500;
}
main {
  position: relative;
  overflow-x: hidden;
  max-width: 1920px;
  margin: auto;
}
p {
  font-weight: 400;
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  line-height: 1.5;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.5;
  color: var(--black);
  letter-spacing: 0.8px;
}
::placeholder {
  color: var(--tcolor-500);
}
/* .landing-page{
  background-color: var(--white);
} */
/* color */

.text-mcolor {
  color: var(--mcolor) !important;
}
.img-responsive {
  width: 100%;
  height: auto;
}
/* scrollbar */
::-webkit-scrollbar {
  width: 0.6em;
  height: 0.6em;
}
::-webkit-scrollbar-track {
  background-color: var(--mcolor-100);
  border-radius: 2em;
}

::-webkit-scrollbar-thumb {
  background-color: var(--mcolor-300);
  border: 2px solid;
  border-radius: 2em;
  border-color: var(--mcolor-200);
}

.menu-list-item::-webkit-scrollbar-track {
  background-color: var(--white-200);
}

.menu-list-item::-webkit-scrollbar-thumb {
  background-color: var(--white-300);
  border-color: var(--white-200);
}
.main-page {
  background-image: url(../img/body-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
/*Header start*/
header {
  background: var(--white);
  box-shadow: 0px 5px 10px 0px rgb(33 150 243 / 20%);
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 99;
}
/* landing-page-header */
.landing-page header {
  box-shadow: unset;
  background-color: transparent;
}
.landing-page header .navbar {
  padding: 30px 0;
}
.landing-page .header {
  position: absolute;
  width: 100%;
}
nav.navbar .nav-main {
  width: 100%;
  align-items: center;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.navbar-brand {
  margin: 0;
}
.navbar-brand img {
  max-width: 190px;
}
nav.navbar .nav-main .navbar-collapse > ul > li > a {
  color: var(--white);
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  line-height: 1;
  position: relative;
  transition: var(--tran-03);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
}
nav.navbar .nav-main .navbar-collapse > ul > li {
  background-color: transparent;
  border-radius: 5px;
  transition: var(--transition-03);
}
nav.navbar .nav-main .navbar-collapse > ul > li.active > a {
  color: var(--mcolor);
  background-color: #fff;
}
/* nav.navbar .nav-main .navbar-collapse > ul > li > a:hover{
  color: var(--mcolor);
  background-color: #fff;
} */
nav.navbar .nav-main .navbar-collapse > ul > li.submenu {
  position: relative;
}
nav.navbar .nav-main .navbar-collapse > ul > li.submenu ul {
  text-align: left;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  left: 0;
  top: auto;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  transition: all 0.2s ease;
  z-index: 99;
  background-color: #fff;
  transform: translate(0, 10px);
  transition: opacity 200ms ease-in, transform 200ms ease-in,
    visibility 200ms ease-in;
  min-width: 200px;
}
nav.navbar .nav-main .navbar-collapse > ul > li.submenu:hover > ul {
  opacity: 1;
  display: block;
  visibility: visible;
  height: auto;
  transform: translate(0, 0);
}
nav.navbar .nav-main .navbar-collapse > ul > li.submenu ul li:not(:last-child) {
  border-bottom: 1px solid #e7e7e7;
}
nav.navbar .nav-main .navbar-collapse > ul > li.submenu ul li a {
  white-space: nowrap;
  padding: 8px 18px;
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
nav.navbar .nav-main .navbar-collapse > ul > li.submenu ul li a:hover {
  background-color: #f3f5f9;
  color: var(--mcolor);
}
nav.navbar .nav-main .navbar-collapse > ul > li.submenu > a::after {
  content: "\ea4e";
  font-family: remixicon !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  right: 0;
  font-size: 20px;
  line-height: 1;
}
/* section */
section {
  padding: calc(60px + 40 * (100vw - 320px) / 1600) 0
    calc(60px + 40 * (100vw - 320px) / 1600);
}
.section-title h1,
.section-title h2,
.section-title h3 {
  line-height: 1;
  margin-bottom: calc(16px + 8 * (100vw - 320px) / 1600);
}
.section-title h1 {
  font-size: calc(30px + 18 * (100vw - 320px) / 1600);
}
.section-title h2 {
  font-size: calc(28px + 16 * (100vw - 320px) / 1600);
}
.section-title h3 {
  font-size: calc(28px + 8 * (100vw - 320px) / 1600);
}
.section-title .desc {
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  line-height: 1.8;
  margin-bottom: calc(20px + 10 * (100vw - 320px) / 1600);
}

/* Button */
button {
  outline: none;
}
.btn {
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  padding: calc(10px + 4 * ((100vw - 320px) / (1920 - 320)))
    calc(44px + 16 * ((100vw - 320px) / (1920 - 320)));
  border-radius: 15px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.btn.btn-sm {
  font-size: calc(12px + 2 * (100vw - 320px) / 1600);
  padding: calc(4px + 4 * ((100vw - 320px) / (1920 - 320)))
    calc(18px + 15 * ((100vw - 320px) / (1920 - 320)));
  /* font-weight: normal; */
}
.btn.btn-md {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  padding: calc(10px + 2 * ((100vw - 320px) / (1920 - 320)))
    calc(22px + 14 * ((100vw - 320px) / (1920 - 320)));
}
.btn.btn-md i {
  font-size: 22px;
  font-weight: 400;
}
.btn-inline {
  color: var(--black);
  padding: 0;
  border-radius: 0;
  border: none;
}

.btn-inline:hover {
  color: var(--mcolor);
}

.btn-check:focus + .btn,
.btn:focus {
  box-shadow: unset;
}
.btn-outline {
  border: 1px solid var(--black);
  background-color: transparent;
  color: var(--black);
}
.btn-outline:hover {
  background-color: var(--black);
  color: var(--white);
}
.btn-mcolor {
  background: linear-gradient(180deg, #2196f3 0%, #007de0 100%);
  color: #fff;
  border-color: var(--mcolor);
}
.btn-mcolor:hover {
  color: #fff;
  border-color: var(--mcolor);
}
.btn-white{
  background-color: var(--white);
  color: var(--mcolor);
  border-color: var(--mcolor);
}
.btn-white:hover{
  background-color: var(--mcolor);
  color: var(--white);
  border-color: var(--mcolor);
}
/* form */
.form-select.form-select-sm,
.form-select {
  padding-right: 36px !important;
}
::placeholder {
  color: var(--black-400);
}
.form-select,
.form-control {
  padding: 14px 20px;
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  color: var(--black);
  border-radius: 0;
  background-color: var(--white);
  border: none;
  border-bottom: 1px solid rgb(124 124 124 / 20%);
  padding-left: 0;
}

.form-select.form-select-sm,
.form-control.form-control-sm {
  padding: 5px 20px;
  font-size: calc(12px + 2 * (100vw - 320px) / 1600);
}
.form-select:focus {
  box-shadow: unset;
  border-color: var(--mcolor);
}
.form-control:focus {
  box-shadow: unset;
  border-color: var(--mcolor);
}
.form-label {
  margin-bottom: 0.2rem;
  font-size: calc(13px + 1 * (100vw - 320px) / 1600);
  color: var(--grey);
  font-weight: 500;
}
.form-group {
  position: relative;
}
.form-check-input[type="checkbox"] {
  border-radius: 4px;
}
.form-check-input {
  border: 2px solid #231f20;
  width: 30px;
  height: 30px;
  background-color: transparent;
}
.form-check .form-check-input {
  margin-left: -40px;
  margin-top: 0;
}
.form-check {
  padding-left: 40px;
}
.form-check-input:checked {
  background-color: var(--mcolor);
  border-color: var(--mcolor);
}
.form-check-input:focus {
  box-shadow: unset;
}
.form-check-label {
  font-size: calc(17px + 3 * (100vw - 320px) / 1600);
}
.form-group.with-icon .form-control {
  padding-right: 55px;
}
.form-group .input-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}
.form-group.with-icon.icon-start .form-control {
  padding-left: 36px;
  padding-right: 20px;
}
.form-group.with-icon.icon-start .input-icon {
  right: auto;
  left: 0px;
  transform: none;
  top: auto;
  bottom: 17px;
}
.form-group .input-icon img {
  max-width: 19px;
}
/* select2 */
/* .select2-dropdown {
  z-index: 1111 !important;
} */
.cstm-select2 .select2-container--default .select2-selection {
  padding: 10px 20px 10px 0;
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  color: var(--black);
  border-radius: 0;
  background-color: var(--white);
  border: none;
  border-bottom: 1px solid rgb(124 124 124 / 20%);
  height: auto;
}
.cstm-select2
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 50px;
}
.cstm-select2
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  padding-left: 0;
  color: var(--black);
}
.cstm-select2
  .select2-container--default.select2-container--focus
  .select2-selection--multiple {
  border-color: var(--orange);
}
.select2-dropdown {
  border: unset !important;
  box-shadow: 0px 4px 24px 0px rgb(0 0 0 / 15%);
}
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: transparent !important;
  color: var(--black) !important;
}
.select2-results__option {
  font-size: 14px;
  padding: 12px 12px !important;
  position: relative;
}
.select2-results__option:not(:last-child) {
  border-bottom: 1px solid #ececec;
}
.select2-results__option::before {
  content: "";
  content: "\eb80";
  font-family: remixicon !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--mcolor);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  line-height: 1;
  opacity: 0;
}
.select2-results__option--selected.select2-results__option::before {
  opacity: 1;
}
.select2-container--default .select2-search--inline .select2-search__field {
  color: var(--orange);
}
.cstm-select2
  .select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  background: var(--gradient);
  border: none;
  padding: 6px 15px;
  padding-right: 30px;
  color: var(--white);
  margin: 0;
  border-radius: 10px;
  font-weight: 500;
}
.cstm-select2
  .select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove {
  left: auto;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--white);
  font-size: 15px;
  border-radius: 50%;
  padding: 0;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-500);
  text-align: center;
  background-color: var(--white);
}
.cstm-select2
  .select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove
  span {
  line-height: 1;
}
.cstm-select2
  .select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove:hover,
.cstm-select2
  .select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove:focus {
  background-color: var(--danger);
  color: var(--white);
  outline: none;
}
.cstm-select2
  .select2-container
  .select2-selection--multiple
  .select2-selection__rendered {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.select2-container--default .select2-results__option--selected {
  background-color: var(--mcolor-100) !important;
}
.select2-container {
  width: 100% !important;
}
.cstm-select2
  .select2-container
  .select2-search--inline
  .select2-search__field {
  margin-top: 0;
  height: 20px;
}

.select2-search--dropdown {
  display: none !important;
  /* dropdown searchbar hide */
}
/* admin-body */
header .side-brand {
  margin: 17px auto;
  text-align: center;
}
header .logo {
  text-align: center;
  transition: var(--tran-03);
}
.header-wrapper {
  flex-grow: 1;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
.logo-wrapper {
  display: inline-block;
  vertical-align: middle;
  width: 300px;
}
/* .sidebar */
.sidebar {
  position: fixed;
  top: 80px;
  left: 0;
  min-height: calc(100vh - 80px);
  width: 300px;
  background-color: var(--mcolor);
  transition: var(--tran-02);
  z-index: 9;
  box-shadow: 0px 4px 15px 0px rgba(80, 80, 80, 0.25);
}

.sidebar.close {
  width: 88px;
}
.sidebar li {
  margin-bottom: 10px;
  list-style-type: none;
}
.sidebar li svg {
  min-width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar.close .text {
  opacity: 0;
  display: none;
}
.sidebar .side-brand .logo {
  max-width: 170px;
}
.sidebar.close .side-brand .logo {
  max-width: 52px;
}
.toggle {
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--tran-02);
  background-color: var(--mcolor);
}
.toggle:hover {
  background-color: var(--mcolor);
  color: var(--white);
}
/* .sidebar .menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100vh - 100px);
  height: calc(100vh - 80px);
} */
.sidebar .menu-links {
  max-height: calc(100vh - 80px);
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100vh - 80px);
}
.sidebar .menu-links .menu-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
.sidebar .menu-links .menu-list .menu-list-item {
  max-height: calc(100vh - 220px);
  overflow-y: auto;
  overflow-x: hidden;
}
.sidebar li a {
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  gap: 12px;
  position: relative;
  font-weight: normal;
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  color: var(--white);
  transition: var(--tran-02);
  padding: 12px 15px;
  font-weight: 600;
}
.sidebar li a .nav-text {
  transition: var(--tran-02);
  flex-grow: 1;
  white-space: nowrap;
}

.sidebar li a .nav-link-icon {
  font-size: 20px;
  line-height: 1;
}
.sidebar li:not(.logout-btn):hover > a,
.sidebar li:not(.logout-btn).active > a,
.sidebar li:not(.logout-btn):hover a .nav-link-icon,
.sidebar li:not(.logout-btn).active a .nav-link-icon {
  background: var(--white);
  color: var(--mcolor);
}
.sidebar li:hover > a svg path,
.sidebar li.active > a svg path,
.sidebar li:hover a .nav-link-icon svg path,
.sidebar li.active a .nav-link-icon svg path {
  stroke: var(--mcolor);
  fill: var(--white);
}
.sidebar.close ~ .page-layout {
  position: relative;
  left: 88px;
  width: calc(100% - 88px);
}
.sidebar li.sub-menu > a::before {
  content: "\ea6e";
  font-family: remixicon !important;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--black-700);
  font-size: 20px;
  font-weight: 600;
}
.sidebar.close li.sub-menu > a::before {
  content: unset;
}
/* .sidebar li.sub-menu:hover > ul{
  display: block;
} */
.sidebar ul ul {
  background-color: var(--grey);
  display: none;
  position: absolute;
  left: 300px;
  top: 0;
  height: 100%;
  padding: 15px 20px;
}
.sidebar ul ul li {
  padding: 8px 12px;
  border-radius: 5px;
}
.sidebar ul ul li a {
  font-size: 15px;
  font-weight: normal;
  transition: none;
  flex-direction: row;
  justify-content: space-between;
}
.sidebar ul ul li a::before {
  content: unset;
}
.sidebar ul ul li:hover,
.sidebar ul ul li.active {
  background: var(--gradient);
}
.sidebar ul ul li:hover a,
.sidebar ul ul li.active a {
  color: var(--white) !important;
  -webkit-text-fill-color: unset;
}
.sidebar ul ul li:first-child a {
  border-radius: 0px 0px 6px 6px;
}
.sidebar li ul li:hover > a,
.sidebar li.active ul li.active > a {
  color: var(--white);
}
.sidebar.close ul ul {
  position: absolute;
  z-index: 2;
  left: calc(100% + 20px);
  top: 0;
  box-shadow: 0px 4px 4px 0px rgb(0 0 0 / 10%);
}
.sidebar.close ul ul li a {
  padding-left: 12px;
}
.sidebar.close ul ul li a .text {
  opacity: 1;
}
/* page-layout */
.page-layout {
  position: relative;
  left: 300px;
  width: calc(100% - 300px);
  padding: 0px;
  transition: var(--tran-03);
  overflow: hidden;
  background-image: url(../img/page-layout-shape.svg);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.page-layout .main-content {
  line-height: 1;
  min-height: calc(100vh - 90px);
}
.main-content {
  padding: 30px 30px;
}
.main-content.no-padding {
  padding: 0px 0px;
}
.main-content > div + div {
  margin-top: 30px;
}
/* page-title */
.page-title {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.page-title h2 a,
.page-title h2 {
  line-height: 1;
  font-size: calc(20px + 4 * (100vw - 320px) / 1600);
  margin-bottom: 0;
}
.page-title h2 a {
  font-size: calc(16px + 4 * (100vw - 320px) / 1600);
  font-weight: normal;
}
.page-title h2 a:hover {
  color: var(--orange);
}
.page-title.with-back-btn h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* breadcrumb */
.breadcrumb {
  margin: 0;
}
.breadcrumb-item {
  font-size: calc(12px + 2 * (100vw - 320px) / 1600);
  position: relative;
}
.breadcrumb .breadcrumb-item {
  color: var(--white);
}
.breadcrumb .breadcrumb-item a {
  color: var(--white);
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 30px;
}
.breadcrumb-section {
  padding: calc(20px + 10 * (100vw - 320px) / 1600) 0
    calc(20px + 10 * (100vw - 320px) / 1600);
  margin-top: calc(70px + 50 * (100vw - 320px) / 1600);
  background: linear-gradient(180deg, #2196f3 0%, #007de0 100%);
  box-shadow: 0px 4px 18px 0px rgb(33 150 243 / 40%);
}
.breadcrumb-wrap .page-title h2 a,
.breadcrumb-wrap .page-title h2 {
  font-size: calc(18px + 2 * (100vw - 320px) / 1600);
  margin-bottom: 0.5rem;
  color: var(--white);
  line-height: 1.3;
}
.breadcrumb .breadcrumb-item a:hover {
  color: var(--white);
}
.breadcrumb-item + .breadcrumb-item::before {
  background-image: url(../img/icon/svg/breadcrumb.svg);
  content: "";
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0px 8px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color);
  color: var(--white-700);
}
/* table */
/* simple table  */
.simple-table table {
  background-color: var(--white);
}
.simple-table table th,
.simple-table table td {
  color: var(--black);
  padding: 12px 18px;
  font-size: 14px;
}
.simple-table table thead th {
  background-color: #f9fbfc;
}
.simple-table table thead tr:first-child th:first-child {
  border-top-left-radius: 8px;
}
.simple-table table thead tr:first-child th:last-child {
  border-top-right-radius: 8px;
}
.table-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  flex-wrap: nowrap;
}
.table-action .btn {
  padding: 4px;
  font-size: 18px;
}
.edit-btn {
  font-size: 18px;
  padding: 0;
  line-height: 1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  box-shadow: 0px 4px 18px 0px var(--mcolor-400);
}
.edit-icon {
}
.table-action .view-icon {
  font-size: 22px;
  padding: 5px;
  line-height: 1;
}
/* modal */
.modal-content {
  background: #ffffff;
  border-radius: calc(15px + 15 * (100vw - 320px) / 1600);
  position: relative;
  overflow: hidden;
  border: none;
}
.grey-modal .modal-content {
  background-color: var(--grey);
}
.modal-content:before {
  content: "";
  position: absolute;
  width: 50%;
  height: 12px;
  background: var(--gradient);
  top: -6px;
  border-radius: 2em;
  left: 50%;
  transform: translateX(-50%);
}
.modal .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  z-index: 1;
  padding: 0;
  border-radius: 50%;
  background-color: #cdcaca;
  opacity: 1;
  color: var(--black);
  background-image: unset;
  height: 28px;
  width: 28px;
  line-height: 28px;
  transition: var(--tran-03);
}
.modal .btn-close:hover {
  background-color: #ff3838;
  color: var(--white);
}
.modal .btn-close i {
  line-height: 28px;
}
.modal-body {
  padding: calc(20px + 25 * (100vw - 320px) / 1600);
}
/* main-page-title */
.main-page-title h2.title {
  font-size: calc(24px + 16 * (100vw - 320px) / 1600);
  margin-bottom: 10px;
  line-height: 1;
}
.main-page-title p.desc {
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  color: var(--black);
  margin-bottom: 0;
}

/* cstm-file-upload */
.cstm-file-upload {
  padding: calc(10px + 5 * (100vw - 320px) / 1600);
  border-radius: 10px;
  border: 1px dashed #ccd2e6;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  position: relative;
}

.cstm-file-upload h4 {
  font-size: calc(18px + 4 * (100vw - 320px) / 1600);
  line-height: 1;
  color: var(--black);
  font-weight: 500;
}
.cstm-file-upload span {
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  line-height: 1.3;
  font-weight: 500;
  display: block;
  color: #a9acb4;
}
.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.upload-btn-wrapper input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  cursor: pointer;
}
.cstm-file-upload .img-icon {
  max-height: 70px;
}
.cstm-file-upload.style2{
  border: none;
  padding: 0;
  min-height: auto;
}
.cstm-file-upload.style2 .upload-btn-wrapper{
  min-height: 300px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  flex-grow: 1;
  border: 1px dashed #E3E3E3;
  border-radius: 10px;
  justify-content: center;
  padding: 20px;
  background-color: var(--mcolor-050);
}
.cstm-file-upload.style2 span{
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  font-weight: normal;
  color: var(--black);
}
/* cstm-profile-upload */
/* .cstm-profile-upload {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.cstm-profile-upload .upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.cstm-profile-upload .upload-profile-img {
  height: 112px;
  width: 112px;
  min-width: 112px;
  min-height: 112px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--black-100);
}
.cstm-profile-upload .upload-profile-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cstm-profile-upload .btn {
  border-radius: 12px;
  font-weight: 600;
  padding: 15px 30px;
}

.cstm-profile-upload .upload-btn-wrapper input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
} */

/* cstm-accordion */
.cstm-accordion .accordion-body {
  padding: 0;
}
.cstm-accordion .accordion-item {
  border: none;
}
.accordion-button {
  background-color: var(--mcolor-100);
  color: var(--black);
  border-radius: 8px;
  transition: var(--tran-02);
  font-weight: 500;
  padding: 12px 12px;
}

.accordion-button:not(.collapsed) {
  background-color: var(--mcolor);
  color: var(--white);
}
.accordion-button:focus {
  outline: none;
  box-shadow: unset;
}
.accordion-button::after {
  background-image: none !important;
  content: "\ea4e";
  font-family: remixicon !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  font-size: 22px;
  line-height: 1;
}
.accordion-button:not(.collapsed)::after {
  content: "\ea78";
}
.accordion-btn-text {
  transition: var(--tran-02);
}


/* card  */
.card {
  border-radius: 14px;
}
.cstm-card {
  border: none;
  padding: 20px;
}
.cstm-card .card-header {
  background-color: transparent;
  border: none;
  padding: 0;
  margin-bottom: 10px;
}
.cstm-card .card-header .card-title {
  margin-bottom: 0;
}
.cstm-card .card-header .card-title h3 {
  font-size: calc(18px + 2 * (100vw - 320px) / 1600);
  color: var(--black);
  margin: 0;
}
.cstm-card .card-body {
  padding: 0;
}
/* cstm checkbox  */
.cstm-checkbox {
  display: flex;
  align-items: center;
}
.cstm-checkbox input[type="checkbox"] {
  position: relative;
  border: 1px solid var(--grey);
  border-radius: 5px;
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 0 0.6em 0 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 18px;
  width: 18px;
  -webkit-appearance: none;
}
.cstm-checkbox input[type="checkbox"]:hover {
  opacity: 1;
}
.cstm-checkbox input[type="checkbox"]:checked {
  background-color: var(--mcolor);
  border-color: var(--mcolor);
  opacity: 1;
}
.cstm-checkbox input[type="checkbox"]:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 5px;
  height: 11px;
  border: solid var(--grey);
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
}
.cstm-checkbox input[type="checkbox"]:checked::before {
  opacity: 1;
  border-color: var(--white);
}
.cstm-checkbox label {
  color: var(--black);
  font-size: calc(13px + 1 * (100vw - 320px) / 1600);
  line-height: 1;
  cursor: pointer;
}
/* page-header */
.page-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.page-header .title {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: calc(18px + 4 * (100vw - 320px) / 1600);
  margin-bottom: 0;
  font-weight: 500;
}
.page-header .title .backbtn{
font-size: 18px;
color: var(--black);
transition: var(--tran-02);
}

.page-header .title .backbtn:hover{
  color: var(--mcolor);
}
.page-header .title .backbtn:hover svg path{
  fill: var(--mcolor);
 stroke: var(--mcolor);
}
/* table  */
.cstm-table table {
  margin-bottom: 0;
}
table th,
td {
  color: var(--white);
  font-weight: normal;
  vertical-align: middle;
  line-height: 1.5;
  white-space: nowrap;
  border-bottom-color: var(--mcolor-light);
  padding: 12px 8px;
}
table thead th {
  font-size: calc(12px + 2 * (100vw - 320px) / 1600);
  border-bottom-width: 2px;
  background-color: var(--mcolor);
}
table tbody td {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  border-bottom-color: var(--black);
}
.cstm-table table tbody tr:last-child td {
  border-bottom: none;
}
.cstm-table table thead th {
  background-color: var(--mcolor);
}
/* sticky-table */
.sticky-table {
  max-height: 70vh;
  overflow: auto;
}
.sticky-table table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: var(--mcolor);
}
/* simple table  */
.simple-table table {
  background-color: var(--white);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin-bottom: 0;
}
.simple-table table th,
.simple-table table td {
  border-bottom-width: 0;
  color: var(--black);
  padding: 12px 18px;
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.simple-table table thead th {
  background-color: var(--mcolor);
  font-weight: 600;
  color: var(--white);
}
.simple-table table thead tr:first-child th:first-child {
  border-top-left-radius: 8px;
}
.simple-table table thead tr:first-child th:last-child {
  border-top-right-radius: 8px;
}
.simple-table table tbody tr:not(:last-child) td {
  border-bottom: 1px solid var(--black-150);
}
.table-responsive {
  box-shadow: 0px 4px 44px 0px var(--black-150);
}
/* card  */
.card {
  padding: 20px;
  border-radius: 10px;
  box-shadow: unset;
  background-color: var(--white);
  height: 100%;
  border-color: transparent;
  box-shadow: 0px 1px 7px 0px rgb(0 0 0 / 10%);
  transition: var(--transition-03);
}
.no-padding-card .card-header, .no-padding-card .card-body {
  padding: 0;
}
/* cstm tab  */
.cstm-tab .nav {
  border-bottom: 1px solid #C4C4C4;
  gap: 15px;
}
.nav-tabs .nav-link {
  padding: 12px 36px 12px 0px;
  padding-bottom: 15px;
  background-color: transparent;
  color: var(--black);
  font-weight: 600;
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  border: unset;
  position: relative;
}
.nav-tabs .nav-link::before {
  content: '';
  height: 3px;
  width: 100%;
  background-color: var(--mcolor);
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active{
  background-color: transparent;
}
.nav-tabs .nav-item.show .nav-link::before , 
.nav-tabs .nav-link.active::before{
opacity: 1;
visibility: visible;
}
.tab-content {
  padding: 20px 0;
}