.main_btn {
  min-width: 80px;
  height: 40px;
  background-color: var(--light-green) !important;
  color: white !important;
  width: fit-content;
  text-align: center;
  align-content: center;
  border-radius: 8px;
  transition: .3s all;
  display: block;
  font-size: 13px;
  margin-top: 0px;

  position: relative;
  transition: .5s;
  overflow: hidden;
  z-index: 5;
  padding-inline: 10px;
}


.main-error:hover,
.main_btn1:hover,
.main_btn:hover {
  background-color: #fff !important;
  /* color: var(--light-green); */
  color: white;
}


.main_btn1 {
  min-width: 80px;
  height: 40px;
  background-color: white !important;
  color: var(--light-green);
  width: fit-content;
  text-align: center;
  align-content: center;
  border-radius: 8px;
  transition: .3s all;
  display: block;
  font-size: 13px;
  margin-top: 0px;
  border: 1px solid var(--light-green);
  position: relative;
  transition: .5s;
  overflow: hidden;
  z-index: 5;
  padding-inline: 10px;
}


.main-error {
  min-width: 80px;
  height: 40px;
  background-color: #EE2E2E !important;
  color: white !important;
  width: fit-content;
  text-align: center;
  align-content: center;
  border-radius: 8px;
  transition: .3s all;
  display: block;
  font-size: 13px;
  margin-top: 0px;

  position: relative;
  transition: .5s;
  overflow: hidden;
  z-index: 5;
}


/*! Hover-Button */

.main-error::before,
.main-error::after,
.main_btn1::before,
.main_btn1::after,
.main_btn::before,
.main_btn::after {
  content: '';
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  transform: skew(15deg);
  z-index: -1;
  transition: .5s;
}

.main_btn1::before,
.main_btn::before {
  left: -0.625rem;
  background-color: var(--light-green);
}


.main-error::before {
  left: -0.625rem;
  background-color: #FE3232;

}


.main-error::after {

  right: -0.625rem;
  background-color: #d61919;
}

.main_btn1::after,
.main_btn::after {
  right: -0.625rem;
  background-color: #048504;
}


.main_btn-dark{
  background-color: var(--dark-green) !important;
  color: var(--color-white) !important;
  font-size: 14px;
  font-family: "font_bold";
  border: 1px solid var(--color-primary);
}



.main-error:hover::before,
.main-error:hover::after,
.main_btn1:hover::before,
.main_btn1:hover::after,
.main_btn:hover::before,
.main_btn:hover::after {
  width: 60%;
  left: -5px;
}

.ads{
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid #713C03 ;
  margin-bottom: 10px;
  background: radial-gradient(50% 257.84% at 50% 50%, #713C03 0%, #C36B0B 100%);
  overflow: hidden;
  width: 100%;
  position: relative;
  min-height: 60px;

}

.ads:hover p,
.ads:focus-within p{
  animation-play-state: paused;
}

.ads p{
position: absolute;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  animation: ads-text 18s linear infinite;
  white-space: nowrap;
  width: 100%;
  text-align: center;
}
@keyframes ads-text{
  0%{
    transform: translateX(-100%);
  }
  100%{
    transform: translateX(100%);
  }
}


.ads.stop p{
  animation: none;
  white-space: normal;
  word-break: break-word;
}
.ads-actions{
  display: flex;
  gap: 10px;

}



.ads-actions .ads-btn{

  background: radial-gradient(50% 257.84% at 50% 50%, #a55807 0%, #633605 100%);
  border: 1px solid #713C03 ;
}

.ads-actions .ads-btn:hover{
  background-color: #fff !important;
  color: radial-gradient(50% 257.84% at 50% 50%, #713c03c4 0%, #c36a0bb2 100%);

  border: 1px solid rgb(255, 255, 255) !important;
}

.ads-actions .ads-btn:hover::before,
.ads-actions .ads-btn:hover::after{
  width: 0%;
}

.ads-actions .ads-btn1{
  background-color: #fff !important;
  border: 1px solid  #C36B0B !important;
  color: #C36B0B !important;
}

.ads-actions .ads-btn1:hover{
  border: 1px solid #fff !important;
  background-color: #C36B0B !important;
  color: #fff !important;
}

.ads-actions .ads-btn1:hover::before,
.ads-actions .ads-btn1:hover::after{
  width: 0%;
}

/*! ************************ */








.main-app {
  width: 100%;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  position: relative;
  top: 0;
}

.side-bar-container {
  width: 280px;
  padding: 15px 15px 15px 0;
  height: 100vh;
  position: fixed;
}

.side-bar {
  background-color: var(--dark-green);
  border-right: 1px solid var(--color-border);
  border: 1px solid transparent;
  /* height: 100vh; */
  height: 100%;
  /* width: 280px; */
  width: 260px;
  border-radius: 0px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s linear;
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 16px;
}

.bar-header {
  height: 100px;
  display: flex;
  justify-content: start;
  align-items: center;
  padding-right: 8px;
}


.bar-header .logo a,
.bar-header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}


.logo a img {
  transition: none;
  max-width: 100%;
  height: auto;
}

.bar-header .logo a img {
  width: 100%;
  height: 100%;
}

.lisks-side-bar {
  display: flex;
  gap: 10px;
  /* margin: 45px 0 0 0; */
  height: 100%;
  overflow: auto;
  /* padding: 10px 0; */
}

.lisks-side-bar > ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 90%;
  align-items: center;
  margin: 10px auto;

}

.lisks-side-bar ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  width: auto;
  width: 100%;
  transition: all 0.3s linear;
  position: relative;

}

.lisks-side-bar ul li.num-notification::before{
  content: attr(data-num);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: var(--light-green);
  color: var(--color-white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--light-green);
  padding: 14px;
  border-radius: 50%;
}

.lisks-side-bar ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  /* font-size: 19px; */
  font-size: 15px;
  width: 100%;
  /* height: 55px; */
  height: 45px;
  padding: 0 25px;
  border-radius: 15px;
  transition: all 0.3s linear;
  position: relative;
}

/* .lisks-side-bar ul li a:hover,
.lisks-side-bar ul li a.active {
  background-color: var(--color-white);
  color: var(--color-primary);
} */
.lisks-side-bar ul li a img {
  /* width: 29px;
  height: 29px; */
  width: 20px;
  height: 20px;
  transition: all 0.3s linear;
}



/* .lisks-side-bar ul li a::after{
  position: absolute;
  content: "";
  width: 30px;
  height: 100%;
  right: -50px;
  border-radius: 11px 0 0 11px;
  background-color: #fff;
  transition: .3s all ease-in;
}


.lisks-side-bar ul li a:hover::after{
  right: -20px;
} */




/* .lisks-side-bar ul li a:hover img,
.lisks-side-bar ul li a.active img {
  transform: scale(1.1);
  filter: brightness(0) saturate(100%) invert(100%);
  transition: all 0.3s linear;
}


.lisks-side-bar ul li a:hover svg path,
 .lisks-side-bar ul li a.active svg path{
  fill: #fff;
  fill-opacity: 1;
 } */
.nav-toggle-dots,
.nav-toggle {
  position: absolute;
  left: 15px;
  top: 40px;
  cursor: pointer;
  transform: scale(-1);
}

.nav-toggle-dots.minimize,
.nav-toggle.minimize {
  position: relative;
  top: unset;
  transform: scale(1);
}

.nav-toggle-dots ul,
.nav-toggle ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-dots ul li,
.nav-toggle ul li {
  width: 30px;
  height: 3px;
  background-color: var(--color-white);
  display: block;
  border-radius: 25px;
  transition: all 0.3s linear;
}

.nav-toggle ul li:nth-child(1),
.nav-toggle ul li:nth-child(3) {
  width: 10px;
}

.nav-toggle ul li:nth-child(2) {
  width: 30px;
}

.nav-toggle:hover ul li {
  width: 30px;
}

.nav-toggle-dots ul li {
  width: 5px;
  height: 5px;
}

.top-bar.top-minimize .nav-toggle-dots ul li,
.top-bar.top-minimize .nav-toggle ul li {
  background-color: #fff;
}

.sidebar-bottom {
  height: 10%;
}

.sidebar-bottom .image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 45%;
}

.sidebar-bottom .image img:last-child {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  width: 100%;
  height: 40px;
}
.main-app .side-bar .min-logo{
  display: none;
}


.side-bar-dropdown{
    width: 100%;
}



.side-bar-dropdown button{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  border: none;
  padding: 0 25px;
  height: 45px;
  color: var(--color-gray);
}


.side-bar-dropdown button:hover{
  background-color: var(--light-green);
}


.side-bar-dropdown .dropdown-menu{
  width: 100%;
}




.side-bar-dropdown .dropdown-menu a:hover{
  background-color: var(--light-green);
  color: var(--color-white);

}




.side-bar-dropdown .dropdown-menu a{

  color: var(--dark-green) !important;
  background-color: #fff;
  margin-top: 5px;
}


.side-bar-dropdown  ul.dropdown-menu{
  padding: 0;
  background-color: transparent;
}

.side-bar-dropdown .dropdown-menu li{
  background-color: transparent;
  opacity: 1;
}
.content .title {
  display: flex;
  align-items: center;
  font-size: 20px;
  gap: 5px;
  padding: 30px 0 20px 0;
  color: var(--dark-green);
}


.lisks-side-bar ul li a {
  color: var(--color-gray);
}


.lisks-side-bar ul li:hover a {
    color: var(--color-white);
}

.lisks-side-bar ul li.active {
  background-color: var(--light-green);
  border-radius: 10px;
  opacity: 1;
  color: var(--color-white);
}

.lisks-side-bar ul li.active a {
  color: var(--color-white);
}

.lisks-side-bar ul li.active svg  path{
  fill: var(--color-white);
}


.lisks-side-bar ul li.minimize-logo {
  opacity: 1;
  display: none;
}

.left-part .info,
.page-title-container .info,
.top-content .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}


.left-part .info .image,
.page-title-container .info .image,
.top-content .info .image {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}


.page-title-container .info .image img {

  height: 40px;
  width: 40px;
  overflow: hidden;
  border-radius: 8px;
}

.left-part .info .caption h5,
.page-title-container .info .caption h5,
.top-content .info .image .caption h5 {
  font-size: 14px;
  font-weight: 600;
}

.left-part .info .image .caption p,
.page-title-container .info .image .caption p,
.top-content .info .image .caption p {
  font-size: 10px;
}




.page-title-container .info .icons,
.top-content .info .icons {
  display: flex;
  gap: 5px;
}


.page-title-container .info .icons button.notification {
border-radius: 5px;
  padding: 0;
}



.page-title-container .info .icons img,
.top-content .info .icons img {
  width: 40px;
  height: 40px;
  background-color: var(--light-green);
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
}


