:root {
  --building-color: #FF9800;
  --house-color: #0288D1;
  --shop-color: #7B1FA2;
  --warehouse-color: #558B2F;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif
    /*rtl:Amiri, Georgia, "Times New Roman", serif*/
  ;
}

a {
  text-decoration: none;
}

.android,
.ios,
.win {
  width: 166px;
  height: 47px;
  display: inline-flex;
  background: url('../images/micons.png') no-repeat;
}

.topphone {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}
.property {
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 50%;
  color: #263238;
  display: flex;
  font-size: 14px;
  gap: 15px;
  height: 30px;
  justify-content: center;
  padding: 4px;
  position: relative;
  position: relative;
  transition: all 0.3s ease-out;
  width: 30px;
}

.property::after {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #FFFFFF;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: 95%;
  transform: translate(-50%, 0);
  transition: all 0.3s ease-out;
  width: 0;
  z-index: 1;
}

.property .icon {
  align-items: center;
  display: flex;
  justify-content: center;
  color: #FFFFFF;
}

.property .icon svg {
  height: 20px;
  width: auto;
}

.property .details {
  display: none;
  flex-direction: column;
  flex: 1;
}

.property .address {
  color: #9E9E9E;
  font-size: 10px;
  margin-bottom: 10px;
  margin-top: 5px;
}

.property .features {
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.property .features > div {
  align-items: center;
  background: #F5F5F5;
  border-radius: 5px;
  border: 1px solid #ccc;
  display: flex;
  font-size: 10px;
  gap: 5px;
  padding: 5px;
}

/*
 * Property styles in highlighted state.
 */
.property.highlight {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
  height: 80px;
  padding: 8px 15px;
  width: auto;
}

.property.highlight::after {
  border-top: 9px solid #FFFFFF;
}

.property.highlight .details {
  display: flex;
}

.property.highlight .icon svg {
  width: 50px;
  height: 50px;
}

.property .bed {
  color: #FFA000;
}

.property .bath {
  color: #03A9F4;
}

.property .size {
  color: #388E3C;
}

/*
 * House icon colors.
 */
.property.highlight:has(.fa-house) .icon {
  color: var(--house-color);
}

.property:not(.highlight):has(.fa-house) {
  background-color: var(--house-color);
}

.property:not(.highlight):has(.fa-house)::after {
  border-top: 9px solid var(--house-color);
}

/*
 * Building icon colors.
 */
.property.highlight:has(.fa-building) .icon {
  color: var(--building-color);
}

.property:not(.highlight):has(.fa-building) {
  background-color: var(--building-color);
}

.property:not(.highlight):has(.fa-building)::after {
  border-top: 9px solid var(--building-color);
}

/*
 * Warehouse icon colors.
 */
.property.highlight:has(.fa-warehouse) .icon {
  color: var(--warehouse-color);
}

.property:not(.highlight):has(.fa-warehouse) {
  background-color: var(--warehouse-color);
}

.property:not(.highlight):has(.fa-warehouse)::after {
  border-top: 9px solid var(--warehouse-color);
}

/*
 * Shop icon colors.
 */
.property.highlight:has(.fa-shop) .icon {
  color: var(--shop-color);
}

.property:not(.highlight):has(.fa-shop) {
  background-color: var(--shop-color);
}

.property:not(.highlight):has(.fa-shop)::after {
  border-top: 9px solid var(--shop-color);
}

a.topphone:hover {
  color: #d5a20a;
}

header {
  border-bottom: 2px #ffc107 dashed;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}
#preloader.hide-preloader {
  animation: hidePreloader 1s;
}

#preloader.preloader-hidden {
  display: none;
}

@keyframes hidePreloader {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}
.bg-success a,
.bg-secondary a {
  color: #fff820;
}

.ios {
  background-position: -168px 0;
}

.win {
  background-position: -342px 0;
}

