html {
  scroll-behavior: smooth;
}
@font-face {
  font-family: myfont;
  src: url("../fonts/URW\ DIN\ Arabic\ Medium.ttf");
}
:root {
  --secondColor: rgb(191 211 231);
  --main-bg: #f5f5f5;
  --danger: rgb(241 79 79);
  --orange: rgb(255 183 43);
  --sec-main: rgb(128 209 206);
  --main: #2ac0eb;
  --gray: #918e8e;
  --darkgray: #5a5757;
  --color-white: #fff;
}
body {
  direction: rtl;
  text-align: right;
  font-family: "myfont", sans-serif;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  border-radius: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #ddd;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  background: var(--main);
  border-radius: 5px;
}
/* general classes */
.color-main {
  color: var(--main) !important;
}
.bg-main {
  background-color: var(--main-bg) !important;
}
.bg-blue {
  background-color: var(--main) !important;
}
.color-white {
  color: var(--color-white) !important;
}
.color-orange {
  color: var(--orange) !important;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.m-top-20 {
  margin: 20px 0;
}
a,
a:hover {
  text-decoration: none;
}
a {
  color: var(--gray);
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: var(--main);
}
.up:hover {
  -webkit-box-shadow: inset 0 -4.25em 0 0 var(--color-white);
  box-shadow: inset 0 -4.25em 0 0 var(--color-white);
  color: var(--main) !important;
}
.up2:hover {
  -webkit-box-shadow: inset 0 -4.25em 0 0 var(--main);
  box-shadow: inset 0 -4.25em 0 0 var(--main);
  color: var(--color-white) !important;
}
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.main-btn {
  display: block;
  text-align: center;
  min-width: 160px;
  padding: 10px 0;
  background-color: var(--main);
  color: var(--color-white);
  border: 1px solid transparent;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}
.main-btn.lg {
  width: 220px;
}
.main-btn.xl {
  width: 280px;
}
.main-btn.sm {
  width: 66px;
  min-width: 66px;
  padding: 6px 0;
}
.main-btn2 {
  display: block;
  text-align: center;
  width: 140px;
  padding: 10px 0;
  background-color: transparent;
  color: var(--main);
  border: 1px solid var(--main);
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  z-index: 99999999;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(114deg, #2ac0eb 0.8%, #8bdd28 180.88%);
}
.loader-img {
  width: 150px;
}
.waveform {
  display: inline-flex;
  height: 4em;
  width: 4em;
  gap: 4px;
  align-items: center;
}

.main-pagination .pagination {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

    .main-pagination .pagination .page-item {
        margin: 0 5px; /* Adjust the margin as needed */
    }

    .main-pagination .pagination .page-link {
        display: flex; /* Use flexbox for alignment */
        align-items: center; /* Center text vertically */
        justify-content: center; /* Center text horizontally */
        width: 36px; /* Adjust the size as needed */
        height: 36px; /* Adjust the size as needed */
        line-height: 36px; /* Ensure line height matches height */
        border-radius: 50%; /* Makes the button circular */
        background-color: #2ac0eb; /* Main color */
        color: white; /* Text color */
        text-decoration: none;
        font-size: 16px; /* Adjust text size as needed */
    }

        .main-pagination .pagination .page-link:hover {
            background-color: #84d226; /* Hover color */
        }

    .main-pagination .pagination .page-item.active .page-link {
        background-color: #84d226; /* Active page color */
        border: 1px solid #84d226; /* Optional border color for active page */
        color: white; /* Text color for active page */
    }

.wave-bar {
  width: 100%;
  height: 10%;
  background-color: #efefef;
  border-radius: 100px;
  animation: waves 300ms linear infinite alternate;
}

.wave-bar:nth-child(2) {
  animation-delay: 100ms;
}
.wave-bar:nth-child(3) {
  animation-delay: 200ms;
}
.wave-bar:nth-child(4) {
  animation-delay: 120ms;
}
.wave-bar:nth-child(5) {
  animation-delay: 70ms;
}
.wave-bar:nth-child(6) {
  animation-delay: 200ms;
}
.wave-bar:nth-child(7) {
  animation-delay: 20ms;
}

@keyframes waves {
  from {
    height: 10%;
  }
  to {
    height: 100%;
  }
}

/* start navbar */
.navBar .container {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 10px;
}
.navBar {
  background-color: #fff;
  box-shadow: 0px 1px 4px 1px rgb(0 0 0 / 5%);
}
.hidden-div {
  min-width: 140px;
}
.bg-green {
  background-color: #84d226;
}
.bg-green:hover {
  color: #84d226 !important;
}
.authbody {
  background: linear-gradient(114deg, #2ac0eb 0.8%, #8bdd28 180.88%);
  min-height: calc(100vh - 89px);
  padding: 30px 0;
}
.auth-contain {
  border: 5px solid #86dce5;
  border-radius: 5px;
}
.gray-col {
  color: var(--gray) !important;
}
.flex-group-me {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.right-login {
  background-color: var(--color-white);
  padding: 70px 0;
  min-height: calc(100vh - 165px);
  height: 100%;
  display: grid;
  place-items: center;
}
.main-input {
  width: 100%;
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 14px;
  font-size: 14px;
}
.main-input.login-input {
  padding-right: 40px;
}
.main-input::placeholder {
  color: var(--gray);
  transition: all 0.3s ease;
  font-size: 13px;
}
.main-textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  resize: none;
}
.main-textarea:focus {
  outline-color: var(--main);
}
.main-textarea::placeholder {
  color: var(--gray);
  transition: all 0.3s ease;
  font-size: 13px;
}
.main-textarea:focus::placeholder {
  opacity: 0;
}
.main-input.contact::placeholder {
  color: #b3adad;
  transition: all 0.3s ease;
  font-size: 13px;
}
.contact-color {
  color: #b3adad;
}
.main-input:focus {
  outline-color: var(--main);
}
.main-input:focus::placeholder {
  opacity: 0;
}
.main-input-cont {
  position: relative;
}
.form-login {
  width: 100%;
  padding: 0px 42px;
}
.abs-login {
  color: var(--main);
  position: absolute;
  top: 13px;
  right: 12px;
}
.abs-login-left {
  color: var(--gray);
  position: absolute;
  top: 13px;
  left: 12px;
  font-size: 15px;
}
.font14 {
  font-size: 14px;
}
.dont-have a {
  color: #84d226;
}
.green-col {
  color: #84d226;
}
a.gray-col {
  color: var(--gray) !important ;
}
.left-login {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.img-login-under {
  width: 240px;
  height: 200px;
  object-fit: contain;
}
.abs-left-login {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 200px;
  object-fit: contain;
}
.abs-login-left.check-setting-ic {
  cursor: pointer;
}
.abs-top-right-img {
  position: absolute;
  top: 0;
  right: 0;
}
.abs-top-right-img img {
  width: 140px;
}
.right-login {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.upload-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--main);
  text-align: center;
  width: 130px;
  height: 130px;
  padding: 5px;
  font-size: 14px;
  border-radius: 12px;
  border: 3px solid #e8e8e8;
  background-color: #f5f5f5;
  position: relative;
}
.imgProfile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  border-radius: 12px;
}
.img-show {
  opacity: 1;
  background: #fff;
}
.info-defer .upload-img {
  width: 100%;
  height: 254px;
  border: 6px solid #e8e8e8;
}
.info-defer .fa-image {
  font-size: 32px;
}
.code-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
  gap: 20px;
  direction: ltr;
}
.code {
  caret-color: var(--orange);
  border-radius: 5px;
  font-size: 15px;
  height: 50px;
  width: 50px;
  border: 1px solid #eee;
  margin: 1%;
  text-align: center;
  font-weight: 300;
  -moz-appearance: textfield;
  border: 1px solid #ddd;
  transition: all 0.3s ease-in-out;
  outline: none;
}
.code:focus {
  border: 1px solid var(--main);
}
.flex-bet-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trans-button {
  background: transparent;
  border: none;
}
.activate-acount {
  box-shadow: 0px 1px 4px 1px rgb(0 0 0 / 5%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 12px;
  border-radius: 5px;
  gap: 8px;
}
.done-activeted {
  width: 100%;
  padding: 14px 6px;
  background-color: #84d226;
  color: var(--color-white);
  text-align: center;
  border-radius: 6px;
  font-size: 15px;
}
.form-login > h5 {
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
.form-login > h5::after {
  content: "";
  position: absolute;
  top: 2px;
  right: -15px;
  width: 2px;
  height: 25px;
  background-color: #84d226;
}
/***************** SiderBar ******************/
/* sidebar */

.sidebar {
  position: fixed;
  top: 0;
  width: 300px;
  padding-top: 40px;
  height: 100vh;
  box-shadow: 0 0 1px #f0ecec;
  transition: all 0.8s cubic-bezier(0.68, -0.3, 0.265, 1.3);
  z-index: 1010;
  box-shadow: 0px 1px 4px 1px rgb(0 0 0 / 5%);
  background-color: var(--color-white);
}

.sidebar .close {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--main);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  cursor: pointer;
  display: none;
}
@media (max-width: 991px) {
  .sidebar .close {
    display: flex;
  }
}

.sidebar .content .logo {
  flex-shrink: 0;
}

.sidebar .content .logo img {
  max-height: 110px;
}

.sidebar .links {
  padding: 0px 10px 10px 10px;
  height: calc(100vh - 220px);
  overflow-y: auto;
}

.sidebar .links::-webkit-scrollbar {
  width: 4px;
  max-height: 10%;
  height: 10%;
}

.sidebar .links::-webkit-scrollbar-thumb {
  background-color: var(--main);
  border-radius: 25px;
}

.sidebar .links::-webkit-scrollbar-track {
  border-radius: 25px;
  background-color: #f9f9f9;
  max-height: 10%;
  height: 10%;
  width: 9px;
  max-width: 9px;
}

.sidebar .links > li > a {
  padding: 5px 10px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #000;
  background: transparent;
  transition: all 0.2s ease;
  position: relative;
  /* z-index: 1; */
}
.sidebar .links > li > a:hover {
  color: var(--color-white);
}
.sidebar .links > li > a:hover .icon-co,
.sidebar .links > li > a.active .icon-co {
  background-color: #f5f5f5;
}

.sidebar .links > li > a > .icon-co {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  width: 35px;
  height: 35px;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.sidebar .links > li > a > .icon-co img {
  max-width: 22px;
}

.sidebar .links > li > a.active {
  color: var(--color-white);
}
.col-spe.active img {
  filter: grayscale(100%) brightness(45%) sepia(65%) hue-rotate(180deg)
    saturate(1000%) contrast(0.8);
  transition: all 0.4s ease-in-out;
}
a.active img {
  /* filter: grayscale(100%) brightness(45%) sepia(65%) hue-rotate(180deg)
    saturate(1000%) contrast(0.8); */
  transition: all 0.4s ease-in-out;
}
.item-click.active img {
  filter: grayscale(100%) brightness(45%) sepia(65%) hue-rotate(180deg)
    saturate(1000%) contrast(0.8);
  transition: all 0.4s ease-in-out;
}
.spe-link-spe.active .icon-co img {
  filter: grayscale(100%) brightness(45%) sepia(65%) hue-rotate(180deg)
    saturate(1000%) contrast(0.8);
  transition: all 0.4s ease-in-out;
}
.sidebar .links > li > a.active:hover {
  color: var(--color-white);
}

.sidebar .links > li > a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: var(--main);
  border-radius: 5px;
  transition: all 0.4s ease;
}

.sidebar .links > li > a:hover::before {
  width: 100%;
}
.sidebar .links > li > a.active::before {
  width: 100%;
}

.sidebar .links > li > a > .icon-right {
  margin-right: auto;
  font-weight: 600;
  font-size: 13px;
}

.sidebar .links .collapse-content {
  overflow: hidden;
  padding: 8px 15px;
  position: relative;
  display: none;
}

.sidebar .links .collapse-content .coll {
  padding: 10px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sec-color);
  font-size: 15px;
  border-radius: 10px;
  margin-bottom: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.sidebar .links .collapse-content .coll::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  background-color: #f0f0f0;
  transition: all 0.3s ease;
}

.sidebar .links .collapse-content .coll:hover::after {
  width: 100%;
}

.sidebar .links .collapse-content .coll.active {
  background-color: #f0f0f0;
}

.sidebar .links .collapse-content .coll img {
  max-width: 18px;
  /* object-fit: cover; */
}

.sidebar .links .collapse-content .coll .icon-right {
  margin-right: auto;
  font-size: 12px;
}

.sidebar.active-side {
  transform: translateX(330px);
  overflow: hidden;
}

/********************* Navbar *********************/
.navbar-me {
  width: calc(100% - 300px);
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(-300px);
  padding: 14px 0;
  transition: all 0.8s cubic-bezier(0.68, -0.3, 0.265, 1.3);
  z-index: 1000;
  box-shadow: 0px 1px 4px 1px rgb(0 0 0 / 6%);
  background-color: var(--color-white);
}

.navbar-me .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-me .content .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: #f9f9f9;
  cursor: pointer;
  transition: all 0.3s ease;
  /* pointer-events: none;
  opacity: 0; */
}

.navbar-me .content .left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar-me .left .not {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--main);
  position: relative;
  border-radius: 10px;
  background: transparent;
  position: relative;
  color: var(--main);
  font-size: 20px;
}

