* {
  margin: 0;
  padding: 0;
  font-family: 'SF Pro Display';
}

:root {
  --primary-clr: #019FA7;
  --secondary-clr: #FD3D59;
  --black-clr: #000;
  --white-clr: #fff;
  --bg-clr: #F4F6FA;
  --bg-lgt-clr: #F8F8F8;
  --card-bg: #F9F1FD;
  --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;
  --text-clr: #7C7C7C;
  --sf-font: 'SF Pro Display';
  --spacer: 20px;
}

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(--primary-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;
}

/* Scrollbar css end */
a {
  text-decoration: none;
}

.spacer {
  padding: var(--spacer) 0px;
}

.p-relative {
  position: relative;
}

.primary-btn {
  background: var(--primary-clr) !important;
  color: #fff;
  padding: 8px 16px;
  min-width: 100px;
  text-align: center;
  margin: 0px;
  border-radius: 8px;
  transition: all .5s ease;
}

.secondary-btn {
  min-width: 100px !important;
}

.primary-btn:hover {
  background: var(--primary-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-img-blk {
  width: 100%;
  height: 100vh;
  padding: 30px;
  border-radius: 40px;
  position: relative;
  z-index: 1;
}

.img-blk {
  width: 100%;
  height: 100%;
}

.login-img-blk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}

.login-main-blk {
  width: 100%;
  height: 100vh;
  position: relative;
}

.login-logo {
  padding: 30px 0px 0px 40px;
  width: 50%;
  margin: 0 auto;
}

.login-form-blk {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 55%);
}

.login-form-blk h1 {
  font-size: 32px;
  font-weight: 600;
  color: var(--black-clr);
}

.login-form-blk p {
  font-size: 15px;
  color: #afafaf;
  margin-bottom: 0px;
}

.login-form-blk form {
  margin-top: 40px;
}

.login-form-blk form .form-group:first-child {
  margin-bottom: 30px;
}

.login-form-blk form .form-group:nth-child(2) {
  margin-bottom: 12px;
}

.login-form-blk form .form-group label {
  font-size: 14px;
  color: #9794AA;
  margin: 0px 0px 8px 0px;
}

.login-form-blk form .form-group input {
  padding: 15px 16px;
  background: var(--white-clr);
  border: 1px solid #CBCAD7;
  border-radius: 6px;
}

.login-form-blk form .form-group input::placeholder {
  color: #686677;
}

span#eye {
  position: absolute;
  content: "";
  top: 50%;
  right: 15px;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

span#eye i {
  font-size: 14px;
  color: #000833;
}

.login-btn-blk {
  text-align: center;
  margin-top: 45px;
}

.login-btn-blk .btn {
  width: 100%;
  font-size: 18px !important;
  padding: 18px;
  border-radius: 50px;
  border: 0px;
}

