:root {
  --primary-color: #008b8b;
  --secondary-color: #12aa9b;
  --border-color: #ced4da;
  --black-color: #000;
  --white-color: #fff;
  --heading-color: #101928;
  --text-color: #212529;
  --label-color: #101928;
  --link-color: #49a3fc;
}

body {
  margin: 0 auto;
  font-size: 16px;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: #000;
}

::selection {
  background-color: var(--primary-color);
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: #000;
}

a {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  outline: 0;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  outline: none;
  color: var(--secondary-color);
  text-decoration: underline;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 9999s ease-in-out 0s;
  -webkit-text-fill-color: #000;
}

.wow {
  visibility: hidden;
}

.clear {
  clear: both;
}

img:not(table img) {
  max-width: 100%;
}

iframe {
  border: 0;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

p {
  font-size: 16px;
  color: #757576;
}

/* width */
/* ::-webkit-scrollbar {
  width: 10px;
} */

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

figure {
  margin: 0 auto;
  display: block;
  text-align: center;
}

.form-control::-webkit-input-placeholder {
  color: #98a2b3;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #98a2b3;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #98a2b3;
  opacity: 1;
}

.form-control:-moz-placeholder {
  color: #98a2b3;
  opacity: 1;
}

.user_dropdown {
  display: inline-block;
}

.user_dropdown > a {
  color: #494949;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.user_dropdown img {
  height: 48px;
  width: 48px;
  min-height: 48px;
  min-width: 48px;
  border-radius: 50%;
  border: 1px solid #12aa9b;
  object-fit: cover;
}

.user_dropdown .dropdown-menu.show {
  display: block;
  left: auto;
  width: 160px;
  overflow-x: hidden;
  padding-bottom: 0;
  margin-top: 10px;
  opacity: 1;
  visibility: visible;
  background-color: #fff;
  color: rgba(255, 255, 255, 0.6);
  right: 1px;
  box-shadow: 0 5px 12px rgba(60, 64, 67, 0.15);
  font-size: 12px;
  border-radius: 9px;
  border: 0;
}

.user_name > div {
  white-space: nowrap;
  max-width: calc(160px - 10px);
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
  color: #494949;
  text-transform: capitalize;
  font-size: 15px;
}

.user_name {
  padding: 0 10px;
  border-bottom: 1px solid #e9ecef;
}

.user_name small {
  color: #a2a2a2;
  text-transform: lowercase;
}

.user_name .user_email {
  margin-top: -10px;
}

.user_dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.user_dropdown ul li {
  display: block;
}

.user_dropdown ul li a {
  color: #494949;
  text-transform: capitalize;
  font-size: 14px;
  padding: 5px 10px;
  /* padding-left: 20px; */
  display: block;
  text-decoration: none;
  border-bottom: 1px solid #e9ecef;
}

.user_dropdown ul li a i {
  margin-right: 5px;
}

.user_dropdown ul li a:hover {
  color: var(--primary-color);
}

/* *** loader css start ****  */

.loader-wrapper {
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9999;
  top: 0;
  left: 0;
}

.loader {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
}

.loader:before {
  content: "";
  width: 100px;
  height: 100px;
  border: 5px solid rgba(0, 0, 0, 0.05);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 1.5s infinite linear;
  display: block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader img {
  width: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.dash_header {
  background: #f3f7fb;
  height: 100px;
  /* border-bottom: 1px solid #edf2f9; */
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 1030;
  display: flex;
}

.side_nav {
  width: 304px;
  background-color: var(--white-color);
  box-shadow: 0 4px 24px rgb(0 0 0 / 6%);
  z-index: 1000;
  top: 90px;
  bottom: 0px;
  position: fixed;
  overflow: hidden;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  border-right: 1px solid #12aa9b;
}

.page_container {
  background: #f9fffb;
  min-height: 100vh;
  padding-left: 304px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
}

.main_content {
  padding: calc(100px + 21px) 32px 30px;
  min-height: calc(100vh - 81px);
}

.footer_copyrightBox {
  border-top: 1px solid #dbe0f4;
  padding: 30px 50px;
  color: #8b909d;
  font-size: 13px;
  font-weight: 400;
}

.dash_contentBox {
  max-width: 100%;
  margin: 0 auto;
}

.white_mainBox {
  padding: 30px 43px;
  min-height: 370px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 10px 60px 0px rgba(38, 45, 118, 0.08);
  border: 1px solid #12aa9b;
}

.footer_copyLinks {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 32px;
}

.footer-links::before {
  position: absolute;
  content: "";
  background: #8b909d;
  right: -16px;
  top: 0;
  width: 1px;
  height: 100%;
}

.footer-links:last-child::before {
  display: none;
}

.footer-links {
  color: #8b909d;
  font-size: 13px;
  position: relative;
}

.dash_logo .logo_fold {
  display: none;
}

.dash_logo img {
  max-height: 58px;
}

.dash_header .dash_logo {
  width: 304px;
  display: flex;
  padding-left: 16px;
  background: var(--white-color);
  align-items: center;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  border-bottom: 1px solid #e9e9e9;
  position: relative;
  border-right: 1px solid #12aa9b;
}

.side_nav .side_nav_inner {
  position: relative;
  height: 100%;
}

.side_nav .side_nav_inner .sideNav_menu {
  position: relative;
  list-style: none;
  margin: 0;
  padding-left: 0;
  overflow: auto;
  /* border-right: 1px solid #edf2f9; */
  height: calc(100vh - 90px);
  padding-top: 44px;
}

.side_nav .side_nav_inner .sideNav_menu::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.side_nav .side_nav_inner .sideNav_menu::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 5px;
}

.side_nav .side_nav_inner .sideNav_menu::-webkit-scrollbar-track {
  background: transparent;
}

.dash_nav_item a {
  display: flex;
  align-items: center;
  padding: 15px 15px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  color: #626c76;
  font-size: 16px;
  font-weight: 500;
}

.dash_nav_item a .icon_holder {
  display: inline-block;
  flex: 0 0 32px;
  line-height: 0.8;
}

.dash_nav_item a .title_dash_nav {
  display: block;
  flex: 1;
  position: relative;
}

.dash_nav_item {
  padding: 5px 21px;
}

.dash_nav_item a.active,
.dash_nav_item a:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-radius: 6px;
  text-decoration: none;
}

.dash_nav_item a svg path {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.dash_nav_item a.active svg path,
.dash_nav_item a:hover svg path {
  fill: var(--white-color);
}

.nav_dash_wrap {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  box-shadow: 15px 4px 24px rgb(0 0 0 / 6%);
  border-bottom: 1px solid #e9e9e9;
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

/* nav checkbox */

.dash_userProfile {
  display: flex;
  align-items: center;
}

.dash_userProfile img {
  box-shadow: 0px 5px 10px 6px rgba(41, 72, 152, 0.14);
  border-radius: 10px;
  width: 100%;
  flex: 0 0 48px;
  max-width: 48px;
}

.prfDash_userContent {
  flex: 0 0 calc(100% - 48px);
  max-width: calc(100% - 48px);
  padding-left: 15px;
}

.topPRfNameUser {
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  color: #0d1118;
  margin-bottom: 5px;
}

.makeAvaiDash {
  display: flex;
  align-items: center;
}

.makeAvaiDash span {
  font-weight: 300;
  font-size: 13px;
  line-height: 17px;
  color: rgba(13, 17, 24, 0.6);
  margin-right: 6px;
}

.statusDash_tag {
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
  color: #0d1118;
  margin-left: 6px;
}

.statusDash_tag.availabel {
  color: #0cab50;
}

.statusDash_tag.notAvailabel {
  color: #ee0909;
}

/* ************ switch style  */

.switch-style-1 {
  line-height: 0;
}

.switch-style-1 input[type="checkbox"],
.switch-style-1 input[type="radio"] {
  appearance: none;
  width: 24px;
  height: 14px;
  border-radius: 30px;
  background: rgb(211, 211, 211);
  background: linear-gradient(
    90deg,
    rgba(62, 205, 123, 1) 50%,
    rgba(211, 211, 211, 1) 50%
  );
  margin: 0 6px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  background-size: 100px;
  background-position: -70px 0px;
  outline: 0;
  box-shadow: none;
}

.switch-style-1 input[type="checkbox"]::before,
.switch-style-1 input[type="radio"]::before {
  background: var(--white-color);
  box-shadow: 3px 1px 4px rgba(0, 0, 0, 0.1);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  content: "";
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.switch-style-1 input[type="checkbox"]:checked::before,
.switch-style-1 input[type="radio"]:checked::before {
  left: 11px;
}

.switch-style-1 input[type="checkbox"]:checked,
.switch-style-1 input[type="radio"]:checked {
  background-position: -20px 0px;
}

.nav_right_notification .dropdown-menu {
  border: 0px;
  border-radius: 10px;
  font-size: 14px;
  min-width: 180px;
  color: #53535f;
  box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
  text-align: left;
  list-style: none;
  background-color: var(--white-color);
  background-clip: padding-box;
  width: 350px;
  padding: 0;
  padding-bottom: 15px;
}

.notiHeader_top {
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dee2e6;
}

.notiHeader_top .viewBtn {
  color: var(--white-color);
  background-color: #1a73e8;
  border: 1px solid #1a73e8;
  padding: 0.35rem 1rem;
  height: auto;
  line-height: 1.25;
  font-size: 0.875rem;
  border-radius: 5px;
}

.notiHeader_top i {
  padding-right: 5px;
}

.notificationListDrop {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 250px;
  overflow: auto;
}

.notificationListDrop::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.notificationListDrop::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 5px;
}

.notificationListDrop::-webkit-scrollbar-track {
  background: transparent;
}

.notificationListDrop .dropdown-item {
  padding: 15px;
}

.notificationListDrop li:not(:last-child) .dropdown-item {
  border-bottom: 1px solid #edf2f9;
}

.notificationListDrop .dropdown-item:hover {
  background: #fafafa;
}

.notiListCard {
  display: flex;
  align-items: center;
}

.notiListCard .notiListImg {
  flex: 0 0 30px;
  max-width: 30px;
  width: 100%;
}

.notiListCard .notiListImg img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.notiListCard .notiListContent p {
  color: #2a2a2a;
  font-size: 14px;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notiListCard .notiListContent p span {
  color: #1a73e8;
}

.notiListCard .notiListContent small {
  display: block;
  color: #72849a;
}

.notiListCard .notiListContent {
  flex: 0 0 calc(100% - 30px);
  max-width: calc(100% - 30px);
  width: 100%;
  padding-left: 15px;
}

.notiHeaderTopHeading {
  color: var(--text-color);
  font-weight: 500;
}

.notiHeaderTopHeading i {
  font-weight: 500;
}

.nav_dash_wrpRight {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.rightMenuBtn {
  display: inline-block;
  background: var(--white-color);
  color: #53535f;
  padding: 10px;
  display: flex;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  position: relative;
}

.rightMenuBtn.newNotiMsg::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f9be7a;
  border: 2px solid #1a73e8;
  position: absolute;
  right: 11px;
  top: 11px;
}

.mr-15 {
  margin-right: 15px;
}

.rightMenuBtn.langDropBtn {
  min-width: 48px;
  width: auto;
  padding: 10px 15px;
}

.rightMenuBtn.langDropBtn img {
  height: 14px;
  width: auto;
  margin-right: 10px;
}

.nav_right_notification.landDropDown .dropdown-menu {
  padding: 0;
  width: unset;
  min-width: unset;
  border-radius: 10px;
}

.walletSearchRow .searchRow_col {
  flex: 0 0 70%;
  max-width: 70%;
  width: 100%;
}

.walletSearchRow .walletRow_col {
  flex: 0 0 30%;
  max-width: 30%;
  width: 100%;
}

.searchFilteHome {
  background: #1a73e8;
  border: 1px solid #f3f2f2;
  border-radius: 10px;
  padding: 20px 25px;
}

.searchFilteHome .form-control {
  background: #f7f7f9;
  border-radius: 10px;
  padding: 15px 22px;
  background-image: url(../img/search\ icon.svg);
  background-position: 98%;
  background-repeat: no-repeat;
  color: #0d1118;
  font-size: 18px;
  font-weight: 500;
}

.searchFilteHome .form-control::placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #0d1118;
  opacity: 0.5;
}

ul.subMenuSide {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: var(--primary-color);
}

ul.subMenuSide li a {
  font-weight: 400;
  font-size: 15px;
  color: var(--white-color);
  padding: 15px 25px 15px 65px;
}

.dash_nav_item .subMenuSide svg path {
  color: var(--white-color);
}

ul.subMenuSide li a span {
  width: 25px;
  display: inline-block;
}

.subMenuLink {
  position: relative;
}

.arrowIconSubmenu {
  position: absolute;
  right: 35px;
  line-height: 30px;
  transition: all 0.05s ease-in;
  -webkit-transition: all 0.05s ease-in;
  top: 18px;
}

.subMenuLink .arrowIconSubmenu::before,
.subMenuLink.collapsed .arrowIconSubmenu::before,
.subMenuLink .arrowIconSubmenu::after {
  content: "";
  position: absolute;
  background: 0 0;
  background-image: linear-gradient(
    to right,
    rgba(42, 42, 42, 0.75),
    rgba(42, 42, 42, 0.75)
  );
  border-radius: 2px;
  width: 6px;
  height: 1.5px;
  top: 6px;
  transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
    transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
    top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
    -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: rotate(-135deg) translateX(2px);
  -webkit-transform: rotate(-135deg) translateX(2px);
}

.subMenuLink .arrowIconSubmenu::after,
.subMenuLink.collapsed .arrowIconSubmenu::after {
  transform: rotate(-45deg) translateX(2px);
  -webkit-transform: rotate(-45deg) translateX(2px);
}

.subMenuLink:hover .arrowIconSubmenu::before,
.subMenuLink.collapsed:hover .arrowIconSubmenu::before,
.subMenuLink:hover .arrowIconSubmenu::after {
  background-image: linear-gradient(
    to right,
    rgb(255 255 255 / 100%),
    rgb(255 255 255 / 100%)
  );
}

.subMenuLink:not(.collapsed) .arrowIconSubmenu::before,
.subMenuLink:not(.collapsed):hover .arrowIconSubmenu::before,
.subMenuLink:not(.collapsed) .arrowIconSubmenu::after {
  background-image: linear-gradient(
    to right,
    rgb(255 255 255 / 100%),
    rgb(255 255 255 / 100%)
  );
}

.subMenuLink:not(.collapsed) .arrowIconSubmenu::before {
  transform: rotate(-225deg) translateX(2px);
  -webkit-transform: rotate(-225deg) translateX(2px);
}

.subMenuLink:not(.collapsed) .arrowIconSubmenu::after {
  transform: rotate(45deg) translateX(2px);
  -webkit-transform: rotate(45deg) translateX(2px);
}

.subMenuLink:not(.collapsed) {
  color: #fff;
  background: var(--primary-color);
  border-radius: 6px 6px 0 0 !important;
}

.subMenuLink:not(.collapsed) svg path {
  fill: var(--white-color);
}

.dashIconFold svg {
  width: 25px;
  height: 25px;
  color: #0d1118;
  transition: all 0.2s ease;
}

.dashIconFold:hover svg {
  color: #1a73e8;
}

.dashIconFold {
  display: inline-block;
  padding: 5px;
  margin-right: 30px;
}

.nav_dash_wrpLeft {
  display: flex;
  align-items: center;
}

.folded {
  display: none;
}

.is-folded .folded {
  display: block;
}

.is-folded .notFolded {
  display: none;
}

.dashBoard_overLay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

/* login css  */
.login_template {
  background-color: #f9f9f9;
  min-height: 100vh;
  background-image: url(../img/login-bg.png), url(../img/cloud-bg.png);
  background-repeat: no-repeat no-repeat;
  background-size: contain, auto;
  background-position: center bottom, center 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

/* .login_template::after {
    position: absolute;
    content: "";
    background: url(../img/login-bg.png);
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: calc();
    z-index: 0;
} */

.login-box {
  max-width: 565px;
  margin: 0 auto;
  padding: 57px 82px;
  position: relative;
  z-index: 1;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.08);
}

.close-page {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.08);
  text-align: center;
  line-height: 48px;
  background-color: #fff;
  z-index: 9;
}

.close-page:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.logo-box {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.form_input_box .form-group {
  margin-bottom: 30px;
}

.login-title {
  margin-bottom: 10px;
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 600;
}

.login-header {
  margin-bottom: 50px;
}

.login-subtext {
  color: #667185;
}

label {
  display: inline-block;
  color: var(--label-color);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 5px;
}

.account-register-box {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  font-size: 14px;
  text-decoration: none;
  margin-top: 7px;
}

.forgot-password {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
}

.forgot-password:hover {
  color: var(--black-color);
}

.btn-primary {
  color: #fff;
  background-color: var(--primary-color);
  font-size: 16px;
  border-radius: 6px;
  border: 0;
  padding: 13px 10px;
  font-weight: 500;
}

.password_icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  cursor: pointer;
}

.password_showIcon {
  display: none;
}

.toggle-password.password_show .password_hideIcon {
  display: none;
}

.toggle-password.password_show .password_showIcon {
  display: flex;
}

.login_block::after {
  position: absolute;
  content: "";
  background: url(../img/login-bg.png);
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.no-account {
  color: #667185;
  text-align: center;
  margin: 37px auto 0;
  font-size: 14px;
}

.login-page .close-btn {
  border: 2px solid #343368;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  right: 18px;
  top: 19px;
  color: #343368;
}

.login-page .close-btn:hover {
  border: 2px solid var(--primary-color);
}

.login-page .close-btn:hover svg {
  color: var(--primary-color);
}

.orBox {
  position: relative;
  height: 100%;
  border-left: 1px solid #ddd;
  float: left;
  left: 30px;
}

.or-text {
  position: absolute;
  background: var(--white-color);
  left: -10px;
  transform: translateY(-50%);
  top: 50%;
  font-size: 15px;
  color: #4d5959;
}

.no-account div {
  font-size: 19px;
  font-weight: 500;
}

.wizard .nav-tabs .nav-link.active,
.wizard .nav-tabs .nav-link.checked {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.wizard .nav-tabs .nav-link {
  color: #6f6c90;
  background-color: #eff0f6;
  border-color: #eff0f6;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: unset;
  border: 0;
  padding: 0;
}

.wizard .nav-tabs .nav-item {
  position: relative;
  flex: 1 1 40%;
}

.wizard .nav-tabs .nav-item:last-child {
  flex: 1 1 10%;
}

.wizard .nav-tabs .nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #eff0f6;
  left: 0;
  top: 50%;
  z-index: -1;
}

.wizard .nav-tabs .nav-link.checked::after {
  background-color: var(--primary-color);
}

.wizard .nav-tabs {
  max-width: 250px;
  margin: auto;
  display: flex;
  border-bottom: 0;
}

/* opt css */

.button-box.mt-25 {
  margin-top: 25px;
}

.otp_verification {
  text-align: center;
  display: flex;
  align-items: center;
  /* margin-bottom: 25px; */
  gap: 26px;
  justify-content: center;
}

.otp_verification input {
  color: #101928;
  font-size: 28px !important;
  font-weight: 700;
}

.receive-code {
  color: var(--title-color);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 35px;
  text-align: center;
}

.resend-links {
  display: inline-block;
  color: #4b49ac;
  font-weight: 600;
}

.resend-links:hover {
  color: var(--primary-color);
}

.otp_verification .form-control.dark-form-control {
  display: inline-block;
  width: 80px;
  height: 80px;
  min-width: 80px;
  text-align: center;
  padding: 0;
  font-size: 18px;
  border-radius: 6px;
}

.otp_verification.form-control:focus {
  color: var(--black-color);
  border-color: var(--border-color);
  box-shadow: none;
}

/* opt css end */

.wizard .nav-tabs .nav-item:last-child .nav-link {
  margin-left: auto;
}

.wizard .nav-tabs .nav-item:last-child .nav-link.active::after {
  background-color: transparent;
}

.otpBox .login-page {
  max-width: 440px;
  min-width: 440px;
}

.verificationText {
  margin-bottom: 0;
  color: var(--heading-color);
  font-size: 15px;
}

.wizard {
  margin-top: 22px;
}

.login-header {
  margin-bottom: 38px !important;
}

.login-title.VerifiTitle {
  margin-bottom: 13px;
}

.btn-secondary {
  background-color: var(--secondary-color);
  border: 0;
  color: var(--primary-color);
  padding: 11px 25px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* login css  end */

/*  */
.breadcrumb_linkBox .breadcrumb-item a {
  color: var(--link-color);
}

.breadcrumb_linkBox .breadcrumb-item + .breadcrumb-item::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='5' height='8' viewBox='0 0 5 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.176092 0.176092C0.0633406 0.288878 0 0.441828 0 0.601308C0 0.760787 0.0633406 0.913737 0.176092 1.02652L3.1532 4.00363L0.176092 6.98074C0.066536 7.09417 0.00591435 7.2461 0.00728468 7.40379C0.008655 7.56149 0.0719075 7.71233 0.183419 7.82384C0.29493 7.93536 0.445777 7.99861 0.603472 7.99998C0.761167 8.00135 0.913091 7.94073 1.02652 7.83117L4.42885 4.42885C4.5416 4.31606 4.60494 4.16311 4.60494 4.00363C4.60494 3.84415 4.5416 3.6912 4.42885 3.57842L1.02652 0.176092C0.913737 0.0633405 0.760787 0 0.601308 0C0.441828 0 0.288878 0.0633405 0.176092 0.176092Z' fill='%2399A1B7'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  width: 25px;
  height: 15px;
  padding: 0;
  background-size: 7px;
  margin-top: 2px;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 2px;
}

.breadcrumb-item {
  font-size: 13px;
}

.breadcrumb-item a:hover {
  color: var(--primary-color);
}

.breadcrumb-item.active {
  color: #99a1b7;
}

.user_dropdown .dropdown-toggle::after {
  border: none;
  height: 8px;
  width: 11px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.690378 0.603699C0.497088 0.802511 0.497088 1.12485 0.690378 1.32366L4.64997 5.39639C4.74279 5.49186 4.86869 5.5455 4.99996 5.5455C5.13122 5.5455 5.25712 5.49186 5.34994 5.39639L9.30953 1.32366C9.50282 1.12485 9.50282 0.802511 9.30953 0.603699C9.11624 0.404886 8.80286 0.404886 8.60957 0.603699L4.99996 4.31644L1.39034 0.603699C1.19705 0.404887 0.883667 0.404887 0.690378 0.603699Z' fill='%232E2E2E'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
  vertical-align: middle;
  margin-top: 3px;
}

.login-header .notAC {
  font-size: 18px;
  color: var(--heading-color);
}

.login-header .notAC a {
  color: #4b49ac;
}

.login-header .notAC a:hover {
  color: var(--black-color);
}

.form-footer {
  margin-top: 25px;
}

/*  */

.thank-you-box img {
  margin: auto;
  display: flex;
  margin-bottom: 30px;
}

.thank-you-box p {
  color: var(--heading-color);
  font-size: 17px;
  text-align: center;
  max-width: 659px;
  margin: auto;
}

.thank-you-box p a {
  color: var(--primary-color);
  text-decoration: underline;
}

.thank-you-box p a:hover {
  color: var(--black-color);
  text-decoration: none;
}

.dashIconFold svg:hover path {
  fill: var(--primary-color);
}

.block-heading {
  font-size: 18px;
  margin-bottom: 28px;
  color: var(--heading-color);
  font-weight: 600;
}

.form-label {
  font-size: 15px;
  color: var(--label-color);
  font-weight: 400;
  display: block;
  margin-bottom: 11px;
}

.form-control {
  padding: 12px 15px;
  min-height: 50px;
  color: var(--black-color);
  font-size: 15px;
  border: 1px solid rgba(18, 170, 155, 0.1);
  background: rgba(18, 170, 155, 0.06);
}

.login-page .form-control {
  border: 1px solid #d0d5dd;
  background: #fff;
  box-shadow: 0px 3px 2px -2px rgba(0, 0, 0, 0.06),
    0px 5px 3px -2px rgba(0, 0, 0, 0.02);
  color: var(--black-color);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: unset;
}

.section-block {
  margin-bottom: 20px;
}

.dash_headBox {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 18px;
  margin-bottom: 27px;
}

.page-heading {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 20px;
}

.input_iconBox {
  position: relative;
}

.custom-nav .nav {
  gap: 20px;
  margin-bottom: -2px;
}

.custom-nav .nav .nav-link {
  border: 0;
  border-bottom: 4px solid transparent;
  color: var(--heading-color);
  background: transparent;
  font-size: 20px;
  font-weight: 600;
  padding: 0 14px 20px;
}

.custom-nav .nav .nav-link.active {
  border-bottom: 4px solid var(--primary-color);
  color: var(--primary-color);
}

.custom-nav nav {
  border-bottom: 1px solid #ebedf3;
}

.custom-nav .tab-content {
  padding: 30px 0;
}

.user-info-item {
  list-style: none;
  padding: 0;
  margin: 0;
}

.user-info {
  display: flex;
}

.info-label {
  font-size: 16px;
  color: #99a1b7;
  font-weight: 500;
  flex: 0 1 230px;
}

.info-data {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 500;
  flex: 1 1 calc(100% - 230px);
}

.user-info-item .user-info:not(:last-child) {
  margin-bottom: 30px;
}

.status-box {
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.status-box.red {
  color: #e40000;
  font-size: 16px;
}

.status-box::after {
  background-color: #e40000;
}

.status-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  transform: translateY(-50%);
}

/*  */
/* Listing */
.right_buttonBox {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Table */
.table > thead tr th {
  padding: 15px 15px;
  color: #99a1b7 !important;
  font-size: 14px;
  font-weight: 400;
  padding-right: 0;
  border-bottom: 2px solid #d6e1f0 !important;
}

.table > tbody tr td {
  color: var(--text-color) !important;
  font-size: 14px;
  font-weight: 400;
  padding: 18px 15px;
  vertical-align: middle;
}

.table-responsive {
  min-height: 300px;
}

.dropdown-menu.show {
  border: 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 8px;
}

tbody tr {
  border-color: #f3f3f3;
  border-style: solid;
  border-top: 1px !important;
}

.table > :not(:last-child) > :last-child > * {
  border-bottom-width: 0;
  border-top-width: 0;
}

.table > :not(caption) > * > * {
  border-top-width: 1px;
  border-color: #d6e1f0;
}

.table-secondary {
  --bs-table-bg: #f5f6f9;
}

.table-hover > tbody > tr:hover {
  --bs-table-accent-bg: rgb(245, 247, 255);
}

.table_actionBtn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 7px;
}

.table_editeBTn {
  background-color: var(--link-color);
  color: var(--white-color);
}

.table_editeBTn:hover {
  background-color: #1780e9;
  color: var(--white-color);
}

.table_deleteBTn {
  background-color: #e40000;
  color: var(--white-color);
}

.table_deleteBTn:hover {
  background-color: #ff233a;
  color: var(--white-color);
}

.table_viewBTn {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.table_viewBTn:hover {
  background-color: #7500af;
  color: var(--white-color);
}

.table_menuBTn {
  background-color: #00207d;
  color: var(--white-color);
}

.table_menuBTn:hover {
  background-color: #001861;
  color: var(--white-color);
}

.table_action_lisl {
  display: flex;
  gap: 10px;
}

.table_menuBTn.dropdown-toggle::after {
  display: none;
}

.table_statusBtn::before {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  left: 0;
  top: 1px;
  bottom: 0;
  margin: auto 0;
}

.inactive_btn::before {
  background-color: #e40000;
}

.inactive_btn {
  color: #e40000;
}

.active_btn::before {
  background-color: #11bd60;
}

.active_btn {
  color: #11bd60;
}

.table_statusBtn {
  position: relative;
  padding-left: 16px;
  white-space: nowrap;
}

.table_thead {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.address_tableBox {
  max-width: 200px;
}

.table_nameWD {
  min-width: 150px;
}

/* listing code end  */

.btn-md {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
}

.tableEntries_text {
  font-size: 15px;
  color: var(--label-color);
  font-weight: 500;
}

.entries_paginaBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pagination {
  gap: 6px;
}

.page-link {
  color: var(--label-color);
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 5px;
  width: 34px;
  height: 34px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-link.active {
  color: var(--white-color);
  background-color: var(--primary-color);
}

.page-link:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.page-link:hover svg {
  color: var(--white-color);
}

.btn-check:focus + .btn-secondary,
.btn-secondary:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgb(141 13 207 / 20%);
}

.btn-clear {
  background: #e3e8f9;
  color: #6f7cb2;
  padding: 5px 17px;
  font-size: 15px;
}

.filter-search {
  background: var(--secondary-color);
  border-radius: 10px;
  padding: 20px 35px 0;
}

.no-border-input .form-control {
  border: 0;
}

.no-border-input .select2-container .select2-selection--single {
  border: 0;
}

.page-heading {
  font-size: 16px;
}

/* FAQ-Page  CSS */

/* ======================= Accordion Start ============================= */

.faq-page-wrapper .accordion-button::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 19px;
  height: 28px;
  width: 28px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='3' viewBox='0 0 16 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.2916 0.79043C0.762941 0.79043 0.334375 1.219 0.334375 1.74766C0.334375 2.27632 0.762942 2.70489 1.2916 2.70489H14.2073C14.7359 2.70489 15.1645 2.27632 15.1645 1.74766C15.1645 1.219 14.7359 0.79043 14.2073 0.79043H1.2916Z' fill='%236F6C8F' stroke='%236F6C8F' stroke-width='0.3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: 14px;
  background-color: #eef5fd;
  border-radius: 6px;
  /* transform: translateY(-50%); */
}

.faq-page-wrapper .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.74473 0.334375C7.21607 0.334375 6.7875 0.762942 6.7875 1.2916V14.2073C6.7875 14.7359 7.21607 15.1645 7.74473 15.1645C8.27339 15.1645 8.70196 14.7359 8.70196 14.2073V1.2916C8.70196 0.762941 8.27339 0.334375 7.74473 0.334375Z' fill='%23fff' stroke='%23fff' stroke-width='0.3' stroke-linecap='round'/%3E%3Cpath d='M1.2916 6.79531C0.762941 6.79531 0.334375 7.22388 0.334375 7.75254C0.334375 8.2812 0.762942 8.70977 1.2916 8.70977H14.2073C14.7359 8.70977 15.1645 8.2812 15.1645 7.75254C15.1645 7.22388 14.7359 6.79531 14.2073 6.79531H1.2916Z' fill='%23fff' stroke='%23fff' stroke-width='0.3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-position: center center;
  background-color: var(--primary-color);
  /* transform: translateY(-50%) rotate(180deg); */
}

.faq-page-wrapper .accordion-item {
  background-color: var(--white-color);
  border: 0;
  border-radius: 15px;
  margin-bottom: 10px;
  box-shadow: 0 1px 32px -8px rgb(6 53 163 / 7%);
}

.faq-page-wrapper .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-page-wrapper .accordion-header {
  margin-bottom: 0;
}

.faq-page-wrapper .accordion-button:not(.collapsed) {
  background-color: var(--white-color);
  box-shadow: none;
  border: 0;
}

.faq-page-wrapper .accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.faq-page-wrapper .accordion-button {
  color: var(--title-color);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
  cursor: pointer;
  padding: 21px 50px 21px 27px;
  position: relative;
}

.faq-page-wrapper .accordion-item .accordion-button {
  border-radius: 15px !important;
}

.faq-page-wrapper .accordion-body {
  padding: 0px 45px 21px 26px;
}

.faq_Questions_title p {
  font-size: 16px;
  color: rgb(0 0 0 / 60%);
  font-weight: 400;
  margin-bottom: 0;
}

/* ======================= Accordion End ============================= */
/* FAQ-Page CSS END */
.dropdown-item {
  font-size: 14px;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* user profile upload css */
.avatar-upload {
  max-width: 120px;
  position: relative;
}

.avatar-upload .avatar-edit {
  right: 10px;
  position: absolute;
  bottom: -9px;
}

.avatar-upload .avatar-edit .Upload_input {
  display: none;
}

.avatar-upload .avatar-edit .Upload_input + .Upload_icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  border: 1px solid #fff;
}

.avatar-upload .avatar-edit .Upload_input + .Upload_icon {
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 12px 21px 4px rgba(229, 195, 30, 0.15);
}

.avatar-upload .avatar-preview {
  width: 100px;
  height: 100px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  overflow: hidden;
}

.avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* user profile upload css end */

.custom_checkbox input[type="checkbox"],
.custom_checkbox input[type="radio"] {
  height: 20px;
  width: 20px;
  min-width: 20px;
  margin: 0;
  padding: 0;
  opacity: 1;
  appearance: none;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  background: transparent;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
}

.custom_checkbox input[type="checkbox"]:checked {
  border: 1px solid var(--primary-color);
}

.custom_checkbox input[type="checkbox"]:checked::before,
.custom_checkbox input[type="radio"]:checked::before {
  content: "\f00c";
  height: 100%;
  color: #ffffff;
  font-family: "Font-awesome-5-pro";
  position: absolute;
  font-weight: 500;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.form-group.custom_checkbox {
  align-items: flex-start;
}

.terms-text {
  font-size: 14px;
  font-weight: 400;
}

.terms-text .terms-link {
  text-decoration: underline;
  padding-inline: 3px;
}

.verification-text {
  color: #667185;
  font-size: 15px;
  font-weight: 400;
}

.receive-text {
  color: #667185;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  margin-top: 32px;
}

.otp-times {
  margin-top: 30px;
  text-align: center;
  color: #667185;
  font-size: 14px;
}

.dash_nav_item :is(.active, :hover) svg path {
  fill: #fff !important;
  fill-opacity: 1;
}

.sidebar-toggle img {
  height: 37px;
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: block !important;
  cursor: pointer;
  transition: all 0.3s linear;
}

.is-folded .dash_header .sidebar-toggle img {
  display: block !important;
  transform: scaleX(-1) translateY(-50%);
  right: -28px;
}

.is-folded .dash_nav_item {
  padding: 5px 14px;
}

.page-title-heading {
  color: #101928;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.64px;
}

.user-profile-link {
  display: flex;
  gap: 15px;
  padding-left: 0;
}

.user-profile-link::after {
  display: none;
}

.user-name-web {
  color: #101928;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.36px;
}

.user-text {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 400;
}

.user-profile-link:hover {
  text-decoration: none;
}

.user-id {
  color: #101928;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
}

.outer-avtarbox {
  display: grid;
  justify-content: center;
  justify-items: center;
  row-gap: 15px;
  margin: 32px 0 57px;
}

.user-email {
  color: #667185;
  text-align: center;
  font-size: 14px;
}

.border-wrapper {
  border-radius: 10px;
  border: 1px solid #ededee;
  padding: 19px 25px;
}

.edit-details {
  background: var(--primary-color) 1a;
  height: 34px;
  width: 34px;
  display: flex;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
}

.wrapper-top-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.form-heading {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin: 0;
}

.detail-label {
  color: #667185;
  font-size: 16px;
  font-weight: 400;
}

.detail-value {
  color: #373f3f;
  text-align: right;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 600;
}

.details-info-box {
  padding-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 1px solid #ededee;
}

.details-info .details-info-box:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.logout-link {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 400;
}

.border-wrapper.mt-30 {
  margin-top: 30px;
}

.activate-steps-modal .modal-dialog {
  max-width: 720px;
  border-radius: 22px;
  overflow: hidden;
}

.activate-steps-modal .modal-dialog .modal-content {
  border-radius: 22px;
  overflow: hidden auto;
  height: 785px;
}

.activate-steps-modal .modal-dialog .modal-body {
  padding: 24px 32px;
}

.step-pagination {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.44px;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.activate-step-title {
  color: #101928;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.48px;
  text-transform: capitalize;
}

.activate-step-text {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  align-items: center;
}

.steps-dot {
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 6px;
  list-style: none;
}

.steps-dot-item.active {
  width: 24px;
  background: var(--primary-color);
}

.steps-dot-item {
  width: 10px;
  height: 8px;
  background: rgb(0 138 138 / 60%);
  border-radius: 10px;
}

.activate-steps-modal .form-group {
  margin-bottom: 16px;
}

.activate-steps-modal .form-control {
  min-height: 52px;
}

.form-label {
  font-weight: 400;
  margin-bottom: 6px;
  color: #101928;
  font-size: 14px;
  font-weight: 500;
}

.theme-btn {
  border-radius: 8px;
  background: var(--primary-color);
  color: #fff;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 600;
}

/* Disabled state */
.theme-btn:disabled {
  background: rgba(18, 170, 155, 0.06);
  color: var(--primary-color);
  border: 1px solid transparent;
  cursor: default;
  font-size: 16px;
  font-weight: 600;
}

/* No hover effect when disabled */
.theme-btn:disabled:hover {
  background: rgba(18, 170, 155, 0.06);
  color: var(--primary-color);
}

.theme-btn-border {
  color: var(--primary-color);
  border-radius: 8px;
  border: 1px solid rgba(18, 170, 155, 0.1);
  background: rgba(18, 170, 155, 0.06);
  padding: 13px 20px;
  text-align: center;
  cursor: pointer;
}

.setup-tabsBox .tab-content {
  padding: 0;
  border: none;
}

label.theme-btn.theme-btn-border.set-pd {
  padding: 30px 20px;
}

.theme-btn.btn-md {
  min-width: 190px;
}

.action-submit-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 34px;
}

.activate-steps-modal .form-select {
  padding: 12px 15px;
  min-height: 50px;
  color: var(--black-color);
  font-size: 15px;
  border: 1px solid rgba(18, 170, 155, 0.1);
  background-color: rgba(18, 170, 155, 0.06);
}

.activate-steps-modal .form-select:focus {
  border-color: #05baa98a;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(0 150 136 / 17%);
}

.date-select {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22" fill="none"><path d="M7.33362 1.83337V4.58337" stroke="%23008B8B" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M14.6664 1.83337V4.58337" stroke="%23008B8B" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M3.20862 8.33252H18.792" stroke="%23008B8B" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M19.25 7.79171V15.5834C19.25 18.3334 17.875 20.1667 14.6667 20.1667H7.33333C4.125 20.1667 2.75 18.3334 2.75 15.5834V7.79171C2.75 5.04171 4.125 3.20837 7.33333 3.20837H14.6667C17.875 3.20837 19.25 5.04171 19.25 7.79171Z" stroke="%23008B8B" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M14.3864 12.5583H14.3946" stroke="%23008B8B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M14.3864 15.3083H14.3946" stroke="%23008B8B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.9955 12.5583H11.0038" stroke="%23008B8B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.9955 15.3083H11.0038" stroke="%23008B8B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.60296 12.5583H7.61119" stroke="%23008B8B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.60296 15.3083H7.61119" stroke="%23008B8B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  padding-right: 30px;
  background-position: right 16px center;
  background-repeat: no-repeat;
}

input[type="date" i]::-webkit-calendar-picker-indicator {
  display: none;
}

.with-icon-input {
  position: relative;
}

.with-icon-input :is(svg, .verify-text) {
  position: absolute;
  right: 16px;
  top: 16px;
}

.with-icon-input.verifyIcon_box :is(svg, .verify-text) {
  top: 16px !important;
}

.verify-text {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.36px;
  /* text-transform: capitalize; */
  top: 40px !important;
}

.verify-text:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.activate-step-box {
  display: grid;
  align-content: space-between;
  height: 100%;
}

/* faq css */
.faq_wrapper .accordion-item {
  margin: 0 0 20px;
  border-radius: 20px;
  border: 1px solid #12aa9b;
  background: #fff;
  box-shadow: 0px 4px 24px 2px rgba(38, 45, 118, 0.08);
}

.faq_wrapper .accordion-button {
  color: #101928;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  border: 0;
  padding: 26px 28px;
  padding-right: 50px;
}

.faq_wrapper .accordion-button:hover {
  color: var(--primary-color);
}

.accordion-button::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 30px;
  height: 22px;
  width: 22px;
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.2602 8.2041L12.2836 14.1808C11.5777 14.8866 10.4227 14.8866 9.7169 14.1808L3.74023 8.2041' stroke='%23101928' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: 22px;
  transition: all 0.3s linear;
  cursor: pointer;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.2602 8.2041L12.2836 14.1808C11.5777 14.8866 10.4227 14.8866 9.7169 14.1808L3.74023 8.2041' stroke='%23101928' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  transform: rotate(-180deg);
}

.faq_wrapper .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: unset;
  cursor: pointer;
}

.faq_wrapper .accordion-button {
  cursor: pointer;
  background-color: transparent;
}

.faq_wrapper .accordion-body {
  padding: 4px 28px 22px;
}

/* faq css emd */

.switch_time {
  display: flex;
}

.plan_time input[type="checkbox"] {
  width: 0;
  height: 0;
  visibility: hidden;
}

.plan_time label {
  width: 55px;
  height: 29px;
  display: block;
  position: relative;
  cursor: pointer;
  border-radius: 14px;
  background: #dfe3e3;
  transition: 0.5s;
}

.plan_time label::after {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 25px;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: 0.5s;
}

.plan_time input:checked ~ label {
  background-color: var(--primary-color);
}

.plan_time input:checked ~ label:after {
  left: calc(100% - 52px);
  transform: translateX(100%);
}

.page-links {
  color: var(--primary-color);
  text-align: right;
  font-size: 16px;
  font-weight: 500;
  text-decoration-line: none !important;
  cursor: pointer;
}

.theme-btn:hover {
  color: var(--primary-color);
  border-color: rgba(18, 170, 155, 0.1);
  background: rgba(18, 170, 155, 0.06);
}

.update_btn .theme-btn {
  min-width: 119px;
  padding: 7px 20px;
}

.update_btn {
  text-align: end;
}

.invoices-tableBlock .table > thead tr th {
  color: #373f3f !important;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  padding: 10px 15px;
  border-bottom: 0 !important;
  background: rgba(0, 139, 139, 0.1);
  white-space: nowrap;
}

.invoices-tableBlock .table {
  margin-bottom: 0;
}

.invoices-tableBlock .table-responsive {
  min-height: auto;
}

.invoices-tableBlock .table > :not(caption) > * > * {
  border-top-width: 0 !important;
}

.invoices-tableBlock .table > :not(caption) > * > * {
  border-top-width: 1px;
  border-color: #ededee;
}

.invoices-tableBlock .table > thead tr th:first-child {
  border-radius: 10px 0 0 10px;
}

.invoices-tableBlock .table > thead tr th:last-child {
  border-radius: 0 10px 10px 0;
}

.invoices-tableBlock .table > tbody tr td {
  color: #667185 !important;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  padding: 10px 15px;
  vertical-align: middle;
  white-space: nowrap;
}

.status {
  color: #e01212;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  border-radius: 8px;
  border: 1px solid rgba(224, 18, 18, 0.1);
  background: rgba(224, 18, 18, 0.08);
  padding: 3px 15px 4px;
  max-width: 112px;
  text-align: center;
  display: block;
  cursor: pointer;
}

.status.green-bgColor {
  color: #1f8a06;
  border: 1px solid rgba(31, 138, 6, 0.1);
  background: rgba(31, 138, 6, 0.08);
}

.download-btn {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  border-radius: 8px;
  background: var(--primary-color);
  box-shadow: 0px 3px 2px -2px rgba(0, 0, 0, 0.06),
    0px 5px 3px -2px rgba(0, 0, 0, 0.02);
  padding: 4px 10px;
  min-width: 119px;
  display: inline-block;
}

.download-btn:hover {
  text-decoration: none;
  color: var(--primary-color);
  border-color: rgba(18, 170, 155, 0.1);
  background: rgba(18, 170, 155, 0.06);
}

.dashboard-cardBox {
  border-radius: 12px;
  border: 1px solid #12aa9b;
  background: #fff;
  padding: 29px 14px 29px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  height: 100%;
}

.dash-cardNo {
  color: #12aa9b;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.dash-card-subText {
  color: #626c76;
  font-size: 16px;
  font-weight: 400;
}

.dueDate {
  border-radius: 5px;
  background: rgba(98, 108, 118, 0.1);
  color: #626c76;
  font-size: 14px;
  font-weight: 400;
  padding: 6px 7px;
  margin-top: 4px;
  display: inline-flex;
}

.dash-icons {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 70px;
  border: 1px solid rgba(0, 139, 139, 0.06);
  background: rgba(0, 139, 139, 0.06);
}

.dash-cardInfo {
  flex: auto;
}

.dashboard-cardBlock .row-gap {
  --bs-gutter-x: 28px;
}

.card-body-block {
  border-radius: 20px;
  border: 1px solid #12aa9b;
  background: #fff;
  box-shadow: 0px 4px 24px 2px rgba(38, 45, 118, 0.08);
  padding: 16px 24px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-subTilte {
  color: #101928;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
}

.card-headerBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
  width: 100%;
}

.dash-heading {
  color: #101928;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 0;
}

.statistics-block {
  margin-top: 32px;
  padding-top: 23px;
  border-top: 1px solid #ededee;
}

.statistics-card-details {
  margin-top: 35px;
}

.card-heading-box h3 {
  color: #101928;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 2px;
}

.card-heading-box span {
  color: #667185;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.card-heading-box {
  margin-bottom: 40px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ededee;
  width: 100%;
  position: relative;
  padding-left: 16px;
}

.card-heading-box::before {
  position: absolute;
  content: "";
  top: 7px;
  left: 0;
  width: 5px;
  height: 47px;
  border-radius: 100px;
  background: #12aa9b;
}

.card-heading-box:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.card-body-block.padding-inline {
  padding-inline: 28px;
}

.rowGap {
  --bs-gutter-y: 19px;
}

.average-rent {
  margin: auto;
  text-align: center;
  justify-content: center;
}

.dropdown-toggle.dropdown_detal {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  border-radius: 39px;
  border: 1px solid #d5d5d8;
  padding: 7px 19px 7px 15px;
  background-color: #fff;
  min-width: 101px;
  line-height: normal;
  display: flex;
}

.dropdown-toggle.dropdown_detal::after {
  content: "";
  border: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.31055 9L12.3105 15L18.3105 9' stroke='%23101928' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 4px;
}

.dropdown-menu.dropdown-menu-end.show {
  min-width: 101px;
}

.overview-grhap {
  width: 100%;
  height: 210px;
}

.overview-grhap img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/*======= tabs CSS ==========*/
.setup-tabsBox #pills-tab {
  display: flex;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: 42px;
  flex-wrap: nowrap;
  gap: 5px;
}

.setup-tabsBox .nav-link {
  position: relative;
  color: #626c76;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  padding: 0;
  /* min-width: 218px; */
  width: 100%;
  text-align: center;
}

.setup-tabsBox .nav-item {
  flex: 0 0 calc(calc(100% - 25px) / 4);
}

.setup-tabsBox .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background: none;
  color: var(--primary-color);
}

