/* @font-face {
    font-family: 'Fira Sans', sans-serif;
    src: url('../font/FiraSans-Bold.woff') format('woff'),
         url('../font/FiraSans-Bold.woff2') format('woff2');
}
@font-face {
    font-family: 'Fira Sans', sans-serif;
    src: url('../font/FiraSans-Thin.woff') format('woff'),
         url('../font/FiraSans-Thin.woff2') format('woff2');
}
@font-face {
    font-family: 'Fira Sans', sans-serif;
    src: url('../font/FiraSans-Medium.woff') format('woff'),
         url('../font/FiraSans-Medium.woff2') format('woff2');
}
@font-face {
    font-family: 'Fira Sans', sans-serif;
    src: url('../font/FiraSans-Regular.woff') format('woff'),
         url('../font/FiraSans-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Fira Sans', sans-serif;
    src: url('../font/FiraSans-SemiBold.woff') format('woff'),
         url('../font/FiraSans-SemiBold.woff2') format('woff2');
} */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;600;900&display=swap');

:root {
  --base-font-family: "Fira Sans", sans-serif;
  --base-font-size: 1.6rem;
  --base-line-height: 1.2;
  --dark: #000000;
  --light: #ffffff;
  --success: #16ce3e;
  --danger: #ff0000;
  --light1: #f6f5f5;
  --light2:#f2efef;
  --border: #dedede;
  --bg1: #eff3f7;
  --bg2:#f6f9ff;
  --bg3:#d5d8f7;
  --text: #74788d;
  /* ------ FONT WEIGHT ------ */
  --font-normal: 400;
  --font-medium: 600;
  --font-bold: 900;
   /* ----------------- SHADOWS --------------- */
   --shadow-header: rgb(17 17 26 / 10%) 0px 2px 6px;
   --shadow-footer: rgb(17 17 26 / 10%) 0px -2px 6px;
   --shadow-all: rgb(17 17 26 / 15%) 0px 0px 3px;
   --button-shadow: 0 1px 1px hsl(0deg 0% 0% / 0.075),
     0 2px 2px hsl(0deg 0% 0% / 0.075),
     0 4px 4px hsl(0deg 0% 0% / 0.075),
     0 8px 8px hsl(0deg 0% 0% / 0.075),
     0 16px 16px hsl(0deg 0% 0% / 0.075);
     --hover-shadow: 0rem 0.3rem 0.5rem rgb(0 0 0 / 50%);
}

html {
  /* -------- COLOR ------- */
  --primary: #1e2038;
  --secondary: #e9ecef;
}
html.red {
  /* -------- COLOR ------- */
  --primary: #DD2616;
  --secondary: #e6e6e6;
}
html.blue {
  --primary: #2b00d4;
  --secondary: #e6e6e6;
}
html.green {
  --primary: #00d478;
  --secondary: #e7ede0;
}

::-webkit-scrollbar {
  width: 0.6rem;
}

