* {
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
}

:root {
  --primary-clr: #72bcb8;
  --secondary-clr: #5aa8a4;
  --black-clr: #000;
  --white-clr: #fff;
  --bg-clr: #f9ffff;
  --bg-lgt-clr: #f8f8f8;
  --green-clr: #32aa14;
  --red-clr: #ff0505;
  --pink-clr: #fd65c0;
  --yellow-clr: #ffcc40;
  --purple-clr: #783efd;
  --lgt-navy-clr: #6071cb;
  --dark-orange: #f65755;
  --theme-clr: #f7966b;
  --table-txt-clr: #404d61;
  --spacer: 45px;
  --ribbon-bg-color: #f8463f;
  --ribbon-bg-secondary-color: #c02031;
}

body {
  background: var(--bg-clr);
}

/* Scrollbar css start */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #f9ffff;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-clr);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-clr);
}

.bg-yellow {
  background: var(--yellow-clr) !important;
}

.bg-primary {
  background: var(--primary-clr) !important;
}

.bg-purple {
  background: var(--purple-clr) !important;
}

.bg-lgt-navy {
  background: var(--lgt-navy-clr) !important;
}

.bg-orange {
  background: var(--dark-orange) !important;
}

.bg-yellow {
  background: var(--yellow-clr) !important;
}

.bg-pink {
  background: var(--pink-clr) !important;
}

.bg-rbn {
  background: var(--ribbon-bg-color);
}

.bg-rbn1 {
  background: var(--ribbon-bg-secondary-color);
}

.ribbon {
  position: relative;
}

.ribbon-box {
  position: absolute;
  top: -6.1px;
  left: 25px;
}

.ribbon-box:after {
  position: absolute;
  content: "";
  width: 100px;
  height: 100%;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 10px solid #222;
  border-bottom: 0px solid transparent;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.ribbon-box span.ribbon-content {
  position: relative;
  display: block;
  text-align: center;
  background: #222;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  padding: 8px 8px 8px;
  border-top-right-radius: 8px;
  width: 100px;
}

.ribbon-box span.ribbon-content:before,
.ribbon-box span.ribbon-content:after {
  position: absolute;
  content: "";
}

.ribbon-box span.ribbon-content:before {
  height: 6px;
  width: 6px;
  left: -6px;
  top: 0;
  background: #222;
}

.ribbon-box span.ribbon-content:after {
  height: 6px;
  width: 8px;
  left: -8px;
  top: 0;
  border-radius: 8px 8px 0 0;
  background: #000;
}

/* Deleted ribbon css */

.ribbon-theme-red::after {
  border-top-color: var(--ribbon-bg-color) !important;
}

.ribbon-theme-red span.ribbon-content::before {
  background: var(--ribbon-bg-color) !important;
}

.ribbon-theme-red span.ribbon-content {
  background: var(--ribbon-bg-color) !important;
}

.ribbon-theme-red span.ribbon-content::after {
  background: var(--ribbon-bg-secondary-color) !important;
}

/* Deleted ribbon css */

/* available ribbon */

.ribbon-theme-green::after {
  border-top-color: var(--green-clr) !important;
}

.ribbon-theme-green span.ribbon-content::before {
  background: var(--green-clr) !important;
}

.ribbon-theme-green span.ribbon-content {
  background: var(--green-clr) !important;
}

.ribbon-theme-green span.ribbon-content::after {
  background: #008923 !important;
}

/* available ribbon */

/* Pending ribbon */

.ribbon-theme-yellow::after {
  border-top-color: #f3921a !important;
}

.ribbon-theme-yellow span.ribbon-content::before {
  background: #f3921a !important;
}

.ribbon-theme-yellow span.ribbon-content {
  background: #f3921a !important;
}

.ribbon-theme-yellow span.ribbon-content::after {
  background: #d16b00 !important;
}

/* Pending ribbon */

.text-error {
  margin: 0;
  padding: 4px;
  color: var(--red-clr);
  font-size: 14px;
}

/* Scrollbar css end */
a {
  text-decoration: none;
}

.spacer {
  padding: var(--spacer) 0px;
}

.spacer-b {
  padding-bottom: var(--spacer);
}

.spacer-t {
  padding-top: var(--spacer);
}

.spacer-x {
  padding: 0px var(--spacer);
}

.p-relative {
  position: relative;
}

.primary-btn {
  background: var(--primary-clr);
  color: #fff;
  padding: 10px;
  min-width: 100px;
  text-align: center;
  margin: 0px;
  border-radius: 8px;
  transition: all 0.5s ease;
}

.secondary-btn {
  min-width: 100px !important;
}

.primary-btn:hover {
  background: var(--secondary-clr) !important;
  color: #fff !important;
}

.secondary-btn:hover,
.primary-border-btn:hover {
  background: #222 !important;
  color: #fff !important;
}

input:focus,
select:focus,
textarea:focus {
  box-shadow: none !important;
  border-color: #eee !important;
}

img {
  max-width: 100%;
}

/* Login Page CSS Start */
section.login-section {
  background: var(--white-clr);
}

.login-main-blk {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}

.login-main-blk::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 808px;
  background: url(../images/icons/login-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.login-heading h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--black-clr);
  text-transform: capitalize;
  margin-bottom: 0px;
}

.login-form-blk {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 590px;
  width: 100%;
  border-radius: 5px;
  background: var(--white-clr);
  padding: 70px 62px;
  box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.05);
}

.login-form-blk form {
  margin-top: 48px;
}

.login-form-blk form .form-group:first-child {
  margin-bottom: 20px;
}

.login-form-blk form .form-group:nth-child(2) {
  margin-bottom: 12px;
}

.login-form-blk form .form-group label {
  font-size: 15px;
  color: #333333;
  margin: 0px 0px 10px 0px;
  text-transform: uppercase;
  font-weight: 500;
}