.side-navbar {
  max-width: 310px;
  width: 100%;
  background: var(--black-clr);
  border: 2px solid #FFFFFF;
  border-radius: 15px;
  height: calc(100vh - 40px);
  position: fixed;
  top: 0px;
  left: 0px;
  padding: 0px;
  margin: 20px 0px 20px 20px;
  overflow-y: auto;
  transition: all .5s ease;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.main-wrapper {
  margin-left: 330px;
  transition: all .5s ease;
  background: var(--bg-clr);
}

.main-wrapper.main-width {
  margin-left: 0px;
}

.content-wrapper {
  background: var(--bg-clr);
}

header {
  padding: 24px 0px 0px;
  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;
}

.header-menu {
  display: flex;
  justify-content: flex-end;
}

ul.navsbar {
  padding: 10px 14px;
  background: var(--white-clr);
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  border-radius: 50px;
  box-shadow: 14px 17px 40px 4px rgba(112 144 176 / 8%);
}

.navbar-nav li.nav-item:not(:last-child) {
  margin-right: 8px;
}

.top-nav-link {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.top-nav-link:hover {
  box-shadow: inset 0px 0px 6px rgb(206 237 255 / 87%);
}

.navsbar li a.nav-link.profile-link {
  width: 42px;
  height: 42px;
  border: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 0px;
}

.navsbar li a.nav-link.profile-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

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

.header-flex+p {
  font-size: 15px;
  font-weight: 500;
  font-family: var(--sf-font);
  color: #636363;
  margin-bottom: 0px;
}

header button.opnBtn {
  width: 22px;
  height: 22px;
  line-height: 22px;
  background-color: transparent;
  color: #fff;
  border: 0px;
  padding: 0px;
  border-radius: 0px;
  z-index: 2;
  display: none !important;
}

button.opnBtn i {
  font-size: 22px;
  color: var(--black-clr);
}

.side-hide {
  left: -363px !important;
}

.side-navbar ul li,
.side-navbar ul li a {
  /* background: var(--black-clr); */
  transition: all .5s ease;
}


.side-navbar ul li.sidebar-logo {
  margin-top: 28px;
  margin-bottom: 60px;
  padding-left: 30px;
}

li.sidebar-logo a.navbar-brand {
  width: 122px;
  transition: all .5s ease;
  display: inline-block;
}

li.sidebar-logo a.navbar-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 
li.nav-item.sidebar-link.active {
  background-color: #3569d1;
} */

.side-navbar ul li.sidebar-link {
  margin-left: 20px;
  margin-bottom: 4px;
}

.side-navbar ul li.sidebar-link a.nav-link {
  color: var(--white-clr) !important;
  background: transparent;
  padding: 14px 14px 14px 30px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--sf-font);
  border-radius: 30px 0px 0px 30px;
  transition: all .2s ease-in-out;
  text-transform: capitalize;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}


.side-navbar ul li.sidebar-link a.nav-link:hover {
  font-weight: 600;
  color: var(--white-clr) !important;
  background: #282727;
}


.side-navbar ul li.sidebar-link a.nav-link.active {
  font-weight: 600;
  color: var(--white-clr) !important;
  background: var(--primary-clr);
}

a.nav-sublink.active,
a.nav-sublink:hover {
  font-weight: 600;
  color: var(--white-clr) !important;
}

.side-navbar ul li.sidebar-link a.nav-link.active span.dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 10px;
  margin-left: 10px;
}

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

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 */

.dashboard-navs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
}

.dashboard-navs select {
  width: 240px;
  padding: 10px 10px;
}

.light-bg-wrapper {
  padding: 22px 25px;
  border-radius: 18px;
  box-shadow: 0px 3px 3px 0px rgb(204 204 204 / 20%) !important;
  background-color: var(--white-clr) !important;
  border: 2px solid var(--white-clr);
}

span.page-heading {
  font-size: 25px;
  font-weight: 900;
  color: var(--black-clr);
  line-height: normal;
  font-family: var(--sf-font);
}

.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 {
  padding: 8px;
  background-color: var(--white-clr);
  border-radius: 6px;
}

.dashboard-blk button.nav-link {
  padding: 0px;
  background: var(--white-clr) !important;
  font-family: var(--sf-font);
  color: #c1c1c1;
  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(--black-clr) !important;
}

.light-bg-wrapper .trspt-card-detail h3 {
  color: var(--black-clr);
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
}

.light-bg-wrapper .trspt-card-detail span.trspt-values {
  font-size: 20px;
}

.light-bg-wrapper .trspt-card-detail span.trspt-values sup {
  font-size: 11px;
  font-weight: 600;
  top: -1em;
}