.ourapps {
  background-color: #eee;
  margin: 10px 0;
  padding: 20px;
  border-radius: 10px;
}

.tmuser {
  background-color: #cfcfcf;
  padding: 2px 5px;
  text-align: center;
}

.flogo {
  height: 32px;
  filter: grayscale(1);
}

.btn-light2 {
  color: #000;
  background-color: #ebebeb;
  border-color: #ebebeb;
}

.display-4 {
  font-size: 2.5rem;
}

@media (min-width: 768px) {
  .display-4 {
    font-size: 3rem;
  }
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.nav-scroller .nav-link {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: .875rem;
}

.card-img-right {
  height: 100%;
  border-radius: 0 3px 3px 0;
}

.flex-auto {
  flex: 0 0 auto;
}

.h-250 {
  height: 250px;
}

@media (min-width: 768px) {
  .h-md-250 {
    height: 250px;
  }
}

/* Pagination */
.blog-pagination {
  margin-bottom: 4rem;
}

.blog-pagination>.btn {
  border-radius: 2rem;
}

/*
 * Blog posts
 */
.blog-post {
  margin-bottom: 4rem;
}

.blog-post-title {
  margin-bottom: .25rem;
  font-size: 2.5rem;
}

.blog-post-meta {
  margin-bottom: 1.25rem;
  color: #727272;
}

/*
 * Footer
 */
.blog-footer {
  padding: 2.5rem 0;
  color: #727272;
  text-align: center;
  background-color: #f9f9f9;
  border-top: .05rem solid #e5e5e5;
}

.blog-footer p:last-child {
  margin-bottom: 0;
}

.brd-1 {
  position: relative;
  border: solid #dee2e6;
  padding: 1.5rem;
  margin: 5px 0;
  border-width: 1px;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

strong>span {
  color: green;
}

th#stb-final-price {
  color: #ffbc00;
  background-color: #6c757d;
  text-align: center;
}

.bgr {
  background-color: #bfe1bf !important;
  font-weight: bold;
  color: #fb4600;
}

#questions .row {
  background-color: #347089;
}

#questions {
  padding: 20px 0;
}

#questions .col {
  padding-left: 60px;
  margin-top: 20px;

}

#questions label span {
  color: bisque;
}

#questions label {
  cursor: pointer;
}

#questions label:hover {
  color: #ffbc00;
}

#questions hr {
  padding: 0;
  margin: 0;
}

button.cbtn {
  background-color: #d1e7dd;
  border: none;
  font-weight: bold;
}

#ctable .adjc, .eadj {
  cursor: pointer;
}
#eadj{
  position: absolute;
  width: 220px;
  height: 48px;
  color: #fff;
  padding: 15px;
}
img.i24 {
  width: 24px;
  height: 24px;
}
.comp-title {
  position: relative;
  min-width: 176px;
}
.badj{
  position: relative;
}
.badj > button{
  position: absolute;
  right: 3px;
  top: 4px;
  width: 32px;
  height: 32px;
  background: #b8d7c9 url(../images/icons/arrow-repeat.svg) no-repeat 50% 50%;
  background-size: cover;
  border-radius: 3px;
  border: #a7b9b1 1px solid;
}
input.bgr{
  background-color: #dc3545 !important;
  color: #fff;
}
.mbtn {
  height: 16px;
  background-color: #244633;
  color: #d1e7dd;
  padding: 3px 5px;
  margin: 10px 10px 5px 0;
  border-radius: 4px;
  cursor: pointer;
}
.labels{
  background-color: red;
}
#search-result{
  font-weight: bold;
  font-size: 18px;
  color: yellow;
}
.mbtn:hover {
  color: #d5a20a;
}
.comp-title button{
  position: absolute;
  right: 1px;
  top: 1px;
  background-size: contain;
  height: 28px;
  width: 28px;
}
.comp-title .cdel{
  background: #d1e7dd url(../images/icons/delete.png) no-repeat 50% 50%;
}
.comp-title .cadd{
  background: #d1e7dd url(../images/icons/plus.png) no-repeat 50% 50%;
}