.navbar-me .left .not .number {
  position: absolute;
  top: -7px;
  right: -4px;
  background-color: #84d226;
  width: 22px;
  height: 22px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
}

.navbar-me .content .left .account {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.navbar-me .left .account .profile-img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.navbar-me.active-nav {
  transform: translateX(0px);
  width: calc(100% - 0px);
}
.dot-name {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #0cb70c;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .navbar-me .content .menu {
    opacity: 1;
    pointer-events: auto;
  }
}

/******************** Main Section ********************/

.main-sec {
  transform: translateX(-300px);
  width: calc(100% - 300px);
  padding-top: 100px;
  transition: all 0.8s cubic-bezier(0.68, -0.3, 0.265, 1.3);
  /* transition: all 0.3s ease-in-out; */
  padding-bottom: 50px;
}
.main-sec.active-main {
  width: calc(100%);
  transform: translateX(0px);
}
@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(330px);
    overflow: hidden;
  }

  .sidebar.active-side {
    transform: translateX(0px);
    width: 300px;
  }

  .navbar-me {
    transform: translateX(0px);
    width: calc(100% - 0px);
  }

  .main-sec {
    width: calc(100%);
    transform: translateX(0px);
  }
}

@media screen and (max-width: 330px) {
  .sidebar.active-side {
    width: 300px;
  }
}
.flex-sm-gap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.flex-info-visitor {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background-color: #fbfbfb;
  margin: 20px;
  border-radius: 8px;
}
.visitor-img {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 6px;
}
.dark-title {
  color: #686464;
}
.lang-img {
  width: 40px;
}
.home-single-box {
  padding: 15px;
  box-shadow: 0px 1px 4px 1px rgb(0 0 0 / 6%);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.img-cont-box {
  background-color: #e6f6d4;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-cont-box img {
  width: 20px;
}
.main-num {
  font-size: 22px;
  color: var(--main);
  font-weight: bold;
  letter-spacing: 1px;
}
.abs-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
}
.bg-dang {
  background-color: #fad7d7;
}
.bg-semi-dang {
  background-color: #f7e5d4;
}
.bg-semi-blue {
  background-color: #d6d6e1;
}
.btn-search {
  width: 350px;
  padding-left: 80px;
  padding-right: 40px;
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}
.btn-search:focus {
  outline-color: var(--main);
}
.form-ajax-search {
  position: relative;
}
.abs-search {
  position: absolute;
  top: 14px;
  right: 12px;
  z-index: 2;
  color: var(--gray);
}
.abs-btn-search {
  position: absolute;
  top: 5px;
  left: 6px;
  z-index: 2;
}
.box-table {
  padding: 15px 0;
  box-shadow: 0px 1px 4px 1px rgb(0 0 0 / 6%);
  border-radius: 8px;
}
.over-table {
  overflow: auto;
  font-size: 14px !important;
  margin-top: 25px;
}
.table th {
  background-color: #f6f6f6 !important;
  color: #696767;
}
.table td,
.table th {
  padding: 1.6rem !important;
  border-bottom: none;
  vertical-align: middle;
  /* min-width: 130px; */
}
.table tr:not(:last-child) td {
  border-bottom: 1px solid #ddd;
}
.table tbody {
  border-radius: 6px;
}
.eye-link {
  padding: 12px;
  background-color: #d4f2fb;
  border-radius: 5px;
  color: var(--main);
}
.logo-nav {
  width: 120px;
}
@media (max-width: 767px) {
  .hidden-div {
    display: none;
  }
  .form-login {
    padding: 0px 8px;
  }
  .abs-top-right-img img {
    width: 80px;
  }
  .logo-nav {
    width: 90px;
  }
}
.pointer-none {
  pointer-events: none;
}
.pointer-click {
  cursor: pointer;
}
.flex-top-modal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #ddd;
}
.modal-body-main {
  padding: 20px;
}
.bg-gray {
  background-color: #bbb;
}
.bg-gray:hover {
  color: #bbb !important;
}

