body *:not(i) {
  font-family: "Helvetica Neue", sans-serif;
}

body .font-2 *:not(i),
body .font-2 {
  font-family: "AllGendersV4", "Helvetica Neue", sans-serif !important;
}


p {
  color: rgb(33, 37, 41);
  font-size: 18px;
}

/****************************************************************************/
/** loader
/****************************************************************************/

.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1c1c1c80;
  color: white;
  font-size: 50px;
  z-index: 999999999;
}

/****************************************************************************/
/** Image Viewer
/****************************************************************************/

#imageViewer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 999999999;
}

#imageViewer #fullImage {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#imageViewer .close-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

img.imgviewer {
  cursor: pointer;
}

/****************************************************************************/
/** notifications
/****************************************************************************/

.notification {
  position: fixed;
  left: 30px;
  bottom: -90px;
  font-size: 14px;
  padding: 10px 2px;
  border-radius: 5px;
  box-shadow: 0 0 50px #000000;
  width: 300px;
  text-align: center;
  z-index: 999999999;
  transition: all 1s ease-in-out;
  border-right: solid 3px;
  color: black;
  background: #96b0d6;
  border-color: #005680;
}

.notification.default {
  background: #96b0d6;
  border-color: #005680;
}

.notification.success {
  background: #96d696;
  border-color: green;
}

.notification.warning {
  background: #e6d287;
  border-color: #8c7213;
}

.notification.error {
  background: #ffbcbc;
  border-color: #b70000;
}

.notification.show_up {
  bottom: 40px;
}

.danger {
  background-color: red !important;
}

.success {
  background-color: #a5d6a7 !important;
}




/****************************************************************************/
/** header
/****************************************************************************/


body {
  margin: 0;
  font-family: "IBM Plex Sans Arabic", 'Arial', sans-serif;
  background-color: white;
}

header#header {
  position: relative;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background-color: black;
  padding: 10px 20px;
  box-sizing: border-box;
  transition: background-color ease-in-out 0.6s;
}

header#header:not(.sticky) {
  top: unset !important;
}

header#header.sticky.moved {
  background-color: black;
  z-index: 9;
}

header#header.sticky {
  background-color: transparent;
  position: fixed;
  z-index: 1;
}

body.customize-support header#header.sticky {
  top: 32px;
}

header#header .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

header#header .logo img {
  height: 28px;
  width: auto;
}

header#header .mobile-menu-btn {
  display: none;
  font-size: 20px;
  color: white;
  cursor: pointer;
}

header#header nav {
  display: flex;
}

header#header nav .mobile-nav-header {
  display: none;
}

header#header nav .mobile-nav-header a {
  display: inline-block;
  text-align: center;
  width: 62px;
  height: 40px;
  color: #8f8f8f;
  background-color: #ffffff1f;
  line-height: 40px;
}

header#header nav>ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

header#header nav>ul li {
  margin-right: 20px;
}
header#header nav>ul li a {
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

header#header nav>ul ul {
  display: none;
  position: absolute;
  padding: 10px;
  background-color: white;
  box-shadow: 0 0 11px #0000000a;
  border-radius: 7px;
  border: solid 1px #00000005;
  padding: 10px 24px;
  margin: 0;
}
header#header nav>ul ul {
  list-style: none;
  padding: 10px 24px;
}
header#header nav>ul ul li{
  margin: 0;
}

header#header nav>ul ul li a{
  display: block;
  color: black;
  padding: 5px 20px;
  font-size: 16px;
}

header#header nav li>a:after {
  content: ' ';
  position: absolute;
  background: linear-gradient(to right, #3a00ff, #3a00ff) fixed !important;
  top: 100%;
  margin-top: 4px;
  border-radius: 3px;
  left: 0%;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transition: transform .2s;
  transform-origin: right center;
  box-sizing: border-box;
  display: block;
}

header#header nav li:hover>a:after {
  transform: scaleX(1);
  transform-origin: left center;
}


header#header nav li:hover ul {
  display: block;
}

header#header .social-icons {
  display: none;
  /* display: flex; */
}