.login-form-blk form .form-group input {
  padding: 17px;
  background: var(--white-clr);
  border: 1px solid #dedede;
  border-radius: 8px;
}

.login-btn-blk {
  text-align: center;
  margin-top: 40px;
}

.login-btn-blk .btn {
  width: 100%;
  font-size: 22px !important;
  font-weight: 700 !important;
  padding: 18px;
  border-radius: 8px;
  margin-right: 0px !important;
  text-transform: uppercase;
}

span.eye {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  cursor: pointer;
}

/* Login Page CSS End */

.main-wrapper {
  margin-left: 275px;
  transition: all 0.5s ease;
  background: var(--bg-clr);
}

.main-wrapper.main-width {
  margin-left: 0px;
}

.content-wrapper {
  background: var(--bg-clr);
}

header {
  padding: 24px 0px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
  background: var(--white-clr);
  position: relative;
  z-index: 1;
}

ul.navsbar,
a.nav-link.profile-link {
  position: relative;
}

a.navbar-brand {
  color: #fff !important;
}

.navbar-light .navbar-nav .nav-link i {
  color: var(--main-clr) !important;
  font-size: 18px;
}

.navbar-nav li.nav-item:not(:last-child) {
  margin-right: 8px;
}

.navsbar li a.nav-link {
  width: 37px;
  height: 37px;
  background: var(--bg-clr);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.navsbar li a.nav-link.profile-link {
  width: 50px;
  height: 50px;
  border: 1px solid var(--primary-clr);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 1px;
  cursor: pointer;
}

.navsbar li a.nav-link.profile-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

header button.opnBtn {
  background-color: var(--primary-clr);
  color: #fff;
  border: 0;
  padding: 7px 15px;
  border-radius: 5px;
  z-index: 2;
  display: none !important;
}

.side-hide {
  left: -363px !important;
}

.side-navbar ul li,
.side-navbar ul li a {
  background: var(--primary-clr);
  transition: all 0.5s ease;
}

.side-navbar ul li.sidebar-logo {
  margin-top: 28px;
  margin-bottom: 18px;
  text-align: center;
}

li.sidebar-logo a.navbar-brand {
  width: 122px;
  transition: all 0.5s ease;
  display: inline-block;
}

li.sidebar-logo a.navbar-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wlecome-text-blk {
  margin-top: 30px;
}

.wlecome-text-blk span {
  color: var(--bg-clr);
  text-align: left;
  display: block;
  padding: 0px 24px;
  font-size: 14px;
}

.wlecome-text-blk span:last-child {
  font-weight: 500;
}

.side-navbar ul li.sidebar-link {
  padding: 0px 0px 0px 15px;
  margin-bottom: 4px;
}

.side-navbar ul li.sidebar-link a.nav-link {
  color: var(--white-clr) !important;
  background: transparent;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 0px;
  transition: all 0.2s ease-in-out;
  text-transform: capitalize;
  cursor: pointer;
}

.side-navbar ul li.sidebar-link a.nav-link:hover {
  background: var(--secondary-clr);
  border-radius: 30px 0px 0px 30px;
  font-weight: 500;
}

.side-navbar ul li.sidebar-link a.nav-link.active {
  background: var(--secondary-clr);
  border-radius: 30px 0px 0px 30px;
  font-weight: 700;
}

.side-navbar ul li a.nav-link i {
  font-size: 16px;
  margin-right: 10px;
}

a.navbar-brand+span {
  display: block;
  font-size: 16px;
  padding: 5px;
  background: var(--primary-clr);
  border-radius: 30px;
  margin: 10px;
  color: #fff;
}

.sidebar-profile {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
}

a.profile-box {
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  overflow: hidden;
  display: inline-block !important;
  margin-right: 10px !important;
}

a.profile-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-profile span {
  width: calc(100% - 60px);
  text-align: left;
  color: #fff;
}

.side-navbar {
  max-width: 275px;
  width: 100%;
  background: var(--primary-clr);
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  padding: 0px;
  overflow-y: auto;
  transition: all 0.5s ease;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

button.closeBtn {
  width: 30px;
  height: 30px;
  background: transparent;
  color: #fff;
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: none !important;
  z-index: 5;
}

/* dashboard css start */

span.page-heading {
  font-size: 25px;
  font-weight: 700;
  color: var(--black-clr);
  line-height: normal;
}

.heading {
  margin-bottom: 35px;
}

.topheading h1,
.topheading h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0px;
  text-transform: capitalize;
}

.heading h1 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
}

button.calender-icon {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 27px;
  height: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0px;
  background: #fff;
}

.dashboard-blk ul.nav-pills {
  margin-bottom: 48px;
}

.dashboard-blk button.nav-link {
  padding: 0px;
  background: var(--bg-clr) !important;
  color: #71717a;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 5px;
}

.dashboard-blk button.nav-link.active {
  color: var(--white-clr) !important;
  background: var(--primary-clr) !important;
}

.addcategory-modal .modal-dialog {
  max-width: 655px;
}

.addcategory-modal .modal-content {
  background: var(--bg-clr);
}

.modal-wrapper {
  padding: 50px 65px;
}

.modal-heading {
  text-align: center;
  margin-bottom: 40px;
}

.modal-heading h2 {
  font-size: 22px;
  font-weight: 700;
}

.modal-btn-block {
  text-align: center;
  margin-top: 40px;
}

.date-modal .modal-header {
  padding-top: 27px;
}

.date-modal .modal-body {
  padding: 12px 40px;
}

.form-mdl-blk .form-group label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.form-mdl-blk .form-group input {
  padding: 17px;
  border: 0px;
  background: var(--bg-lgt-clr);
  font-size: 14px;
  font-weight: 600;
  color: #545252;
}

.date-modal .modal-footer {
  justify-content: center !important;
  padding-bottom: 22px;
}

button.btn.primary-btn {
  font-size: 12px;
  font-weight: 400;
  margin-right: 10px;
}