.light-bg-wrapper .trspt-card-detail span.trspt-icon {
  width: 40px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.content-buttons {
  margin-top: 20px;
}

button.btn.secondary-btn {
  background: var(--bg-clr);
  color: #000;
  font-size: 12px;
  font-weight: 500;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  margin: 0px;
}

.btn-flex-blk {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.graph-card {
  background: var(--white-clr);
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.graph-blk {
  height: 350px;
}

.graph-card h2 {
  font-size: 20px !important;
  text-transform: capitalize;
}

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


.sub-heading .h3 {
  font-size: 19px;
  font-weight: 500;
}

.sub-heading h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0px;
  color: var(--black-clr);
  font-family: var(--sf-font);
}

.sub-heading {
  margin: 0px 0px 25px;
}

.total-card-inner {
  padding: 24px 20px;
  background: #FFFFFF;
  border: 1px solid #DFEAF2;
  border-radius: 8px;
  position: relative;
}

.total-card-inner h2 {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--dms-font);
  color: var(--black-clr);
  margin-bottom: 0px;
}

.progress-blk:not(:last-child) {
  margin-bottom: 20px;
}

.card-progress-blk {
  margin-top: 30px;
}

.card-progress-blk h3 {
  font-size: 14px;
  font-weight: 500;
  color: var(--black-clr);
  margin-bottom: 0px;
}

span.total-value {
  font-size: 14px;
  font-weight: 700;
}

.card-progress-blk .progress {
  border-radius: 0px;
}

button.viewbtn {
  font-weight: 600;
  padding: 5px 15px;
  background: var(--primary-clr);
  font-size: 10px;
  font-family: var(--sf-font);
  color: var(--white-clr);
  border-radius: 20px;
  letter-spacing: 0.5px;
  border: none;
}

.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 */

.filter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-date-blk,
.filter-search-btn-blk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-date-blk {
  width: 40%;
}

.filter-date-blk div {
  flex-basis: calc(50% - 5px) !important;
}

.filter-search-btn-blk {
  width: 40%;
}

.filter-search-btn-blk>div.form-block {
  width: calc(100% - 220px);
}

.filter-action-btn-blk {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.react-datepicker-wrapper {
  width: 100% !important;
}

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%);
  z-index: 1;
}

.form-block input,
.form-block select {
  padding: 13px 18px;
  background-color: var(--bg-clr);
  border-color: var(--bg-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%;
}

.table-blk table thead tr {
  background: var(--primary-clr);
}

.table-blk table tr th {
  font-size: 14px;
  color: var(--white-clr);
  font-weight: 500;
  padding: 17px 30px;
  font-family: var(--sf-font);
}

.table-blk table tr td {
  font-size: 14px;
  color: var(--table-txt-clr);
  font-weight: 500;
  padding: 10px 30px;
  font-family: var(--sf-font);
}

.table-blk table tr td a {
  font-size: 14px;
  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,
.table-blk table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.85) !important;
}

.table-blk table.dataTable.display tbody tr.even,
.table-blk table tbody tr:nth-child(even) {
  background: #F7F6FA;
}

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

span.table-status.st-suspended,
span.table-status.st-decline {
  color: var(--red-clr);
}

span.table-status.st-pending {
  color: #F1C114;
}

span.table-action {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  line-height: 0px;
}

span.table-check {
  line-height: 0px;
}

.table-check input {
  display: none;
}

.table-check input+label {
  width: 30px;
  height: 16px;
  background: #C5C5C5;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: all .5s ease;
}

.table-check input+label::before {
  position: absolute;
  content: "";
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 20px;
  transition: all .5s ease;
}

.table-check input:checked+label {
  background: var(--black-clr);
}

.table-check input:checked+label::before {
  left: calc(100% - 13px);
}

.table-check input+label::after {
  position: absolute;
  content: "off";
  top: 50%;
  right: 3px;
  font-size: 5px;
  font-weight: 500;
  font-family: var(--sf-font);
  color: #fff;
  transform: translateY(-50%);
  text-transform: uppercase;
  line-height: normal;
}

.table-check input:checked+label::after {
  content: "on";
  right: calc(100% - 13px);
}

button.table-trash {
  border: 0px;
  background: transparent;
  padding: 0px;
  line-height: 0px;
  cursor: pointer;
}

.dataTables_paginate {
  text-align: right;
}

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

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

.select-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.select-row label {
  white-space: nowrap;
}

.select-row select {
  background-color: var(--primary-clr);
  color: var(--white-clr);
  --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;
}

.pagination-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.pagination-buttons button {
  padding: 0px 8px;
  background: var(--white-clr);
  border: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination-buttons button i {
  font-size: 20px;
  color: var(--black-clr);
}

.no-data {
  padding: 25px 10px;
  background: #edf8fb;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #037a97;
  margin-bottom: 20px;
}

/* Datatable CSS end */


.common-modal .modal-dialog {
  max-width: 992px;
}

.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: 15px;
}