.bg-red {
  background-color: #e43535 !important;
}
.bg-red:hover {
  color: #e43535 !important;
}
*:disabled {
  cursor: not-allowed !important;
}
.checks {
  padding: 12px;
  border-radius: 7px;
  font-size: 15px;
  border: 1px solid #ddd;
}
.flex-bet-checks {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex-sm-gap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-check {
  accent-color: #23a1c5;
  width: 16px;
  height: 16px;
}
.checks label {
  color: var(--gray);
  font-size: 15px;
}
.decoration-underline {
  text-decoration: underline;
}
.shadow-box {
  padding: 15px 0;
  box-shadow: 0px 1px 4px 1px rgb(0 0 0 / 6%);
  border-radius: 8px;
}
.flex-bet-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 20px;
  color: var(--darkgray);
  font-size: 15px;
}
.flex-bet-info:nth-child(odd) {
  background-color: #f8f8f8;
}

.info-value {
  min-width: 75px;
}
.default-title {
  font-weight: bold;
  padding: 0px 20px;
}
.pays-all {
  padding: 10px 20px;
  align-items: baseline;
  position: relative;
}
.green-dot {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 3px solid #84d226;
  background-color: var(--color-white);
  transform: translateY(5px);
}
.pays-all:nth-child(odd) {
  background-color: #f8f8f8;
}
.pays-all:nth-child(odd) .green-dot {
  background-color: #84d226;
}
.pays-all::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 28px;
  width: 2px;
  height: calc(100% - 18px);
  background-color: #84d226;
  z-index: 2;
}
.pays-all:last-child:after {
  display: none;
}
.dark-gray {
  color: var(--darkgray);
}
.labelradio {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--darkgray);
}
.yes-wrap {
  flex-wrap: wrap;
}
.modal-pad-row {
  padding: 10px 20px;
  font-size: 15px;
}
.gapchange {
  gap: 30px;
}
.left-gap {
  margin-left: 14px;
}
.radiomain {
  width: 17px;
  height: 17px;
  accent-color: #23a1c5;
}
.all-style {
  border-radius: 10px;
  background-color: #d4f2fb;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  justify-content: space-between;
  color: var(--main);
  font-size: 15px;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 560px;
    margin: 1.75rem auto;
  }
}
.danger-img {
  max-width: 102px;
}
.add-invoice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--main);
  color: var(--main);
  border-radius: 6px;
}
.invoice-status {
  padding: 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 14px;
}
.invoice-status .sm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.invoice-status.pending {
  background-color: #f7e5d4;
  color: #d67b27;
}
.invoice-status.pending .sm-dot {
  background-color: #d67b27;
}
.invoice-status.paid {
  background-color: #e6f6d4;
  color: #84d226;
}