button.btn.secondary-btn {
  background: var(--bg-lgt-clr);
  color: #000;
  font-size: 12px;
  font-weight: 500;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  margin: 0px;
}

.graph-card {
  background: var(--white-clr);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.flex-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-end-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

.flex-width-select {
  width: 165px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  font-size: 13px;
}

.select-month {
  position: relative;
  border-radius: 30px;
  background-color: var(--primary-clr);
  z-index: 1;
}

.select-month select {
  border: 1px solid var(--primary-clr);
  border-radius: 30px;
  padding: 5px 15px;
  background-color: transparent;
  color: #fff;
  font-size: 12px;
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}

.select-month select option {
  background: #fff;
  color: #000;
}

.graph-blk img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.recharts-wrapper {
  width: 100% !important;
  height: 100% !important;
}

.total-card-blk {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.sub-heading .h3 {
  font-size: 19px;
  font-weight: 500;
}

.sub-heading h2 {
  font-size: 20px;
  font-weight: 700;
}

.sub-heading {
  margin: 45px 0px 25px;
}

.total-card-inner {
  flex-basis: 24%;
  padding: 23px 20px 23px 33px;
  background: #ffffff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

span.card-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #ddd;
  border-radius: 8px;
  margin-bottom: 24px;
}

.total-card-text {
  width: calc(100% - 124px);
}

.total-card-graph {
  width: 124px;
}

.total-card-text span {
  display: flex;
}

span.card-count {
  font-size: 29px;
  font-weight: 700;
  color: var(--black-clr);
}

span.card-days {
  font-size: 13px;
  color: #3d3d3d;
  font-weight: 500;
}

.user-card {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-lgt-clr);
  border-radius: 20px;
  padding: 45px 15px;
}

.user-card:not(:last-child) {
  margin-bottom: 30px;
}

.user-card-inner span {
  display: block;
  text-align: center;
}

span.no-of-users {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  color: #000;
}

span.users-count {
  font-size: 40px;
  font-weight: 700;
}

.user-card.active span.users-count {
  color: #579705;
}

.user-card.inactive span.users-count {
  color: #e73535;
}

.user-card.totaluser span.users-count {
  color: #ec8d48;
}

.graph-blk a.canvasjs-chart-credit {
  display: none;
}

.graph-card button.nav-link {
  background: var(--white-clr) !important;
}

/* dashboard css end */

/* Datepicker CSS Start */

span.cal-icon {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/calender.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.form-block input,
.form-block select {
  padding: 13px 18px;
  background-color: var(--bg-lgt-clr);
  border-color: var(--bg-lgt-clr);
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.form-block input::placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.form-block input:focus {
  outline: none;
  border-color: #eee !important;
}

.form-block input#search {
  padding-right: 30px;
}

span.search-icon {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/search-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.form-block input#search:focus+span.search-icon {
  display: none;
}

#ui-datepicker-div {
  display: none;
  background-color: #fff;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  margin-top: 0.25rem;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.form-block #ui-datepicker-div table {
  border-collapse: collapse;
  border-spacing: 0;
}

.ui-datepicker-calendar thead th {
  padding: 0.25rem 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  color: #78909c;
}

.ui-datepicker-calendar tbody td {
  width: 2.5rem;
  text-align: center;
  padding: 0;
}

.ui-datepicker-calendar tbody td a {
  display: block;
  border-radius: 0.25rem;
  line-height: 2rem;
  transition: 0.3s all;
  color: #546e7a;
  font-size: 0.875rem;
  text-decoration: none;
}

.ui-datepicker-calendar tbody td a:hover {
  background-color: var(--bg-clr);
}

.ui-datepicker-calendar tbody td a.ui-state-active {
  background-color: var(--primary-clr);
  color: white;
}

.ui-datepicker-header a.ui-corner-all {
  cursor: pointer;
  position: absolute;
  top: 0;
  width: 2rem;
  height: 2rem;
  margin: 0.5rem;
  border-radius: 0.25rem;
  transition: 0.3s all;
}

.ui-datepicker-header a.ui-corner-all:hover {
  background-color: #eceff1;
}

.ui-datepicker-header a.ui-datepicker-prev {
  left: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: 0.5rem;
  background-position: 50%;
  transform: rotate(180deg);
}

.ui-datepicker-header a.ui-datepicker-next {
  right: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: 50%;
}

.ui-datepicker-header a>span {
  display: none;
}

.ui-datepicker-title {
  text-align: center;
  line-height: 2rem;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding-bottom: 0.25rem;
}

.ui-datepicker-week-col {
  color: #78909c;
  font-weight: 400;
  font-size: 0.75rem;
}

/* Datepicker CSS end */

/* user management css start */

.sub-heading .h4,
h4,
.h4 {
  font-size: 16px;
  font-weight: 500;
}

/* Datatable CSS Start */
table {
  width: 100%;
}

th,
td {
  white-space: nowrap;
}

.table-blk table thead tr {
  background: var(--primary-clr);
}

.table-blk table tr th {
  font-size: 16px;
  color: var(--white-clr);
  font-weight: 400;
  padding: 17px 23px;
}

.table-blk table tr td {
  font-size: 16px;
  color: var(--table-txt-clr);
  font-weight: 400;
  padding: 10px 23px;
  text-wrap: wrap;
}

.table-blk table tr td a {
  font-size: 16px;
  color: var(--table-txt-clr);
  font-weight: 400;
}

.table-blk table tr th,
.table-blk table tr td,
.table-blk table.dataTable.display tbody td {
  border: 0px;
  box-shadow: none !important;
}

.table-blk table.dataTable.display tbody tr.odd {
  background: var(--bg-lgt-clr) !important;
}

span.table-profile {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
}

span.table-profileimg {
  width: 29px;
  height: 29px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

span.table-profileimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

span.table-username {
  width: calc(100% - 39px);
  display: inline-block;
}

span.table-status.st-confirmed,
span.table-status.st-active {
  color: var(--green-clr);
  /* background-color: var(--green-clr);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 14px; */
}

span.table-status.st-suspended,
span.table-status.st-decline {
  color: var(--red-clr);
  /* background-color: var(--red-clr);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 14px; */
}

span.table-status.st-pending {
  color: #f1c114;
  /* background-color: #f1c114;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 14px; */
}

span.table-action {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  line-height: 0px;
  cursor: pointer;
}

span.table-check {
  line-height: 0px;
}

.table-check input {
  display: none;
}

.table-check input+label {
  width: 32px;
  height: 16px;
  background: var(--primary-clr);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease;
}

.table-check input+label::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 20px;
  transition: all 0.5s ease;
}

.table-check input:checked+label {
  background: #4d7c79;
}

.table-check input:checked+label::before {
  left: calc(100% - 14px);
}

button.table-trash {
  border: 0px;
  background: transparent;
  padding: 0px;
  line-height: 0px;
  cursor: pointer;
}

.table-blk .dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 5px 12px !important;
}