/*
.index-page .page-title-container .info {

  display: none;
} */


.page-title-container .info .main_btn img{
  width: 20px;
  height: 20px;
}


.index-page .page-title-container  .info-container{
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-content .title {
  color: var(--dark-green);
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.page-title-container {
/* <<<<<<< HEAD */
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
/* ======= */

  min-height: 70px;
  display: flex;
  justify-content: space-between;
/* >>>>>>> f186c48b4104bcc0fa63f8c1e4885398b2a3aca7 */
  flex-wrap: wrap;
  gap: 10px;
}

.page-title {
  display: flex;
  justify-content: center;
}

.page-title h2 {
  color: var(--dark-green);

  font-size: 25px;
  font-weight: 700;
  align-content: center;
}

/*! ************************ Section Train ************************ */
.container.train {
  overflow: hidden;
  position: relative;
  margin-block: 10px;
}

.train {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.train-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 10px 20px 70px;
}

.train-text h5 {
  font-size: 20px;
}

.train-text h5 span {
  font-size: 14px;
}

.train-text p{
      font-size: 14px;
      color:white;
}
.row-train {
  color: #fff;
  padding: 20px;
  padding-bottom: 0;
  border-radius: 16px;
  overflow: hidden;
  background-image: url("../assets/images/train-bg.svg");
  background-size: cover;
  width: 100%;
  /* animation: move-gradient 6s linear infinite; */
}

/*! *********************************************************** */
.row-train .images {
  position: relative;
  width: 104%;
  display: block;
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: end;
  overflow: hidden;
}

.img-train {
  position: relative;
  z-index: 9;
  overflow: hidden;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-top: 50px;
}

.row-train .train button {
  color: #fff;
  background-color: var(--light-green);
  padding: 6px 30px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: .5s;
}

.row-train .train button:hover {
  background-color: transparent;
  border-color: var(--light-green);
}

/* .container-train::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 20px;
    width: 40px;
    height: 60px;
    transform: rotate(16deg);
    background-color: #107B00;
    z-index: 9;
} */

/* قضبان القطر */
.row-train .tow-bars {
  width: 2000px;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  height: 40px;
  z-index: -1;
  animation: slide 3s linear infinite;
}

/* محطة القطر */
.row-train .images .towing-station {
  position: absolute;
  right: -150px;
  height: 115px;
  bottom: 0;
  transform: translateX(70px);
  z-index: -1;
  animation: show-station 3s linear infinite;
}

.row-train .images .img-welcome {
  right: -50px;
}

.row-train .images .train {
  position: relative;
  left: 0%;
  bottom: 5px;
  z-index: 5;
}



@keyframes slide {
  0% {
    transform: translateX(0);
  }

  /* 50%, 70% {
    transform: translateX(-230px);
  } */

  100% {
    transform: translateX(-200px);
  }
}

@keyframes show-station {
  0% {
    transform: translateX(0);
  }

  /* 50%, 70% {
    transform: translateX(-280px);
  } */

  100% {
    transform: translateX(-460px);
  }
}

.lamp-container {
  position: relative;
  display: inline-block;
}

.lamp {
  width: 300px;
  display: block;
}

.light {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 88%;
  right: 24%;
  transform: translate(-50%, -50%);
  z-index: 5;
  background: radial-gradient(circle, #fff7b1 0%, #ffeb3b 40%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  /* animation: glowPulse 1.5s ease-in-out infinite; */
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0;
    filter: brightness(1);
  }

  50% {
    opacity: 1;
    filter: brightness(2);
  }
}

/*! ************************ Cards ************************ */
.cards-statistics .card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
}



/* >>>>>>> f9f90fdc60604fdb82988491b3cf0b4a72e67b67 */
*/ .cards-statistics .card .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5px;
}

.cards-statistics .card .text h5 {
  font-size: 14px;
}

.cards-statistics .card .text span:last-child {
  font-size: 10px;
}



/*! Cards */
.cards-statistics .card {
  color: var(--color-white);
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.cards-statistics .card .text {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 10px 10px 10px 0
}
.cards-statistics .card.green {
  background-color: #1CB300;
}
.cards-statistics .card.purple {
  background-color: var(--dark-purple);
}
.cards-statistics .card.red {
  background-color: var(--dark-red);
}
.cards-statistics .card.orange {
  background-color: var(--dark-orange);
}
.cards-statistics .card.yellow {
  background-color: #607488;
}
.cards-statistics .card.blue {
  background-color: rgba(0, 152, 254, 1);
}
.cards-statistics .card.gray {
  background-color: rgba(137, 165, 193, 1);
}
.cards-statistics .card.gray-2 {
  background-color: rgba(175, 175, 175, 1);
}
.cards-statistics .card .image {
  position: relative;
  width: 20%;
  height: 120px;
}
.cards-statistics .card .image::before {
  content: "";
  position: absolute;
  background-image: url("../assets/images/card-Bg-1.svg");
  width: 100px;
  height: 100%;
  left: -10px;
}



.cards-statistics.support-cards .card .image::before {
  background-image: url("../assets/images/card-Bg-support.svg");
  left: 10px;
  width: 52px;
}


.cards-statistics .card .image img {
  position: absolute;
  left: 0;
}
/*? after */
.cards-statistics .card.green .image::after {
  content: "";
  position: absolute;
  top: -15px;
  left: 25px;
  width: 20px;
  height: 125%;
  background-image: url("../assets/images/card-4.svg");
  background-repeat: repeat-y;
  background-size: contain;
  background-position: 0 0;
  z-index: 0;
  transform: rotate(150deg);
  /* animation: bgMoveUp 20s linear infinite; */
}
.cards-statistics .card.green:hover .image::after {
  animation: bgMoveUp 20s linear infinite;
}
.cards-statistics .card.purple .image::after {
  content: "";
  position: absolute;
  top: -15px;
  left: 25px;
  width: 20px;
  height: 125%;
  background-image: url("../assets/images/card-2.svg");
  background-repeat: repeat-y;
  background-size: contain;
  background-position: 0 0;
  z-index: 0;
  transform: rotate(150deg);
  /* animation: bgMoveDown 20s linear infinite; */
}
.cards-statistics .card.purple:hover .image::after {
  animation: bgMoveDown 20s linear infinite;
}
.cards-statistics .card.red .image::after {
  content: "";
  position: absolute;
  top: -15px;
  left: 25px;
  width: 20px;
  height: 125%;
  background-image: url("../assets/images/card-1.svg");
  background-repeat: repeat-y;
  background-size: contain;
  background-position: 0 0;
  z-index: 0;
  transform: rotate(150deg);
  /* animation: bgMoveUp 20s linear infinite; */
}
.cards-statistics .card.red:hover .image::after {
  animation: bgMoveUp 20s linear infinite;
}
.cards-statistics .card.orange .image::after {
  content: "";
  position: absolute;
  top: -15px;
  left: 25px;
  width: 20px;
  height: 125%;
  background-image: url("../assets/images/card-3.svg");
  background-repeat: repeat-y;
  background-size: contain;
  background-position: 0 0;
  z-index: 0;
  transform: rotate(150deg);
  /* animation: bgMoveDown 20s linear infinite; */
}
.cards-statistics .card.orange:hover .image::after {
  animation: bgMoveDown 20s linear infinite;
}
.cards-statistics .card.yellow .image::after {
  content: "";
  position: absolute;
  top: -15px;
  left: 25px;
  width: 20px;
  height: 125%;
  background-image: url("../assets/images/card-yellow.svg");
  background-repeat: repeat-y;
  background-size: contain;
  background-position: 0 0;
  z-index: 0;
  transform: rotate(150deg);
  /* animation: bgMoveUp 20s linear infinite; */
}
.cards-statistics .card.yellow:hover .image::after {
  animation: bgMoveDown 20s linear infinite;
}
.cards-statistics .card.blue .image::after {
  content: "";
  position: absolute;
  top: -15px;
  left: 25px;
  width: 20px;
  height: 125%;
  background-image: url("../assets/images/card-blue.svg");
  background-repeat: repeat-y;
  background-size: contain;
  background-position: 0 0;
  z-index: 0;
  transform: rotate(150deg);
  /* animation: bgMoveDown 20s linear infinite; */
}
.cards-statistics .card.blue:hover .image::after {
  animation: bgMoveUp 20s linear infinite;
}
.cards-statistics .card.gray .image::after {
  content: "";
  position: absolute;
  top: -15px;
  left: 25px;
  width: 20px;
  height: 125%;
  background-image: url("../assets/images/card-gray.svg");
  background-repeat: repeat-y;
  background-size: contain;
  background-position: 0 0;
  z-index: 0;
  transform: rotate(150deg);
  /* animation: bgMoveUp 20s linear infinite; */
}
.cards-statistics .card.gray:hover .image::after {
  animation: bgMoveUp 20s linear infinite;
}
.cards-statistics .card.gray-2 .image::after {
  content: "";
  position: absolute;
  top: -15px;
  left: 25px;
  width: 20px;
  height: 125%;
  background-image: url("../assets/images/card-gray2.svg");
  background-repeat: repeat-y;
  background-size: contain;
  background-position: 0 0;
  z-index: 0;
  transform: rotate(150deg);
  /* animation: bgMoveDown 20s linear infinite; */
}


.cards-statistics.support-cards .card .image::after {
  transform: rotate(180deg);
}
.cards-statistics .card.gray-2:hover .image::after {
  animation: bgMoveDown 20s linear infinite;
}

.card-statistic-panner{
  background: linear-gradient(90deg, rgba(3, 52, 0, 1) 0%, rgba(14, 115, 0, 1) 50%, rgba(3, 52, 0, 1) 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  height: 100%;
}

.card-statistic-panner-text{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}


.card-statistic-panner-text h5,
.card-statistic-panner-text span{
  color: var(--color-white);
}
.card-statistic-panner-image{

  height: 90%;
}

@keyframes bgMoveUp {
  from {
      background-position: 0 0;
  }
  to {
      background-position: 0 2000px;
  }
}

@keyframes bgMoveDown {
  from {
      background-position: 0 0;
  }
  to {
      background-position: 0 -2000px;
  }
}




/*! Chart-JS */
.container-chart {
  overflow-x: auto;
}
.chart-box {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 25px; */
}
.chart-header-1 {
  margin-bottom: 75px;
}
.chart-header-2 {
  margin-bottom: 30px;
}

.chart-header h3 {
  color: #444;
  font-size: 16px;
  margin: 0;
}

.chart-box #dropdownBtn-month,
.chart-box #dropdownBtn-year {
  background-color: var(--color-white);
  color: var(--light-green);
  border: 1px solid var(--light-green);
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
#dropdownBtn-month:hover,
#dropdownBtn-year:hover {
  box-shadow: none;
  background-color: var(--light-green);
  color: var(--color-white);
}

.row.chart {
  padding-block: 16px;
}
.chart-box .chart-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-top: 30px; */
}
.chart-box .chart-buttons button {
  background-color: #eee;
  color: var(--text-gray);
  padding: 10px;
}
.chart-box .chart-buttons button.active {
  background-color: var(--light-green);
  color: var(--color-white);
}
.chart-box .chart-buttons button:nth-child(1) {
  border-radius: 0 5px 5px 0;
}
.chart-box .chart-buttons button:nth-child(2) {
  border-radius: 5px 0 0 5px;
}