#filterbar {
  border-top: #b3b0aa 1px dotted;
  background-color: #6c757d;
}
#filterbar > .row {
  background-color: #6c757d;
  padding-bottom: 10px;
}

#filterbar .form-text {
  color: #c1bdbd;
}

#filterbar label {
  color: #ffc107;
  font-weight: 600;
}

#filterbtn {
  background-color: #ffbc00;
  padding: 3px;
}

.gheader {
  background-color: #6c757d;
  color: white;
  font-weight: bold;
  padding: 10px;
  border-radius: 5px 5px 0 0;
}

.qheader {
  background-color: #244633;
  color: white;
  font-weight: bold;
  padding: 10px;
}

#complist label>span {
  display: inline-block;
  color: #ffc107;
  width: 160px;
}

#complist label {
  width: 100%;
}

#complist label:hover {
  background-color: #ffc107;
  color: white;
}

#complist label:hover>span {
  color: white;
}

#addcompbar {
  background-color: #6c757d;
  color: white;
  padding: 8px 0;
  margin-top: 10px;
}

#addcompbar button {
  margin-top: 30px
}

#cclickbtns button {
  margin: 2px;
}

.fpricet,
.fprice {
  font-weight: bold;
  font-size: 18px;
  padding: 2px;
}

.fprice a {
  color: #f5ffa0;
}

.mainp {
  color: #d5a20a;
  font-weight: bold;
}

.fpricet {
  text-align: right;
  color: #fff;
}

#c2table input[type=number] {
  text-align: right;
}

#c2table td,
#c2table th {
  background-color: #e2e5e3;
}

#recalcbtns button {
  margin: 20px 3px;
}

#final-frice-text {
  color: #f5ffa0;
  padding: 0 24px;
  border-top: 1px #f5ffa0 dotted;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
}

#fdiv {
  height: 32px;
  background-color: #347089;
  z-index: 9999;
}

.bd-callout {
  padding: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  background-color: var(--bd-callout-bg, var(--bs-gray-100));
  border-left: 0.25rem solid var(--bd-callout-border, var(--bs-gray-300));
}

#tfinalprice {
  color: #fb4600;
}

#searchbyidbtn {
  margin-top: 31px;
}

.ctitles {
  position: relative;
}

.ctitles button {
  position: absolute;
  right: 0;
  top: 1px;
}

.bd-callout h4 {
  margin-bottom: 0.25rem;
}

.bd-callout> :last-child {
  margin-bottom: 0;
}

.bd-callout+.bd-callout {
  margin-top: -0.25rem;
}

.bd-callout .highlight {
  background-color: rgba(0, 0, 0, 0.05);
}

.bd-callout-info {
  --bd-callout-bg: rgba(var(--bs-info-rgb), 0.075);
  --bd-callout-border: rgba(var(--bs-info-rgb), 0.5);
}

.bd-callout-warning {
  --bd-callout-bg: rgba(var(--bs-warning-rgb), 0.075);
  --bd-callout-border: rgba(var(--bs-warning-rgb), 0.5);
}

.bd-callout-danger {
  --bd-callout-bg: rgba(var(--bs-danger-rgb), 0.075);
  --bd-callout-border: rgba(var(--bs-danger-rgb), 0.5);
}
 
.sp1 > input::-webkit-outer-spin-button,
.sp1 > input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media print {
  header,
  footer,
  nav {
    display: none;
  }
  .container{
    margin-left: 5px;
    margin-right: 5px;
  }
  th#stb-final-price {
    color: #000;
    background-color: #fff;
    text-align: center;
    font-weight: bold;
  }
  .btn-secondary {
    color: #000;
    background-color: #fff;
    border-color: #fff;
  }
}