.common-modal-field label {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.common-modal-field :is(.form-control, select.form-select) {
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
  background-color: var(--bg-clr);
  border-color: var(--bg-clr);
  color: #000;
}

.common-modal-field textarea {
  height: 105px;
}

.common-modal-btns {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.common-modal-btns .primary-btn {
  border-radius: 50px;
}

.upload-store-img label {
  width: 140px;
  height: 105px;
  background: var(--card-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 5px;
  border: 1px solid #E7DEEC;
  cursor: pointer;
}

.upload-store-img label span.upld-txt {
  font-size: 10px;
  font-weight: 600;
  font-family: var(--sf-font);
  color: #6F338D;
}

.campaign-detail-blk {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px 30px;
}

.campaign-heading {
  width: 150px;
}

.campaign-heading h2 {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--sf-font);
  color: var(--black-clr);
  margin-bottom: 0px;
}

.campaign-content {
  width: calc(100% - 180px);
}

.campaign-content p {
  font-size: 13px;
  font-weight: 500;
  font-family: var(--sf-font);
  color: #828282;
  margin-bottom: 0px;
}

.edit-underline-blk {
  display: flex;
  justify-content: end;
  align-items: end;
  width: 100%;
  height: 100%;
}

button.edit-camp-btn {
  width: 30px;
  height: 30px;
  border: 0px;
  background: transparent;
  cursor: pointer;
}

.content-text h2 {
  font-size: 15px;
  font-weight: 600;
  font-family: var(--sf-font);
  color: var(--black-clr);
  margin-bottom: 8px;
}

.content-text p {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--sf-font);
  color: #434343;
}

.content-text a {
  color: #434343;
  text-decoration: underline;
}

.trspt-wrapper {
  margin-top: 25px;
}

.trspt-data-blk {
  margin-top: 25px;
}

.trspt-card-detail {
  padding: 12px 22px;
  background-color: var(--white-clr);
  border-radius: 12px;
}

.trspt-card-detail h3 {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--sf-font);
  line-height: 22px;
  color: #8E95A9;
  text-transform: uppercase;
  margin-bottom: 0px;
  height: 44px;
}

.trspt-flex-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

span.trspt-values {
  font-size: 22px;
  font-weight: 900;
  font-family: var(--sf-font);
  color: var(--black-clr);
}

.prev-value {
  color: #3968E0 !important;
}

.current-value {
  color: #22BB1E !important;
}

span.trspt-currency {
  font-size: 15px;
  font-weight: 900;
  font-family: var(--sf-font);
  text-transform: uppercase;
  color: var(--primary-clr);
}

a.transaction-link {
  color: var(--primary-clr) !important;
  text-decoration: underline;
}

.recepit-filter-btn-blk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 59%;
}

.recepit-select {
  width: calc(100% - 220px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.recepit-select .form-block {
  width: 50%;
}


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

button.edit-common-btn {
  border: 0px;
  background: var(--black-clr);
  padding: 9px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--sf-font);
  color: var(--white-clr);
}

.table-filter-blk {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.table-filter-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  width: calc(100% - (30% + 20px)) !important;
  width: 700px !important;
}

.table-filter-blk .filter-search-btn-blk {
  width: calc(100% - 720px);
}

.table-filter .form-block {
  width: 205px !important;
}

.table-filter-blk .filter-search-btn-blk>div.form-block {
  width: 100%;
}

.table-filter-wrapper h3 {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--dms-font);
  margin-bottom: 0px;
  width: 100px;
}

.table-filter {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  width: calc(100% - 110px);
}

.table-filter .primary-btn {
  margin-right: 0px !important;
}

/* user detail page css start */
.wrapper-card:not(:last-child) {
  margin-bottom: 20px;
}

.wrapper-card {
  padding: 35px 28px 35px;
  border-radius: 18px;
  box-shadow: 0px 4px 4px 0px rgba(185, 185, 185, 0.25);
  background-color: var(--white-clr);
  border: 2px solid var(--white-clr);
}

.inner-bg-card {
  background: var(--bg-clr);
  padding: 20px 24px;
  border-radius: 10px;
}

.info-card {
  padding: 35px 60px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 2px 11px rgb(211 211 211);
}

.edit-common-blk {
  text-align: end;
}

.info-detail h2 {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--sf-font);
  color: var(--text-clr);
}

.info-detail p {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--sf-font);
  color: var(--black-clr);
}

.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-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;
  gap: 10px 50px;
  flex-wrap: wrap;
}

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