header#header .social-icons a {
  margin-right: 10px;
  color: white;
  text-decoration: none;
  font-size: 20px;
}

header#header .contact-button a {
  background-color: white;
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

header#header .contact-button a:hover {
  background-color: #ddd;
}

header#header .action-buttons {
  display: flex;
}

/* Media Query for Mobile */
@media screen and (max-width: 768px) {
  header#header .mobile-menu-btn {
      display: block;
  }

  header#header {
      z-index: 9999999;
  }

  header#header nav {
      display: block;
      position: absolute;
      position: fixed;
      background-color: black;
      top: 0;
      right: 100%;
      width: 100%;
      height: 100%;
      transition: all ease-in-out 0.5s;
      z-index: 99;
  }

  header#header nav.show {
      right: 0;
  }

  header#header nav .mobile-nav-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #ffffff2e;
      margin-bottom: 15px;
  }

  header#header nav .mobile-nav-header h2 {
      color: #cbcbcb;
      margin: 0;
      padding: 0 10px;
  }

  header#header nav>ul {
      flex-direction: column;
      text-align: start;
  }

  header#header nav>ul li {
      margin-right: 0;
  }

  header#header nav>ul li a {
      display: block;
      padding: 10px 25px 17px 10px;
  }

  header#header .social-icons {
      display: none;
  }

  header#header .contact-button {
      display: none;
  }

  header#header .action-buttons {
      display: none;
  }
}




/****************************************************************************/
/** single
/****************************************************************************/

.site-content {
  background-color: white;
  margin-bottom: 30px;
}

.site-content-inner {
  padding: 10px;
}

/* .single p {
  font-size: 18px;
  line-height: 35px;
} */

.site-content.single-page h1 {
  text-align: center;
  padding: 35px 0;
}

.single article p {
  font-size: 20px;
  line-height: 30px;
  word-spacing: 3px;
  margin-bottom: 30px;
}
.single article .scape-p p{
  color: unset;
  font-size: unset;
  line-height: unset;
  word-spacing: unset;
  margin-bottom: 15px;
}
@media screen and (max-width: 800px) {
  .single article p {
    font-size: 17px;
    line-height: 26px;
    word-spacing: 1px;
    margin-bottom: 15px;
  }
}




/****************************************************************************/
/** single project
/****************************************************************************/


.single-project {
  text-align: start;
}

.single-project .entry-header {
  height: calc(100vh - 0px);
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.single-project .entry-header::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #00000085;
  z-index: 1;
}

.single-project .entry-header .entry-thumbnail {
  width: 100%;
  height: 100%;
}

.single-project .entry-header .entry-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1;
  transition: all cubic-bezier(0.44, 0, 0.56, 0.99) 15s;
}

.single-project .entry-header .entry-thumbnail img.zoom-in {
  scale: 1.2;
}

.single-project .entry-header .entry-title {
  font-family: "AllGendersV4", "Helvetica Neue", sans-serif !important;
  color: white;
  z-index: 9;
  position: absolute;
  font-weight: normal;
  font-size: 14px;
  padding: 15px;
  left: 50%;
  top: 50%;
  transform: translate(-50%);
}

.single-project .entry-header .entry-title h1 {
  color: white;
  font-size: 70px;
  font-weight: normal;
}

.single-project .entry-header .entry-title .area {
  padding-top: 20px;
}

.single-project .entry-header .entry-title .area,
.single-project .entry-header .entry-title .area a {
  color: lightgrey;
  text-decoration: none;
}

@media screen and (max-width: 800px) {
  .single-project .entry-header .entry-title h1 {
      font-size: 40px;
  }
}

.project-id-container {
  border: 3px solid rgba(221, 221, 221, 0.46);
  height: 120px;
  width: 120px;
  text-align: center;
  padding-top: 20px;
}

.project-id-container span {
  display: block;
  font-size: 22px;
  color: #999;
  margin-bottom: 5px;
  font-size: 16px;
}

.project-id-container strong {
  font-family: 'bahij-bold';
  font-size: 40px;
  color: #777;
  line-height: 0px;
  position: relative;
  top: 20px;
}

