@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
html {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

@font-face {
  font-family: "Canva Sans";
  src:
    url("../fonts/CanvaSans-Bold.woff2") format("woff2"),
    url("../fonts/CanvaSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Canva Sans";
  src:
    url("../fonts/CanvaSans-Regular.woff2") format("woff2"),
    url("../fonts/CanvaSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-optical-sizing: auto;
  font-size: 14px;
  color: #000;
  font-weight: 400;
  background-color: #ffffff;
  font-family: "Canva Sans" !important;
}

ul,
ol,
p,
form,
input,
textarea,
select,
pre,
em,
sub,
sup,
canvas,
section,
article,
aside,
img,
a,
li,
iframe,
table,
nav,
header,
footer,
body,
menu,
button {
  margin: 0;
  padding: 0;
  font-family: "Canva Sans" !important;
  vertical-align: baseline;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  outline: none;
  border: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

:root {
  --primarycolor: #0a74eb;
  --primaryLightcolor: #ddd4f0;
  --secondarycolor: #747474;
  --lightgrey: #e7eaed;
}

a {
  color: var(--primarycolor);
}

h1 {
  font-size: 32px;
  font-weight: 600;
  color: #2c2c2c;
}
h2 {
  font-size: 36px;
  font-weight: 500;
  color: #000;
}
.h2 {
  font-size: 32px;
  font-weight: 600;
  color: #000;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  color: #2c2c2c;
}
h4 {
  font-size: 24px;
  font-weight: 600;
  color: #2c2c2c;
}
h5 {
  font-size: 22px;
  font-weight: 600;
  color: #2c2c2c;
}
h6 {
  font-size: 18px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

ul {
  padding-left: 18px;
}

/* Login page */
.login-left {
  background: #e7eaed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-wrapper {
  min-height: 100vh;
}
.login-container {
  padding: 50px 0 60px;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
}
.login-container h4 {
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 35px;
}
.login-container p {
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 300;
  color: #6b6b6b;
}
.loginRightImg {
  max-width: 520px;
  width: 100%;
}
.login-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-label {
  color: #000 !important;
  font-weight: 600;
  margin-bottom: 4px;
}
.form-label sup {
  color: var(--primarycolor);
}
.loginRightImg .form-check .form-check-label {
  padding-top: 4px;
  font-size: 15px;
  color: #747474;
  font-weight: 400;
}
.form-control.form-control-lg,
.form-select.form-select-lg {
  height: 50px;
  border-color: #747474;
}
input.icon-holder {
  padding-left: 45px;
  text-align: start;
}
input.icon-holder-right {
  padding-right: 35px;
}

.form-control.icon-holder-right + .input-icon-right {
  position: absolute;
  top: 8px;
  right: 10px;
}

.input-icon {
  position: absolute;
  left: 13px;
  top: 10px;
}

.form-control-lg + .input-icon,
.form-control-lg ~ .password-eye-icon {
  top: 14px;
}
.form-check {
  padding-left: 30px;
}
.form-check .form-check-input {
  margin-left: -30px;
}
.form-check-input[type="checkbox"] {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border-color: var(--primarycolor);
  background-color: #fff;
  box-shadow: none;
}
.form-check-input:checked[type="checkbox"] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
  background-color: #0a74eb;
}

.form-check-input[type="radio"] {
  width: 24px;
  height: 24px;
  box-shadow: none;
  margin-top: 0;
  border: 1px solid #0a74eb;
}
.form-check-input:checked[type="radio"] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%230A74EB'/%3e%3c/svg%3e");
  background-size: 30px !important;
  background-color: #fff;
  border-color: var(--secondarycolor);
}

.form-control::placeholder {
  color: #635f6a;
}
.form-control,
.form-select {
  border-radius: 4px;
  border-color: #b7acce;
  color: #000000;
  font-size: 16px;
  height: 50px;
  background-color: #fff;
}
.form-control {
  padding: 10px 20px;
}
textarea.form-control {
  height: 120px;
}
.form-select {
  padding: 10px 40px 10px 20px;
}

.form-select.form-select-sm {
  height: 38px;
}
.form-control.form-control-lg,
.form-select.form-select-lg {
  height: 50px;
}

.password-eye-icon {
  position: absolute;
  right: 13px;
  top: 13px;
}

.table-result p {
  font-size: 13px;
  font-weight: 500;
  color: rgba(83, 83, 83, 1);
}

.page-title-row {
  display: flex;
  align-items: center;
  margin: 10px 0 20px;
  border-bottom: 1px solid #d1d1d1;
}
.page-title-row h5 {
  font-size: 30px;
  font-weight: 500;
  color: #32322f;
}
.page-title-row img.backarrow {
  margin-top: -5px;
}

.breadcrumb-item a {
  color: #444444;
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #000;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 4px;
}
.breadcrumb-item + .breadcrumb-item::before {
  padding-right: 4px;
}

.btn {
  font-size: 16px;
  align-content: center;
  line-height: 1.4;
  border-radius: 50px;
  padding: 9px 24px;
  color: #000;
  transition: 0.5s; /*min-width: 130px;*/
  font-weight: 500;
  height: 50px;
}

.btn.btn-lg {
  height: 50px;
  font-size: 16px;
  /* font-weight: 600; */
  color: #ffffff;
}
.btn.btn-sm {
  font-size: 16px;
  height: 42px;
}

.btn-light {
  background: #fff;
  border-color: var(--primarycolor);
  color: var(--primarycolor);
}

.btn-primary {
  background: var(--primarycolor);
  border-color: var(--primarycolor);
  color: #fff !important;
}
.btn.btn-primary.disabled {
  opacity: 0.5;
  background: #78b8ac;
  border-color: #78b8ac;
}
.btn-outline-primary {
  border-color: var(--primarycolor);
  color: var(--primarycolor);
}

.btn-secondary {
  background: var(--primaryLightcolor);
  color: var(--primarycolor);
  border-color: var(--primaryLightcolor);
}
.btn-secondary.outlined {
  border: 1px solid var(--primarycolor);
}

.btn.btn-secondary:hover,
.btn.btn-secondary:active {
  background: var(--secondarycolor) !important;
  border-color: var(--secondarycolor) !important;
}
.btn.btn-secondary img {
  transition: 0.5s;
}
.btn.btn-secondary:hover img {
  filter: brightness(0) invert(1);
}

.btn-outline-danger {
  border-color: #f14336;
  color: #f14336;
}
.btn-outline-light {
  background: #f6f2f5;
  border-color: #f6f2f5;
  color: #b1b1b1;
}
.btn-outline-light:hover {
  background: #78b8ac;
  border-color: #78b8ac;
  color: #fff;
}
.btn.btn-outline-danger:hover {
  color: #fff;
  border-color: var(--primarycolor);
  background-color: var(--primarycolor);
}

.btn:hover,
.btn-check:checked + .btn,
.btn.active,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  background: var(--primarycolor);
  border-color: var(--primarycolor);
  color: #fff;
}

.text-link {
  font-weight: 500;
  color: var(--primarycolor);
  cursor: pointer;
}

.tp-search {
  position: relative;
  max-width: 330px;
  width: 100%;
}
.tp-search input {
  border: solid 1px #d4d4d4;
  border-radius: 10px;
  padding: 10px 10px 10px 40px;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
}
.tp-search input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.tp-search .searchicon {
  position: absolute;
  left: 13px;
  top: 10px;
}

/*--dashboard css--*/
.dash-item {
  background: var(--primaryLightcolor);
  border-radius: 16px;
  padding: 20px 20px;
  display: flex;
  font-size: 26px;
  align-items: center;
  font-weight: 600;
  margin-bottom: 20px;
}
.dash-item a {
  display: flex;
  width: 100%;
  text-decoration: none;
  align-items: center;
}
.dash-item h6 {
  font-size: 36px;
  color: rgba(0, 0, 0, 1);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
}
.dash-item .dash-item-icon {
  border-radius: 100%;
  background: #7843e7;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin-right: 12px;
}
.dash-item-btn {
  align-self: flex-start;
  padding-left: 20px;
  min-width: 42px;
  margin-left: auto;
}

.dash-item p {
  font-size: 15px;
  color: #4f4e53;
  margin: 0;
  font-weight: 500;
}

.innerbody {
  padding-left: 300px; /* background-image: linear-gradient(#F6F3F0, #fff); */
  transition: all 0.3s ease-in;
}

.user-set-menu {
  /* background: #F8EBF4; */
  color: #000;
  border-radius: 27px;
  padding: 3px 10px 3px 3px;
  margin-right: 10px;
  margin-left: auto;
}
.user-set-menu .dropdown-toggle {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.user-set-menu .dropdown-toggle small {
  font-size: 10px;
  color: #4d4d4d;
}
.user-set-menu .dropdown-toggle h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  color: #000;
}
.user-set-menu .dropdown-toggle small {
  font-size: 10px;
}
.user-set-menu .dropdown-menu {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 180px;
}
.user-set-menu .dropdown-menu li {
  align-items: center;
}
.user-set-menu .dropdown-menu .dropdown-item {
  color: #000000;
  font-weight: 400;
  font-size: 14px;
}
.dropdown-menu img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.user-set-menu a {
  color: #333;
}
.user-avtar {
  width: 32px;
  height: 32px;
  background: var(--secondarycolor);
  color: #fff;
  border-radius: 100%;
  text-align: center;
  line-height: 32px;
  font-weight: 500;
  font-size: 13px;
}

/*--dashboard css--*/

/*--sidebar--*/
.closemenu-btn {
  display: none;
}

.sidebar {
  z-index: 999;
  overflow: auto;
  position: fixed;
  width: 100%;
  max-width: 300px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--lightgrey);
  padding: 0 0 25px;
  color: #fff;
}
.menubar-holder {
  display: flex;
  flex-flow: column;
  min-height: calc(100vh - 250px);
  overflow: auto;
  justify-content: space-between;
}
.menubar {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menubar li > a {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  color: var(--secondarycolor);
  font-size: 16px;
  text-decoration: none;
  font-weight: 400;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.menubar li > a img {
  margin-right: 10px;
}
.menubar li > a:hover,
.menubar li a.active {
  background: rgba(0, 0, 0, 0.1);
}
.menubar li.active a {
  background: #fff;
  color: #000;
}
.menubar li.active a:before,
.menubar li.active a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 0;
  z-index: 10;
  border-right: solid 8px #fff;
}
.menubar li.active a:before {
  top: 0;
  margin-top: -7px;
  border-bottom: solid 0px transparent;
  border-top: solid 8px transparent;
}
.menubar li.active a:after {
  bottom: 0;
  margin-bottom: -8px;
  border-bottom: solid 8px transparent;
  border-top: solid 0px transparent;
}

.menubar li > a.has-submenu::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 20px;
  width: 12px;
  height: 12px;
  background: url(../images/arrow-right-menu.svg) 0 0 no-repeat;
  transition: all 0.2s ease;
}

.menubar li > a.has-submenu.active::after {
  transform: rotate(90deg);
}

.has-submenu.active + .submenu {
  display: block;
}

.submenu {
  list-style: none;
  padding: 15px;
  background: #3c3c3c;
  position: relative;
  z-index: 8;
  top: -5px;
  border-radius: 0 0 8px 8px;
  display: none;
}
/* .submenu li {} */
.submenu li a {
  padding: 5px 5px 5px 15px;
  border-radius: 0;
  height: auto;
  font-size: 14px;
  position: relative;
}
.submenu li a.active {
  background: transparent;
  color: #d87ebd;
}
.submenu li a:hover {
  background: transparent;
  color: #d87ebd;
}
.submenu li a:hover::after,
.submenu li a.active::after {
  background: #d87ebd;
}
.submenu li a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: #d9d9d9;
}