.notActive {
    background-color: #f8d7da; /* Light red background */
    color: #721c24; /* Dark red text */
}

.invoice-status.paid .sm-dot {
  background-color: #84d226;
}
.notactive .sm-dot {
    color:red;
}
.invoice-status.unpaid {
  background-color: #fad7d7;
  color: #e43535;
}
.invoice-status.unpaid .sm-dot {
  background-color: #e43535;
}
.top-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--darkgray);
  font-size: 15px;
}
.top-links a {
  text-decoration: underline;
}
.main-label {
  margin-bottom: 8px;
  font-size: 15px;
}
.main-title {
  padding: 14px;
  border-bottom: 1px solid #ddd;
}
.main-box-dashboard {
  border: 1px solid #ddd;
  border-radius: 10px;
}
.body-main-box {
  padding: 15px;
}
.danger-title {
  padding: 15px 25px;
  color: #e43535;
  position: relative;
  font-size: 15px;
  text-decoration: underline;
}
.danger-title::before {
  content: "";
  width: 8px;
  height: 2px;
  background-color: #e43535;
  position: absolute;
  right: 8px;
  top: 27px;
}
.red-color {
  color: #e43535;
}
.blue-color {
  color: #646790;
}
.green-color {
  color: #84d226;
}
.abs-with-label {
  top: 43px;
  font-size: 14px;
}
.abs-with-label-main {
  top: 45px;
  font-size: 15px;
}
.big-gap {
  gap: 50px;
}
.small-btn {
  width: 50px;
  height: 50px;
  background-color: #84d226;
  color: var(--color-white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  flex-shrink: 0;
  cursor: pointer;
}
.small-btn:hover {
  color: #84d226 !important;
}
.bg-red:hover {
  color: #e43535 !important;
}
.table {
  margin-bottom: 0;
}
.body-padding {
  padding: 20px;
  border-top: 1px solid #ddd;
}

.show-invoice-btn {
  width: 42px;
  height: 42px;
  border-radius: 5px;
  background-color: #f7e5d4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.show-details-btn {
  width: 42px;
  height: 42px;
  border-radius: 5px;
  background-color: #d4f2fb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2ac0eb;
  cursor: pointer;
}
.print-btn-main {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background-color: #e6f6d4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9cdb52;
  cursor: pointer;
  font-size: 14px;
}
.font15 {
  font-size: 15px;
}
.reciever-person {
  padding: 0px 20px;
}
.align-start {
  align-items: flex-start;
}
.download-btn {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background-color: #d4f2fb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2ac0eb;
  cursor: pointer;
  font-size: 14px;
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1230px;
  }
}
/* @media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1000px;
  }
} */
.main-input-cont > .dark-title {
  font-size: 15px;
}
.lang-img {
  width: 40px;
}
.table-invoice .table th {
  background-color: #84d226 !important;
  color: var(--color-white) !important;
  font-weight: normal;
  padding: 15px !important;
}
.table-invoice .table th {
  padding: 15px !important;
}
.table-invoice .table th:first-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.table-invoice .table th:last-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.agree-check {
  background-color: #f8f8f8;
  padding: 8px 20px;
  font-size: 15px;
}
.green-check {
  accent-color: #5d9f0d;
}
.icon-top-links {
  font-size: 14px !important;
}
.show-details-btn {
  position: relative;
}
.my-drop-now {
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 1;
  /* padding: 6px 14px; */
  border: 1px solid #ddd;
  background-color: var(--color-white);
  border-radius: 7px;
  opacity: 0;
  transition: 0.3s all cubic-bezier(0, 0.11, 0.4, 1.29);
  visibility: hidden;
  transform: scale(0);
  pointer-events: none;
  width: 200px;
}
.my-drop-now.show-drop {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: scale(1);
}
.my-drop-now2 {
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 9999;
  /* padding: 6px 14px; */
  border: 1px solid #ddd;
  background-color: var(--color-white);
  border-radius: 7px;
  opacity: 0;
  transition: 0.3s all cubic-bezier(0, 0.11, 0.4, 1.29);
  visibility: hidden;
  transform: scale(0);
  pointer-events: none;
  width: 370px;
  max-height: 350px;
  overflow: auto;
}
.default-cur {
  cursor: default !important;
}
.my-drop-now2.show-drop {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: scale(1);
}
.flex-in-drop {
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: none;
  outline: none;
  width: 100%;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  color: var(--gray);
  font-size: 14px;
}
.my-drop-now2 .flex-in-drop {
  gap: 12px;
}
.flex-in-drop:hover {
  background-color: #f5f5f5;
  color: var(--gray) !important;
}
.my-drop-now li:last-child .flex-in-drop {
  border-bottom: none;
}
.my-drop-now2 li:last-child .flex-in-drop {
  border-bottom: none;
}
.color-black {
  color: #000;
}
.noti-i-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid var(--main);
  background-color: var(--color-white);
  color: var(--main) !important;
  transform: translateY(10px);
  flex-shrink: 0;
  font-size: 18px;
}
.main-pagination {
  padding: 14px;
  border-top: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.flex-add-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--main);
  font-size: 14px;
  cursor: pointer;
}
.decoration-under {
  text-decoration: underline;
}
.flex-input-type {
  display: flex;
  gap: 18px;
}
.unvisible {
  opacity: 0;
}
/*switch*/
.switch {
  width: 50px;
  cursor: pointer;
}
.switch .main-div {
  width: 50px;
  padding: 5px 6px;
  background-color: #ddd;
  border-radius: 25px;
}
.switch .main-div span {
  display: block;
  width: 15px;
  height: 15px;
  background-color: #e43535;
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translateX(0px);
}