.spp-title-stat {
  display: flex;
  width: 100%;
  margin-top: 10px;
}

.spp-title-stat span {
  width: 33%;
  color: #048BBD;
  font-size: 18px;
  position: relative;
  text-align: center;
}

.soliman_en,
.spp-title-stat span:before {
  left: auto;
  right: -20px;
}

.spp-title-stat span i {
  display: block;
  font-style: normal;
  color: #666;
  font-family: 'bahij-bold';
  font-size: 30px;
}


.spp-imgs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 25px;
}

.spp-imgs a {
  width: 100px;
  border: 2px solid #ddd;
  margin: 5px;
  color: #999;
  padding: 5px 25px;
  text-align: center;
  text-decoration: none;
}

.spp-loc {
  margin-top: 10px;
  display: flex;
  justify-content: space-evenly;
  width: 90%;
  margin: auto;
}

.spp-loc a {
  color: #666;
  font-size: 18px;
  position: relative;
  display: block;
  text-align: center;
  line-height: 22px;
  font-family: 'bahij-light';
  text-decoration: none;
}

.spp-loc a:not(:last-child):before {
  content: '';
  height: 100%;
  width: 2px;
  display: block;
  background: #ddd;
  position: absolute;
  left: -30px;
  top: 10px;
}

.spp-loc a i.loc {
  background: url('../images/label/location.png') no-repeat;
  background-size: 53%;
  left: 8px;
}

.spp-loc a i.profile {
  background: url('../images/label/download.png') no-repeat;
  background-size: 65%;
  left: 6px;
}

.apartments {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}

.apartments .apartment {
  width: 50%;
  padding: 10px;
}

.apartments .apartment .apartment-inner {
  width: 100%;
  position: relative;
  background-color: #f1f1f1;
  display: inline-block;
  padding: 20px 20px 0;
  transition: all ease-in-out 0.2s;
  cursor: pointer;
}

.apartments .apartment .apartment-inner a.edit-apartment-btn {
  display: none;
  position: absolute;
  left: 5px;
  top: 5px;
  width: 35px;
  height: 35px;
  border-radius: 23px;
  line-height: 34px;
  text-align: center;
  font-size: 14px;
  padding: 0;
  background-color: #7376c363;
  border: solid 1px #7376c32b;
  color: white;
  transition: all ease-in-out 0.2s;
}

.apartments .apartment .apartment-inner:hover a.edit-apartment-btn {
  display: block;
}

.apartments .apartment .apartment-inner a.edit-apartment-btn:hover {
  background-color: #7376c3;
}

.apartments .apartment .apartment-inner:hover {
  box-shadow: 1px 6px 7px #00000045;
  transform: translateX(-1px) translateY(-3px);
}

.apartments .apartment .apartment-inner table.apartment-table {
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  color: #717171;
}

.apartments .apartment .apartment-inner table.apartment-table tr td {
  border: solid 4px white;
  text-align: center;
  padding: 10px 0;
}

.apartments .apartment .apartment-inner table.apartment-table tr td .apartment-description {
  height: 90px;
  overflow: auto;
  font-weight: normal;
  font-size: 15px;
  padding: 0 10px;
  text-align: start;
}

.apartments .apartment .apartment-footer {
  position: relative;
  height: 90px;
}

.apartments .apartment.sale .apartment-footer {
  color: #009344;
}

.apartments .apartment.booked .apartment-footer {
  color: #f7931d;
}

.apartments .apartment.sold .apartment-footer {
  color: #be1e2d;
}

.apartments .apartment .apartment-footer .apartment-status {
  position: absolute;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  width: 100px;
  height: 45px;
  background-color: gray;
  color: white;
  bottom: 0;
}

.apartments .apartment.sale .apartment-footer .apartment-status {
  background-color: #009344;
}

.apartments .apartment.booked .apartment-footer .apartment-status {
  background-color: #f7931d;
}

.apartments .apartment.sold .apartment-footer .apartment-status {
  background-color: #be1e2d;
}

.apartments .apartment .apartment-footer .apartment-price {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50px;
}