.modal-table-blk {
  margin-top: 20px;
}

/* user detail page css end */


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 .5s ease;
}






/* change password css start */

.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: var(--bg-clr);
  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;
  position: relative;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.upload-profile {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}

.upload-profile label {
  width: 100%;
  height: 100%;
  background: #000000a8;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px !important;
  cursor: pointer;
}

.upload-profile label i {
  font-size: 24px;
  color: #fff;
}

.profile-img:hover .upload-profile {
  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 */

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


span.sm-text {
  font-size: 10px;
  font-weight: 500;
  color: #868686;
  display: block;
  margin-bottom: 2px;
}

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

.common-sub-heading {
  margin-bottom: 15px;
}

.common-sub-heading h2 {
  font-size: 18px;
  font-weight: 900;
  font-family: var(--sf-font);
  color: var(--black-clr);
  margin-bottom: 0px;
}

.team-statistics,
.player-list,
.common_layout_bg {
  padding: 16px;
  background: var(--bg-clr);
  border-radius: 10px;
}

.common_layout_bg:not(:last-child) {
  margin-bottom: 25px;
}

.team-card {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  padding: 16px;
  background: var(--bg-clr);
  border-radius: 10px;
  box-shadow: 0px 5px 8px rgb(0 0 0 / 12%);
}

.team-img {
  width: 58px;
  height: 58px;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: black;
  border: 1px solid;
  border-radius: 50%;
  padding: 8px;
}

.team-card h3 {
  width: calc(100% - 73px);
  font-size: 14px;
  font-weight: 700;
  color: var(--black-clr);
  margin-bottom: 0px;
  text-transform: capitalize;
}

.player-list .player-card:not(:last-child) {
  margin-bottom: 10px;
}

.player-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  background: var(--white-clr);
  box-shadow: 0px 2px 2px rgb(204 204 204 / 25%);
}

.player-stats-card {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.player-img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.player-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.player-info h3 {
  font-size: 14px;
  font-family: var(--dms-font);
  font-weight: 700;
  color: var(--black-clr);
  margin-bottom: 0px;
}

.player-info p {
  font-size: 12px;
  font-family: var(--dms-font);
  font-weight: 500;
  color: #3F3F3F;
  margin-bottom: 0px;
}

.player-team-role {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: column;
}

.player-team-info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.player-team-img {
  width: 24px;
  height: 24px;
}

.player-team-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.player-team-info h3 {
  font-size: 13px;
  font-family: var(--dms-font);
  font-weight: 700;
  color: var(--black-clr);
  margin-bottom: 0px;
}

.player-role {
  font-size: 16px;
  font-family: var(--dms-font);
  font-weight: 500;
  color: #3F3F3F;
  margin-bottom: 0px;
}

.statistics-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  padding: 16px 24px;
  background: var(--white-clr);
  border-radius: 10px;
}

.statistics-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

.statistics-info:first-child {
  text-align: start !important;
}

.statistics-info:last-child {
  text-align: center;
}

.statistics-info h3 {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--sf-font);
  margin-bottom: 0px;
  color: var(--black-clr);
}

.statistics-info h4 {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--dms-font);
  margin-bottom: 0px;
  color: var(--black-clr);
}

.success-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px 30px;
  background: var(--white-clr);
  border-radius: 10px;
}

.success-info:not(:last-child) {
  margin-bottom: 20px;
}

.success-info h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--dms-font);
  margin-bottom: 5px;
  color: var(--black-clr);
  text-align: center;
}

.success-info h4,
.success-graph h4 {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--sf-font);
  margin-bottom: 0px;
  color: var(--black-clr);
  text-align: center;
}

.success-graph-blk {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.card-flex-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 16px 24px;
  background: var(--white-clr);
  border-radius: 10px;
}

.card-flex-content h2 {
  font-size: 18px;
  font-weight: 900;
  font-family: var(--sf-font);
  color: var(--black-clr);
  margin-bottom: 0px;
  text-transform: capitalize;
}

.card-flex-content .statistics-card {
  padding: 0px;
  border-radius: 0px;
  gap: 20px 80px;
}

.match-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.card-type {
  width: 22px;
  height: 36px;
  border: 1px solid #000000;
  border-radius: 2px;
}