.table-blk .dataTables_wrapper .dataTables_paginate .paginate_button:not(:last-child) {
  margin-right: 45px;
}

.table-blk .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: white !important;
  border: 0px;
  background: linear-gradient(to bottom, #96b0e5 0%, #082562 100%);
}

div.dataTables_length select {
  background: var(--primary-clr);
  padding: 5px;
  border-radius: 5px;
  color: #fff;
  border-color: var(--primary-clr);
}

.table-blk .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
  border: 0px;
  background: transparent;
}

.table-blk .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover svg path {
  fill: #000 !important;
  fill-opacity: 0.38;
}

.table-blk .dataTables_wrapper .dataTables_paginate .paginate_button:hover svg path {
  fill: #fff !important;
  fill-opacity: 1;
}

/* status */
.c-pill {
  align-items: center;
  font-weight: bold;
  font-size: 12px;
  display: inline-block;
  height: 100%;
  white-space: nowrap;
  width: auto;

  position: relative;
  border-radius: 100px;
  line-height: 1;
  overflow: hidden;
  padding: 0px 12px 0px 20px;
  text-overflow: ellipsis;
  line-height: 1.25rem;
  color: #595959;
  word-break: break-word;
}

.c-pill:before {
  border-radius: 50%;
  content: "";
  height: 10px;
  left: 6px;
  margin-top: -5px;
  position: absolute;
  top: 50%;
  width: 10px;
}

.c-pill--success {
  background: #b4eda0;
}

.c-pill--success:before {
  background: #6bc167;
}

.c-pill--warning {
  background: #ffebb6;
}

.c-pill--warning:before {
  background: #ffc400;
}

.c-pill--danger {
  background: #ffd5d1;
}

.c-pill--danger:before {
  background: #ff4436;
}

/* status */

/* Datatable CSS end */

.common-modal .modal-dialog {
  max-width: 615px;
}

.common-modal .modal-content {
  border: 0px;
  border-radius: 20px;
}

.common-modal .modal-body {
  padding: 35px 40px 50px;
}

.common-modal .modal-body .btn-close {
  position: absolute;
  content: "";
  top: 20px;
  right: 20px;
  opacity: 1;
}

.common-box-body h2 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0px;
}

.common-modal-form {
  margin-top: 50px;
}

.common-modal-field:not(:last-child) {
  margin-bottom: 25px;
}

.common-modal-field label {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 15px;
}

.common-modal-field :is(.form-control, .form-select) {
  padding: 20px 22px;
  font-size: 18px;
  border-radius: 5px;
  background-color: rgb(243 243 243 / 50%);
  border-color: rgb(243 243 243 / 50%);
  color: #a4a4a4;
}