.apartments .apartment .apartment-footer .apartment-price span {
  font-size: 28px;
  font-weight: bold;
}

.apartments .apartment a.new-apartment-btn {
  display: flex;
  width: 100%;
  height: calc(100% - 20px);
  margin: 10px 0;
  min-height: 270px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 40px;
  color: #e3e3e7;
  border: dotted 4px;
}

@media screen and (max-width: 800px) {
  .apartments .apartment {
      width: 100%;
      padding: 10px 0;
  }

  .apartments .apartment .apartment-inner {
      padding: 10px 10px 0;
  }

  .spp-title-stat {
      margin: 60px 0;
  }
}





#filters-sidebar {
  background: #f0f1f1;
  padding: 20px;
  margin-bottom: 30px;
}

#filters-sidebar #content {
  flex: 1;
  padding: 20px;
}

#filters-sidebar h2 {
  color: #333;
  margin-bottom: 20px;
  font-size: 1.5em;
}

#filters-sidebar .filter-group {
  margin-bottom: 25px;
}

#filters-sidebar h3 {
  color: #555;
  font-size: 1.2em;
  margin-bottom: 15px;
}

#filters-sidebar label {
  color: black !important;
  font-size: 15px;
  background-color: white;
  margin-bottom: 10px;
  padding: 5px;
}

#filters-sidebar input[type="checkbox"] {
  margin: 0 5px 0 10px;
}

#filters-sidebar .input-label,
#filters-sidebar .checkbox-label {
  display: flex;
  align-items: center;
  color: #555;
  cursor: pointer;
}

#filters-sidebar input{
  width: 100%;
  border: none;
  outline: none;
}

#filters-sidebar input:focus{
  outline: none;
  border: none;
}

#filters-sidebar .checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid #555;
  border-radius: 3px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  transition: background-color 0.3s, border-color 0.3s;
}

#filters-sidebar .checkbox-custom:checked {
  background-color: #4CAF50;
  border-color: #4CAF50;
}

/* Add unique styles for each filter group */
#filters-sidebar .price-group label {
  color: #E91E63;
  display: inline-flex;
  width: 47%;
  align-items: center;
}

#filters-sidebar .status-group label {
  color: #673AB7;
  display: inline-flex;
  width: 31%;
  align-items: center;
}

#filters-sidebar .floor-group label {
  color: #FFC107;
  display: inline-flex;
  width: 47%;
  align-items: center;
}



#filters-sidebar .rooms-group label {
  color: #2196F3;
  display: inline-flex;
  width: 47%;
  align-items: center;
}

#filters-sidebar .close {
  display: none;
  position: absolute;
  padding: 5px 10px;
  background-color: gainsboro;
  left: 20px;
  top: 15px;
}

.apartments-filter-btn {
  display: none !important;
}

@media screen and (max-width: 800px) {

  #filters-sidebar {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 9999999;
      overflow: auto;
  }

  #filters-sidebar .close {
      display: block;
  }

  .apartments-filter-btn {
      display: inline-block !important;
  }
}



/****************************************************************************/
/** archive project
/****************************************************************************/

  /* title */

  .selling-title {
    text-align: center;
    padding: 30px 0;
    margin: 50px 0;
  }

  .selling-title h2 {
      font-size: 40px;
      margin-bottom: 20px;
      color: #666;
  }

  .selling-title h5 {
      font-size: 20px;
      font-family: 'bahij-plain';
      color: #048BBD;
  }

  /* projects grid */
.selling-projects {
  overflow: hidden;
}
.sp-item {
  margin: 10px 0;
  transition: all .5s;
  box-shadow: 0 0 13px #0000000d;
}
.sp-item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: none;
  padding: 7px 20px;
}
.sp-item-head h3 {
  color: #666;
  font-size: 24px;
}
.sp-item-head-a {
  text-align: end;
}
.sp-item-head-a a {
  display: inline-block;
  font-size: 16px;
  margin-left: 5px;
  color: #999;
  transition: all .5s;
}
.sp-item-head-a i {
  font-style: normal;
  color: #999;
  font-size: 14px;
  position: relative;
  left: 3px;
}
.sp-item-head-stat {
  text-align: center;
}
.sp-item-head-stat span {
  display: block;
  font-size: 16px;
  color: #999;
  font-family: 'bahij-light';
}
.sp-item-head-stat strong {
  font-family: 'bahij-bold';
  font-size: 38px;
  line-height: 0px;
  position: relative;
  top: 8px;
  color: #777;
}