::-webkit-scrollbar-track {
  background: var(--secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: var(--base-font-family);
  font-size: 62.5%;
  line-height: var(--base-line-height);
}

body {
  margin: 0;
  font-size: var(--base-font-size);
  padding: 1.5rem;
  color: var(--text);
  background: var(--bg1);
}

* {
  resize: none;
  outline: none;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

a {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  color: var(--text);
}

.bottom-line {
  border-bottom: 0.15rem solid var(--border);
  margin: 1.5rem -1.5rem;
}

.font-normal {
  font-weight: var(--font-normal) !important;
}

.font-medium {
  font-weight: var(--font-medium) !important;
}

.font-bold {
  font-weight: var(--font-bold) !important;
}

.bottom-space {
  margin-top: 1.5rem;
}

.brightness-low {
  opacity: 0.3;
}

.brightness-medium {
  opacity: 0.5;
}

.text-center {
  text-align: center;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}
.hidden {
  opacity: 0;
  transition: all 200ms linear;
}
.freeze {
  overflow: hidden;
}

.icon-bin {
  stroke: var(--danger) !important;
}

.icon-success {
  stroke: var(--success) !important;
}

.outer-space {
  margin: 0 !important;
}

.icon {
  stroke: var(--text);
  cursor: pointer;
  z-index: 2;
}

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

label {
  outline: none;
}

div {
  position: relative;
}

/* [class*='-head'] {
  box-shadow: var(--shadow-header);
} */

[type="checkbox"]:not(:checked)+label::before,
[type="checkbox"]:checked+label::before,
[type="radio"]:not(:checked)+label::before,
[type="radio"]:checked+label::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  border: 0.2rem solid var(--primary);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.4rem;
}

[type="checkbox"]:checked+label::before, [type="radio"]:checked+label::before {
  background: var(--primary);
  z-index: 0;
  transition: all 300ms ease-in-out;
  box-shadow: var(--hover-shadow);
}

[type="checkbox"]:checked+label::after {
  content: "";
  display: block;
  width: 1rem;
  height: 0.45rem;
  border-style: solid;
  border-width: 0.2rem 0.2rem 0rem 0rem;
  border-color: var(--light);
  position: absolute;
  top: 0.7rem;
  left: 0.5rem;
  transform: rotate(135deg);
}

[type="radio"]:not(:checked)+label::before,
[type="radio"]:checked+label::before {
  border-radius: 100%;
}

/* [type="radio"]:checked+label::after {
  content: "";
  display: block;
  background: var(--secondary);
  width: 0.6rem;
  height: 0.6rem;
  position: absolute;
  top: 0.7rem;
  border-radius: 10rem;
  left: 0.7rem;
  box-shadow: 0px 0px 0px 2.2px var(--primary), 0px 0px 0px 4px var(--secondary);
} */

[type='file'] {
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  padding: 2rem 4rem 2rem 0rem;
  border: 0 !important;
  outline: none;
  z-index: 2000;
  /* opacity: 0; */
}

[type='file']::-webkit-file-upload-button {
  display: none;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* TITLES +*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
h1,
.heading-xlarge,
h2,
.heading-large,
h3,
.heading-medium,
h4,
.heading-regular,
h5,
.heading-small,
h6,
.heading-xsmall {
  line-height: 100%;
  font-weight: 400;
  margin-bottom: 2rem;
  margin-top: 0;
  text-transform: capitalize;
}

h1,
.heading-xlarge {
  font-size: 2.6rem;
}

h2,
.heading-large {
  font-size: 2.2rem;
}

h3,
.heading-medium {
  font-size: 1.8rem;
}

h4,
.heading-regular {
  font-size: 1.6rem;
}

h5,
.heading-small {
  font-size: 1.4rem;
}

h6,
.heading-xsmall {
  font-size: 1.2rem;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* BUTTON +*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
button,
.button {
  outline: none;
  border: inherit;
  padding: 0rem 1.5rem;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  text-transform: capitalize;
  letter-spacing: 0.05rem;
  user-select: none;
  background: transparent;
  transition: all 300ms ease-in-out;
  white-space: nowrap;
  min-height: 4.5rem;
  line-height: 4.5rem;
  border-radius: 0.4rem;
}

.button-group {
  display: flex;
  gap: 1.5rem;
}

.themebtn-group div {
  width: 2rem;height: 2rem;
  cursor: pointer;
  margin: 0.5rem;
  float: left;
  border-radius: 0.4rem;
}
#themeDark {
  background: red;
}
#themeBlue {
  background: Blue;
}
#themeGreen {
  background: #00d478;
}
span, label {
  display: block;
}
.logo-wrapper {
  flex: auto;
}
.login {
  text-decoration: underline;
  cursor: pointer;
}