.sildebarlogo {
  margin-bottom: 40px;
  background: #fff;
  padding: 16px;
}
/* .sildebarlogo img{ width: 145px;} */

.sidebar .sildebarlogo img {
  width: 104px;
  max-height: 37px;
  transition: 0.5s;     display: block;
}
.sidebar .logo-icon,
.menu-collapse .sidebar .logo-full {
  display: none !important;
}
.menu-collapse .sidebar .logo-icon {
  display: block !important;
}

.sidebar ul li a:hover img,
.sidebar ul li a.active img {
  filter: unset;
}

/*--sidebar--*/

.content-body {
  padding: 30px 30px 20px 80px;
}

footer {
  padding: 20px 38px;
  border-top: 1px solid #d1d1d1;
  color: var(--secondarycolor);
}

.white-body-card {
  background: #fff;
  padding: 20px;
  min-height: calc(100vh - 230px);
  margin-bottom: 20px;
  border-radius: 10px;
}

.table > thead {
  vertical-align: middle;
  border: 1px solid var(--secondarycolor);
}

.table thead th {
  background: var(--secondarycolor);
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
  /* text-transform: uppercase; */
  letter-spacing: 0.5px;
}
.table .btn-secondary {
  padding: 4px 16px !important;
  min-width: 22px !important;
  font-size: 11px;
  font-weight: 400;
}
.table .btn-danger {
  padding: 4px 16px !important;
  min-width: 22px !important;
  font-size: 11px;
  font-weight: 400;
  color: #fff !important;
}