.switch-con input:checked ~ .switch .main-div span {
  transform: translateX(-22px);
  background-color: #0cb70c;
}
.img-modal-cont {
  width: 120px;
  height: 120px;
  border-radius: 10px;
}
.img-container-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background-color: #f5f5f5;
}
.add-inputs-added {
  padding: 10px 20px;
  border-top: 6px solid #f5f5f5;
}
.main-btn:disabled {
  background-color: #d4f2fb;
  color: var(--main);
}
.close-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: #fad7d7;
  color: #e43535;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  cursor: pointer;
}
.invoice-img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
}
/* tabs */
.manage-account-tabs .nav-tabs {
  border-bottom: none;
  border: 1px solid #ddd;
  padding: 0 !important;
  border-radius: 12px;
  overflow: hidden;
}
.manage-account-tabs .nav-link {
  padding: 18px 10px !important;
  color: var(--gray) !important;
  width: 100%;
  text-align: center;
  border: none !important;
  width: 100%;
  font-size: 15px;
}
.manage-account-tabs li {
  width: 20%;
}
.manage-account-tabs .nav-link:hover {
  border: none !important;
}
.manage-account-tabs .nav-link.active {
  background-color: #84d226 !important;
  color: var(--color-white) !important;
  border-radius: 8px !important;
}
.manage-account-tabs .nav-pills {
  width: 100% !important;
}
.flex-input-defer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 4px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  position: relative;
}
.label-defer {
  flex-shrink: 0;
  position: relative;
  color: var(--gray);
  font-size: 14px;
}
.label-defer::after {
  content: "";
  background-color: var(--gray);
  position: absolute;
  width: 1px;
  height: 20px;
  top: 2px;
  left: -10px;
  z-index: 2;
}
.defer-input {
  border: none;
  outline: none;
  height: 42px;
  width: 100%;
  font-size: 14px;
  color: var(--gray);
  caret-color: #0cb70c;
}
.defer-textarea {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  color: var(--gray);
  caret-color: #0cb70c;
}
.defer-input::placeholder {
  font-size: 13px;
  transition: all 0.3s ease-in-out;
  color: var(--gray);
}
.defer-input:focus::placeholder {
  opacity: 0;
}
.defer-textarea::placeholder {
  font-size: 13px;
  transition: all 0.3s ease-in-out;
  color: var(--gray);
}
.defer-textarea:focus::placeholder {
  opacity: 0;
}
.flex-end-main {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.flex-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}
.main-check.bigger {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.8;
}
.main-check.bigger:checked + label {
  color: #000 !important;
}
.box-role {
  padding: 16px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.no-shadow {
  box-shadow: none;
}
.no-border {
  border: none;
}
.no-shadow .info-value {
  min-width: 50%;
}
/* select 2*/
.no-search .select2-search {
  display: none;
}
.select2-selection .select2-selection--single {
  height: 42px;
  border: none !important;
}
.select2-container {
  width: 100% !important;
}
.select2-selection__arrow {
  display: none;
}
.select2-container--default .select2-selection--single {
  height: 42px;
  border: none !important;
}
.abs-select {
  position: absolute;
  top: 17px;
  left: 16px;
  z-index: 2;
  font-size: 13px;
  color: var(--gray);
  pointer-events: none;
  z-index: 99999999;
}
.select2-results__option--selectable:hover {
  background-color: #84d226 !important;
}
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #84d226 !important;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 44px;
  color: var(--gray);
  font-size: 13px;
  padding-right: 12px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  padding-right: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #ddd;
  direction: rtl;
  padding: 6px 12px;
}
.select2-search--dropdown {
  padding: 0px 10px;
  border: none;
}
[type="search"] {
  outline-offset: 0px;
}
.select2-container--default
  .select2-search--dropdown
  .select2-search__field:focus {
  outline-color: #0cb70c;
}
.inner-box-pad {
  padding: 10px 0;
  font-size: 15px;
}
p.inner-box-pad {
  margin-bottom: 0 !important;
}
.no-align {
  align-items: baseline;
}
.conditions {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #f5f5f5;
}
.works-files {
  width: 170px;
  height: 170px;
}
.works-files .fa-upload {
  font-size: 21px;
}
.uploaded__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.uploaded__area .file_ {
  width: 90px;
  height: 90px;
  border-radius: 5px;
  margin: 7px;
  position: relative;
}