span.error-text {
  color: red;
  font-size: 76%;
  text-transform: capitalize;
  display: none;
  position: absolute;
}
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* HEADER +*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
header {
    position: fixed;
    background: var(--light);
    z-index: 3;
    left: 0;
    right: 0;
    top: 0;
    box-shadow: var(--shadow-header);
    padding: 1rem;
  }
  
  .header-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .header-wrapper .icon {
    stroke: var(--text);
  }
  
  .menu-wrapper ul {
    display: flex;
    align-items: center;
    height: 100%;
  }
  
  .menu-wrapper ul li {
    text-transform: capitalize;
    margin: 0rem 1.5rem;
  }
  
  .menu-item {
    min-height: 2rem;
    line-height: 2rem;
    cursor: pointer;
  }
  
  .menu-item.active {
    color: var(--secondary);
    border: 0.2rem solid var(--secondary);
    padding: 0.5rem;
    background: inherit;
    border-radius: 0.428rem;
  }
  .logo-wrapper img {
    max-width: 100%;
    object-fit: contain;
    height: 100%;
    /* background: var(--bg1); */
  }
  [class*='-head'] {
    box-shadow: var(--shadow-header);
  }
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+* FOOTER +*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  footer {
    display: flex;
    background: var(--bg2);
    justify-content: center;
    margin-top: auto;
    width: 100%;
  }
  footer p {
    text-transform: capitalize;
    display: flex;
    align-items: center;
    opacity: 0.6;
  }
  footer p::before {
    content: '©';
    display: block;
    font-size: 2.5rem;
    height: 2.5rem;
    margin-right: 0.5rem;
  }
  [class*='-footer'] {
    box-shadow: var(--shadow-footer);
  }
  
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+* TOGGLE MENU +**+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  .rs-menu-toggle {
    display: flex;
    align-items: center;
  }
  
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+* TEXT FILED +*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  input[type="text"],
  input[type="email"],
  input[type="password"],
  select {
    min-height: 4.5rem;
    border-radius: 0rem;
    padding: 1.5rem;
    font-size: 100%;
    outline: 0;
    border: 0.15rem solid var(--border);
    text-overflow: ellipsis;
    width: 100%;
    margin: 0;
    font-family: inherit;
  }
  
  input[type]:focus:invalid,
  select:focus:invalid {
    border: 0.2rem solid #ff0000;
  }
  
  .input-field {
    position: relative;
    margin-bottom: 2rem;
    background: var(--light);
    text-transform: capitalize;
  }
  
  .input-field.baseline {
    background: var(--light1);
    z-index: 0;
  }
  
  .input-field.baseline input[type] {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    padding: 2rem 1.5rem 0.5rem;
  }
  
  /* .input-field.baseline label {
    z-index: -1;
  } */
  
  .input-field.mandate label::after {
    content: "*";
    color: var(--danger);
    display: inline-block;
    margin-left: 0.2rem;
  }
  
  .input-field label {
    transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    width: fit-content;
    max-width: 90%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  
  .input-field input:focus+label,
  .input-field input:valid+label,
  .select-field label, .input-field input:read-only+label {
    top: -0.6rem !important;
    font-size: 87%;
    background: white;
    padding: 0 0.6rem;
    z-index: 0;
  }
  
  .input-field.baseline input:focus+label,
  .input-field.baseline input:valid+label {
    top: 0.3rem;
    font-size: 70%;
    background: transparent;
    padding: 0;
  }
  
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+* SELECT FILED +*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  select {
    appearance: var(--font-normal);
    background: transparent;
    text-transform: capitalize;
    -webkit-appearance: none;
    padding-right: 5rem;
    cursor: pointer;
    color: var(--dark);
  }
  
  .select-field::after {
    content: '';
    display: block;
    background: transparent;
    width: 1rem;
    height: 1rem;
    border-style: solid;
    border-width: 0 0.2rem 0.2rem 0;
    transform: rotate(45deg);
    position: absolute;
    right: 1.5rem;
    top: 2rem;
  }
  
  select::-ms-expand {
    display: none;
  }
  
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+* CHECKBOX, RADIO +*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  .check-field,
  .radio-field {
    margin-bottom: 1.5rem;
  }
  
  [type="checkbox"],
  [type="radio"] {
    display: none;
  }
  
  .check-field label, .radio-field label {
    position: relative;
    cursor: pointer;
    padding-left: 2.8rem;
    text-transform: capitalize;
    line-height: 2.1rem;
    height: 2.1rem;
  }
  
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+* ICON +*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  .icon-close,
  .icon-close.rounded {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    cursor: pointer;
    stroke: var(--dark);
    transition: all 100ms ease-in-out;
  }
  
  .icon-close.rounded {
    padding: 0.3rem;
    border-radius: 100%;
    box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
  }
  
  .icon-upload {
    margin: auto;
    /* position: absolute; */
    display: flex;
    width: 5.5rem;
    height: 100%;
    padding: 1.5rem;
  }
  
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+* SELECT FILTER +*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  .search-group input {
    padding-left: 5rem;
  }
  
  .select-filter ul {
    border: 0.1rem solid var(--secondary);
    border-top: 0;
    max-height: 30rem;
    overflow: auto;
    padding-top: 0;
    display: none;
    position: absolute;
    width: 100%;
    background: var(--light);
    z-index: 1;
    box-shadow: 0 1px 1px 0 rgb(0 0 0 / 2%), 0 38px 39px 0 rgb(0 0 0 / 13%);
    top: 5.2rem;
  }
  
  .search-group {
    background: var(--light);
  }
  
  .select-field .search-group {
    padding: 1.5rem;
    position: sticky;
    top: 0;
    z-index: 1;
  }
  
  .select-filter ul li {
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    text-transform: capitalize;
  }
  
  .select-filter ul li:hover {
    background: var(--secondary);
  }
  
  .filter-button {
    border: 0.1rem solid var(--secondary);
    border-radius: 0rem;
    text-align: left;
    box-shadow: none;
    min-height: 5.2rem;
    color: var(--dark);
    background: var(--light1);
  }
  
  .filter-button:hover {
    box-shadow: none;
  }
  
  .icon-search {
    position: absolute;
    display: flex;
    width: 5rem;
    height: 5.2rem;
    padding: 1.5rem;
    opacity: 0.3;
  }
  
  .close-btn {
    transform: rotate(45deg);
    font-size: 2rem;
    border: 0.1rem solid var(--primary);
    max-width: 1.5rem;
    aspect-ratio: 1;
    min-height: 1.5rem;
    padding: 0.6rem;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: var(--light);
    color: var(--primary);
  }
  
  .selected-file {
    display: inline-block;
    margin-right: 1.5rem;
    background: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 0.428rem;
    font-size: 1.4rem;
    letter-spacing: 0.01rem;
  }
  
  .file-name {
    position: absolute;
    top: calc(50% - 1.3rem);
    left: 0rem;
    white-space: nowrap;
    height: 2.6rem;
    cursor: all-scroll;
  }
  
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+* FILE UPLOAD +*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  .rs-file-upload {
    border: 0.2rem dashed var(--dark);
    display: flex;
    cursor: pointer;
    border-radius: 1rem;
    max-width: 50rem;
    min-height: 6rem;
    margin-bottom: 3rem;
    background: var(--light);
  }
  
  .rs-file {
    width: 100%;
    overflow: auto;
    overflow-y: hidden;
    /* margin-bottom: 1rem; */
  }
  
  .rs-file::-webkit-scrollbar {
    height: 1rem;
  }
  
  .rs-file::-webkit-scrollbar-thumb {
    border-radius: 10rem;
  }
  
  .rs-file .icon-close {
    display: flex;
    width: 4rem;
    right: 0;
    height: 100%;
    top: 0;
    padding: 1rem;
    display: none;
  }
  
  [type='file']:valid+.rs-file .icon-close {
    display: block;
  }
  
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+* BUTTON +*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  .shadow-off:hover {
    box-shadow: none;
  }
  
  button:hover,
  .button:hover {
    box-shadow: var(--button-shadow);
  }
  
  .button-primary {
    background: var(--primary);
    color: var(--secondary);
  }
  
  .button-secondary {
    background: var(--secondary);
    color: var(--dark);
  }
  
  .button-dark {
    background: var(--primary);
    color: var(--secondary);
  }
  
  .button-pill {
    border-radius: 10rem;
  }
  
  .button-stroke {
    background: transparent;
    border: 0.1rem solid;
  }
  
  .stroke-primary {
    border: 0.1rem solid var(--primary);
    color: var(--primary);
  }
  
  .stroke-secondary {
    border: 0.1rem solid var(--secondary);
    color: var(--secondary);
  }
  
  .button-fab {
    background: var(--primary);
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    color: var(--secondary);
    aspect-ratio: 1;
    /* border-radius: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    padding: 0.5rem;
    display: none;
  }
  
  .button-fab .icon {
    stroke: var(--secondary);
  }
  
  .button-block {
    width: 100%;
  }
  
  .button-gray {
    background: var(--secondary);
    color: var(--dark);
  }
  
  /* +*+*+*+*+*+*+*+*+*+*+*+*++*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+* TABLE +*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  table {
    margin: 0;
    position: relative;
    top: 0;
    border-collapse: collapse;
    border: 0.1rem solid var(--secondary);
  }
  
  table thead {
    text-transform: capitalize;
    /* position: sticky; */
    top: 0;
    background: var(--primary);
    color: var(--bg2);
  }
  
  th:first-child,
  td:first-child {
    border-left-style: hidden;
  }
  
  th:last-child,
  td:last-child {
    border-right-style: hidden;
  }
  
  thead tr th {
    border-top-style: hidden;
    border-bottom-style: hidden;
    box-shadow: 0px -1px 1px var(--secondary) inset;
    font-weight: var(--font-medium);
  }
  
  tbody tr:last-child td {
    border-bottom-style: hidden;
  }
  
  table th,
  table td {
    padding: 1.5rem;
    font-size: inherit;
    min-width: 10rem;
    width: fit-content;
    border: 0.1rem solid var(--border);
  }
  
  /* ******************** TABLE STICKY ********************  */
  .table-sticky,
  .table-responsive {
    overflow-x: auto;
    max-height: 40rem;
    border: 0.1rem solid var(--border);
    max-width: 100%;
    width: fit-content;
    background: var(--light);
  }
  
  .table-sticky::-webkit-scrollbar,
  .table-responsive::-webkit-scrollbar {
    display: none;
  }
  
  .table-sticky table thead {
    z-index: 2;
  }
  
  .table-sticky tr {
    position: relative;
  }
  
  .table-sticky th:last-child,
  .table-sticky td:last-child {
    position: sticky;
    right: 0;
    min-width: 12rem;
  }
  
  .table-sticky th:last-child {
    background: var(--primary);
  }
  .table-sticky td:last-child {
    background: var(--light);
  }
  /* uncomment the below css for first column */
  /* .table-sticky th:first-child, .table-sticky td:first-child {
      position: sticky;
      background: var(--secondary);
      left: 0;
      min-width: 12rem;
    } */
  
  
  /* TABLE RESPONSIVE  */
  .table-responsive {
    overflow-x: auto;
  }
  
  /* +*+*+*+*+*+*+*+*+*+*+*+*++*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+* CARD *+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+ */
  .rs-card {
    box-shadow: var(--shadow-all);
    border-radius: .7rem;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    display: flex;
    flex-flow: column;
    border: 0.1rem solid rgba(34, 41, 47, .125);
    background: var(--light);
  }
  
  .rs-card:hover {
    box-shadow: rgb(17 12 46 / 15%) 0px 0px 40px 0px;
  }
  
  .rs-card-head {
    position: relative;
  }
  
  .rs-card-head .heading-medium {
    margin-bottom: 0;
  }
  
  .rs-card-head [class*='heading-'] {
    font-weight: var(--font-medium);
  }
  
  .rs-card-body {
    flex: 1;
  }
  
  .rs-card-body p {
    margin: 0;
  }
  
  .split {
    padding: 0;
  }
  
  .rs-card-head {
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
  }
  
  [class*="rs-card-"] {
    padding: 1.5rem;
  }
  
  .split .rs-card-head .icon-close {
    top: 1.5rem;
    right: 1.5rem;
  }
  
  .split p {
    margin: 0;
  }
  
  .rs-card-footer {
    box-shadow: rgb(17 17 26 / 10%) 0px -1px 0px;
  }
  
  /* +*+*+*+*+*+*+*+*+*+*+*+*++*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+* MODALS *+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+ */
  .rs-modal {
    max-width: 35rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 9px -1px, rgba(0, 0, 0, 0.2) 0px 1px 3px -1px;
    border-radius: 0.5rem;
    transition: all 300ms ease-in-out;
    display: none;
  }
  
  .rs-modal-inner {
    position: relative;
    background: var(--light);
    border-radius: 0.8rem;
    z-index: 992;
    animation: modalOp 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-flow: column;
    max-height: 60rem;
    overflow: hidden;
    min-width: 35rem;
  }
  
  .rs-modal-inner [class*="rs-modal-"] {
    padding: 1.5rem;
  }
  
  .rs-modal-head *,
  .rs-modal-body p {
    margin: 0;
  }
  
  .rs-modal-body {
    overflow: auto;
  }
  
  @keyframes modalOp {
    from {
      transform: translateY(-50px);
      opacity: 0;
    }
  
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @-webkit-keyframes modalOp {
    from {
      transform: translateY(-50px);
      opacity: 0;
    }
  
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .panel-anim {
    animation: closeModel 290ms linear;
  }
  
  @keyframes closeModel {
    from {
      transform: translateY(0);
      opacity: 1;
    }
  
    to {
      transform: translateY(-50px);
      opacity: 0;
    }
  }
  
  @-webkit-keyframes closeModel {
    from {
      transform: translateY(0);
      opacity: 1;
    }
  
    to {
      transform: translateY(-50px);
      opacity: 0;
    }
  }
  
  .modal-show {
    display: table !important;
    margin: auto;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 992;
  }
  
  .modal-show::after {
    content: '';
    position: fixed;
    background: rgb(0, 0, 0, 0.8);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 991;
    animation: fadeBg 100ms ease-in-out;
  }
  
  @keyframes fadeBg {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  @-webkit-keyframes fadeBg {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  .modal-medium {
    max-width: 40rem;
  }
  
  .modal-large {
    max-width: 60rem;
  }
  
  .modal-medium .rs-modal-body {
    min-height: 20rem;
  }
  
  .split .rs-modal-head .heading-medium {
    margin-bottom: 0;
  }
  
  .split .rs-modal-head .icon-close {
    top: 1.5rem;
    right: 1.5rem;
  }
  
  .split p {
    margin: 0;
  }
  
  /* [class*='-footer'] {
    box-shadow: var(--shadow-footer);
  } */
  
  .split .rs-modal-inner {
    padding: 0;
  }
  
  .split .rs-modal-inner {
    max-height: 50rem;
    display: flex;
    flex-flow: column;
    max-width: 50rem;
    margin: auto;
  }
  
  .split .rs-modal-inner .rs-modal-body {
    flex: 1;
    overflow: auto;
  }
  
  /* +*+*+*+*+*+*+*+*+*+*+*+*++*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+* ACCORDION *+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+ */
  .rs-accordion {
    margin-bottom: 1.5rem;
  }
  
  .rs-accordion-head {
    background: var(--secondary);
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
  }
  
  .rs-accordion-head::after {
    content: '';
    display: block;
    background: transparent;
    width: 1rem;
    height: 1rem;
    border-style: solid;
    border-width: 0 0.2rem 0.2rem 0;
    transform: rotate(45deg);
    position: absolute;
    right: 1.5rem;
    top: 2rem;
    transform-origin: center center;
    transition: all 200ms ease-in-out;
  }
  
  .rs-accordion-body {
    border-color: var(--secondary);
    border-style: solid;
    padding: 0 1.5rem;
    border-width: 0.2rem;
  }
  
  .rs-accordion-body p {
    max-height: 0;
    overflow: hidden;
    margin: 0;
    transition: all 100ms ease;
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0.015rem;
  }
  
  .rs-accordion.active .rs-accordion-body p {
    max-height: max-content;
    margin: 1.5rem 0;
  }
  
  .rs-accordion.active .rs-accordion-head::after {
    transform: rotate(-135deg);
  }
  
  /* +*+*+*+*+*+*+*+*+*+*++*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+* TABS *+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+ */
  .rs-tabs-head {
    position: relative;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    min-height: 4.5rem;
    z-index: 1;
  }
  
  .rs-tabs-head::-webkit-scrollbar {
    display: none;
  }
  
  .rs-menu-group {
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .rs-tab-menu {
    padding: 0rem 1.5rem;
    cursor: pointer;
    outline: none;
    height: 4.5rem;
    line-height: 4.5rem;
    text-decoration: none;
    color: inherit;
    white-space: nowrap;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: capitalize;
  }
  
  .rs-tab-content {
    display: none;
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0.015rem;
    max-height: 40rem;
    overflow: auto;
  }
  .rs-modal-inner .rs-tab-content {
    overflow: inherit;
    max-height: fit-content;
  }
  .rs-tab-content.active {
    display: block;
  }
  
  .rs-tabs-head .tab-indicator {
    position: absolute;
    left: 0;
    height: 0.2rem;
    background: var(--primary);
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0px;
    top: 0;
  }
  
  .rs-tabs-body, .rs-tabs-footer {
    padding: 1.5rem;
  }
  
  .rs-tab {
    /* border: 0.2rem solid var(--secondary);
    max-width: 100%;
    margin: auto !important;
    display: flex;
    flex-flow: column;
    overflow: auto; */
    background: #fbfbfb;
  border-radius: 8px;
  box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.65);
  height: 300px;
  margin: 6rem auto 8.1rem auto;
  width: 329px;
  }
  
  .rs-tab-menu.active,
  .rs-tabs-body {
    background: var(--light);
  }
  .rs-tabs-body {
    overflow: auto;
  }
  .rs-tab-menu.active {
    font-weight: var(--font-medium);
    color: var(--primary);
  }
  
  /* +*+*+*+*+*+*+*+*+*+*+*+*++*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+* BADGE +*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+ */
  .rs-badge {
    padding: 0.3rem;
    border-radius: 10rem;
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    min-height: 2rem;
    font-size: 70%;
    font-weight: 600;
    letter-spacing: 0.0125rem;
    line-height: 1;
  }
  
  .badge-light {
    background: var(--secondary);
  }
  
  .badge-dark {
    background: var(--primary);
    color: var(--secondary);
  }
  
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+* PILL +*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+*+*+***+*+*+*+*+*+*+*+*+*+*+*+ */
  .rs-chips {
    border: 0.1rem solid var(--secondary);
    width: fit-content;
    padding: 0.5rem;
    border-radius: 10rem;
    cursor: pointer;
    margin: 0rem 0.5rem 0.5rem 0rem;
    display: flex;
    gap: 0.6rem;
    align-items: center;
    font-size: 90%;
  }
  
  .rs-chips.fill {
    background: var(--secondary);
    border: 0.1rem solid var(--secondary);
  }
  
  .rs-chips .icon-close {
    position: relative;
    top: auto;
    left: auto;
    display: none;
    right: auto;
    opacity: 0.5;
  }
  
  .chip-remove.rs-chips .icon-close {
    display: block;
  }
  
  .chip-right .icon-close {
    order: 2;
  }
  
  .chip-dark {
    background: var(--primary);
    color: var(--secondary);
    border: 0.1rem solid;
  }
  
  .rs-chips.chip-dark .icon-close {
    stroke: var(--secondary);
    opacity: 1;
  }
  
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+* SWITCH +*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+*+*+***+*+*+*+*+*+*+*+*+*+*+*+ */
  .switch label {
    position: relative;
    width: 5rem;
    height: 2.5rem;
    display: inline-block;
    cursor: pointer;
  }
  
  .switch [type="checkbox"]:not(:checked)+label::before {
    border: none;
  }
  
  .switch [type="checkbox"]:checked+label::before {
    box-shadow: none;
  }
  
  .switch label::after,
  .switch label::before {
    transition: all 100ms linear;
    content: '';
    display: inline-block;
  }
  
  .switch [type='checkbox']:not(:checked)+label::before,
  .switch [type='checkbox']:checked+label::before {
    width: 5rem;
    height: 2.5rem;
    border-radius: 10rem;
    background: var(--secondary);
  }
  
  .switch [type='checkbox']:checked+label::before {
    background: var(--success);
    border: var(--success);
  }
  
  .switch [type='checkbox']:not(:checked)+label::after {
    width: 1.9rem;
    height: 1.9rem;
    top: 0.3rem;
  }
  
  .switch [type='checkbox']:not(:checked)+label::after,
  .switch [type='checkbox']:checked+label::after {
    border-radius: 10rem;
    background: var(--light);
    position: absolute;
    border: 0;
    left: 0.3rem;
  }
  
  .switch [type='checkbox']:checked+label::after {
    transform: translateX(2.5rem);
    background: var(--light);
    width: 1.9rem;
    height: 1.9rem;
    top: 0.3rem;
  }
  
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+* DRAWER +*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+*+*+***+*+*+*+*+*+*+*+*+*+*+*+ */
  .rs-drawer .rs-drawer-inner {
    max-width: 30rem;
    width: 30rem;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--bg2);
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 9993;
    animation: moveX 300ms ease-in-out;
  }
  
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+* DRAWER +*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+*+*+***+*+*+*+*+*+*+*+*+*+*+*+ */
  .que{
    max-width: 70rem !important;
    width: 70rem !important;
  }
/* Dash Board */
  .card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 40%;
  }
  
  .card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  }
  
  .container {
    padding: 2px 16px;
  }
  
  @keyframes moveX {
    from {
      transform: translateX(-100%);
    }
  
    to {
      transform: translateX(0);
    }
  }
  
  @-webkit-keyframes moveX {
    from {
      transform: translateX(-100%);
    }
  
    to {
      transform: translateX(0);
    }
  }
  
  .drawer-hide {
    animation: moveXHide 300ms ease-in-out !important;
  }
  
  @keyframes moveXHide {
    from {
      transform: translateX(0);
    }
  
    to {
      transform: translateX(-100%);
    }
  }
  
  @-webkit-keyframes moveXHide {
    from {
      transform: translateX(0);
    }
  
    to {
      transform: translateX(-100%);
    }
  }
  .drawer-right .rs-drawer-inner {
    right: 0;
    left: auto;
    animation: moveRight 300ms ease-in-out;
  }
  @keyframes moveRight {
    from {
      transform: translateX(100%);
    }
  
    to {
      transform: translateX(0);
    }
  }
  
  @-webkit-keyframes moveRight {
    from {
      transform: translateX(100%);
    }
  
    to {
      transform: translateX(0);
    }
  }
  
  .drawer-right .drawer-hide {
    animation: moveXright 300ms ease-in-out !important;
  }
  
  @keyframes moveXright {
    from {
      transform: translateX(0);
    }
  
    to {
      transform: translateX(100%);
    }
  }
  
  @-webkit-keyframes moveXright {
    from {
      transform: translateX(0);
    }
  
    to {
      transform: translateX(100%);
    }
  }
  .rs-drawer.show::after {
    content: '';
    display: block;
    background: rgba(0, 0, 0, 0.502);
    left: 0;
    right: 0;
    position: fixed;
    z-index: 9992;
    top: 0;
    bottom: 0;
    animation: wanein 300ms ease-in-out;
  }
  
  @keyframes wanein {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  @-webkit-keyframes wanein {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  .waneout::after {
    animation: waneout 300ms ease-in-out !important;
  }
  
  @keyframes waneout {
    from {
      opacity: 1;
    }
  
    to {
      opacity: 0;
    }
  }
  
  @-webkit-keyframes waneout {
    from {
      opacity: 1;
    }
  
    to {
      opacity: 0;
    }
  }
  
  .rs-drawer-head {
    min-height: 5rem;
    display: flex;
    align-items: center;
    padding: 1.5rem;
  }
  
  /* .rs-drawer-head::after {
    content: '';
    display: block;
    height: 4rem;
    width: 100%;
    background: var(--bg2);
    position: absolute;
    left: -1.1rem;
    top: auto;
    filter: blur(7px);
    z-index: 2;
    bottom: -2.8rem;
  } */
  
  .rs-drawer-head .heading-medium {
    margin: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 100ms ease-in-out;
  }
  
  .rs-drawer-body {
    padding: 1.5rem;
    flex: 1;
    overflow: auto;
    height: 100vh;
  }
  .rs-drawer-body ul li::after {
    content: '';
    display: flex;
    width: 0;
    height: 0.1rem;
    background: var(--primary);
    position: absolute;
    bottom: -0.1rem;
    margin: 0 auto;
    right: 0;
    left: 0;
    transform-origin: center center;
    transition: width 300ms linear;
    opacity: 0.4;
  }
  .rs-drawer-body ul li {
    min-height: 3rem;
    line-height: 3rem;
    padding: 1rem 1.5rem;
    border-bottom: 0.1rem solid var(--secondary);
    display: flex;
    align-items: center;
    /* overflow: hidden; */
    transition: all 300ms linear;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
  }
  .rs-drawer-body li .menu-icon {
    margin-right: 0.5rem;
    min-width: 2rem;
  }
  .rs-drawer-body ul li:hover::after {
    width: 100%;
    left: 0;
  }
  .rs-drawer-body ul li:hover, .rs-drawer-body ul li:focus {
    padding-left: 1rem;
    font-size: 1.66rem;
    text-shadow: 1px 1px 2px #00000036;
    background: var(--bg1);
  }
  .rs-drawer-body::-webkit-scrollbar {
    width: 0.6rem;
    display: none;
  }
  
  .rs-drawer-body::-webkit-scrollbar-thumb {
    background: var(--primary);
  }
  
  .rs-drawer-body::-webkit-scrollbar-track {
    background: var(--secondary);
  }
  .rs-drawer-body:hover::-webkit-scrollbar {
    display: block;
  }
  .rs-drawer {
    display: none;
  }
  
  .rs-drawer.rise .rs-drawer-inner {
    max-width: 100%;
    bottom: 0;
    top: auto;
    height: auto;
    animation: rise 300ms ease-in-out;
    width: 100%;
    max-height: 70%;
  }
  
  @keyframes rise {
    from {
      transform: translateY(100%);
    }
  
    to {
      transform: translateY(0);
    }
  }
  
  @-webkit-keyframes rise {
    from {
      transform: translateY(100%);
    }
  
    to {
      transform: translateY(0);
    }
  }
  
  .fall {
    animation: fall 300ms ease-in-out !important;
  }
  
  @keyframes fall {
    from {
      transform: translateY(0);
    }
  
    to {
      transform: translateY(100%);
    }
  }
  
  @-webkit-keyframes fall {
    from {
      transform: translateY(0);
    }
  
    to {
      transform: translateY(100%);
    }
  }
  
  .rs-drawer.rise .rs-drawer-inner,
  .rs-drawer.rise .rs-drawer-inner .rs-drawer-head {
    border-radius: 1.5rem 1.5rem 0 0;
  }
  
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+*  TOAST +*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+*+*+***+*+*+*+*+*+*+*+*+*+*+*+ */
  .rs-toast {
    background: var(--primary);
    color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    position: fixed;
    top: 10.5rem;
    left: 1.5rem;
    right: 1.5rem;
    font-size: 1.4rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    z-index: 9999;
    display: none;
    animation: modalOp 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    max-width: 50rem;
    margin: 0 auto;
    line-height: 1.5;
  }
  
  .modal-cl {
    animation: modalCl 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  @keyframes modalCl {
    from {
      transform: translateY(0);
      opacity: 1;
    }
  
    to {
      transform: translateY(-50px);
      opacity: 0;
    }
  }
  
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+* CONTAINER +*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+ */
  .rs-container,
  .rs-container-fluid {
    width: 100%;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .rs-container {
    max-width: 132rem;
  }
  
  .rs-container-fluid {
    max-width: 100%;
  }
  
  .rs-row {
    display: flex;
    gap: 1.5rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  
  [class*='rs-col-'] {
    background: var(--light);
    padding: 1.5rem;
    text-align: center;
    width: 100%;
    margin-bottom: 1.5rem;
    -webkit-box-shadow: 0 0 10px rgb(244 240 255 / 50%);
    box-shadow: 0 0 10px rgb(244 240 255 / 50%);
  }
  
  .palette-show {
    animation: translateNagtive 200ms ease-in-out;
  }
  
  @keyframes translateNagtive {
    from {
      transform: translateX(70%);
    }
  
    to {
      transform: translateX(0);
    }
  }
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+* SIGN IN / SIGN UP +*+*+*+*+*+*+*+*+*+*+*+*+ */
  /* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
  .rs-password-block {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
  }
  .rs-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1.5rem;
  }
  .rs-modal-inner .icon {
    right: 0.5rem;
    top: 0.5rem;
  }
  .rs-password-block .login {
    color: red;
  }
  @media (max-width: 768px) {
    /* footer {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
  } */
    .left-drawer .drawers .rs-drawer {
      display: none;
      position: absolute;
      height: 100vh;
      box-shadow: 2px 0px 6px rgb(0 0 0 / 20%);
    }
    .icon-list {
      display: block !important;
    }
    .menu-item.active {
      border: none;
      padding: 0;
      font-weight: var(--font-medium);
    }
  
    .menu-item {
      line-height: 3rem;
    }
  
    .rs-row {
      display: block;
      margin-bottom: 1.5rem;
    }
  
    [class*='rs-col-'] {
      width: 100%;
    }
  
    .rs-modal {
      width: 90%;
    }
  
    .split .rs-modal-inner {
      width: 100%;
    }
  
    .table-sticky th:last-child::before,
    .table-sticky td:last-child::before {
      box-shadow: -13px 0 12px -11px #e2e2e2 inset;
      content: " ";
      height: 100%;
      top: 0;
      left: -15px;
      position: absolute;
      width: 15px;
    }
  
    .menu-wrapper {
      display: none;
      width: 100%;
      position: fixed;
      top: 8.8rem;
      left: 0;
      right: 0;
      background: var(--primary);
      padding: 1.5rem;
      animation: menu-skew 300ms ease-in-out alternate;
  }
  @keyframes menu-skew {
    from {
      transform: translateY(10px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
    .menu-wrapper ul {
      display: block;
    }
  
    .menu-wrapper ul li {
      font-size: 85%;
      margin: 0;
    }
  
    .main-section-wrapper {
      flex-wrap: wrap;
      position: relative;
    }
    .logo-wrapper {
      width: 50%;
      display: flex;
      /* margin: 0 auto; */
      max-height: 7rem;
      height: auto;
      aspect-ratio: 43/10;
      justify-content: center;
  }
  
    /* uncomment the below css for first column */
    /* .table-sticky th:first-child::after, .table-sticky td:first-child::after {
          box-shadow: 13px 0 12px -11px #e2e2e2 inset;
          content: " ";
          height: 100%;
          top: 0;
          right: -15px;
          position: absolute;
          width: 15px;
      } */
  }
  
  @media (max-width: 360px) {
    /* .rs-modal-inner {
      max-height: 46rem !important;
    } */
  }
  
  @media (max-width: 576px) {
    .rs-row {
      display: block;
      margin-bottom: 1.5rem;
    }
  }
  
  @media (min-width: 769px) {
    .left-drawer .drawers .rs-drawer {
      display: block;
    }
    .rs-menu-toggle {
      display: none;
    }
  
  }
  
  @media (max-width: 992px) {
    /* .left-drawer .drawers .rs-drawer {
      display: none;
      position: absolute;
      height: 100vh;
      box-shadow: 2px 0px 6px rgb(0 0 0 / 20%);
    } */
  }
  
  @media (min-width: 993px) {
    /* .left-drawer .drawers .rs-drawer {
      display: block;
    } */
  
    .left-drawer .drawers .rs-drawer .rs-drawer-body {
      height: calc(100vh - 13.8rem);
    }
  }
  .left-drawer {
    box-shadow: rgb(50 50 93 / 9%) 0px 2px 5px -1px, rgb(0 0 0 / 8%) 2px 1px 3px -1px;
    z-index: 1;
}
.left-drawer .rs-drawer.show::after {
    display: none;
}

.left-drawer .rs-drawer-inner {
    animation: none;
    position: relative;
    z-index: 2;
    display: block;
    transition: width 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[class*="template-"] {
    padding-top: 8.8rem;
    padding-left: 0;
    padding-right: 0;
    height: 100vh;
    overflow: hidden;
}

.main-section-wrapper,
.main-section {
    display: flex;
    flex-wrap: wrap;
}

.main-section {
    justify-content: space-between;
    flex-flow: column;
    width: 100%;
    flex: 1;
    overflow: auto;
    height: calc(100vh - 8.8rem);
    padding: 1.5rem;
}
.width-toggle {
    width: 6rem !important;
}
.rotate-toggle {
    transform: rotate(180deg);
    left: 1.5rem;
}
.icon-list {
    position: absolute;
    left: 0;
    top: calc(50% - 1.2rem);
    display: none;
    z-index: 3;
}
.main-section .heading-large {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.horizontal-100 {
  width: 100%;
}
.vertical-100 {
  height: 100%;
}

textarea {
  width: 100% !important;
}