.setup-tabsBox .nav-link:hover {
  color: var(--primary-color);
}

.setup-tabsBox .nav-link.active::before {
  content: "";
  width: 100%;
  background-color: var(--primary-color);
  bottom: -14px;
  left: 0;
  height: 3px;
  position: absolute;
}

/*====== tabs CSS END ===========*/

.verify-block-element.max-width {
  max-width: 530px;
  margin: auto;
}

.bank_transferStatus {
  color: #373f3f;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  padding: 18px 22px;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(18, 170, 155, 0.1);
  background: rgba(18, 170, 155, 0.06);
}

span.bank_transferStatus.mt-32 {
  margin-top: 32px;
}

.verify-subText {
  color: #101928;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

.verify-withSpidBox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 66px;
  gap: 18px;
}

.verify-withSpidBox .theme-btn {
  padding: 8px 20px;
}

.or_text {
  color: #626c76;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
}

.activate-steps-modal.otp-modal .modal-dialog {
  max-width: 554px;
  margin: auto;
}

.activate-steps-modal.otp-modal .modal-dialog .modal-content {
  border-radius: 22px;
  background: #fff;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.08);
  border: 0;
  padding: 24px 26px;
  height: auto;
}

.activate-steps-modal.otp-modal .modal-title {
  color: #101928;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
}