.uploaded__area .file_ img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.uploaded__area .file_ video {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.uploaded__area .file_ .docs_file {
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #eee;
  color: crimson;
  font-size: 30px;
  position: relative;
  display: block;
}

.uploaded__area .file_ .play-button {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  cursor: pointer;
}

.uploaded__area .file_ .play-button img {
  width: 100%;
  height: 100%;
}
.uploaded__area .file_ .remove_media {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff0303;
  color: #fff;
  position: absolute;
  left: 4px;
  top: 4px;
  -webkit-transition: 0.3s all cubic-bezier(0, 0.11, 0.4, 1.29);
  transition: 0.3s all cubic-bezier(0, 0.11, 0.4, 1.29);
}
.uploaded__area .file_ .remove_media:hover {
  background-color: #fff;
  color: crimson;
}
.font10 {
  font-size: 10px !important;
}
.flex-coulomn {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.docs_file span.font10 {
  word-break: break-all;
}
.select2-container--open .select2-dropdown {
  z-index: 2000;
}
.relative-parent {
  position: relative;
}
.bg-trans {
  border: 1px solid var(--main);
  color: var(--main);
  border-radius: 6px;
  background: transparent;
}
.user-shadow {
  box-shadow: none;
}
.user-shadow .info-value {
  min-width: 50%;
}
.change-ph {
  color: var(--gray);
  width: fit-content;
}
.non-visible {
  pointer-events: none;
  opacity: 0;
}
.margin-auto {
  margin-inline: auto;
}
.no-brder-bottom {
  border-bottom: none !important;
}
.font-bold {
  font-weight: bold;
}
.btn-search.nofilter {
  padding-right: 12px;
}
.wid-small {
  width: 250px;
}
.attr-main {
  padding: 10px 18px;
  border-radius: 6px;
  background-color: #31346b;
  display: inline-block;
  color: var(--color-white);
}
.showwith-multi-attr {
  display: none;
}
.showattrcheck:has(.main-check:checked) + .showwith-multi-attr {
  display: block;
}
.name-pro {
  transform: translateX(-50%);
}
.product-img-main {
  width: 140px;
  height: 140px;
  border-radius: 10px;
}
.clamp2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.flex-big-gap{
  display: flex;
  align-items: center;
  gap: 50px;
}
.img-pay-cont img{
  width: 48px;
  height: 36px;
  object-fit: contain;
}
.requiredInputLabel {
  position: relative;
  width: fit-content;
}
.requiredInputLabel::after {
  content: "*";
  position: absolute;
  color: red;
  left: -14px;
}
.directionLtr{
  direction: ltr;
}
/*********************print Table*********/
@media print {
  body * {
    visibility: hidden;
    -webkit-print-color-adjust: exact;
  }
  .print-table,
  .print-table *:not(.hide-with-print *) {
    visibility: visible !important;

    color: black;
  }
  .print-table {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .hide-with-print {
    display: none;
  }
  @page {
    margin-top: 0;
    margin-bottom: 0;
  }
  body {
    padding-top: 1rem;
  }
}
.menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
.visible-mobile {
  display: none !important;
}
/* media */
@media (max-width: 1024px) {
  .flex-sm-gap,
  .flex-bet-main {
    flex-wrap: wrap;
    gap: 10px;
  }
  .visible-mobile {
    display: flex !important;
  }
  .manage-account-tabs li{
    width: 33%;
  }
}
@media (max-width: 767px) {
  .flex-sm-gap,
  .flex-bet-main {
    flex-wrap: wrap;
    gap: 10px;
  }
  .disable-mobile{
    display: none;
  }
  .btn-search{
    width: 310px;
  }
  .main-btn{
    min-width: 140px;
  }
  .my-drop-now2{
    width: 300px;
  }
  .manage-account-tabs li{
    width: 50%;
  }
  .top-links {
    flex-wrap: wrap;
  }
}



.clamp-para {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 40px;
}
.flex-bet-info:has(.clamp-para) .info-name {
    width: 50%;
    flex-shrink: 0;
}
input::-ms-reveal,
input::-ms-clear {
    display: none;
}
.main-input-cont:has(#inputPassword) .abs-login-left{
    top:21px;
}

.main-input-cont:has(#inputPassword) .abs-login {
    top: 18px;
}

.para-height{
    max-height: 90px;
    overflow-y: auto;
    width: 50%

}
.no-shrink{
    flex-shrink: 0
}