.chart-box .dropdown-list {
  width: 150px;
  padding: 0;
}
.chart-box .dropdown-list li a {
  padding: 5px 10px;
}

/* .cards .card .image {
    background-image: url("../assets/images/card-Bg-1.svg");
    background-size: cover;
} */

/*! Sidebar */
.lisks-side-bar {
  overflow-y: auto;
  overflow-x: hidden;
}

.lisks-side-bar::-webkit-scrollbar {
  width: 7px;
  background: transparent;
}

.lisks-side-bar::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 10px;
  display: none;
}

.lisks-side-bar.show-scroll::-webkit-scrollbar-thumb {
  display: block;
}

/* إخفاء الخلفية */
.lisks-side-bar::-webkit-scrollbar-track {
  background: transparent;
}

/* إخفاء الأسهم */
.lisks-side-bar::-webkit-scrollbar-button {
  display: none;
}


/*! Table */
/* Table-Head */
.table {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 10px;
  margin-top: 10px;
}

.head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
          gap: 15px;

}

.head h3 {
  color: #606060;
}

.head form input {
  padding: 7px;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 300px;
}

.head form button {
  background-color: var(--light-green);
  color: var(--color-white);
}

/* Table-Contant */
.table-container {
  flex: 1;
  overflow: auto;
  padding: 20px;
}

.table-container table {
  width: 100%;
  min-width: 900px;
  /* table-layout: fixed; */
  border-collapse: collapse;
}

.table-container th,
.table-container td {
  border: 1px solid #ddd;
  /* padding: 10px; */
  text-align: center;
}

.table-container td {
  word-wrap: break-word;
  white-space: normal;
  border: none;
  min-width: 35px;
  max-width: 300px;
  text-align: start;
  padding: 7px;
}

.table-container tr {
  border-bottom: 1px solid #ddd;
}

table {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

table thead tr {
  background-color: rgb(14, 115, 0) !important;
  padding: 10px;
  color: var(--color-white) !important;
}

table tr td {
  padding: 10px 0;
  text-align: center;
  vertical-align: middle;
}

.table-container thead td {
  padding: 10px;
  font-size: 15px;
  white-space: nowrap;
}


 table tbody span.status {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 15px;
  text-align: center;
  white-space: nowrap;
}


body.dark .pending, body.dark .off-work{
  border-color: var(--dark-purple);
  background-color: transparent;
}


.pending ,
.off-work{
  /* قيد المراجعة */
  font-size: 12px;
  border: 1px solid transparent;
  background-color: var(--light-purple);
  color: var(--dark-purple);
  text-align: center;
  padding: 5px 10px;
  border-radius: 15px;

}


body.dark .matched{
  border-color:  #95b9dd;
  background-color: transparent;
  color: #95b9dd;
}
.matched {
  /* تم التطابق */
  padding: 5px 10px;
  font-size: 12px;
  border: 1px solid transparent;
  border-radius: 15px;
  background-color:rgba(237, 241, 246, 1);
  color: var(--text-dark-gray);
  text-align: center;
}


body.dark .closed{
  border-color:  var(--dark-orange);
  background-color: transparent;
}
.closed {
  /* تم التطابق */
  padding: 5px 10px;
  font-size: 12px;
  border: 1px solid transparent;
  border-radius: 15px;
  background-color: var(--light-orange);
  color: var(--dark-orange);
  text-align: center;
}



body.dark .done{
  border-color:   #1CAE01;
  background-color: transparent;
}
.done {
  /* تم التسليم */
  padding: 5px 10px;
  font-size: 12px;
  border: 1px solid transparent;
  border-radius: 15px;
  background-color: #C7FFC5;
  color: #1CAE01;
  text-align: center;
}


body.dark .found{
  border-color: rgba(0, 152, 254, 1);
  background-color: transparent;
}
.found {
  /* تم التسليم */
  padding: 5px 10px;
  font-size: 12px;
  border: 1px solid transparent;
  border-radius: 15px;
  background-color: rgba(234, 241, 255, 1);
  color: rgba(0, 152, 254, 1);
  text-align: center;
}



body.dark .deleted{
  border-color: rgb(128, 124, 253);
  background-color: transparent;
}
.deleted {
  /* تم التسليم */
  padding: 5px 10px;
  font-size: 12px;
  border: 1px solid transparent;
  border-radius: 15px;
  background-color: rgba(240, 240, 251, 1);
  color: rgb(128, 124, 253);
  text-align: center;
}


body.dark .transfer{
  border-color:  rgb(233, 105, 233);
  background-color: transparent;
}
.transfer {
  /* تم التسليم */
  padding: 5px 10px;
  font-size: 12px;
  border: 1px solid transparent;
  border-radius: 15px;
  background-color: rgba(255, 235, 255, 1);
  color:rgb(233, 105, 233);
  text-align: center;
}

body.dark .storage{
  border-color:  rgba(115, 115, 115, 1);
  background-color: transparent;
}
.storage {
  /* تم التسليم */
  padding: 5px 10px;
  font-size: 12px;
  border: 1px solid transparent;
  border-radius: 15px;
  background-color:rgba(241, 241, 241, 1);
  color:rgba(115, 115, 115, 1);
  text-align: center;
}


body.dark .expired, body.dark .destroy{
  border-color:  var(--dark-red);
  background-color: transparent;
}
.expired,
.destroy {
  /* مفقود جديد */
  padding: 5px 10px;
  font-size: 12px;
  border: 1px solid transparent;
  border-radius: 15px;
  background-color: var(--light-red);
  color: var(--dark-red);
  text-align: center;
}


/* employee status */

.on-work{
  padding: 5px 10px;
  font-size: 12px;
  border: 1px solid transparent;
  border-radius: 15px;
  background-color: rgba(199, 255, 197, 1);
  color: #1CAE01;
  text-align: center;
}

body.dark .on-work{
  background-color: transparent;
  color: #1CAE01;
  border-color: #1CAE01;
}



table tbody p,
table tbody span {
  /* word-break: break-all; */
  font-size: 13px;
  display: block;
}






table tbody span img:hover {

  cursor: pointer;
  transform: scale(1.3);
}

table tbody tr {
  border-color: #ddd !important;
  transition: .3s;
}

table tbody tr:hover {
  background-color: #ebebebd6;
}

table tbody tr td img {
  transition: .5s;
}

table tbody tr td {
  color: #606060;
}


table tbody tr:first-child .information p{
  top: 50%;
  bottom: unset;
}
/*
table tbody tr td img:hover {
  transform: rotate(360deg);
} */

.left-part-form form {
  display: flex;
/* <<<<<<< HEAD */
  flex-direction: row;
/* ======= */
/* >>>>>>> f186c48b4104bcc0fa63f8c1e4885398b2a3aca7 */
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/*! ************************ Left-Part ************************ */
.left-part {
  /* padding: 20px; */

  width: 25%;
  height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0px;
  left: 0;
  margin-left: 10px;
}

.left-part .image img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.left-part .info {
  display: flex;
  justify-content: space-between;
  align-items: center;

  height: 70px;
}

.left-part .info .image {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.left-part .info .icons img {
  width: 40px;
  height: 40px;
  background-color: var(--light-green);
  border-radius: 5px;
  padding: 10px;
}

.left-part .alerts .boxs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.left-part .alerts .box:not(:last-child) {
  border-bottom: 1px solid #EAEAEA;
  padding-block: 10px;
}

.left-part .alerts .box {

  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 5px;
  transition: .3s all;
  padding: 4px;
}


.left-part .alerts .box:hover {


  background-color: #ebebebd6;
}

.left-part .alerts .box .image img {
  width: 30px;
  height: 30px;
  background-color: #FFEDE6;
  padding: 5px;
  border-radius: 5px;
}


.left-part .alerts .box.worning .image img {
  background-color: #FFEDED;
}

.left-part .alerts .box.success .image img {
  background-color: #C7FFC5;
}

.left-part .alerts .box .image .text h5 {
  font-size: 14px;
  color: #7F7F7F;
  font-weight: 600;
}

.left-part .alerts .box .image .text p {
  font-size: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /* -webkit-line-clamp: 1; */
  /* عدد الأسطر المسموح بها */
  overflow: hidden;
  text-overflow: ellipsis;
}

.left-part .alerts .box .time span {
  font-size: 8px;

  white-space: nowrap;
}

.left-part .register-today {
  background-color: var(--color-White);
  border: 1px solid #3bd13247;
  border-radius: 15px;
  margin-block: 20px;
  padding: 10px;
}

.left-part .register-today .body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.left-part.responsive .register-today .body {
  justify-content: space-evenly;
}

.left-part .register-today .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}

.left-part .register-today .head h5,
.left-part .register-today .body .item h5 {
  font-size: 14px;
}

.left-part .register-today .head p {
  color: var(--light-green);
  font-size: 10px;
}

.left-part .register-today .body .item {
  border: 1px solid var(--light-green);
  border-radius: 10px;
  /* width: 150px;
    height: 100px; */
  padding: 20px 10px;
  background: linear-gradient(135deg, #8af08500, #b8f3c861);
  width: 48%;
}

.left-part .register-today .body .item h4 {
  font-size: 20px;
}

.left-part .register-today .body .item .icon img {
  width: 20px;
}

.left-part .register-today .body button {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: #fff;
  background-color: var(--light-green);
}

.left-part .register-today .body button:hover {
  background-color: var(--color-White);
  color: var(--dark-green);
  border: 1px solid var(--dark-green);
}

/*! Responsive */
.left-part {
  transition: .5s;
}

.left-part.responsive {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999999999;
  background-color: #F3F3F3;
  width: 330px;
  display: block;
  border: 1px solid green;
  border-radius: 0px;
  transition: .5s;
  overflow-y: auto;
  margin: 0;
  height: 100vh;
}

.left-part.responsive::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.left-part .alerts {

  padding: 10px;
  border-radius: 0px;
  overflow-y: auto;
  flex: 1;
}

.left-part.responsive .alerts {
  padding: 20px;
  margin: 0 0 0px 0;
  background-color: var(--color-white);
}

.left-part.responsive .close-icon {
  position: relative;
  font-size: 25px;
  transition: .3s;
}

.left-part.responsive .close-icon:hover {
  color: var(--light-green);
}



.left-part.responsive .alerts .head {

  display: flex;
  justify-content: space-between;
}





.left-part .close-icon {

  display: none;

}


.left-part.responsive .close-icon {
  display: block;
}





.left-part::-webkit-scrollbar {
  display: none;
}



 .left-part .info {

        display: none;
    }

    .left-part {
        left: -100%;
        position: fixed;
    }




.dropdown,
.dropdown-statistics {
  position: relative;
}

#dropdownBtn {
  /* background: linear-gradient(135deg, var(--dark-green), var(--light-green)); */
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 7px 20px;
  transition: all 0.3s ease;
  background-color: var(--light-green);
}

#dropdownBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 8px #3bd132a6;
}

#dropdownBtn span {
  font-size: 10px;
}