.match-card-count {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--sf-font);
  color: var(--black-clr);
}

.card-type.yellow-card {
  background: #FFD633;
}

.card-type.red-card {
  background: #FF3333;
}

.push-main-wrapper {
  padding: 50px;
  background: var(--bg-clr);
  border-radius: 5px;
}

.push-main-wrapper .form-block :is(input, textarea, select) {
  background-color: var(--white-clr);
  border-color: var(--white-clr);
}

.manager-detail {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.manager-img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
}

.manager-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.manager-team-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black-clr);
  margin-bottom: 0px;
  text-transform: capitalize;
  margin-top: 5px;
}

.team-result-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: 10px;
  background: var(--white-clr);
  box-shadow: 0px 2px 2px rgb(204 204 204 / 25%);
  cursor: pointer;
}

.back-button {
  cursor: pointer;
}

.team-result-card-list {
  max-height: 510px;
  overflow-y: auto;
}

.team-result-card-list .team-result-card:not(:last-child) {
  margin-bottom: 10px;
}

.team-result-card .team-img {
  margin: 0 auto;
}

.team-left-card,
.team-right-card {
  width: 125px;
}

.team-result-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black-clr);
  margin-bottom: 0px;
  text-transform: capitalize;
  margin-top: 5px;
  text-align: center;
}

.result-stat {
  width: 130px;
  display: flex;
  justify-content: center;
}

p.result-text {
  font-size: 40px;
  font-family: var(--sf-font);
  margin-bottom: 0px;
}

.score {
  font-size: 40px;
  font-family: var(--sf-font);
  color: var(--black-clr);
}

span.score.lead-score {
  color: var(--primary-clr);
}

span.score.trail-score {
  color: #E90000;
}

.supporter-img-blk {
   width: 132px;
  height: 132px;
  border-radius: 12px;
  margin-bottom: 25px;
}

.supporter-img-blk img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.supporter-statistics {
  padding: 30px;
  background: var(--bg-clr);
  border-radius: 10px;
}

.common-info-detail {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.common-info-detail:not(:last-child) {
  margin-bottom: 15px;
}

.common-info-detail h2 {
  font-size: 18px;
  font-family: var(--sf-font);
  color: #4E5666;
  margin-bottom: 0px;
}

.common-info-detail h6 {
  font-family: var(--sf-font);
  color: #4E5666;
}

.common-info-detail p {
  font-size: 18px;
  font-family: var(--sf-font);
  font-weight: 500;
  color: var(--black-clr);
  margin-bottom: 0px;
}

.select-team-statistics {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0px 42px;
}

/* .select-team-statistics .form-block {
  flex-grow: 1;
} */
.select-team-statistics .form-block {
  width: 321px;
}

.select-team-statistics .form-block select {
  background-color: var(--bs-white);
}

.commontab_wrapper .nav-pills {
  margin: 25px 0px;
  justify-content: center;
  gap: 10px;
}

.commontab_wrapper .nav-pills .nav-link {
  font-size: 15px;
  font-family: var(--sf-font);
  color: var(--bs-black);
  padding: 10px 40px;
  border-radius: 50px;
  background: var(--bs-white);
}

.nav-pills .nav-link.active {
  background: #019FA7;
  color: var(--bs-white);
}

.commontab_wrapper .team-statistics:not(:last-child) {
  margin-bottom: 28px;
}

.commontab_wrapper .team-statistics {
  box-shadow: 0px 3px 3px rgb(185 185 185 / 25%);
}

.inner_wrapper_card {
  padding: 20px;
  background: var(--bs-white);
  border-radius: 10px;
  box-shadow: 0px 4px 4px rgb(204 204 204 / 25%);
}

.common_style_layout {
  padding: 13px 25px;
  background: var(--bg-clr);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2px;
  position: relative;
}

.common_style_layout.attack-assist-layout {
  justify-content: center;
}

.common_style_layout::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0px;
  width: 3px;
  height: 70%;
  background: #019FA7;
  transform: translateY(-50%);
}

.common_style_item h3 {
  font-size: 14px;
  text-align: center;
  font-family: var(--sf-font);
  color: var(--bs-black);
  margin-bottom: 10px;
}