.table {
  border: 0;
  color: #000;
}
.table tr td {
  border-color: #d8d8d8;
  font-weight: 400;
}
.table th,
.table td {
  padding: 10px 15px;
}

.table-result {
  display: flex;
  align-items: center;
}

/* pagination */
.pagination .page-item.active .page-link {
  background: #cecece;
  border-color: #cecece;
  color: #000;
}
.page-link {
  font-weight: 500;
  border: 1px solid #cecece !important;
  border-radius: 25px;
  margin-left: 5px !important;
  font-size: 12px;
  background: #fff;
  color: #000;
  width: 34px;
  height: 34px;
  line-height: 34px;
  padding: 0 5px;
  text-align: center;
}
.page-link:focus {
  box-shadow: none;
  color: #000;
  border: 1px solid #d9d9d9 !important;
  background: #ddd4f0;
}
.pagination .page-link img {
  margin-top: -3px;
}
.disabled > .page-link,
.page-link.disabled {
  background: #ddd4f0;
  opacity: 0.5;
}
.pagination .form-select {
  max-width: fit-content !important;
  min-width: fit-content !important;
  height: 40px;
}
.pagination {
  display: flex;
  align-items: center;
}
.page-link.prev,
.page-link.next {
  width: auto;
  border-radius: 30px !important;
  padding: 0 12px;
}