.dropdown-list {
  position: absolute;
  top: 103%;
  left: 0;
  background: #fff;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 10px 0;
  overflow: hidden;
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 100;
  border: 1px solid var(--light-green);
}

.dropdown-statistics.active .dropdown-list {
  transform: scaleY(1);
  opacity: 1;
}

.dropdown-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-weight: 500;
  padding: 10px;
  transition: 0.3s;
}

.dropdown-list li a:hover {
  background-color: #f3f3f3;
  color: var(--light-green);
  padding-right: 20px;
}



/* losts page */


.lost-img img {

  width: 34px;
  height: 34px;
  border-radius: 8px;
  overflow: hidden;


}




.filter-table {
  position: relative;
  cursor: pointer;
}


.filter-container {
  position: absolute;
  background-color: #fff;
  box-shadow: -8px 8px 20px 5px #1018281A;
  z-index: -1;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 400px;
  left: 0;
  top: 120%;
  padding: 10px;
  border-radius: 8px;
}


.filter-container.open {
  z-index: 99;
  opacity: 1;
}

.filter-container label {
  color: rgb(112, 112, 112);
  font-size: 14px;
}


.filter-container .select-filter {
  position: relative;
}

.filter-container select {

  border: 1px solid #BDBDBD;
  height: 40px;
  padding: 10px;
  font-size: 14px;
  border-radius: 8px;
  color: #BDBDBD;
  width: 100%;
  cursor: pointer;
}



.select-filter img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.filter-status {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-status label {
  width: fit-content;
  padding: 5px 8px;
  color: #BDBDBD;
  border: 1px solid #BDBDBD;
  display: block;
  border-radius: 8px;
  cursor: pointer;
  transition: .3s all ease-in;
}

.filter-status label:hover {
  background-color: #C7FFC5;
  color: #38D430;
  border-color: transparent;
  transform: scale(1.08);
}

.filter-status input {
  display: none;
}


.filter-status input:checked+label {

  background-color: #C7FFC5;
  color: #38D430;
  border-color: transparent;
}


.filter-actions {
  display: flex;
  gap: 10px;
}

.filter-actions a,
.filter-actions button {

  width: 50%;
}




.filter-container .date-filter{
  display: flex;
  gap: 10px;
  width: 100%;

}

.filter-container .date-filter input{
  width: calc(50% - 5px);
  padding: 10px;
  border: 1px solid #BDBDBD;
  border-radius: 8px;
  color: #BDBDBD;
}

/* lost-details-container */
.lost-detail-case {
  margin: 10px;
}

.lost-details-container {

  background-color: #fff;
  border-radius: 16px;
  padding: 10px;
  margin-bottom: 20px;
}

.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  flex-wrap: wrap;
  gap: 15px;
}


.case-header p {
  font-size: 18px;
  font-weight: 600;
}

.case-header span {
  color: var(--light-green);
}

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


.detail-container .detail-container-row:first-child {
  width: 75%;
}

.detail-container .detail-container-row:last-child {
  flex: 1;
}


.detail-container {

  border-radius: 16px;

  display: flex;
  gap: 10px;
}

.detail-container .details {
  display: flex;
  gap: 15px;
  border: 1px solid #F1F1F1;
  padding: 30px 10px;
  border-radius: 16px;

}


.detail-container .details .lost-img {

  width: 250px;
  height: 250px;
}


.detail-container .details .lost-img img {

  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.detail-container .details .lost-info {
  flex: 1;
  display: flex;
  row-gap: 15px;
  flex-direction: column;
  justify-content: space-between;
}

.detail-container .details .lost-info .row-info {


  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 10px;
}

.detail-container .details .lost-info .row-info .info-item {

  width: calc(100% / 3);
}

.detail-container .details .lost-info .row-info .info-item:last-child {
  flex: auto;
}

.detail-container .details .lost-info .row-info .info-item span {

  white-space: normal;
  overflow-wrap: break-word;
}

.detail-container .details .lost-info .row-info .info-item p {
  color: #BDBDBD;
  font-size: 16px;
}

.detail-container .details .lost-info .row-info .info-item span {

  font-size: 16px;
  color: #707070;
  font-weight: 600;
  /* display: flex;
  gap: 5px; */
  align-items: center;
  white-space: normal;
  overflow-wrap: break-word;

}

/* <<<<<<< HEAD */
/* .detail-container .details .lost-info .row-info .info-item .color { */
/* ======= */
.lost-details-container .color {
/* >>>>>>> f186c48b4104bcc0fa63f8c1e4885398b2a3aca7 */

  width: 16px;
  height: 16px;
  background-color: #C8BF85;
  display: inline-block;
}

.detail-container .lost-qr {

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 16px;
  height: 100%;
}

.detail-container .qr-text {

  display: flex;
  gap: 5px;
}


.detail-container .qr-text p {

  color: #606060;
}


.detail-container .qr-text span {

  color: var(--light-green);
}



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

.checkmark {
  width: 25px;
  height: 25px;
  stroke-width: 3;
  stroke: rgb(255, 255, 255);
  /* Green color for the checkmark */
  stroke-linecap: round;
}

.checkmark-check {
  stroke-dasharray: 40;
  /* Length of the check path */
  stroke-dashoffset: 40;
  /* Starts hidden */
  animation: drawCheck 2s ease-out forwards infinite;
  /* Animation for the checkmark */
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
    /* Fully visible checkmark */
  }
}

.row-colums {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.lost-progress {
  padding: 10px;
  border: 1px solid #F1F1F1;
  border-radius: 16px;
}
.row-colums > .progress-item{
  flex: 1;
}

.lost-progress .progress-item {

  padding: 15px;
  border-radius: 16px;
  border: 1px solid #F1F1F1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.lost-progress .progress-item p {
  font-size: 18px;
  color: #BDBDBD;
  font-weight: 600;
}


.lost-progress .progress-item span {
  font-size: 16px;
}



.lost-progress .progress-item.done {

  background: radial-gradient(circle, #159400 0%, #075300 100%);

  color: white;
}

.lost-progress .progress-item.done.destroy-step {
  background: radial-gradient(circle,rgba(233, 7, 7, 1) 0%, rgba(142, 2, 2, 1) 100%);
}

.lost-progress .progress-item.done p {
  color: white;
}


.lost-progress .progress-bar {

  display: flex;
  justify-content: space-between;
  flex-direction: row;
  width: 70%;
  margin: auto;
  padding: 20px 0;
  position: relative;
}

.lost-progress.closed-lost .row-colums{
  justify-content: center;
}

.lost-progress.closed-lost .progress-item{
  width: 40%;
}
.lost-progress.closed-lost .progress-bar{
  width: 30px;
}

.lost-progress .progress-bar.item{
  width: 80%;
}
.lost-progress .progress-bar::after,
.lost-progress .progress-bar::before {
  content: "";
  position: absolute;
  width: 100%;

  height: 2px;
  background-color: #83898133;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;

}

.lost-progress .progress-bar::after {
  background-color: var(--light-green);
  width: 0%;
}

.lost-progress .progress-bar .step {
  width: 30px;
  height: 30px;
  background-color: white;
  border: 1px solid #38D43080;
  border-radius: 50%;
  position: relative;
  z-index: 10;
}

.lost-progress .progress-bar .step.next::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  background-color: var(--light-green);
  border: 1px solid #38D43080;
}

.lost-progress .progress-bar .step.done.destroy-step {
  background-color: #940000;
  border: 1px solid #94000080;
}
.lost-progress .progress-bar .step.done {

  background-color: var(--light-green);

}


.lost-progress .progress-bar .step.done .checkmark-container {
  display: flex;
}

.lost-progress .progress-bar::after {
  width: 0%;
}

.lost-progress .progress-bar.half::after {
  width: 50%;
}


.lost-progress .progress-bar::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: var(--light-green);
  width: 0%;
  transition: 0.3s;
}

/* 20% */
.lost-progress .progress-bar.progress-20::after {
  width: 0%;
  animation: get50 4s forwards infinite;
}
/* 85% */
.lost-progress .progress-bar.progress-85::after {
  width: 85%;
  animation: get85 4s forwards infinite;
}
/* 90% */
.lost-progress .progress-bar.progress-90::after {
  width: 90%;
  animation: get90 4s forwards infinite;
}
/* 95% */
.lost-progress .progress-bar.progress-95::after {
  width: 95%;
  animation: get95 4s forwards infinite;
}
/* 33.33% */
.lost-progress .progress-bar.progress-33::after {
  width: 33.33%;
  animation: get33 4s forwards infinite;
}

/* 50% */
.lost-progress .progress-bar.progress-20::after,
.lost-progress .progress-bar.progress-50::after {
  width: 0%;
  animation: get50 4s forwards infinite;
}

/* 25% */
.lost-progress .progress-bar.progress-25::after {
  width: 25%;
  animation: get25 4s forwards infinite;
}


/* 40% */
.lost-progress .progress-bar.progress-40::after {
  width: 50%;
  animation: get40 4s forwards infinite;
}

/* 60% */
.lost-progress .progress-bar.progress-60::after {
  width: 75%;
  animation: get75 4s forwards infinite;
}

/* 80% */
.lost-progress .progress-bar.progress-80::after {
  width: 100%;
  animation: get80 4s forwards infinite;
}

/* 75% */
.lost-progress .progress-bar.progress-75::after {
  width: 50%;

  animation: get75 4s forwards infinite;

}



@keyframes get25 {
  0% {
    width: 33.33%;
  }

  100% {
    width: 50%;
  }
}

@keyframes get85 {
  0% {
    width: 85%;
  }

  100% {
    width: 100%;
  }
}

@keyframes get90 {
  0% {
    width: 90%;
  }

  100% {
    width: 100%;
  }
}

@keyframes get95 {
  0% {
    width: 95%;
  }

  100% {
    width: 100%;
  }
}
@keyframes get40 {
  0% {
    width: 25%;
  }

  100% {
    width: 50%;
  }
}