.activate-steps-modal.otp-modal .modal-dialog .modal-body {
  padding: 21px 0 0;
}

.activate-steps-modal.otp-modal .modal-dialog .modal-header {
  padding: 0;
  border-bottom: 0;
}

.upload-card label {
  min-height: 115px;
  align-items: center;
  display: grid;
}

.upload-card label .text-center {
  text-align: center !important;
  color: #667185;
  font-size: 14px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.upload-card .close-button {
  border: 1px solid var(--primary-color);
}

.react-datepicker-wrapper {
  width: 100%;
}

.avatar-upload .avatar-preview img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.locationDropDown:not(:empty) {
  border: 1px solid rgba(4, 94, 85, 0.1);
  /* padding: 16px; */
  border-radius: 5px;
}

.locationDropDown .autocomDropdownItem:not(:last-child) {
  border-bottom: 1px solid rgba(18, 170, 155, 0.1);
}

.autocomDropdownItem {
  padding: 4px 16px 10px;
  font-size: 14px;
}

.react-tel-input .form-control {
  background: rgba(18, 170, 155, 0.06) !important;
  border: 1px solid rgba(18, 170, 155, 0.1) !important;
}

.react-tel-input .flag-dropdown {
  background: rgba(18, 170, 155, 0.06) !important;
  border: 1px solid rgba(18, 170, 155, 0.1) !important;
}

.with-icon-input .verify-text svg {
  position: unset;
}

.modification-request-modal {
  background: #fff;
  padding-inline: 16px;
  padding-block: 24px;
}

.modification-request-modal .modal-header {
  border-bottom: 0;
  padding-bottom: 0;
}

.modal-about-heading {
  color: #373f3f;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 32px;
}

.input_iconBox textarea::placeholder {
  color: rgba(0, 139, 139, 0.5);
  font-size: 16px;
  font-weight: 500;
}

.ReactModal__Overlay {
  display: flex;
}

.outer-radio-btn {
  border-radius: 8px;
  border: 1px solid rgba(18, 170, 155, 0.1);
  background: rgba(18, 170, 155, 0.06);
  padding: 14px;
}

/* Contract Page css */

.dash--pie-chart-img {
  width: 100%;
  margin: auto;
  text-align: center;
}

.dash-sub-heading {
  color: #667185;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.add-contractsBtn {
  display: flex;
  gap: 6px;
  align-items: center;
}

.contracts-top-heading-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.theme-btn.add-contractsBtn:hover .plusIcon svg path {
  stroke: var(--primary-color);
}

.badge {
  color: #e01212;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(224, 18, 18, 0.1);
  background: rgba(224, 18, 18, 0.08);
}

.badge-active {
  color: #1f8a06;
  border: 1px solid rgba(31, 138, 6, 0.1);
  background: rgba(31, 138, 6, 0.08);
}

.badge.badge-expiring {
  color: #b1862c;
  border: 1px solid rgba(177, 134, 44, 0.1);
  background: rgba(177, 134, 44, 0.08);
}

.badge.badge-concluded {
  color: #373f3f;
  border: 1px solid rgba(55, 63, 63, 0.1);
  background: rgba(55, 63, 63, 0.08);
}

.badge.badge-draft {
  color: #373f3f;
  border: 1px solid rgba(55, 63, 63, 0.1);
  background: rgba(55, 63, 63, 0.08);
}

.table .setbadge {
  display: flex;
  align-items: center;
  gap: 6px;
  width: max-content;
}

.contract_table .table > thead tr th {
  color: #101928 !important;
  font-size: 14px;
  font-weight: 600;
  border-bottom: none !important;
  background: rgba(0, 139, 139, 0.1);
  white-space: nowrap;
}

.contract_table .table > tbody tr td {
  color: #373f3f;
  font-size: 14px;
  font-weight: 400;
  border-top: 0;
  white-space: nowrap;
}

.contract_table .table > :not(caption) > * > * {
  border-top-width: 0;
  border-color: transparent;
}

.contract_table table th:first-child {
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}

.contract_table table th:last-child {
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
}

.contract_table table tr:last-child td:first-child {
  border-bottom-left-radius: 20px;
}

.contract_table table tr:last-child td:last-child {
  border-bottom-right-radius: 20px;
}

.contract_table .table > thead tr th {
  padding: 20px 15px;
  border: none !important;
}

.actions-Btn .dropdown-toggle::after {
  display: none;
}

.actions-Btn .dropdown-toggle {
  border: none;
  background-color: transparent;
}

.contract_table {
  border-radius: 20px;
  border: 1px solid #12aa9b;
  background: #fff;
  box-shadow: 0px 4px 24px 2px rgba(38, 45, 118, 0.08);
  margin-top: 22px;
  overflow: hidden;
}

.add-contracts-modal .btn-close {
  width: auto;
  height: auto;
  background: #fff;
  opacity: 1;
}

.add-contracts-modal .btn-close:focus {
  box-shadow: none;
}

.Contract-step-points ul li {
  list-style: none;
  color: #373f3f;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  padding: 8px 0;
}

.set-listIcon {
  display: flex;
  gap: 8px;
}

.add-contracts-modal .modal-title {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 600;
  /* text-transform: capitalize; */
}

.add-contracts-modal .modal-lg,
.add-contracts-modal .modal-xl {
  max-width: 1000px;
}

.add-contracts-modal .modal-body {
  padding: 1rem 1.5rem;
  max-height: 500px;
  overflow: auto;
}

.add-contracts-modal .modal-body::-webkit-scrollbar {
  width: 4px !important;
}

.add-contracts-modal .modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.add-contracts-modal .modal-body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.add-contracts-modal .modal-body::-webkit-scrollbar-thumb:hover {
  background: #555;
  /* Darker shade on hover */
}

.add-contracts-modal .modal-header {
  padding: 1.4rem 1.5rem;
  border-bottom: none;
  padding-bottom: 0;
  align-items: start;
}

.add-contracts-modal .modal-content {
  border-radius: 20px;
}

.continue-NextPage .theme-btn {
  padding: 13px 56px;
  text-decoration: none;
  cursor: pointer;
}

.continue-NextPage {
  text-align: right;
  margin: 26px 0;
}

.step-title {
  display: flex;
  gap: 10px;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 500;
}

.step-subText {
  color: #667185;
  font-size: 14px;
  font-weight: 400;
}

.step-cardBox {
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 10px 60px 0px rgba(38, 45, 118, 0.08);
  width: 100%;
}

.step-cardBox.active {
  border: 1px solid #12aa9b;
}

.step-cardBlock {
  display: flex;
  gap: 16px;
}

.card-bodyTitle {
  color: #101928;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 26px;
  /* text-transform: capitalize; */
}

.textcode-searchBtn {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  padding: 22px;
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: start;
}

.comman-info-content {
  color: #373f3f;
  font-size: 16px;
  font-weight: 500;
}

.comman-info-content {
  color: #373f3f;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  gap: 10px;
  border-radius: 8px;
  background: rgba(18, 170, 155, 0.08);
  padding: 14px;
}

.comman-info-box {
  margin-top: 22px;
}

.add-contracts-modal .modal-title.dark {
  color: #101928;
  font-size: 24px;
  font-weight: 600;
  /* text-transform: capitalize; */
}

.card-body-block.step-body-block {
  padding: 24px 24px 24px;
}

.add-contracts-modal.tax-code-model .modal-lg,
.add-contracts-modal .modal-xl {
  max-width: 560px;
}

.text-code-form {
  margin-bottom: 16px;
}

.step-body-block .form-group {
  margin-bottom: 16px;
}

.set-header-Img-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.landlord-profileImg img {
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.step-body-block .form-select,
.model-from-group .form-select {
  padding: 12px 36px 12px 15px;
  min-height: 50px;
  color: var(--black-color);
  font-size: 15px;
  border: 1px solid rgba(18, 170, 155, 0.1);
  background-color: rgba(18, 170, 155, 0.06);
}

.form-select:focus {
  border-color: #000;
  outline: 0;
  box-shadow: none;
}

.custom_checkbox label {
  color: #101928 !important;
}

.custom_checkbox input[type="checkbox"]:checked,
.step-body-block .custom_checkbox input[type="radio"]:checked {
  border: 2px solid var(--primary-color);
  background: var(--primary-color);
}

.cardBox .continue-NextPage {
  margin: 46px 0 26px;
}

button.verify-text {
  border: none;
  background: none;
}

.close-model-popup {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: none;
}

.continue-NextPage.with-close-btn {
  margin: 16px 0;
}

.ReactModalPortal .myModal1 {
  max-width: 520px !important;
  width: calc(100% - 20px);
}

.myModal1 .modal-content {
  padding: 22px;
  overflow: hidden auto;
  max-height: 746px;
}

.model-from-group .form-group {
  margin-bottom: 16px;
}

.model-from-group {
  margin-top: 16px;
}

.myModal1.setModelwidth {
  max-width: 720px !important;
  width: calc(100% - 20px);
}

.card-bodysubtitle {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
}

.step-body-block .form-select.border-select {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='11' viewBox='0 0 19 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.5L9.5 9.5L17.5 1.5' stroke='%23343A40' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: right 0.75rem center;
  background-size: 12px 8px;
}

.form-control.border-select {
  background-color: transparent;
  border: 1px solid var(--primary-color);
}

.custom_checkbox.customset-checkbox {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.theme-btn.textcode-searchBtn:hover .plusIcon svg path {
  stroke: var(--primary-color);
}

.model-from-group .form-select.border-select {
  background-color: transparent;
  border: 1px solid var(--primary-color);
}

.card-bodypera {
  color: #373f3f;
  font-size: 16px;
  font-weight: 500;
}

.radio-inputBox label {
  margin: 0 0 5px;
  color: #373f3f !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}

.custom_radio.radio-input-group {
  border-radius: 8px;
  background: rgba(18, 170, 155, 0.08);
  padding: 14px;
}

.card-bodyTitle.set-responsive-title {
  margin-bottom: 16px;
}

.form-inputs {
  margin-top: 6px;
}

/* counter css style */

.countr-btn {
  border: none;
  background: none;
  cursor: pointer;
  padding: 14px 16px;
}

.countr-box span {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 500;
  min-width: 36px;
  text-align: center;
}

.countr-box {
  border: 1px solid var(--primary-color);
  width: max-content;
  border-radius: 8px;
  min-width: 136px;
  margin-top: 22px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* End */

.continue-NextPage.borderBtn .theme-btn {
  background: transparent;
  border: 1px solid #12aa9b;
  color: var(--primary-color);
}

.continue-NextPage.borderBtn .theme-btn {
  background: transparent;
  border: 1px solid #12aa9b;
  color: var(--primary-color);
}

.continue-NextPage.borderBtn .theme-btn:hover {
  color: var(--primary-color);
  border-color: rgba(18, 170, 155, 0.1);
  background: rgba(18, 170, 155, 0.06);
}

.cardBox .continue-NextPage.borderBtn {
  margin: 12px 0 12px;
}

.checkbox-Box {
  display: flex;
  gap: 26px;
}

.cardBox-innercard {
  border-radius: 10px;
  border: 1px solid #12aa9b;
  background: #fff;
  padding: 20px;
}

/* custom select radio button card css */

.custom-select-card .form-check-input:checked + .form-check-label {
  background-color: #00a19b;
  border-color: #00a19b;
  color: #fff !important;
}

.custom-select-card .form-check-label {
  color: var(--primary-color) !important;
  border: 1px solid var(--primary-color);
  border-radius: 6px;
  text-align: center;
  padding: 20px 0;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
}

.custom-select-card .form-check-label:hover {
  background-color: #eaf7f5;
}

.custom-select-card .form-check-label:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 161, 155, 0.25);
}

.custom-select-card .radio-inputBox .form-check-input[type="radio"] {
  display: none !important;
}

.custom_radio.custom-select-card [type="radio"]:checked + label,
.custom_radio.custom-select-card [type="radio"]:not(:checked) + label {
  padding-left: 0;
}

.custom_radio.custom-select-card [type="radio"]:checked + label:before,
.custom_radio.custom-select-card [type="radio"]:not(:checked) + label:before {
  display: none;
}

.custom_radio.custom-select-card [type="radio"]:checked + label::after,
.custom_radio.custom-select-card [type="radio"]:not(:checked) + label::after {
  display: none;
}

.Income-docImg img {
  border: 1px solid #12aa9b;
}

.Income-docImg {
  text-align: center;
  margin: 12px 0;
}

.Modelpera {
  color: #101928;
  font-size: 16px;
  font-weight: 400;
}

.form-label.set-info-icon {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-icon {
  cursor: pointer;
}

.info-icon svg:hover path {
  fill: #000;
}

.action-Btngroup .theme-btn {
  color: var(--primary-color);
  background: #fff;
  border: 1px solid var(--primary-color);
  margin-top: 16px;
  font-weight: 500;
  padding: 16px 14px;
}

.action-Btngroup .theme-btn:hover {
  color: #fff;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.error-modal-content .Modelpera {
  padding: 0 23px;
  color: #101928;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.Error-MsgIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 16px auto 22px;
  background: rgba(224, 18, 18, 0.06);
  border: 1px solid rgba(224, 18, 18, 0.1);
  border-radius: 50%;
  padding: 22px;
  width: max-content;
}

.Error-MsgIcon svg {
  width: 42px;
  height: 42px;
}

.Success-MsgIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 16px auto 22px;
  background: rgba(224, 18, 18, 0);
  border: 1px solid rgba(18, 224, 104, 0);
  border-radius: 50%;
  padding: 22px;
  width: max-content;
}

.Success-MsgIcon svg {
  width: 42px;
  height: 42px;
}

/* ContractDraft page css start */
.sectionTitle {
  color: #101928;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.boxInner-title {
  color: #101928;
  font-size: 24px;
  font-weight: 500;
  /* text-transform: capitalize; */
  margin-bottom: 5px;
}

.dateTrack {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

.contractImg {
  margin: 0;
  text-align: left;
  width: 118px;
  height: 118px;
  border: 1px solid #12aa9b;
  border-radius: 8px;
  min-width: 118px;
}

.cardHead {
  margin-bottom: 26px;
}

.contract_leftBox {
  display: flex;
  gap: 20px;
  width: 50%;
}

.contract-list-box {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
}

.contractlabel {
  color: #373f3f;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.contractValue {
  color: #101928;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0;
}

.contract-items-track {
  flex: 0 0 50%;
  margin-bottom: 14px;
}

.contract_rightBox {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contract_block {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.borderBtn {
  color: var(--primary-color);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid var(--primary-color);
  background: #fff;
  min-width: 146px;
  padding: 10px 10px;
}

.borderBtn:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.borderBtn:hover a {
  color: #fff;
  text-decoration: none;
}

.contract-details-box {
  margin: 32px 0px 0;
}

.contract-details-box .boxInner-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}

.propertyData-flex {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.detail-value a {
  font-weight: 500;
  display: block;
  font-size: 15px;
  text-decoration: underline;
}

.tagTrack {
  font-weight: 500;
  display: block;
  font-size: 15px;
  text-decoration: underline;
  color: var(--primary-color);
}

.btnBlock {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.cardBtn {
  border-radius: 8px;
  background-color: var(--primary-color);
  min-width: 84px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  padding: 4px;
  text-align: center;
  border: 1px solid transparent;
}

.cardBtn:hover {
  border: 1px solid var(--primary-color);
  background-color: transparent;
  text-decoration: none;
}

/* ContractDraft page css end */

.modalImg {
  text-align: center;
  padding-top: 0 !important;
}

.manageModal-box .modal-dialog {
  max-width: 1220px;
  margin: auto;
}

.manageModal-box .modal-dialog .modal-content {
  height: auto;
}

.manageBtn {
  border-radius: 8px;
  background-color: var(--primary-color);
  width: 100%;
  color: var(--white-color);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 10px;
  border: 1px solid transparent;
}

.manageBtn:hover {
  color: var(--primary-color);
  background-color: transparent;
  border-color: var(--primary-color);
}

.manageModal-innerBox {
  border-radius: 8px;
  border: 1px solid rgba(18, 170, 155, 0.1);
  background: rgba(18, 170, 155, 0.06);
  height: 100%;
}

.manage-info {
  margin-bottom: 0;
  color: #373f3f;
  font-size: 15px;
  font-weight: 500;
  padding: 15px 13px 25px;
  /* min-height: 200px; */
}

.attachmentList-box {
  border-radius: 8px;
  border: 1px solid rgba(18, 170, 155, 0.1);
  background: rgba(18, 170, 155, 0.06);
  padding: 13px 16px;
  display: flex;
  gap: 5px;
  margin-bottom: 12px;
}

.listItems-number {
  color: #008b8b;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.32px;
}

.listItems-track {
  color: #008b8b;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.32px;
  text-decoration: underline;
}

.attachmentForm .form-control {
  border-radius: 8px;
  border: 1px solid rgba(18, 170, 155, 0.1);
  background: rgba(18, 170, 155, 0.06);
}

.addAttachmentModal .theme-btn {
  min-width: 150px;
  text-align: center;
  justify-content: center;
}

.addAttachmentModal .upload-card label {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  color: #667185;
  font-size: 14px;
  font-weight: 400;
}

.upload-card label .text-center {
  width: 100%;
}

.contractsPage .contract_block {
  display: block;
}

.contractsPage .contractImg {
  width: 100%;
  height: 190px;
  min-width: 100%;
  margin-bottom: 12px;
}

.contractsPage .contract_leftBox {
  display: block;
  width: 100%;
}

.contractImg img {
  height: 100%;
  width: 100%;
  border-radius: 8px;
}

.contractsPage .contractImg img {
  object-fit: fill;
}

.updateDoc-des {
  color: #373f3f;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 22px;
}

.contractsPage .dashboard-cardBox {
  height: auto;
  padding: 22px 28px 26px 28px;
}

.wouldTenants-table .table > tbody tr td {
  font-size: 16px;
  color: #373f3f !important;
  font-weight: 500;
  border-bottom: 1px solid #ededee;
}

.wouldTenants-table .table-responsive {
  max-height: 424px;
}

.wouldTenants-table thead {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(1000px);
}

.stepText {
  color: #373f3f;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 22px;
}

.viewBtn {
  color: #008b8b;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  min-width: 115px;
  padding: 7px;
  border: 1px solid #008b8b;
  border-radius: 8px;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.viewBtn:hover {
  background-color: #008b8b;
  color: var(--white-color);
}

.activate-steps-modal.photoModal .modal-dialog {
  max-width: 928px;
}

.photo-modalTitle {
  color: #101928;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}

.photoModal .modal-dialog .modal-content {
  height: auto;
}

.photoModal .modal-body {
  padding: 28px !important;
}

.photoModal .modal-header {
  padding: 20px 28px 0;
}

.gallery_box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery_box img {
  width: 177px;
  height: 165px;
  border-radius: 8px;
  border: 1px solid rgba(18, 170, 155, 0.1);
}

.modal-backdrop.show {
  opacity: 0.7;
}

.registration-data-modal .modal-dialog {
  max-width: 455px !important;
}

.registration-data-modal .modal-dialog .modal-content {
  height: auto;
}

.modal_icon {
  background: rgba(224, 18, 18, 0.06);
  border: 1px solid rgba(224, 18, 18, 0.1);
  border-radius: 50%;
  height: 88px;
  width: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 20px;
}

.modal-des {
  color: #101928;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

.modal-inner-block {
  text-align: center;
}

.modalMain_box .modal-dialog {
  max-width: 790px;
}

.modal-md-size .modal-dialog {
  max-width: 555px;
}

.form-group {
  margin-bottom: 20px;
}

.modalbtn-Box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modalbtn-Box .theme-btn,
.modalbtn-Box .theme-btn-border {
  flex: 1;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
}

.theme-btn-border:hover {
  background: var(--primary-color);
  color: var(--white-color);
}
.upload-card .theme-btn-border:hover a div {
  color: var(--white-color);
}
.orTag {
  color: #373f3f;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

.deleteInfo {
  color: #101928;
  text-align: center;
  font-size: 19px;
  font-weight: 500;
  text-transform: capitalize;
  max-width: 320px;
  margin: 20px auto 40px;
}

.deleteModal_box .modal-dialog {
  max-width: 450px;
}

.modal-icon {
  display: block;
  text-align: center;
}

.deleteModal_box .modalbtn-Box {
  padding-bottom: 30px;
}

button:disabled,
button[disabled] {
  opacity: 0.4;
  background: var(--primary-color) !important;
  color: #fff !important;
}

.choose-types.radio-buttons {
  display: flex;
  margin: 0 auto 27px;
  max-width: 545px;
  justify-content: space-between;
}

.custom-radio {
  display: block;
}

.custom-radio input {
  display: none;
}

.custom-radio input:checked + .radio-btn {
  border: 2px solid #12aa9b;
}

.radio-btn {
  display: block;
  position: relative;
  text-align: center;
  cursor: pointer;
  border-radius: 20px;
  background: #fff;
  border: 2px solid transparent;
  box-shadow: 0px 4px 24px 0px rgba(38, 45, 118, 0.04);
  width: 232px;
  padding: 12px 25px 24px;
}

.custom-radio input:checked + .radio-btn span {
  color: var(--theme-color);
}

.hobbies-icon img {
  height: 82px;
  width: 82px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.modal-user-title {
  color: #373f3f;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

.modal-userName {
  color: #373f3f;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.modal-userEmail {
  color: #373f3f;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}

.shareBtn {
  min-width: 189px;
}

.modal-des {
  color: #121212;
  font-size: 14px;
  font-weight: 500;
  max-width: 1133px;
}

.manageModal_row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.manageInner_box {
  flex: 1;
}

.address-block {
  max-width: 250px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
  margin-bottom: 0;
}

.theme-btn-border:hover svg path {
  stroke: #fff;
}

.theme-btn-border:hover .upload-doc-text {
  color: #fff;
}

/* user dashboard css start */
.searchBox {
  position: relative;
  margin-bottom: 32px;
}

.searchIcon {
  position: absolute;
  top: 12px;
  left: 17px;
}

.searchText {
  position: absolute;
  top: 14px;
  right: 28px;
  color: rgba(55, 63, 63, 0.3);
  font-size: 16px;
  font-weight: 500;
}

.searchBox .form-control {
  border-radius: 16px;
  border: 1px solid #ededee;
  background: #fff;
  box-shadow: 0px 4px 24px 0px rgba(38, 45, 118, 0.08);
  padding: 10px 50px;
}

.card_box {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 4px 24px 0px rgba(38, 45, 118, 0.08);
  padding: 18px 20px;
}

.card_title {
  color: #101928;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cardSub_title {
  color: #101928;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card_iconFlex {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cardIcon_box {
  border-radius: 12px;
  border: 5px solid rgba(18, 170, 155, 0.08);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.06) inset;
  border-radius: 12px;
  background: #fff;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cardStatus_number {
  color: #008b8b;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}

.innerCardMain {
  display: flex;
  gap: 20px;
}

.innerCardMain .dashboard-cardBox {
  flex: 1;
}

.cardDate {
  color: #008b8b;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}

.cardDes {
  color: #373f3f;
  font-size: 14px;
  font-weight: 400;
  margin: 6px 0;
}

.security_notification_block .card_title {
  margin: 18px 0 10px;
}

.security_notification_block .details-info-box {
  margin: 0;
  padding: 5px 10px 5px 5px;
  border-radius: 8px;
  border: 1px solid rgba(18, 170, 155, 0.14);
  background: #fff;
  margin-bottom: 10px;
}

.security_notification_block .details-info-box:last-child {
  margin-bottom: 0;
}

.infoIcon_box {
  width: 40px;
  height: 40px;
  display: flex;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}

.infoIcon_box.green {
  background: rgba(18, 170, 155, 0.06);
}

.infoIcon_box.red {
  background: rgba(217, 4, 41, 0.06);
}

.infoIcon_box.yellow {
  background: rgba(177, 134, 44, 0.06);
}

.security_notification_block .detail-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #373f3f;
  font-size: 16px;
  font-weight: 500;
}

.security_notification_block .detail-value {
  color: #008b8b;
}

.row-gap {
  --bs-gutter-y: 20px;
}

/* .inputBlock .verify-text {
  top: 16px !important;
} */
/* user dashboard css end */

.mainInfo-box .details-info-box:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.add-contracts-modal.max-712 {
  max-width: 712px;
  width: 100%;
}

.add-contracts-modal.max-712 .modal-title {
  color: #101928;
}
.searchSelectInput .css-13cymwt-control,
.searchSelectInput .css-t3ipsp-control {
  min-height: 50px;
  color: var(--black-color);
  font-size: 15px;
  background-color: transparent;
  border: 1px solid var(--primary-color);
  box-shadow: none;
}
.searchSelectInput .css-t3ipsp-control:hover {
  border-color: var(--primary-color);
}
.searchSelectInput .css-13cymwt-control:hover {
  border-color: var(--primary-color);
}
.searchSelectInput .css-1dimb5e-singleValue {
  color: var(--black-color);
}
.searchSelectInput .css-tr4s17-option {
  background-color: #008989;
}
.searchSelectInput .css-tj5bde-Svg {
  color: #343a40;
}
.searchSelectInput .form-select {
  /* padding: 3px; */
}
.searchSelectInput .form-select svg {
  color: #343a40a3;
}
.searchSelectInput span.css-1u9des2-indicatorSeparator {
  display: none;
}

/* Hide spinner arrows in Chrome, Safari, Edge, and Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide spinner arrows in Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* Withdrawal Reason modal css start */
.description_block {
  border-radius: 8px;
  background: rgba(18, 170, 155, 0.08);
  padding: 14px 18px;
  display: flex;
  gap: 6px;
  margin-bottom: 42px;
}
.noteText {
  color: #373f3f;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}
.checkBox_block {
  border-radius: 8px;
  background: rgba(18, 170, 155, 0.08);
  padding: 14px 18px;
  margin-bottom: 20px;
}
.custom_radio [type="radio"]:checked + label,
.custom_radio [type="radio"]:not(:checked) + label {
  color: #373f3f;
}
.textArea_block textarea {
  border: 1px solid #008b8b;
  padding: 14px 18px;
  color: #373f3f;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  width: 100%;
}
/* Withdrawal Reason modal css end */

.multipleDocUpload_block {
  width: fit-content;
  height: auto;
  background-color: transparent;
  max-width: unset;
  max-height: fit-content;
}
.borderBottom_track:not(:last-child) {
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.logOut_btn_track {
  background-color: #942320;
  border: none;
  border-radius: 8px;
  color: #fff;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 600;
}
.logOut_btn_track:hover {
  color: #fff;
  background-color: rgb(118 28 26 / 50%);
}

/* report   */
.report-card {
  border-radius: 20px;
  border: 1px solid #12aa9b;
  background: #fff;
  box-shadow: 0px 4px 24px 2px rgba(38, 45, 118, 0.08);
}
.report-title {
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(92deg, #008b8b -1.93%, #12aa9b 107.77%);
  padding: 30px 0;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.44px;
  margin-bottom: 26px;
}
.report-list {
  margin-bottom: 0;
  list-style: none;
  padding: 0 24px 24px;
}
.report-list-items {
  display: flex;
  gap: 8px;
  color: #373f3f;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.32px;
  border-bottom: 1px solid rgba(0, 139, 139, 0.2);
  padding-bottom: 15px;
  margin-bottom: 16px;
}
.report-list-items svg {
  min-width: 18px;
  position: relative;
  top: 4px;
}
.report-list-items:last-child {
  margin-bottom: 0;
}
.row_gap {
  --bs-gutter-y: 15px;
}
.img-box {
  text-align: center;
}

.pagination-footer {
  margin-top: 30px;
}
.pagination-footer .theme-btn {
  padding: 13px 57px;
}
.flex-head {
  display: flex;
  justify-content: space-between;
}

.pagination-text {
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 20px;
  color: #009090;
}
.dots {
  display: flex;
  justify-content: left;
  gap: 6px;
}
.dot {
  width: 10px;
  height: 8px;
  border-radius: 50%;
  background-color: #80cdd1;
  opacity: 0.6;
}
.dot.active {
  width: 24px;
  border-radius: 10px;
  background-color: #009090;
  opacity: 1;
}
.table-main-box {
  border: 0;
  box-shadow: unset;
}
.table-main-box table th:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.table-main-box {
  border-radius: 8px;
}
.contract_table table th:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.table-main-box tbody tr:not(:last-child) td {
  border-bottom: 1px solid #ededee !important;
}
.table-main-box table tr:last-child td:first-child,
.contract_table table tr:last-child td:last-child {
  border-bottom-left-radius: 0;
}
.closeBtn-box {
  top: 23px;
}
.notificationList-modal {
  margin-bottom: 10px;
}

.noti-list-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  border: 1px solid rgba(18, 170, 155, 0.1);
  background: rgba(18, 170, 155, 0.06);
  padding: 12px;
  margin-bottom: 10px;
}
.noti-list-box:last-child {
  margin-bottom: 0;
}
.noti-left-box {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 220px;
}
.noti-user-img {
  margin: 0;
  width: 52px;
  min-width: 52px;
  height: 52px;
  border-radius: 50%;
}
.noti-title {
  color: #101928;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 5px;
}
.noti-subTitle {
  color: #008b8b;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}

.notiDescription-track {
  color: #373f3f;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 0;
}

.detail-value button {
  background-color: transparent;
  border: 0;
}
.No-Convertations {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.form-group:has(+ button.verify-text) .form-control {
  padding-right: 70px;
}