.header {
  background: #fff;
  padding: 15px 15px 15px 30px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}
.admin-top-border {
  content: "";
  height: 4px;
  border-radius: 0;
  background: linear-gradient(
    to right,
    #ffc003 0%,
    #ffc003 25%,
    #65ccf4 25%,
    #65ccf4 50%,
    #e6a3de 50%,
    #e6a3de 75%,
    #90d975 75%,
    #90d975 100%
  );
  display: block;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 999;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.filter-row-search {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.tp-search-input {
  position: relative;
}
.tp-search-input input {
  height: 38px;
  border-color: #777777;
  background: #fff;
  width: 360px;
  border-radius: 4px;
}
.filter-row .btn.btn-sm {
  height: 38px;
  font-size: 14px;
}

.header-serarch {
  position: relative;
  width: 260px;
}
.header-serarch .inputicon {
  position: absolute;
  top: 14px;
  left: 14px;
}
.header-serarch .form-control {
  padding-left: 10px;
  padding-right: 35px;
}
.headerserarch {
  position: relative;
  width: 100%;
  max-width: 315px;
}
.headerserarch .inputicon {
  position: absolute;
  top: 10px;
  left: 18px;
}
.headerserarch .inputicon img {
  width: 18px;
}
.headerserarch .inputicon-rt {
  position: absolute;
  top: 6px;
  right: 14px;
  cursor: pointer;
}
.headerserarch .form-control {
  padding-left: 42px;
  padding-right: 35px;
  color: #101010;
  border-color: #f4e6e6;
  border-radius: 50px;
  height: 46px;
}
.headerserarch .form-control::placeholder {
  color: #ece0d2;
}

.filterby {
  display: flex;
  font-size: 16px;
  align-items: center;
}
.filterby label {
  white-space: nowrap;
  margin-right: 10px;
}

.text-light {
  color: #b9b8b8 !important;
}

.label-heading {
  font-size: 14px;
}

.m-card-min-hight {
  min-height: calc(100vh - 290px);
}

.dropdown-item.active,
.dropdown-item:active {
  background: var(--primarycolor);
}

.uploaded img {
  margin-right: 0;
}

.dataTables_wrapper .dataTables_paginate {
  border-radius: 8px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  border: 0;
  background: var(--secondarycolor);
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  border: 0;
  background: var(--secondarycolor);
}
.dataTable {
  width: 100% !important;
}

.dataTables_length {
  margin: 7px 15px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background: #3cb5bf !important;
  color: #fff !important;
  border: none !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #3cb5bf !important;
  color: #fff !important;
  border: none !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #fff !important;
}

.btn:focus-visible {
  color: #fff;
  background-color: #3cb5bf !important;
  border-color: #3cb5bf;
  outline: 0;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  background-color: #3cb5bf !important;
  border-color: #3cb5bf;
}

.tbSmImg {
  width: 45px;
  height: 30px;
  border-radius: 8px;
}

/*---*/

.whiteBg {
  border-radius: 16px;
  background: #fff;
  padding: 40px 50px;
}

.textArea {
  height: 110px;
  border-radius: 15px;
}
.uploadimage {
  position: relative;
  width: 110px;
  margin: auto;
  text-align: center;
}

.input-group > .form-control,
.input-group > .form-floating,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  padding: 12px 20px;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 3px;
  background-color: #c2c2c2;
  transition: 0.4s;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 2px 3px;
  color: white;
}
input:checked + .slider {
  background-color: var(--secondarycolor);
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 28px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3.5px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .slider:before {
  transform: translateX(18px); /* Adjust based on the width of the slider */
}

.text-bg-success {
  color: #fff !important;
  background-color: #54bf7f !important;
}
.text-bg-danger {
  color: #fff !important;
  background-color: #f14336 !important;
}
.text-success {
  color: #6ebe52 !important;
}
.text-danger {
  color: #f14336 !important;
}

.bg-white-container {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px;
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column; /* justify-content: center; align-items: center; */
  margin: 0 auto;
}
.page-title-row h4 {
  font-size: 24px;
  font-weight: 600;
  margin: 0px;
}
.btn-outline-dark {
  border-radius: 12px;
  background-color: #fff;
}

/* login input */
.icon-input input {
  padding-left: 50px;
}
.icon-input {
  position: relative;
}
.icon-input .pre-icon {
  position: absolute;
  top: 12px;
  left: 18px;
}

.blue-light {
  background: #d9e2ff !important;
}
.orange-light {
  background: #fff1e9 !important;
}
.red-light {
  background: #ffeeed !important;
}
.green-light {
  background: #e5f5ed !important;
}
.Gray-light {
  background: #e5e7ef !important;
}

.profile-icon {
  width: 44px;
  height: 44px;
  display: inline-block;
  background: #f5f5f5;
  text-align: center;
  line-height: 40px;
  border-radius: 100%;
}
.table-result .form-select {
  border-radius: 10px;
  padding-left: 15px;
  font-size: 13px;
}
.table .profile-icon {
  width: 32px;
  height: 32px;
  line-height: 29px;
  margin-right: 5px;
}

.action-btn1 {
  width: 30px;
  height: 30px;
  background: #000;
  display: inline-block;
  text-align: center; /* line-height: 28px; */
  border-radius: 100%;
  border: 0;
}
.filter-row-search .form-select {
  height: 44px;
  border-radius: 40px;
  padding: 0 40px 0 20px !important;
}

.btn-primary-2 {
  background-color: #2c5be6;
  border-color: #2c5be6;
  color: #fff;
}
.btn-gray {
  background: #d3d3d3;
}

.filter-row-search .btn {
  height: 44px;
  padding: 10px 30px;
}
.total-revenue {
  font-size: 20px;
  font-weight: 500;
  margin-left: 12px;
}

.total-revenue span {
  color: var(--primarycolor);
}
.export-file {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.no-wrap {
  white-space: nowrap;
}
.a-link {
  color: var(--primarycolor);
  border: 0;
  background: 0;
  padding: 0;
  text-decoration: underline;
}

/* modals */
img {
  max-width: 100%;
}

.modal-content {
  border-radius: 16px;
  border: 0;
}

.list-typ1 li {
  list-style: none;
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
}
.list-typ1 {
  padding-left: 0;
}

.list-typ2 li {
  list-style: none;
  padding: 16px 0 16px 12px;
  border-bottom: 1px solid #f1f1f1;
}
.list-typ2 {
  padding-left: 0;
}

/* ===============================================================================
==================================================================================   */
.dash-item .dash-item-icon img {
  width: 35px;
}
.badge {
  font-size: 12px;
  border-radius: 50px;
  font-weight: 400;
  padding: 7px 13px;
}
.badge.bg-success {
  background: #6ebe52 !important;
}
.action-btn button {
  background: transparent;
  padding: 0;
  border: 0;
}

.modal-title {
  font-size: 22px;
  font-weight: 500;
}
.modal-dialog {
  max-width: 610px;
}
.modal-header {
  border-bottom: 0;
}
.modal-header,
.modal-body {
  padding-left: 25px;
  padding-right: 25px;
}

.btn-no-style {
  background: transparent;
  padding: 0;
  border: 0;
  display: inline-block;
}
.text-orange {
  color: var(--secondarycolor) !important;
}

/* custom date picker */
/* Hide the default calendar icon in Chrome, Edge, Safari */
input[type="date" i]::-webkit-calendar-picker-indicator {
  background: url("../images/calendar.svg") no-repeat right center;
  background-size: 24px;
  cursor: pointer;
  block-size: 24px;
  inline-size: 24px;
}

/* =============================================================================== */
.action-btn button {
  margin-right: 2px;
}
.filter-row-search .btn {
  height: 46px;
  padding: 12px 30px;
}
.btn.btn-lg {
  padding: 10px 40px;
}
.btn-white {
  background: #fff;
  color: #000 !important;
}
.btn-white:hover {
  color: #fff !important;
}
.filter-row-search .form-select {
  height: 46px;
  padding: 0 40px 0 20px !important;
  border-color: #f4e6e6;
}
.btn.btn-sm {
  padding: 4px 20px;
}
.w-75px {
  width: 75px;
}
.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1;
}
.btn-primary-outline {
  border-color: var(--primarycolor);
  color: var(--primarycolor);
}
.form-control.is-invalid{
  background-image:none !important;
  padding-right:40px;
}
.password-toggle{
  position:absolute;
  right:15px;
  top:14px;
  cursor:pointer;
}
input[type="date" i]::-webkit-calendar-picker-indicator {
  background-image: url(../images/calendar.svg);
}
.table {
  margin-bottom: 0;
}
.table-result {
  margin-top: 20px;
}
td.action-btn {
  white-space: nowrap;
}

/* login register modal ======================== */
.login-register-modal .modal-content {
  overflow: hidden;
  border: 0;
}
.login-register-modal .modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 9px;
  background: var(--primarycolor);
}

.login-container .form-field {
  margin-bottom: 20px;
}
.login-container .form-control {
  border-radius: 4px;
  background: #fff;
}
.login-container .form-select {
  border-radius: 7px;
  background: #fff;
}

.login-register-modal .logo-sec img {
  margin-bottom: 40px;
}
.login-register-modal .logo-sec h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 40px;
}
.login-container label {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
}
.modal-backdrop.show {
  opacity: 70%;
}
.forget-password-modal p {
  font-size: 14px;
  color: #000;
}
.login-register-modal .btn-close,
.thankyou-modal .btn-close {
  position: absolute;
  right: 10px;
  top: 15px;
  z-index: 99;
}