.common_style_value {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.v-divider {
  width: 1.4px;
  height: 27px;
  background: var(--bs-black);
}

.common_style_item p {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  font-family: var(--sf-font);
  color: var(--bs-black);
  margin-bottom: 0px;
}

.common_pie_style_layout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 15px 0px;
}

.common_pie_style_layout.layout-attack {
  justify-content: space-between;
}

.home-away {
  display: flex;
  justify-content: center;
  align-items: center;
}

.common_pie_style_item h3 {
  font-size: 18px;
  text-align: center;
  font-family: var(--sf-font);
  color: var(--bs-black);
  margin-bottom: 10px;
}

.common_pie_style_item p {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  font-family: var(--sf-font);
  color: var(--bs-black);
  margin-bottom: 0px;
}

.pie_progress_chart {
  width: 96px;
  height: 96px;
  background: rgb(252, 172, 172);
  margin: 15px auto 0px;
}

.flex-content .common-info-detail h2 {
  color: var(--bs-black);
}

.booking_blk {
  position: relative;
}

.booking_blk::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0px;
  width: 3px;
  height: 40%;
  background: #019FA7;
  transform: translateY(-50%);
}

.booking_blk .statistics-info {
  padding: 17px 60px 35px;
  background: var(--bg-clr);
  border-radius: 10px;
  min-width: 236px;
}

.booking_blk .statistics-info h3 {
  font-size: 20px;
}

/* .select-team-statistics .form-block:not(:last-child) {
  margin-bottom: 30px;
} */

.positions-stat {
  width: 100%;
}

.top-heading :is(h2, h3) {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--sf-font);
  margin-bottom: 0px;
  color: var(--black-clr);
}

.bg-white-statistics {
  padding: 16px 24px;
  background: var(--white-clr);
  border-radius: 10px;
}

.how-score-blk {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1.36px solid #A3A3A3;
  border-width: 0px 1px 1px 0px;
}

.how-score-icon {
  width: 100px;
  height: 104px;
}

.how-score-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-score-info {
  width: 110px;
}

.how-score-info h3 {
  font-size: 32px;
  font-weight: 700;
  font-family: var(--sf-font);
  color: var(--black-clr);
  margin-bottom: 5px;
  text-align: center;
}

.how-score-info p {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--sf-font);
  color: #545454;
  margin-bottom: 0px;
  text-align: center;
}

.how_pie_graph_blk {
  /* width: 197px; */
  width: 100%;
  /* height: 197px; */

  margin: 0 auto;
}

.player-img-blk {
  width: 132px;
  height: 132px;
  border-radius: 50%;
}

.player-img-blk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.playerinfo-div {
  position: relative;
}

.playerinfo-div::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 2px;
  height: 85%;
  background: #D4DBE8;
  transform: translate(-50%, -50%);
}

.team-player-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px 10px;
  flex-wrap: wrap;
}

.team-player-img {
  width: 98px;
  height: 88px;
  border-radius: 3px;
  margin-bottom: 5px;
}

.team-player-img img {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  object-fit: cover;
}

.team-player-info h3 {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--sf-font);
  color: var(--black-clr);
  margin-bottom: 0px;
  max-width: 98px;
}

.match-card-blk {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px 10px;
  flex-wrap: wrap;
}

.match-card-preview {
  width: 108px;
  height: 130px;
  border-radius: 14px;
  margin-bottom: 5px;
}

.match-card-preview :is(img, video) {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.match-card-item h3 {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--sf-font);
  color: var(--black-clr);
  margin-bottom: 0px;
  max-width: 108px;
}

.video-img-blk:last-child {
  margin-top: 25px;
}

/* custom select */


.vodiapicker {
  display: none;
}

#a {
  padding-left: 0px;
}

#a img,
.btn-select img {
  width: 12px;

}

#a li {
  list-style: none;
  padding-top: 5px;
  padding-bottom: 5px;
}

#a li:hover {
  background-color: #F4F3F3;
}

#a li img {
  margin: 5px;
}

#a li span,
.btn-select li span {
  margin-left: 30px;
}

/* item list */
.b.hidden {
  display: none;
}


.b {
  display: block;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 5px;

}

.open {
  display: show !important;
}

.btn-select {
  margin-top: 10px;
  width: 100%;
  max-width: 350px;
  height: 34px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #ccc;

}