/* 33.33% */
@keyframes get33 {
  0% {
    width: 66.66%;
  }

  100% {
    width: 81.5%;
  }
}


@keyframes get50 {
  0% {
    width: 0%;
  }

  100% {
    width: 25%;
  }
}



@keyframes get75 {
  0% {
    width: 50%;
  }

  100% {
    width: 75%;
  }
}


@keyframes get80 {
  0% {
    width: 75%;
  }

  100% {
    width: 100%;
  }
}

/* 100% */
.lost-progress .progress-bar.progress-100::after {
  width: 100%;
}

.deliver-info {
  display: flex;
  justify-content: space-between;
  padding: 20px 15px;
  flex-wrap: wrap;
  gap: 10px;

}


.deliver-info .info-item p {
  color: #BDBDBD;
  font-size: 14px;
}

.deliver-info .info-item span {
  color: #707070;
  font-size: 16px;
  font-weight: 600;
}

.lost-detail-info .row {
  row-gap: 20px;
}

.lost-detail-info .row .col-lg-6:first-child {
  border-left: 1px solid #F1F1F1;
}


.match-card {

  display: flex;
  border: 1px solid #F1F1F1;
  border-radius: 16px;
}

.match-card .img-container {

  width: 180px;
  height: 180px;
}

.match-card .img-container img {

  width: 100%;
  height: 100%;
  border-radius: 16px;
}


.match-card .info {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* <<<<<<< HEAD */
/* .match-card .info-header { */
/* ======= */
.info-header {
/* >>>>>>> f186c48b4104bcc0fa63f8c1e4885398b2a3aca7 */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* <<<<<<< HEAD */
/* .match-card .info-header p { */
/* ======= */
.info-header p {
/* >>>>>>> f186c48b4104bcc0fa63f8c1e4885398b2a3aca7 */

  font-weight: 600;
}

/* <<<<<<< HEAD */
/* .match-card .info-header p span { */
/* ======= */
.info-header p span {
/* >>>>>>> f186c48b4104bcc0fa63f8c1e4885398b2a3aca7 */

  font-weight: 600;
  color: var(--light-green);
}

.match-card .match-label p {

  color: #fff;
  background: radial-gradient(circle, #159400 0%, #075300 100%);
  padding: 5px 10px;
  border-radius: 8px;
  font-weight: 500;

}

.match-card ul {

  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0;
}

.match-card ul li {

  display: flex;
  gap: 6px;
}

.match-card ul li p {
  color: #707070;
}

.match-card .main_btn {
  width: 100%;
/* <<<<<<< HEAD */
/* ======= */
}


.missing-matches-card {
  border-radius: 16px;
  padding: 10px;
  border: 1px solid #F1F1F1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
}
.missing-matches-card  .number{
  background: radial-gradient(50% 257.84% at 50% 50%, #159400 0%, #075300 100%);
  width: 45px;
  height: 40px;
  padding: 10px 15px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  position: absolute;
  top: 20px;
  right: 0%;
  transform: translate(-50%, -50%);
}



.missing-matches-card .img-container {
  width: 180px;
  height: 180px;
}

.missing-matches-card .img-container img {
  width: 100%;
  height: 100%;
}

.missing-matches-card .info {
  width: 100%;
}

.missing-matches-card .info ul {

  display: flex;
  gap: 10px;
  margin: 10px 0;
  flex-direction: column;
}

.missing-matches-card .info ul li {
  display: flex;
  align-items: start;
  gap: 8px;
}


.missing-actions {

  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.missing-actions a {
  width: calc(100% / 2);

}



.success-matching-model .modal-body,
.success-matching-model .modal-body .header-model {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.success-matching-model .modal-body {
  gap: 30px;
}


.success-matching-model .modal-body p {
  font-size: 18px;
  color: var(--light-green);
  font-weight: 600;

}


.success-matching-model .modal-body p {
  font-size: 16px;
  color: var(--light-green);
}

.success-matching-model .modal-body .header-model {
  width: 70%;
  text-align: center;
}


.success-matching-model .modal-body .header-model img {

  width: 160px;
  height: 160px;
}

.success-matching-model .modal-body .body-model {
  width: 100%;
}


.success-matching-model .modal-body .input-container {

  display: flex;
  flex-direction: column;
  gap: 10px;

}


.modal-content form input,
.success-matching-model .modal-body .input-container input {
  width: 100%;
  height: 40px;
  border: 1px solid #BDBDBD;
  margin-bottom: 15px;
  border-radius: 8px;
  padding: 0 10px;
}


.success-matching-model .modal-footer {
  border: none;
  display: flex;
  justify-content: center;
}

.success-matching-model .modal-footer button {
  min-width: 120px;
}




/* chat */

.chat-container {
  height: calc(100vh - 90px);
  margin-bottom: 0;
  display: flex;
  padding-top: 10PX;
  gap: 10px;
}

.chat-users {
  width: 300px;
  border-radius: 16px;
  background-color: #fff;
  height: 100%;
  overflow: hidden;
}

.chat-users .header {
  padding: 20px 10px;
  background-color: var(--dark-green);
  display: flex;
  gap: 8px;
  height: 100px;
  justify-content: center;
  align-items: center;
}

.chat-users .header a {
  min-width: fit-content;
  padding: 10px;
  width: 40px;
  height: 40px;
  border: none;
}


.chat-users .header a:hover::after{
      width: 80%;

}


.chat-users .header input {
  flex: 1;
  border-radius: 8px;
  padding: 0 8px;
  background-color: transparent;
  border: 1px solid #fff;
  outline: none;
  color: #fff;
  font-size: 14px;
  height: 40px;
}

.chat-users .header input::placeholder {

  color: #cfcfcf;
}

.chat-messages {
  flex: 1;
  border-radius: 16px;
  background-color: #fff;
  height: 100%;
  font-size: 14px;
}


.chat-messages .lobby {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  height: 100%;

}

.chat-messages .lobby.close{
  display: none;
}

.chat-messages .cahtsDetails.close{
  display: none;
}

.chat-messages .lobby p {
  font-size: 18px;
  font-weight: 600;
  color: rgba(0, 50, 0, 1);
}

.chat-messages .lobby span {
  width: 60%;
  text-align: center;
  color: rgba(112, 112, 112, 1);
}

.chat-messages .lobby a {
  padding: 10px;
  align-content: center;
}


.chat-messages .lobby svg {
  transition: .3s all ease-out;
  animation: animate-svg-group 4s 1.1s both infinite;


}



/* svg */
/***************************************************
 * Generated by SVG Artista on 11/23/2025, 10:31:35 AM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 50, 0);
  }
}

@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 50, 0);
  }
}

/* .svg-elem-1 {
  -webkit-animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both infinite;
          animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both ;
} */

/* .svg-elem-2 {
  -webkit-animation: animate-svg-fill-2 1.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both infinite;
          animation: animate-svg-fill-2 1.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both infinite;
}
.svg-elem-3 {
  -webkit-animation: animate-svg-fill-3 1.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both infinite;
          animation: animate-svg-fill-3 1.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both infinite;
}
.svg-elem-4 {
  -webkit-animation: animate-svg-fill-4 1.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both infinite;
          animation: animate-svg-fill-4 0.1.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both infinite;
}
 */


/* .svg-message-group{
  -webkit-animation: animate-svg-fill-6 3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5000000000000002s both infinite;
          animation: animate-svg-fill-6 2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5000000000000002s both infinite;
} */

/* .svg-elem-5 {
  -webkit-animation: animate-svg-fill-6 2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5000000000000002s both infinite;
          animation: animate-svg-fill-6 2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5000000000000002s both infinite;
}


.svg-elem-6 {
  -webkit-animation: animate-svg-fill-6 2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both infinite;
          animation: animate-svg-fill-6 2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both infinite;
}

.svg-elem-7 {
  -webkit-animation: animate-svg-fill-6 2s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both infinite;
          animation: animate-svg-fill-6 2s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both infinite;
}


.svg-elem-8 {
  -webkit-animation: animate-svg-fill-6 2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s both infinite;
          animation: animate-svg-fill-6 2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s both infinite;
} */

.svg-elem-9 {
  -webkit-animation: animate-svg-fill-9 2.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both infinite;
  animation: animate-svg-fill-9 2.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both infinite;
}


.svg-elem-10 {
  -webkit-animation: animate-svg-fill-10 2.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000003s both infinite;
  animation: animate-svg-fill-10 2.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000003s both infinite;
}

.svg-elem-11 {
  -webkit-animation: animate-svg-fill-11 2.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both infinite;
  animation: animate-svg-fill-11 2.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both infinite;
}

.svg-elem-12 {
  -webkit-animation: animate-svg-fill-12 2.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9000000000000001s both infinite;
  animation: animate-svg-fill-12 2.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9000000000000001s both infinite;
}


.svg-elem-13 {
  -webkit-animation: animate-svg-fill-13 2.5s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both infinite;
  animation: animate-svg-fill-13 2.5s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both infinite;
}


@keyframes animate-svg-group {
  0% {
    transform: scale(.8);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(.8);
  }
}

@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}



@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}



@-webkit-keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(56, 212, 48);
  }
}

@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(56, 212, 48);
  }
}



@-webkit-keyframes animate-svg-fill-6 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-svg-fill-6 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0)
  }

  50% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}


@-webkit-keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}


@-webkit-keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}

@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(255, 255, 255);
  }
}


@-webkit-keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(199, 255, 197);
  }
}

@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(199, 255, 197);
  }
}


@-webkit-keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(199, 255, 197);
  }
}

@keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(199, 255, 197);
  }
}


@-webkit-keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(199, 255, 197);
  }
}

@keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(199, 255, 197);
  }
}



@-webkit-keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(199, 255, 197);
  }
}

@keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(199, 255, 197);
  }
}


@-webkit-keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(199, 255, 197);
  }
}

@keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(199, 255, 197);
  }
}



/* end */



.user-list {
  height: calc(100% - 100px);
  overflow-y: auto;
  overflow-x: hidden;
}

.user-list::-webkit-scrollbar {
  width: 8px;
  /* العرض ثابت ومحجوز */
}

/* يفضل شفاف تمامًا */
.user-list::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 10px;
}

/* التراك برضو شفاف */
.user-list::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0);
}

/* 2) عند الـ hover يظهر الاسكرول */
.user-list:hover::-webkit-scrollbar-thumb {
  background-color: #888;
}

.user-list:hover::-webkit-scrollbar-track {
  background-color: #ddd;
}

/* Firefox */
.user-list {
  scrollbar-width: thin;
  /* يحجز المساحة */
}

/* نخفيه في الوضع الطبيعي */
.user-list {
  scrollbar-color: transparent transparent;
}

.user-list::-webkit-scrollbar-button {
  display: none;
}