.heading-typ1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}
.heading-typ1 span {
  color: var(--primarycolor);
}

/* card design css ====================================================================================== */
.card {
  background: var(--primaryLightcolor);
  border: 0;
  border-radius: 20px;
  text-align: center;
  height: 100%;
}
.card img {
  border-radius: 20px 20px 0 0;
  height: 170px;
  object-fit: cover;
}
.card-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.card-text {
  color: #5c5c5c;
  line-height: 22px;
}
.card-body {
  padding: 20px 17px 26px 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card .btn {
  margin-top: 0px;
  width: 145px;
}
.card-btn {
  margin-top: auto;
}

.card2 {
  border-radius: 10px;
  text-align: left;
  padding: 22px;
  border: 1px solid #f6f6f6;
  background: var(--primaryLightcolor);
}
.card3 {
  border-radius: 10px;
  text-align: left;
  padding: 22px;
  border: 1px solid #e1d8f3;
  background: #f0e9ff;
  box-shadow: 0px 4px 9px 0px #0000000a;
}
.card4 {
  border-radius: 6px;
  text-align: left;
  padding: 12px;
  border: 1px solid #d2c4f2;
  background: #f0e9ff;
}

.upload-doc {
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
  background: #f0e9ff;
  justify-content: center;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid var(--primarycolor);
}
.upload-doc input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.upload-doc label {
  font-size: 18px;
  font-weight: 500;
}
.upload-doc label span {
  color: #454545;
  font-size: 12px;
  display: block;
}
.btn-min-width {
  min-width: 130px;
}

.btn-danger {
  background: #f35858;
  border-color: #f35858;
  color: #fff;
}

.notes-add-remove {
  display: flex;
  gap: 10px;
}

.default-modal .modal-header {
  padding-bottom: 0;
}

.default-modal .modal-content {
  background: #ddd4f0;
}
.default-modal .modal-title {
  font-size: 24px;
  font-weight: 600;
}

.table-action {
  min-width: 100px;
}
p:last-child {
  margin-bottom: 0;
}

/* mirror will */
.input-with-btn .btn {
  position: absolute;
  bottom: 4px;
  right: 4px;
  height: 42px;
  padding: 5px 15px;
}
.input-with-btn input {
  padding-right: 65px;
}

.badge {
  height: 26px;
  display: inline-block;
  border: 1px solid #ccc;
  padding: 5px 10px;
  background: #fff;
}
.badge-success {
  color: #25ae5c !important;
  background: #f2fff7;
  border-color: #25ae5c;
}
.form-switch .form-check-input {
  width: 50px;
  border-radius: 20px;
}
.form-switch .form-check-input:checked {
  background-color: #503ed2;
}
.form-switch {
  padding-left: 60px !important;
}
.form-switch .form-check-input {
  margin-left: -60px !important;
  margin-top: 0;
}
/* ============================== */

/* ==================== */
.heading-typ2 {
  color: #747474;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.main-content {
  padding: 35px;
  flex: 1;
}
.innerbody {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main-content {
  flex: 1;
}

.btn-primary-outlined {
  border: 1px solid var(--primarycolor);
  color: var(--primarycolor);
}

.input-pass .password-eye {
  position: absolute;
  top: 13px;
  right: 7px;
}

.input-pass input {
  padding-right: 35px;
}

.menubar {
  padding-top: 10px;
}
.sildebarlogo {
  margin-bottom: 20px;
}
.text-primary {
  color: #1975e7 !important;
}

/* Loader  */
.full-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.4);
}
.loader-center {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.loader-center svg {
  width: 50px;
}

.form-check.form-check-inline .form-check-label { margin-top: 3px; }