.common-modal-btns {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* Add KEY HOST css start */

.addkeyhost-modal .modal-dialog {
  max-width: 1224px;
}

.addkeyhost-modal .common-modal-field {
  margin-bottom: 15px;
}

.addkeyhost-modal :is(.form-control, .form-select) {
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
  background-color: rgb(243 243 243 / 50%);
  border-color: rgb(243 243 243 / 50%);
  color: #a4a4a4;
}

.addkeyhost-modal .phone-input input,
.phone-input input {
  border: 0px;
  background: rgb(243 243 243 / 50%);
  padding: 0px 15px;
}

.time-wrapper {
  max-height: 180px;
  overflow-y: auto;
  overflow-x: hidden;
}

.time-wrapper-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.time-wrapper-list:not(:last-child) {
  margin-bottom: 15px;
}

.time-title-blk {
  max-width: 320px;
  width: 100%;
  margin: 15px auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

span.day-title {
  width: 80px;
  font-size: 13px;
  font-weight: 700;
}

span.time-title {
  width: 48%;
}

.time-field-blk {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 165px);
  width: 100%;
}

.time-field-blk div.react-time-picker {
  width: 48% !important;
  padding: 12px 10px !important;
}

.react-time-picker__wrapper {
  width: 100%;
  display: flex;
  flex-grow: initial !important;
  flex-shrink: initial !important;
  border: 0px !important;
  align-items: center !important;
  gap: 5px;
}

select.react-time-picker__inputGroup__input {
  min-width: 3em !important;
  width: 3em !important;
}

button.react-time-picker__clear-button {
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
}

.closed-check-blk {
  width: 85px;
  display: flex;
  justify-content: flex-end;
  padding-right: 10px;
}

.closed-check-blk input {
  display: none;
}

.closed-check-blk label {
  margin-bottom: 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

span.check-box {
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 2px;
  background: #d9d9d9;
  position: relative;
}

span.check-box::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: url(/assets/images/icons/checkbox-path.svg);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  display: none;
}

span.checklabel {
  width: calc(100% - 21px);
  line-height: normal;
}

.closed-check-blk input:checked+label span.check-box {
  background: var(--primary-clr);
}

.closed-check-blk input:checked+label span.check-box::before {
  display: block;
}

.searchWrapper {
  border: 0px !important;
  padding: 12px 20px !important;
}

.multisel {
  padding: 0px !important;
}

.multiSelectContainer {
  padding: 0px;
}

.highlightOption,
.multiSelectContainer li:hover {
  background: var(--primary-clr) !important;
}

.multiselect-container input.checkbox {
  width: 18px;
  height: 18px;
  margin-top: 0px !important;
}

.multiselect-container input.checkbox {
  accent-color: #fff !important;
}

.multiSelectContainer li {
  padding: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media screen and (max-width: 650px) {
  .time-title-blk {
    max-width: 100%;
    width: 100%;
  }

  .time-wrapper-list {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
  }

  .time-field-blk {
    order: 3;
    max-width: 100%;
  }

  .time-field {
    width: 48%;
  }

  .closed-check-blk {
    width: 85px;
  }
}

/* Add KEY HOST css End */

.mdl-profile-blk {
  text-align: center;
  padding: 37px 0px 18px;
  position: relative;
  z-index: 1;
}

.mdl-profile-blk::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 107px;
  background: var(--primary-clr);
  z-index: -1;
}

.mdl-profile-img {
  width: 107px;
  height: 107px;
  margin: 0 auto;
  border-radius: 50%;
  margin-bottom: 10px;
}

.mdl-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.mdl-profile-blk h2 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.mdl-pro-deatil-blk {
  padding: 35px 40px;
  border-top: 1px solid var(--secondary-clr);
}

.person-detail {
  display: flex;
  justify-content: end;
  align-items: center;
}

.detail-heading h4 {
  margin-bottom: 0px;
  color: #000;
}

.person-detail p {
  margin: 0px;
  color: #404040;
}

/* user management css end */

.box-flex-card {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  gap: 20px 55px;
}

.qr-blk {
  width: 259px;
  height: 259px;
}

.qr-blk img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.box-detail {
  width: calc(100% - 314px);
  padding: 15px 0px;
}

.box-detail .info-detail {
  margin-bottom: 20px;
}

.box-detail h2 {
  margin-bottom: 0px;
}

button.scanqr-btn {
  border: 0px;
  background: #fff;
  padding: 0px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-clr);
  text-decoration: underline;
}

.modal-subheading {
  margin-bottom: 20px;
}

.modal-subheading p {
  margin-bottom: 0px;
  font-size: 20px;
  text-align: center;
  color: #000;
}

/* user detail page css start */
.wrapper-card {
  padding: 52px 75px 40px;
  border-radius: 15px;
  box-shadow: 0px 2px 12px 0px rgba(152, 152, 152, 0.25);
  background-color: var(--white-clr);
}

.wrapper-querycard {
  padding: 37px 47px 40px;
  border-radius: 15px;
  box-shadow: 0px 2px 12px 0px rgba(152, 152, 152, 0.25);
  background-color: var(--white-clr);

}

.wrapper-stripe-card {
  padding: 37px 47px 40px;
  border-radius: 15px;
  box-shadow: 0px 2px 12px 0px rgba(152, 152, 152, 0.25);
  /* background-color: var(--white-clr); */
  background: linear-gradient(339deg, rgba(169, 96, 238, 1) 0%, rgba(255, 51, 61, 1) 40%, rgba(144, 224, 255, 1) 80%, rgba(255, 203, 87, 1) 100%);
}

.info-card {
  padding: 35px 60px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 2px 11px rgb(211 211 211);
}

.info-detail h2 {
  font-size: 18px;
  color: #000000;
  font-weight: 500;
}

.info-detail p {
  font-size: 16px;
  font-weight: 500;
  color: #505050;
}

.info-txt-detail:not(:last-child) {
  margin-bottom: 15px;
}

.info-flex-detail .info-detail {
  display: flex;
  justify-content: flex-start;
  gap: 60px;
  margin-bottom: 15px;
}

.info-flex-detail .info-detail h2 {
  font-weight: 700;
  width: 40%;
  margin-bottom: 0px;
}

.info-flex-detail .info-detail p {
  width: calc(60% - 60px);
}

/* // */
.info-key-detail .key-detail {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 15px;
  align-items: center;
}

.info-key-detail .key-detail h5 {
  font-size: 17px;
  font-weight: 700;
  width: 40%;
  margin-bottom: 0px;
}

.info-key-detail .key-detail p {
  text-align: end;
  width: calc(60% - 60px);
}

/*  */
.info-txt-detail h2 {
  font-size: 18px;
  color: #000000;
  font-weight: 700;
}

.info-txt-detail p,
span.hrs-opt span {
  font-size: 16px;
  font-weight: 500;
  color: #505050;
}

.info-card.key-detail .info-flex-detail .info-detail p {
  text-align: end;
}

span.hrs-opt {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px 50px;
  flex-wrap: wrap;
}

.info-card.key-detail {
  padding: 35px;
}

span.key-host-status {
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

span.key-host-status::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -10px;
  width: 5px;
  height: 5px;
  background: #60cf09;
  border-radius: 5px;
  transform: translateY(-50%);
}

span.key-host-status[data-status="0"]::before {
  background: #f1c114;
  /* Change this line to the desired color for Pending status */
}

span.key-host-status[data-status="1"]::before {
  background: #60cf09;
  /* Change this line to the desired color for Available status */
}

span.key-host-status[data-status="2"]::before {
  background: var(--red-clr);
  /* Change this line to the desired color for In-Use status */
}

button.text-btn {
  background: #fff;
  color: var(--primary-clr);
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
  padding: 0px;
  border: 0px;
}