/* يظهر عند hover */
.user-list:hover {
  scrollbar-color: #888 transparent;
}

.list-item {

  display: flex;
  gap: 8px;
  padding: 14px 8px;
  border-bottom: 1PX solid #F1F1F1;
  transition: .3s all ease-in;
}
.list-item.active,
.list-item:hover {
  background-color: #C7FFC5;
  cursor: pointer;
}

.list-item img {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  position: relative;
  border-radius: 8px;
}


.cahtsDetails figure{
  padding:0  10px;
}

.cahtsDetails figure .img-container,
.list-item .img-container {
  position: relative;
  width: 45px;
  height: 45px;


}

.cahtsDetails figure .img-container span,
.list-item .img-container span {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background-color: #A2A2A2;
  border: 2px solid white;
  bottom: 0;
  right: 0;
}

.cahtsDetails figure .img-container.active span,
.list-item .img-container.active span {
  background-color: var(--light-green);
}


.list-item .list-item-text {
  flex: 1;
  display: flex;
  justify-content: space-between;
}

.list-item .list-item-text .info-user p {
  font-size: 16px;
  color: #606060;
  font-weight: 600;
}

.list-item .list-item-text .info-user span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  /* عدد السطور = 2 */
  -webkit-box-orient: vertical;
  line-clamp: 1;
  white-space: nowrap;
  /* السطر يبقى واحد */
  overflow: hidden;
  /* يخفي الزيادة */
  text-overflow: ellipsis;
  font-size: 14px;
}

.list-item .list-item-text .info-message {
  text-align: end;
  white-space: nowrap;
  /* السطر يبقى واحد */
}




/* CHAT */


/*! *************** Chats Details *************** !*/
.cahtsDetails figure img {
  width: 45px;
  height: 45px;
  border: 1.5px solid #ABABAB;
  border-radius: 8px;
}

.cahtsDetails figure .img-container {

  margin: 8px;
}

.cahtsDetails input {
  border-radius: 8px;
}
/*
.app-data {
  max-height: calc(100vh - 100px);
}
*/
.app-data.page {
  height: fit-content;
}
.cahtsDetails {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.cahtsDetails .members-container,
.cahtsDetails .files-container{
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
  width: 250px;
  height: 100%;
  padding:20px 10px;
  background-color: #fff;
  border-radius: 16px 0 0 16px  ;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
  transition: .3s all ease-out;
}



.cahtsDetails .members-container{
  overflow-y: unset;
}

.cahtsDetails .chat-overlay{
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: .3s all ease-out;
}


.cahtsDetails .files-container.close,
.cahtsDetails .members-container.close{

  left: -250px;
}
.cahtsDetails .chat-overlay.close{
  right: -100%;
}
.cahtsDetails .files-container .files-list,
.cahtsDetails .members-container .members-list{
  display: flex;
  flex-direction: column;
  gap: 10px;

}

.cahtsDetails .members-container .members-list{
  height: 100%;
}

.cahtsDetails .files-container .files-list{
  overflow-y: scroll;
}

.cahtsDetails .files-container .list-container,
.cahtsDetails .members-container .list-container{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px ;
}
.cahtsDetails .members-container .list-container{
  overflow-y: scroll;
  height: calc(100% - 70px);
}

.cahtsDetails .members-container .members-list{
  position: relative;
}

.cahtsDetails .files-container .files-list .file-item,
.cahtsDetails .members-container .members-list .member-item{
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #F1F1F1;
  border-radius: 8px;
  padding: 6px 10px;
  width: 100%;
}

.cahtsDetails .members-container .members-list .member-item{
  justify-content: space-between;
  padding: 10px;
  background-color: #fff;
}


.cahtsDetails .members-container .members-list .member-item:hover{
  background-color: #C7FFC5;
}
.cahtsDetails .members-container .members-list .member-item .info-member{
  display: flex;
  align-items: center;
  gap: 8px;
}

.cahtsDetails .members-container .members-list .member-item .info-member .info-text{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cahtsDetails .members-container .members-list .member-item .info-member img{
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.cahtsDetails .members-container .members-list .member-item .info-member .info-text p{
  font-size: 13px;
  font-weight: 600;
  color: #000;
  margin: 0;


}

.cahtsDetails .members-container .members-list .member-item .info-member .info-text span{
  font-size: 12px;
  font-weight: 400;
  color: #606060;
  margin: 0;
}

.cahtsDetails .members-container .members-list .member-item .remove-user{
  width: 20px;
  height: 20px;
  cursor: pointer;
}


.cahtsDetails .members-container .add-member-btn{
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.cahtsDetails .members-container .add-member-btn a{
  width: 90%;
}
.cahtsDetailsBox {
  overflow-y: auto;
  /* scrollbar-width: none; */
  padding: 0 15px;
  /* margin-block: 48px; */
  flex: 1;
}

.cahtsDetailsBox h4 {
  text-align: center;
  color: #00000080;
  padding-block: 8px;
}

.cahtsDetailsBox .message-container {

  display: flex;
  gap: 8px;
  width: 100%;
  margin-left: auto;


}

.cahtsDetailsBox .message-container img {
  width: 45px;
  height: 45px;
  border-radius: 8px;
}

.cahtsDetailsBox .message-container span {
  align-content: end;
  margin-bottom: 15px;

}

.cahtsDetails .cahtsDetailsBox .message,
.cahtsDetails .cahtsDetailsBox .myMessage {
  background-color: #F1F1F1;
  border-radius: 8px  8px  8px 0 ;
  margin-bottom: 15px;
  padding: 10px 16px;
  color: #606060;
  width: fit-content;
  overflow-wrap: break-word;
  word-break: break-all;
  max-width: 65%;

}

.cahtsDetails .cahtsDetailsBox .myFileMessage{
   background-color: #F1F1F1;
  border-radius: 8px  8px  8px 0 ;
  margin-bottom: 15px;
  padding: 10px 2px;
  color: #606060;
  width: fit-content;
  overflow-wrap: break-word;
  word-break: break-all;
  display: flex;
  gap: 4px;
    max-width: 65%;
    width: fit-content;

}

.cahtsDetails .cahtsDetailsBox .myFileMessage img{
  width: 25px;
  height: 25px;
}

.cahtsDetails .cahtsDetailsBox .message {
  background-color: #C7FFC5;
  border-radius: 8px  8px 0 8px ;
}

.cahtsDetails .cahtsDetailsBox .myMessage-container {
  margin-right: auto;
  margin-left: unset;
  flex-direction: row-reverse;
}

.cahtsDetails .inputSend {
  position: relative;
  padding: 8px;
  height: 70px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.cahtsDetails .inputSend-container{
  flex: 1;
  position: relative;

}


.cahtsDetails .inputSend button {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background-color: transparent;
}

@media (max-width: 575px) {
  .app-data {
    padding-inline: 8px;
  }



  .cahtsDetails h3,
  .cahtsDetails .cahtsDetailsBox p,
  .cahtsDetails .inputSend input {
    font-size: 15px;
  }

  .cahtsDetails .inputSend button img {
    width: 15px;
  }
}

/*! *************** Stores *************** !*/
/*? قفل وفتح البوكس */
.openBox {
  opacity: 1;
  pointer-events: auto;
  /* transform: translateY(0); */
  right: 0;
}

.closeBox {
  opacity: 0;
  pointer-events: none;
  /* transform: translateY(20px); */
  right: -300px;
}

/* إظهار وإخفاء الزرار */
.showBtnBox {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease;
}

.hideBtnBox {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

/*? Section chat-widget-container */
.chat-widget-container {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 300px;
  z-index: 9999;
}

.chat-widget-container .chat-widget-Box {
  position: absolute;
  bottom: 0;
  /* right: -300px; */
  width: 300px;
  height: 500px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  background-color: #229A96;
  border-radius: 5px 5px 0 0;
  border: 1px solid #fff;
  transition: all 0.3s ease;
  overflow: hidden;
}

.chat-widget-container p {
  font-size: 18px;
  font-weight: 100;
}

/* الزرار يفضل ثابت وميختفيش */
.btn-chat-widget {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.btn-chat-widget button {
  width: 300px;
  height: 40px;
  background-color: #239C98;
  border-radius: 5px 5px 0 0;
  color: white;
  border: 1px solid #a3a1a1;
  border-bottom: none;
  font-size: 20px;
  cursor: pointer;
  transition: 0.2s;
}

.chat-widget-Box .head i {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
  color: #fff;
  cursor: pointer;
}

.chat-widget-Box .head i:hover {
  background-color: #f7f7f933;
}

.chat-widget-container .chat-widget-Box .body .input-group {
  position: relative;
  padding: 30px 0;
}

.chat-widget-container .chat-widget-Box .body .input-group input {
  height: 40px;
}

.chat-widget-container .chat-widget-Box .body i.icon-search {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.chat-widget-container .chat-widget-Box .body .boxMessage {
  display: flex;
  background-color: #ede4e4;
  padding: 15px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: .3s;
}

.chat-widget-container .chat-widget-Box .body .boxMessage:hover {
  background-color: #fffffffa;
}

.chat-widget-container .chat-widget-Box img {
  width: 45px;
}

.chat-widget-container .chat-widget-Box .body .messagesBox {
  flex: 1;
  overflow-y: auto;
}

.chat-widget-container .chat-widget-Box .message-details {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  overflow-y: auto;
  padding: 0 10px;
  position: relative;
  background-color: #0000001f;
  padding-block: 15px;
  border-radius: 10px;
}

.chat-widget-container .chat-widget-Box .message-details figure {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.chat-widget-container .chat-widget-Box .message-details .messagesBox {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 60px;
}

.chat-widget-container .chat-widget-Box .message-details p.message,
.chat-widget-container .chat-widget-Box .message-details p.myMessage {
  background-color: #00000014;
  border-radius: 18px;
  margin-bottom: 15px;
  padding: 10px 16px;
  color: #fff;
  width: fit-content;
  text-align: right;
  font-size: 15px;
}

.chat-widget-container .chat-widget-Box .message-details p.message {
  border: 1px solid #dee2e6;
  background-color: transparent;
  margin-left: auto;
}

.chat-widget-container .chat-widget-Box .message-details p.myMessage {
  margin-right: auto;
}

.chat-widget-container .chat-widget-Box .message-details .inputSend {
  position: sticky;
  bottom: 0;
}

.chat-widget-container .chat-widget-Box .message-details .inputSend input {
  height: 40px;
}

.chat-widget-container .chat-widget-Box .message-details .inputSend button {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background-color: transparent;
}

.chat-widget-container .chat-widget-Box .message-details .inputSend button img {
  width: 15px;
}

.chat-widget-Box .body .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  color: #fff;
}

.chat-widget-Box .body .back {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat-widget-Box span.i-message {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
  color: #fff;
  cursor: pointer;
}

.chat-widget-Box span.i-message:hover {
  color: #229A96 !important;
  background-color: #fff;
}




.attach-file{
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: .3s;
  background-color: rgba(223, 248, 222, 1);
}

.cont-filesBtn{
  display: flex;
  gap: 10px;
  align-items: center;
  margin-right: auto;

}


.members-btn,
.filesBtn{
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: .3s;
  background-color: var(--light-green) ;
  border: none;

}

.members-btn:hover,
.filesBtn:hover{
  background-color: #159400 !important;
}

.members-btn img,
.filesBtn img{
  width: 25px !important;
  height: 25px !important;
  border: none !important;
}




.close-files-btn{
  cursor: pointer;
}


.add-chat-model .modal-header{
  border: none;
  padding-bottom: 0;
}

.add-chat-model .modal-body .header{
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.add-chat-model .modal-body .header p{
  font-weight: 600;
  color: var(--light-green);
  font-size: 16px;
}

.add-chat-model .modal-body .header span{
  font-size: 16px;
  color: var(--text-gray );
}

.add-chat-model .modal-footer{
  justify-content: center;
  border: none;
}


.add-chat-model .modal-body  input{

  width: 100%;
  height: 45px;
  border: 1px solid #BDBDBD;
  margin-bottom: 15px;
  border-radius: 8px;
  padding: 0 10px;
  margin-top: 15px;
}


.add-chat-model .modal-body  input::placeholder{
  color: var(--text-light-gray);
}
.add-chat-model .modal-footer button{
  min-width: 120px;
}


.cahtsDetails .files-container .close-files-btn span,
.cahtsDetails .members-container .close-members-btn span,
.cahtsDetails .members-container .close-members-btn span{
  transition: .3s ;
}
.cahtsDetails .files-container .close-files-btn span:hover,
.cahtsDetails .members-container .close-members-btn span:hover{
  color: var(--light-green);
}



/* profile-info */


.profile-info-cards{

  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.profile-info-cards .info-card{
   flex: 1 1 calc(33.333% - 20px);
    background: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--dark-green);
    align-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-width: 300px;
}

.profile-info-cards .info-card::after{

  content: "";
  background-image: url("../assets/images/Mask\ Group.png");
  position: absolute;
  z-index: 2;
  width: 120px;
  height: 130%;
  top: -5px;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
}


.profile-info-cards .info-card::before{

  content: "";
  background-image: url("../assets/images/Mask\ Group.png");
  position: absolute;
  z-index: 2;
  width: 120px;
  height: 130%;
  top: -5px;
  right: 0;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}
.profile-info-cards .info-card h4{
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.profile-info-cards .info-card p{
  font-size: 16px;
  font-weight: bold;
  color: var(--light-green);
}



/*! ************************ Store-Details ************************ */
.store-details-container{
  padding: 15px;
}
.store-details-container .store-details-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.store-details-container .store-details-content {
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
  margin-top: 15px;
}
.store-details-container .store-details-content-item {
  background-color:#fff;

  border-radius: 20px;
  padding: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.store-details-container .store-details-content-item .text{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.store-details-container .store-details-content-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-gray);
}

.store-details-container .store-details-content-item p {
  font-size: 20px;
  font-weight: 600;
  color: var(--light-green);
  line-height: 1
  ;
}
.store-details-container .store-details-content-item img{
  width: 45px;
  height: 45px;
}
.store-details-container .col-md-3{
  padding: 4px;
}

.owl-lost{
  direction: ltr;
}
.owl-lost .owl-dots{

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: -35px;
  left: 0;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 50%;
  padding: 10px;
  z-index: 100;
}


.owl-lost .owl-dots .owl-dot{
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: var(--light-green);
  padding: 10px;
  border-radius: 10px;
  z-index: 100;
}

.owl-lost .owl-dots .owl-dot.active{
  background-color: var(--dark-green);
}

#addLostModal .modal-body,
#mainModal .modal-body{
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 0;
}
#addLostModal .modal-body-content,
#mainModal .modal-body-content{
  display: flex;
  flex-direction: column;
  gap: 34px;
  justify-content: center;
  align-items: center;
  width: 49%;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid ;
  transition: .3s;
  cursor: pointer;
}


#addLostModal .modal-body-content{
  justify-content: space-between;
}

#addLostModal .modal-body-content:nth-child(1),
#mainModal .modal-body-content:nth-child(1){
  border: 1px dashed var(--light-green);

}
#addLostModal .modal-body-content:nth-child(2),
#mainModal .modal-body-content:nth-child(2){
  border: 1px dashed var(--dark-green);
}


#addLostModal .modal-body-content:nth-child(1) p,
#mainModal .modal-body-content:nth-child(1) p{
  color: var(--light-green);
}
#addLostModal .modal-body-content:nth-child(2) p,
#mainModal .modal-body-content:nth-child(2) p{
  color: var(--dark-green);
}


#addLostModal .modal-body-content:nth-child(2) button,
#mainModal .modal-body-content:nth-child(2) button{
  background-color: var(--dark-green) !important;
}

#addLostModal .modal-body-content:nth-child(1):hover button,
#mainModal .modal-body-content:nth-child(1):hover button {
  background-color: var(--dark-green) !important;
}

#addLostModal .modal-body-content:nth-child(2):hover button,
#mainModal .modal-body-content:nth-child(2):hover button {
  background-color: var(--light-green) !important;
}
#addLostModal .modal-body-content button:hover::after,
#mainModal .modal-body-content button:hover::after{
  display: none;
}