.sp-item-body {
  display: block;
  position: relative;
  height: 300px;
  overflow: hidden;
  transition: all .5s;
}
.sp-item-body span {
  display: flex;
  align-items: center;
  line-height: 50px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  background: #666666ad;
  border-top: solid 1px #ffffff38;
  width: 100%;
  font-size: 18px;
  color: #fff;
  font-family: "Helvetica Neue", sans-serif;
  letter-spacing: 1px;
  padding: 2px 25px;
}
.sp-item-body span em {
  font-style: normal;
  font-family: 'bahij-bold';
  font-size: 30px;
  margin: 0 7px;
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  background-color: #ffffff24;
  position: relative;
  color: #ffffff;
  border: solid 1px #c5c5c566;
}
.sp-item-body i {
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  z-index: 1;
  position: absolute;
  left: 30px;
  bottom: 0;
  font-style: normal;
  width: 55px;
  height: 70px;
  text-align: center;
  font-size: 12px;
  padding: 5px 0;
}

.sale {
  background-image: url('<?=THEME_URL?>/src/img/sale.jpg');
}

.sp-item-body img {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover;
  transition: all 1s;
}
.sp-item-body:hover img:not(.Sold-img) {
  transform: scale(1.1);
}

.sp-item.not-available .sp-item-body img {
  filter: grayscale(1);
}
  

/****************************************************************************/
/** single post
/****************************************************************************/

.single-post .site-content-inner {
  /* padding: 10px; */
  padding-top: 50px;
}

.single-post h1 {
  font-size: 40px;
  line-height: 50px;
  padding: 0 15px;
  margin-bottom: 25px;
}

.single-post article {
  padding: 0 15px;
}

.single-post .single-post-content .thumbnail figure img {
  max-width: 100%;
  width: 100%;
  height: 400px;
  border-radius: 15px;
  object-fit: cover;
}
@media screen and (max-width: 800px) {
  .single-post .site-content-inner {
    padding-top: 0;
  }

  .single-post h1 {
    padding: 0;
    font-size: 25px;
    line-height: 34px;
    margin-top: 20px;
  }

  .single-post article {
    padding: 0;
  }

  .single-post .single-post-content .thumbnail figure img {
    height: 250px;
  }
}

/*  */



/****************************************************************************/
/** WooCommerce
/****************************************************************************/


.loading {
  position: relative;
  opacity: 0.25;
  padding-left: 2.618em;
}
.loading::after {
  font-family: WooCommerce;
  content: "\e01c";
  vertical-align: top;
  font-weight: 400;
  position: absolute;
  top: 0.4em;
  left: 0.75em;
  animation: spin 2s linear infinite;
}

.woocommerce-message{
  border-top-color: #26ae1b;
}

.woocommerce-message::before {
  color: #26ae1b;
}

.woocommerce-info {
  border-top-color: #5d5a88;
}

.woocommerce-info::before {
  color: #5d5a88;
}

.woocommerce-warning{
  padding: 1em 2em 1em 3.5em;
  margin: 0 0 2em;
  position: relative;
  background-color: #f7f6f7;
  color: #515151;
  border-top: 3px solid #ffa800;
  list-style: none outside;
  width: auto;
  word-wrap: break-word;
}
.woocommerce-warning::before {
  font-family: WooCommerce;
  display: inline-block;
  position: absolute;
  top: 1em;
  left: 1.5em;
  content: "\e016";
  color: #ffa800;
}
.woocommerce-warning::after {
  content: " ";
  display: table;
  clear: both;
}


.cam-title{
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 80px;
  color: #333; /* Set your desired text color */
  position: relative;
  display: inline-block;
}