.add-btn {
  padding: 10px 15px;
  border: 1.5px solid var(--primary-clr);
  color: var(--primary-clr);
  border-radius: 8px;
  background: var(--bg-clr);
  font-size: 13px;
  font-weight: 500;
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.add-tutorial {
  padding: 10px 15px;
  border: 1.5px solid var(--primary-clr);
  color: var(--primary-clr);
  border-radius: 8px;
  background: var(--bg-clr);
  font-size: 13px;
  font-weight: 500;
  width: 100%;
}

.key-modal .modal-dialog {
  max-width: 1455px;
}

.key-modal .modal-body {
  padding: 0px;
}

.key-modal .key-historymodal-body {
  position: relative;
  padding: 50px 40px 30px;
}

.key-modal .key-historymodal-body .btn-close {
  position: absolute;
  content: "";
  top: 20px;
  right: 25px;
  opacity: 1;
}

.key-historymodal-body h2 {
  font-size: 25px;
  font-weight: 600;
  color: #000;
}

.modal-table-blk {
  margin-top: 20px;
}

/* user detail page css end */

.addsub-plan {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.bg-gradient {
  background: linear-gradient(260deg, rgba(255, 255, 255, 1) 10%, rgba(93, 170, 166, 1) 100%) !important;
}

.form-check-input {
  border: 1px solid #5aa8a4;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.form-check-input:checked {
  background-color: #5aa8a4;
  border-color: #5aa8a4
}

.subscription-card-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.subscription-flex-card {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.subscription-card {
  padding: 32px;
  background: linear-gradient(20deg, rgba(255, 255, 255, 1) 10%, rgba(0, 0, 0, 0.18531162464985995) 100%) !important;
  ;
  border-radius: 20px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  width: 269px;
  position: relative;
}

.subscription-card:last-child {
  background: #f8f8f8;
}

button.del-sub-card-btn {
  position: absolute;
  content: "";
  top: 3px;
  right: 4px;
  border: 0;
  background: #000;
  border-radius: 5px 17px 5px 17px;
  width: 50px;
  padding: 4px;
}

.subscription-card h2 {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0px;
  color: #000;
}

span.subscription-price {
  display: block;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #000;
  margin: 10px 0px;
}

.subscription-action-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

button.btn.black-btn {
  font-size: 12px;
  font-weight: 400;
  background: #000;
  color: #fff;
  padding: 10px;
  min-width: 100px;
  text-align: center;
  margin: 0px;
  border-radius: 8px;
  transition: all 0.5s ease;
}

/* change password css start */
.reset-password {
  color: var(--primary-clr) !important;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 2px solid;
  cursor: pointer;
}

.change-psw-section {
  padding-top: 100px;
}

.change-main-wrapper {
  /* max-width: 1190px; */
  width: 100%;
  border-radius: 18px;
  background: var(--white-clr);
  box-shadow: 0px 8px 45px 0px rgba(189, 189, 189, 0.25);
  padding: 45px 100px 80px;
}

/* change password css start */

button.add-more-btn {
  color: var(--primary-clr) !important;
  border-color: var(--primary-clr);
  font-weight: 500 !important;
}

.primary-border-btn {
  font-size: 18px;
  color: #000;
  border: 2px solid #000;
  font-weight: 500 !important;
  display: block;
  padding: 12px;
}

.profile-btns button {
  padding: 12px !important;
  min-width: 150px;
  font-size: 18px !important;
}

.view-history-btn {
  padding: 8px 15px;
  border-radius: 25px;
}

/* Notification css start */

.notification-card {
  width: 100%;
  background: #fff;
  padding: 18px 22px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  box-shadow: 0px 2px 8px 0px rgba(152, 152, 152, 0.25);
}

.notification-card:not(:last-child) {
  margin-bottom: 10px;
}

.notification-card.new-ntf::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: var(--primary-clr);
}

.ntf-user-profile {
  width: 50px;
  height: 50px;
  margin-right: 25px;
}

.ntf-user-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ntf-details {
  width: calc(100% - 170px);
  padding-right: 150px;
}

.ntf-details .h4 {
  text-transform: capitalize;
  font-weight: 500;
}

.ntf-details p {
  color: #979797;
  margin-bottom: 5px;
}

span.ntf-time {
  width: 85px;
  display: inline-block;
  font-size: 16px;
  color: #979797;
  font-weight: 500;
  margin-left: 10px;
}

/* Notification css end */

.content-tabs {
  list-style: none;
  padding-left: 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 26px;
}

.content-tabs .nav-link {
  background: #eee;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  min-width: 170px;
}

.content-tabs .nav-link.active {
  background: var(--primary-clr);
  color: #fff;
}

.content-tabs li:first-child .nav-link {
  border-radius: 8px 0px 0px 8px;
}

.content-tabs li:last-child .nav-link {
  border-radius: 0px 8px 8px 0px;
}

.tab-content-wrapper h2 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.tab-content-wrapper :is(ol, ul) {
  padding-left: 15px;
}

.tab-content-wrapper :is(p, li) {
  font-size: 14px;
  color: #545454;
  line-height: 26px;
}

/* Profile CSS Start */

.profile-main-wrapper {
  width: 100%;
  border-radius: 18px;
  background: var(--white-clr);
  box-shadow: 0px 8px 45px 0px rgba(189, 189, 189, 0.25);
  padding: 45px 100px 80px;
}

.profile-img {
  width: 132px;
  height: 132px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 40px !important;
  position: relative;
  cursor: pointer;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

label.profile-img span {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: none;
}

label.profile-img span i {
  font-size: 24px;
  margin-bottom: 5px;
}

.profile-img:hover span {
  display: flex;
}

.profile-details {
  width: 100%;
}

.profile-main-wrapper .form-block input,
.profile-main-wrapper .form-block select,
.change-main-wrapper .form-block input,
.change-main-wrapper .form-block select,
.change-main-wrapper .form-block textarea {
  background-color: var(--bg-lgt-clr);
}

.change-main-wrapper label,
.profile-main-wrapper label {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 15px;
}

.send-notification textarea {
  padding: 13px 18px;
  width: 100%;
  background: var(--bg--lgt-clr);
  border: 1px solid var(--bg-lgt-clr);
  resize: none;
  border-radius: 8px;
  color: var(--black-clr);
}

.change-psw .form-group:not(:last-child) {
  margin-bottom: 25px;
}

.change-psw .form-mdl-blk {
  padding: 40px;
}

span#eye {
  position: absolute;
  content: "";
  top: 50%;
  right: 15px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.change-psw input {
  padding-right: 40px !important;
}

/* Profile CSS End */

/* User Not found start */

.not-wrapper {
  max-width: 900px;
  background: #fff;
  margin: 0 auto;
  min-height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.not-found-blk-img {
  width: 100%;
  height: 400px;
  margin-bottom: 20px;
}

.not-found-blk-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.not-found-blk h1 {
  color: #082562;
}

.not-found-blk p {
  color: #999999;
}

/* User Not found end */

/* Seed Detail css start */

.edit-btns-blk {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.edit-btns-blk .edit-btn {
  padding: 0px;
  border: 0px;
  background: transparent;
  width: 26px;
  height: 26px;
  transition: all 0.2s ease-in-out;
}

.edit-btns-blk .primary-btn {
  padding: 6px 30px;
  border: 0px;
  border-radius: 8px;
}

.edit-btns-blk .edit-btn svg path {
  transition: all 0.2s ease-in-out;
}

.edit-btns-blk .edit-btn:first-child:hover svg path {
  fill: var(--primary-clr);
}

.edit-btns-blk .edit-btn:last-child:hover svg path {
  fill: var(--theme-clr);
}

.seed-section .change-main-wrapper {
  padding: 60px;
}

.seed-details .info-card {
  background: var(--bg-clr);
  padding: 35px 0px;
}

.seed-detail-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

.seed-detail-content h2:not(:first-child) {
  margin-top: 22px;
}

.seed-detail-content p {
  margin-bottom: 5px;
}

.seed-detail-content p strong {
  margin-right: 5px;
}

span.sm-text {
  font-size: 10px;
  font-weight: 500;
  color: #868686;
  display: block;
  margin-bottom: 2px;
}

button.video-btn {
  border: 0px;
  max-width: 80px;
  width: 100%;
  height: 48px;
  background: url(../images/video-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3px;
}

.seed-details .sub-heading .h4 {
  font-weight: 600;
}

button.addfield-btn {
  width: 24px;
  height: 24px;
  border: 0px;
  border-radius: 50%;
  background: var(--primary-clr);
  color: #fff;
  font-size: 22px;
  line-height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.seed-details input[type="file"] {
  display: none;
}

.seed-details input[type="file"]+label {
  padding: 13px 18px;
  background: var(--bg-clr);
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
}

/* Seed Detail css end */

.pagination-button-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

label.row-label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

label.row-label span {
  width: 120px;
  line-height: normal;
}

label.row-label select {
  width: calc(100% - 135px);
  background-color: var(--primary-clr);
  color: #fff;
}

label.row-label select.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}

button.pagination-button {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0px;
  background: #fff;
  cursor: pointer;
}

button.pagination-button i {
  font-size: 16px;
}

.coupons-list-blk {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.coupons-card-blk {
  max-width: 375px;
  width: 100%;
  flex-grow: 1;
  padding: 25px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 7px 15px rgba(0, 0, 0, 0.15);
  position: relative;
}

.coupons-heading-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.coupons-heading-flex h2 {
  width: calc(100% - 55px);
  font-size: 22px;
  font-weight: 600;
  color: #333333;
  text-transform: capitalize;
}

.coupons-card-text p {
  font-size: 13px;
  font-weight: 400;
  color: #686767;
  margin-bottom: 0px;
}

.coupons-code {
  padding: 10px;
  border: 1px solid #ddd;
  border-width: 1px 0px;
  margin: 15px 0px;
}

.coupons-code span {
  display: block;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #70bdb8;
}

.coupon_types {
  display: flex;
  justify-content: space-between;
}

.coupon_types p {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 0px;
}

.coupon_types span {
  font-size: 13px;
  font-weight: 200;
  color: #878787;
}

.coupons-validity {
  margin: 10px 0px 0px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.coupons-validity span {
  font-size: 14px;
  text-align: center;
  display: block;
  color: #878787;
}

.coupons-btn {
  width: 45px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.coupons-btn button {
  border: 0px;
  background: #fff;
  font-size: 12px;
  font-weight: 500;
}

.coupons-price {
  padding: 5px 0px;
  text-align: center;
  background: #fff3e9;
  margin: 10px 0px;
}

.coupons-price span {
  font-size: 40px;
  font-weight: 900;
  color: var(--black-clr);
}

.addcoupon-modal label {
  margin-bottom: 8px;
}

.addcoupon-modal p.error {
  margin-bottom: 0px;
}

.addcoupon-modal .common-modal-field :is(.form-control, .form-select) {
  padding: 10px 15px !important;
  font-size: 15px !important;
}

.addcoupon-modal label.form-check-label {
  margin-bottom: 0px;
}

.react-datepicker-wrapper {
  display: block !important;
}

/*--  MEDIA QURIES CSS START --*/

@media screen and (min-width: 1800px) {
  .container {
    max-width: calc(100% - 42px);
  }
}

@media screen and (min-width: 1200px) and (max-width: 1800px) {
  .table-blk .dataTables_wrapper .dataTables_paginate .paginate_button:not(:last-child) {
    margin-right: 20px;
  }

  .container {
    max-width: 100%;
  }
}

@media screen and (max-width: 1400px) {
  .info-detail h2 {
    font-size: 16px;
  }

  .info-detail p {
    font-size: 18px;
  }
}

@media screen and (max-width: 1300px) {
  header button.opnBtn {
    display: block !important;
  }

  button.closeBtn {
    display: block !important;
  }

  .main-wrapper {
    margin-left: 0px;
  }
}

@media screen and (max-width: 1200px) {
  .container {
    max-width: 100%;
  }

  .main-wrapper {
    margin-left: 0px;
  }

  .login-form-blk {
    width: calc(100% - 30%);
  }

  .login-img-blk img {
    object-position: left;
  }

  header {
    margin-top: 0px;
  }

  .navsbar li a,
  .navsbar li a:hover,
  li.nav-item a.nav-link.active {
    color: var(--main-clr) !important;
  }

  .navsbar li a:hover {
    transform: none;
  }

  header button.opnBtn {
    display: block !important;
  }

  button.closeBtn {
    display: block !important;
  }

  li.nav-item a.nav-link.active::before,
  li.nav-item a.nav-link:hover::before {
    width: calc(100% - 30px);
  }

  .table-blk table {
    display: block;
    overflow: auto;
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .login-logo {
    padding: 25px 25px 0px 25px;
    display: block;
    max-width: 180px;
    width: 100%;
    margin: 0 auto;
  }

  .main-wrapper {
    margin-left: 0px;
  }

  .table-blk .dataTables_wrapper .dataTables_paginate .paginate_button:not(:last-child) {
    margin-right: 30px;
  }

  .ntf-details {
    padding-right: 0px;
  }

  .ntf-details p,
  span.ntf-time {
    font-size: 14px;
  }

  .wrapper-card,
  .seed-section .change-main-wrapper {
    padding: 20px;
  }

  .profile-main-wrapper,
  .change-main-wrapper {
    padding: 45px 30px 80px;
  }
}

@media screen and (max-width: 768px) {
  .login-form-blk {
    padding: 50px 20px;
  }

  a.navbar-brand img {
    width: 100px;
  }

  .total-card-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .total-card-text {
    width: 100%;
    padding-left: 0px;
  }

  .total-card-text span {
    text-align: center;
  }

  .table-blk .dataTables_wrapper .dataTables_paginate .paginate_button:not(:last-child) {
    margin-right: 25px;
  }

  .profile-img {
    width: 170px;
    height: 170px;
    padding: 30px;
    margin-right: 20px;
  }

  .profile-img img {
    width: 110px;
    height: 110px;
  }

  span.no-of-users {
    font-size: 16px;
  }

  .change-psw-section {
    padding-top: 50px;
  }

  .login-btn-blk .btn {
    font-size: 18px !important;
    padding: 12px;
  }
}

@media screen and (max-width: 576px) {
  .login-logo {
    padding: 25px 25px 0px 25px;
    display: block;
    max-width: 180px;
    width: 100%;
    margin: 0 auto;
  }

  a.navbar-brand img {
    width: 90px;
  }

  ul.navsbar {
    flex-direction: row;
    align-items: center;
  }

  .navbar-nav li.nav-item:not(:last-child) {
    margin-right: 10px;
  }

  .navsbar li a.nav-link.profile-link {
    width: 40px;
    height: 40px;
  }

  span.page-heading {
    font-size: 16px;
  }

  .sub-heading .h3 {
    font-size: 16px;
  }

  .sub-heading h2 {
    font-size: 20px;
  }

  .login-form-blk {
    width: calc(100% - 15%);
  }

  .login-form-blk h1 {
    font-size: 26px;
  }

  .login-form-blk p {
    font-size: 15px;
  }

  .login-form-blk form {
    margin-top: 50px;
  }

  .progress-graph-wrapper {
    justify-content: space-between;
  }

  .total-card-inner {
    padding: 10px 10px 10px 10px;
  }

  span.card-days {
    font-size: 14px;
    letter-spacing: 0px;
  }

  span.card-count {
    font-size: 25px;
  }

  .total-card-graph {
    width: 75px;
  }

  .user-card {
    min-height: 150px;
  }

  .user-card:not(:last-child) {
    margin-bottom: 15px;
  }

  span.no-of-users {
    font-size: 16px;
  }

  span.users-count {
    font-size: 26px;
  }

  .table-blk .dataTables_wrapper .dataTables_paginate .paginate_button:not(:last-child) {
    margin-right: 20px;
  }

  .form-block input,
  .form-block input::placeholder {
    font-size: 14px;
  }

  .notification-card {
    padding: 18px 10px;
  }

  .profile-main-wrapper {
    flex-direction: column;
  }

  .profile-img {
    width: 170px;
    height: 170px;
    padding: 30px;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .profile-img img {
    width: 110px;
    height: 110px;
  }

  .profile-details {
    width: 100%;
  }

  .person-detail {
    justify-content: flex-start;
  }

  .user-detail-text .user-email {
    font-size: 12px;
  }

  .not-found-blk-img {
    height: 100%;
  }

  .wrapper-card,
  .seed-section .change-main-wrapper {
    padding: 20px;
  }

  .info-detail h2 {
    font-size: 14px;
  }

  .info-detail p {
    font-size: 18px;
  }

  .modal-wrapper {
    padding: 40px 20px;
  }

  .dataTables_length,
  .dataTables_info,
  .dataTables_paginate {
    text-align: center;
  }

  .dataTables_info,
  .dataTables_paginate {
    margin-top: 10px;
  }

  .login-btn-blk .btn {
    font-size: 18px !important;
    padding: 10px;
  }

  .subscription-flex-card {
    width: 100%;
  }

  .subscription-card {
    padding: 30px 15px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    width: 240px;
    position: relative;
  }

  .subscription-card h2 {
    font-size: 18px;
  }

  span.subscription-price {
    font-size: 20px;
  }
}

@media screen and (max-width: 530px) {
  .subscription-card {
    width: 100%;
  }

  .subscription-card h2 {
    font-size: 22px;
  }

  span.subscription-price {
    font-size: 28px;
  }
}

@media screen and (max-width: 420px) {
  .progress-graph-wrapper {
    justify-content: center;
  }

  .login-form-blk {
    padding: 10px;
  }

  .subscription-card {
    width: 100%;
  }
}