#addLostModal .modal-body-content button:hover::before,
#mainModal .modal-body-content button:hover::before{
  display: none;
}




#groupChatModal .modal-content {
  padding: 20px 30px;
}
#groupChatModal .my-modal-content {
  gap: 10px;
  position: relative;
}
#groupChatModal .modal-content form {
  padding-block: 20px;
}
#groupChatModal .modal-content .text {
  text-align: center;
  padding-inline: 30px;
  margin-top: 25px;
  color: #7F7F7F;
}
#groupChatModal .modal-content button.close-btn {
  background-color: transparent;
  position: absolute;
  left: 10px;
  top: 10px;
  color: #7F7F7F;
  transition: .3s;
  font-size: 20px;
}
#groupChatModal .modal-content button.close-btn:hover {
  color: var(--light-green);
}
#groupChatModal .modal-content .btn-save {
  display: flex;
  justify-content: center;
  align-items: center;
}
#groupChatModal .modal-content .btn-save {
  display: flex;
  justify-content: center;
  align-items: center;
}
#groupChatModal .modal-content h3 {
  color: #7F7F7F;
  font-weight: bold;
  text-align: center;
}
#groupChatModal .modal-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

#groupChatModal .modal-btn button {
  border-radius: 5px;
  width: 100px;
  height: 35px;
  transition: .3s;
}




#groupChatModal .input-store {
  position: relative;
  width: 100%;
}

#groupChatModal .input-store select {
  width: 100%;
  padding: 5px;
  border: 0.5px solid #e0e4ecf3;
  border-radius: 6px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 40px;
}

#groupChatModal .input-store img {
  position: absolute;
  top: 60%;
  left: 10px;
}

#groupChatModal .upload-box {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 0.5px solid #e0e4ecf3;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  cursor: pointer;
  gap: 5px;
  position: relative;
  margin-top: 30px;
}

#groupChatModal .upload-box .preview-icon {
  font-size: 40px;
  color: #777;
  display: block;
  margin-bottom: 10px;
}

#groupChatModal .upload-box input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

#groupChatModal #previewImage {
  max-width: 80px;
  border-radius: 5px;
}

#groupChatModal .hidden {
  display: none;
}

#groupChatModal .image-upload {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#groupChatModal img.upload-camera {
  position: absolute;
  top: 10px;
  right: 10px;
}

#groupChatModal .input-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

#groupChatModal .input-wrapper label {
  position: absolute;
  top: -20px;
  right: 0;
}
#groupChatModal #store {
  color: #BDBDBD;
  font-size: 12px;
  padding: 7px;
}
#groupChatModal #store option:not([value=""]) {
  color: #000;
}


#addLostDoneModal .modal-body-content,
#addFoundModal .modal-body-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}


#addLostDoneModal .modal-body-content h3,
#addLostDoneModal .modal-body-content p span{

  color: var(--light-green);
  font-weight: 600;
}


#addFoundModal .modal-body-content h3,
#addFoundModal .modal-body-content p span{
  color: var(--dark-green);
  font-weight: 600;
}



/* ************************ help-center and login ************************ */