.btn-select li {
  list-style: none;
  float: left;
  padding-bottom: 0px;
}

.btn-select:hover li {
  margin-left: 0px;
}

.btn-select:hover {
  background-color: #F4F3F3;
  border: 1px solid transparent;
  box-shadow: inset 0 0px 0px 1px #ccc;


}

.btn-select:focus {
  outline: none;
}

.lang-select {
  margin-left: 50px;
}

span.conceded-label-icon {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 20px;
}

.conceded-score-blk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.conceded-score-info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.conceded-score-blk :is(h3, p) {
  font-size: 17px;
  font-weight: 700;
  color: var(--bs-black);
  margin: 0px;
}

/* ground design */

.ground_design_wrapper {
  background: #95C174;
  padding-bottom: 76px;
  overflow: hidden;
}

.box_wrapper {
  padding-top: 56px;
  background: #E0E8EB;
  border-bottom: 4px solid #fff;
}

.box_inner_wrapper {
  max-width: 216px;
  margin: 0 auto;
  background: #fff;
  padding: 4px 4px 0px;
  position: relative;
  perspective: 60px;
}

.design-box {
  padding: 10px 16px;
  background: #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.bg-custom-secondary {
  background-color: var(--secondary-clr);
}

.box_inner_wrapper::before {
  position: absolute;
  content: "";
  top: calc(100% + 4px);
  left: 50%;
  width: 262px;
  height: 38px;
  border-style: solid;
  border-width: 0px 6px 2px 6px;
  border-color: #fff;
  transform-style: preserve-3d;
  transform: translateX(-50%) rotateX(45deg);
}

.box_inner_wrapper::after {
  position: absolute;
  content: "";
  top: calc(100% + 4px);
  left: 50%;
  width: 142px;
  height: 18px;
  border-style: solid;
  border-width: 0px 6px 2px 6px;
  border-color: #fff;
  transform-style: preserve-3d;
  transform: translateX(-50%) rotateX(45deg);
}

.new-inner_layer::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0px;
  width: 3px;
  height: 70%;
  background: #019FA7;
  transform: translateY(-50%);
}

.new-inner_layer .common_style_layout::before {
  display: none;
}

.match_notes_blk {
  padding: 20px 23px;
  background: var(--bs-white);
  border-radius: 12px;
}

.srp_tabs {
  justify-content: center;
  margin-top: 20px;
  gap: 15px;
}

.srp_tabs button {
  background: transparent;
  border-bottom: 1.5px solid transparent;
  border-radius: 0px;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--sf-font);
  color: #4C5D6D;
  padding: 8px 15px;
  line-height: normal;
}

.srp_tabs button.nav-link.active {
  background: transparent;
  color: var(--bs-black);
  border-color: var(--bs-black);
  border-radius: 0px;
  font-weight: 500;
}

.sm_card_type {
  width: 16px;
  height: 25px;
}


.select_team_drop {
  max-width: 230px;
  width: 100%;
  margin: 20px 0px;
  margin-left: auto;
}

.select_team_drop .css-b62m3t-container .css-13cymwt-control {
  border-radius: 50px !important;
  background: #fff !important;
  padding: 5px 10px !important;
  border-color: #fff !important;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15) !important;
}

.select_team_drop .css-b62m3t-container .css-13cymwt-control .css-1u9des2-indicatorSeparator {
  display: none;
}

/*--  MEDIA QURIES CSS START --*/

@media screen and (min-width: 1800px) {
  .container {
    max-width: calc(100% - 42px);
  }
}

@media screen and (min-width: 768px) and (max-width: 1800px) {
  .filter-search-btn-blk {
    width: 52%;
  }
}

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

  .side-navbar {
    margin: 27px 0px 27px 10px;
  }
}


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

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

  .filter-date-blk {
    width: 100%;
  }

  .filter-search-btn-blk {
    width: 100%;
  }

}

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

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

@media screen and (max-width:420px) {
  .progress-graph-wrapper {
    justify-content: center;
  }

  .login-form-blk {
    padding: 10px;
  }

  .filter-search-btn-blk>div.form-block {
    width: 100%;
  }

  .filter-action-btn-blk {
    width: 100%;
  }
}