section.login {
  min-height: 100vh;
  /* position: relative; */

      display: flex;
      align-items: center;
      justify-content: start;
      flex-direction: column-reverse;
      gap: 50px;
      z-index: 3;

  background: url('../assets/images/bg-login.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  z-index: -1;
  bottom: 0;
  }



.login .login-logo .logo-title ,
.login .login-container .logo-desc{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.login .login-logo .logo-title h2{
  font-weight: 600;
  font-style: Bold;
  font-size: 32px;
  color: var(--dark-green);
}
.login .login-container .logo-desc h6{
  font-weight: 600;
  font-size: 26px;
  color: #003200;
}
.login .login-container .logo-desc p{
  font-size: 12px;
  font-weight: 500;
  color: #616161;
}
.login .login-container .text{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.login .login-container .text p{
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-green);
}
.login .login-container .text span{
  font-size: 12px;
  font-weight: 500;
  color: #616161;
}
.login-container {
  width: 48%;
  max-width: 550px;
  padding: 25px 35px;
  border-radius: 16px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
  margin-top: 20px;
}
.login-container form {
  width: 100%;
}
.login-container .logo {
  width: 97px;
  height: 90px;
}

.login-container .logo-title h3{
  font-weight: 600;
  font-style: ExtraBold;
  font-size: 24px;
  text-align: center;
  color: #003200;
}

.login-container h2 {
  color: #003200;
}

.form-group {
  margin-bottom: 20px;
}
.button-group{
  margin-top: 35px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.login label {
  display: flex;
  justify-content: start;
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
}

.required {
  color: red;
}

.login input[type="email"],
.login input[type="password"] {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
}
.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.toggle-password {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #BDBDBD;
}

.login .button {
  padding: 10px 50px;
  background-color: #3BD132;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.login .button a{
  color: #fff;
}

.login .button:hover {
  background-color: #159400;
}
.login .form-group .forgot-password {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  font-size: 14px;
  color: #27C840;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  text-align: end;
}
.login .form-group .forgot-password:hover {
  text-decoration: underline;
}
.login-container form .back{
  font-weight: 500;
  font-size: 12px;
  color: #3BD132;
  text-decoration: none;
}

.number-validate {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 10px;
  width: 100%;
  margin: 8px auto;

}

.number-validate input {
  width: calc(100% / 6);
  height: 40px;
  text-align: center;
  font-size: 24px;
  border: 1px solid #BDBDBD;
  border-radius: 8px;
}

.number-validate input:focus {
  border-color: #22D100;
  box-shadow: 0 0 5px rgba(34, 209, 0, 0.5);
  outline: none;
}


/* help center */

.inquiries .nav {
  gap: 20px;
  align-items: center;
  border: 0;
  padding: 26px 0 0 0;
}

.inquiries .nav .nav-item:has(.nav-link.active) {
  border-top: 2px solid #38D430;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  background: #fff;
  padding: 5px 35px;
}
.inquiries .nav .nav-item .nav-link{
  color: #A2A2A2;
  border: 0px;
}
.inquiries .nav .nav-item .nav-link.active{
  color: #38D430;
}
.inquiries .tab-content .tab-pane{
  background: #fff;
  height: 100%;
  border-top-left-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
}

/* tab inquirue  */
.inquiries .row-container{
  width: 100%;
  margin: 0 auto;
  padding-bottom: 10px;
}
.inquiry-card {
  border: 1px solid #38D430;
  border-radius: 16px;
  width: 100%;
  margin-top: 20px;
}
/* .tab-content>.active{
  display: flex;
  flex-direction: column;
  align-items: center;
} */
.inquiry-header {
  background: linear-gradient(313.81deg, #159400 0%, #22D100 75.34%, #159400 150.69%);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 15px;
  font-size: 14px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.inquiry-header > div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.inquiry-body {
  padding: 15px 16px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.inquiry-body p {
  color: #707070;
  font-size: 14px;
}

.inquiries .inquiry-card  .main_btn:hover{
  background: #159400 !important;
}


/* tab inquirue  */

/* tap inquirue asking */
.inquiries .top-btn{
  padding: 30px 25px;
  display: flex;
  justify-content: end;
}
.inquiries .top-btn button{
  padding: 0 25px;
  border-radius: 8px;
  text-align: center;
}
.inquiries .top-btn button i{
  margin-right: 5px;
}
.inquiries .contact-support{
  padding-bottom: 10px;
}
.inquiries .contact-support .contact-support-box{
  width: 95%;
  margin: 20px auto;
  border: 1px solid #E5E5E5;
  border-right: 1px solid transparent;
    border-left: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: start;
  cursor: pointer;
}
.inquiries .contact-support .contact-support-text ,
.inquiries .contact-support .contact-support-btn {
  padding: 10px 0 20px 0 ;
}
.inquiries .contact-support .contact-support-text p{
  padding-top: 15px;
}



/* tap inquirue asking end */


/* pop-up model */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

#editQuestionModal .modal-content ,
#addQuestionModal .modal-content {
  position: relative;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  z-index: 10000;
  gap: 5px;
  animation: scaleUp 0.3s ease;
}

#editQuestionModal .modal-content h3 ,
#addQuestionModal .modal-content h3 {
  margin: 10px 0 5px;
  font-size: 14px;
  color: #BDBDBD;
}

#editQuestionModal .modal-content input,
#editQuestionModal .modal-content textarea,
#addQuestionModal .modal-content input,
#addQuestionModal .modal-content textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #BDBDBD;
  outline: none;
}

#editQuestionModal .modal-content input::placeholder,
#editQuestionModal .modal-content textarea::placeholder,
#addQuestionModal .modal-content input::placeholder,
#addQuestionModal .modal-content textarea::placeholder {
  color: #BDBDBD;
  font-size: 12px;
}

#editQuestionModal .modal-content textarea ,
#addQuestionModal .modal-content textarea {
  resize: none;
  height: 100px;
}



#addQuestionModal .submit-btn ,
#editQuestionModal .submit-btn {
  width: 50%;
  margin: 10px auto 0;
  padding: 10px;
  background: #38d430;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#addQuestionModal .close-btn ,
#editQuestionModal .close-btn {
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #BDBDBD;
}

@keyframes scaleUp {
from {
  transform: scale(0.8);
  opacity: 0;
}
to {
  transform: scale(1);
  opacity: 1;
}
}
/* pop-up model end */
/* help center end */


/* /////////////////////////////////////////////////////////////////////////////////////////////////// */

/* help-center employee */

.banner{
  position: relative;
  background:
      url("../assets/images/help-center\ \(1\).png") 80% 70% / 60px no-repeat,
      url("../assets/images/help-center\ \(2\).svg") 100% 100% / 70px no-repeat,
      url("../assets/images/help-center\ \(3\).svg") 90% 20% / 50px no-repeat,
      url("../assets/images/help-center\ \(4\).svg") 0% 100% / 65px no-repeat,
      url("../assets/images/help-center\ \(5\).svg") 20% 70% / 55px no-repeat,
      url("../assets/images/help-center\ \(1\).svg") 10% 20% / 60px no-repeat,
      linear-gradient(313.81deg, #033400 0%, #0E7300 75.34%, #033400 150.69%);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner .banner-content{
  width: 50%;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  z-index: 11;
}
.banner .banner-content .banner-heading{
  color: #ffffff;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
}
.banner .banner-content .banner-desc{
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  width: 90%;
}
.banner .banner-content .search-container {
  position: relative;
  max-width: 400px;
  height: 50px;
  border-radius: 8px;
  border: 0.5px solid #ffffff8a;
}

.banner .banner-content .search-container input {
  background: rgba(255, 255, 255, 0.15);
  padding: 0 45px 0 90px;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  border-radius: 6px;
  color: #fff;
  font-size: 20px;
}

.banner .banner-content .search-container input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.banner .banner-content .search-btn {
  position: absolute;
  transform: translateY(-50%);
  left: 8px;
  top: 50%;
  cursor: pointer;
}

.banner .banner-content .search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #BDBDBD;
  font-size: 20px;
  pointer-events: none;
}

/* help-center-contact */
.help-center-contact{
  padding-top: 26px;
}
.help-center-contact .nav {
  width: 100%;
  align-items: center;
  border: 0;
}
.help-center-contact .nav .nav-item{
  width: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
}

.help-center-contact .nav .nav-item .nav-link{
  width: 100%;
  color: #38D430;
  padding: 10px 0 ;
  background: #ffffff;
  border: 0px;
}
.help-center-contact .nav-tabs .nav-item.show .nav-link,
.help-center-contact .nav-tabs .nav-link.active{
  background: #38D430;
  width: 100%;
}
.help-center-contact .nav .nav-item .nav-link:not(.active){
  color: #888;
}
.help-center-contact .nav .nav-item:nth-child(1) .nav-link{
  border-top-right-radius: 16px ;
  border-top-left-radius: 0px ;
}
.help-center-contact .nav .nav-item:nth-child(2) .nav-link{
  border-top-right-radius: 0px ;
  border-top-left-radius: 16px ;
}


/* help-center-contact-faq */
.help-center-contact .tab-content .tab-pane .faq {
  height: 100%;
  width: 100%;
  background: #ffffff;
  padding: 16px;
}

.help-center-contact .tab-content .tab-pane .faq .faq-item {
  border-bottom: 1px solid #eee;
  margin-top: 20px;
}

.help-center-contact .tab-content .tab-pane .faq .faq-item .faq-question {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #A2A2A2;
  font-size: 18px;
}

.help-center-contact .tab-content .tab-pane .faq .faq-item.active .faq-question{
  color: #ffffff;
}
.help-center-contact .tab-content .tab-pane .faq-item.active {
  background: linear-gradient(313deg, #033400, #0E7300);
  color: #fff;
  border-radius:16px ;
}
.help-center-contact .tab-content .tab-pane .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0px 30px;
  color: #fff;
  font-size: 14px;
  transition: all 0.5s ease-in-out;
}

.help-center-contact .tab-content .tab-pane .faq-item.active .faq-answer {
  display: block;
  padding: 5px 30px 15px;
  max-height: 200px;
}

.help-center-contact .tab-content .tab-pane .faq-question .icon img {
  width: 30px;
  height: 30px;
}
.help-center-contact .tab-content .tab-pane .faq-item.active .faq-question .icon img {
  transform: rotate(180deg);
}

/* help-center-contact-faq end */

/* contact form  */
.help-center-contact .tab-content .tab-pane:nth-child(2){
  background: #fff;
  height: 100%;
  padding: 50px 0;
}
.help-center-contact .tab-content .tab-pane .contact-form {
  width: 100%;
  height: 100%;
  max-width: 500px;
  margin: 0px auto;
}
.help-center-contact .tab-content .tab-pane .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.help-center-contact .tab-content .tab-pane .form-group label {
  margin-bottom: 6px;
  font-size: 14px;
  color: #707070;
  font-weight: 500;
}

.help-center-contact .tab-content .tab-pane .form-group input,
.help-center-contact .tab-content .tab-pane .form-group textarea {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  outline: none;
  width: 100%;
}

.help-center-contact .tab-content .tab-pane .form-group textarea {
  resize: none;
  height: 120px;
}

.help-center-contact .tab-content .tab-pane .form-group input:focus,
.help-center-contact .tab-content .tab-pane .form-group textarea:focus {
  border-color: #0E7300;
}
.help-center-contact .tab-content .tab-pane .main_btn {
  margin: 30px auto 0;
  padding: 5px 45px ;
  display: flex;
  justify-content: center;
}

/* contact form  end */
/* help-center-contact end */
/* help-center employee end */






/* donations */
.match-card .match-label-1 p {
  background: radial-gradient(50% 257.84% at 50% 50%, #CB00CB 0%, #810081 100%);
}
.match-card .match-label-2 p {
  background: radial-gradient(50% 257.84% at 50% 50%, #0084DE 0%, #004C84 100%);
}
/* donations */



.preview-img-lost {
  width: 150px;
  min-height: 150px;
  border: 2px dashed #ccc;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lost-images-preview {
  width: 150px;

  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
}


.image-item:first-child {
  width: 100%;
  height: 150px;
}
.image-item {
  position: relative;
  width: calc(100% / 3);
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  padding: 3px;
  border: 1px solid #ccc;
}
.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.remove-image {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.add-more-images {
  margin-top: 10px;
  cursor: pointer;
  width: 100%;
}

/* card support */
.card-support {
  background: linear-gradient(313.81deg, #033400 0%, #0E7300 75.34%, #033400 150.69%);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #0E7300;
}
.card-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-details-title {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}
.card-details-number {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
}
.card-details-text {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}

/* card support end */

/* tabel -head- right-part-form */
.right-part-form h4{
  background-color: transparent;
}
/* tabel -head- right-part-form en */



.input-store {
  position: relative;
}

.input-store img {
  transition: transform 0.3s ease;
}

/* لما يكون الـ select مفتوح */
.input-store.open img {
  transform: rotate(180deg);
}
