.card-img-top {
  border-radius: 0.6rem 0rem 0rem 0.6rem !important;
}

/* Preloader */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

/* ---- SPINNER CSS ---- */

#spinner {
  background: #fff;
  height: 100%;
  left: 0;
  opacity: 1;
  filter: alpha(opacity=100);
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 999999999;
}

.spinner-img {
  height: 100%;
  left: 0;
  position: fixed;
  top: 35%;
  width: 100%;
}

ul.cont-icon-list li.ad-favourited,
.detail-list ul.cont-icon-list li.ad-favourited {
  background: red;
}
ul.cont-icon-list li.ad-favourited a svg.iconify.icon-start path {
  fill: #fff;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #3498db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 1001;
}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #e74c3c;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f9c922;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #222222;
  z-index: 1000;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
#loader-wrapper .loader-section.section-left {
  left: 0;
}
#loader-wrapper .loader-section.section-right {
  right: 0;
}
.loading {
  /* display: none; */
  position: fixed;
  z-index: 99999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
/* Transparent Overlay */
.loading:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.loading:not(:required):after {
  content: "";
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0,
    rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0,
    rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0,
    rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0,
    rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0,
    rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0,
    rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0,
    rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0,
    rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}
/* Animation */
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}
span.adforest-search-spinner i {
  animation: spinner 1500ms infinite linear;
}
.adforest-search-spinner {
  position: absolute;
  top: 10px;
  right: 10px;
}
/* JavaScript Turned Off */
.no-js #loader-wrapper {
  display: none;
}
.no-js h1 {
  color: #222222;
}
#loadMore {
  transition: all 600ms ease-in-out;
  -webkit-transition: all 600ms ease-in-out;
  -moz-transition: all 600ms ease-in-out;
  -o-transition: all 600ms ease-in-out;
}
.sugar-hero .new-select-categories .pac-target-input {
  height: 55px;
  border-radius: 0;
}
.heart-icons-1 i {
  color: #242424;
}
.heart-icons-1 i:hover {
  color: red;
}
.heart-icons-1 .ad-favourited i:hover {
  color: red;
}
.contact-us-section .form-control {
  padding: 15px 20px;
}
.heart-icons-1 {
  position: absolute;
  top: 15px;
  right: 20px;
  background: #fff;
  width: 30px;
  height: 30px;
  line-height: 2;
  text-align: center;
  border-radius: 50%;
}
.widget.my-quicklinks ul li {
  display: block;
}
.adforest-owner-text p {
  color: red;
}
.fr-address_star {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#hero_product_slider {
  padding-top: 80px;
}
.found-listing-head p {
  margin-top: -5px;
  width: 70%;
  color: #919191;
  margin-bottom: 10px;
}
.btn-detailing {
  background: #f5f5f5;
  padding: 8px 18px;
  font-weight: 500;
  border-radius: 5px;
  border: 1px solid #f4f4f4;
  color: #242424;
  font-size: 14px;
}
.detail-list span {
  color: #777;
}
.detail-list .rating-animate .rating-stars .filled-stars span.star i {
  color: #ffc220;
}
.ad-detail-2-details .review-content-item,
.detail-list .review-content-item {
  margin-bottom: 30px;
}

.aln-img {
  position: absolute;
  bottom: 22px;
  left: 20px;
  z-index: 1;
}
.product-main-heading {
  padding: 10px;
  margin-top: 10px;
}
.product-main-heading .product-heading {
  padding: 0;
}

.product-main-heading .product-heading h3 {
  color: #ffc220;
}
.star-shining {
  position: absolute;
  right: 20px;
}
.overlay-feature .star-shining {
  position: absolute;
  right: 5px;
  bottom: 0;
  padding: 20px;
  z-index: 1;
}
.found-adforest-sorting ul.found-sort-item li a {
  color: #242424;
}
.star-shining img {
  width: 34px;
  height: 34px;
}
.feature-img-content .overlay-feature .star-shining i {
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}
.product-heading p {
  color: #919191;
  margin-bottom: 10px;
}
.product-heading h4 {
  color: #ffc220;
  line-height: 1;
}
.detail-btn {
  position: absolute;
  right: 30px;
  bottom: 27px;
}
.detail-btn a {
  border: 1px solid #eee;
  background: #fff;
  color: #242424;
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
}
.car-property {
  border-radius: 0.6rem;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 12%), 0 2px 4px 0 rgb(0 0 0 / 8%);
  transition: 0.5s;
}
.aln-img img {
  border-radius: 50% !important;
  min-height: 40px !important;
  width: 40px !important;
  position: absolute;
  z-index: 1;
}
.aln-img span a {
  color: #ffffff;
}
.aln-img span {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 0px 15px 15px 0px;
  padding: 6px 18px;
  font-size: 12px;
  margin-left: 30px;
  position: relative;
  top: 5px;
}
.gp-great-product figure.great-product:hover {
  background: #fff;
  transition: 0.8s;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 12%), 0 2px 4px 0 rgb(0 0 0 / 8%);
}
.gp-great-product figure.great-product {
  transition: 0.8s;
}
.great-product-herro:after {
  content: "";
  background-image: url(../images/prodcut-bg-shadow.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 36%;
  width: 100%;
  opacity: 0.8;
  border-radius: 0 0 0 8px;
  position: absolute;
  bottom: -1px;
  left: 0;
}
a.the-beat-chaff {
  font-size: 20px;
  color: #242424;
  text-decoration: none;
  font-weight: 700;
}
.detail-btn a:hover {
  border: 1px solid #ffc220;
  background: #ffc220;
  color: #fff;
}
.product-heading h2 {
  margin-top: -5px;
  margin-bottom: 4px;
  width: max-content;
}
span.address-tiem {
  color: #777777;
  font-size: 16px;
}
.tooltip1 .tooltiptext {
  visibility: hidden;
  width: 100px;
  background-color: black;
  color: #fff;
  text-align: center;
  font-size: 14px;
  border-radius: 6px;
  padding: 0px 0px;
  transition: 0.8s;
  position: absolute;
  right: -38px;
  top: -40px;
  z-index: 1;
}
.great-product-content .tooltip1 .tooltiptext {
  right: -38px;
}
.nothing-found h3 {
  font-family: Poppins;
  line-height: 36px;
  font-weight: 500;
  font-style: normal;
  color: #000000;
  font-size: 26px;
  font-display: swap;
}
.nothing-found img {
  width: 150px;
}
.nothing-found.white {
  background-color: #fff;
  box-shadow: 1px 0px 20px rgb(0 0 0 / 7%);
}
.nothing-found {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  flex-direction: column;
  background-color: #f4f6f9;
  border-radius: 4px;
  height: 400px;
  margin-bottom: 30px;
}
.overlay-feature .tooltip1 .tooltiptext {
  right: -15px;
  top: -25px;
}
.sb-list .overlay-feature .tooltip1 .tooltiptext {
  right: -25px;
  top: -35px;
}
.tooltip1:hover .tooltiptext {
  visibility: visible;
}
.bs-example {
  margin-top: 30px;
}
.great-pro-head p {
  margin-bottom: 20px;
}
ul.child-list-item {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  list-style: none;
}
.furnit-item {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  text-align: center;
  background: #1a1a1a;
}
button.btn-ads:before {
  position: absolute;
  content: "";
  left: -21px;
  bottom: 5px;
  border-style: solid;
  transition: 0.8s;
  border-width: 10px 10px 10px 10px;
  border-color: #191919 transparent transparent transparent;
  transition-duration: 0.3s;
  transform: rotate(90deg);
}
.star-shining span.tooltiptext:before {
  position: absolute;
  content: "";
  right: 35px;
  bottom: -20px;
  border-style: solid;
  border-width: 10px 10px 10px 10px;
  border-color: #000000 transparent transparent transparent;
  transform: rotate(0deg);
}
.furnit-item img {
  position: relative;
  top: 12px;
  width: 28px;
  height: 28px;
}
ul.list-group.list-group-flush li.list-group-item {
  border-bottom: 1px solid #191919;
}
span.span-furniture {
  position: absolute;
  top: 24px;
  left: 100px;
  color: #fff;
}
.btn-ads {
  background: #191919;
  border: 1px solid #191919;
  padding: 0px 10px;
  font-size: 13px;
  border-radius: 3px;
  color: #717171;
  position: relative;
}
ul.list-group.list-group-flush li {
  padding: 7px;
  background-color: #242424;
}
.main-categories {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  background: #1a1a1a !important;
  padding: 20px;
  border-radius: 5px 5px 0px 0px !important;
}
.card.categories {
  margin-top: 40px;
  width: 23rem;
  border: 0;
}
.work-num {
  background: #ff1e38;
  width: 55px;
  height: 55px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  line-height: 3.3;
  margin-bottom: 10px;
}
.doted-bg {
  position: relative;
  z-index: 1;
}
.account-head {
  padding: 50px 40px;
}
.account-head p {
  margin-bottom: 0;
}
.bg-icon img {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
}
.work-numi {
  background: #7001d3;
  border-radius: 50%;
  height: 55px;
  width: 55px;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
  line-height: 3.5;
  margin: auto;
  margin-bottom: 10px;
}
.work-numi:before {
  content: "";
  /*background: url(https://adforest-pro.scriptsbundle.com/wp-content/themes/adforest-pro/images/blue126.png);*/
  height: 100%;
  width: 100%;
  margin-left: -14px;
  z-index: -1;
  position: absolute;
  top: -7px;
  background-repeat: no-repeat;
}
.work-numb:before {
  content: "";
  /*background: url(https://adforest-pro.scriptsbundle.com/wp-content/themes/adforest-pro/images/pink124.png);*/
  height: 100%;
  width: 100%;
  margin-left: -18px;
  z-index: -1;
  position: absolute;
  top: -5px;
  background-repeat: no-repeat;
}
.work-num:before {
  content: "";
  /*background: url(https://adforest-pro.scriptsbundle.com/wp-content/themes/adforest-pro/images/red125.png);*/
  height: 100%;
  width: 100%;
  z-index: -1;
  position: absolute;
  left: 0;
  top: -5px;
  background-repeat: no-repeat;
}
.work-numb {
  background: #ff7225;
  width: 55px;
  height: 55px;
  text-align: center;
  color: #fff;
  line-height: 3.3;
  border-radius: 50%;
  margin-left: auto;
  margin-bottom: 10px;
}
.card-body.sell-your p {
  margin-bottom: 0;
}
.bg-icon img {
  width: 38%;
}
.bg-icon2 img {
  width: 38%;
}
.card.see-work {
  border-radius: 0;
  border: 0;
}
.card.see-working {
  border-radius: 0;
  border: 0;
}
.row.wrap-pad {
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.card.see-work {
  border-radius: 0;
  border: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.125);
}
.see-it-work h2 {
  margin-bottom: 0;
}
.see-it-work {
  text-align: center;
  margin-bottom: 50px;
}
section.how-its-work {
  padding: 0px 0px 70px;
  display: none;
}
.bg-icon3 img {
  width: 38%;
}
.bg-icon-3 {
  position: absolute;
  top: 10px;
}
.sell-your {
  text-align: right;
  padding: 50px 40px;
}
.bg-icon-2 {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.work-section-content {
  border: 1px solid #eee;
  padding: 40px 31px;
}
.icon-img img {
  width: 100%;
  width: 100px;
  margin: -20px auto;
}

.product-front img {
  width: 100%;
  border-radius: 0px 8px 0px 0px;
}
span.product_price {
  float: right;
}
.stats {
  background-color: #fff;
  padding: 20px;
}
.tooltip2 .tooltiptext {
  visibility: hidden;
  width: 100px;
  background-color: black;
  color: #fff;
  text-align: center;
  font-size: 14px;
  border-radius: 6px;
  padding: 3px 0px;
  position: absolute;
  right: 1px;
  top: 3px;
  z-index: 1;
}
.tooltip2:hover .tooltiptext {
  visibility: visible;
}
.gp-great-product {
  padding: 80px 0px;
}
.gp-great-product .great-product-content p {
  margin-bottom: 5px;
  line-height: 1.6;
  color: #919191;
  width: 100%;
}
input {
  outline: 0;
}
.oerlay-img {
  position: absolute;
  top: 0;
  height: 81.5%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0px 10px 0px 0px;
}
.product-card:hover {
  transition: 1.5s;
}
.product-card:hover {
  transform: scale(0.95);
}
.feature-heart-icon {
  position: absolute;
  top: 20px;
  right: 40px;
  background: #fff;
  width: 30px;
  line-height: 2;
  text-align: center;
  height: 30px;
  border-radius: 50%;
}
.feature-heart-icon i:hover {
  color: red;
}
.feature-pro-head {
  position: absolute;
  bottom: 71px;
  left: 15px;
}
.feature-pro-head h3 {
  color: #ffc220;
}
.feature-pro-head h5 {
  color: #fff;
}

.red-white-star {
  border-width: 22px;
  border-style: solid;
  border-color: #bf0820 transparent transparent #bf0820;
  position: absolute;
  top: 0px;
  left: 0px;
}
.product-card {
  position: relative;
  transition: 1.5s;
  margin-bottom: 30px;
}

.feature-head h2 {
  margin-bottom: 0px;
}
section.get-app {
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
}
.chose-catgory-heading h2 {
  font-size: 25px;
  font-weight: 500;
}
.basic-information-heading
  .form-section
  span.select2.select2-container.select2-container--default {
  margin-bottom: 10px;
}
.form-group.cats-dropdown label.control-label {
  margin-bottom: 10px;
}
input#save_email {
  position: absolute;
  right: 24px;
  padding: 10px 20px;
  border-radius: 5px;
}
.will-never input#sb_email {
  background: #ffffff;
  width: 90%;
  border: 1px solid #ffffff;
  border-radius: 5px;
  padding: 10px 15px;
  position: relative;
}
.will-never form {
  position: relative;
  margin-top: 24px;
}
.feature-img-content:after {
  content: "";
  background-image: url(../images/prodcut-bg-shadow.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  /*opacity: 0.8;*/
  border-radius: 0 0 5px 5px;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.bottom-left p {
  margin-bottom: 0px;
  color: #ffffff;
  z-index: 1;
}
.great-product-content span i {
  margin-right: 5px;
  color: #777;
}
.great-product-content span {
  color: #777;
  font-size: 15px;
}
#clients {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#clients .clients-wrap {
  display: block;
  width: 95%;
  margin: 0 auto;
  overflow: hidden;
}
.home-category-slider .category-slider {
  z-index: 0;
}
#clients .clients-wrap ul {
  display: block;
  list-style: none;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

#clients .clients-wrap ul li {
  display: block;
  float: left;
  position: relative;
  width: 220px;
  height: 100px;
  line-height: 100px;
  text-align: center;
}
#clients .clients-wrap ul li img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: 0 linear left;
  -moz-transition: 0 linear left;
  transition: 0 linear left;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
  filter: alpha(opacity=65);
  opacity: 0.65;
}
#clients .clients-wrap ul li img:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}

ul.free-shipping-1 li {
  display: inline-block;
  padding: 0px 5px;
}
li.fre-ship {
  margin-top: -23px !important;
  position: relative;
  top: -18px;
}
.client-adfor {
  background-size: cover;
  border-bottom: 1px solid #eee;
  background-color: #f3f3f3;
}
.sb-modern-sale {
  position: relative;
}
.sb-modern-sale img {
  width: 108px;
  height: 45px;
  position: absolute;
  z-index: 2;
  right: 0px;
}
.sb-modern-sale .sale-text {
  position: absolute;
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
  z-index: 3;
  right: 27px;
  top: 4px;
  font-weight: bold;
}
.pg-new .source-content ul li {
  font-size: 18px;
  line-height: 40px;
  color: #777777;
}
.search-bg {
  height: 800px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.header-shadow-wrapper {
  display: none;
}
.clasfied-head {
  text-align: center;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding-top: 200px;
}
ul.dropdown-user-login li a {
  color: #fff;
}
.clasfied-head h1 {
  color: #fff;
  font-size: 65px;
  margin-top: 20px;
  line-height: 60px;
  font-weight: 700;
  margin-bottom: 55px;
}
.clasfied-head div#client-logos {
  margin-top: 85px;
}
.sb-header.header-transparent.header-shadow.viewport-lg.header-transparent-on {
  /*border-bottom: 1px solid;*/
}
.sb-header.sb-header-5 {
  border-bottom: 1px solid;
}
.clasfied-head span {
  font-size: 20px;
}
.reguler-label {
  color: #fff;
}
.s013 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  width: 72%;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto;
  background-size: cover;
  background-position: center center;
  padding: 15px;
  border-radius: 8px;
  margin: 0 auto;
}
.s013 form {
  width: 100%;
  max-width: 914px;
  margin: 0;
}
.s013 form .inner-form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff;
  padding: 0px 5px;
  border-radius: 8px;
}
.s013 form .inner-form .left {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
}
.blog-sidebar .widget.widget-content ul {
  border: 1px solid #eee;
}

.blog-sidebar .widget.widget-content ul li {
  padding: 15px 16px;
  border-bottom: 1px solid #eee;
}
.s013 form .inner-form .input-wrap.first {
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-radius: 3px 0 0 3px;
}
.s013 form .inner-form .input-wrap {
  background: #fff;
  height: 80px;
  position: relative;
  padding: 20px 25px 20px 65px;
}
.input-field.first {
  margin-top: -10px;
}
.s013 form .inner-form .input-wrap.second {
  width: 50%;
  border-radius: 0 3px 3px 0;
  border-left: 1px solid #e5e5e5;
}
.input-field.second {
  margin-top: -10px;
}
.s013 form .inner-form .input-wrap .input-field label {
  font-size: 18px;
  display: block;
  color: #242424;
  float: left;
}
i.fa.fa-search.search-icon-1 {
  position: absolute;
  left: 10px;
  top: 20px;
  color: #242424;
  background: #fffae7;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 2.5;
}
.s013 form .inner-form .input-wrap .input-field input {
  font-size: 16px;
  color: #333;
  background: transparent;
  width: 100%;
  outline: 0;
  border: 0;
  padding: 0px 0;
}
.location-select {
  position: absolute;
  left: 0;
  margin: 8px 10px;
  color: #242424;
  background: #fffae7;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 2.5 !important;
}

/* Rating Image CSS */

.write-review .review-content-item {
  margin-left: 0;
  width: calc(100% - 100px);
}
.write-review .review-list {
  margin-bottom: 10px;
}
.write-review .review-img-container {
  width: 100px;
  height: 76px;
  margin-bottom: 5px;
}
.write-review .review-img-container img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
/* Rating Image CSS */

.slick-prev,
.slick-next {
  position: absolute;
  top: 135%;
  font-size: 1.8rem;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slide {
  transition: filter 0.4s;
  margin: 0px 40px;
}
.slick-prev {
  left: 0;
}
.slick-prev,
.slick-next {
  position: absolute;
  top: 35%;
  font-size: 1.8rem;
}
ul.list-sign-in li {
  display: inline-block;
  padding: 10px;
}
.sticky ul.list-sign-in li {
  display: inline-block;
  padding: 12px 10px;
}
.list-sign-in a.sign-up-line::before {
  content: "/";
  position: absolute;
  margin: auto -12px;
}
ul.list-sign-in .login-me a,
ul.list-sign-in .register-me a {
  font-weight: 500;
  color: #242424;
  font-size: 15px;
}
.search-bg:after {
  content: "";
  border-bottom: 1px solid #eeeeee;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  position: absolute;
  bottom: 135px;
  z-index: -1;
}
/*---------------------------
----------------------------*/
.dropdown-user-login {
  display: none;
}
ul.dropdown-user-login li {
  padding: 5px 10px !important;
}

a.menu-item {
  color: #fff;
}
.main-search-bar .select2-selection--single .select2-selection__rendered {
  padding-right: 30px;
  line-height: 53px;
}

.search-section
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  padding-right: 30px;
  line-height: 53px;
}

.great-product .great-product-herro {
  width: 350px;
  height: 237px;
}

a.login-user img {
  border-radius: 50%;
  width: 35px;
  height: 35px;
  border: 3px solid #fff;
  margin-top: -5px;
}
.sb-header.sb-header-7.sticky ul.dropdown-user-login {
  margin: 18px auto;
}
.sb-header.sb-header-5.sticky .sign-in-up,
.sb-header.sb-header-5 .sign-in-up {
  margin-top: 5px;
}
.sb-header.sb-header-7 ul.dropdown-user-login {
  position: absolute;
  right: 0;
}
li#lang_switcher a {
  color: #232323;
}
.sign-in-up ul.list-sign-in li {
  padding: 24px 5px;
}

.sticky .sign-in-up ul.list-sign-in li {
  padding: 10px 5px;
}

ul.dropdown-user-login {
  position: absolute;
  z-index: 1000;
  background: #242424;
  margin: 25px auto;
  padding: 20px;
  width: 200px;
  border-top: 3px solid #ffc220;
}
.sb-header.sb-header-9 ul.dropdown-user-login {
  right: 0;
}
.sb-header.sb-header-5 ul.dropdown-user-login {
  margin: 22px auto;
}
ul.dropdown-user-login li i {
  margin-right: 5px !important;
  background: transparent !important;
  border: 0 !important;
}
.s013 .select2-container--default .select2-selection--single {
  background-color: transparent;
  border: 0;
  outline: none;
}
.s013 .select2-container {
  box-sizing: border-box;
  display: inline-block;
  position: absolute;
  left: 17px;
  width: 75% !important;
  top: 37px;
  left: 57px;
  vertical-align: middle;
  /* border: none; */
  /* background: forestgreen; */
}
.s013
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: -9px;
}
.s013
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #6c7073;
  line-height: 34px;
  height: 42px;
  font-size: 16px;
  float: left;
}
.btn-theme:focus {
  outline: 0;
}
.btn-theme:hover {
  transition: 0.5s !important;
  box-shadow: 0 0.5rem 1.125rem -0.5rem rgb(255 194 32 / 90%);
}
.s013 form .btn-theme {
  min-width: 120px;
  height: 64px;
  margin-right: 5px;
  white-space: nowrap;
  font-size: 16px;
  margin-top: 8px;

  transition: all 0.2s ease-out, color 0.2s ease-out;
  border: 0;
  cursor: pointer;
}
.percentsaving {
  z-index: 2;
  color: #ffffff;
  vertical-align: top;
  display: inline-block;
  padding: 0px 14px 0px;
  font-size: 12px;
  border-radius: 0px 6px 5px 0px;
  font-weight: 400;
  text-transform: uppercase;
  position: absolute;
  top: 22px;
  left: -8px;
  background-color: #d31423;
  opacity: 1;
  filter: alpha(opacity=100);
  transition: none;
}
.fold {
  position: absolute;
  left: 0px;
  bottom: -9px;
  display: block;
  height: 9px;
  width: 8px;
  z-index: 1;
  background: url(../images/fold.png) no-repeat 100% 100%;
}
.category-title span.padding_cats + span.padding_cats {
  margin-left: 3px;
}
.category-title a {
  font-size: 14px;
  margin-right: 4px;
}
.feature-img-content {
  position: relative;
  margin-bottom: 30px;
}
.feature-img-content img {
  border-radius: 5px !important;
  width: 100%;
}
.bottom-left {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 1;
}
.bottom-left h3 {
  font-size: 24px;
  color: #ffc220;
  font-weight: 700;
  margin-bottom: 1px;
}
.bottom-left span.address-bottom {
  z-index: 1;
  color: #eee;
  position: relative;
  top: 4px;
}
.bottom-left h4 a {
  color: #fff !important;
  font-size: 26px;
  font-weight: 500;
  margin-top: 5px;
  cursor: pointer;
  text-transform: capitalize;
}
.bottom-left h4 {
  margin-bottom: 5px;
}
.intro-btn a.btn.btn-theme.btn-round {
  text-transform: capitalize;
  border-radius: 40px;
  padding: 12px 40px;
}
.bottom-left span.address-bottom {
  color: #eee;
  position: relative;
  top: 4px;
}
.bottom-left span.address-bottom i {
  margin-right: 4px;
}
.feature-hear-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 2.2;
  border-radius: 50%;
  z-index: 1;
}
.feature-star-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.view-more-bottun {
  text-align: center;
  margin-top: 30px;
}
.sb-short-head {
  margin-bottom: 50px;
}
.sb-short-head.center {
  text-align: center;
}
.modern-new-pricing .sb-short-head h2 {
  margin-bottom: 20px !important;
}
.sb-short-head h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
  padding-top: 15px;
  text-transform: capitalize;
}
.how-its-worksss .sb-short-head h2,
.content-pricing .sb-short-head h2,
.cashew-its-work .sb-short-head h2,
.pistachio-classified-grid .sb-short-head h2 {
  margin-bottom: 40px;
}
.sb-short-head.center p {
  width: 50%;
  margin: auto;
}

/*----------------------------------
            Pricing Plan
------------------------------------*/
.package-pricing {
  display: flex;
  align-items: center;
}
.btn.sb_add_cart i.fa-long-arrow-right {
  margin: 0px 10px;
}
.card.basic-packages {
  border: 1px solid #eeeeee;
  margin-bottom: 0 !important;
  box-shadow: none !important;
}
.basic-pricing {
  padding: 30px;
  border-radius: 8px;
  background: #fff3ee;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
}
.form-control:focus {
  box-shadow: none;
}
.individual-pricing {
  padding: 30px;
  border-radius: 8px;
  background: #e8f8e7;
}
.standard-bg {
  border: 1px solid #fff;
  margin-bottom: 0 !important;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%) !important;
}
.pricing-icon-1 {
  background-color: #20b714;
  color: #fff;
  width: 60px;
  height: 60px;
  margin-top: 4px;
  text-align: center;
  line-height: 3.6;
  border-radius: 8px;
}
.pricing-pack-heading {
  margin: 0 20px;
}
.pricing-pack-heading h4 {
  font-size: 16px;
  font-weight: 500;
}
small.sale-value del {
  color: #777;
  font-size: 18px;
}
.pricing-item small.sale-value del {
  color: #f58936;
}
.pricing-item small.sale-value:before {
  content: "/";
  color: #f58936;
}
.modern-new-pricing span.f_custom {
  color: #777;
}
small.sale-value:before {
  content: "/";
  font-size: 20px;
  color: #20292f;
}
.pricing-icon {
  background-color: #fd875d;
  color: #fff;
  width: 60px;
  height: 60px;
  margin-top: 4px;
  text-align: center;
  line-height: 3.6;
  border-radius: 8px;
}
.pricing-pack-heading span {
  font-size: 34px;
}
.pricing-plan-heading {
  margin: 80px 0px 40px;
  text-align: center;
}
h6.h1 {
  font-weight: 700;
  font-size: 30px;
}
.sb_add_cart {
  background-color: #fff3ee;
  color: #fd875d;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
}

.btn-block.sb_add_cart:hover {
  color: #fd875d;
}
.btn.btn-block-1 {
  background-color: #e8f8e7;
  color: #20b714;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
}
.bg-lighting {
  background-color: #fff;
  padding: 20px 40px 30px;
  border-radius: 8px;
}
.bg-pricing-content {
  transition: 0.7s;
  border-radius: 8px;
}
.bg-pricing-content:hover {
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 12%), 0 2px 4px 0 rgb(0 0 0 / 8%);
  transform: translateY(-0.25em);
}
.form-join button.btn.btn-theme.btn-block {
  text-transform: capitalize;
}
.feat-product .bottom-left h4 span {
  font-size: 16px;
}
.bottom-left .new-price {
  font-size: 18px;
}
/*----------------------
-----------------------*/
.sale-pricing {
  height: 90px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: -1px;
  text-align: right;
  width: 102px;
  z-index: 2;
}
.sale-pricing span {
  background: #d2281e none repeat scroll 0 0;
  color: #fff;
  display: block;
  /* font: 700 10px/30px 'Source Sans Pro', sans-serif; */
  position: absolute;
  right: -25px;
  text-align: center;
  text-transform: uppercase;
  top: 17px;
  transform: rotate(45deg);
  width: 114px;
}
.video-play-button {
  position: absolute;
  z-index: 10;
  top: 58%;
  right: 10.1%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box !important;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}
.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #242424;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #242424;
  border-radius: 50%;
  transition: all 200ms;
}
.video-play-button:hover:after {
  background-color: #242424;
}
.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}
.video-play-button span {
  display: block;
  position: relative;
  top: 7px;
  left: 4px;
  text-align: center;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 24px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 16px solid transparent;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all ease 500ms;
}
.video-overlay.open {
  position: fixed;
  z-index: 1000;
  opacity: 1;
}
.video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms;
}
.video-overlay-close:hover {
  color: #fa183d;
}
.video-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}
.best-new {
  padding: 50px 0px;
  position: relative;
}
.best-new-img {
  position: relative;
  padding-top: 65px;
}
.best-new-img-2 {
  position: absolute;
  bottom: -90px;
  right: 0;
}
.popular-1 {
  height: 100px;
  width: 100px;
  border-radius: 10px 43px;
  background-color: #ffeded;
  position: absolute;
  top: 5%;
  left: 3%;
  z-index: 100;
}
.circles {
  position: absolute;
  right: 50px;
  bottom: 50px;
}
.best-new-content {
  padding: 50px 0px;
}
.best-new-content span {
  color: #ffc220;
  font-size: 20px;
}
.tag-content {
  display: flex;
}
.tag-icon {
  width: 50px;
  height: 50px;
  background: #ffffff;
  text-align: center;
  line-height: 3.1;
  color: #ffc220;
  border-radius: 5px;
}
.tag-content h5 {
  font-weight: 700;
}
.tag-heading {
  margin: auto 20px;
  line-height: 1;
}
.tag-heading p {
  color: #959595;
}
.best-new-content h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.best-new-content p {
  margin-bottom: 30px;
}
/*------Footer-------------
----------------------------*/
footer.wheel-footer {
  padding: 80px 0px;
}
.footer-black {
  background-color: #242424;
}
.contact-heading h2 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 700;
}
.footer-black .contact-heading h2 {
  color: #ffffff;
}

.will-never {
  background: #1d1d1d;
  padding: 25px;
  margin-bottom: 50px;
}
.will-never-send h3 {
  color: #eee;
  margin-bottom: 7px;
}
.input-group.email-input {
  padding: 20px 0px;
  text-align: end;
  align-items: center;
}
.input-group-text.bg-transparent.icon-mail-send {
  background: #ffc220 !important;
  border: 1px solid #ffc220;
  position: absolute;
  right: 2px;
  bottom: 21px;
  color: #242424;
  height: 40px;
}
.will-never-send p {
  color: #777777;
}
li a.page-link:hover {
  color: #242424;
}
.wheel-logo-img img {
  width: 170px;
}
.footer-p-heading p {
  padding: 10px 0px;
  margin-bottom: 10px;
  color: #777777;
  margin-top: 10px;
}
.follow-heading {
  padding: 0px 0px;
}
.footer-black ul.socials-links li {
  display: inline-block;
  padding: 3px 10px;
  background: #fff;
  margin-right: 5px;
  width: 35px;
  height: 35px;
  border-radius: 2px;
  text-align: center;
  color: #242424;
  margin-top: 5px;
}
ul.socials-links li:hover {
  background: #ffc220;
  color: #242424;
}
ul.socials-links li a {
  color: #242424;
}
ul.links-items {
  padding: 15px 0px;
}
ul.links-items li {
  padding: 3px 0px;
  list-style: none;
}
.info-filter h2 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 700;
}
.perfomance-explore h2 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 700;
}
.footer-black .city-links h2,
.footer-black .info-filter h2,
.footer-black .perfomance-explore h2,
.footer-black.city-links h2 {
  color: white;
}
.city-links h2 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 700;
}
ul.links-items li a {
  color: #777777;
  text-decoration: none;
}
.cpy_right {
  text-align: center;
  padding: 15px;
}
span.script-bundle {
  color: #ffc220;
}

.follow-heading h2 {
  font-size: 18px;
  font-weight: 700;
}
.ad-widget-title a:not(.collapsed):after {
  content: "\f068";
  font-family: "FontAwesome";
  display: block;
  height: 8px;
  margin-top: -4px;
  position: absolute;
  right: 6%;
  top: 38%;
  width: 8px;
}
.ad-widget-title a:after {
  content: "\f067";
  font-family: "FontAwesome";
  display: block;
  height: 8px;
  margin-top: -4px;
  position: absolute;
  right: 6%;
  top: 38%;
  width: 8px;
}
.footer-black .links-items-contact {
  background: #1a1a1a;
  padding: 0px 0px;
}
.copyright-heading {
  background-color: #242424;
}
p.copy-right {
  color: #fff;
}
.addess-heading h3 {
  font-size: 17px;
}
.footer-black .addess-heading h3 {
  color: #fff;
}
.addess-heading p {
  color: #375174;
  margin-top: -10px;
}
.footer-black .addess-heading p {
  color: #eee;
  margin-top: -5px;
}
.location-address {
  display: flex;
  padding: 20px 0px;
  margin-left: -5px;
}
.address-icon {
  margin: 5px 12px 0 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 2.3;
}
.footer-black .address-icon {
  background: #ffff;
}
.follow-heading ul.socials-links {
  margin-top: 10px;
}
.num-heading h3 {
  font-size: 17px;
}
.footer-black .num-heading h3 {
  color: #375174;
}
.num-heading p {
  color: #375174;
  margin-top: -10px;
}
.footer-black .num-heading p {
  color: #eee;
  margin-top: -5px;
}
.phone-num {
  display: flex;
  padding: 20px 0px;
}
.num-icon {
  margin: 5px 12px 0 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 2.3;
}
.footer-black .num-icon {
  background: #ffff;
}

.gmail-heading h3 {
  font-size: 17px;
}
.footer-black .gmail-heading h3 {
  color: #fff;
}
.gmail-heading p {
  color: #375174;
  margin-top: -10px;
}
.footer-black .gmail-heading p {
  color: #eee;
  margin-top: -5px;
}

.gmail-map .gmail-heading p {
  line-break: anywhere;
}

.gmail-map {
  display: flex;
  padding: 20px 0px;
}
.gmail-icon {
  margin: 5px 12px 0 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 2.3;
}
.footer-black .gmail-icon {
  background: #ffff;
}
.wb-heading h3 {
  font-size: 17px;
}
.footer-black .wb-heading h3 {
  color: #fff;
}
.wb-heading p {
  font-size: 16px;
  color: #375174;
  margin-top: -10px;
}
.footer-black .wb-heading p {
  color: #eee;
  margin-top: -5px;
}
.wb-links {
  display: flex;
  padding: 20px 0px;
}
.wb-icon {
  margin: 5px 12px 0 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 2.3;
}
.footer-black .wb-icon {
  background: #ffff;
}
.row.theme-created {
  width: 100%;
}
ul.list-sign-up li {
  display: inline-block;
  padding: 28px 10px;
}
.list-sign-up a.sign-up-line::before {
  content: "/";
  position: absolute;
  margin: auto -12px;
}
a.btn.btn-post-ad {
  background: #ffc220;
  border-radius: 8px;
  color: #242424;
}
.feature-section.ad-grid-6 .feature-shop-colors ul li a {
  color: #777;
}
ul.listning-list-all li {
  display: inline-block;
  padding: 15px 10px;
}
ul.listning-list-all li a {
  font-weight: 400;
  font-size: 16px;
  color: #242424;
}
.best-car-sale {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
ul.home-tab-list li {
  display: inline-block;
}
ul.home-tab-list li {
  display: inline-block;
}
ul.home-tab-list li::after {
  content: "";
  margin: auto 10px;
}

ul.home-tab-list li:last-child::after {
  content: "";
  margin: auto 10px;
}
ul.home-tab-list li a {
  color: #777777;
}
ul.clendar-head li {
  display: inline-block;
}
a.update-item::after {
  content: "";
  margin: auto 15px;
}
ul.clendar-head li a {
  color: #777777;
}
section.home-item-head {
  background: #eef3f7;
  padding-top: 40px;
  padding-bottom: 30px;
}
.offer-heading h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: -2px;
}
a.btn.btn-id-offer {
  background: #ddf0ea;
  padding: 1px 7px;
  font-size: 13px;
  margin-bottom: 3px;
}
.offer-heading span {
  float: right;
  color: #242424;
}
section.detail-list {
  background-color: #f3f3f3;
  padding-bottom: 50px;
}
.cont-list-detail {
  background: #fff;
  padding: 20px;
  margin-top: -225px;
  border-radius: 8px 8px 0px 0px;
}
.detail-list ul.cont-icon-list li {
  display: inline-block;
  border-radius: 5px;
  width: 50px;
  height: 50px;
  line-height: 2.8;
  text-align: center;
  background: #eef3f7;
  margin: auto 12px;
}
.detail-list .heading-detail {
  display: flex;
  margin-bottom: 20px;
}
.home-item-head .best-car-sale .offer-heading {
  margin-top: 20px;
}
ul.clendar-head li:last-child a.update-item::after {
  display: none;
}
.flexslider:first-child {
  margin-top: 30px;
}
.report-quote .modal-body form button {
  background: #ffc220;
  border: 1px solid #ffc220;
  color: #242424 !important;
}
.report-quote .modal-header .close span {
  color: #242424;
  font-size: 16px;
}
.report-quote .modal-body .select2-container {
  display: initial;
  position: inherit;
}
.report-quote
  .modal-body
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  position: absolute;
  top: 15px;
  right: 30px;
}
iframe.responsive-map {
  width: 100%;
}
ul.cont-icon-list li {
  display: inline-block;
  border-radius: 5px;
  width: 50px;
  height: 50px;
  line-height: 2.8;
  text-align: center;
  background: #eef3f7;
}
.detail-list ul.cont-icon-list {
  text-align: center;
  margin-top: 25px;
}
ul.cont-icon-list {
  text-align: center;
}
li.active .page-link {
  background: #ffcc20;
}
ul.cont-icon-list li:hover {
  background: #ffc220;
  color: #242424;
}
ul.cont-icon-list li a svg.iconify.icon-start:hover {
  color: #242424;
  fill: #242424;
}
ul.cont-icon-list li a svg.iconify.icon-start path {
  fill: #242424;
}
input.form-control.name-inputgroup {
  background: #fbfdff;
  border: 1px solid #e9f1fc;
  height: 50px;
}

.ad_errors {
  display: none;
}
.email-inputgroup {
  background: #fbfdff;
  border: 1px solid #e9f1fc;
  height: 50px;
  margin-top: 30px;
}
.subject-inputgroup {
  background: #fbfdff;
  border: 1px solid #e9f1fc;
  height: 50px;
  margin-top: 30px;
}
.msg-group {
  background: #fbfdff;
  border: 1px solid #e9f1fc;
  margin-top: 30px;
}
input.btn.btn-sub {
  padding: 12px 20px;
  margin-top: 18px;
}
.form-check {
  margin-top: 30px;
}
[type="checkbox"]:checked + label:before,
[type="checkbox"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  /*border: 1px solid #e9f1fc;*/
  border-radius: 3px;
  /*background: #e9f1fc;*/
}
ul.total-list li {
  display: inline-block;
  padding: 0px 12px;
  line-height: 1.5;
  text-align: center;
}
.main-section-bid {
  background: #fff;
  padding-bottom: 10px;
  border-radius: 0 0 5px 5px;
  padding: 20px 0;
}
.main-section-bid h4 {
  color: #242424;
  font-size: 20px;
}
a.total-bid {
  color: darkturquoise;
  font-weight: 700;
  font-size: 18px;
}
a.high-bid {
  color: rgb(3, 0, 209);
  font-weight: 700;
  font-size: 18px;
}
a.low-bid {
  color: rgb(209, 7, 0);
  font-weight: 700;
  font-size: 18px;
}
.top-bider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
}
.shop-categories h5 a,
h3.accordion-title.faq-titlle a,
.blog-post .post-content h3 a {
  color: #242424;
}
.ad-bottom-sidebar .widget .widget-heading .panel-title span,
.main-section-bid .widget-heading .panel-title span {
  font-size: 20px;
  color: #242424;
  font-weight: 500;
}
.style1-short-features {
  background: #fff;
  margin-top: 30px;
  padding: 30px;
}
.detail-list .desc-points {
  background: #fff;
  padding-left: 30px;
}

.desc-points ul{
  list-style: disc;
}

.detail-list .adforest-owner-text {
  width: 100%;
  background: #fff;
  padding-left: 48px;
}
.number-head {
  display: flex;
  align-items: center;
}
.img-head img {
  border-radius: 50%;
  border: 2px solid #ffc220;
  width: 70px;
}
.bidding-advanced .status.panel-info,
.bidding-advanced .status.panel-success,
.bidding-advanced .status.panel-warning {
  padding: 10px 20px;
  border: 1px solid #9494e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.section-bid-2 .status.panel-success {
  padding: 10px 20px;
  border: 1px solid #80be80;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.section-bid-2 .status.panel-warning {
  padding: 10px 20px;
  border: 1px solid #db8585;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.section-bid-2 .panel-info .bids-heading {
  color: #2222bc;
}
.section-bid-2 .panel-success .bids-heading {
  color: green;
}
.section-bid-2 .panel-warning .bids-heading {
  color: red;
}
.section-bid-2 .clock .column-time {
  display: inline-block;
  text-align: center;
  width: 22%;
}
.section-bid-2 .bidding_timer {
  border-radius: 8px;
  background: transparent;
  border: 1px solid #eeeeee;
  color: #fff;
}
.img-head span {
  position: absolute;
  background: #ffc220;
  width: 24px;
  height: 25px;
  border: 1px solid #fff;
  text-align: center;
  border-radius: 50%;
  line-height: 1.3;
  margin: auto -20px;
  color: #242424;
}
.head-name {
  margin: auto 15px;
}
.main-section-bid ul.total-list {
  border-bottom: 1px solid #eee;
  padding-bottom: 25px;
  text-align: center;
}
.detail-list .top-bider .head-name a.text-black h4 {
  font-size: 18px;
}
.top-bidder-container h2 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 25px;
}
a.bg-numbering {
  background: #fff9e8;
  padding: 5px 15px;
  color: #242424;
  font-size: 18px;
  font-weight: 700;
}
.detail-list .review-product {
  margin-top: 0;
}
.ad-detail-2-details .review-head h5.author-name,
.detail-list .review-head h5.author-name {
  font-size: 18px;
  margin-bottom: 0;
}
.ad-detail-2-details .review-product .main-title .ratings span.avg_stars,
.detail-list .review-product .main-title .ratings span.avg_stars {
  font-size: 14px;
}
.ad-detail-2-details .review-product .main-title span.ratings,
.detail-list .review-product .main-title span.ratings {
  float: right;
}
.detail-list .write-review h5,
.detail-list .map-location h3,
.detail-list div#all-bids-comment h3,
.detail-list .descrip-head .heading {
  font-size: 22px;
}
.descrip-head .heading {
  font-size: 22px;
  margin-bottom: 15px;
}
.banner-ads {
  padding: 5px 0px;
}
.restuarant-shop {
  background: #fff;
  padding: 30px;
}
ul.res-shop-list li {
  display: inline-block;
  padding: 0px 6px;
}
a.res-item::after {
  content: "";
  border-left: 2px solid #777777;
  margin-left: 10px;
}
a.shop-item::after {
  content: "";
  border-left: 2px solid #777777;
  margin-left: 10px;
}
a.cofe-item::after {
  content: "";
  border-left: 2px solid #777777;
  margin-left: 10px;
}
a.res-item {
  font-size: 20px;
}
a.shop-item {
  font-size: 20px;
}
a.cofe-item {
  font-size: 20px;
}
a.drink-item {
  font-size: 20px;
}
svg.iconify.icon-item-cate {
  color: #ffc220;
  font-size: 24px;
}
ul.social-img li {
  display: inline-block;
  padding: 0 2px;
}
.restuarant-shop {
  display: flex;
  justify-content: space-between;
}
.map-location {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  margin-top: 30px;
  position: relative;
}
.map-location span {
  position: absolute;
  right: 20px;
  top: 20px;
}
.detail-list .map-location span {
  position: absolute;
  right: 30px;
  top: 34px;
}
.detail-list .review-product h4.main-title.text-left {
  font-size: 22px;
}
.map-location i {
  color: #ffc220;
}
div#map-location span i {
  margin-right: 5px;
}
.map-location h3 {
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 22px;
}
div#all-bids-comment h3 {
  font-size: 22px;
}
.tabbable-line > .nav-tabs > li.active a {
  background-color: #e74c3c !important;
}
.prop-estate-text-section a .directory-ad-title {
  color: #242424;
  font-size: 16px;
}
.all-bids-comment {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  margin-top: 30px;
}
.name-numbering-head {
  background: #fffcf4;
  padding: 30px;
  display: flex;
}
.name-heading a.btn-numbering {
  position: absolute;
  right: 0;
  top: 0;
  background: #fff9e8;
  padding: 5px 15px;
  font-size: 18px;
  font-weight: 700;
}
.name-heading {
  position: relative;
  margin-left: 30px;
}
.name-img-circle img {
  border-radius: 50%;
  width: 100px;
  border: 2px solid #ffc220;
}
input.btn.btn-com {
  background: #ffc220;
  position: absolute;
  right: 0;
  top: 0px;
  height: 55px;
}
input.form-control.com-text {
  background: #e9f1fc;
  height: 55px;
}
.bidiing-comment {
  position: relative;
  margin-top: 30px;
}
.write-review h3 {
  margin-bottom: 15px;
}
.write-review {
  background-color: #fff;
  border-radius: 5px;
  padding: 30px;
  margin-top: 30px;
}
.write-review h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}
.write-review h5 a {
  color: #242424;
}
.write-review form label {
  font-size: 16px;
  font-weight: 700;
  margin-top: 18px;
}
textarea.form-control.re-mdg {
  background: #e9f1fc;
  margin-top: 20px;
  margin-bottom: 20px;
}
.carousel-item img {
  width: 100%;
}
.detail-list a.btn.btn-whizchat span,
.detail-list a.btn.btn-whatsap span {
  color: #fff;
}
.detail-list .top-bider .num-bg {
  margin-top: -15px;
}
.detail-list .number-head .head-name i {
  color: #777;
}
.detail-list a.btn.btn-whizchat,
.detail-list a.btn.btn-whatsap {
  margin-top: 0px;
  padding: 14px 40px;
}
.detail-list .main-section-bid ul.total-list {
  padding-top: 20px;
}
.list-des-location .list-feature ul.listning-list-all {
  margin-left: -10px;
}
.detail-list .seller-public-profile-star-icons i {
  color: #ffc220;
  margin-right: 4px;
}
.detail-list .deatil-head span {
  color: #242424;
  font-weight: 400;
}
.ad-detail-2-details span.rating-count.count-clr,
.detail-list span.rating-count.count-clr {
  font-size: 14px;
}
a.btn.btn-whatsap {
  background: #25d366;
  padding: 14px 35px;
  color: #fff;
  margin-right: 15px;
  border-radius: 5px;
  margin-top: 20px;
}
a.btn.btn-whizchat {
  background: #242424;
  padding: 14px 35px;
  color: #fff;
  border-radius: 5px;
}
.heading-detail {
  display: flex;
  margin-bottom: 20px;
}
.detail-img img {
  border: 3px solid #ddd;
  border-radius: 50%;
  width: 100px;
  height: 100px;
}
.deatil-head {
  margin-left: 20px;
}
ul.list-sign-up li a {
  color: #fff;
}
.numb-detail a {
  width: 100%;
  background: turquoise;
  padding: 15px 38px;
}
.ad-detail-2-details .deatil-head {
  margin-left: 10px;
}
/* width */
.bg-bids::-webkit-scrollbar {
  width: 10px;
}
.bg-bids::-webkit-scrollbar-thumb {
  background: #ffc220;
  border-radius: 8px;
}
.bg-bids::-webkit-scrollbar-thumb:hover {
  background: #ffc220;
}
.bg-bids {
  margin: 20px auto;
  overflow-y: scroll;
  max-height: 400px;
}
.contact-message form textarea {
  background: #e9f1fc;
  margin-bottom: 25px;
}

i.fa.fa-star.color1 {
  color: #ffc220;
}
.deatil-head h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: capitalize;
}
a.all-ads {
  color: #0a58ca;
}
.cont-seller h4 {
  font-size: 20px;
  margin: 18px 0px;
}
.detail-msg {
  margin-top: 25px;
}
svg.iconify.icon-start {
  font-size: 1em;
}
.header_home {
  position: relative;
  background: #fff !important;
}
.bidiing-comment .col-lg-2.col-md-2.col-sm-12 {
  padding-right: 0;
}
.bidiing-comment form .col-lg-2 input {
  background: #e9f1fc;
  height: 55px;
  text-align: center;
}
.bidiing-comment form input {
  background: #e9f1fc;
  height: 55px;
  padding: 0 37px;
}
.bid_submit {
  padding: 15px 20px;
}
.name-heading span i {
  color: #777;
  margin-right: 5px;
}
.ad-detail-2-details div.btn.btn-numbering,
.detail-list div.btn.btn-numbering {
  margin-top: -66px;
}
div.btn.btn-numbering {
  background: #fff0ca;
  padding: 5px 15px;
  font-size: 18px;
  font-weight: 700;
  margin-right: 30px;
  margin-top: -27px;
  cursor: auto;
}
div.btn.btn-numbering:hover {
  color: #212529;
}
.comment-bids {
  display: flex;
  background: #fffcf4;
  align-items: baseline;
  justify-content: space-between;
}

.modal-header {
  background: #fff none repeat scroll 0 0;
  border-bottom: 1px solid #e2e2e2;
  border-radius: 4px 4px 0 0;
  min-height: 16.43px;
  padding: 15px 20px;
}
.share-ad .modal-header .modal-title,
.report-quote .modal-header .modal-title,
.sortable-images .modal-header .modal-title {
  font-weight: 700;
  color: #232323;
  overflow: hidden;
  font-size: 16px;
}
.share-ad .recent-ads .recent-ads-list {
  border-bottom: 1px solid #e2e2e2 !important;
  margin-bottom: 30px !important;
  padding-bottom: 10px !important;
}
.share-ad .recent-ads .recent-ads-list-image {
  width: 50%;
  display: table-cell;
}
.share-ad .recent-ads .recent-ads-list-image-inner {
  background-color: transparent;
  width: auto;
  height: auto;
  display: block;
  min-height: 60px;
  margin: 0 16px 0 0;
  position: relative;
}
.share-ad .recent-ads .recent-ads-list-content {
  display: table-cell;
  vertical-align: top;
}
.share-ad .recent-ads-list-content h3.recent-ads-list-title {
  font-size: 16px;
  font-weight: 700;
}
.recent-ads-list-content h3.recent-ads-list-title {
  color: #232323;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6em;
}
.recent-ads
  .recent-ads-list
  .recent-ads-container
  .recent-ads-list-content
  ul.recent-ads-list-location
  li
  a {
  color: #a0a0a0;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}
.recent-ads .recent-ads-list-price {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
}
.color {
  color: #ffc220;
}
ul.review-list li span.list-posted-date:before {
  content: "|";
  margin: auto 12px;
}

ul.review-list li span.list-posted-delete:before {
  content: "|";
  margin: auto 12px;
}

.heading-detail-check {
  background: #2ee452;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 1.1;
  color: #fff;
  position: absolute;
  top: 0;
  right: 20px;
}
.heading-detail-check.label-success i {
  font-size: 12px;
}
.heading-detail .detail-img {
  position: relative;
}
.heading-detail-check.label-success {
  background: #2ee452 !important;
}

.heading-detail-check.label-warning {
  background: #fe9700 !important;
}
.heading-detail-check.label-info {
  background: #02a8f3 !important;
}
.heading-detail-check.label-danger {
  background: #f34235 !important;
}
.label-user {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
  background: #2ee452;
}
.sell-content {
  background: #fff9e8;
  padding: 15px 20px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #eae3d1;
}
.ads-with-sidebar {
  padding: 40px 0px;
}
.sell-content span.sell-icon {
  position: absolute;
  right: 25px;
  top: 5px;
}
.sell-content img {
  margin: auto 10px;
}
.sell-content {
  position: relative;
  margin-bottom: 25px;
}
.ad-type-text {
  font-size: 18px;
  font-weight: 700;
  color: #242424 !important;
}
span.sb-phonenumber {
  font-size: 16px;
  position: relative;
  font-weight: 400;
  cursor: pointer;
  color: #777777 !important;
}
.phone {
  background: #edf7ed;
  width: 100%;
  padding: 15px 33px;
  border-radius: 8px;
  border: 1px solid #a3e0af;
}
.phone i {
  color: #4dae51;
  margin-right: 15px;
  font-size: 20px;
}
.sb-click-num:hover,
.sb-click-num:focus {
  color: #333333;
}
.sb-small {
  margin-left: 10px;
}
.ad-detail-2-img .ad-closed img,
.ad-detail-2-img .ad-expired img {
  position: absolute;
  top: 40px;
  left: 14px;
}
.ad-closed img,
.ad-expired img {
  position: absolute;
  top: 40px;
  left: 70px;
}
.alert-info i {
  margin-right: 30px;
}
.contact-message {
  background: #fff;
  margin-top: 5px;
}
.cont-seller h4:after {
  content: "";
  /*border-bottom: 1px solid #eee;*/
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 18px;
}
.cont-seller h4 {
  font-size: 20px;
  margin: 30px 0px 20px;
}
.file_attacher {
  margin-top: 10px;
  margin-bottom: 10px;
}
.file_attacher .msgAttachFile {
  background: #2e9ae9;
  border-color: #2e9ae9;
  color: #fff;
  font-size: 13px;
  font-weight: 700 !important;
  padding: 7px 12px;
}
#attachment-wrapper .dz-preview {
  background: #2e9ae9;
  position: relative;
  display: inline-block;
  color: #ffff;
  font-size: 13px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 5px 10px 6px 30px;
  margin: 0 5px 5px 0;
}
#attachment-wrapper .dz-preview .dz-progress {
  display: block;
  background: rgba(0, 0, 0, 0.1);
  margin-top: 6px;
  margin-bottom: 4px;
}
#attachment-wrapper .dz-preview .dz-progress .dz-upload {
  display: block;
  background: rgba(255, 255, 255, 0.65);
  padding: 2px;
}
#sortable li {
  margin: 3px 3px 3px 0;
  padding: 1px;
  float: left;
  width: 90px;
  height: 90px;
  font-size: 4em;
  text-align: center;
  cursor: move;
}
iframe {
  width: 100%;
}
.main-section-content {
  position: relative;
}
#sb-login-form input,
#sb-login-multi-form input,
#sb-sign-form input,
#sb-sign-multi-form input {
  background: #fbfdff;
  height: 50px;
  margin-bottom: 20px;
  color: #737373;
  padding: 0 20px;
  margin-top: 10px;
}

#sb-sign-form .btn-theme {
  margin-top: 15px;
}
.main-section-content {
  position: relative;
}
.wel-register-heading a.btn {
  text-transform: capitalize;
}
.wel-register-heading {
  padding: 200px 0px;
}
.wel-register-heading h1 {
  font-size: 40px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.wel-register-heading p {
  width: 90%;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.4;
  color: #737373;
}
#register-user-img {
  transition: transform 0.5s;
  -webkit-transition: transform 0.5s;
  -moz-transition: transform 0.5s;
  -o-transition: transform 0.5s;
}
.sign-in-account {
  background: #fff;
  padding: 25px;
  margin: 80px auto;
  border-radius: 8px;
  box-shadow: 0 15px 20px rgb(0 0 0 / 10%);
  position: relative;
}
.sign-in-account h3 {
  font-size: 32px;
  padding-top: 20px !important;
  line-height: 40px;
  margin-bottom: 10px;
  font-weight: 600;
}
.sign-in-account p {
  color: #737373;
  line-height: 1.4;
  margin-bottom: 20px;
}
.option-social {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  margin-bottom: 10px;
  position: relative;
  margin-bottom: 26px;
}
.option-social span::before {
  content: "";
  border-top: 1px Solid #242424;
  width: 23%;
  position: absolute;
  top: 17px;
  left: 120px;
}
.option-social span::after {
  content: "";
  border-top: 1px Solid #242424;
  width: 23%;
  position: absolute;
  top: 17px;
  right: 120px;
}
.social-list {
  padding: 0 40px;
}
.social-item {
  text-align: center;
  margin-top: 20px;
}
ul.social-item li {
  display: inline-block;
  padding: 0 18px;
  margin-bottom: 10px;
  width: 100%;
}
ul.social-item li:last-child {
  margin-bottom: 0;
}
.social-item li .btn-social {
  display: inline-block;
  padding: 0;
  height: 50px;
  width: 250px;
}
.social-item li .btn-social img {
  height: 100%;
  width: 100%;
}
.sig {
  position: relative;
  box-sizing: border-box;
  height: 40px;
  width: 240px;
  background-color: #0b78b7;
  vertical-align: center;
  letter-spacing: 0.65px;
  color: white;
  padding-top: 5px;
  padding-left: 58px;
  border-radius: 2px;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.24);
}
.ico-wrapper {
  position: absolute;
  top: 0px;
  left: -6px;
  width: 48px;
  height: 40px;
  background-color: #0b78b7;
  border-radius: 8px;
  box-sizing: border-box;
}
.ico-wrapper i {
  width: 40px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
  font-size: 40px;
}
.sig:hover {
  background-color: #0469a0;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.24);
}
.btn-linkedIn span {
  color: white;
}
.register-account-here {
  position: relative;
}
.register-account-here p {
  margin-top: 15px;
}
.text-right {
  float: right;
}
.register-account-here p a {
  color: #ffc220;
}
.sign-in-account .skin-minimal .list li label {
  padding-left: 10px;
}
.sign-in-account::after {
  content: "";
  position: absolute;
  top: 99%;
  left: 33px;
  height: 4%;
  width: 88%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  box-shadow: 0 15px 20px rgb(0 0 0 / 10%);
}
.sign-in-account .g-recaptcha {
  margin-bottom: 15px;
  margin-top: 15px;
}
/*  styling for search pages  */
.match-adforest {
  background: #f3f3f3;
}
.found-adforest {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 20px;
}
.found-adforest-heading h5 span {
  color: #ffc220;
}
.found-sort-item li {
  display: inline-block;
  background: #fbfdff;
  margin-right: 10px;
}
.found-listing-icon {
  margin-left: 2px;
  border: 1px solid #e9f1fc;
  border-radius: 5px;
}
.found-listing-icon-1 {
  border: 1px solid #e9f1fc;
  border-radius: 5px;
}
.promotional_slider {
  width: 100%;
  padding: 0px 0px;
  padding-bottom: 0px;
  margin: 0 auto;
  margin-bottom: 0px;
  background: #f8e4e7;
  margin-bottom: 20px;
}
.mob-newest-ads .promotional_slider.slider-search-home .featured-slider-1 {
  padding: 0;
}
.promotional_slider .featured-slider-1 {
  position: relative;
  padding: 20px 30px 0;
}
.slider-search-home.promotional_slider
  .promotionalslider_wrapper_4.slick-initialized {
  position: relative;
  padding: 15px 15px 0px;
}
.promotional_slider .promotionalslider_wrapper_4 {
  width: 100%;
  display: flex;
}
.promotional_slider .promotionalslider_wrapper_4 .promotionalslider_single {
  display: flex;
  width: 25%;
  flex: 0 0 25%;
  flex-direction: column;
  margin: 0 10px;
}

.found-listing-item {
  position: relative;
  margin-bottom: 30px;
  border: 1px solid #e9f1fc;
  border-radius: 5px 5px 0px 0px;
}
.found-heart {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 2.2;
}

.found-heart a:hover {
  color: red;
}
.found-listing-heading {
  background: #fff;
  border-radius: 0px 0px 8px 8px;
  position: relative;
}
.found-listing-heading h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}
.found-listing-heading h5 {
  font-size: 18px;
  font-weight: 500;
  word-break: break-all;
  margin-bottom: 5px;
}
.found-listing-heading h5 span {
  font-size: 14px;
  color: #777777;
  font-weight: 400;
}
.found-star-icon {
  margin-top: -25px;
}
.popover__wrapper {
  position: relative;
  margin-top: 1.5rem;
  display: inline-block;
}
.popover__content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: -34px;
  transform: translate(0, 10px);
  background-color: #242424;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 26%);
  width: 88px;
  top: -28px;
  padding: 15px 8px;
  height: 0px;
  border-radius: 8px;
}

.found-featured {
  z-index: 2;
  color: #ffffff;
  vertical-align: top;
  display: inline-block;
  padding: 0px 7px 0px;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 0 6px 6px 0;
  position: absolute;
  top: 22px;
  left: -6px;
  background-color: #d31423;
  opacity: 1;
  filter: alpha(opacity=100);
  transition: none;
}
.collapse-heading-search h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 2px;
  padding-left: 10px;
  padding-top: 20px;
}
.found-featured::before {
  content: "";
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #fa6755;
  height: 0;
  right: 0px;
  position: absolute;
  top: -5px;
  width: 0;
  z-index: -1;
}
.ad-detail-2-details .related-ads-container .promotional-feat-heading h3 {
  padding-top: 30px;
  font-size: 22px;
  margin-bottom: 0;
  padding-left: 30px;
}
.promotional-feat-heading h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-top: 30px;
  padding-left: 30px;
}
.wrapper-latest-product .bottom-listing-product h4 a,
.found-listing-heading h4 a {
  color: #242424;
}
.found-listing-img .image img {
  width: 100%;
}
.col-pm {
  padding: 0;
  margin: 0;
}
.promotional_slider .promotionalslider_wrapper_4.slick-initialized .slick-prev {
  left: 4px;
}
.promotional_slider .promotionalslider_wrapper_4.slick-initialized .slick-next {
  right: 4px;
}
.promotional_slider
  .promotionalslider_wrapper_4.slick-initialized
  .slick-arrow {
  position: absolute;
  top: 49%;
  transform: translateY(-50%);
  z-index: 9;
}
.promotional_slider
  .promotionalslider_wrapper_4
  .slick-arrow.slick-prev::before {
  content: "\f104";
  font-family: FontAwesome;
}
.promotional_slider .promotionalslider_wrapper_4 .slick-arrow::before {
  font-size: 20px;
  color: #242424;
}
.promotional_slider .promotionalslider_wrapper_4 .slick-arrow {
  font-size: 0;
  width: 35px;
  height: 35px;
  line-height: 1;
  border-radius: 50%;
  -webkit-appearance: none;
  border: 1px solid #ffc220;
  background: #fff;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
  outline: none;
}
.section-bid-2 .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #242424;
  background-color: #ffc220;
}
.section-bid-2 .nav-tabs .nav-link {
  border: 1px solid #eeeeee;
  width: 50%;
}
.noUi-horizontal .noUi-handle {
  left: -2px;
}
.noUi-base {
  width: 90%;
}
.main-section-bid .widget-heading .panel-title,
.ad-bottom-sidebar .widget-heading .panel-title {
  color: #777;
  font-size: 16px;
}
.found-listing-img img {
  border-radius: 5px 5px 0px 0px;
}
.input-group span.input-group-addon {
  background: #fbfdff;
  border: 1px solid #ced4da;
  width: 30px;
  text-align: center;
}
.promotional_slider
  .promotionalslider_wrapper_4
  .slick-arrow.slick-next::before {
  content: "\f105";
  font-family: FontAwesome;
}
.promotional_slider .promotionalslider_wrapper_4 .slick-arrow::before {
  font-size: 20px;
  color: #242424;
}

.ad-favourited i {
  color: red;
}
.ad-favourited i:hover {
  color: red;
}
.ad-favourited a:hover {
  color: red;
}
.popover__wrapper #pover-first {
  color: #ffc220;
  font-size: 20px;
}
ul.pagination-lg li {
  margin: 0 4px;
}
.main-search-bar input {
  background: #fbfdff !important;
  border: 1px solid #e9f1fc;
  height: 50px;
}
ul.pagination-lg li a {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  color: #242424;
  padding: 12px 20px;
  position: relative;
  display: block;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
ul.pagination-lg a:hover {
  background: #ffc220;
  color: #242424;
}
.feature-hear-icon a:hover {
  color: red;
}
.found-listing {
  box-shadow: 0 15px 20px rgb(0 0 0 / 10%);
  background: #fff;
  position: relative;
  margin-bottom: 30px;
  border-radius: 8px;
}
.found-listing-image {
  position: relative;
}
.search-vendor-page {
  background: #f1f1f1;
}
.found-listing-head {
  padding: 16px 0px;
}
.found-listing-head h4 {
  font-size: 20px;
  font-weight: 700;
}
.found-listing-head h5 {
  color: #ffc220;
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: 700;
}
.found-listing-head h5 span {
  font-size: 18px;
}
.founding-star-icon {
  position: absolute;
  right: 20px;
  top: 0px;
}
.found-detail {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
button.btn-detailing {
  background: #f5f5f5;
  padding: 8px 14px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid #f4f4f4;
  color: #242424;
}
.found-listing-image img {
  border-radius: 0.6rem 0rem 0rem 0.6rem;
  width: 100%;
}

.video_icon_container {
  position: absolute;
  bottom: 14px;
  right: 31px;
  text-align: center;
  z-index: 1;
}

.video_icon_container i {
  font-size: 25px;
  color: aliceblue;
}
.black-bakground {
  background: #242424;
  height: 160px;
}
.found-adforest-heading h5 span a {
  color: #ffc220;
}
.recent-ads .recent-ads-list-image img {
  display: block;
  position: relative;
  width: 100%;
  z-index: 2;
}
.ad-widget-title {
  padding: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
}
.ad-widget-title a {
  color: #242424;
  display: block;
}
.sidebar {
  padding: 0 10px;
  background: #fff;
  margin-top: -80px;
}
.sidebar-match-adforest {
  padding-top: 0;
}

.sidebar .categories ul li a:hover {
  color: #777;
}
.found-sidebar {
  margin-bottom: 0;
}
.feature-ads .prev-ads i {
  position: relative;
  top: -18px;
  font-size: 20px;
}
.feature-ads .next-ads i {
  position: absolute;
  top: 3px;
  right: 10px;
  font-size: 20px;
}
.found-listing-img .listing-bidding {
  position: absolute;
  bottom: 0;
  /* left: 0px; */
  color: #fff;
  width: 100%;
  text-align: center;
}
.listing-bidding .clock .bidding_timer {
  font-size: 16px;
  height: 40px;
  width: 40px;
  color: #fff;
  border-radius: 5px;
  line-height: 38px;
}
.main-section-bid .clock {
  text-align: center;
  margin: 20px auto;
  border-bottom: 1px solid #eee;
}
.main-section-bid .clock .column-time {
  display: inline-block;
  text-align: center;
  width: 17%;
}
.main-section-bid .text {
  background: #f4f9fe;
  padding: 8px 10px;
  color: #242424;
  border-radius: 8px 8px 0px 0px;
  font-size: 18px;
  margin-top: -10px;
  display: block;
}
.bidding_timer {
  display: inline-block;
  text-align: center;
  font-size: 18px;
  position: relative;
  height: 45px;
  width: 45px;
  color: #fff;
  line-height: 45px;
  background: #4c4c4c;
  background: -moz-linear-gradient(
    top,
    #4c4c4c 0%,
    #595959 12%,
    #666666 25%,
    #474747 39%,
    #2c2c2c 50%,
    #242424 51%,
    #111111 60%,
    #2b2b2b 76%,
    #1c1c1c 91%,
    #131313 100%
  );
  background: -webkit-linear-gradient(
    top,
    #4c4c4c 0%,
    #595959 12%,
    #666666 25%,
    #474747 39%,
    #2c2c2c 50%,
    #242424 51%,
    #111111 60%,
    #2b2b2b 76%,
    #1c1c1c 91%,
    #131313 100%
  );
  background: linear-gradient(
    to bottom,
    #4c4c4c 0%,
    #595959 12%,
    #666666 25%,
    #474747 39%,
    #2c2c2c 50%,
    #242424 51%,
    #111111 60%,
    #2b2b2b 76%,
    #1c1c1c 91%,
    #131313 100%
  );
  filter: DXImageTransform.Microsoft.gradient(
    startColorstr= "#4c4c4c",
    endColorstr= "#131313",
    GradientType=0
  );
}
.main-section-bid .bidding_timer {
  border-radius: 8px;
}
.feaure-ads-img .listing-bidding {
  position: absolute;
  bottom: 0;
  left: 0;
}
.dropdown-toggle::after {
  color: #242424;
}
.feaure-ads-img .listing-bidding {
  position: absolute;
  bottom: 0;
  left: 0;
}
i.more-less.fa.fa-plus {
  display: none;
}
.search-widget {
  background: #fff;
  position: relative;
}
.sidebar .panel {
  background: #fff;
}
.search-widget input[type="text"],
.search-widget input[type="number"] {
  background: #fbfdff;
  border: 1px solid #e9f1fc;
  height: 46px;
  padding: 0 10px;
  width: 100%;
}
.panel-heading h4.ad-widget-title a:hover {
  color: #333;
}
.panel-heading h4.ad-widget-title a:active {
  color: #333;
}
.panel-heading h4.ad-widget-title a:focus {
  color: #333;
}
.sidebar #accordion .panel-body ul li {
  padding: 5px 0px;
}
.panel-body.categories li a i {
  margin-right: 12px;
}
.noUi-target {
  margin-top: 11px;
  margin-bottom: 15px;
}
.search-widget input#sb_user_address {
  margin-bottom: 10px;
}
input.btn.btn-theme.btn-sm.margin-top-20 {
  margin-top: 20px;
}
.sidebar .panel .panel-collapse {
  background: #fff;
  position: relative;
}
.sidebar .panel-group .panel + .panel {
  margin-top: 5px;
}
.sidebar #accordion .panel-body {
  padding: 10px 10px;
}
.skin-minimal .list li label {
  padding-left: 5px;
  font-weight: 500;
  color: #232323;
  font-size: 14px;
}
.feature-ads {
  border: 1px solid #dedede;
  margin-top: 30px !important;
  margin-bottom: 50px;
}

.search-widget button {
  background: none;
  border: 0;
  padding: 7.8px 15px;
  position: absolute;
  right: 0px;
  top: 1px;
  color: #919191;
}
.search-widget input[type="text"] {
  font-size: 15px;
  border-radius: 5px;
}
span.found-listing-head-address {
  color: #777777;
  display: block;
  font-size: 14px;
}
.found-listing-heading span.found-listing-head-date {
  color: #777777;
  display: block;
  width: 90%;
  font-size: 14px;
}
.found-listing-heading span.found-listing-head-date i {
  margin-right: 5px;
}
.feature-detail-heading h4 a {
  color: #242424;
}
.feature-ads-heading h4 {
  background: #fbfdff;
  height: 60px;
  font-size: 15px;
  border: 1px solid #e9f1fc;
  margin-bottom: 10px;
  padding: 15px;
  font-weight: 400;
}
.feature-detail {
  padding: 8px;
  position: relative;
}
.clock .column-time {
  display: inline-block;
  text-align: center;
  width: 16%;
}
.found-listing-img {
  position: relative;
}
.promotional_slider.slider-search-home {
  background: #ffffff;
  padding-bottom: 0;
}
.feature-ads-carousel .clock .column-time {
  display: inline-block;
  text-align: center;
  width: 20%;
}

.feature-detail-heading {
  background: #fff;
  padding: 20px;
  box-shadow: 0 15px 20px rgb(0 0 0 / 10%);
}
.feature-detail-heading span i {
  margin-right: 5px;
}
.feaure-ads-img .overlay-feature {
  opacity: 0;
}
.feaure-ads-img .overlay-feature:hover {
  opacity: 1;
  transition: 0.8s;
}
ul.overlay-feature-icon li {
  display: inline-block;
  background: #fff;
  border-radius: 50%;
  height: 40px;
  line-height: 2.5;
  width: 40px;
  text-align: center;
}
ul.overlay-feature-icon {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
ul.overlay-feature-icon li:hover a {
  color: #ffc220;
}
.feaure-ads-img {
  position: relative;
}
.feaure-ads-img img {
  width: 100%;
}
.feature-detail-heading h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 2px;
}
.feature-detail-heading h5 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}
.feature-detail-heading span {
  font-size: 14px;
  color: #333333;
  font-weight: 400;
}
a {
  transition: 0.5s;
}
a:hover {
  transition: 0.5s;
}
.found-listing-head.no_cats {
  padding: 27px 0px;
}
.adforest-new-filter h3 a:hover {
  color: #242424;
}
.found-listing-heading h4 a:hover {
  color: #242424;
}
.feature-detail-heading h4 a:hover {
  color: #242424;
}
.feature-ads .prev-ads {
  position: absolute;
  top: -54px;
  right: 55px;
  left: unset;
  background: #fff;
  width: 30px;
  border: 1px solid #e9f1fc;
  height: 30px;
  text-align: center;
  line-height: 2;
  cursor: pointer;
}
.feature-ads .next-ads {
  position: absolute;
  top: -54px;
  right: 20px;
  background: #fff;
  width: 30px;
  border: 1px solid #e9f1fc;
  height: 30px;
  text-align: center;
  line-height: 2;
  cursor: pointer;
}

.noUi-handle {
  box-shadow: none;
}
.noui-rang {
  width: 92%;
  margin-top: 0;
  height: 12px;
  margin-bottom: 0;
}
.noUi-connect {
  background: #ffc220;
  box-shadow: none;
  height: 11px;
}
.noUi-handle:after,
.noUi-handle:before {
  content: "";
  top: 1px;
}
.noUi-horizontal .noUi-handle {
  height: 18px;
  top: -4px;
}
.mini-calus {
  max-width: 50px;
  font-size: 14px;
  border-radius: 0 !important;
  height: 35px !important;
}
.maxi-calus {
  max-width: 92px;
  font-size: 14px;
  border-radius: 0 !important;
  height: 35px !important;
}
.addon-searching {
  margin-left: 65px !important;
  height: 35px !important;
}
.min-max-aline {
  height: 35px;
}
select.remove_select2.custom-select {
  height: 35px;
  border-radius: 0;
  width: 94px;
  margin-top: -0.9px;
}
.min-max-aline .select2-selection__rendered {
  position: relative;
  top: -10px;
}
.min-max-aline .select2-selection__arrow {
  top: -8px;
  right: -7px;
}
i#you_current_location_text {
  display: none;
}
.main-search-bar .select2-container--default .select2-selection--single {
  background-color: #fbfdff;
  border: 1px solid #e9f1fc;
  border-radius: 8px;
  height: 50px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #999;
}
.main-search-bar form {
  position: relative;
}
span.tag.label.label-info.sb_tag {
  background: #ffc220;
  color: #242424;
  border-radius: 8px;
  padding: 10px 12px;
}
span.tag.label.label-info.sb_tag .submit_on_select i {
  margin-left: 10px;
  background-color: #242424;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  height: 14px;
  width: 14px;
  text-align: center;
  line-height: 1.4;
  position: relative;
  top: -2px;
}
select.custom-select.order_by {
  width: 250px;
  background: #fbfdff;
  border: 1px solid #e9f1fc;
  height: 40px;
  padding: 0 10px;
  border-radius: 5px;
  outline: 0;
}
.tag-search {
  width: auto;
  margin: 20px 0px 20px 20px;
  display: inline-block;
}
.ad-detail-2-details .seller-public-profile-star-icons i {
  color: #ffc220;
  margin-right: 4px;
}
.ad-detail-2-details .panel-title,
.detail-list .panel-title {
  background: transparent;
  padding: 0;
}
.adforest-new-filter {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 0px;
  position: relative;
}
.adforest-new-filter h3 a:focus {
  color: #242424;
}
.adforest-new-filter .panel-body {
  background: #fbfdff;
  padding: 20px;
  border: 1px solid #ced4dc;
}
.header_home {
  position: relative !important;
}
.adforest-new-filter .city-select-city li {
  display: inline-block;
}
.adforest-new-filter .city-select-city li a {
  color: #242424;
  margin-right: 10px;
  font-size: 15px;
}

.adforest-new-filter h3 {
  background-color: #fff;
  cursor: pointer;
  padding: 20px;
  margin: 0 0 2px;
  font-size: 18px;
  font-weight: 700;
}
.profile-page {
  padding-bottom: 70px;
  background: #f8f8f8;
  padding-top: 60px;
}
.profile-content {
  border: 1px solid #dddd;
  border-radius: 8px 8px 0px 0px;
}
.profile-header {
  text-align: center;
  background-color: #f3f3f3;
  position: relative;
  border-radius: 8px 8px 0px 0px;
  height: 135px;
}
.profile-main-img {
  text-align: center;
  padding-top: 80px;
  position: relative;
}

.profile-heading {
  background-color: #fff;
  padding-bottom: 30px;
}
.profile-heading h4 a {
  color: #232323;
  text-transform: capitalize;
}
.profile-heading h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: center;
  padding-top: 60px;
}
.sold-listing .tot-listing h5 .sold-listing .ad-sold h5 {
  font-size: 16px;
}
.desc-points ol,
.main-section-bid .widget-content.saftey ol {
  padding-left: 1em;
}
.main-section-bid .widget-content.saftey ol li {
  color: #777777;
}
.main-section-bid.section-bid-2 .nav-tabs {
  border-bottom: 0;
}
.ad-bottom-sidebar .widget-content.saftey {
  padding: 0;
}
.main-section-bid .widget-content.saftey,
.ad-bottom-sidebar .widget-content.saftey .seller-form-group {
  padding: 0;
  margin-top: 20px;
}
.sold-listing {
  display: flex;
}
.ad-sold {
  background: #fdebec;
  height: 100px;
  text-align: center;
  flex: 1;
}
.ad-sold h4 {
  color: #e81f1f;
  font-size: 24px;
  font-weight: 700;
  padding-top: 20px;
}
.tot-listing {
  background: #ebf6fc;
  height: 100px;
  text-align: center;
  flex: 1;
}
.tot-listing h4 {
  color: #0074bd;
  font-size: 24px;
  font-weight: 700;
  padding-top: 20px;
}
.profile-main-img i {
  position: absolute;
  bottom: -4%;
  left: 48%;
  color: #fff;
  background: #2ee452 !important;
  font-size: 20px;
  border-radius: 50%;
}
.profile-dealer {
  position: absolute;
  right: 15px;
  top: 10px;
}
.profile-dealer span.pro-dealer {
  background: #8ac24a;
  color: #fff;
  padding: 5px 10px;
  letter-spacing: 1px;
  font-size: 12px;
  border-radius: 2px;
}
ul.star-listing {
  text-align: center;
}
ul.star-listing li {
  display: inline-block;
}
ul.add-phone-list li {
  border-bottom: 1px solid #eee;
  padding: 15px 0px;
}
ul.add-phone-list li a.phone-list .info-heading {
  color: #86c686;
  font-size: 16px;
  margin-right: 6px;
  font-weight: 400;
}
ul.add-phone-list li a.hour-list,
ul.add-phone-list li a.address-list,
ul.add-phone-list li a.phone-list {
  font-size: 16px;
}
.add-phone {
  padding: 10px 20px;
  background: #fff;
}
ul.add-phone-list li a.address-list span {
  color: #e3262f;
  font-size: 16px;
  margin-right: 6px;
}
ul.add-phone-list li a.hour-list span {
  font-size: 16px;
  margin-right: 6px;
  color: #8ac24a;
}
ul.add-phone-list li a.hour-list span i {
  margin-right: 8px;
}
.ads-grid-container .ads-grid-panel span span {
  font-size: 14px;
  color: #777;
  font-weight: 400;
}
.ad-grid-10 .ads-grid-content ul li a {
  font-size: 14;
  font-size: 14px;
}
.profile-social {
  background: #f3f3f3;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.social-link-list ul.social-item li {
  margin-left: 3px;
  display: inline-block;
  padding: 0;
  margin-bottom: 0;
  width: auto;
}
.social-link-list ul.social-item li a {
  background: #ffff;
  border-radius: 2px;
  padding: 10px 12px;
}
.social-link-list ul.social-item li a:hover {
  background: #ffc220;
  color: #242424;
}
.social-heading h4 {
  color: #20292f;
  font-size: 15px;
}
.profile-introduction {
  background: #fff;
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.profile-introduction h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
.profile-introduction p {
  font-size: 16px;
}
.user-contact-message h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
}
.user-contact-message {
  background: #fff;
  padding: 20px;
}

.user-contact-message input {
  background: #fbfdff;
  height: 55px;
  margin-bottom: 20px;
  border-radius: 0;
}
.user-contact-message textarea {
  background: #fbfdff;
  margin-bottom: 20px;
  border-radius: 0;
}
.sb-adpost-cats ul li a img {
  margin-right: 20px;
}
.sb-adpost-cats ul li {
  border-bottom: 1px solid #eee;
  padding: 20px 40px;
}
.main-header .form-control-feedback {
  position: absolute;
  top: 25px;
  right: 30px;
  z-index: 1;
  cursor: pointer;
}
.item-sub-information li {
  color: #ffc220;
}
.item-sub-information li:first-child {
  color: #242424;
}
.search-cat-input {
  position: relative;
  top: 10px;
  padding: 0 20px;
}
.rating-container .caption span {
  color: #ffff;
}
#user_ratting_form textarea {
  background: #e9f1fc;
  margin-top: 20px;
  margin-bottom: 20px;
}
.label-primary {
  background-color: #337ab7;
}

.profile-rating {
  padding: 20px;
  border: 1px solid #c7c7c7;
  margin-bottom: 30px;
  border-radius: 8px;
  margin-top: 30px;
}
.pro-response {
  display: flex;
  position: relative;
}
.pro-response-head {
  margin-left: 20px;
}
.profile-star-rate {
  position: absolute;
  right: 0;
  top: 4px;
}
.pro-response-head h3 {
  font-size: 20px;
  font-weight: 700;
}
.pro-response-head span {
  color: #242424;
}
.pro-response-head p {
  color: #242424;
  margin-bottom: 0;
  font-size: 16px;
}
.pro-reply-comment-heading {
  position: absolute;
  right: 0;
  bottom: 0;
}
.clikc_reply:focus {
  color: #333333;
}
.pro-reply-comment {
  background: #fff;
  padding: 20px;
  margin-left: 120px;
  margin-top: 15px;
  display: flex;
}
.pro-reply-comment-head {
  padding-left: 20px;
}
.pro-reply-comment-head h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}
.pro-reply-comment-head p {
  font-size: 14px;
}
#rating_reply_modal h2.modal-title {
  color: #242424;
}
#sb_rate_user_comments {
  margin-bottom: 0;
}
.nav-user-review {
  border-bottom: 1px solid #dee2e6;
  background: #fff;
  padding-top: 22px;
  padding-left: 30px;
}
.nav-user-review .nav-link.active,
.nav-user-review .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.star-listing i {
  color: #ffc220;
}
.great-product-herro {
  position: relative;
}
.profile-main-img img#user_dp {
  width: 100px;
  border-radius: 50%;
  height: 100px;
}
.tab-content input.btn {
  background: #ffc220;
  color: #242424;
  border: 1px solid #ffc220;
  width: 22%;
}
button.btn.btn-msg-send {
  padding: 10px 30px;
}

#user_ratting_form textarea#sb_rate_user_comments {
  background: #fbfdff;
  border: 1px solid #e9f1fc;
}
#user_ratting_form .btn.btn-block {
  float: right;
  margin-top: -28px;
  padding: 10px;
}
.label.label-danger {
  background: #f34235 none repeat scroll 0 0;
}

.label.label-warning {
  background: #fe9700 none repeat scroll 0 0;
}

.label.label-info {
  background: #02a8f3 none repeat scroll 0 0;
}
.label.label-success {
  background: #8ac249 none repeat scroll 0 0;
}
ul.add-phone-list li:last-child {
  border-bottom: 0;
}
.main-search-bar {
  background: #fff;
  box-shadow: 0 15px 20px rgb(0 0 0 / 10%);
  padding: 25px;
  margin-top: -110px !important;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
section.search-bar-content {
  position: relative;
  background-color: #f3f3f3;
}
.hide_adv_search {
  display: none;
}
.hide_adv_search .submit-distance {
  border-radius: 4px !important;
}
.adv-srch {
  float: right;
}
.main-search-bar .form-group label {
  color: #242424;
  font-weight: 400 !important;
  margin-bottom: 15px !important;
  font-size: 16px !important;
}
.input-group-addon {
  background: #fbfdff !important;
  border: 1px solid #e9f1fc !important;
}
.min-max-aline .custom-select {
  background: #fbfdff;
  border: 1px solid #e9f1fc;
}
#user_ratting_form .rating-stars {
  margin-bottom: 15px;
  font-size: 22px;
}
.public-link-provider-1 label {
  font-size: 22px;
}
#user_ratting_form span.required {
  color: red;
  margin-let: 2px;
}
#user_ratting_form .caption span.label {
  font-size: 14px;
  position: relative;
  top: -8px;
}
#user_ratting_form .rating-stars .filled-stars {
  color: #ffc220;
}
.hide_adv_search .select2-container {
  display: block !important;
}
.search-found-list .great-product-herro {
  flex: 0 0 40.1%;
  position: relative;
}

/* Hide scrollbar for Chrome, Safari and Opera */
#ads-search-container::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
#ads-search-container {
  overflow-y: scroll; 
  overflow-x:hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.search-vendor-page
  .col-xxl-10.col-xl-10.col-lg-10
  .search-found-list
  .great-product-herro {
  flex: inherit;
  position: relative;
}
.search-vendor-page
  .col-xxl-10.col-xl-9.col-pm
  .search-found-list
  .great-product-herro {
  flex: inherit;
  position: relative;
}
.search-found-list {
  padding: 20px 20px;
}
ul.slick-dots {
  display: none;
}
ul.list-unstyled li span.f_custom i {
  margin-right: 12px;
  color: #777;
}
.sb-header.sb-header-1 .sign-in-up {
  position: relative;
  /*left: 10px;*/
}
.sign-in-up {
  float: right;
}
.second span.select2-selection__placeholder {
  font-size: 16px;
}
.ad-detail-2-content-heading ul.ad-detail-2-posted li span {
  color: #777;
  font-size: 16px;
  font-weight: 400;
}
.great-pro-head h2 {
  font-size: 42px;
  padding-top: 5px;
  font-weight: 700;
}
.app-download span {
  font-size: 18px;
  margin-bottom: 6px;
  color: #ffc220;
}
.app-download h3 {
  font-size: 42px;
  line-height: 1.2;
  padding-top: 5px;
  font-weight: 700;
  margin-bottom: 20px;
}
.map-content .ad-map {
  height: 790px;
  margin-bottom: 0;
  width: 100%;
}
.no-container {
  display: table;
  height: calc(100vh - 120px);
  table-layout: fixed;
  width: 100vw;
  position: relative;
}
.no-container > .left-area {
  display: flex;
  height: 100vh;
  vertical-align: top;
  position: relative;
}
.no-container .ad-map {
  height: 100vh;
}
.map .leaflet-pane {
  z-index: 7;
}
.no-container .map {
  height: 100vh;
  width: 30%;
}
.no-container > .right-area {
  background: #f1f2f6 none repeat scroll 0 0;
  display: table-cell;
  height: 100vh;
  vertical-align: top;
  width: 775px;
  position: relative;
}
.no-container > .right-area > .inner-content {
  height: calc(100vh - 73px);
  overflow: auto;
  padding: 20px 30px 0;
  width: 100%;
}
.ads-listing-history .results {
  color: #172434;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
section.match-adforest-topbar {
  background: #f3f3f3;
  padding: 50px 0px;
}
.profile-page .great-product {
  transition: 0.8s;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 12%), 0 2px 4px 0 rgb(0 0 0 / 8%);
}
.profile-page .great-product {
  margin-top: 0 !important;
  transition: 0.8s;
  margin-bottom: 30px;
}
.great-product {
  border-radius: 5px;
  border: 1px solid #eee;
  margin-top: 30px !important;
  display: flex;
  margin: 0 10px;
}
.gp-great-product .great-product-herro {
  flex: 0 0 40.1%;
  position: relative;
}
.red-white-star {
  border-width: 22px;
  border-style: solid;
  border-color: #bf0820 transparent transparent #bf0820;
  position: absolute;
  top: 0px;
  left: 0px;
}
.red-white-star i {
  color: #fff;
  position: absolute;
  left: -16px;
  top: -16px;
}
.great-product-content {
  flex: 1;
  background-color: white;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  border-radius: 0 8px 8px 0;
  position: relative;
}
.great-product-category {
  display: flex;
  margin-bottom: 5px;
}
.great-product-tag--1 {
  background-color: #67b26f;
  color: #fff;
}
.great-product-tag {
  font-size: 10px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 100px;
}
.profile-page .great-product-content h4 span {
  font-size: 14px;
  font-weight: 400;
}
.great-product-content h4 span {
  font-size: 14px;
  font-weight: 400;
}
.great-product-tag--2 {
  background-color: #4ca2cd;
  margin-left: 5px;
  color: #fff;
}
.place-content-heding h5 {
  font-size: 22px;
  magin-bottom: 5px;
  font-weight: 700;
}
.great-product-title h2 {
  font-size: 22px !important;
  margin-bottom: -2px;
  color: #242424;
  text-decoration: none;
  font-weight: 500 !important;
  margin-top: -10px;
  width: 90%;
}
.great-product-title h2 a:hover,
.great-product-title h2 a:focus {
  color: #242424;
}
.great-product-content p {
  margin-bottom: 5px;
  line-height: 1.6;
  color: #777777;
  width: 70%;
}
.great-product-content h4 {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 16px;
}
.great-product-herro img.img-fluid {
  width: 100%;
  border-radius: 5px 0 0 5px !important;
  height: 100% !important;
}
.detail-btn-1 {
  position: absolute;
  right: 30px;
  bottom: 22px;
}
.detail-btn-1 a {
  font-size: 14px;
  transition: 0.8s;
  text-decoration: none;
}
.detail-btn-1 a:hover {
  transition: 0.6s;
}
.search-2 .btn-light:hover {
  background-color: #242424;
  border-color: #242442;
}
.detail-list .promotional_slider {
  background: #fff;
  border-radius: 5px;
}
.detail-list .promotional-feat-heading h3 {
  padding-left: 30px;
  font-size: 22px;
  padding-top: 30px;
}
.detail-list
  .promotional_slider
  .promotionalslider_wrapper_4.slick-initialized {
  padding-top: 10px;
  padding-left: 7px;
}
.tags-share {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: 5px;
  padding: 20px;
}
.tags-share ul li {
  display: inline-block;
  padding: 0px 6px;
}
.tags-share ul li i {
  font-size: 20px;
}
.tags-share ul li:first-child {
  position: relative;
  top: 2px;
}
.tags-share ul li a {
  font-size: 15px;
  font-size: #777 !important;
}
.best-car-sale .sale-head h1 {
  font-size: 36px;
  color: #20292f;
  font-weight: 700;
  padding: 10px 0px;
}
ul.clendar-head li a i {
  color: #777 !important;
  margin-right: 5px;
}
ul.home-tab-list li:last-child() {
  border-left: 0;
}
.left-arrow {
  position: absolute;
  left: 0;
  top: 24px;
  font-size: 25px;
  color: #fff;
}
.right-arrow {
  position: absolute;
  right: 0;
  top: 24px;
  font-size: 25px;
  color: #fff;
}
#client-logos .item {
  margin: 1px;
  width: 250px;
}
.category-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cate-img {
  height: 75px;
  width: 75px;
  flex: none;
  background: url("../images/bg-client-logo.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cate-img img {
  position: relative;
  left: 25px;
  top: 22px;
  width: 25px !important;
  height: 25px;
  text-align: center;
}
.inner-form .second span.select2-selection.select2-selection--single {
  height: 42px;
}
.cate-head {
  margin-left: 20px;
  text-align: initial;
}
.cate-head h5 {
  margin-bottom: 5px;
}
.cate-head h5 a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
}
.cate-head span {
  background: rgba(255, 255, 255, 0.3);
  color: #dadada;
  padding: 3px 5px;
  font-size: 12px;
  text-transform: lowercase;
  padding-right: 12px;
  font-weight: 400;
  clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 85% 100%, 0% 100%);
  width: 100%;
}
.arrow-goal {
  text-align: start;
  margin: auto 115px;
  padding: 30px 0px;
}
.places-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 12%), 0 2px 4px 0 rgb(0 0 0 / 8%);
  padding: 10px 20px;
  margin: 10px 47px 15px 25px;
  z-index: 1;
  position: absolute;
  bottom: -50px;
  width: 84%;
  border-radius: 5px;
}
button.owl-prev {
  background: #f3f3f3;
  border: 1px solid #f3f3f3;
}
button.owl-next {
  background: #f3f3f3;
  border: 1px solid #f3f3f3;
}
.popular-heading {
  text-align: center;
  margin-bottom: 50px;
}
.most-popular {
  position: relative;
  padding-bottom: 140px !important;
}
.most-popular-itemt li {
  display: inline-block;
  padding: 0 10px;
  position: relative;
}
ul.most-popular-itemt {
  height: 320px !important;
}
.btn-theme.btn-white {
  background-color: #fff;
  color: #232323;
  margin-top: 30px;
  border: 1px solid #f1f1f1;
  text-transform: capitalize;
}
.main-section {
  position: relative;
}
.box-cat {
  position: relative;
}
.sale-div img {
  width: 100px;
  height: 100px;
  position: absolute;
  z-index: 2;
  right: 0px;
}
li.hoverTrigger.sub-menu.dropdown_menu a .fa-indicator {
  display: none;
}
.popular-heading {
  margin-bottom: 50px;
}
.owl-carousel1 .owl-item .item {
  /*height: 400px;*/
  position: relative;
  /*overflow: hidden;*/
}
.owl-carousel1.location-ad-carousel .owl-stage-outer {
  overflow: visible;
}
.most-popular .owl-carousel1 .owl-item {
  opacity: 0.1;
}
.most-popular .owl-carousel1 .owl-item.active {
  opacity: 1;
}
.chevron-1 {
  font-size: 25px;
  position: absolute;
  color: #242424;
  width: 35px;
  height: 35px;
  top: 41%;
  line-height: 1.3 !important;
  text-align: center;
  left: -15px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #ffc220;
}
.chevron-1:hover {
  background: #ffc220;
  border: 1px solid #fff;
}

.chevron-2 {
  font-size: 25px;
  position: absolute;
  color: #242424;
  width: 35px;
  height: 35px;
  top: 41%;
  line-height: 1.3 !important;
  text-align: center;
  right: -15px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #ffc220;
}
.chevron-2:hover {
  background: #ffc220;
  border: 1px solid #fff;
}
.sign-in-up ul.list-sign-in li a i {
  margin-right: 5px;
}
i.fa.fa-angle-down.fa-indicator {
  display: none;
}
.adforest-new-filter .city-select-city li .tax-show-more {
  padding: 10px 18px 10px 30px;
  border-radius: 4px;
  float: right;
}
.adforest-new-filter .city-select-city li .tax-show-more::after {
  font-family: FontAwesome;
  padding-right: 10px;
  content: "\f178";
  margin-left: 8px;
}
/*-------------------------------
             Slider
---------------------------------*/
.testimonials-clean p {
  color: #7d8285;
}
.testimonial-heading {
  text-align: center;
}
.testimonial-lightslider {
  height: 320px !important;
}

.testimonials-clean h2 {
  font-weight: bold;
  margin-bottom: 40px;
  padding-top: 40px;
  color: inherit;
}

@media (max-width: 767px) {
  .testimonials-clean h2 {
    margin-bottom: 25px;
    padding-top: 25px;
    font-size: 24px;
  }
}

.testimonials-clean .intro {
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.testimonials-clean .intro p {
  margin-bottom: 0;
}

.testimonials-clean .item {
  padding: 50px 0 20px;
}

.testimonials-clean .item {
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .testimonials-clean .item {
    height: 220px;
  }
}

.testimonials-clean .item .box {
  padding: 30px;
  background-color: #fff;
  position: relative;
}

.testimonials-clean .item .box:after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: -24px;
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-width: 12px 15px;
  border-top-color: #fff;
}

.testimonials-clean .item .author {
  margin-top: 28px;
  padding-left: 25px;
}

.testimonials-clean .item .name {
  font-weight: bold;
  margin-bottom: 2px;
  color: inherit;
}

.testimonials-clean .item .title {
  font-size: 13px;
  color: #9da9ae;
}

.testimonials-clean .item .description {
  font-size: 15px;
  margin-bottom: 0;
}

.testimonials-clean .item img {
  max-width: 40px;
  float: left;
  margin-right: 12px;
  margin-top: -5px;
}
.testimonial-product-listing {
  background: #fff;
  text-align: center;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 12%), 0 2px 4px 0 rgb(0 0 0 / 8%);
  padding: 50px 0px;
  border-radius: 50%;
  width: 410px;
  height: 410px;
}
.color1 {
  color: #ffc220;
  position: relative;
  top: -12px;
}
.client-heading {
  padding: 80px 0px;
}
.testimonial-product {
  display: flex;
  justify-content: center;
  position: relative;
}
.main-card-content {
  position: absolute;
  top: -32px;
}
.main-card-content-2 {
  position: absolute;
  bottom: -32px;
}
.testimonial-product-listing img {
  border-radius: 50%;
  width: 20% !important;
  margin: 0 auto;
}
.testimonial-product-listing p {
  margin-bottom: 0;
  padding: 20px;
  position: relative;
  margin-top: -17px;
}
.testimonial-product-listing span {
  color: #ffc220;
  position: relative;
  top: -4px;
}
section.client-say {
  background: #f8f8f8;
  padding: 80px 0px;
}
.client-item .owl-nav {
  position: absolute;
  left: -104%;
  top: 72%;
}
.client-say .client-item .owl-nav {
  position: absolute;
  left: -104%;
  top: 80%;
}
.client-item .client-arrow1 {
  background: #fff;
  border-radius: 50%;
  border: 1px solid #ffc220;
  line-height: 2 !important;
  text-align: center;
  height: 35px;
  width: 35px;
  color: #242424;
}
.client-item .client-arrow {
  background: #fff;
  border-radius: 50%;
  border: 1px solid #ffc220;
  line-height: 2 !important;
  text-align: center;
  height: 35px;
  width: 35px;
  position: absolute;
  right: -46px;
  top: 1.4px;
  color: #242424;
}
.client-heading p {
  margin-bottom: 10px;
  color: #737373;
}
.testimonial-product-listing h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  padding-top: 12px;
}
.client-item .client-arrow:hover,
.client-item .client-arrow1:hover {
  background: #ffc220;
  color: #242424;
}

.client-item .owl-item {
  height: 450px;
  margin-top: 40px;
}
.client-heading h2 {
  font-weight: 700;
  padding-top: 12px;
  font-size: 46px;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.share-ad .modal-body .recent-ads {
  margin-top: 0px;
}
.share-ad .modal-header span {
  color: #242424;
  font-size: 16px;
}
.share-ad .modal-body .recent-ads-list-price h3 {
  color: #ffc220;
  font-size: 22px;
  font-weight: 700;
}
.write-review .rating-container .star {
  font-size: 25px;
}
.write-review .rating-container .caption .label {
  padding: 4px 8px;
  font-size: 14px;
}
.write-review form label span.required {
  color: red;
}
.share-ad .modal-body .share-link {
  font-weight: 700;
  color: #ffc220;
  margin-top: -15px;
}
.recent-ads {
  position: relative;

  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  overflow: hidden;
}
.recent-ads:before {
  background-color: rgba(255, 255, 255, 0.4);
  display: block;
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-filter: alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
  content: "";
  z-index: 1;
}
.recent-ads:hover::before {
  left: 0;
  opacity: 1;
}
.gp-great-product h4.ad-widget-title {
  display: none;
}
.elementor-1773
  .elementor-element.elementor-element-6241c68:not(
    .elementor-motion-effects-element-type-background
  ),
.elementor-1773
  .elementor-element.elementor-element-6241c68
  > .elementor-motion-effects-container
  > .elementor-motion-effects-layer {
  background-color: #f3f3f3;
}
.no-display {
  display: none;
}
.col-xxl-10.col-xl-10 .search-found-list .great-product-content p .more-text {
  display: none;
}
.gp-great-product .great-product-content p .more-text {
  display: none;
}
div.col-xxl-10.col-xl-9 .search-found-list .great-product-content p .more-text {
  display: none;
}
div.col-xxl-10.col-xl-9.col-pm
  .search-found-list
  .great-product-content
  p
  .more-text {
  display: none;
}
.profile-page .great-product-content p .more-text {
  display: none;
}
.profile-page .great-product-content p {
  width: 86%;
}
/*----=========Checkout or Cart============----*/
.woocommerce .shop_table thead tr th {
  padding: 15px !important;
  color: #fff !important;
  font-weight: 700 !important;
  background: #242424 none repeat scroll 0 0;
}
.section-padding-70 {
  padding: 70px 0;
}
.woocommerce .woocommerce-cart-form table.shop_table tr.cart_item td {
  padding-bottom: 24px;
  padding-top: 24px;
}
.woocommerce table.shop_table {
  border: medium none;
}
woocommerce .woocommerce-cart-form #content table.cart td.actions,
.woocommerce table.cart td.actions,
.woocommerce-page #content table.cart td.actions,
.woocommerce-page table.cart td.actions {
  padding: 30px 15px !important;
}
.woocommerce .woocommerce-cart-form table.shop_table td .button {
  padding: 15px 35px !important;
  color: #fff !important;
  text-transform: uppercase;
  margin-left: -5px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-size: 12px;
}
.woocommerce .woocommerce-cart-form table.shop_table td.product-remove {
  width: 32px;
}
.woocommerce .woocommerce-cart-form table.shop_table td.product-thumbnail {
  width: 90px;
}
.cart_totals tr.cart-subtotal th {
  font-weight: 500 !important;
  text-transform: uppercase;
}
.cart_totals tr.order-total th {
  font-weight: 500 !important;
  text-transform: uppercase;
}
.woocommerce table.shop_table {
  border-radius: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.woocommerce-billing-fields h3 {
  margin-bottom: 20px;
}
.woocommerce-billing-fields input {
  padding: 10px 15px;
  background: #fdfbff;
  border: 1px solid #efe9cf;
}
.qib-button-wrapper button.qib-button {
  padding: 6px 12px 8px;
  height: 41px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 20px;
  width: 41px;
  color: black;
  min-height: 41px;
}
.post-desc h2 {
  font-size: 30px;
  margin: 25px 0;
  font-weight: 500;
}
.woocommerce table.shop_table tbody:first-child tr:first-child td,
.woocommerce table.shop_table tbody:first-child tr:first-child th {
  padding: 15px 10px;
  width: 100%;
}
.wc-proceed-to-checkout a.checkout-button.button.alt.wc-forward {
  padding: 15px 35px !important;
  width: 42%;
  font-size: 14px;
}
.woocommerce table.shop_table tr {
  border-bottom: 1px solid #ebe9eb !important;
}
#add_payment_method
  .woocommerce-cart-form
  table.cart
  td.actions
  .coupon
  .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text {
  padding: 9px 10px 7px;
  width: 180px;
}
.woocommerce .woocommerce-cart-form #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  text-transform: uppercase;
  background-color: #ffc220;
  border-color: #ffc220;
  border: 1px solid #ffc220;
}
.woocommerce .woocommerce-cart-form #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  font-size: 100%;
  margin: 0;
  line-height: 1;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: visible;
  padding: 0.618em 1em;
  font-weight: 700;
  border-radius: 3px;
  left: auto;
  color: #515151;
  background-color: #ebe9eb;
  border: 0;
  display: inline-block;
  background-image: none;
  box-shadow: none;
  text-shadow: none;
}
.woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper input {
  background: #fbfdff;
  border: 1px solid #e9f1fc;
  height: 45px;
  border-radius: 8px;
}
.woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper label {
  margin-bottom: 10px;
}
.woocommerce-additional-fields
  .woocommerce-additional-fields__field-wrapper
  textarea {
  background: #fbfdff;
  border: 1px solid #e9f1fc;
  padding: 15px 20px;
  border-radius: 8px;
  height: 120px !important;
}
.woocommerce-additional-fields
  .woocommerce-additional-fields__field-wrapper
  label {
  margin-bottom: 10px;
}
.woocommerce-additional-fields h3 {
  margin-bottom: 20px;
}
.woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper p {
  margin-bottom: 20px;
}
h3#order_review_heading {
  margin: 15px auto;
  font-size: 25px;
  font-weight: 700;
}

.woocommerce-checkout-review-order
  table.shop_table.woocommerce-checkout-review-order-table
  tr.cart-subtotal
  th {
  text-transform: uppercase;
  font-weight: 400;
  color: #242424;
  letter-spacing: 1.5px;
}
.woocommerce-checkout-review-order
  table.shop_table.woocommerce-checkout-review-order-table
  tr.order-total
  th {
  text-transform: uppercase;
  font-weight: 400;
  color: #242424;
  letter-spacing: 1.5px;
}
div#carousel ul.slides li {
  margin-right: 5px;
  cursor: pointer;
  opacity: 0.5;
}
div#carousel ul.slides li img {
  margin: 0 5px 0 0 !important;
  border: 2px solid #bfbfbf;
  height: 80px;
}
div#carousel ul.slides li.flex-active-slide img {
  border-color: #ffc220;
}
div#carousel ul.slides li.flex-active-slide {
  opacity: 1;
}

/*-----===========AD POST===========----*/
.card-header.main-header {
  background: #fbfdff;
  padding: 10px 15px;
}
.card-header.main-header {
  background-color: #fbfdff;
}
.has-search .form-control {
  padding-left: 2.375rem;
  min-height: 45px;
}
.btn-link:hover,
.btn-link:focus {
  text-decoration: none;
}
.cat-search-input {
  margin-bottom: 0rem;
  padding: 16px 0px;
}
.cat-search-input .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 3rem;
  text-align: center;
  pointer-events: none;
  color: #aaa;
}
.chose-catgory-heading p {
  color: #959595;
  margin-left: 5px;
}
div.sub-header {
  background: #fff;
  border-bottom: 1px solid #ebf0f6;
  border-top: 1px solid #ebf0f6;
  padding: 10px 38px;
}
h2.mb1-0 img {
  padding: 0px 10px;
}
h2.mb1-0 button {
  color: #959595;
}
div.sub-header:hover {
  background: #fbfdff;
  border-right: 2px solid #ffc220;
}
.chose-catgory-heading {
  padding: 0px 20px;
}
input.form-control.cat-input {
  padding-left: 2.375rem;
  min-height: 45px;
}
li a.cat-item:first-child {
  color: #242424;
  text-decoration: none;
}
li:nth-child(2) a.cat-item {
  color: #959595;
  text-decoration: none;
}
ul.item-sub-information li:nth-child(2)::before {
  content: "/";
  margin: auto 15px;
}
ul.item-sub-information li:nth-child(3)::before {
  content: "/";
  margin: auto 15px;
}
a.change-cat {
  color: #ffc220;
}
.basic-information-heading {
  padding: 0 38px 38px 35px;
}
.basic-information-heading h3 {
  font-size: 24px;
  font-weight: 700;
}
.condition-heading h4 {
  font-size: 19px;
  font-weight: 400;
}
a.btn.btn-condition {
  line-height: 1.8;
}
a.btn.btn-selected {
  background: #ffc220;
  border: 1px solid #ffc220;
  color: #fff;
}
a.btn.btn-warranty {
  line-height: 1.8;
}
a.btn.btn-type {
  padding: 10px 35px;
}
label.control-label small {
  margin-left: 15px;
  color: #959595;
  margin-top: 10px;
}
.jqte_toolbar {
  background: #fbfdff !important;
  border-bottom: #e9f1fc 1px solid !important;
  padding: 15px 10px !important;
}
.ad-descriptions .jqte {
  border: 1px solid #e9f1fc;
  box-shadow: none;
}
div.tagsinput {
  border: 1px solid #e9f1fc !important;
  background: #fbfdff !important;
  border-radius: 8px;
  height: 50px;
  overflow-y: hidden !important;
}
a.change-cat {
  color: #ffc220;
}
a.btn-condition,
a.btn-warranty,
a.btn-type {
  background: #fbfdff;
  border: 1px solid #ebf0f6;
  height: 45px;
  border-radius: 0.25rem;
  margin-right: 12px;
}
.basic-information-categories {
  padding: 35px 38px;
}
.form-section label {
  display: block;
}
a.btn-condition:hover,
a.btn-warranty:hover,
a.btn-type:hover {
  background: #ffc220;
  color: #fff;
}
.basic-information-heading label {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.basic-information-heading .form-group {
  margin-bottom: 0rem;
  padding-top: 20px;
}
.basic-information-heading .form-section {
  margin-bottom: 0rem;
  padding-top: 20px;
}
.basic-information-heading .form-section .form-group {
  padding-top: 0px;
}
input#ad_title {
  color: #959595;
}
.choose-category-part input[type="text"] {
  background: #fbfdff;
  min-height: 50px;
  border: 1px solid #e9f1fc;
}

#ad_post_form .dropzone {
  border: 3px dotted #e1e1e1;
}
h2.mb1-1 button {
  color: #242424;
  font-size: 17px;
  text-decoration: none;
}
h2.mb1-1 .btn-link:hover {
  color: #ffc220;
}
h2.mb1-1 button.btn.btn-link i.fa-angle-right {
  position: absolute;
  right: 0;
}
.ad-bidding-information {
  padding: 35px 35px;
}
.ad-user-information,
.ad-extra-information {
  padding: 35px 35px;
}
.sub-item.ad-user-information {
  padding-bottom: 0;
}
.ad-user-information #dvMap {
  margin: 30px 0 30px 0;
  z-index: 1;
}
.choose-category-part {
  padding: 50px 0px;
}
.card.make-feature {
  padding: 5px 15px;
  background: #fbfdff;
  border: 1px solid #e9f1fc;
  margin-bottom: 20px;
  /* margin: 10px 25px; */
}
.card.make-bump-up {
  padding: 5px 15px;
  background: #fbfdff;
  border: 1px solid #e9f1fc;
  margin: 10px 25px;
}
.term-condition {
  border-top: none;
  padding: 15px 31px;
}
.term-condition.adforest-ad-post-terms {
  padding: 0;
}
.submit-button {
  text-align: end;
}
.submit-button input.btn.btn-submit {
  padding: 10px 60px;
  border-radius: 5px;
}
.check-detail {
  padding: 10px 0px;
}
ul.list li label a {
  color: #ffc220;
}
.pricing-list h3 small {
  margin-left: 10px;
  color: #777777;
  font-size: 15px;
}
.card-header.sub-header.collapsed i {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: 0.6s;
}
.card.make-bump-up .pricing-list h3 {
  font-weight: 500;
  font-size: 18px;
}
.card-header.sub-header i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
  transition: 0.6s;
}
.dynamic-fields-container {
  padding-top: 35px;
}
.dynamic-fields-container input.form-control._adforest_tpl_field_price_range,
.dynamic-fields-container input.form-control._adforest_tpl_field_website_url,
.dynamic-fields-container input#ad_price,
.dynamic-fields-container #ad_yvideo {
  background: #fbfdff;
  min-height: 50px;
  border: 1px solid #e9f1fc;
  color: #959595;
}
.dynamic-fields-container div.row:nth-child(n) {
  margin-bottom: 20px;
}
.dynamic-fields-container div.row.clear-custom div.col-lg-6:nth-child(n) {
  margin-bottom: 20px;
}
.dynamic-fields-container label.control-label {
  margin-bottom: 0.5rem;
  font-size: 17px;
}
.dynamic-fields-container div.row.clear-custom div.col-lg-6:nth-child(5) {
  position: relative;
}
.dynamic-fields-container div.row.clear-custom div.col-lg-6:nth-child(5) i {
  position: absolute;
  right: 30px;
  bottom: 16px;
}
.dynamic-fields-container div.row.clear-custom div.col-lg-12:nth-child(n) {
  margin-bottom: 20px;
}
.dynamic-fields-container div.row.clear-custom div.col-lg-12:nth-child(5) {
  position: relative;
}
.dynamic-fields-container div.row.clear-custom div.col-lg-12:nth-child(5) i {
  position: absolute;
  right: 30px;
  bottom: 16px;
}
.theme-input-colors .color-picker__input:checked + .color-picker__color:after {
  content: "";
}
.theme-input-colors .color-picker__color:after {
  /* pointer-events: none; */
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 3px);
  height: calc(100% + 3px);
  border-radius: 50%;
  border: 2px solid black;
  content: none;
}
.theme-input-colors .color-picker__color {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 !important;
  border-radius: 50%;
}

.theme-input-colors .color-picker__item {
  display: inline-block;
  margin-right: 10px;
}
.theme-input-colors .color-picker__input {
  display: none;
}
select.js-example-basic-single {
  position: absolute;
  left: 62px;
  bottom: 14px;
  border: 1px solid #fff;
}
.post-ad-container .alert a {
  color: #ffc220;
}
.control-label span {
  color: red;
}
.great-product-herro {
  position: relative;
}
.sb-short-head span {
  color: #ffc220;
  font-size: 20px;
}
.great-pro-head span {
  color: #ffc220;
  font-size: 20px;
}
.bidding-content label {
  margin-bottom: 10px;
}
.ad-user-information label {
  margin-bottom: 10px;
}
.ad-extra-information label {
  margin-bottom: 10px;
}
.sub-item.ad-user-information div.col-lg-6:nth-child(n) {
  margin-bottom: 20px;
}
.ad-extra-information div.col-lg-6:nth-child(n) {
  margin-bottom: 20px;
}
.noUi-horizontal {
  height: 13px;
}

/*--------------Blog---------------*/
.blog-post .post-img img {
  width: 100%;
  border-radius: 5px 5px 0px 0px;
}
.blog-post .post-content h3 {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
  padding: 5px 0px;
}
.blog-post .post-content h3 a:hover {
  color: #242424;
}
.posts-masonry .blog-post {
  border-radius: 5px;
  margin-bottom: 30px;
}
.post-info i {
  margin-right: 5px;
  color: #777 !important;
}
.post-content .post-info a {
  color: #777777;
}
.alert-dismissible .btn-close,
.search-vendor-page .promotional_slider .featured-slider-1,
.background-section {
  z-index: 0;
}
.video_icon_container a.play-video {
  position: absolute;
  left: -5px;
  top: -30px;
}
.sb-header-5.sticky .sign-in-up ul.list-sign-in li {
  padding: 6px 5px;
}
.sb-header.sb-header-5 nav.sb-menu.menu-5 ul li a {
  font-weight: 400;
}
.sb-header.sb-header-5.sticky .sb-notify .point {
  top: 4px;
}
.background-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: -1;
}
.blog-post .post-content {
  padding: 20px;
  background: #ffffff;
  border: 1px solid #eee;
}
.blog-post .post-info-date {
  padding: 8px 20px;
  border: 1px solid #eee;
  background: #f5f5f5;
}
.main-content-area .pattern-bgs {
  padding-top: 80px;
}
.blog-post .post-info-date a {
  color: #777777 !important;
}
.blog-post .post-info-date a strong {
  float: right;
  font-weight: 500;
}
.blog-post .post-info-date a strong:after {
  content: "\f178";
  font-family: "FontAwesome";
  margin-left: 5px;
  position: relative;
  top: 2px;
}
.blog-post .post-content h2 {
  font-size: 25px;
}
.panel-title {
  text-transform: capitalize;
}
.blog-sidebar .widget.widget-content ul li:last-child {
  border: 0;
}
.calendar_wrap table#wp-calendar {
  width: 100%;
}
div#calendar_wrap {
  padding: 20px 25px;
  background: #fff;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%) !important;
}
form div input#s {
  background: #fbfdff;
  border: 1px solid #e9f1fc;
  height: 45px;
  width: 70%;
  padding-left: 20px;
}
form div input#searchsubmit {
  background: #ffc220;
  border: 1px solid #ffc220;
  padding: 6.9px 20px;
  border-radius: 2px;
  transition: 0.8s;
  margin-left: -5px;
}
form div input#searchsubmit:hover {
  transition: 0.5s !important;
  background-color: #ffc220;
  box-shadow: 0 0.5rem 1.125rem -0.5rem rgb(255 194 32 / 90%);
}
.post-info a {
  margin-right: 20px;
}
.post-info {
  font-size: 14px;
  color: #777;
  text-transform: capitalize;
}
.blog-detial .post-img img {
  border: 5px;
}
.blog-detial .post-img {
  margin-bottom: 25px;
  overflow: hidden;
}
.single-blog.blog-detial .blog-post .post-excerpt blockquote {
  border-left: 5px solid #ffc220;
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
}
.blog-post .post-excerpt .tags-share {
  border-left: 4px solid #ffc220;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%) !important;
  position: relative;
  margin-bottom: 20px;
}
.blog-post .post-excerpt .tags-share .tags.pull-left i {
  position: absolute;
  left: 0px;
}
.blog-post .post-excerpt .tags-share .tags.pull-left i {
  position: absolute;
  left: 12px;
  top: 38px;
  color: #ffc220;
}
.blog-section .blog-heading hr {
  border-top: 1px solid #777777;
}
textarea#comment {
  background: #fbfdff;
  border: 1px solid #e9f1fc;
}
.comment-respond span.required {
  color: red;
}
input#author {
  margin-top: 6px;
  background: #fbfdff;
  border: 1px solid #e9f1fc;
  height: 45px;
  margin-bottom: 25px;
}
input#email {
  margin-top: 6px;
  background: #fbfdff;
  border: 1px solid #e9f1fc;
  height: 45px;
}
input#url {
  margin-top: 6px;
  background: #fbfdff;
  border: 1px solid #e9f1fc;
  height: 45px;
}
#commentform .col-sm-4 {
  margin-top: -10px;
}
#commentform p.form-submit {
  padding: 18px 0px 40px;
}
.detail-list span.info-heading {
  color: #242424;
}
span.info-heading {
  font-size: 18px;
  font-weight: 700;
  margin-right: 5px;
  color: #242424;
}
.sb-click-num span.sb-phonenumber {
  font-size: 16px;
  font-weight: 400;
}
section.dt-detaial-page {
  padding: 10px;
  background: #242424;
}
ul.detail-page-item li {
  display: inline-block;
  position: relative;
}
ul.detail-page-item li:not(:last-child)::after {
  content: "/";
  margin: auto 20px;
  color: #fff;
}
ul.detail-page-item li a {
  color: #ffffff;
}
.mt-n9,
.my-n9 {
  margin-top: -3rem !important;
}
.place-content .place-content-heding span {
  color: #777777;
}
.custom-padding.latest-blog {
  padding: 80px 0px 60px 0;
}
.latest-blog .blog-post {
  margin-bottom: 20px;
}
.blog-post .post-img img {
  width: 100%;
}
.ad-slider-box.custom-padding {
  padding: 100px 0px 35px;
}
/*-------------End-Blog---------------*/

/*-------------Seller---------------*/
.media {
  display: flex;
  align-items: flex-start;
}
.media-body {
  flex: 1;
}
.card .media img {
  width: 100px;
  margin-right: 10px;
  height: 110px;
  border-radius: 5px !important;
}
.media-body ul.listing-owner-social li {
  display: inline-block;
  padding: 0 6px;
  margin-top: 8px;
  background: #fff3d2;
  border-radius: 2px;
  margin-right: 1px;
}
.media-body ul.list-unstyled li span i {
  color: #ffc220;
}
.media-body ul.listing-owner-social li a {
  color: #242424;
}
.card.card-default.p-4 {
  background-color: #f5f5f5;
  border: 1px solid #fff;
}
.media-body h5.mt-0.mb-2.text-dark {
  margin-bottom: 0 !important;
}
.media-body ul.list-unstyled li {
  line-height: 1.5;
}
ul.filterAdType {
  margin: 0 0 0 3px;
  padding: 0;
}
ul.filterAdType li {
  display: inline-block;
  list-style: outside none none;
  margin-left: -3px;
}
ul.filterAdType li .filterAdType-count {
  color: #232323;
  display: block;
  line-height: 60px;
  padding: 0 20px;
  font-weight: 500;
  float: right;
}
ul.filterAdType li.active .filterAdType-count,
ul.filterAdType li .filterAdType-count:hover {
  background: #ffc220 none repeat scroll 0 0;
  color: #fff;
}
.listingTopFilterBar {
  background: #f5f5f5 none repeat scroll 0 0;
  margin-top: 40px;
  display: flex;
  padding-right: 10px;
  flex-direction: row;
  box-shadow: 0 0 3px rgb(206 206 206 / 36%);
  align-items: center;
  padding-top: 9px;
  height: 61px;
  border-color: #eeeeee;
  border-radius: 0;
  margin-bottom: 33px;
}
.header-listing {
  display: inline-block;
  padding: 12px 20px;
  margin-top: -9px;
  width: 100%;
}
.no-padding {
  padding: 0 !important;
}
.short-features .no-padding {
  padding: 0 15px !important;
  padding-bottom: 10px !important;
}
.header-listing h6 {
  display: inline-block;
  font-size: 14px;
  margin: 10px 10px 5px 0;
  text-transform: capitalize;
  vertical-align: top;
  color: #232323;
  font-weight: 500;
}
.header-listing .custom-select-box {
  display: inline-block;
  width: 230px;
}
.places-content .place-content-heding span {
  color: #777;
}
.content-pricing .col-lg-4:nth-child(3) .basic-pricing {
  background: #fff9e5;
}
.content-pricing .col-lg-4:nth-child(3) .pricing-icon {
  background: #ffce26;
}
.content-pricing .col-lg-4:nth-child(3) .btn.btn-block {
  background: #fff9e5;
  color: #ffc220;
}
.header-transparent-on ul.list-sign-in li .dropdown-user-login li a {
  color: #fff;
}
.listing-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fbfbfb;
  width: 100%;
  padding: 10px 15px;
  border-top: 1px solid #e9f1fc;
}
.found-listing-heading .list-cat {
  padding: 15px;
  border-bottom: 0;
}
.lt-found-date {
  width: 100%;
}
.padding_cats .cat-btn {
  padding: 3px 0px;
  font-size: 12px;
  margin-right: 5px;
  color: #777777;
  text-transform: capitalize;
  border-radius: 40px;
  transition: 0.8s;
  background: transparent;
}
.padding_cats .cat-btn:hover {
  box-shadow: none;
  color: #ffc220;
  transition: 0.8s;
}
.list-cat .category-title {
  margin-bottom: -3px;
}
.listing-bidding .clock .text {
  background: #f4f9fe;
  padding: 4px 4px;
  color: #242424;
  margin-right: -1px;
  border-radius: 0;
  font-size: 15px;
  margin-top: -5px;
  display: block;
}
span.found-listing-head-address i {
  margin-right: 5px;
  color: #777 !important;
}
.clock .column-time:nth-child(1) div.text {
  border-radius: 5px 0px 0px 0px;
}
.clock .column-time:nth-child(4) div.text {
  border-radius: 0px 5px 0px 0px;
}
.elementor-column-gap-default
  > .elementor-column
  > .elementor-element-populated {
  padding: 0 !important;
}
/*-----------New Home Page------------*/
#intro-hero {
  background-size: cover;
  background-repeat: no-repeat;
  height: 700px;
  color: #fff;
  padding-bottom: 100px;
  padding-top: 100px;
  position: relative;
  z-index: 0;
}
.header-3-old.sticky .header-3-post a {
  margin-top: -10px;
}

.ads-search-heading {
  padding-top: 80px;
}
.hero-title {
  color: #fff;
  font-weight: 400;
  font-size: 30px;
  margin: 0;
}
.ads-search-heading h1 {
  font-weight: 700;
  padding-top: 15px;
  color: #ffff;
  font-size: 50px;
}
.hero-tagline {
  font-size: 18px;
  margin-bottom: 50px !important;
  color: #ffffff;
  line-height: 35px;
  width: 90%;
  margin-top: 32px;
}
.search-hero-form {
  background: #fff none repeat scroll 0 0;
  border-radius: 4px;
  box-shadow: 0 0 50px 10px rgb(0 0 0 / 5%);
  margin: 0 auto;
  padding: 30px;
}
.serach-form-heading {
  font-size: 26px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 15px;
  color: #191919;
  line-height: 1.6em;
  display: block;
}
form.search-hero-form .form-group {
  margin-bottom: 15px;
}
form.search-hero-form label {
  font-size: 16px;
  font-weight: 700;
  color: #232323;
}
form.search-hero-form .category.form-control {
  margin-top: 8px;
  padding: 15px 12px;
  border-radius: 2px;
  color: #a39595;
  font-size: 14px;
}
#intro-hero:after {
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.state-heading {
  text-align: center;
}
.visited-state {
  background: #f7f7f9;
  background-color: #f7f7f9;
  border-radius: 50%;
  display: inline-block;
  padding: 24px;
  transition: background-color 0.5s ease 0s;
}
.visited-state img {
  height: 60px;
  width: 60px;
}
.visited-content {
  background: #ffffff;
  position: relative;
  margin-top: -58px;
  overflow: hidden;
  margin-bottom: 20px;
}
.visited-content-items {
  display: inline-block;
  padding: 0px 27px;
  text-align: center;
  margin-bottom: 30px;
}
.cat-hero-section .state-heading h5 {
  font-size: 14px;
  font-weight: 500;
}
.state-heading h5 {
  color: #232323;
  display: block;
  margin-top: 12px;
  font-size: 16px;
  text-align: center;
  font-weight: 400;
}
.great-product .great-product-content .category-title span.padding_cats {
  margin-right: 5px;
}
.great-product .great-product-content .category-title span.padding_cats {
  margin-right: 5px;
  position: relative;
  top: -5px;
}
footer .footer-top.sb-foot-2 .logo a img,
.sb-header .logo a img {
  padding-left: 0;
}
.visited-heading h2 {
  color: #232323;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
}
.ads-location .sb-short-head h2 {
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: 700;
  text-transform: capitalize;
}
.ad-button-r1 button a {
  color: #ffffff;
}
.slider-search-home .promotional-feat-heading h3 {
  padding-left: 0;
}
.slider-search-home .promotional-feat-heading {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  padding: 0px 30px;
}
.visited-heading h2 {
  display: inline-block;
}
.visited-heading {
  position: relative;
  overflow: hidden;
  padding: 30px 30px 25px;
}
form.form-join.search-hero-form input {
  padding: 15px 12px;
  font-size: 14px;
  border-radius: 2px;
  margin-top: 8px;
}
.search-hero-form span.select2-selection__placeholder {
  font-size: 14px;
}
form.search-hero-form span.select2-selection.select2-selection--single {
  background: #ffffff;
  border: 1px solid #ced4da;
  padding: 1px 5px;
  height: 55px;
  margin-top: 5px;
  border-radius: 2px;
}
.ad-detail-video {
  background: #fff;
  padding: 30px;
  margin-top: 30px;
  position: relative;
}
.slider-search-home .promotional-feat-heading h3 {
  font-size: 32px;
  padding-top: 50px;
  margin-bottom: 0;
}
.ad-detail-video h3 {
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 20px;
}
form.search-hero-form
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 50px;
  position: absolute;
  top: 8px;
  right: 10px;
  width: 20px;
}
.promotional_slider.slider-home {
  background: #fff;
}
.btn-block {
  width: 100%;
  margin-top: 5px;
}
.footer-black .num-heading h3 {
  color: #ffffff;
}
.template-icons {
  border: 1px solid #e5e5e5;
  display: block;
  float: left;
  font-size: 16px;
  margin: -1px 0 0 -1px;
  padding: 0;
  width: 33%;
}
.template-icons > .icon-box-icon {
  color: #231f20;
  display: inline-block;
  font-size: 45px;
  line-height: 80px;
  margin-right: 5px;
  min-height: 80px;
  min-width: 80px;
  padding-left: 0;
  text-align: center;
  position: relative;
}
.icon-box-icon {
  float: left;
  font-size: 64px;
  margin-left: 0;
  padding-left: 20px;
}
.class-name {
  color: #777;
  font-size: 18px;
  padding: 1.5em;
  position: relative;
  overflow: hidden;
}
.section-padding {
  padding: 80px 0;
}
.template-icons > .icon-box-icon:after {
  content: "";
  border-right: 1px solid #f1f1f1;
  height: 112px;
  width: 100%;
  position: absolute;
  top: 1px;
  left: 0;
}
#google-map-btn {
  display: inline-block;
  font-size: 16px;
  list-style: outside none none;
  padding: 0;
  position: relative;
  bottom: 25%;
  z-index: 999;
}
.search-vendor-page #google-map-btn {
  position: absolute;
  top: 0;
}
#google-map-btn li {
  float: left;
  line-height: 20px;
  margin-left: 4px;
}
#google-map-btn a {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 1px 4px -1px rgb(0 0 0 / 20%);
  box-sizing: border-box;
  color: #333;
  display: inline-block;
  padding: 9px 16px 8px;
  transition: all 0.2s ease-in-out 0s;
}
.single-blog nav.woocommerce-MyAccount-navigation {
  background: #f3f3f5;
  border: 1px solid #dfe0e1;
  padding: 30px 60px;
  border-radius: 4px;
}
.single-blog nav.woocommerce-MyAccount-navigation ul li {
  padding-top: 15px;
  font-size: 18px;
}
.woocommerce-account .woocommerce-MyAccount-content {
  background: #f3f3f5;
  border: 1px solid #dfe0e1;
  padding: 30px 60px;
  border-radius: 4px;
}
.woocommerce-account .woocommerce-MyAccount-content p {
  margin-bottom: 4px;
}
.woocommerce-EditAccountForm input.woocommerce-Input {
  height: 45px;
  border: 1px solid #e9f1fc;
  background: #ffffff;
  padding: 0 15px;
}
.woocommerce-EditAccountForm .woocommerce-Button {
  margin-top: 20px !important;
  margin-left: 5px !important;
}
.report-quote .modal-content {
  margin-top: 100px;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  border-radius: 0px;
}
.share-ad .modal-content {
  margin-top: 100px;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  border-radius: 0px;
}
div#related-ads-container {
  margin-top: 30px;
}
.fixes-me-top {
  margin-bottom: 30px;
}
review-helpful {
  margin-top: 10px;
}
.review-helpful span {
  display: block;
  margin-bottom: 10px;
}
.review-helpful .Like {
  position: relative;
  display: inline-block;
}
.review-helpful .Emojis {
  position: relative;
  float: left;
  width: 100%;
  border-radius: 100rem;
  -webkit-transition: 0.3s 0.3s;
  -moz-transition: 0.3s 0.3s;
  -o-transition: 0.3s 0.3s;
  transition: 0.3s 0.3s;
  opacity: 1;
  visibility: visible;
  margin-bottom: 25px;
}
.review-helpful .Emoji {
  position: relative;
  width: 4.5rem;
  height: 5rem;
  color: #ffd972;
  cursor: pointer;
  float: left;
}
.Emoji .icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.Emoji .emoji-name {
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 3px;
  bottom: 75px;
  left: 7px;
  margin-left: 3px;
  color: #fff;
  position: absolute;
  width: 50px;
  text-align: center;
  opacity: 0;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease- 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.Emoji .emoji-count {
  border-radius: 3px;
  bottom: -25px;
  left: 8px;
  color: #242424;
  padding: 2px 10px;
  position: absolute;
  font-size: 12px;
  width: 55px;
  text-align: center;
}
.review-helpful .none {
  display: none;
}
.review-helpful .Emoji .icon-like {
  background-position: 14px -4px;
}
.review-helpful .Emoji .icon {
  background-image: url(../images/giphy.gif);
  background-repeat: no-repeat;
}
.review-helpful .Emoji .icon-heartt {
  background-position: -55px -4px;
}
.review-helpful .Emoji .icon-wow {
  background-position: -180px -4px;
}
.review-helpful .Emoji .icon-angry {
  background-position: -310px -4px;
}
.review-helpful .Emoji:hover .emoji-name {
  opacity: 1;
}

.country-locations.single-line img {
  padding-top: 10px;
}
.country-locations img {
  float: left;
  width: 76px;
  padding-top: 10px;
  padding-left: 20px;
  margin-right: 10px;
}
.sticky-post-button {
  border-radius: 50%;
  bottom: 50px;
  box-shadow: 1px 1px 4px rgb(0 0 0 / 20%);
  height: 90px;
  right: 90px;
  position: fixed;
  text-align: center;
  background: #ffc220;
  width: 90px;
  z-index: 999;
}
.sticky-post-button .sell-icons {
  display: inline-block;
  margin: 22px 0 0 0;
  width: 100%;
}
.sticky-post-button .sell-icons i {
  font-size: 36px;
  margin-bottom: 0;
  font-weight: normal;
}
.sticky-post-button h4 {
  font-size: 16px;
  font-weight: 500;
  margin-top: -7px;
}
a#quick-cart-pay h6 {
  color: #242424;
  margin-left: -12px;
}
#quick-cart-pay > span {
  border-radius: 50%;
  color: #232323;
  display: block;
  height: 106px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out 0s;
  width: 60px;
}
.sticky-post-button-hidden {
  display: none;
}
.sticky-post-button-visible {
  display: block;
}
.sticky-post-button-fadeout {
  opacity: 0.5;
}
.sidebar.user_sidebar {
  margin-top: 25px;
}
.cd-top.cd-is-visible {
  visibility: visible;
  opacity: 1;
  z-index: 99;
}
.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgb(0 0 0 / 5%);
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  background: #ffc220 url(../../images/cd-top-arrow.svg) no-repeat center 50%;
}
.cd-top.cd-fade-out {
  opacity: 0.5;
}
.dynamic-fields-container input[type="text"],
.dynamic-fields-container input[type="url"],
.dynamic-fields-container input[type="integer"] {
  background: #fbfdff;
  min-height: 50px;
  border: 1px solid #e9f1fc;
  color: #959595;
}
.cats_model .modal-content {
  margin-top: 100px;
}
.cats_model ul.city-select-city li {
  display: inline-block;
  vertical-align: top;
  padding-right: 10px;
}
.cats_model ul.city-select-city li a {
  word-wrap: break-word;
}
.cats_model h3.modal-title.text-center {
  color: #242424;
  font-size: 16px;
}
.cats_model h3.modal-title.text-center {
  color: #242424;
  font-size: 16px;
}
.cats_model .modal-footer button:hover {
  color: #242424;
}
.cats_model .modal-content .modal-body .search-block label {
  color: #242424;
  font-weight: 600;
}
.recent-ads .recent-ads-list-image {
  display: table-cell;
  width: 96px;
}
.cashew-multiple-grid .nav-pills .nav-link:hover {
  color: #777;
}
.sb-header.sb-header-4 .logo a img {
  padding-top: 0px;
}
.recent-ads .recent-ads-list-content {
  display: table-cell;
  vertical-align: top;
}
.recent-ads .recent-ads-list-image-inner {
  background-color: rgba(0, 0, 0, 0.12);
  display: block;
  min-height: 60px;
  margin: 0 16px 0 0;
  position: relative;
  width: 100px;
}
.recent-ads-list-image .featured-ribbon {
  height: 80px;
  overflow: hidden;
  position: absolute;
  right: 0;
  text-align: right;
  width: 80px;
  z-index: 2;
}

.recent-ads-list-image .featured-ribbon span {
  background: #d2281e none repeat scroll 0 0;
  box-shadow: 0 3px 12px -7px rgb(0 0 0);
  color: #fff;
  display: block;
  font: 600 10px/30px "Source Sans Pro", sans-serif;
  position: absolute;
  right: -25px;
  text-align: center;
  text-transform: uppercase;
  top: 10px;
  transform: rotate(45deg);
  width: 100px;
}
/*new pages css*/
.walnut.main-search {
  min-height: 422px;
  color: #fff !important;
  position: relative;
  z-index: 0;
}
.walnut.main-search.parallex::before {
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.walnut.main-search .main-search-title {
  padding-top: 145px;
  width: 100%;
  margin: 0 auto;
}
.walnut.main-search select.form-control.walnut-select {
  height: 54.3px;
  margin-top: 0.2px;
  width: 100%;
  color: #444;
  padding-left: 10px;
  border-radius: 0px;
}
.walnut.main-search p {
  color: #fff;
  z-index: 55;
  position: relative;
  margin-bottom: 10px;
}
.walnut.main-search .main-search-title h1 {
  color: #fff;
  font-size: 45px;
  margin-top: 0;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.walnut.main-search .search-section {
  height: auto;
  outline: medium none;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 5;
  margin: 0 auto;
}
.walnut.main-search .search-section .search-options > li {
  float: left;
  list-style: outside none none;
  margin: 0;
  width: 296px;
}
.walnut.main-search .search-section .search-options > li input {
  height: 55px;
  margin: 0;
  width: 100%;
  color: #444;
  padding-left: 10px;
}
.walnut.main-search .search-section .search-options > li .btn {
  border-radius: 0 2px 2px 0;
  height: 55px;
  width: 100%;
}
.walnut.main-search .search-section .search-options > li:nth-child(4) {
  width: 200px;
}
.walnut.main-search .hero-form-sub {
  color: #fff;
  font-size: 12px;
  margin: 24px 0 0;
}
.walnut.main-search .hero-form-sub strong {
  margin: 0 20px 0 0;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.walnut.main-search .hero-form-sub ul {
  display: inline-block;
}
.walnut.main-search .hero-form-sub li {
  margin: 0;
  padding: 0;
  display: inline-block;
  margin: 5px 10px 5px 0;
}
.walnut.main-search .hero-form-sub li a {
  background-color: #2e2e2e;
  border-radius: 3px;
  color: #fff;
  padding: 3px 12px;
  font-size: 14px !important;
  text-transform: capitalize;
}
.walnut.main-search #form-panel {
  background-color: rgba(255, 255, 255, 0.25);
  padding: 24px 25px;
}
.walnut.main-search .search-section #form-panel .search-options > li {
  width: 25%;
}
/*Pistashio  page */
.pistachio-classified {
  background-size: cover;
  height: 670px;
  background-position: center, center;
}
.modern_sample.pistachio-classified .content {
  margin: auto;
  padding: 10em 5em 5em;
  position: relative;
  text-align: center;
}
.modern_sample.pistachio-classified .content h1 span {
  font-weight: 400;
}
.modern_sample.pistachio-classified .content h1 {
  color: #fff;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 400;
  word-spacing: 5px;
  font-size: 38px;
}
.modern_sample.pistachio-classified .content h1 strong {
  color: #ffffff;
  font-weight: 700;
}
.pistachio-classified .search-section {
  height: auto;
  outline: medium none;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 5;
}
.pistachio-classified .search-section #form-panel {
  text-align: left;
}
.pistachio-classified #form-panel {
  background-color: rgba(255, 255, 255, 0.25);
  padding: 24px 25px;
}
.pistachio-classified .search-section #form-panel .search-options > li {
  float: left;
  list-style: outside none none;
  margin: 0;
  width: 33.33%;
}
.pistachio-classified .search-section .search-options > li {
  float: left;
  list-style: outside none none;
  margin: 0;
  width: 296px;
}
.pistachio-classified .search-section .search-options > li input {
  height: 55px;
  margin: 0;
  width: 100%;
  color: #444;
  background: #ffffff !important;
  padding-left: 10px;
  border: 1px solid #ffffff;
}
.pistachio-classified
  .search-section
  .search-options
  > li
  .select2-container--default
  .select2-selection--single {
  border: 1px solid #e9f1ec;
  background: #ffffff;
}
.pistachio-classified .search-section .search-options > li .btn {
  border-radius: 0 2px 2px 0;
  height: 55px;
  width: 100%;
}
.pistachio-classified .new-categoy {
  position: relative;
  overflow: hidden;
  z-index: 3;
  text-align: center;
  padding: 65px 0;
}
.pistachio-classified .new-categoy .cat_lists {
  margin: 0 auto;
  display: table;
  text-align: center;
}
.pistachio-classified .c-icon {
  background: #fff none repeat scroll 0 0;
  border-radius: 100%;
  margin-bottom: 20px;
  box-shadow: 0 20px 10px -7px rgb(0 0 0 / 15%);
  height: 130px;
  transition: all 0.2s ease-in-out 0s;
  width: 130px;
  position: relative;
  float: left;
  margin-right: 5px;
}
.ads-grid-container .ads-grid-style img {
  width: 100%;
}
.pistachio-classified .c-icon a > img {
  position: relative;
  top: 10px;
  padding: 10px;
}
.pistachio-classified select.form-control.pistachio-select {
  height: 55px;
  border-radius: 0;
}

/*List copied*/

.pistachio-classified-grid .heading-panel {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.pistachio-classified-grid .heading-panel h2 {
  color: #222;
  font-size: 28px;
  font-weight: 700;
  padding-bottom: 20px;
  position: relative;
  text-transform: capitalize;
}
.pistachio-classified-grid .heading-panel h2::before {
  background-color: #242424;
  bottom: 6px;
  content: "";
  height: 1px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 99px;
}
.pistachio-classified-grid .heading-panel h2::after {
  background-color: #242424;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 59px;
}
.pistachio-classified-grid .heading-text {
  display: inline-block;
  line-height: 26px;
  width: 50%;
  margin-top: 20px;
}
.well.ad-listing {
  margin-bottom: 30px;
  padding: 0;
  position: relative;
}
.well.ad-listing {
  background-color: #fff;
  border: 1px solid #eaedef;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: none;
}
.well.ad-listing .col-md-3.grid-style {
  padding-left: 0;
}
.sb-modern-list .no-padding {
  padding: 0 !important;
}
.sb-modern-list.ad-listing .img-box {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.sb-modern-list.ad-listing .img-box::before {
  background: #242424 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -ms-transform: scale(0.9);
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  width: 100%;
}
.sb-modern-list .featured-ribbon {
  height: 80px;
  overflow: hidden;
  position: absolute;
  right: 0;
  text-align: right;
  width: 80px;
  z-index: 2;
}
.sb-modern-list .featured-ribbon span {
  background: #d2281e none repeat scroll 0 0;
  box-shadow: 0 3px 12px -7px rgb(0 0 0);
  color: #fff;
  display: block;
  font: 600 10px/30px "Source Sans Pro", sans-serif;
  position: absolute;
  right: -25px;
  text-align: center;
  text-transform: uppercase;
  top: 10px;
  transform: rotate(45deg);
  width: 100px;
}
.sb-modern-list.ad-listing .img-box img {
  width: 100%;
}
.sb-modern-list.ad-listing .quick-view {
  margin-top: -100px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.sb-modern-list.ad-listing .view-button {
  background: #fff none repeat scroll 0 0;
  border: medium none;
  color: #252525;
  display: inline-block;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  margin-left: 5px;
  margin-right: 5px;
  opacity: 0;
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -o-transform: translateY(80px);
  -ms-transform: translateY(80px);
  transform: translateY(80px);
  width: 40px;
}
.sb-modern-list.ad-listing .user-preview {
  position: absolute;
  left: 10px;
  top: 10px;
}
.sb-modern-list.ad-listing .user-preview img {
  border-radius: 50%;
  box-shadow: 0 1px 1px rgb(0 0 0 / 80%);
  display: inline-block;
  height: 40px;
  vertical-align: middle;
  width: 40px;
}
.sb-modern-list.ad-listing .content-area {
  padding: 25px 0 0;
  overflow: hidden;
  position: relative;
}
.sb-modern-list.ad-listing .content-area .category-title {
  color: #a0a0a0;
  font-size: 14px;
  margin-bottom: 3px;
  text-transform: capitalize;
  position: relative;
}
.sb-modern-list.ad-listing .content-area .category-title a {
  color: #777777;
  margin-right: 10px;
}
.sb-modern-list.ad-listing .content-area h3 {
  color: #232323;
  font-size: 24px;
  margin-bottom: 6px;
  text-transform: capitalize;
  width: 80%;
  font-weight: 500;
}
.sb-modern-list.ad-listing .content-area h3 a {
  color: #232323;
}
.sb-modern-list.ad-listing .content-area .additional-info {
  margin: 0;
  padding: 0;
  position: absolute;
  right: 30px;
  top: 15px;
}
.sb-modern-list.ad-listing .content-area .additional-info li {
  display: inline-block;
  margin: 0 2px;
}
.sb-modern-list.ad-listing .content-area .additional-info li a {
  background: #f4f4f4 none repeat scroll 0 0;
  border-radius: 50%;
  color: #b7b7b7;
  display: block;
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  margin-right: 2px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 30px;
}
.sb-modern-list .ad-meta-info {
  font-size: 14px;
  margin: 0;
  padding: 0;
}
.sb-modern-list .ad-meta-info li {
  display: inline-block;
  margin-right: 15px;
}
.sb-modern-list .ad-meta-info li i {
  margin-right: 5px;
  color: #a0a0a0;
}
.sb-modern-list .ad-meta-info li a {
  color: #777777;
  font-size: 15px;
  text-transform: capitalize;
}
.sb-modern-list.well.ad-listing .ad-details p {
}
.sb-modern-list .short-info {
  overflow: hidden;
}
.sb-modern-list .ad-listing .content-area .ad-stats {
  float: left;
  padding-right: 10px;
  padding-top: 0;
  width: 100%;
  color: #a0a0a0;
  font-size: 14px;
}
.sb-modern-list.ad-listing .content-area .ad-stats span {
  font-weight: 600;
  color: #232323;
}
.sb-modern-list.ad-listing .content-area .price {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: -2px;
  overflow: hidden;
  color: #ffc220;
}
.sb-modern-list.ad-listing .content-area .price h3 {
  margin-bottom: -5px;
  font-size: 16px;
  padding-top: 10px;
}
.sb-modern-list.ad-listing .content-area .negotiable {
  display: block;
}
.sb-modern-list .negotiable {
  font-size: 14px;
  line-height: 24px;
  color: #777777 !important;
  font-weight: 400;
}
.sb-modern-list.ad-listing .content-area .btn {
  padding: 5px 10px !important;
  width: 80%;
}
.sb-modern-list.ad-listing .content-area .col-md-9 {
  padding: 0 35px;
  position: relative;
}
.sb-modern-list.ad-listing .content-area .col-md-9::after {
  background-color: #e5eaef;
  content: "";
  height: 164px;
  position: absolute;
  right: 10px;
  top: 0;
  width: 1px;
}
.sb-modern-list.ad-listing:hover .img-box::before {
  opacity: 0.7;
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.sb-modern-list.ad-listing:hover .view-button {
  opacity: 1;
}
.sb-modern-list.ad-details p {
  width: 90%;
  color: #777777;
  line-height: 1.8;
}
.pistachio-classified-grid {
  padding: 80px 0px;
}
.ad-listing .total-images {
  color: #fff;
  line-height: 20px;
  font-size: 12px;
  text-align: center;
}
.ad-listing .total-images {
  background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
  bottom: 0;
  color: #fff;
  left: 5px;
  line-height: 20px;
  padding: 0 10px;
  position: absolute;
  text-align: center;
}
.total-images strong {
  color: #fff;
}
.ad-listing .quick-view {
  margin-top: -100px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.pistachio-classified-grid .ad-listing .view-button {
  background: #fff none repeat scroll 0 0;
  border: medium none;
  color: #252525;
  display: inline-block;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  margin-left: 5px;
  margin-right: 5px;
  opacity: 0;
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -o-transform: translateY(80px);
  -ms-transform: translateY(80px);
  transform: translateY(80px);
  width: 40px;
}
.ad-listing .play-video {
  color: #fff;
  font-size: 26px;
  opacity: 0.75;
  position: absolute;
  transition: all 0.25s ease 0s;
  left: 80px;
  top: 18px;
  z-index: 9;
}

.ad-listing .clock .column-time {
  width: 24%;
}
.ad-listing .listing-bidding {
  position: absolute;
  bottom: 0;
  right: -6px;
  z-index: 999;
}

.padding-right {
  padding-right: 5px;
}
.padding-left {
  padding-right: 5px;
}
.pistachio-classified-pricing {
  padding: 80px 0px;
}
.pistachio-classified-pricing::before {
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.pistachio-classified-pricing .app-text-section {
  padding-top: 130px;
  position: relative;
}
.pistachio-classified-pricing .app-text-section span {
  margin-bottom: 15px;
  opacity: 0.8;
  text-transform: uppercase;
}
.custom-padding .promotionalslider_wrapper_4 {
  padding: 0px !important;
}
.pistachio-classified-pricing .app-text-section h3 {
  color: #fff;
  font-size: 32px;
  padding: 10px 0px;
  font-weight: 700;
  text-transform: capitalize;
}
.pistachio-classified-pricing .app-text-section ul {
  list-style: outside none none;
  margin: 15px 0 0px;
  padding: 0;
}
.pistachio-classified-pricing .app-text-section ul li {
  color: #fff;
  font-size: 14px;
  padding: 3px 0 3px 20px;
  margin-left: 5px;
}
.sb-header-3 .sign-in-up ul li a.btn.btn-theme {
  padding: 10px 18px;
}
.pistachio-classified-pricing .app-text-section ul li::before {
  content: "\f0a4";
  font-family: "fontawesome";
  left: 0;
  position: absolute;
}
.cashew-multiple-grid {
  padding: 0px 0px 80px;
}
.custom-padding {
  padding: 80px 0px;
}
.cashew-multiple-grid .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #242424;
  background-color: #ffc220;
}
.cashew-multiple-grid .nav-pills .nav-link {
  background: #f3f3f3;
  background-color: rgb(243, 243, 243);
  margin-right: 5px;
  border-radius: 0;
  padding: 10px 20px;
}

.cashew-main-counter {
  height: 100%;
  text-align: center;
  color: #fff !important;
  position: relative;
  z-index: 44;
  padding: 90px 0 60px 0;
}
.cashew-main-counter::before {
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.cashew-main-counter.funfacts .icons {
  position: relative;
  width: 100%;
  text-align: center;
  clear: both;
  display: table;
  margin-bottom: 25px;
}
.cashew-main-counter.funfacts .icons i {
  font-size: 60px;
}
.cashew-main-counter.funfacts .number {
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
}
.cashew-main-counter h4 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 30px;
  font-weight: 500;
}
.cashew-main-counter h4 span {
  color: #ffc220;
}
.hero.hero-cashew {
  color: #fff;
  padding: 160px 0;
  position: relative;
  height: 600px;
  text-align: center;
  clear: both;
}
.hero-cashew .hero-cashew-heading h1 {
  font-size: 50px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 25px;
}
.hero-cashew .hero-cashew-heading h1 b {
  color: #ffffff;
}
.hero-cashew .cashew-input-search {
  width: 75%;
  margin: 0 auto;
  position: relative;
}
.hero-cashew .cashew-input-search input {
  height: 70px;
  padding: 0px 20px;
  border-radius: 0;
  font-size: 1.4em;
}
.hero-cashew .cashew-search-icon {
  position: absolute;
  right: -2px;
  top: 0;
}
.cashew-search-icon .btn.btn-theme {
  width: 100px;
  height: 70px;
  border-radius: 0;
}
.walnut.main-search p strong {
  color: #fff;
}
.hero-cashew-heading p {
  margin: 0 0 1.42857143em;
  color: #ffffff;
}
.cashew-its-work .how-it-work {
  float: left;
  padding: 0 15px;
  width: 33.2%;
}
.how-it-work-icon::after {
  background: rgba(0, 0, 0, 0) url("../images/dashed-line.jpg") repeat scroll 0
    0;
  content: "";
  height: 1px;
  position: absolute;
  right: -125px;
  top: 50%;
  width: 125px;
  z-index: 2;
}

.cashew-its-work .heading-panel {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.cashew-its-work .heading-panel h2 {
  color: #222;
  font-size: 28px;
  font-weight: 700;
  padding-bottom: 20px;
  position: relative;
  text-transform: capitalize;
}
.cashew-its-work .heading-text {
  display: inline-block;
  line-height: 26px;
  width: 50%;
  margin-top: 20px;
}
.cashew-its-work .how-it-work-icon {
  background: rgba(0, 0, 0, 0) url(../images/border-dashed.png) no-repeat scroll
    left top / 100% auto;
  display: inline-block;
  height: 150px;
  padding: 14px;
  position: relative;
  width: 150px;
}
.cashew-its-work .how-it-work:first-of-type .how-it-work-icon::before {
  width: 0;
}
.cashew-its-work .how-it-work-icon::before {
  background: rgba(0, 0, 0, 0) url(../images/dashed-line.jpg) repeat scroll 0 0;
  content: "";
  height: 1px;
  left: -125px;
  position: absolute;
  top: 50%;
  width: 125px;
  z-index: 2;
}
.cashew-its-work .how-it-work-icon::after {
  background: rgba(0, 0, 0, 0) url(../images/dashed-line.jpg) repeat scroll 0 0;
  content: "";
  height: 1px;
  position: absolute;
  right: -125px;
  top: 50%;
  width: 125px;
  z-index: 2;
}
.cashew-its-work .how-it-work h4 {
  margin: 30px 0 10px;
  color: #232323;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}
.srvs-featured-ads.gray.no-extra {
  padding: 80px 0px;
}
.cashew-its-work .how-it-work p {
  padding: 0 10px;
}
.cat-hero-section .slick-next.slick-arrow {
  right: -25px;
  top: 27%;
  cursor: pointer;
}
.cat-hero-section .slick-prev.slick-arrow {
  left: -25px;
  top: 27%;
  cursor: pointer;
}
.cashew-its-work .how-it-work i {
  background: #fff none repeat scroll 0 0;
  border-radius: 50%;
  box-shadow: 0 0 8px 0 rgba(50, 50, 50, 0.1);
  color: #233141;
  font-size: 50px;
  height: 120px;
  left: 15px;
  padding: 42px 0;
  position: absolute;
  text-align: center;
  top: 15px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  width: 120px;
}
.cashew-its-work .how-it-work:last-of-type .how-it-work-icon::after {
  width: 0;
}

.cashew-app {
  background: rgba(0, 0, 0, 0) no-repeat scroll center center / cover;
}
.cashew-app::before {
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.cashew-app .parallex .app-download-section-wrapper {
  background-color: transparent;
  content: "";
  height: 100%;
  opacity: 1;
  position: relative;
  width: 100%;
  z-index: 3;
}
.cashew-app .app-download-section-wrapper {
  content: "";
  height: 100%;
  opacity: 0.95;
  position: relative;
  width: 100%;
  z-index: 3;
}
.cashew-app.parallex .app-download-section-container {
  padding: 120px 0;
}

.cashew-app .app-download-section-container {
  overflow: hidden;
  padding: 180px 0 150px;
  position: relative;
  width: 100%;
  z-index: 4;
}
.cashew-app.parallex .section-title {
  color: #fff;
}
.cashew-app .app-download-button,
.btn.app-download-button {
  -moz-user-select: none;
  background-color: transparent;
  border: 0 none;
  border-radius: 0;
  color: #ffffff;
  display: block;
  font-weight: 400;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-transition: all 0s ease-in-out 0s;
  -moz-transition: all 0s ease-in-out 0s;
  -ms-transition: all 0s ease-in-out 0s;
  -o-transition: all 0s ease-in-out 0s;
  transition: all 0s ease-in-out 0s;
  width: 100%;
  z-index: 1;
}
.cashew-app span.app-store-btn {
  display: block;
  padding: 12px 15px;
  position: relative;
  border: 1px solid #fff;
  o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}
.cashew-app .section-title {
  color: #1e1e1e;
  font-size: 42px;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 75px;
  text-align: center;
  text-transform: capitalize;
  width: 100%;
  word-spacing: 5px;
}
.cashew-app .btn.app-download-button i {
  display: block;
  font-size: 50px;
  float: left;
  padding: 0 20px 0 0;
}
.cashew-app .btn.app-download-button span.app-store-btn span {
  display: block;
  overflow: hidden;
  text-align: left;
  vertical-align: bottom;
  o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}
.cashew-app .btn.app-download-button span.app-store-btn span span:first-child {
  font-size: 14px;
}
.cashew-app .btn.app-download-button span.app-store-btn span span {
  display: block;
  overflow: hidden;
  width: 100%;
}
.cashew-app .btn.app-download-button span.app-store-btn span span:last-child {
  font-size: 20px;
  font-weight: 600;
}
.cashew-app .btn.app-download-button span.app-store-btn span span {
  display: block;
  overflow: hidden;
  width: 100%;
}
.cashew-app.app-download-section {
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.cashew-app.parallex,
.parallex-light {
  color: #fff !important;
  position: relative;
  z-index: 44;
}
.app-download-pistachio .app-download-section-wrapper {
  background-color: #363c48;
  content: "";
  height: 100%;
  opacity: 0.95;
  position: relative;
  width: 100%;
  z-index: 3;
}
.app-download-pistachio .app-download-section-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 4;
}
.app-download-pistachio .mobile-image-content {
  margin: 10px auto;
  max-width: 420px;
  position: relative;
}
.pg-minimal .pricing-item .btn i {
  position: relative;
  left: 15px;
  top: 1px;
}
.prop-newest-section,
.prop-how-it-work {
  padding: 80px 0;
}
.prop-newest-section .tabbable-line > .nav-tabs > li a.active {
  color: #242424 !important;
}
.prop-newest-section .tabbable-panel {
  position: relative;
}
.prop-newest-section .tabbable-line > .nav-tabs > li > a {
  border: 1px solid #ddd;
  margin-right: 0;
  color: #777;
  padding: 10px 30px;
  border-radius: 0;
}
.prop-newest-section .tabbable-line > .nav-tabs > li {
  margin-right: 2px;
}
.prop-newest-section .nav-tabs {
  position: absolute;
  right: 0px;
  top: -90px;
}
.prop-newest-section .tabbable-line > .nav-tabs > li.active {
  position: relative;
}
.prop-newest-section .tabbable-line > .nav-tabs {
  border: none;
  margin: 0px;
}
.app-download-pistachio .mobile-image-content img {
  position: absolute;
  top: 10px;
  width: 100%;
}
.app-download-pistachio .app-text-section {
  padding-bottom: 112px;
  padding-top: 50px;
  position: relative;
}
.app-download-pistachio .app-text-section span {
  font-weight: 400;
  font-size: 20px;
  color: #fff;
}
.app-download-pistachio .app-text-section h3 {
  color: #fff;
  font-size: 32px;
  padding-top: 15px;
  font-weight: 700;
  text-transform: capitalize;
}
.app-download-pistachio .app-text-section ul {
  list-style: outside none none;
  margin: 20px 0 30px;
  padding: 0;
}
.app-download-pistachio .app-text-section ul li::before {
  content: "\f0a4";
  font-family: "fontawesome";
  left: 0;
  position: absolute;
}
.app-download-pistachio .app-text-section ul li::before {
  content: "\f0a4";
  font-family: "fontawesome";
  left: 0;
  position: absolute;
}
.app-download-pistachio .app-download-section-container {
  padding: 80px 0 0 0;
}
.app-download-pistachio .app-text-section ul li {
  color: #fff;
  font-size: 14px;
  padding: 3px 0 3px 20px;
}
.app-download-pistachio .app-text-section .app-download-btn {
  position: relative;
}
.app-download-pistachio .app-download-button,
.btn.app-download-button {
  -moz-user-select: none;
  background-color: transparent;
  border: 0 none;
  border-radius: 0;
  color: #ffffff;
  display: block;
  font-weight: 400;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-transition: all 0s ease-in-out 0s;
  -moz-transition: all 0s ease-in-out 0s;
  -ms-transition: all 0s ease-in-out 0s;
  -o-transition: all 0s ease-in-out 0s;
  transition: all 0s ease-in-out 0s;
  width: 100%;
  z-index: 1;
}
.app-download-pistachio span.app-store-btn {
  display: block;
  padding: 12px 15px;
  position: relative;
  border: 1px solid #fff;
  o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}
.app-download-pistachio .btn.app-download-button i {
  display: block;
  font-size: 50px;
  float: left;
  padding: 0 20px 0 0;
}
.app-download-pistachio .btn.app-download-button span.app-store-btn span {
  display: block;
  overflow: hidden;
  text-align: left;
  vertical-align: bottom;
  o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}
.app-download-pistachio
  .btn.app-download-button
  span.app-store-btn
  span
  span:first-child {
  font-size: 14px;
}
.app-download-pistachio .btn.app-download-button span.app-store-btn span span {
  display: block;
  overflow: hidden;
  width: 100%;
}

.pistachio-client-happy.happy-clients-area {
  padding: 80px 0 60px;
}
.pistachio-client-happy .client-brand-list {
  margin-left: -30px;
  overflow: hidden;
}
.pistachio-client-happy .sigle-clients-brand {
  float: left;
  padding-left: 30px;
  width: 20%;
  margin-bottom: 30px;
}
.pistachio-client-happy .sigle-clients-brand a {
  border: 1px solid #ddd;
  display: block;
  opacity: 0.5;
  padding: 20px;
}
.pistachio-client-happy .sigle-clients-brand a:hover {
  opacity: 1;
}

.google-map-sec .ad-map {
  height: 520px;
  width: 100%;
  position: relative;
  z-index: 0;
}
.custom-zoom-in,
.custom-zoom-out {
  background-color: #fff;
  color: #333;
  cursor: pointer;
  border-radius: 3px;
  margin: 5px 15px;
  transition: color 0.3s, background-color 0.3s;
  box-shadow: 0 1px 4px -1px rgb(0 0 0 / 20%);
  text-align: center;
  font-size: 15px;
  height: 32px;
  width: 32px;
}
.custom-zoom-in:before {
  content: "\f067";
}
.custom-zoom-in:before,
.custom-zoom-out:before {
  font-family: "FontAwesome";
  width: 100%;
  line-height: 34px;
  transition: -webkit-text-stroke 0.3s;
  -webkit-text-stroke: 1px #fff;
}
.custom-zoom-out:before {
  content: "\f068";
}
.gm-style img {
  max-width: none !important;
}

/*Top bar css*/
.sb-header-top1 {
  background-color: #242424;
}
.sb-header-top1 .sb-top-left .flo-left {
  float: left;
}
.sb-header-top1 .sb-top-left ul li {
  line-height: 35px;
  padding-right: 8px;
  font-weight: 500;
  display: inline-block;
}
.sb-header-top1
  .sb-top-left
  .sb-mob-top-bar-location
  .sb-location-selector
  .loc {
  color: #fff !important;
}
.sb-header-top1 .sb-top-left ul li a {
  color: #fff;
  text-transform: capitalize;
  font-size: 14px;
}
.sb-header-top1
  .sb-top-left
  .sb-mob-top-bar-location
  .sb-location-selector
  a
  img {
  display: inline-block;
  line-height: 1;
  width: 20px;
  margin-left: 5px;
}
.sb-header-top1 .sb-top-left .sb-mob-top-bar-location .sb-top-loc {
  right: auto;
  left: 0;
  height: auto;
  max-height: 400px;
  margin-top: 0;
  padding: 0;
  border-radius: 3px 3px 3px 3px;
  background: #f5f5f6;
  width: 200px;
  border: 0px;
}
.sb-header-top1 .sb-top-left .sb-mob-top-bar-location .sb-top-loc li {
  border-left: medium none;
  display: block;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  border-bottom: 1px solid #ddd;
  margin-right: 0px;
}

.sb-header-top1 .sb-top-left .sb-mob-top-bar-location .sb-top-loc li a {
  color: #232323;
  width: 100%;
  font-size: 14px;
  text-transform: uppercase;
  display: block;
  padding: 8px 15px;
  font-weight: 600;
}
.sb-header-top1 .sb-top-right .flo-right {
  float: right;
}
.socials-links.top-bar-social li {
  background: #242424;
}
.socials-links.top-bar-social li a {
  color: #ffff;
}

.cat-hero-section .visited-content-items {
  display: inline-block;
  padding: 0;
  text-align: center;
  margin-bottom: 30px;
}
/*to be changed*/
.ad-grid-modern {
  margin-bottom: 30px;
}

.ad-grid-modern-img::after {
  content: "";
  background-image: url(../images/prodcut-bg-shadow.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 80%;
  width: 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.ad-grid-modern-img {
  position: relative;
  z-index: 1;
}

.ad-grid-modern-img img {
  border-radius: 5px 5px 0px 0px !important;
}

.ad-grid-modern-heading {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1;
}
.ad-grid-modern-heading h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
}
.ad-grid-modern-heading span {
  color: #ffffff;
  font-size: 16px;
}
.ad-grid-modern-heading span i {
  color: #ffc220;
  margin-right: 5px;
  font-size: 16px;
}
.ad-grid-modern-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #eeeeee;
}
.loreum-recusandae-ads-item {
  background: #ffffff;
  position: relative;
  border-radius: 8px;
  padding: 20px;
}
.ad-grid-modern-item ul li {
  display: inline-block;
  padding: 8px 10px;
  position: relative;
}
.ad-grid-modern-item ul li:after {
  content: "";
  border-left: 1px solid #eeeeee;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.ad-grid-modern-price h5 {
  font-size: 14px;
  padding-left: 10px;
  color: #ffc220;
  font-weight: 700;
}
.mat-gender-selection [type="radio"]:checked + img {
  outline: none;
  border: 3px solid #f58936;
}
.mat-gender-selection [type="radio"]:checked + img + span {
  color: #f58936;
}
.ad-grid-modern-price h5 span {
  font-size: 14px;
  color: #777777;
  font-weight: 400;
}
.ad-grid-modern-item ul li:first-child a.play-video {
  top: 0px;
  font-size: 16px;
}
.ad-grid-modern-item ul li:first-child a {
  position: relative;
  left: 3px;
}
.sb-header-3 ul.list-sign-in li {
  padding: 0px 10px;
}
.sb-header-3 ul.list-sign-in li a {
  color: #242424;
}
.sb-header-3 ul.list-sign-in li a.btn-theme {
  color: #242424;
  transition: 0.3s ease-in-out;
}
.sb-header-3 ul.list-sign-in li a.btn-theme:hover {
  color: #ffff;
}
.sb-header-3 .dropdown-user-login li a {
  color: #ffffff !important;
}
.dropdown.sb-location-selector a.dropdown-toggle img {
  width: 16%;
  margin-left: 5px;
}
.sb-header.sb-header-9 .sign-in-up {
  margin-top: 10px;
}
.header-3 .sb-menu ul.mega-menu-list li a {
  color: #818181;
}
.header-3 .sb-header-container {
  height: 45px;
  z-index: 99;
}
.header-3.sb-header {
  z-index: inherit;
}
.header-3 .sb-menu > ul > li > a {
  line-height: 45px;
}
.header-3 .sb-menu ul li > a {
  color: #ffffff;
}
.cat-hero-section {
  padding-top: 30px;
}
.header-3 .sb-menu ul ul li > a {
  color: #777777;
}
.ad-grid-modern-item ul li a {
  color: #7777;
}
.ads-with-sidebar .ad-home-list h2 {
  font-size: 32px;
}
.header-classy.header-3 {
  background: #242424;
  border-bottom: 1px solid #eeeeee;
}
.ad-grid-modern-img .listing-bidding .clock .bidding_timer {
  font-size: 14px;
  height: 35px;
  width: 35px;
  border-radius: 0px;
  line-height: 35px;
}
.ad-grid-modern-img .listing-bidding {
  position: absolute;
  right: 0px;
}
.ad-grid-modern-img .listing-bidding .clock .column-time {
  width: 25%;
}
.ad-home-list h2 {
  font-size: 32px;
  color: #242424;
  font-weight: 700;
}

.ad-home-list img {
  width: 100%;
}
.ad-home-list .sb-short-head {
  margin-bottom: 30px;
}
.sb-short-head .btn-theme {
  float: right;
  margin-top: -60px;
}
.ad-detail-2 {
  background: #f3f3f5;
  overflow: hidden;
  z-index: 0;
  position: relative;
}
.ad-detail-2:before {
  content: "";
  background: #242424;
  height: 280px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.section-bid-2 .clock .column-time {
  width: 22%;
}
.main-section-bid .text {
  background: transparent;
  font-size: 14px;
}
.ad-detail-2-main-section {
  background: #ffffff;
  padding: 20px;
  border-radius: 5px;
  margin-top: 50px;
}
.ad-detail-2-img img {
  border-radius: 5px;
}
.ad-detail-2-main-section .flexslider:first-child {
  margin-top: 0px;
}
.ad-detail-2-main-section h1 {
  font-size: 32px;
  padding-top: 5px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 35px;
}

ul.ad-detail-2-category li {
  display: inline-block;
  padding-top: 5px;
  margin-right: 10px;
}
ul.ad-detail-2-posted li {
  display: inline-block;
  margin-right: 35px;
  position: relative;
  margin-bottom: 10px;
}
ul.ad-detail-2-posted li a {
  font-size: 17px;
  margin-right: 10px;
}
ul.ad-detail-2-posted li::after {
  content: "";
}
ul.ad-detail-2-posted li:last-child::after {
  border: 0;
}
.ad-detail-2-main-section span.ad-location i {
  font-size: 20px;
  color: #777;
  margin-right: 5px;
}
.ad-detail-2-content-heading h4 span {
  font-size: 16px;
  color: #777;
  font-weight: 400;
}
ul.ad-detail-2-category li a {
  color: #777;
}
.ad-detail-2-content-heading h4 {
  padding-top: 16px;
  font-size: 20px;
  color: #f58936;
  font-weight: 500;
  margin-bottom: 10px;
}
.ad-detail-2-content-heading .short-features {
  margin-bottom: 30px;
}
.ad-detail-2-sell-content {
  position: relative;
  margin-bottom: 25px;
  background: #fff9e8;
  padding: 20px 20px;
  width: 100%;
  border-radius: 8px;
  border: 2px dashed #ffc220;
}
.ad-detail-2-sell-content img {
  margin: auto 10px;
}
.ad-detail-2-ad-type-text {
  font-size: 18px;
  font-weight: 700;
  color: #242424;
}
.ad-detail-2-sell-icon {
  position: absolute;
  right: 25px;
  top: 10px;
}

.ad-detail-2-click-view {
  background: #edf7ed;
  width: 100%;
  padding: 20px 33px;
  border-radius: 8px;
  border: 2px dashed #a3e0af;
}
.ad-detail-2-details {
  background: #f3f3f5;
  padding-top: 30px;
  padding-bottom: 50px;
}
.ad-detail-2-feature {
  background: #ffffff;
  border-radius: 5px;
  padding: 20px;
}
.ad-detail-2-feature-banner img {
  width: 100%;
}
.ad-detail-2-short-features h2 {
  padding-top: 20px;
  font-size: 22px;
  color: #242424;
  margin-bottom: 10px;
  font-weight: 600;
}

.ad-detail-2-short-features .short-features li {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 5px;
  padding: 30px 0px 10px;
}

.ad-detail-2-details .tags-share {
  background: #f3f3f3;
  margin-top: 20px;
}
.ad-detail-2-icon {
  background: #ffffff;
  padding: 20px;
  border-radius: 5px;
}
.ad-detail-2-icon ul.cont-icon-list li:not(:last-child) {
  margin-right: 17px;
}
.ad-detail-2-user {
  background: #ffffff;
  border-radius: 5px 5px 0 0;
  padding: 20px;
  margin-top: 30px;
}
.main-section-bid.section-bid-2 div#nav-tab {
  width: 100%;
}
.ad-detail-2-user .heading-detail {
  display: flex;
  background: #f3f3f3;
  padding: 20px;
  border-radius: 5px;
}
header.sb-header-3 {
  padding: 20px 0px;
}
header.sb-header-3 .log-header {
  padding-top: 5px;
}
header.sb-header-3 .looking-input ul li {
  display: inline-block;
}
header.sb-header-3 .looking-form {
  position: relative;
  width: 100%;
}
header.sb-header-3 .looking-form-search-icon {
  position: absolute;
  top: 6px;
  left: 12px;
}
.header-3-input .looking-form-search-icon i {
  font-size: 18px;
  color: #ffc220;
  position: relative;
  top: 3px;
}
.header-3-input {
  position: relative;
}
header.sb-header-3 .looking-form input {
  background: #ffffff;
  height: 45px;
  border-radius: 0;
  padding: 0 50px;
}
.header-location-icon {
  font-size: 22px;
  color: #ffc220;
}
.faqs-section .accordion > li {
  border-bottom: 1px solid #f3f3f3;
  padding: 18px 0;
}
.faqs-section .accordion-title {
  font-size: 18px;
  position: relative;
}

.faqs-section .accordion-content p {
  padding-top: 10px;
}
.accordion-title a::after {
  content: "+";
  display: block;
  height: 8px;
  margin-top: -4px;
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
}
.accordion-title a:not(.collapsed)::after {
  content: "-";
  display: block;
  height: 8px;
  margin-top: -4px;
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  font-size: 30px;
}
.looking-form-search-icon i {
  font-size: 18px;
  color: #ffc220;
}
.looking-input form.header-3-form ul {
  position: relative;
}
header.sb-header-3 .looking-form select {
  height: 45px;
  border-radius: 0;
  width: 232px;
  padding: 0px 50px;
  color: #959595;
}
header.sb-header-3 .looking-form-search-icon-1 {
  position: absolute;
  top: 0px;
  right: -11px;
}
.sb-header-3 .sign-in-up {
  margin-left: -35px;
}
.header-3-input .looking-form-search-icon-1 button {
  border-radius: 0;
  height: 45px;
}
.header-3-input-pbm {
  padding: 0;
}
.pistachio-classified select.category {
  line-height: 2.5;
  border-radius: 0;
}
ul.ad-detail-2-posted li a {
  font-weight: 500;
  color: #242424;
}
ul.ad-detail-2-posted li span {
  font-size: 17px;
  font-weight: 600;
}
.ad-detail-2-main-section span.ad-location {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  color: #777777;
  display: inline-block;
  margin-bottom: 15px;
}
.ad-detail-2-details .ad-detail-video {
  padding: 10px;
}
.ad-detail-2-details .map-location {
  padding: 10px;
}
.ad-detail-2-details .all-bids-comment {
  padding: 10px;
}
.ad-detail-2-details .write-review {
  padding: 25px 10px 40px;
}
.ad-detail-2-details .promotional_slider {
  background: white;
  border-radius: 5px;
}
.ad-detail-2-details .promotional_slider .featured-slider-1 {
  padding: 30px 30px 0;
}

.ad-bottom-sidebar .widget {
  background: #fff;
  padding-bottom: 10px;
  margin-top: 30px;
  border-radius: 5px;
  padding: 20px;
}
.ad-bottom-sidebar .panel.panel-default {
  background: #fff;
  padding-bottom: 10px;
  margin-top: 50px;
  border-radius: 10px;
  padding: 20px;
}
.ad-bottom-sidebar .seller-form-group .form-control {
  padding: 15px 12px;
  background: #fbfdff;
  border-radius: 0;
  margin-bottom: 20px;
}
.ad-bottom-sidebar .card.categories {
  width: 100%;
}
.blog-sidebar .widget.widget-content ul li {
  padding: 15px 0px;
  border-bottom: 1px solid #eee;
}
.sb-adpost-cats .sb-cat-box img {
  width: 45px;
  border-radius: 50%;
  height: 45px;
}
.sb-selected-cats-header2 ul {
  display: inline-block;
}
.switch-cat-sec {
  float: right;
}
.sb-cat-active a {
  color: #ffc220;
}
.form-group.cats-dropdown {
  padding: 35px;
}
.extra-button-section {
  background: #fff;
  padding-bottom: 10px;
  margin-top: 50px;
  border-radius: 10px;
  padding: 20px;
}
.extra-button-section a.btn.btn-whatsap,
.extra-button-section a.btn.btn-whizchat {
  padding: 15px;
}
.calendar-div i.fa.fa-calendar {
  position: absolute;
  right: 60px;
  margin-top: -33px;
}

.commentForm h2 {
  color: #232323;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4em;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.singleContadds {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}
.singleContadds i {
  color: #ffc220;
  font-size: 16px;
  left: 0;
  position: absolute;
  top: 6px;
}

/* 404 Page */
.error-page .error-container {
}
.error-page .error-container {
  margin-bottom: 40px;
}
.error-page .error-container > .error-text {
  color: #232323;
  font-size: 270px;
  line-height: 1;
  text-align: center;
  margin-bottom: 30px;
}
.error-page .error-container > .error-info {
  color: #050709;
  font-size: 32px;
  text-transform: capitalize;
  text-align: center;
}
.pattern-bg {
  background: #fff url(../images/footer-bg1.jpg) repeat-x scroll center bottom;
}
.single-blog .post-excerpt {
  overflow: hidden;
}
#resend_email {
  color: #ffc220;
}
#verification_modal .modal-header h2.modal-title {
  color: #20292f;
}

/* older demos*/
.srvs-hero-section {
  background-repeat: no-repeat;
  background-size: cover;
  height: 700px;
  position: relative;
  padding-top: 200px;
  z-index: 0;
}
.srvs-hero-text-section h1 {
  font-size: 60px;
  color: #fff;
  font-weight: 600;
}
.srvs-hero-content-area {
  text-align: center;
}
.srvs-hero-img {
  margin: 0 auto;
  display: table;
  margin-top: 10px;
}
.srvs-hero-details {
  margin-top: 12px;
}
.srvs-hero-details p {
  font-size: 20px;
  margin: 0 auto;
  color: #fff;
  width: 65%;
  line-height: 2;
}
.srvs-hero-workers {
  margin: 0 auto;
  display: table;
  padding-top: 80px;
}
.prop-search-box {
  position: relative;
}
.prop-search-box .form-join {
  box-shadow: none;
  padding: 0;
  margin-top: 20px;
}
.srvs-search-bars .prop-search-contents {
  position: relative;
  background: #f9f9f9;
  padding: 25px;
  margin-top: -100px;
  float: left;
  width: 100%;
}
.srvs-search-bars .form-join label {
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: #232323;
  margin-bottom: 8px;
}
.srvs-search-bars input.form-control {
  border-radius: 0px;
  height: 55px;
  border-color: #e1e1e1;
}
.prop-search-bar .form-control {
  height: 55px;
}
.prop-search-categories {
  margin-top: 36px;
}
.srvs-hero-workers {
  margin: 0 auto;
  display: table;
  padding-top: 100px;
}
.prop-search-categories .btn-theme {
  padding: 13px 30px;
  border-radius: 5px;
}
.serv-category {
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.serv-category h4 {
  font-size: 18px;
  color: #232323;
  font-weight: 500;
  margin-top: 10px;
}
.srvs-great-products .heading-panel p {
  margin-top: -10px;
  margin-bottom: 30px;
}
.prop-hero-latest::before {
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
}
.prop-hero-latest {
  position: relative;
  z-index: 0;
}
.bk-hero-text h1 {
  margin-bottom: 0px;
  padding: 20px 0px;
}
.bk-hero-text p {
  line-height: 1.8;
}
.srvs-prov-text h3 {
  font-size: 42px;
  color: #232323;
  font-weight: 600;
  line-height: 40px;
  text-transform: capitalize;
}
.srvs-prov-text h4 {
  font-size: 30px;
  font-weight: 400;
  line-height: 50px;
  text-transform: capitalize;
}
.srvs-prov-text h4::before {
  background-color: #232323;
  bottom: -6px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  width: 99px;
}
.srvs-prov-text h4::after {
  background-color: #232323;
  bottom: -11px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  width: 59px;
}
.feature-section.ad-grid-6 .feature-shop-colors ul li {
  padding: 0;
  margin-right: 5px;
}
.srvs-prov-details .srvs-prov-contents li a {
  padding: 12px 40px;
  border-radius: 30px;
  box-shadow: 1px 1px 10px 0px rgb(0 0 0 / 20%);
}
.srvs-new-products img {
  width: 100%;
}
.srvs-prov-more {
  margin-top: 60px;
  margin-bottom: 30px;
}
.srvs-prov-more p {
  line-height: 28px;
  color: #999;
}
.srvs-contents {
  border: 1px solid #f5f5f5;
  margin-bottom: 30px;
  padding: 12px;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
  border-radius: 4px;
  background-color: #fff;
}
.srvs-products-details {
  text-align: center;
}
.srvs-products-details h4 {
  color: #232323;
  font-weight: 500;
  font-size: 16px;
}
.srvs-products-details span {
  color: #777777;
  font-weight: 500;
  font-size: 14px;
}
.no-extra-padding {
  padding: 30px 0;
}

.tech-main-section {
  width: 100%;
  height: 700px;
  border-bottom: 1px solid #f5f5f5;
  border-top: 1px solid #f5f5f5;
  background-position: top;
}
.tech-text-section {
  margin-top: 180px;
}
.tech-short-text p {
  color: #232323;
  font-size: 18px;
  font-style: inherit;
}
.tech-mac-book h1 {
  font-size: 40px;
  font-weight: 500;
  color: #232323;
  line-height: 43px;
}
.tech-mac-book h1 span {
  color: #ffc220;
  font-size: 70px;
  font-weight: 600;
}
.tech-mac-book h1 .color-scheme {
  font-size: 34px;
  color: #efb211;
  font-weight: 600;
  margin-top: 10px;
  display: block;
  margin-bottom: 20px;
}
.tech-description-area {
  margin-top: 7px;
  margin-bottom: 30px;
}
.tech-description-area p {
  color: #232323;
  font-size: 20px;
}
.tech-post-ads {
  float: left;
  margin-right: 25px;
}
.tech-post-ads .btn-theme:hover {
  border: 0;
}
.tech-post-ads .btn-theme {
  border: none;
  border-radius: 30px;
  color: #ffffff;
  padding: 12px 40px;
  box-shadow: 1px 1px 20px 0px rgb(0 0 0 / 20%);
}
.tech-opinion .btn-theme {
  background-color: transparent;
  color: #232323;
  padding: 12px 40px;
  border-radius: 30px;
  box-shadow: 1px 1px 20px 0px rgb(0 0 0 / 20%);
}
.tech-main-images-section {
  position: absolute;
  right: 0;
}
.tech-main-images-section img {
  max-width: 910px;
  position: absolute;
  right: 0;
}
.tech-new-great-product {
  padding: 80px 0;
  position: relative;
}
.tech-latest-primary-section h3::before {
  background-color: #242424;
  bottom: -28px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  width: 99px;
  margin: 0 auto;
}
.tech-latest-primary-section h3::after {
  background-color: #242424;
  bottom: -34px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  width: 59px;
  margin: 0 auto;
}
.tech-new-explore-categories {
  padding: 80px 0px;
}
.tech-latest-categories .tech-st-text-section img {
  width: auto;
}
.tech-brand-section {
  padding-top: 10px;
}
.tech-latest-primary-section {
  text-align: center;
  margin-bottom: 80px;
}
.tech-latest-primary-section h3 {
  color: #232323;
  font-size: 42px;
  font-weight: 600;
}
.tech-latest-primary-section h3 span {
  font-size: 42px !important;
}
.tech-latest-primary-section h3 .explore-style {
  color: #ffc220;
  font-size: 28px;
}
.new-all-categories {
  background-color: #ffc220;
  padding: 10px 20px;
}
.tech_latest_category .side-menu {
  background: #fff;
  box-shadow: 1px 0px 20px rgb(0 0 0 / 7%);
  margin-bottom: 30px;
}
.tech-new-great-product .sidebar .side-menu nav .nav > li {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-bottom: 1px solid #eaeaea;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
  padding: 20px 15px;
}

.new-all-categories .icons-categorie {
  float: left;
  padding-right: 20px;
  color: #ffffff;
}
.new-all-categories .icons-categorie i {
  font-size: 17px;
  line-height: 35px;
}
.new-all-categories .categories-text-section h2 {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
}
.tech-new-great-product .side-menu {
  background: #fff;
  box-shadow: 1px 0px 20px rgb(0 0 0 / 7%);
  margin-bottom: 30px;
}
.tech-new-great-product .sidebar .side-menu nav .nav > li > a {
  color: #232323;
  padding: 15.7px 15px;
}
.tech-new-great-product .sidebar .side-menu nav .nav > li a img {
  float: left;
  max-width: 20px;
  margin-right: 10px;
  margin-top: 5px;
}
.tech-new-great-product .sidebar .side-menu nav .nav > li > a i {
  font-size: 42px;
  margin-right: 10px;
}
section.tech-new-great-product .sidebar .side-menu nav .nav > li > a::after {
  content: "";
  display: none;
}
.tech-new-great-product .other-categories {
  background-color: #f0f0f0;
  padding: 10px;
}
.tech-new-great-product .other-categories h2 {
  font-size: 16px;
  color: #020202;
  text-align: center;
  font-weight: 500;
}
.tech-new-great-product .sidebar {
  margin-top: unset;
}
.tech-new-great-product .tech-new-banner img {
  width: 100%;
  margin-bottom: 30px;
}

.tech-call-to-action.tech-call-to-action {
  width: 100%;
  height: auto;
  position: relative;
  background-position: right;
  padding: 60px 0;
}
.tech-call-to-action .tech-action-latest-products {
  position: absolute;
  right: 70px;
  bottom: 0;
}
.tech-call-to-action .tech-action-latest-products-1 {
  position: absolute;
  top: 80px;
  left: 80px;
}
.tech-call-to-action .tech-view-section {
  margin-bottom: 12px;
}
.tech-call-to-action .tech-view-section h2 {
  font-size: 42px;
  color: #232323;
  font-weight: 600;
  line-height: 40px;
}
.tech-call-to-action .tech-view-section h2 span {
  color: #ffc220;
  font-size: 30px;
  font-weight: 500;
}
.tech-call-to-action .tech-details-section {
  padding-right: 30px;
}

.tech-call-to-action .tech-action-latest-products-1 img {
  max-width: 450px;
}
.tech-latest-categories {
  position: relative;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}
.col-lg-3:nth-child(8n + 1) .tech-latest-categories .tech-categories-bg {
  background-image: url(../images/icons-bg/01.png);
}
.tech-st-text-section {
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 70px 20px;
}
.tech-brand-section h5 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
}
.tech-brand-section p {
  color: #ffffff;
}
.tech-latest-categories img {
  width: 100%;
}
.tech-great-products {
  position: relative;
  box-shadow: 0px 0px 10px 0px #cccc;
  margin-bottom: 30px;
  padding: 0px 0 30px;
  background: #ffffff;
}
.adforest-owner-text {
  width: 90%;
}
.promotional_slider.owl-carousel .owl-stage-outer,
.ad-slider-box .featured-slider-1.owl-carousel .owl-stage-outer {
  padding-bottom: 0;
}
.mob-sa-contents .owl-theme .owl-nav [class*="owl-"] {
  margin: 0px;
  padding: 0px 5px;
  background: transparent;
}
.tech-new-arrivals-products {
  margin: 0 auto;
  display: table;
}
.tech-new-arrivals-products img.attachment-adforest-shop-home {
  width: 100%;
  height: 251px;
}
.tech-products-details {
  text-align: center;
  margin-top: 5px;
}
.tech-products-categories h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}
.tech-products-details .tech-products-categories h4 a {
  font-size: 14px;
  color: #777;
}
.tech-different-categories h3 {
  font-size: 20px;
  color: #232323;
}
.tech-products-details .tech-different-categories h3 a {
  color: #232323;
  font-weight: 500;
}
.tech-new-prices p {
  font-size: 18px;
  font-weight: 600;
  color: #232323;
}
.tech-new-prices strike {
  color: #777;
  font-weight: 400;
  font-size: 14px;
}
.tech-new-prices p {
  font-size: 18px;
  font-weight: 600;
  color: #232323;
}
.tech-arrival-tech-categories {
  text-align: center;
  position: relative;
}
.land-great-products .btn-theme {
  border-radius: 20px;
  padding: 10px 22px;
  border: none;
}
.shop-main-title-area {
  position: absolute;
  top: -4px;
  width: 100%;
  left: -4px;
}
.tech-categories-bg {
  height: 100px;
  background-repeat: no-repeat;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  background-position: top right;
}
.mat-success-stories .owl-nav i:hover {
  border: none;
}
.col-lg-3:nth-child(8n + 2) .tech-latest-categories .tech-categories-bg {
  background-image: url(../images/icons-bg/02.png);
}
.col-lg-3:nth-child(8n + 3) .tech-latest-categories .tech-categories-bg {
  background-image: url(../images/icons-bg/03.png);
}
.col-lg-3:nth-child(8n + 4) .tech-latest-categories .tech-categories-bg {
  background-image: url(../images/icons-bg/04.png);
}
.col-lg-3:nth-child(8n + 5) .tech-latest-categories .tech-categories-bg {
  background-image: url(../images/icons-bg/05.png);
}
.col-lg-3:nth-child(8n + 6) .tech-latest-categories .tech-categories-bg {
  background-image: url(../images/icons-bg/06.png);
}
.col-lg-3:nth-child(8n + 7) .tech-latest-categories .tech-categories-bg {
  background-image: url(../images/icons-bg/07.png);
}
.col-lg-3:nth-child(8n + 8) .tech-latest-categories .tech-categories-bg {
  background-image: url(../images/icons-bg/08.png);
}
.dec-hero-section {
  background: center center no-repeat;
  background-size: cover;
  height: 600px;
  background-size: cover;
}
.dec-hero-content {
  padding-top: 160px;
  padding-bottom: 100px;
}
.dec-hero-text-section {
  position: relative;
}
.dec-hero-text-section span {
  color: #fff;
  font-size: 30px;
  line-height: 26px;
  font-weight: 100;
}
.dec-hero-text-section h1 {
  font-size: 60px;
  color: #fff;
  font-weight: 600;
  line-height: 1.6;
}
.dec-hero-text-section p {
  color: #fff;
  font-size: 18px;
  width: 70%;
}
.dec-hero-search {
  width: 70%;
  position: relative;
  margin-top: 30px;
}
.dec-hero-search input {
  border-radius: 30px;
  padding: 15px 20px;
}
.dec-hero-submit {
  position: absolute;
  right: -5%;
  top: 0;
}
.dec-hero-submit .btn-theme {
  border: none;
  padding: 13.9px 50px;
  border-radius: 30px;
  font-size: 20px;
}
.dec-hero-submit .btn-theme:hover {
  border: none;
}
.dec-product-box {
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
  background: #fff;
  padding: 20px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.dec-product-categories {
  margin: 0 auto;
  display: table;
}
.dec-products-text {
  text-align: center;
  margin-top: 5px;
}
.dec-products-text h5 {
  color: #232323;
  font-weight: 500;
  font-size: 16px;
}
.dec-products-ads {
  text-align: center;
  margin-top: 5px;
}
.dec-products-ads .btn-theme {
  border: none;
  padding: 3px 12px;
  border-radius: 20px;
}

.sprt-ad-location .sb-short-head h2 {
  color: #ffff;
  font-size: 28px;
  font-weight: 700;
  padding-top: 50px;
  position: relative;
  text-transform: capitalize;
}
.sprt-ad-location .sb-short-head p {
  color: #ffff;
}

.prop-ad-location-section {
  position: relative;
  margin-bottom: 25px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
}
.prop-ad-location-section::before {
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
}
.prop-ad-location-section::before {
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
}
.prop-location-city {
  position: absolute;
  top: 10%;
  color: #fff;
  left: 8%;
}
.prop-location-city span {
  font-size: 22px;
  font-weight: 600;
}
.prop-location-city p {
  color: #ffff;
  font-size: 14px;
  margin-top: -5px;
}
.prop-location-details {
  position: absolute;
  bottom: 10%;
  right: 10%;
}
.prop-location-details a {
  color: #ffff;
}
.mob-call-to-action {
  border-bottom: 1px solid #f5f5f5;
}
.padding-bottom-30 {
  padding-bottom: 30px;
}
.mob-call-text-section h4 {
  color: #232323;
  font-size: 20px;
  font-weight: 500;
}
.mob-call-text-section p {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
}
.mob-logo-img {
  float: left;
  position: relative;
  margin-right: 20px;
}
.mob-details-section {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}
.mob-details-section p {
  margin: 0;
  font-size: 14px;
  color: #777;
}
.mob-details-section span {
  color: #232323;
  font-weight: 500;
  font-size: 16px;
  word-wrap: break-word;
}
.ad-pets-section {
  position: relative;
  box-shadow: 2px 2px 7px 0px #ccc;
}
.ad-pets-section {
  padding: 180px 0 80px;
  position: relative;
  height: 830px;
  background-repeat: no-repeat;
}
.new-sunmit-form {
  position: relative;
  box-shadow: 2px 3px 15px 0px #ccc;
  border-radius: 15px;
}
.ad-pets-section .form-join {
  background-color: #fff;
}
.new-sunmit-form .form-listing .form-join {
  border-radius: 15px;
}
.new-sunmit-form .text-indent-fields {
  position: relative;
  margin-bottom: 20px;
}
.new-sunmit-form .text-indent-fields h3,
.new-sunmit-form .text-indent-fields h1 {
  color: #242424;
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 30px;
}
.new-sunmit-form .form-join {
  background: #fff none repeat scroll 0 0;
  border-radius: 4px;
  box-shadow: 0 0 50px 10px rgb(0 0 0 / 5%);
  margin: 0 auto;
  padding: 30px;
}

/*this is for pet forest if need to change add parent class*/
.new-sunmit-form .form-join .form-control {
  background-color: #fff;
  background-image: none;
  border: 1px solid #e1e1e1;
  border-radius: 0;
  box-shadow: none;
  color: #555;
  font-size: 14px;
  height: auto;
  padding: 15px 12px;
  transition: all 0.2s cubic-bezier(0, 0, 0.58, 1) 0s;
}
.pets-images-section {
  top: 46%;
  position: absolute;
  right: 0;
}
.new-sunmit-form .form-join .form-group {
  margin-bottom: 15px;
}

.new-sunmit-form .form-join label {
  margin-bottom: 5px;
}
.category_gridz a {
  display: inline-block;
  vertical-align: top;
  width: 14%;
  text-transform: capitalize;
  margin-bottom: 20px;
  text-align: center;
}
.category_gridz .category_new {
  background-color: #f7f7f9;
  border-radius: 50%;
  display: inline-block;
  padding: 24px;
  transition: background-color 0.5s ease 0s;
}
.category_gridz .category_new img {
  height: 86px;
  width: 86px;
}
.category_gridz .title {
  color: #232323;
  display: block;
  margin-top: 10px;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
}
.call-to-action {
  padding: 60px 0;
}
.call-heading-section {
  margin-bottom: 15px;
}
.call-heading-section h4 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #232323;
  line-height: 42px;
  text-transform: capitalize;
}
.call-text-section p {
  color: #777;
  font-size: 18px;
}
.call-all-categories {
  position: relative;
  margin-top: 35px;
}
.call-post-categories {
  float: left;
  margin-right: 20px;
}
.call-post-categories .btn {
  border-radius: 30px;
  padding: 12px 40px;
}
.call-read-categories .btn {
  padding: 12px 40px;
  background-color: transparent;
  color: #232323;
  border-radius: 30px;
}
.call-images-section {
  margin-top: 20px;
}
.call-to-action .call-images-section img {
  width: 100%;
}

.mat-hero-section {
  height: 900px;
  position: relative;
  background-position: center;
  background-size: cover;
  z-index: 1;
}

.mat-hero-details-section {
  margin-top: 280px;
}
.mat-hero-new-section {
  margin-bottom: 6px;
}
.mat-hero-new-section span {
  color: #fff;
  font-size: 20px;
  font-style: inherit;
  font-weight: 500;
}
.mat-hero-text-section {
  margin-bottom: 15px;
}
.mat-hero-text-section h1 {
  color: #fff;
  font-size: 56px;
  line-height: 64px;
  font-weight: 500;
}
.mat-hero-text-section h1 span {
  font-weight: 600;
}
.mat-hero-new-section {
  margin-bottom: 6px;
}
.mat-ad-details-section {
  margin-bottom: 25px;
}
.mat-ad-details-section p {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
  width: 90%;
}
.mat-new-post-ads {
  float: left;
  margin-right: 20px;
}
.mat-new-post-ads .btn-theme {
  border-radius: 30px;
  padding: 12px 40px;
}
.mat-hero-read-ads .btn-theme {
  border-radius: 30px;
  padding: 12px 40px;
  background-color: #ffffff;
  color: #232323;
}
.mat-form-group {
  margin-top: 190px;
}
.mat-form-group .form-join {
  background-color: rgba(255, 255, 255, 0.3);
}
.mat-form-group .form-join {
  border-radius: 4px;
  box-shadow: 0 0 50px 10px rgb(0 0 0 / 5%);
  margin: 0 auto;
  padding: 30px;
}
.mat-hero-section .form-join > h4 {
  color: #ffffff;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 20px;
}
.mat-gender-selection {
  margin-bottom: 20px;
}
.mat-gender-selection label {
  margin-right: 50px;
  margin-left: -10px;
}
.mat-gender-selection [type="radio"] + img {
  border: 1px solid #fff;
  border-radius: 40px;
}
.mat-hero-section .form-group {
  margin-bottom: 20px;
}
.mat-form-group .form-join .form-group label {
  color: #ffffff;
  margin-bottom: 8px;
}
.form-join .form-group label {
  text-align: left;
  font-weight: 500;
}
.feature-shops img {
  width: 100%;
}
.mat-form-group .form-control {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 0;
  box-shadow: none;
  color: #555;
  font-size: 14px;
  height: auto;
  padding: 15px 12px;
  transition: all 0.2s cubic-bezier(0, 0, 0.58, 1) 0s;
}
.mat-form-group .select2-container--default .select2-selection--single {
  background-color: transparent;
  border: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #232323;
}
.mat-hero-section::before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.mat-form-group
  .select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: #fff;
}
section.mat-hero-section
  form.form-join
  .mat-gender-selection
  input[type="radio"] {
  opacity: 0;
}
.mat-gender-selection span {
  color: #ffffff;
  margin-left: 10px;
  font-size: 16px;
  font-weight: 500;
}
.mat-form-group button.btn.btn-theme.btn-block {
  color: #fff;
}
.mat-candidates-details {
  margin-top: 25px;
}
.mat-candidate-name h5 {
  color: #232323;
  font-size: 22px;
  font-weight: 500;
}
.mat-new-candidates-categories p {
  font-weight: 500;
}
.mat-success-stories {
  padding: 60px 0;
}
.mat-act-main-section {
  margin-top: 60px;
}
.mat-action-text-area {
  margin-bottom: 5px;
}
.mat-action-text-area h4 {
  font-size: 42px;
  color: #232323;
  margin-bottom: 15px;
  font-weight: 500;
}
.mat-action-text-area h3 {
  color: #232323;
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 50px;
}
.mat-candidates-details {
  margin-top: 25px;
}
.mat-candidates-details .btn-theme {
  padding: 12px 40px;
  border-radius: 30px;
}
.call-images-section {
  margin-top: 20px;
}
.shop-great-products.shop-layout-2 .heading-panel {
  margin-bottom: 10px;
}
.sprt-hero-section {
  background-size: cover !important;
  height: auto;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.sprt-hero-section::before {
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background-color: rgba(5, 3, 29, 0.8);
  z-index: -1;
}
.sprt-hero-text {
  padding-top: 180px;
  padding-bottom: 130px;
}
.sprt-hero-cric span {
  font-size: 25px;
  color: #f58936;
  font-weight: 500;
  line-height: 26px;
}
.sprt-hero-cric h1 {
  font-size: 70px;
  color: #fff;
  padding-top: 10px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: initial;
}
.sprt-hero-cric p {
  color: #fff;
  width: 70%;
  font-size: 20px;
  margin-bottom: 35px;
}
.sprt-hero-st {
  margin-top: 25px;
}
section.srvs-explore-section.no-extra {
  padding: 0px 0px;
}
.sprt-explore-section .srvs-explore-section.no-extra {
  padding: 80px 0px;
}
.sprt-explore-box {
  position: relative;
}
.srvs-explore-box {
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 10px;
}
.dec-featured-details-section span {
  font-size: 14px;
}
.sprt-hero-st .btn-theme {
  padding: 12px 34px;
  border-radius: 0;
}
.srvs-explore-img {
  margin: 0 auto;
  display: table;
}
.srvs-explore-details {
  text-align: center;
  margin-top: 8px;
}
.srvs-explore-details h4 {
  font-size: 16px;
  color: #232323;
  font-weight: 400;
}
.col-lg-2 .srvs-explore-box .sprt-ex-ads {
  left: 31%;
}
.sprt-ex-ads {
  position: absolute;
  left: 39%;
  bottom: -10%;
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.sprt-ex-ads .btn-theme {
  padding: 2px 15px;
  border-radius: 20px;
}
.sprt-ad-location .dec-location-section::before {
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background-color: rgba(5, 3, 29, 0.7);
}
.dec-location-section p.heading-text {
  color: #ffffff;
}
.prop-location-details a {
  border: 0;
  background: transparent;
}
.dec-location-section {
  position: relative;
  height: 420px;
  padding: 30px 0;
  margin-bottom: 150px;
}
.sprt-ad-location .dec-location-section {
  height: 440px;
}
.pets-images-section img {
  width: 80%;
}
.dec-location .owl-prev {
  position: absolute;
  left: -4%;
  bottom: 40%;
  background: #ffffff !important;
  color: #242424 !important;
  height: 50px;
  width: 22px;
}
.dec-location .owl-next {
  position: absolute;
  right: -4%;
  bottom: 40%;
  background: #ffffff !important;
  color: #242424 !important;
  height: 50px;
  width: 22px;
}
.dec-location .owl-next i,
.dec-location .owl-prev i {
  font-size: 20px;
  line-height: 2;
}
.mob-hero-text-section {
  text-align: center;
  margin-top: 70px;
  min-height: 480px;
}
.mob-hero-text-section h3 {
  text-align: center;
  color: #fff;
  font-size: 60px;
  font-weight: 600;
  padding-bottom: 30px;
}
.mob-hero-text-section p {
  color: #fff;
  font-weight: 300;
  line-height: 1.9;
  position: relative;
  font-size: 20px;
  width: 50%;
  margin: 0 auto;
}
.mob-hero-slider-section img {
  position: absolute;
  top: 0;
}

.owl-item.active .mob-hero-slider-section img {
  opacity: 1;
}
.owl-item .mob-hero-slider-section img {
  opacity: 0.5;
}
.mob-brands {
  background: #f9f9f9;
}
.mob-brands-section {
  background: #fff;
  position: relative;
}
.mob-featured-ad {
  padding: 12px 20px;
  border-bottom: 1px solid #f5f5f5;
  background-color: #fff;
}
.mob-brand-feature-ad {
  position: relative;
  overflow: hidden;
  padding: 20px;
}
.mob-brand-box {
  position: relative;
  margin-bottom: 20px;
}
.mob-theme-box {
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
  overflow: hidden;
  border-radius: 4px;
}
.mob-brand-image {
  float: left;
  margin-right: 20px;
}

.mob-brand-image img {
  width: 95px;
  height: 106px;
}
.mob-brand-text-area {
  position: relative;
  padding: 12px 0;
  overflow: hidden;
}
.mob-brand-text-area h5 a {
  color: #232323;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
}
.mob-brand-text-area p {
  margin: 0;
  font-size: 14px;
  color: #999;
}
.mob-brand-text-area p i {
  color: #ff0000;
  margin-right: 10px;
  font-size: 12px;
}
.mob-brand-text-area span {
  color: #232323;
  font-weight: 600;
  font-size: 14px;
}
.mob-brand-more-ads .btn-theme {
  border-radius: 0;
  width: 100%;
  margin-top: 0px;
}
.mob-brand-banner {
  margin-bottom: 25px;
}
.mob-brand-banner img {
  width: 100%;
}
.mob-brand-content-area {
  position: relative;
}
.mob-brands-main-content-area {
  background: #fff;
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
}
.srvs-hero-section::before {
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}
.mobile-brand-text {
  margin-bottom: 50px;
}
.mobile-brand-text h3 {
  color: #232323;
  font-weight: 500;
  font-size: 30px;
}
.mobile-brand-text h3::before {
  background-color: #232323;
  bottom: -12px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  width: 99px;
}
.mobile-brand-text h3::after {
  background-color: #232323;
  bottom: -19px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  width: 59px;
}
.mob-brands-main-content-area ul li {
  width: 22.2%;
  margin-right: 22px;
  padding: 0;
  margin-bottom: 15px;
  float: left;
}
.mob-brands-logo {
  border: 1px solid #f5f5f5;
  margin-bottom: 12px;
  transition: 0.5s;
}
.mob-brand-categories {
  position: absolute;
  top: 6%;
  right: 4%;
}
.mob-newest-ads .mob-slider-content .mob-brand-categories {
  position: absolute;
  top: 12%;
  right: 8%;
}
.mob-brand-categories a {
  padding: 10px 40px;
  border-radius: 0;
}

.mob-sa-contents {
  margin-bottom: 20px;
  background-color: #fff;
  padding: 30px 30px;
}
.prop-newset-heading {
  margin-bottom: 50px;
  position: relative;
}
.prop-newset-heading h2 {
  color: #232323;
  font-size: 26px;
  font-weight: 500;
  text-align: left;
}
.prop-newset-heading h2::before {
  background-color: #232323;
  bottom: -8px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  width: 99px;
}
span.heading-color {
  color: #ffc220;
}
.prop-newset-heading h2::after {
  background-color: #232323;
  bottom: -15px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  width: 59px;
}
.mob-samsung-products {
  background: #ffffff;
}
.mob-samsung-latest-product {
  margin: 0 auto;
  display: table;
}
.mob-samsung-text h4 {
  color: #232323;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
}
.mob-samsung-text h4 a {
  color: #232323;
  font-size: 16px;
}
.mob-samsung-text span {
  color: #999;
  font-weight: 500;
  font-size: 14px;
}
.mob-samsung-latest-product img {
  height: 156px;
}
.mob-samsung-text {
  padding: 10px;
  text-align: center;
}
.mob-samsung-categories .owl-nav {
  position: absolute;
  right: 0;
  top: -40%;
  margin-top: 0;
}
.mob-samsung-categories .owl-nav i {
  background-color: #ffc220;
  padding: 10px 13px;
  border-radius: 0;
  color: #fff;
}
.mob-samsung-categories .owl-nav .owl-prev,
.mob-samsung-categories .owl-nav .owl-next {
  padding: 4px;
  display: inline;
}
.mob-brand-banner-4 img {
  width: 100%;
}

.mob-brand-banner-4 {
  margin-bottom: 20px;
}
.mob-samsung-categories .mob-app-widget {
  margin-bottom: 20px;
}
.mob-all-categories {
  background-color: #ffffff;
  position: relative;
  margin-bottom: 20px;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 5%);
}
.mob-all-categories .mob-latest-categories li:hover {
  box-shadow: none;
}
.mob-all-categories .mob-latest-categories li {
  padding: 16.8px 20px;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
  border-radius: 0;
}
.mob-latest-contents {
  text-align: left;
}
.toys-new-accessories.owl-theme .owl-dots .owl-dot {
  margin-right: 5px;
}
.toys-new-accessories.owl-carousel .owl-dots {
  position: absolute;
  bottom: 55px;
  left: 45%;
  margin-left: 16px;
}
section.custom-padding.ads-grid-selector.gray.gray {
  padding-top: 80px;
}
.prop-newest-image img {
  width: 100%;
}
.toys-action-shop .btn-theme:hover {
  background: #fff;
}
.toys-action-shop .btn-theme {
  border-radius: 0;
}
.toys-hero-section {
  margin-bottom: -45px;
}
.toys-hero-section .mob-latest-contents h5 {
  color: #fff;
}
.mob-latest-contents h5 {
  font-size: 20px;
  color: #232323;
  font-weight: 500;
}
.mob-all-categories .mob-latest-categories li img {
  float: left;
  margin-right: 15px;
  margin-top: 3px;
}
.mob-details-lg {
  text-align: left;
}
.mob-details-lg h6 {
  font-size: 16px;
  font-weight: 500;
  color: #232323;
}
.mob-details-lg p {
  color: #999999;
  margin: 0;
  font-size: 14px;
}
.mob-all-categories .mob-latest-categories li i {
  position: absolute;
  right: 20px;
  top: 35%;
  opacity: 0.4;
  font-size: 20px;
  color: #999;
}
.mob-featured-ad {
  padding: 12px 20px;
  border-bottom: 1px solid #f5f5f5;
  background-color: #fff;
}
.mob-featured-ad h4 {
  color: #232323;
  font-weight: 500;
  font-size: 20px;
}
.mob-brand-feature-ad-2 {
  background: #ffffff;
}
.mob-brand-feature-ad {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.bk-hero-section {
  height: 600px;
  background-size: cover;
  background-position: center center;
}
.bk-hero-details {
  position: relative;
  padding: 150px 0;
}
.bk-hero-text span {
  font-size: 40px;
  color: #ffc220;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 40px;
}
.bk-hero-text h1 {
  color: #232323;
  font-size: 80px;
  font-weight: 600;
  line-height: 80px;
  margin-bottom: 20px;
}
.bk-hero-text p {
  color: #232323;
  font-size: 20px;
  width: 70%;
}
.bk-hero-shop {
  margin-top: 23px;
}
.bk-hero-shop .btn-theme {
  padding: 10px 30px;
  border-radius: 0;
}
.toys-biggest-sale {
  padding-top: 40px;
}
.toys-es-img,
.toys-es-sale,
.toys-es-sale {
  position: relative;
}
.toys-es-text.wide {
  width: 50%;
}
.toys-es-text {
  position: absolute;
  top: 10%;
  left: 6%;
}
.toys-ex-categories {
  position: absolute;
  bottom: 0;
  right: 15%;
}
.toys-ex-shops {
  position: absolute;
  bottom: 7%;
  left: 6%;
}
.toys-ex-shops a {
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
}
.toys-es-text h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
}
.bk-products-box {
  position: relative;
  overflow: hidden;
  border: 1px solid #f5f5f5;
  margin-bottom: 30px;
  background: #f3f3f5;
}
.bk-products-img img {
  width: 100%;
}
.bk-products-img {
  padding: 20px;
}
.bk-selections {
  position: relative;
  padding: 0px 20px 20px;
  border-top: 1px solid #f5f5f5;
}
.bk-sel-rate {
  line-height: 20px;
}
.bk-sel-rate i {
  color: #ffd203;
  margin-right: 5px;
}
.bk-sel-ctrgs h4 {
  color: #232323;
  font-size: 20px;
  padding: 5px 0px;
  font-weight: 500;
}
.bk-sel-price span {
  color: #ffc220;
  font-size: 16px;
  font-weight: 600;
}
.prop-newset-heading h2 {
  color: #232323;
  font-size: 32px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 75px;
}
.prop-newset-heading a.btn {
  border-radius: 0;
}
section.mob-samsung-categories.section-padding.no-extra.gray {
  padding-top: 0;
  padding-bottom: 0;
}
.toys-es-img img,
.toys-es-sale img {
  width: 100%;
}
.bk-latest-products {
  padding-top: 20px;
}
.prop-newset-heading h2::before {
  background-color: #232323;
  bottom: -20px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  width: 99px;
}
.prop-newset-heading h2::after {
  background-color: #232323;
  bottom: -27px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  width: 59px;
}
.bk-sel-price span strike {
  color: #777777;
}
section.top-bk-ads.padding-bottom-30,
.mob-newest-ads {
  padding-bottom: 1px;
}
.prop-newset-heading a.btn {
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px 30px;
}
.heading-panel {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.heading-panel .main-title {
  border-bottom: 2px solid #ffc220;
}
.ad-grid-5 .new-small-grid-description h2 {
  font-size: 20px;
  font-weight: 500;
}
.ad-grid-5 .category-title span {
  margin-right: 5px;
  color: #777;
}
.ad-grid-5 .category-title {
  margin-bottom: -2px;
}
.heading-panel .main-title {
  color: #232323;
  font-size: 32px;
  font-weight: 700;
  line-height: 60px;
  margin: 0;
  text-transform: capitalize;
}
.heading-panel .main-title {
  display: inline-block;
}
.top-bk-box {
  position: relative;
  overflow: hidden;
  border: 1px solid #f5f5f5;
  padding: 20px;
  margin-bottom: 30px;
  background-color: #f0f0f0;
}
.top-ox-img {
  float: left;
  margin-right: 20px;
}
.top-ox-img img {
  width: 100%;
}
.top-bk-text-area {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}
.top-bk-details i {
  color: #ffd203;
  margin-right: 5px;
}
.top-ox-img img {
  width: 100px;
  height: 150px;
}
.toys-hero-section .toys-new-accessories .toys-hero-content {
  background: #ffc220;
}
.toys-hero-accesories {
  padding: 70px 30px;
}
.toys-new-accessories .toys-hero-content .toys-hero-accesories .toys-hero-logo {
  max-width: 200px;
}
.toys-hero-text h3 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 56px;
}
.toys-hero-text p {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}
.toys-hero-shop {
  margin-top: 25px;
}
.toys-hero-shop .btn-theme:hover {
  background: #fff;
}
.toys-hero-shop .btn-theme:hover {
  color: #232323;
}
.toys-hero-shop .btn-theme {
  background: #fff;
  color: #232323;
  padding: 12px 40px;
  font-weight: 600;
  border-radius: 0;
}
.toys-new-accessories .toys-hero-content .toys-hero-img {
  margin-top: 30px;
}
.toys-new-accessories.owl-carousel .owl-dots .owl-dot {
  background-color: transparent !important;
}
.toys-hero-section .owl-theme .owl-dots .owl-dot span {
  background: #ffffff;
  margin: 0;
}
.toys-call-to-action {
  height: 350px;
  position: relative;
  background: #ffc220;
}
.mob-new-ads img {
  width: 100%;
}
.toys-action-main-content {
  padding: 5px 80px;
}
.toys-action-text h3 {
  color: #fff;
  line-height: 50px;
  font-size: 42px;
  font-weight: 700;
  width: 77%;
}
section.mob-samsung-categories.section-padding.no-extra {
  padding-bottom: 0;
}
.toys-action-img img {
  width: 560px;
}
.toys-action-text p {
  color: #fff;
  line-height: 26px;
  margin-top: 10px;
}
.toys-action-shop {
  margin-top: 20px;
}
.toys-action-shop .btn-theme {
  background: #fff;
  color: #232323;
  padding: 10px 40px;
  box-shadow: 2px 2px 10px 0px rgb(0 0 0 / 30%);
}
.toys-action-img {
  margin-top: -80px;
}
.toys-latest-products {
  position: absolute;
  bottom: -65px;
  left: 0px;
}
.toys-latest-products img {
  width: 60%;
}
.prop-latest-selections {
  margin-top: 60px;
}
.prop-latest-content-area {
  padding-top: 190px;
}
.prop-latest-content-area .prop-latest-text h1 {
  font-size: 32px;
  color: #fff;
  line-height: 36px;
  font-weight: 500;
  text-transform: capitalize;
}
.prop-latest-content-area .prop-latest-text p {
  color: #fff;
  font-size: 18px;
  margin-top: 22px;
}
.prop-latest-content-area .prop-latest-textfields {
  margin-top: 20px;
  position: relative;
}
.prop-latest-textfields .form-control {
  border-radius: 30px;
  height: 47px;
  margin-bottom: 22px;
  padding: 0 20px;
}
.prop-latest-textfields .select2-container .select2-selection--single {
  width: 75%;
  border-radius: 30px;
  height: 48px;
  padding: 0 15px;
  position: relative;
}
.prop-latest-content-area .prop-latest-text h1::before {
  background-color: #fff;
  bottom: -13px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  width: 99px;
}
.prop-latest-textfields .prop-sumit-form {
  position: absolute;
  right: 0%;
  top: 58%;
}
.prop-latest-textfields .prop-sumit-form .btn-theme {
  padding: 12px 35px;
  border-radius: 30px;
}
.prop-main-wrapped {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #f5f5f5;
}
.prop-hero-text-section {
  margin-left: 20px;
}
.scrolable-ads {
  position: relative;
  height: 695px;
  padding: 20px;
}
.prop-estate-image-section {
  float: left;
  padding-right: 15px;
}
.prop-estate-image-section img {
  border-radius: 2px;
  width: 169px;
}
.prop-real-estates {
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 7px 0px #ccc;
  margin-bottom: 20px;
  background: #fff;
}
.prop-real-estate-box {
  padding: 8px 0 5px;
}
.prop-estate-text-section p {
  color: #777;
  font-size: 14px;
}
.prop-estate-text-section span {
  font-size: 16px;
  color: #232323;
  font-weight: 500;
}
.prop-estate-table .prop-content-area li {
  font-size: 15px;
  padding-left: 0;
}
.prop-estate-table .prop-content-area li i {
  font-size: 12px;
  color: #999;
}
.prop-estate-text-section p i {
  color: #777;
  margin-right: 5px;
}
.prop-real-estates .items {
  margin-left: 8px;
}
.sb-header.sb-header-1.viewport-lg .sb-menu > ul > li > a {
  padding: 0 10px;
}
.prop-it-work-image {
  margin: 0 auto;
  display: table;
}
.prop-it-sell-text-section {
  text-align: center;
  margin-top: 10px;
}
.prop-it-work-sell-section:hover .prop-it-sell-text-section span {
  color: #ffc220;
}
.prop-ad-location-images::before {
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
}
.ad-location-main-area::before {
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
}
ul.row li a img {
  max-width: 100%;
}
.prop-it-sell-text-section span {
  color: #242424;
  transition: 0.5s;
  font-size: 18px;
  font-weight: 600;
}
.prop-it-sell-text-section p {
  color: #999;
  margin-top: 4px;
  margin-bottom: 0;
  line-height: 26px;
  font-size: 16px;
}
.prop-it-work-sell-section:hover {
  box-shadow: 0px 0px 9px -1px #ccc;
}
.prop-it-work-sell-section {
  padding: 20px 25px;
  transition: 0.7s;
  margin-bottom: 20px;
}

.prop-ad-location-section img {
  width: 100%;
}
.ad-location-main-area {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.ad-location-main-area img,
.prop-ad-location-images img {
  width: 100%;
}

.prop-ad-location-images {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.prop-location-details .btn-theme {
  color: #fff;
  background: transparent;
  font-size: 14px;
}
.land-hero-section {
  background-image: url(../images/slider-5.png);
  height: auto;
  position: relative;
  background-position: top center;
  background-size: cover;
}
.land-hero-text-section {
  margin-top: 170px;
}
.land-hero-classified-ads {
  margin-bottom: 10px;
}
.land-hero-classified-ads span {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  font-size: 24px;
}
.land-hero-operating-system h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
}
.land-hero-operating-system h1 .hero-color-combination {
  color: #232323;
  font-size: 46px;
}
.land-hero-details-section {
  margin-top: 12px;
}
.land-hero-details-section p {
  color: #232323;
  font-size: 21px;
}
.land-hero-section .tech-main-post-area {
  margin-top: 30px;
}
.tech-post-ads {
  float: left;
  margin-right: 25px;
}
.land-hero-section .tech-main-post-area .tech-post-ads a {
  background-color: #242424;
}
.land-hero-section .tech-main-post-area .tech-opinion a {
  background-color: #fff;
  border: none;
}
.land-hero-mobiles-section {
  margin-top: 120px;
  float: right;
}
.land-bootsrap-models {
  position: absolute;
  left: 50%;
  bottom: 10%;
}
.how-it-work-repeat p.heading-text {
  margin-top: -10px;
  margin-bottom: 50px;
}
.land-bootsrap-models .btn-primary {
  background: #fff;
  padding: 0;
  border: 1px solid #ffc220;
  border-radius: 50%;
  color: #ffc220;
  font-size: 20px;
  width: 80px;
  height: 80px;
  position: relative;
  -webkit-animation: ripple 1s linear infinite;
  animation: ripple 1s linear infinite;
  -webkit-transition: 0.5s linear;
}
.land-bootsrap-models .btn-primary {
  -webkit-animation: ripple-white 1s linear infinite;
  animation: ripple-white 1s linear infinite;
}
.land-bootsrap-models .btn-primary i {
  font-size: 30px;
  text-align: center;
  padding-left: 8px;
  line-height: 78px;
}
.how-its-worksss .sb-short-head h2::before,
.pistachio-classified-grid .sb-short-head h2::before {
  background-color: #242424;
  bottom: -20px;
  content: "";
  height: 1px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 99px;
}
.how-its-worksss .sb-short-head h2::after,
.pistachio-classified-grid .sb-short-head h2::after {
  background-color: #242424;
  bottom: -25px;
  content: "";
  height: 1px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 59px;
}
.home-tabs .tabs-container .nav.nav-tabs li a.active {
  border-left: 0 none;
  border-right: 0 none;
  box-shadow: 0 0 6px 0 #7c7c7c;
  margin-top: -10px;
  z-index: 99;
}
.home-tabs .tabs-container .nav.nav-tabs,
.home-tabs .nav.nav-tabs li a.active {
  border: medium none;
}
.home-tabs .tabs-container .nav.nav-tabs li.active {
  border: medium none;
  border-radius: 0;
  height: 133px;
  line-height: 110px;
}
.home-tabs .tabs-container .nav.nav-tabs li a.active {
  border: medium none;
  border-radius: 0;
  height: 133px;
  line-height: 110px;
}
.heading-panel h2::before {
  background-color: #242424;
  bottom: 6px;
  content: "";
  height: 1px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 99px;
}
.heading-panel h2::after {
  background-color: #242424;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 59px;
}
.how-it-work-repeat {
  padding: 60px 0;
  padding-bottom: 0;
}
.land-apps-screenshot p.heading-text {
  margin-top: -10px;
  margin-bottom: 50px;
}
.land-apps-screenshot {
  padding: 80px 0px;
}
.heading-text {
  display: inline-block;
  line-height: 26px;
  margin-bottom: 20px;
  width: 50%;
  margin-top: -10px;
}
.how-it-work-repeat .how-it-work-content {
  margin-bottom: 40px;

  padding: 0 26px;
}
.how-it-repeat-section {
  background: url(../images/icon-image.png);
  height: 100px;
  width: 100%;
  height: 100px;
  width: 100%;
  background-repeat: no-repeat;
  text-align: center;
  background-position: top center;
  padding: 0px 25px;
}
.how-it-repeat-section i {
  font-size: 28px;
  padding: 20px;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #777;
  background: #ffff;
  box-shadow: 0px 0px 20px -10px rgb(0 0 0);
  display: inline-block;
  height: 70px;
  width: 70px;
}
.it-work-account {
  margin-top: 1px;
  text-align: center;
}
.it-work-account h2 {
  font-size: 20px;
  font-weight: 600;
  color: #232323;
}
.it-works-text {
  text-align: center;
}
.it-works-text p {
  color: #777;
  font-size: 16px;
  margin-bottom: 0;
}
.ads-location .heading-panel h2,
.ads-location.bg-gray .heading-panel h2 {
  padding-top: 0px !important;
}
.dec-location-section .heading-panel h2 {
  color: #fff;
}
.heading-panel h2 {
  color: #242424;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 30px;
  position: relative;
  text-transform: capitalize;
}
.prop-location-details .btn-theme:hover {
  background: transparent;
  border: 0;
  box-shadow: none;
}
.how-it-work-7 .how-it-repeat-section {
  background-image: url(../images/gta.png);
  background-position: top;
}
.land-classified-apps {
  padding: 30px 0 60px;
}
.land-classified-heading {
  margin-bottom: 35px;
}
.land-classified-heading h3 {
  color: #232323;
  font-size: 42px;
  font-weight: 700;
  text-transform: capitalize;
  padding-bottom: 20px;
}
.land-classified-heading h3::before {
  background-color: #242424;
  bottom: -11px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  width: 99px;
}
.land-classified-heading h3::after {
  background-color: #242424;
  bottom: -5px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  width: 59px;
}
.land-classified-heading h3 span {
  color: #ffc220;
}
.land-classified-text-section .list-inline li {
  margin-right: 20px;
  padding-left: 0;
}
.land-classified-text-section .list-inline li i {
  color: #ffc220;
  margin-right: 10px;
}
.land-classified-operating-system {
  margin-top: 10px;
}
.land-classified-android-apps {
  border: 1px solid #cccc;
  padding: 5px 30px;
  box-shadow: 0px 5px 10px 1px #f6f6f6;
  border-radius: 50px;
}
.land-android-logos {
  float: left;
  margin-top: 6px;
  position: relative;
  margin-right: 12px;
  overflow: hidden;
}
.land-apps-android-text-area {
  position: relative;
  overflow: hidden;
}
.land-apps-android-text-area p {
  margin: 0;
  font-size: 15px;
  color: #232323;
  font-weight: 500;
  line-height: 20px;
}
.land-classified-text-section .list-inline li span {
  color: #232323;
}
.land-classified-app-section img {
  width: 100%;
}
.land-latest-featured {
  padding-bottom: 80px;
}
.land-latest-featured .heading-panel h2 {
  padding-top: 40px;
}
.land-fa-qs {
  margin-bottom: 50px;
}
.land-apps-screenshot .app-shots-carousal .owl-stage-outer {
  overflow: visible;
}
.land-apps-screenshot .app-shots-carousal .owl-item.active {
  opacity: 1;
}
.land-apps-screenshot .app-shots-carousal .owl-item {
  opacity: 0.3;
}
.land-featured-box {
  background: #f9f9f9;
  padding: 20px 40px;
  margin-bottom: 25px;
  transition: 0.5s;
}
.land-featured-icons {
  margin: 0 auto;
  display: table;
  border: 1px solid #cccc;
  padding: 10px;
  border-radius: 30px;
}
.land-featured-text-section {
  text-align: center;
  margin-top: 10px;
}
.land-featured-text-section span {
  color: #232323;
  font-size: 16 px;
  font-weight: 500;
  margin-bottom: 5px;
}
.land-featured-text-section p {
  color: #777;
  font-weight: 300;
}
.land-featured-box:hover {
  box-shadow: 0px 3px 10px 0px #cccc;
  background: #ffffff;
  margin-top: -1px;
}
.land-qs-heading-section {
  margin-bottom: 27px;
}
.demo .panel-group .panel-collapse .panel-body {
  color: #777;
  background: #fff;
  padding: 15px;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
}
.mob-logo-img img {
  height: 50px;
  width: 50px;
  margin-top: 10px;
}
.land-qs-heading-section h3 {
  color: #232323;
  font-size: 42px;
  font-weight: 700;
  text-transform: capitalize;
  padding-bottom: 20px;
}
.land-qs-heading-section h3 span {
  color: #ffc220;
}
.land-qs-heading-section h3::before {
  background-color: #242424;
  bottom: -11px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  width: 99px;
}
.land-qs-heading-section h3::after {
  background-color: #242424;
  bottom: -5px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  width: 59px;
}
.land-qs-text-section {
  margin-bottom: 18px;
}
.land-qs-text-section {
  margin-bottom: 18px;
}
.land-qs-text-section p {
  font-weight: 300;
  font-size: 16px;
}
.land-body-panel {
  margin-bottom: 20px;
}
.land-fa-qs .more-less {
  color: #ffc220;
  opacity: 1;
}
.land-fa-qs-image img {
  width: 100%;
}
.land-one-items {
  padding: 60px 0;
  background: #f9f9f9;
}
.land-item-profile {
  margin: 0 auto;
  display: table;
}
.land-item-profile img {
  width: auto;
}
.land-one-h2 {
  text-align: center;
  margin-top: 8px;
}
.land-one-h2 h5 {
  color: #232323;
  font-size: 18px;
  font-weight: 600;
}
.land-one-rating {
  text-align: center;
}
.land-new-text {
  margin-top: 2px;
}
.land-new-text p {
  font-weight: 300;
  color: #232323;
  font-size: 17px;
  width: 70%;
  margin: 0 auto;
}
.land-hero-operating-system h1 .hero-color-combination {
  color: #232323;
  font-size: 40px;
  font-weight: 400;
}

.mat-success-stories .owl-nav {
  position: absolute;
  right: 0;
  top: -100px;
}

.mat-success-stories .owl-nav .owl-prev,
.mat-success-stories .owl-nav .owl-next {
  padding: 4px;
  display: inline;
  background: transparent;
  margin: 0;
}
.mat-success-stories .owl-nav .owl-next i:hover,
.mat-success-stories .owl-nav .owl-prev i:hover {
  border: 0;
}
.mat-success-stories .owl-nav i {
  background-color: #ffc220;
  padding: 6px 13px;
  border-radius: 0;
  color: #fff;
}
.prop-hero-text-section h3 {
  font-size: 22px;
  color: #232323;
  font-weight: 500;
  text-transform: capitalize;
}
.call-images-section img {
  max-width: 100%;
}
.prop-agent-box {
  position: relative;
  margin-bottom: 30px;
}
.prop-agent-image {
  position: relative;
}
.prop-agent-image img {
  width: 100%;
}
.prop-agent-icons {
  overflow: hidden;
  position: absolute;
  top: 45%;
  left: 20%;
  display: none;
  transition: 0.6s;
}
.new-social-icons {
  float: right;
}
.new-social-icons .list-inline li i {
  border-radius: 100%;
  display: inline-block;
  height: 28px;
  padding: 7px;
  color: #ffffff;
  text-align: center;
  width: 28px;
}

.new-social-icons .list-inline li .fa-facebook {
  background-color: #2b4a8b;
}
.new-social-icons .list-inline li .fa-twitter {
  background-color: #1f94d9;
}
.new-social-icons .list-inline li .fa-linkedin {
  background-color: #10598c;
}
.new-social-icons .list-inline li .fa-google {
  background-color: #d83936;
}
.prop-agent-text-section {
  box-shadow: 0px 1px 8px -1px #ccc;
  padding: 10px 15px;
  background: #fff;
}
.prop-agent-text-section h5 {
  color: #232323;
  font-size: 18px;
  font-weight: 500;
}
.prop-agent-text-section p {
  margin-bottom: 0px;
  color: #999;
}
.prop-agent-text-section p i {
  color: #ffc220;
  margin-right: 6px;
}
.prop-agent-text-section span {
  color: #232323;
  font-size: 15px;
}

/*old home pages*/
.list-description-text {
  text-align: center;
  color: #ffffff;
  position: relative;
  margin-bottom: 30px;
}
.list-description-text p {
  font-size: 26px;
  color: #ffffff;
}
.list-description-text h3 {
  font-size: 40px;
  width: 70%;
  margin: 0 auto;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 50px;
  line-height: initial;
}
.browse-featured-list .browse-featured-images img {
  width: 100%;
}
.serach-bar .form-group input {
  border-radius: 30px;
  padding-left: 20px;
  border-radius: 34px 0 0px 34px;
  height: 55px;
}
.browse-categories::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
}
.browse-categories-h3 h3::before {
  background-color: #ffffff;
  bottom: -15px;
  content: "";
  height: 1px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 99px;
}
.section-padding.pg-new {
  padding-bottom: 100px !important;
  padding: unset;
}
.browse-categories-h3 h3::after {
  background-color: #ffffff;
  bottom: -22px;
  content: "";
  height: 1px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 59px;
}
.new-featured-list-2 button {
  padding: 14.5px 30px;
  border-radius: 0 50px 50px 0;
}
.browse-categories-h3 {
  text-align: center;
  padding: 70px 0;
}
.browse-categories-h3 h3 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 500;
}
.clouds {
  position: absolute;
  bottom: 0;
}
.new-boxes-section {
  text-align: center;
  margin-top: -187px;
}
.boxes-h1 li {
  float: left;
  width: 20%;
}
.new-main-section {
  background: #f9f9f9;
  padding: 50px 35px;
  position: relative;
}
.new-main-section .flat-icons {
  display: table;
  margin: 0 auto;
}
.new-main-section .flat-icons i {
  font-size: 50px;
  color: #777;
}
.icons-text {
  margin-top: 3px;
  text-align: center;
}
.new-boxes-section .boxes-h1 .new-main-section .icons-text h2 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.icons-text h2 {
  font-size: 16px;
  color: #020202 !important;
  font-weight: 500;
}
.boxes-h1 li:nth-child(even) .new-main-section {
  background-color: #fff;
}
.section-padding {
  padding: 80px 0;
}
.how-it-icons-p4 {
  background: url(../images/r1.png);
  height: 140px;
  width: 100%;
  background-attachment: scroll;
  background-position: center center;
  background-repeat: no-repeat;
}
.how-it-work-p5 {
  text-align: center;
}
.how-it-icons-p4 i {
  font-size: 50px;
  color: #fff;
  line-height: 137px;
}
.how-it-p5 {
  margin-top: 35px;
  text-align: center;
}
.how-it-p5 h2 {
  color: #232323;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.content-2 {
  position: absolute;
  top: 77px;
  right: -97px;
}
.content-3 {
  position: absolute;
  top: 29px;
  right: -97px;
}
.count-timer {
  position: absolute;
  top: 110px;
  left: 225px;
}
ul#google-map-btn {
  position: absolute;
  right: 2px;
}
.count-timer p {
  color: #ffffff;
  font-weight: 600;
}
.col-lg-4:nth-child(2) .how-it-icons-p4 {
  background: url(../images/r2.png);
  background-repeat: no-repeat;
  background-position: center center;
}
.col-lg-4:nth-child(3) .how-it-icons-p4 {
  background: url(../images/r4.png);
  background-repeat: no-repeat;
  background-position: center center;
}
.parallex,
.parallex-light {
  color: #fff !important;
  position: relative;
  z-index: 44;
}

.funfacts.fun_2 .icons {
  position: relative;
  width: 100%;
  text-align: center;
  clear: both;
  display: table;
  margin-bottom: 25px;
}

.funfacts.fun_2 .number {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.funfacts.fun_2 h4 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 500;
  text-align: center;
}
.funfacts.fun_2 .icons i {
  font-size: 60px;
}
.funfacts.fun_2 .client-3 {
  position: absolute;
  top: -5px;
}
.funfacts.fun_2 h4 span {
  color: #ffc220;
}
.classified-ad-listing {
  margin-top: 220px;
}
.classified-text {
  padding-left: 30px;
}
.classified-text h1 {
  color: #232323;
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  text-transform: capitalize;
  padding-right: 90px;
}
.classified-text h1::before {
  background-color: #242424;
  bottom: -13px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  width: 75px;
}
.classified-short-text {
  margin-top: 23px;
  padding-left: 29px;
}
.classified-short-text p {
  font-size: 20px;
  color: #020202;
  line-height: 27px;
}
.ad-button-r1 {
  padding-left: 29px;
  margin-top: 23px;
}
.ad-button-r1 .btn-primary {
  padding: 10px 40px;
  color: #ffffff;
  border: none;
}
.ads-listing-section .form-listing {
  margin-top: 178px;
}

.form-listing .form-join {
  border-radius: 15px;
}
.form-join {
  background: #fff none repeat scroll 0 0;
  border-radius: 4px;
  box-shadow: 0 0 50px 10px rgb(0 0 0 / 5%);
  margin: 0 auto;
  padding: 30px;
}
.form-listing .form-group {
  margin-bottom: 15px;
}
.mat-hero-section .form-join ::placeholder {
  color: #fff;
  opacity: 1;
}

.mat-hero-section .form-join :-ms-input-placeholder {
  color: #fff;
}

.mat-hero-section .form-join ::-ms-input-placeholder {
  color: #fff;
}
.form-join .form-control {
  background-image: none;
  border-radius: 0;
  box-shadow: none;
  color: #eee !important;
  font-size: 14px;
  height: auto;
  padding: 15px 12px;
  transition: all 0.2s cubic-bezier(0, 0, 0.58, 1) 0s;
}

.srvs-search-bars .form-join .form-control {
  color: #212529;
}
.form-join.search-hero-form .form-control {
  color: #777 !important;
  outline: 0;
  border: 1px solid #ced4da;
}
.form-join .form-control label {
  margin-bottom: 10px;
}

.ads-listing-section .button-blocks .btn-theme {
  border-radius: 0;
}
.explore-categories {
  background: #f9f9f9;
  padding: 60px 0;
}
.vehicle-categories {
  background: linear-gradient(to left, rgba(108, 170, 45), rgba(137, 200, 73));
  margin-bottom: 30px;
}
.new-vehicle-categories {
  padding: 20px 20px;
}
.vehicle-icons i {
  color: #333;
  position: absolute;
  top: 5px;
  right: 12px;
}
.vehicle-icons {
  float: left;
  height: 40px;
  box-shadow: 1px 2px 8px 1px aliceblue;
  background: #fff;
  width: 40px;
  border-radius: 50%;
  position: relative;
}
.vehicle-text {
  position: relative;
  overflow: hidden;
}
.vehicle-text h2 {
  color: #ffffff;
  display: block;
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  line-height: 40px;
  padding-left: 30px;
}
.vehicle-text h2 a {
  color: #ffffff;
}
.vehicle-details {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
}
.vehicle-details ul li {
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 16px;
}
.vehicle-details ul li a {
  color: #ffffff;
  text-transform: capitalize;
}
.explore-categories-button {
  text-align: center;
  padding: 7px 0;
}
.over-view {
  color: #ffffff;
}
.explore-categories-button i {
  padding-left: 7px;
}
.vehicle-details ul li span {
  float: right;
}

.col-lg-6:nth-child(8n + 2) .vehicle-categories {
  background: -webkit-linear-gradient(
    to bottom,
    rgba(34, 92, 170),
    rgba(34, 92, 170)
  );
  background: linear-gradient(to left, rgba(17, 97, 134), rgba(45, 158, 210));
}
.col-lg-6:nth-child(8n + 3) .vehicle-categories {
  background: -webkit-linear-gradient(
    to bottom,
    rgba(255, 196, 32),
    rgba(255, 196, 32)
  );
  background: linear-gradient(to right, rgba(209, 127, 57), rgba(255, 196, 32));
}
.col-lg-6:nth-child(8n + 4) .vehicle-categories {
  background: -webkit-linear-gradient(
    to bottom,
    rgba(255, 32, 32),
    rgba(255, 32, 32)
  );
  background: linear-gradient(to right, rgb(161, 56, 105), rgb(234, 26, 124));
}
.col-lg-6:nth-child(8n + 6) .vehicle-categories {
  background: -webkit-linear-gradient(
    to bottom,
    rgba(65, 41, 90),
    rgba(65, 41, 90)
  );
  background: linear-gradient(to right, rgb(47, 7, 67), rgb(84, 39, 107));
}
.col-lg-6:nth-child(8n + 7) .vehicle-categories {
  background: -webkit-linear-gradient(
    to bottom,
    rgba(68, 160, 141),
    rgba(68, 160, 141)
  );
  background: linear-gradient(to right, rgb(9, 54, 55), rgb(31, 149, 152));
}
.col-lg-6:nth-child(8n + 8) .vehicle-categories {
  background: -webkit-linear-gradient(
    to bottom,
    rgba(75, 121, 161),
    rgba(75, 121, 161)
  );
  background: linear-gradient(to right, rgb(40, 62, 81), rgb(101, 158, 207));
}
section#partner {
  padding: 40px;
}
.intro-hero-margin {
  height: 770px !important;
  padding-top: 200px !important;
}
.sigle-clients-brand {
  float: left;
  padding-left: 30px;
  width: 20%;
  margin-bottom: 30px;
}
.clients-modern-2 .client-brand-list .sigle-clients-brand a {
  border: 1px solid #ddd;
  display: block;
  opacity: 0.5;
  padding: 20px;
  text-align: center;
}
.happy-clients-area {
  padding: 90px 0 60px;
}
.happy-new-client-area .sigle-clients-brand a:hover {
  opacity: 1;
}
.modern_sample2 {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 530px;
  position: relative;
  z-index: 0;
}
.modern_sample2 .content h1 {
  color: #fff;
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.6;
}
.modern_sample2 .content .btn + .btn {
  margin-left: 10px;
  padding: 10px 20px;
}
.modern_sample2 .content h1 b {
  color: #fff;
  font-weight: 700;
}
.modern_sample2 .content h1 strong {
  color: #fff;
  font-weight: 700;
}
.btn-clean {
  border: 1px solid #fff;
  color: #fff;
  text-transform: capitalize;
  font-size: 14px;
}
.modern_sample2 .content {
  margin: auto;
  max-width: 70em;
  padding: 10em 5em 5em;
  position: relative;
  text-align: center;
}
.modern_sample2 .content .btn-theme {
  border-radius: 0;
}
.cloud {
  position: absolute;
  z-index: 55;
  bottom: 0;
}

.box-cat {
  background: #fff none repeat scroll 0 0;
  color: #666;
  float: left;
  margin: 0 0 30px;
  padding: 30px 0;
  text-align: center;
  width: 100%;
}
.box-cat h4 {
  color: #232323;
  font-size: 16px;
  font-weight: 500;
}
.box-cat strong {
  display: block;
  font-size: 14px;
  padding: 0 0 10px;
  color: #777;
  font-weight: 400;
}
.category-grid-img img {
  width: 100%;
}
.gray .box-cat::after {
  border-bottom: 50px solid #f9f9f9;
  border-right: 50px solid #f0f0f0;
  box-shadow: -8px 3px 9px -8px rgb(0 0 0 / 10%);
  content: "";
  height: 0;
  left: auto;
  opacity: 1;
  position: absolute;
  right: 0px;
  top: 0;
  width: 0;
  z-index: 9;
}
.hero-cats {
  color: #fff;
  padding: 160px 0;
  position: relative;
  text-align: center;
  clear: both;
}
.hero-cats .content {
  margin: auto;
  max-width: 64em;
  padding: 5em;
  position: relative;
}
.hero-cats .content {
  padding: 5em 0;
}
.hero-cats .content h1 {
  font-size: 45px;
  font-weight: 700;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 22px;
  line-height: 60px;
}
.hero-cats .content p {
  font-size: 15px;
  line-height: 2;
}
.hero-cats .content .search-holder {
  position: relative;
  width: 100%;
  margin: 32px 0 0;
}
.hero-cats .content .search-holder input {
  border: medium none;
  color: #222;
  font-size: 1.2em;
  height: 68px;
  padding: 0.8em 0 0.8em 0.8em;
  border-radius: 0;
}
.hero-cats .content .search-holder .input-group-btn {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
}
.hero-cats .content .search-holder .input-group-btn .btn {
  height: 68px;
  border: none;
  border-radius: 0;
}
.tech-text-section .tech-mac-book {
  padding-top: 15px;
}
.hero-cats::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-cats .content p {
  color: #fff;
  position: relative;
}
.hero-cats .btn-theme span {
  padding: 15px;
}
.home-tabs {
  margin-top: -58px;
  position: relative;
  z-index: 21;
}
.home-tabs .tabs-container .nav.nav-tabs li {
  padding: 0;
  position: relative;
  text-align: center;
  width: 12.5%;
}
.home-tabs .tabs-container .nav-tabs > li > a i {
  color: #fff;
  font-size: 64px;
}
.home-tabs .tabs-container .nav.nav-tabs li a {
  border: medium none;
  border-radius: 0;
}

.home-tabs .tabs-container .nav-tabs li:nth-child(9n + 2) a {
  background: #2ecc71 none repeat scroll 0 0;
}
.home-tabs .tabs-container .nav-tabs > li > a {
  background-color: #ffc627;
  border: 0 none;
  color: #242424;
  overflow: hidden;
  position: relative;
  width: 100%;
  line-height: 1.42857143;
}

.home-tabs .tabs-container .nav-tabs li:nth-child(9n + 1) a {
  background: #3498db none repeat scroll 0 0;
}
.home-tabs .tabs-container .nav-tabs li:nth-child(9n + 2) a {
  background: #2ecc71 none repeat scroll 0 0;
}
.home-tabs .tabs-container .nav-tabs li:nth-child(9n + 3) a {
  background: #9b59b6 none repeat scroll 0 0;
}
.home-tabs .tabs-container .nav-tabs li:nth-child(9n + 4) a {
  background: #d5658d none repeat scroll 0 0;
}
.home-tabs .tabs-container .nav-tabs li:nth-child(9n + 5) a {
  background: #b89579 none repeat scroll 0 0;
}
.home-tabs .tabs-container .nav-tabs li:nth-child(9n + 6) a {
  background: #53b9c5 none repeat scroll 0 0;
}
.home-tabs .tabs-container .nav-tabs li:nth-child(9n + 7) a {
  background: #757790 none repeat scroll 0 0;
}
.home-tabs .tabs-container .nav-tabs li:nth-child(9n + 8) a {
  background: #34495e none repeat scroll 0 0;
}
.home-tabs .tabs-container .tab-content {
  padding: 40px 0 40px 0;
}
.popular-categories {
  display: block;
  margin: 0;
}
.popular-categories li a {
  background-color: #fff;
  border: 1px solid #f1f1f1;
  color: #232323;
  float: left;
  font-size: 16px;
  padding: 60px 15px 50px;
  position: relative;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 20%;
}
.popular-categories li a i {
  color: #222;
  display: block;
  font-size: 50px;
  padding: 0 0 30px;
}
.popular-categories li a .count {
  color: #777;
  display: block;
  font-size: 14px;
}
.search-2 {
  background: #363c48 none repeat scroll 0 0 !important;
  color: #fff;
  position: relative;
  padding: 30px 0;
}
.search-2 .search-title {
  background-color: #363c48;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  left: 245px;
  padding: 16px 20px;
  position: absolute;
  text-transform: uppercase;
  top: -58px;
  z-index: 999;
  width: 20%;
  text-align: center;
}
.search-2 .search-title::before {
  border-color: transparent #363c48 #363c48 transparent;
  border-style: solid;
  border-width: 58px 45px 2px 6px;
  bottom: 0;
  content: "";
  height: 40px;
  left: -51px;
  position: absolute;
  width: 51px;
}
.search-2 .search-title::after {
  border-color: transparent transparent #363c48 #363c48;
  border-style: solid;
  border-width: 7px 52px 53px 7px;
  bottom: 0;
  content: "";
  height: 50px;
  position: absolute;
  right: -58px;
  width: 58px;
}

.search-2 .form-control {
  background-color: #fff;
  background-image: none;
  border: 1px solid #e1e1e1;
  border-radius: 0;
  box-shadow: none;
  margin-top: 0;
  color: #555;
  font-size: 14px;
  height: auto;
  padding: 15px 12px;
  transition: all 0.2s cubic-bezier(0, 0, 0.58, 1) 0s;
}
.search-2 .btn {
  padding: 15px 65px;
}
.minimal-category {
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  width: 100%;
  overflow: hidden;
}
.minimal-img {
  position: relative;
  width: 100%;
}
.minimal-img img {
  width: 100%;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.7s ease 0s;
  -moz-transition: all 0.7s ease 0s;
  -ms-transition: all 0.7s ease 0s;
  -o-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}
.minimal-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
  z-index: 9;
}
.minimal-category .description {
  z-index: 20;
  position: absolute;
  left: 0;
  right: 0;
  top: 45%;
  width: 100%;
}
.minimal-category .description span {
  text-align: center;
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 600;
  padding: 0 20px;
}
.minimal-category .description .ads-count {
  color: #fff;
  font-weight: 400;
}
.minimal-category:hover .minimal-img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.parallex::before {
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.call-action {
  position: relative;
  width: 100%;
}
.call-action i {
  float: left;
  font-size: 70px;
  height: 70px;
  margin-right: 20px;
  width: 70px;
}
.call-action h4 {
  font-size: 30px;
  text-transform: capitalize;
  color: #fff;
}

.call-action p {
  color: #fff;
  margin-top: 20px;
}
.parallex-button {
  text-align: right;
}
.parallex-button .btn {
  padding: 15px 35px;
  border-radius: 0;
}
ul.category-list-style li {
  list-style: outside none none;
  margin: 0;
  position: relative;
}
ul.category-list-style li a {
  background: #fff none repeat scroll 0 0;
  box-shadow: 2px 2px 2px 0 rgb(0 0 0 / 10%);
  color: #232323;
  display: block;
  font-size: 18px;
  line-height: 24px;
  outline: medium none;
  padding: 10px 30px 10px 18px;
  position: relative;
  text-decoration: none;
  margin-bottom: 30px;
}
ul.category-list-style li a span {
  color: #777777 !important;
  display: block;
  font-size: 12px;
  font-weight: normal;
}
ul.category-list-style li a i {
  color: #ccc;
  font-size: 45px;
  opacity: 0.5;
  position: absolute;
  right: 11px;
  top: 35%;
}
.category-list {
  background: #fff none repeat scroll 0 0;
  float: left;
  position: relative;
  width: 100%;
  border-bottom: 1px solid #f1f1f1;
  border-left: 1px solid #f1f1f1;
  border-top: 1px solid #f1f1f1;
  border-right: 1px solid #f1f1f1;
  margin-bottom: 30px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease- 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.category-list-icon {
  float: left;
  border-top: 2px solid #ddd;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f7f8f9 none repeat scroll 0 0;
}
.category-list-icon i {
  background: #fff none repeat scroll 0 0;
  color: #232323;
  float: left;
  font-size: 36px;
  margin-right: 10px;
  padding: 16px;
  text-align: center;
}
.category-list-title {
  float: none;
  padding: 15px 0 0 65px;
  width: auto;
}
.category-list-title h5 > a {
  color: #232323;
  display: block;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
}
ul.category-list-data {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 20px;
  margin-bottom: 15px;
}
ul.category-list-data li {
  display: inline-block;
  position: relative;
  width: 100%;
}
ul.category-list-data li::before {
  content: "\f105";
  font-family: fontawesome;
  height: 100%;
  left: 0;
  position: absolute;
  top: 10px;
  width: 20px;
  color: #999;
  font-size: 14px;
}
ul.category-list-data li a {
  color: #5b5b5b;
  display: block;
  padding: 10px 0 10px 15px;
  text-align: left;
  text-transform: capitalize;
}
ul.category-list-data li a span {
  border-radius: 100%;
  color: #999999;
  float: right;
  height: 24px;
  line-height: 24px;
  width: 24px;
  text-align: center;
}
.post-tag-section {
  background: #f7f8f9 none repeat scroll 0 0;
  font-size: 18px;
  padding: 0 20px 20px;
}
.post-tag-section .cat-all {
  background: #555657 none repeat scroll 0 0;
  border-radius: 0 3px 0 0;
  border-right: 8px solid rgba(0, 0, 0, 0.15);
  color: #f2f2f2;
  float: right;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-right: -29px;
  margin-top: -1px;
  padding: 10px 26px 10px 32px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  z-index: 9;
}
.cat-all::before {
  border-color: transparent transparent transparent #f7f8f9;
  border-style: solid;
  border-width: 55px 0 0 15px;
  content: "";
  height: 0;
  margin-left: -33px;
  margin-top: -14px;
  position: absolute;
  width: 0;
}
.cat-all::after {
  border-color: #afafaf transparent transparent;
  border-style: solid;
  border-width: 12px 8px 0 0;
  bottom: 0;
  content: "";
  height: 0;
  margin-bottom: -12px;
  margin-right: -7px;
  position: absolute;
  right: 0;
  width: 0;
}
#hero-cats .search-holder .nav.nav-tabs li {
  padding: 0;
  position: relative;
  text-align: center;
  width: 20%;
}
#hero-cats .search-holder .nav-tabs > li > a {
  background-color: #ffc627;
  color: #fff;
  overflow: hidden;
  position: relative;
  width: 100%;
  border: medium none;
  border-radius: 0;
  line-height: 1.42857143;
}
#hero-cats .search-holder .nav-tabs > li > a i {
  color: #fff;
  font-size: 46px;
  position: relative;
  width: 100%;
  float: left;
}

#hero-cats .search-holder .nav-tabs li:nth-child(1) a {
  background: #3498db none repeat scroll 0 0;
}
#hero-cats .search-holder .nav-tabs li:nth-child(2) a {
  background: #2ecc71 none repeat scroll 0 0;
}
#hero-cats .search-holder .nav-tabs li:nth-child(3) a {
  background: #9b59b6 none repeat scroll 0 0;
}
#hero-cats .search-holder .nav-tabs li:nth-child(4) a {
  background: #d5658d none repeat scroll 0 0;
}
#hero-cats .search-holder .nav-tabs li:nth-child(5) a {
  background: #b89579 none repeat scroll 0 0;
}
.home-category-slider .owl-item:nth-child(9n + 1) .category-grid-5 {
  background: #3498db none repeat scroll 0 0;
}
.home-category-slider .owl-item:nth-child(9n + 2) .category-grid-5 {
  background: #2ecc71 none repeat scroll 0 0;
}
.home-category-slider .owl-item:nth-child(9n + 3) .category-grid-5 {
  background: #9b59b6 none repeat scroll 0 0;
}
.home-category-slider .owl-item:nth-child(9n + 4) .category-grid-5 {
  background: #d5658d none repeat scroll 0 0;
}
.home-category-slider .owl-item:nth-child(9n + 5) .category-grid-5 {
  background: #b89579 none repeat scroll 0 0;
}
.home-category-slider .owl-item:nth-child(9n + 6) .category-grid-5 {
  background: #34495e none repeat scroll 0 0;
}
.home-category-slider .owl-item:nth-child(9n + 7) .category-grid-5 {
  background: #53b9c5 none repeat scroll 0 0;
}
.home-category-slider .owl-item:nth-child(9n + 8) .category-grid-5 {
  background: #757790 none repeat scroll 0 0;
}
.home-category-slider .owl-item:nth-child(9n + 9) .category-grid-5 {
  background: #f05458 none repeat scroll 0 0;
}
.home-category-slider .category-slider .owl-nav .owl-prev,
.home-category-slider .category-slider .owl-nav .owl-next {
  position: absolute;
  top: 45%;
  background: #ffc220;
}
.home-category-slider .category-slider .owl-nav .owl-prev {
  right: 0;
}
.home-category-slider .category-slider .owl-nav .owl-next {
  left: 0;
}
.category-grid-box-1.ad-grid-3 .short-description-1.clearfix i,
.category-grid-box-1.ad-grid-3 .short-description-1.clearfix small {
  color: #777;
}
.category-grid-box-1.ad-grid-3 .short-description-1.clearfix small {
  padding-left: 5px;
}
.home-category-slider .category-slider .owl-nav i {
  padding: 10px;
  color: #fff;
}
.category-grid-5 {
  color: #fff;
  width: 100%;
  padding: 70px 40px;
  text-align: center;
  position: relative;
  min-height: 377px;
}

.category-grid-5-icon i {
  font-size: 40px;
}

.category-grid-5 .cat-5-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  padding: 5px 0 0;
}

.category-grid-5 .cat-5-title h2 {
  font-size: 20px;
  margin-bottom: 0;
  text-transform: capitalize;
}
.category-grid-5 .cat-5-title h2 a {
  color: #fff;
}
.category-grid-5 .cat-5-count {
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.category-grid-5 .cat-5-popular {
  color: #fff !important;
  font-size: 13px;
  padding: 20px 0 10px;
  position: relative;
}
.category-grid-5 .cat-5-popular a {
  color: #fff;
}
.category-grid-5 .cat-5-popular {
  color: #fff !important;
  font-size: 13px;
  padding: 20px 0 10px;
  position: relative;
}
.background-rotator {
  background: #eee none repeat scroll 0 0;
  position: relative;
  z-index: 0;
}
.linear-overlay {
  position: relative;
  z-index: 0;
}
.item.linear-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.owl-carousel .owl-stage-outer {
  padding-bottom: 0px;
}
.pricing .block.featured {
  background: #363c48 none repeat scroll 0 0;
  border: 1px solid #363c48;
  color: #fff;
}
.background-rotator-slider .item img {
  display: block;
  width: 100%;
  height: auto;
}
.background-rotator .search-section {
  color: #fff;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 330px;
  z-index: 1;
}
.background-rotator .heading-caption {
  margin-bottom: 20px;
  text-align: center;
}
.background-rotator .heading-caption h1,
.background-rotator .heading-caption p {
  color: #fff;
  margin-bottom: 20px;
}
.background-rotator .heading-caption h1 {
  font-size: 42px;
  font-weight: 600;
  text-transform: capitalize;
}
.background-rotator .heading-caption p {
  font-size: 18px;
}
.background-rotator .search-form {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
}
.background-rotator .search-form input.form-control {
  height: 55px;
  position: relative;
}
.background-rotator .search-form .btn {
  padding: 15px 15px;
  border-radius: 0;
  margin-top: 0;
  color: #fff;
}
.background-rotator .search-form .btn i {
  margin-left: 10px;
  color: #fff;
}
.advertizing {
  padding: 45px 0;
}
.banner {
  text-align: center;
}
.banner {
  display: block !important;
  max-width: 100%;
  overflow: hidden;
}
.white.category-grid-box-1 {
  border: 1px solid #e9e6e0;
  box-shadow: none;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.category-grid-box-1 {
  background: #fff none repeat scroll 0 0;
  box-shadow: 0 2px 5px -1px rgb(0 0 0 / 16%);
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
}

.category-grid-box-1 .play-video {
  color: #fff;
  font-size: 26px;
  opacity: 0.75;
  position: absolute;
  transition: all 0.25s ease 0s;
  left: 15px;
  top: 18px;
  z-index: 9;
}
.white.category-grid-box-1 .short-description-1 {
  background: #fff none repeat scroll 0 0;
  padding: 15px;
  position: relative;
}
.category-grid-box-1 .category-title {
  color: #a0a0a0;
  font-size: 12px;
}
.category-grid-box-1 .category-title a {
  color: #777777;
  margin-right: 5px;
  text-transform: capitalize;
  font-size: 12px;
}
.white.category-grid-box-1 h2 {
  color: #232323;
  font-size: 20px;
  text-transform: none !important;
  font-weight: 500;
}
.short-description-1 .location {
  margin-bottom: 0px;
  font-size: 14px;
}
.location i {
  padding-right: 5px;
}
.shop-overlay-box {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
ul.on-product-custom-stars li i {
  color: #ffc220;
}
.product-description-heading h3 a:hover {
  color: #242424;
}
.product-description {
  background: #ffffff;
  padding: 20px;
}
.pets-new-section {
  position: absolute;
  left: 85%;
  top: 68px;
}
.land-great-products .btn-theme:hover {
  border: 0;
}
.product-description-heading h3 {
  padding: 5px 0px;
}
.product-description-about {
  border: 1px solid #f7f7f7;
  box-shadow: 0px 2px 6px 0px #cccc;
  margin-bottom: 25px;
  position: relative;
}
.product-description-about .shop-box .on-sale span {
  color: #ffffff;
  transform: rotate(-45deg);
  display: inline-block;
  float: left;
  padding: 4px;
}
.product-description-about .shop-box {
  background-color: #f9f9f9;
  text-align: center;
}
.shop-box .on-sale {
  background: url(../images/4x.png);
  height: 60px;
  background-repeat: no-repeat;
  padding: 0 2px;
}
.shop-main-title-area {
  position: absolute;
  top: -4px;
  width: 100%;
  left: -4px;
}
.white.category-grid-box-1 .ad-price {
  font-size: 16px;
  font-weight: 600;
  float: left;
  margin-bottom: 10px;
}
.white.category-grid-box-1 .ad-price span {
  color: #777;
  font-size: 14px;
  font-weight: 400;
}
.white.category-grid-box-1 .negotiable {
  color: #a0a0a0;
  font-size: 14px;
  line-height: 24px;
}
.white.category-grid-box-1 .ad-info-1 {
  border-top: 1px solid #e9e6e0;
  background: #fcfbf9 none repeat scroll 0 0;
}
.white.category-grid-box-1 .ad-info-1 ul {
  list-style: outside none none;
  margin: 0;
  padding: 0 15px;
}
.pull-left {
  float: left !important;
}
.white.category-grid-box-1 .ad-info-1 ul li,
.white.category-grid-box-1 .ad-info-1 ul li a {
  color: #a0a0a0;
  font-weight: 400;
}
.white.category-grid-box-1 .ad-info-1 ul li {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 10px;
  vertical-align: middle;
  font-size: 13px;
}
.white.category-grid-box-1 .ad-info-1 {
  overflow: hidden;
  width: 100%;
  padding: 5px 0;
}
.pull-right {
  float: right !important;
}
.ad-info-1 ul li i {
  margin-right: 5px;
}
.white.category-grid-box-1 .ad-info-1 ul li,
.white.category-grid-box-1 .ad-info-1 ul li a {
  color: #777777;
}
.white.category-grid-box-1 img {
  width: 100%;
}
.white.category-grid-box-1 .featured-ribbon {
  height: 80px;
  overflow: hidden;
  position: absolute;
  right: 0;
  text-align: right;
  width: 80px;
  z-index: 2;
}
.white.category-grid-box-1 .featured-ribbon span {
  background: #d2281e none repeat scroll 0 0;
  box-shadow: 0 3px 12px -7px rgb(0 0 0);
  color: #fff;
  display: block;
  font: 600 10px/30px "Source Sans Pro", sans-serif;
  position: absolute;
  right: -25px;
  text-align: center;
  text-transform: uppercase;
  top: 10px;
  transform: rotate(45deg);
  width: 100px;
}
.category-grid-box {
  float: left;
  margin-bottom: 30px;
  width: 100%;
  border: 1px solid #e1e1e1;
  overflow: hidden;
  background-color: #fff;
}
.category-grid-box .category-grid-img {
  position: relative;
  width: 100%;
}
.category-grid-box .short-description {
  padding: 15px;
  overflow: hidden;
  border-top: 1px solid #ccc;
}
.category-grid-box .short-description .category-title {
  color: #777777;
  margin-bottom: -7px;
  font-size: 14px;
}
.category-grid-box .category-title a {
  color: #777777;
  font-size: 14px;
}
.category-grid-box .short-description h2 {
  font-size: 18px;
  color: #232323;
  font-weight: 500;
}
.ad-grid-2 .short-description .category-title span.padding_cats {
  margin-right: 5px;
}
.category-grid-box .ad-info {
  border-top: 1px solid #eeeeee;
}
.category-grid-box .ad-info ul {
  list-style: outside none none;
  margin: 0 15px;
  padding: 0;
}
.category-grid-box .ad-info ul li:first-child {
  float: left;
  text-align: left;
}
.category-grid-box .ad-info ul li i {
  color: #777777;
  margin-right: 5px;
}
.category-grid-box .user-preview {
  position: absolute;
  right: 15px;
  top: 18px;
}
.category-grid-box .user-preview img {
  border-radius: 50%;
  box-shadow: 0 1px 1px rgb(0 0 0 / 80%);
  display: inline-block;
  height: 35px;
  vertical-align: middle;
  width: 35px;
}
.category-grid-box .play-video {
  right: 65px;
  left: auto;
}
.category-grid-box .play-video {
  color: #fff;
  font-size: 26px;
  opacity: 0.75;
  position: absolute;
  transition: all 0.25s ease 0s;
  top: 18px;
  z-index: 9;
}
.category-grid-box .additional-information {
  display: none;
  font-size: 16px;
  color: #fff;
  position: absolute;
  width: 100%;
  left: 25px;
  bottom: 60px;
  text-align: left;
}
.category-grid-box .additional-information p {
  color: #fff;
}
.category-grid-box .additional-information p {
  margin-bottom: 0;
  line-height: 25px;
  padding-right: 30px;
  text-transform: capitalize;
  font-size: 14px;
}
.category-grid-box .additional-information p {
  margin-bottom: 0;
  line-height: 25px;
  padding-right: 30px;
  text-transform: capitalize;
  font-size: 14px;
}
.category-grid-box .additional-information p {
  margin-bottom: 0;
  line-height: 25px;
  padding-right: 30px;
  text-transform: capitalize;
  font-size: 14px;
}
.category-grid-box .category-grid-img .ad-status {
  background-color: #d2281e;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  padding: 5px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 0;
  left: 0;
}
.category-grid-box:hover .additional-information {
  display: block;
}
.category-grid-box:hover .view-details {
  display: block;
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.category-grid-box .view-details {
  bottom: 6px;
  color: #fff;
  display: none;
  font-size: 14px;
  position: absolute;
  left: 25px;
  text-align: left;
  width: 100%;
}
.category-grid-box:hover .category-grid-img::before {
  opacity: 0.7;
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.ads-recent-content .recent-section-content .img-recent-1 img {
  width: 100%;
  height: auto;
}
.category-grid-box .category-grid-img::before {
  background: #242424 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -ms-transform: scale(0.9);
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  width: 100%;
}
.category-grid-box .short-description .price {
  font-weight: 500;
  font-size: 16px;
  margin: 0;
}
.category-grid-box .short-description .span {
  color: #a0a0a0;
  font-size: 14px;
}
.category-grid-box .ad-info ul li {
  color: #777777;
  display: inline-block;
  font-size: 14px;
  padding: 5px 0;
}
.category-grid-box .short-description .price span {
  color: #777777;
  font-size: 12px;
  font-weight: 400;
}
.category-grid-box-1 {
  background: #fff none repeat scroll 0 0;
  box-shadow: 0 2px 5px -1px rgb(0 0 0 / 16%);
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
}
.category-grid-box-1 .featured-ribbon {
  height: 80px;
  overflow: hidden;
  position: absolute;
  right: 0;
  text-align: right;
  width: 80px;
  z-index: 2;
}
.category-grid-box-1 .category-grid-box-1 a {
  color: #fff;
  font-weight: 500;
}
.category-grid-box-1 .play-video {
  color: #fff;
  font-size: 26px;
  opacity: 0.75;
  position: absolute;
  transition: all 0.25s ease 0s;
  left: 15px;
  top: 18px;
  z-index: 9;
}
.category-grid-box-1 .image {
  overflow: hidden;
  position: relative;
}
.category-grid-box-1 .short-description-1 {
  padding: 15px 15px 15px 15px;
  background: #243136 none repeat scroll 0 0;
  position: relative;
}
.category-grid-box-1 .price-tag {
  position: relative;
}

.category-grid-box-1 .price-tag .price {
  margin: 0;
}
.category-grid-box-1 .price-tag .price span {
  color: #fff;
  font-size: 16px;
}
.category-grid-box-1 .category-title {
  color: #777777;
  font-size: 12px;
}
.category-grid-box-1 h2 {
  font-size: 20px;
  text-transform: none;
  font-weight: 500;
}
.category-grid-box-1 h2 a {
  color: #fff;
}
.white.category-grid-box-1 h2 a {
  color: #20292f;
}
.ad-info-1 {
  background: #1d282c none repeat scroll 0 0;
  overflow: hidden;
  width: 100%;
  padding: 5px 0;
}
.ad-info-1 ul {
  list-style: outside none none;
  margin: 0;
  padding: 0 15px;
}
.ad-info-1 ul li {
  color: #fff;
  display: inline-block;
  margin-bottom: 0;
  margin-right: 10px;
  vertical-align: middle;
  font-size: 14px;
}
.featured-ribbon span {
  background: #d2281e none repeat scroll 0 0;
  box-shadow: 0 3px 12px -7px rgb(0 0 0);
  color: #fff;
  display: block;
  font: 600 10px/30px "Source Sans Pro", sans-serif;
  position: absolute;
  right: -25px;
  text-align: center;
  text-transform: uppercase;
  top: 10px;
  transform: rotate(45deg);
  width: 100px;
}
.listing-card {
  display: block;
  position: relative;
  background-color: #fff;
  border: 1px solid #eee;
  box-sizing: border-box;
  margin-bottom: 30px;
  box-shadow: 0 0 10px 5px #e3e3e3;
}
.image-area {
  background-color: #fff;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.listing-card .photo-count-flag {
  background-color: rgba(0, 0, 0, 0.75);
  bottom: 0;
  color: #fff;
  font-size: 0.8em;
  left: 0;
  padding: 2px 5px;
  position: absolute;
  z-index: 1;
}
.play-video {
  color: #fff;
  font-size: 26px;
  opacity: 0.75;
  position: absolute;
  transition: all 0.25s ease 0s;
  left: 15px;
  top: 18px;
  z-index: 9;
}
.listing-detail {
  position: relative;
  padding: 10px;
}
.listing-detail .listing-content h2.listing-title {
  font-size: 20px;
  font-weight: 500;
}
.listing-detail .listing-content .listing-title a {
  color: #232323;
}
.listing-detail .listing-content span.listing-price,
.adforest-user-ads b {
  font-size: 16px;
  font-weight: 500;
}
.listing-detail .listing-content span.listing-price span {
  font-size: 14px;
  color: #777;
  font-weight: 400;
}
.listing-detail .listing-content ul li span a,
.listing-detail .listing-content ul li span {
  color: #777777;
}
.listing-detail .listing-content ul li {
  font-size: 12px;
}
.listing-detail .listing-content ul li i {
  color: #777;
  margin-right: 3px;
}
.new-small-grid {
  background-color: #ffffff;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  -webkit-transform: scale(1);
  -webkit-box-shadow: 0px 4px 7px 0px rgb(0 0 0 / 30%);
  -moz-box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 4px 7px 0px rgb(0 0 0 / 30%);

  margin-bottom: 33px !important;
}
.new-small-grid:before {
  content: "";
  display: block;
  background-color: #ffffff;
  top: 208px;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 26%;
  position: absolute;
  transform: skewY(10deg) !important;
  transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.new-small-grid-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
}
.new-small-grid-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: block;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}
.new-small-grid-img img {
  transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  backface-visibility: hidden;
  width: 100%;
}
.new-small-grid-description {
  text-align: left;
  position: relative;
  z-index: 4;
  padding: 0 20px;
}
.new-small-grid-description h2 a {
  color: #232323;
  font-size: 18px;
}
/*for ads gridssssss*/
.featured-ribbon {
  height: 80px;
  position: absolute;
  right: 0;
  text-align: right;
  width: 80px;
  z-index: 2;
}
/*for ads gridssssss*/
.play-video {
  color: #fff;
  font-size: 26px;
  opacity: 0.75;
  position: absolute;
  transition: all 0.25s ease 0s;
  left: 15px;
  top: 18px;
  z-index: 9;
}
.new-small-grid figure {
  margin: 0;
}
.new-small-grid:hover:before {
  top: 230px;
}
.new-small-grid .ad-price {
  font-size: 16px;
  float: left;
  margin-bottom: 15px;
  font-weight: 600;
}
.new-small-grid .ad-price span {
  color: #777777;
  font-size: 14px;
  font-weight: 400;
}
.feature-section {
  margin-bottom: 30px;
}
.feature-shops {
  position: relative;
  overflow: hidden;
}
.feature-shops::before {
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  background: -webkit-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.1),
    rgba(0, 0, 0, 0.99)
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.1),
    rgba(0, 0, 0, 0.99)
  );
}
.feature-shops .new-feature-products-maker {
  position: absolute;
  left: 15px;
  bottom: 10px;
}
.new-feature-products span span {
  font-weight: 400;
  font-size: 12px;
  color: #fff !important;
}
.new-feature-products span {
  font-weight: 600;
  font-size: 16px;
  color: #ffc220;
}
.new-feature-icons {
  position: absolute;
  right: 15px;
  bottom: 10px;
}
.feature-icons i {
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  padding: 5px;
  opacity: 0.6;
}

.feature-icons .ad-favourited i,
.prop-estate-icons .ad-favourited i,
.browse-feature-icons .ad-favourited i,
.img-options-wrap .dec-featured-ht .ad-favourited i,
.ads-grid-container .ads-grid-vc .ad-favourited i {
  color: red;
}

.feature-description {
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
}
.feature-description .new-feature-text {
  margin-left: 0;
  padding: 15px;
}
.feature-shadow ul.list-inline li {
  font-size: 14px !important;
  color: #777;
}
.new-feature-text .fonts {
  color: #020202;
  font-size: 20px;
  font-weight: 500;
}
.new-feature-text .fonts a {
  color: #020202;
}
.new-feature-text h4 {
  font-size: 14px;
  color: #777777;
}
.new-feature-text h4 i {
  margin-right: 5px;
}
.new-feature-text h4 a {
  color: #777;
  font-weight: 400;
}
.feature-shop-colors {
  margin-bottom: -5px;
}
.feature-shadow .list-inline {
  background: #f9f9f9;
  padding: 7px 12px;
  margin-left: 0px;
}
.feature-shadow ul.list-inline li,
.feature-shop-colors ul.list-inline li {
  font-size: 12px;
}
.feature-shadow .items {
  margin-left: 8px;
}
.browse-feature-details {
  margin-bottom: 30px;
}
.browse-featured-images {
  position: relative;
  overflow: hidden;
}
.browse-featured-images::before {
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.7);
  background: -webkit-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.1),
    rgba(0, 0, 0, 0.9)
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.1),
    rgba(0, 0, 0, 0.9)
  );
}
.browse-feature-icons {
  position: absolute;
  top: 15px;
  left: 17px;
}
.browse-feature-icons i {
  background: #f4f4f4 none repeat scroll 0 0;
  border-radius: 50%;
  color: #b7b7b7;
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  margin-right: 2px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 30px;
  margin-right: 6px;
}
.browse-feature-text {
  background-color: #fff;
  padding: 15px;
}
.browse-heading-h2 {
  text-transform: capitalize;
  margin-top: 0px;
}
.browse-heading-h2 h2 {
  color: #232323;
  font-size: 20px;
  font-weight: 500;
}
.browse-heading-h2 h2 a {
  color: #020202;
}
.browse-text-h4 {
  margin-bottom: 10px;
  margin-top: 5px;
}
.browse-text-h4 p {
  font-size: 14px;
  margin-top: -4px;
}
.browse-price-section ul li a span {
  color: #a0a0a0;
  font-size: 14px;
}
.ad-grid-7 .browse-feature-products ul li {
  padding: 0 0;
  margin-right: 5px;
}
.browse-text-h4 i {
  padding-right: 8px;
  color: #777;
}
.browse-text-h4 p a {
  color: #777;
}
.browse-price-section .list-inline {
  background: #f4f4f4;
  padding: 8px;
}
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
.prop-newest-main-section {
  margin-bottom: 30px;
  border-radius: 20px;
}
.prop-newest-image {
  position: relative;
  margin-bottom: 5px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.ad-detail-2-img {
  position: relative;
}

.prop-estate-links {
  position: absolute;
  top: 5%;
  left: 15%;
  height: 40px;
  width: 40px;
}
.prop-estate-links img {
  border-radius: 30px;
  border: 1px solid #fff;
  width: 97% !important;
  height: 36px;
}
.prop-estate-icons {
  position: absolute;
  top: 5%;
  left: 4%;
}
.prop-estate-icons i {
  color: #fff;
  background: #cccc;
  padding: 11px;
  border-radius: 20px;
}
.prop-newest-main-section .prop-newest-image img {
  border-radius: 12px;
}
.prop-main-contents {
  border-radius: 12px;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
  position: relative;
  overflow: hidden;
}
.prop-main-contents .prop-real-estate-box {
  background: #fff;
}
.prop-real-estate-box {
  padding: 8px 0 5px;
}
.prop-estate-advertisement {
  padding: 10px 15px;
}
.prop-estate-rent {
  position: relative;
}
.prop-estate-rent .btn-theme {
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 12px;
  text-transform: uppercase;
}
.land-classified-text-section ul.list-inline {
  padding-top: 20px;
}
.prop-estate-text-section h2 {
  font-size: 20px;
  color: #232323;
  font-weight: 500;
}
.prop-estate-text-section span {
  font-size: 16px;
  color: #232323;
  font-weight: 500;
}
.prop-newest-main-section .prop-estate-table {
  padding: 5px 15px;
}
.prop-estate-table {
  border-top: 1px solid #f5f5f5;
}
.prop-estate-table .prop-content-area li i {
  font-size: 12px;
  color: #999;
}
.prop-estate-table .items {
  margin-left: 8px;
}
.dec-featured-box {
  border: 1px solid #f5f5f5;
  margin-bottom: 30px;
  background: #fff;
  position: relative;
}
.dec-featured-box-img {
  padding: 15px;
  padding-bottom: 0;
  position: relative;
}
.img-options-wrap {
  position: absolute;
  top: 10%;
  left: 15px;
  width: 50px;
}
.img-options-wrap .dec-featured-icons {
  background-color: #bf0000;
  padding: 0 18px;
  position: relative;
  min-width: 50px;
  margin-bottom: 5px;
  overflow: hidden;
  display: inline-block;
  line-height: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease- 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.img-options-wrap .dec-featured-cam {
  background: #232323;
  padding: 0px 15px;
  position: relative;
  min-width: 50px;
  margin-bottom: 5px;
  display: inline-block;
  overflow: hidden;
  line-height: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease- 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.img-options-wrap .dec-featured-ht {
  background: #ff9c00;
  padding: 0px 15px;
  position: relative;
  min-width: 50px;
  margin-bottom: 5px;
  display: inline-block;
  overflow: hidden;
  line-height: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease- 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.img-options-wrap .dec-featured-icons::before {
  border-right: 7px solid #a31a20;
  border-bottom: 10px solid transparent;
  content: "";
  display: block;
  height: 0;
  left: 0;
  position: absolute;
  bottom: -10px;
  width: 7px;
}
.img-options-wrap .dec-featured-icons span {
  color: #fff;
  margin-left: 10px;
  position: absolute;
  left: 100px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease- 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.img-options-wrap .dec-featured-cam::before {
  border-right: 7px solid #a31a20;
  border-bottom: 10px solid transparent;
  content: "";
  display: block;
  height: 0;
  left: 0;
  position: absolute;
  bottom: -10px;
  width: 7px;
}
.img-options-wrap .dec-featured-cam i,
.img-options-wrap .dec-featured-icons i {
  color: #fff;
  float: left;
  line-height: 30px;
}
.img-options-wrap .dec-featured-ht::before {
  border-right: 7px solid #a31a20;
  border-bottom: 10px solid transparent;
  content: "";
  display: block;
  height: 0;
  left: 0;
  position: absolute;
  bottom: -10px;
  width: 7px;
}
.img-options-wrap .dec-featured-ht i {
  color: #fff;
  float: left;
  line-height: 30px;
}
.img-options-wrap .dec-featured-ht span {
  color: #fff;
  margin-left: 10px;
  position: absolute;
  left: 100px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease- 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.img-options-wrap .dec-featured-cam span {
  color: #fff;
  margin-left: 10px;
  position: absolute;
  left: 100px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease- 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.img-options-wrap .dec-featured-icons:hover span {
  left: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease- 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.img-options-wrap .dec-featured-icons:hover {
  min-width: 110px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease- 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.img-options-wrap .dec-featured-cam:hover {
  min-width: 110px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease- 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.img-options-wrap .dec-featured-ht:hover {
  min-width: 124px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease- 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.img-options-wrap .dec-featured-cam:hover span {
  left: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease- 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.img-options-wrap .dec-featured-ht:hover span {
  left: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease- 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.dec-featured-details-section {
  padding: 15px;
  border-bottom: 1px solid #f5f5f5;
}
.dec-featured-details-section h2 {
  color: #232323;
  font-size: 20px;
}
.dec-featured-details-section p {
  margin-bottom: 3px;
  font-size: 14px;
  color: #999999;
}
.dec-featured-details-section p i {
  margin-right: 5px;
  color: #777;
}
.dec-featured-new-categories {
  position: relative;
  padding: 5px 11px;
}
.dec-featured-new-categories .dec-featured-select li {
  font-size: 14px;
}
.dec-featured-box-img img {
  width: 100%;
}
.dec-featured-new-categories .items {
  margin-left: 8px;
}
.ads-grid-container {
  margin-bottom: 30px;
}
.ads-grid-container {
  border: 1px solid #f5f5f5;
  border-radius: 10px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.ads-grid-container .ads-grid-style {
  position: relative;
}
.ads-grid-container .ads-grid-style::before {
  content: "";
  top: 0;
  bottom: 15px;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
}
.ads-grid-container .ads-grid-style::after {
  background: url(../images/grid-top.png);
  height: 11%;
  width: 100%;
  position: absolute;
  content: "";
  left: 0;
  bottom: -2px;
  background-repeat: no-repeat;
  background-size: cover;
}
.ads-grid-container .ads-grid-content {
  padding: 15px;
  overflow: hidden;
  width: 100%;
}
.ads-grid-container .ads-grid-content ul li {
  float: left;
  margin-right: 15px;
}
.ads-grid-container .ads-grid-content h3 {
  color: #242424;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 7px;
  overflow: hidden;
  width: 100%;
}
.ads-grid-container .ads-grid-content p i {
  margin-right: 10px;
  font-size: 13px;
}
.ads-grid-container .ads-grid-price {
  overflow: hidden;
  border: 1px solid #f0f0f0;
  border-right: none;
  border-left: none;
}
.ads-grid-container .ads-grid-panel {
  float: left;
  padding: 10px 15px;
  width: 70%;
}
.ad-grid-4 .image-area img {
  width: 100%;
}
.ads-grid-container .ads-grid-panel span {
  font-size: 16px;
  margin-right: 10px;
  font-weight: 600;
  color: #ffc220;
}
.dec-featured-details-section span h3 {
  font-size: 18px;
  display: initial;
  color: #f58936;
  font-weight: 500;
}
.ads-grid-container .ads-grid-vc {
  float: right;
  margin-right: 10px;
}
.ads-grid-container .ads-grid-vc i {
  padding: 13px 5px;
  line-height: 20px;
  color: #ccc;
}
.ads-grid-container .ads-grid-views {
  position: relative;
  overflow: hidden;
  padding: 15px;
}
.ads-grid-container .ads-grid-views ul li {
  float: left;
}
.ads-grid-container .ads-grid-views ul li img {
  border-radius: 50px;
  width: 30px;
  margin-right: 7px;
  display: inline-block;
}
.ads-grid-container .ads-grid-views ul li span {
  color: #242424;
}
.ads-grid-container .ads-grid-views a {
  color: #242424;
}
.ads-grid-container .ads-grid-views ul li:last-child {
  float: right;
}
.ads-grid-container .ads-grid-views ul li:last-child p {
  margin-top: 2px;
}
.clasfied-head .form-join {
  padding: 0;
}

/*Footer settings*/
.footer-area.no-bg {
  background-image: none;
  background-color: #fff;
  border-top: 1px dashed #f1f1f1;
  color: #808080;
}
.footer-area .footer-content {
  padding: 70px 0 30px;
  position: relative;
  z-index: 1;
}
.footer-area .contact-info {
  margin-bottom: 20px;
  position: relative;
}
.footer-area .contact-info li {
  line-height: 30px;
  margin: 0 0 7px;
  padding-left: 30px;
  position: relative;
}
.footer-area .contact-info li .icon {
  font-size: 16px;
  left: 0;
  line-height: 30px;
  position: absolute;
  top: 0;
  color: #c9c9c9;
}
.footer-widget.about-widget .logo a img {
  padding-left: unset;
  padding-top: unset;
}
.footer-widget.about-widget .logo {
  text-align: left;
  margin-bottom: 10px;
}
.footer-area.no-bg .social-links-two a {
  border: 1px solid #808080;
  color: #808080;
}
.footer-area .footer-content a {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.social-links-two a {
  border: 1px solid #bcbcbc;
  border-radius: 50%;
  color: #bcbcbc;
  display: block;
  float: left;
  font-size: 12px;
  height: 28px;
  line-height: 26px;
  margin-right: 8px;
  position: relative;
  text-align: center;
  -webkit-transition: all 500ms ease 0s;
  -moz-transition: all 500ms ease 0s;
  -ms-transition: all 500ms ease 0s;
  -o-transition: all 500ms ease 0s;
  transition: all 500ms ease 0s;
  width: 28px;
}
.social-links-two a:hover {
  background: #ffc220 none repeat scroll 0 0;
  color: #fff !important;
  border: none !important;
}
.footer-content .links-widget li {
  margin-bottom: 15px;
  position: relative;
}
.footer-content .news-widget .news-post {
  color: #c9c9c9;
  line-height: 20px;
  margin-bottom: 40px;
  padding: 0 0 0 80px;
  position: relative;
}
.footer-content .news-widget .news-post .news-content {
  margin-bottom: 5px;
}
.footer-content .news-widget .news-post .image-thumb {
  height: 65px;
  left: 0;
  position: absolute;
  top: 0;
  width: 65px;
}
.footer-content .news-widget .news-post .image-thumb img {
  display: block;
  width: 65px;
}
.footer-area.no-bg .footer-content .news-widget .news-post .time {
  color: #808080;
}
.footer-area.no-bg .footer-copyright {
  border-top: 1px solid #f1f1f1;
}
.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #808080;
  font-size: 15px;
  padding: 16px 0;
  position: relative;
  text-align: center;
}
.footer-area.sb-foot-1 .heading-panel .main-title {
  color: #232323;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 20px;
}
.footer-top.sb-foot-2 input#save_email {
  border-radius: 0;
}
.footer-top.sb-foot-2 .widget .footer-new-title {
  text-transform: capitalize;
}
.footer-top.sb-foot-2 .widget.my-quicklinks ul li a {
  color: #fff;
}
.footer-area.sb-foot-1 .contact-info {
  margin-bottom: 20px;
  position: relative;
  margin-left: -5px;
}
.footer-area {
  background-color: #232323;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #c9c9c9;
  background-image: url(../images/footer.jpg);
  position: relative;
}

.footer-content .links-widget li a {
  color: #c9c9c9;
  display: block;
  font-size: 14px;
  line-height: 24px;
  position: relative;
}

.no-bg .footer-content .links-widget li a,
.no-bg .footer-content .news-widget .news-post a {
  color: #333333;
}
.footer-content .news-widget .news-post a {
  color: #c9c9c9;
  position: relative;
  font-size: 14px;
}
.copyright-content,
.footer-top.new-demo {
  border-top: 1px solid #f1f1f1;
}

.copyright-content p a {
  color: #fff;
}
.footer-top .widget .footer-new-title {
  color: #232323;
  font-weight: 500;
  font-size: 18px;
  display: block;
  margin: 0 0 18px;
}
.footer-top.new-demo .copyright-content p a {
  color: #ffc220;
  font-weight: 700;
}
.footer-top.new-demo .widget.my-quicklinks ul li a {
  color: #333333;
}
.footer-top.new-demo .copyright-content p a {
  color: #333333;
}
.footer-top.new-demo {
  background: #fff;
  padding: 70px 0 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 9;
}
.tech-price-categories {
  margin-bottom: 10px;
}
.tech-new-arrivals-product {
  padding: 80px 0px;
}
.tech-different-categories {
  padding: 5px 0px;
}
.footer-top .widget .logo {
  margin: 0 0 10px;
  text-align: left;
}
.footer-top.new-demo .widget p {
  color: #232323;
}

.copyright-content,
.footer-top.new-demo {
  border-top: 1px solid #f1f1f1;
}
.footer-top.new-demo {
  background: #fff;
  padding: 70px 0 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 9;
}
.copyright-content,
.footer-top {
  border-top: 1px solid #343434;
}
.footer-top .widget .logo {
  margin: 0 0 10px;
}
.footer-top.new-demo .widget p {
  color: #232323;
  font-weight: 500;
}
.footer-top .widget ul li {
  margin: 0 4px 4px 0;
  display: inline-block;
}
.footer-top.new-demo .widget .footer-new-title {
  color: #232323;
  font-weight: 500;
  font-size: 18px;
  display: block;
  margin: 0 0 18px;
}
.footer-top.new-demo .widget p {
  color: #232323;
  font-weight: 500;
}
.widget-newsletter .fieldset P {
  line-height: 27.8px;
  margin-bottom: 20px;
}
.footer-top .widget p {
  margin-bottom: 20px;
  color: #fff;
}
.widget-newsletter .fieldset form {
  position: relative;
}
.footer-top .widget-newsletter .fieldset form input[type="text"] {
  background-color: #f5f5f5;
  border: medium none;
  color: #232323;
  font-size: 14px;
  height: 48px;
  padding: 0 15px;
  width: 100%;
}
.widget-newsletter .fieldset form .submit-btn {
  border: medium none;
  color: #fff;
  display: block;
  height: 48px;
  padding: 0 18px !important;
  position: absolute !important;
  right: 0 !important;
  text-transform: uppercase;
  top: 0;
  background: #ffc220;
}
.footer-top .widget.socail-icons ul li {
  display: block;
  margin-right: 3px;
  margin-bottom: 10px;
}
.footer-top .widget.socail-icons ul li a {
  display: flex;
  align-items: center;
}
.footer-top .widget.socail-icons ul li a i {
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  margin-right: 8px;
  padding: 2px;
  width: 28px;
  background: #ea4c89;
}
/*.footer-top.sb-foot-2 .widget.socail-icons li a i {position: relative;top: -3px;}*/
.footer-top .widget.socail-icons ul li span {
  color: #fff;
}
.footer-top .widget.socail-icons li a i {
  font-size: 12px;
  color: #fff;
}
.footer-top .widget.socail-icons li a i.Facebook {
  background-color: #2b4a8b;
}
.footer-top .widget.socail-icons li a i.Twitter {
  background-color: #1f94d9;
}
.footer-top .widget.socail-icons li a i.Linkedin {
  background-color: #10598c;
}
.footer-top .widget.socail-icons li a i.Google {
  background-color: #d83936;
}
.footer-top .widget.socail-icons li a i.Vimeo {
  background-color: #1ab7ea;
}
.footer-top .widget.socail-icons li a.Pinterest {
  background-color: #cd201f;
}
.footer-top .widget.socail-icons li a.Tumblr {
  background-color: #2c4762;
}
.footer-top .widget.socail-icons li a.Instagram {
  background-color: #3f729b;
}
.footer-top .widget.socail-icons li a.Reddit {
  background-color: rgb(255, 69, 0);
}
.footer-top .widget.socail-icons li a.Flickr {
  background-color: #ff0084;
}
.footer-top .widget.socail-icons li a.StumbleUpon {
  background-color: #ff7257;
}
.footer-top .widget.socail-icons li a.behance {
  background-color: #1e6fed;
}
.footer-top .widget.socail-icons li a.DeviantART {
  background-color: #05cc47;
}
footer-top.new-demo .copyrights .copyright-content p,
.footer-top.new-demo .widget.socail-icons ul li span {
  color: #232323;
  font-weight: 500;
}
.footer-top.new-demo .copyrights {
  margin-top: 60px;
  background-color: inherit;
  border-top: 1px solid #f1f1f1;
}
.footer-top.new-demo .copyrights .copyright-content {
  border-top: medium none;
}
.footer-top.new-demo .copyrights .copyright-content p,
.footer-top.new-demo .widget.socail-icons ul li span {
  color: #232323;
  font-weight: 500;
}
.copyrights .copyright-content p {
  color: #fff;
}
.copyright-content {
  padding: 25px 0;
}
.footer-top {
  background-color: #202020;
  padding: 70px 0 30px;
}
.copyrights {
  background-color: #202020;
  overflow: hidden;
}
.minimal-footer-1 {
  background-color: #313131;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #ffffff;
  overflow: hidden;
  padding-top: 76px;
  position: relative;
}
.minimal-footer-1 .widget {
  font-size: 14px;
  margin-bottom: 45px;
  line-height: 28px;
}
.minimal-footer-1 .widget .widget-title {
  border: 0 none;
  color: #fff;
  font-size: 22px;

  margin-bottom: 24px;
  margin-top: 0;
  padding-bottom: 0;
  position: relative;
  text-transform: capitalize;
}
.minimal-footer-1 p {
  color: #fff;
}
.minimal-footer-1 .widget .social-links a {
  background-color: #414141;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  height: 37px;
  line-height: 37px;
  margin-right: 6px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 37px;
}
.minimal-footer-1 .widget .social-links a:hover {
  background: #ffc220;
  border: none;
}
.minimal-footer-1 .widget .social-links {
  margin-top: 20px;
}
.minimal-footer-1 .widget .subscribe-form {
  margin-top: 10px;
  position: relative;
}
.minimal-footer-1 .widget .subscribe-form input[type="text"] {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background-color: transparent;
  border-color: -moz-use-text-color -moz-use-text-color rgba(255, 255, 255, 0.1);
  border-image: none;
  border-style: none none solid;
  border-width: medium medium 1px;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  letter-spacing: 1.5px;
  padding: 8px 50px 8px 8px;
  text-transform: none;
  width: 100%;
}
.minimal-footer-1 .widget .subscribe-form button {
  background-color: transparent;
  border: medium none;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 28px;
  line-height: 1em;
  padding: 0;
  position: absolute;
  right: 0;
  top: 5px;
}
.minimal-footer-1 .sub-footer {
  background-color: #363636;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}
.minimal-footer-1 .sub-footer .entry-footer {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 1px;
  padding-bottom: 18px;
  padding-top: 18px;
  text-align: center;
}
.minimal-footer-1 .sub-footer .entry-footer a {
  color: #ffffff;
}
.minimal-footer {
  padding: 80px 0;
}
.bg_gray,
.gray {
  background-color: #f0f0f0;
}
.minimal-footer .footer-social {
  padding-bottom: 30px;
  padding-top: 30px;
}
.minimal-footer .copy-rights,
.footer-social {
  margin: 0;
}
.minimal-footer .footer-social > li {
  display: inline-block;
  margin: 15px 26px;
  text-align: center;
}
.minimal-footer .footer-social a {
  font-size: 42px;
  color: #6e7882;
}

.new-footer-section {
  background: #020202;
  padding: 25px !important;
}
.padding-25 .footer-last-section {
  margin: 0;
}
.new-footer-text-h1 p {
  color: #ffffff;
  margin: 0;
}
.new-footer-text-h1 p a {
  color: #ffc220;
}

.new-footer-section.sb-foot-6 {
  padding: 55px 0px 20px 0px !important;
}
.new-footer-content {
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.footer-anchor-section a {
  color: #ffc220;
}
.footer-last-section {
  position: relative;
  overflow: hidden;
  margin-top: 33px;
}
.prop-footer-section {
  height: auto;
  padding: 40px 0;
}
.prop-footer-categories {
  float: right;
  margin-top: 7px;
}
.prop-footer-content-area {
  border-bottom: 1px solid #cccc;
  margin-top: 15px;
  margin-bottom: 20px;
}
ul.list-inline.prop-footer-content li {
  display: block;
}
.footer-content-area {
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.pets-footer-section {
  position: relative;
  padding: 60px 0 15px;
  background: #f9f9f9;
}
.pets-footer-text-section {
  margin-top: 20px;
}
.pets-footer-text-section p {
  font-size: 16px;
}
.pets-new-categories {
  margin-bottom: 10px;
}
.pets-new-categories .footer-title {
  color: #232323;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.6em;
}
.animals-top-categories {
  columns: 2;
  list-style: disc;
  padding-left: 15px;
}
.pets-all-categories .animals-top-categories li {
  line-height: 38px;
}
.pets-all-categories .animals-top-categories li a {
  color: #777;
  font-size: 16px;
}
.pets-footer-text-section-1 {
  margin-bottom: 25px;
  margin-top: 15px;
}
.submit-form-section {
  float: left;
}
.submit-form-section .form-group .form-control {
  border: none;
  width: 240px;
  height: 52px;
}
.footer-deails-section {
  text-align: center;
  border-top: 1px solid #ddd;
}
.footer-deails-section p {
  margin-top: 20px;
  font-size: 16px;
}
.submit-categories .btn-primary {
  padding: 15px 30px;
  border-radius: 0;
  background: #9e9e9e;
  border: none;
}
.section-footer-bottom-mlt {
  background-color: #232323;
}
.section-footer-bottom-mlt .footer-15-inner {
  padding: 70px 0px;
}
.section-footer-bottom-mlt .footer-heading {
  min-height: 60px;
  padding-bottom: 15px;
}
.section-footer-bottom-mlt .footer-heading h3 {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
}
.section-footer-bottom-mlt .line-bottom {
  margin-top: 15px;
  width: 25%;
  float: left;
  height: 3px;
  background-color: #ffc220;
  margin-bottom: 0px;
  border: 0px;
}
.footer-15-first-row ul {
  columns: 2;
}
.section-footer-bottom-mlt .footer-15-widget ul li {
  margin-bottom: 15px;
  position: relative;
}
.section-footer-bottom-mlt .footer-15-widget ul li a {
  color: #bdbdbd;
  display: block;
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
  transition: 0.6s;
}
.section-footer-bottom-mlt .footer-15-widget ul li {
  margin-bottom: 15px;
  position: relative;
}
.section-footer-bottom-mlt .footer-15-widget ul li a {
  color: #bdbdbd;
  display: block;
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
  transition: 0.6s;
}
.section-footer-bottom-mlt .footer-15-text ul li {
  margin-bottom: 5px;
  position: relative;
}
.section-footer-bottom-mlt .footer-15-text ul li .input-group {
  box-shadow: -2px -1px 186px -61px rgb(0 0 0 / 7%);
}
.margin-top-30 {
  margin-top: 30px;
}
.section-footer-bottom-mlt .footer-15-text ul li .input-group input {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border: 0;
  background-color: rgba(68, 68, 68, 1);
  color: #bdbdbd;
}
.section-footer-bottom-mlt .footer-15-text ul li .input-group span {
  display: table-cell;
  background-color: #ffc220;
  border: 0;
}

.section-footer-bottom-mlt .logo {
  float: left;
}
.section-footer-bottom-mlt .logo img {
  padding-left: 0;
  padding-top: 0;
}
.section-footer-bottom-mlt .footer-15-about .contact-info {
  margin-bottom: 20px;
  position: relative;
}
.section-footer-bottom-mlt .footer-15-about .contact-info li {
  line-height: 30px;
  margin: 0 0 7px;
  padding-left: 30px;
  position: relative;
  color: #bdbdbd;
}
.section-footer-bottom-mlt .footer-15-about .contact-info li .icon {
  font-size: 16px;
  left: 0;
  line-height: 30px;
  position: absolute;
  top: 0;
}
.section-footer-bottom-mlt .social-15-links {
  padding-top: 0px;
  margin-top: 30px;
}
.section-footer-bottom-mlt .social-15-links a {
  border-radius: 50%;
  color: #232323;
  background: #fff;
  display: block;
  float: left;
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  margin-right: 8px;
  position: relative;
  text-align: center;
  -webkit-transition: all 500ms ease 0s;
  -moz-transition: all 500ms ease 0s;
  -ms-transition: all 500ms ease 0s;
  -o-transition: all 500ms ease 0s;
  transition: all 500ms ease 0s;
  width: 31px;
}
.section-footer-bottom-mlt .footer-15-copyright {
  border-top: 1px solid #404040;
  font-size: 15px;
  padding: 16px 0;
  position: relative;
  text-align: center;
  background: #242424;
}

.sb-header.sb-header-1 .logo img {
  padding-left: 0px;
  padding-top: 0;
}
/*----------All Header----------*/
.sb-header.header-2 {
  background: #363c48 none repeat scroll 0 0;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.sticky
  nav.sb-menu.menu-caret.submenu-top-border.submenu-scale.mega-menu.menu-6 {
  margin-top: -10px;
}
.sb-header-2 .looking-input-form {
  padding: 15px 12px;
  border-radius: 0;
}
.sb-header-2 .looking-form-search-icon-1 button {
  padding: 15px 12px;
  border-radius: 0;
  color: #242424;
  background: transparent;
  border: 1px solid #ced4da;
  width: 100%;
  box-shadow: none;
  line-height: 25px;
}
.sb-header-2 .header-2-input-pbm {
  padding-right: 0;
}
.sb-header-2 .col-btn {
  padding: 0;
}
.sb-header.header-3 .sb-menu {
  margin-left: -10px;
}
.header-2 .sb-menu ul.menu-links li a {
  color: #ffffff;
}
.header-2 .sb-menu ul.mega-menu-list li ul li a,
.header-2 .sb-menu ul.mega-menu-list li ul li a:hover,
.header-2 .sb-menu ul.drop-down-multilevel li.sub-menu a,
.header-2 .sb-menu ul.drop-down-multilevel li.sub-menu a:hover {
  color: #242424;
}
.sb-header-10 .sb-menu > ul > li > a {
  /*padding: 0 10px;*/
}
.sb-header-2 .sign-in-up ul.list-sign-in li {
  padding: 6px 10px;
}
.sb-header-2 .log-header {
  padding: 12px 0px;
}
.sb-header.header-3-old {
  background: #363c48 none repeat scroll 0 0;
  color: #ffffff;
  position: relative;
}
.sb-header.header-3-old.sticky {
  margin-top: -142px;
}
.sb-header-13 ul.list-sign-in li.login-me a,
.sb-header-13 ul.list-sign-in li.register-me a {
  color: #ffff;
}
.sb-header-8 .logo img,
.sb-header-10 .logo img {
  padding-top: 0;
}
.header-3-old .sb-menu ul.menu-links li a {
  color: #ffffff;
}
.header-3-old .mega-menu.sb-menu {
  margin-left: -8px;
}
header.sb-header-3-old {
  padding: 26px 0px;
}
.sb-header-3-old .sign-in-up ul.list-sign-in li {
  padding: 0px 10px;
}
.header-3-old .sb-menu.submenu-top-border li ul li a {
  color: #818181;
  font-style: inherit;
  text-transform: capitalize;
  font-size: 16px;
}
.sb-header-3-old .log-header {
  padding: 12px 0px;
}
.sb-header-3-old .sign-in-up ul.list-sign-in li a.login-user {
  position: relative;
  top: 33px;
  left: -10px;
}
.sb-header-3-old .sb-header-3-middle {
  padding: 26px 0px;
}
.sb-header-3-old .header-3-post {
  text-align: end;
  margin-top: -8px;
}
.header-3-old .sign-in-up ul.list-sign-in > li > a {
  line-height: 90px;
  height: 90px;
}
.header-3-old.sticky .sign-in-up ul.list-sign-in > li > a {
  line-height: 70px;
  height: 70px;
}

.header-3-old .sign-in-up ul.list-sign-in > li > a.btn.btn-theme {
  line-height: inherit;
  height: auto;
}

.header-3-old .sign-in-up ul .login-me a,
.header-3-old .sign-in-up ul .register-me a {
  color: #ffff;
}
.header-3-old .sign-in-up {
  float: inherit;
  text-align: left;
}

.sb-header-top3 .sb-mob-top-bar {
  background: #ffc220;
  padding: 8px 0;
}
.sb-header-top3 .sb-mob-top-bar .sb-mob-bar-content {
  float: left;
}
.sb-header-top3 .sb-mob-top-bar .sb-mob-bar-content .sb-top-social-icons li {
  color: #ffffff;
  margin-right: 25px;
  font-size: 15px;
  font-weight: 500;
}
.sb-header-top3 .sb-mob-top-bar .sb-mob-bar-content .sb-top-social-icons li i {
  margin-right: 10px;
}
.sb-header-top3 .sb-mob-top-bar-location .sb-location-selector .loc {
  color: #fff !important;
}
.sb-header-top3 .sb-mob-top-bar-location .sb-top-loc {
  right: auto;
  left: 0;
  height: auto;
  max-height: 400px;
  margin-top: 0;
  padding: 0;
  border-radius: 3px 3px 3px 3px;
  background: #f5f5f6;
  width: 200px;
  border: 0px;
}
.sb-header-top3 .sb-mob-top-bar-location .sb-top-loc li {
  border-left: medium none;
  display: block;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  border-bottom: 1px solid #ddd;
  margin-right: 0px;
}
.sb-header-top3 .sb-mob-top-bar-location .sb-top-loc li a {
  color: #232323;
  width: 100%;
  font-size: 14px;
  text-transform: uppercase;
  display: block;
  padding: 8px 15px;
  font-weight: 600;
}
.sb-header-11 .sb-menu ul.mega-menu-list li a {
  color: #818181 !important;
}
.sb-header.sb-header-2.sticky {
  top: 180px;
}

.sb-header.header-2.sticky {
  top: 180px;
}
.sb-modern-header-11 .sb-header-11.sticky .icon-search-head {
  height: 70px;
}
.sb-header-11.sticky .menu-11 ul.drop-down-multilevel {
  margin-top: 0px;
}
.sb-header.sb-header-11.sticky {
  z-index: 9999;
}
.sb-header-13.sticky .sb-header-top1.transparent-header {
  display: none;
}

.sb-header-top1.transparent-2-header
  .sb-top-left
  .sb-mob-top-bar-location
  .sb-location-selector
  a
  img {
  width: auto;
  margin-left: 10px;
}
.sb-header-10 .sign-in-up .list-sign-in li.register-me a,
.sb-header-10 .sign-in-up .list-sign-in li.login-me a {
  color: #ffffff !important;
}
.sb-header-8 .sign-in-up ul.list-sign-in li {
  padding: 20px 0px;
}
.sb-header-10.header_home .sign-in-up .list-sign-in li.register-me a,
.sb-header-10.header_home .sign-in-up .list-sign-in li.login-me a,
.sb-header-10.sticky .sign-in-up .list-sign-in li.register-me a,
.sb-header-10.sticky .sign-in-up .list-sign-in li.login-me a,
.sb-header-13.sticky .sign-in-up .list-sign-in li.register-me a,
.sb-header-13.sticky .sign-in-up .list-sign-in li.login-me a {
  color: #242424 !important;
}
.sb-header.header-3-old ul.dropdown-user-login {
  margin: 0px auto;
  text-align: initial;
}
.sb-header-top3 .sb-mob-top-bar-location .sb-top-loc li a img {
  margin-right: 5px;
  margin-left: 0px;
}
.sb-header-top1.black-header
  .sb-mob-top-bar-location
  ul.sb-top-loc
  li
  a.top-loc-selection
  img {
  margin-right: 10px;
  margin-top: -6px;
}
.sb-header.header-2.viewport-lg.sticky {
  position: fixed;
  top: 90px;
  z-index: 9999;
}
.sb-header-top3 .sb-mob-top-icons-area {
  float: right;
}
.sb-header-top3 .sb-mob-top-icons-area .sb-top-main-contents li {
  margin-right: 10px;
}
.sb-header-top3 .sb-mob-top-icons-area .sb-top-main-contents li a {
  color: #ffffff;
}

.sb-header-top2 {
  position: relative;
}
.sb-header-top2 .sb-dec-top-bar {
  background: linear-gradient(45deg, #ffffff 24%, #f58936 0%);
}
.sb-header-top2 .sb-dec-top-bar .sb-top-bar-social-icons {
  display: inline-block;
  vertical-align: middle;
  float: none;
  line-height: 52px;
}
.sb-header-top2 .sb-dec-top-bar .sb-top-bar-social-icons .list-style li {
  margin-right: 15px;
}
.sb-header-top2 .sb-dec-top-bar .sb-top-bar-social-icons .list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
.sb-header-top2 .sb-dec-top-bar .sb-top-bar-social-icons .list-inline li a {
  color: #ffffff;
}
.sb-header-top2 .sb-dec-top-ad-post {
  position: relative;
  float: right;
}
.sb-header-top2 .sb-dec-top-ad-post a {
  background: #fff;
  color: #232323;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 15px;
}
.sb-header-top2 .sb-dec-top-ad-post a i {
  color: #ffc220;
}
.sb-header-top2 .sb-dec-top-ad-post a i {
  margin-right: 5px;
}
.sb-header-5 ul.list-sign-in li a.btn {
  width: 100%;
  border-radius: 40px;
  padding: 10px 30px;
}
.sb-header-5 .sign-in-up ul.list-sign-in li a.login-user {
  color: #242424;
}
.sb-header-5 .sign-in-up ul.list-sign-in li a.login-user i,
.sb-header-8 .sign-in-up ul.list-sign-in li a.login-user i {
  color: #242424;
  background: #34bf52;
  padding: 12px 14px;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  position: relative;
  top: 1px;
}
.sb-header-5 .sign-in-up ul.list-sign-in li.register-me a i {
  border: 1 px solid;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  color: #ffffff;
  background: #2457cf;
  border-radius: 50%;
  text-align: center;
  border-color: #2457cf;
  padding: 10px 12px;
  font-weight: 400;
  box-shadow: 1px 2px 10px 1px rgb(0 0 0 / 20%);
  line-height: 18px;
  vertical-align: middle;
}
.sb-header-5 .sign-in-up ul.list-sign-in li.login-me a i {
  border: 1px solid;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  color: #ffffff;
  background: #6fbf17;
  border-radius: 50%;
  text-align: center;
  padding: 10px 12px;
  border-color: #6fbf17;
  line-height: 18px;
  vertical-align: middle;
}
.sb-header-6 .sign-in-up ul.list-sign-in li.login-me a i {
  border: 1px solid;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  color: #ffffff;
  background: #6fbf17;
  border-radius: 50%;
  text-align: center;
  padding: 10px 12px;
  border-color: #6fbf17;
  line-height: 18px;
  vertical-align: middle;
}
.sb-header-6 .sign-in-up ul.list-sign-in li.user-loged-5 a i {
  border: 1px solid;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  color: #ffffff;
  background: #6fbf17;
  border-radius: 50%;
  text-align: center;
  padding: 10px 14px;
  border-color: #6fbf17;
  line-height: 18px;
  vertical-align: middle;
}
.prop-estate-select-categories {
  text-align: center;
}
.sb-header-6 .sign-in-up ul.list-sign-in li.register-me a i {
  border: 1 px solid;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  color: #ffffff;
  background: #2457cf;
  border-radius: 50%;
  text-align: center;
  border-color: #2457cf;
  padding: 10px 12px;
  font-weight: 400;
  box-shadow: 1px 2px 10px 1px rgb(0 0 0 / 20%);
  line-height: 18px;
  vertical-align: middle;
}
.sb-header-top5 .sb-sprt-top-bar {
  background-color: #ffffff;
  padding: 10px 0px;
}
.sb-header-top5 .sb-sprt-top-sign {
  float: right;
  position: relative;
}
.sb-header-6 .header-6-form input {
  height: 46px;
  margin-top: 22px;
}
.sb-header-6 .header-6-form {
  position: relative;
}
.sb-header-6 .header-6-form button.btn {
  position: absolute;
  right: 0;
  top: 0;
}
.sb-header-6 .sign-in-up ul.list-sign-in li.ad-post-btn a i,
.sb-header-8 .sign-in-up ul.list-sign-in li.ad-post-btn a i {
  background-color: #ff0000;
  border: none;
  padding: 10px 14px;
  line-height: 18px;
  vertical-align: middle;
  border-radius: 50%;
  color: #fff;
  font-weight: 400;
}
.form-group.title-search-input {
  position: relative;
}
.sb-header.sb-header-7 ul.dropdown-user-login,
.sb-header.sb-header-6 ul.dropdown-user-login {
  width: 230px;
}
.sb-header.sb-header-7 ul.dropdown-user-login {
  margin: 22px auto;
}
.sb-header.sb-header-7 ul.dropdown-user-login li,
.sb-header.sb-header-6 ul.dropdown-user-login li {
  padding: 0px 10px !important;
}
.form-group.title-search-input .adforest-search-spinner {
  position: absolute;
  top: 50px;
  right: 10px;
  color: black;
}
.sb-header.sb-header-6 ul.dropdown-user-login {
  margin: 19px -70px;
}
.sb-header.sb-header-6 .sb-menu.menu-6 > ul > li > a {
  /* padding: 0 8px;  */
}
.sb-header-6 .sign-in-up ul.list-sign-in li,
.sb-header-7 .sign-in-up ul.list-sign-in li {
  display: inline-block;
  padding: 15px 0px;
}
.sb-header-6 .sign-in-up ul.list-sign-in li.ad-post-btn a:hover,
.sb-header-6 .sign-in-up ul.list-sign-in li.ad-post-btn a {
  background-color: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}
.sb-header.sb-header-10.sticky {
  top: 0;
}
.submit-categories .btn-primary:hover {
  border: 0;
}
.sb-header-7 .sign-in-up ul.list-sign-in li.login-me a i,
.sb-header-8 .sign-in-up ul.list-sign-in li.login-me a i {
  border: 1px solid;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  color: #ffffff;
  background: #6fbf17;
  border-radius: 50%;
  text-align: center;
  padding: 10px 12px;
  border-color: #6fbf17;
  line-height: 18px;
  vertical-align: middle;
}
.sb-header-7 .sign-in-up ul.list-sign-in li.user-loged-5 a i,
.sb-header-8 .sign-in-up ul.list-sign-in li.user-loged-5 a i {
  border: 1px solid;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  color: #ffffff;
  background: #6fbf17;
  border-radius: 50%;
  text-align: center;
  padding: 10px 12px;
  border-color: #6fbf17;
  line-height: 18px;
  vertical-align: middle;
}
.sb-header-7 .sign-in-up ul.list-sign-in li.register-me a i,
.sb-header-8 .sign-in-up ul.list-sign-in li.register-me a i {
  border: 1 px solid;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  color: #ffffff;
  background: #2457cf;
  border-radius: 50%;
  text-align: center;
  border-color: #2457cf;
  padding: 10px 12px;
  font-weight: 400;
  box-shadow: 1px 2px 10px 1px rgb(0 0 0 / 20%);
  line-height: 18px;
  vertical-align: middle;
}
.sb-header-7 .header-6-form input {
  height: 46px;
  margin-top: 20px;
}
.sb-header-7 .header-6-form {
  position: relative;
}
.sb-header-7 .header-6-form button.btn {
  position: absolute;
  right: 0;
  top: 0;
}
@media (min-width: 1200px) {
  .sb-header.sb-header-7 .sb-menu > ul > li > a {
    position: relative;
    height: 90px;
    line-height: 90px;
    box-sizing: border-box;
    white-space: nowrap;
    padding: 0 7px;
  }
}
.sb-header-10 .sign-in-up ul.list-sign-in li.ad-post-btn a i,
.sb-header-7 .sign-in-up ul.list-sign-in li.ad-post-btn a i {
  background-color: #ff0000;
  border: none;
  padding: 10px 12px;
  line-height: 18px;
  vertical-align: middle;
  border-radius: 50%;
  color: #fff;
  font-weight: 400;
}
.header-3 .sb-menu ul li.dropdown_menu > a > span:before {
  border-color: #ffffff;
}
.sb-header.sb-header-13.sticky .sign-in-up ul.list-sign-in li {
  padding: 12px 8px;
}
.sb-header-13.sticky ul.list-sign-in li.register-me a,
.sb-header-13.sticky ul.list-sign-in li.login-me a {
  color: #232323;
}
.sb-header-7 .sign-in-up ul.list-sign-in li {
  display: inline-block;
  padding: 25px 0px;
}
.sb-header-7 .sign-in-up ul.list-sign-in li.ad-post-btn a {
  background-color: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}
.sb-header-13 ul.list-sign-in li.ad-post-btn a {
  border-radius: 0;
}
.sb-header-13 .menu_black ul.menu-links li a,
.sb-header-10 .menu_black ul.menu-links li a,
.sb-header-8 .menu_black ul.menu-links li a,
.sb-header-5 .menu_black ul.menu-links li a {
  color: #242424;
}
.sb-header-10 .sb-menu.menu_black ul li.dropdown_menu a span:before,
.header-opacity-on .sb-menu.menu_black ul ul li.dropdown_menu a span:before,
.sb-header-13 .sb-menu.menu_black ul li.dropdown_menu a span:before,
.header-opacity-on .sb-menu.menu_black ul ul li.dropdown_menu a span:before,
.sb-header-5 .sb-menu.menu_black ul li.dropdown_menu a span:before,
.header-opacity-on .sb-menu.menu_black ul ul li.dropdown_menu a span:before,
.sb-header-8 .sb-menu.menu_black ul li.dropdown_menu a span:before,
.header-opacity-on .sb-menu.menu_black ul ul li.dropdown_menu a span:before {
  border-color: #242424;
}
.sb-header-top4.sb-header-top-11 {
  position: relative;
}
.sb-header-top-11 .sb-bk-clr-scheme .sb-sprt-top-bar {
  background-color: #f5f5f5;
  padding: 0;
}
.sb-header-top-11 .sb-bk-clr-scheme .sb-sprt-top-bar .sb-sprt-top-scl {
  margin-top: 15px;
}
.sb-header-top-11
  .sb-bk-clr-scheme
  .sb-sprt-top-bar
  .sb-sprt-top-scl
  .sb-spt-alignment
  li {
  margin-right: 10px;
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
.sb-header-top-11
  .sb-bk-clr-scheme
  .sb-sprt-top-bar
  .sb-sprt-top-scl
  .sb-spt-alignment
  li
  a
  i {
  color: #232323;
  font-size: 16px;
}
.sb-header-top-11 .sb-sprt-top-sign {
  float: right;
  position: relative;
}
.sb-header-top-11 .sb-sprt-top-sign .sb-spt-links {
  margin-top: 12px;
}
.sb-header-top-11 .sb-sprt-top-sign .sb-spt-links li {
  padding-right: 0px;
  display: inline-block;
  padding-left: 5px;
}
.sb-header-top-11 .sb-sprt-top-sign li a {
  background-color: transparent;
  color: #232323;
  font-size: 16px;
  display: block;
}
.sb-header-top-11 .sb-dec-top-ad-post {
  position: relative;
  float: right;
}
.sb-header-top-11 .sb-dec-top-ad-post a {
  background: #fff;
  color: #232323;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 15px;
}
.sb-header-top-11 .sb-dec-top-ad-post a i {
  color: #ffc220;
  margin-right: 10px;
}
.sb-header-11 {
  background: #ffc220;
}
.sb-header-11 .sb-menu ul li a {
  line-height: 45px;
  color: #ffffff;
}
.sb-header.header-3-old .sb-menu ul li.dropdown_menu > a > span:before,
.sb-header-11 .sb-menu ul li.dropdown_menu > a > span:before {
  color: #ffffff;
  border-color: #fff;
}
.sb-modern-header-11 form .sb-bk-new-srch-area input {
  width: 100%;
  padding: 0 18px;
  border-radius: 30px;
  border: none;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
  height: 50px;
  position: relative;
}
.sb-modern-header-11 .sb-bk-submit-form button {
  padding: 11px 40px;
  border-radius: 30px;
  border: none;
  color: #ffffff;
  position: absolute;
  top: 0;
  right: 0;
}
.sb-header-9 .sb-menu > ul > li > a {
  /*    padding: 0 13px; */
}
.sb-modern-header-11 form .sb-bk-new-srch-area {
  position: relative;
}
.sb-modern-header-11 .sb-bk-search-area .sb-bk-side-btns .sb-bk-srch-links {
  float: left;
  margin-top: 5px;
  z-index: 999;
  position: relative;
}
.sb-modern-header-11
  .sb-bk-search-area
  .sb-bk-side-btns
  .sb-bk-srch-links
  .sb-bk-srch-contents
  li:first-child {
  border: 1px solid #ffc220;
}
.sb-modern-header-11
  .sb-bk-search-area
  .sb-bk-side-btns
  .sb-bk-srch-links
  .sb-bk-srch-contents
  li:first-child {
  border-radius: 20px;
  margin-right: 10px;
}
.sb-modern-header-11 .sb-bk-srch-links .list-inline.sb-bk-srch-contents li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
.sb-modern-header-11 .sb-bk-srch-links .list-inline.sb-bk-srch-contents li a {
  color: #ffc220;
}
.sb-modern-header-11
  .sb-bk-search-area
  .sb-bk-side-btns
  .sb-bk-srch-links
  .sb-bk-srch-contents
  li
  i {
  padding: 10px 5px;
  font-size: 14px;
}
.sb-modern-header-11
  .sb-bk-search-area
  .sb-bk-side-btns
  .sb-bk-srch-links
  .sb-bk-srch-contents
  .sb-bk-absolute {
  background: #ffc220;
}
.sb-modern-header-11
  .sb-bk-search-area
  .sb-bk-side-btns
  .sb-bk-srch-links
  .sb-bk-srch-contents
  .sb-bk-absolute {
  position: absolute;
  z-index: 99;
  border-radius: 50%;
  top: 0;
}
.sb-modern-header-11
  .sb-bk-search-area
  .sb-bk-side-btns
  .sb-bk-srch-links
  .sb-bk-srch-contents
  .sb-bk-absolute
  i {
  color: #fff;
}
.sb-modern-header-11
  .sb-bk-search-area
  .sb-bk-side-btns
  .dropdown-toggle.btn-default {
  border-radius: 20px;
  padding: 4px 24px;
  margin-top: 5px;
  border: 1px solid #f5f5f5;
  position: absolute;
  top: 0;
}
.sb-modern-header-11
  .sb-bk-search-area
  .sb-bk-side-btns
  .dropdown-toggle.btn-default
  .amount {
  padding-left: 20px;
}
.sb-modern-header-11.header-11 .sb-bk-search-area {
  padding: 25px 0px;
}
.sb-header-11 .menu-11 ul.drop-down-multilevel li.hoverTrigger a {
  color: #818181;
  line-height: 22px;
}
.sb-header-11 .menu-11 ul.drop-down-multilevel {
  margin-top: -40px;
}
.sb-modern-header-11 .icon-search-head {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);

  height: 50px;
  padding-left: 20px;
  color: #ffffff;
}
.sb-modern-header-11 .icon-search-head a {
  color: #fff !important;
  margin-left: -20px;
}
.sb-modern-header-11 .logo {
  text-align: start;
}
.sb-header-8 .logo a img,
.sb-modern-header-11 .logo a img {
  padding-left: 0px;
}
.sb-header.sb-header-4.sticky .list-sign-in li.ad-post-btn a.btn {
  border-radius: 0;
  line-height: 48px;
}
.sb-modern-header-11 .sb-bk-search-area .sb-bk-side-btns {
  float: right;
  margin-right: 120px;
}
.sb-header.sb-header-11 {
  z-index: 1;
}
.sb-header.sb-header-4 ul.list-sign-in li {
  padding: 0px 10px;
}
.sb-header.sb-header-4 .sign-in-up {
  float: right;
  position: absolute;
  right: -22px;
}
.sb-header.sb-header-4 .list-sign-in li.ad-post-btn a.btn {
  border-radius: 0;
  line-height: 68px;
}
.sb-header-top4.sb-header-top-11 .sb-mob-top-bar-location .sb-top-loc {
  right: auto;
  left: 0;
  height: auto;
  max-height: 400px;
  margin-top: 0;
  padding: 0;
  border-radius: 3px 3px 3px 3px;
  background: #f5f5f6;
  width: 200px;
  border: 0px;
}
.sb-header-top4.sb-header-top-11 .sb-mob-top-bar-location .sb-top-loc li {
  border-left: medium none;
  display: block;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  border-bottom: 1px solid #ddd;
  margin-right: 0px;
}
.sb-header-top4.sb-header-top-11 .sb-mob-top-bar-location .sb-top-loc li a {
  color: #232323;
  width: 100%;
  font-size: 14px;
  text-transform: uppercase;
  display: block;
  padding: 8px 15px;
  font-weight: 600;
}
.sb-header-top4.sb-header-top-11 .sb-mob-top-bar-location .sb-top-loc li a img {
  margin-right: 5px;
  margin-left: 0px;
}
.sb-header-top4.sb-header-top-11
  .sb-mob-top-bar-location
  .sb-location-selector
  .loc {
  color: #242424 !important;
}
.sb-modern-header-11.header-11 .sb-bk-search-area .sb-bk-top-accesories {
  padding: 20px;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.sb-modern-header-11.header-11 .sb-bk-top-accesories .bk-top-details h3 {
  text-transform: capitalize;
  font-size: 18px;
}
.sb-modern-header-11
  .sb-bk-search-area
  .sb-bk-side-btns
  .dropdown-toggle.btn-default
  .amount:hover {
  color: #212425;
}
.sb-modern-header-11.header-11 .dropdown-toggle::after:hover {
  color: #212425;
}
.sb-modern-header-11.header-11 .sb-bk-search-area .sb-bk-top-accesories a {
  color: #777;
}
.sb-modern-header-11.header-11 .sb-bk-search-area .sb-bk-top-accesories i {
  font-size: 15px;
  margin-right: 10px;
}
.sb-modern-header-11.header-11 .sb-bk-search-area .sb-bk-bottom-box {
  padding: 20px;
  min-width: 334px;
}
.sb-modern-header-11.header-11
  .sb-bk-search-area
  .sb-bk-bottom-box
  .sb-bk-top-area {
  float: left;
  margin-right: 15px;
}
.sb-modern-header-11.header-11 .sb-bk-search-area .sb-bk-top-order span {
  font-size: 18px;
  color: #232323;
  font-weight: 500;
}

.sb-modern-header-11.header-11 .sb-bk-search-area .sb-bk-top-content {
  margin-top: 10px;
}
.sb-modern-header-11.header-11
  .sb-bk-search-area
  .sb-bk-bottom-box
  .sb-bk-top-content
  .btn-theme {
  padding: 5px 18px;
  border-radius: 20px;
  font-size: 14px;
}
.header-11-cats {
  margin: 0;
  padding: 0;
  display: block;
  float: left;
  position: relative;
}
.sb-header-11 .header-11-cats li.menu-separator ul li a {
  color: #818181 !important;
}
.sb-header-11 .header-11-cats li.menu-separator ul {
  margin-top: 14px !important;
}
.sb-header-11 .header-11-cats li.menu-separator ul li a {
  color: #818181 !important;
}
.sb-header.sb-header-6 .sign-in-up {
  margin-top: 0px;
}
.sb-header.sb-header-6 .logo img,
.sb-header.sb-header-7 .logo img {
  padding-top: 0;
}
.sb-header.sb-header-6.sticky .logo img {
  padding-top: 10px;
}
.sb-header-11 .header-11-cats li.menu-separator ul li {
  padding: 10px 20px;
}
.sb-header-11 .header-11-cats li.menu-separator > a .book-menu-list-items {
  padding: 0;
  display: inline-block;
}
.sb-header-11 .header-11-cats a .book-menu-list-items i.fa-bars {
  position: relative;
  left: auto;
  margin-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0 20px;
  font-weight: 400;
}
.sb-header-11 .header-11-cats li.menu-separator ul.dropdown-menu {
  left: 0;
  right: auto;
  margin: 0;
  border-radius: 0;
  height: auto;
  max-height: 300px;
  overflow-x: hidden;
  border: none;
  min-width: 230px;
}
.sb-header-11 .header-11-cats li.menu-separator .dropdown-menu > li > a {
  padding: 10px 20px;
  font-size: 16px;
}
.sb-modern-header-11.header-11 .sb-bk-search-area .sb-bk-top-order span {
  font-size: 15px;
  color: #232323;
  font-weight: 500;
}
.sb-modern-header-11.header-11 .woocommerce-Price-currencySymbol {
  display: inline-block !important;
}
.sb-modern-header-11.header-11 .sb-bk-search-area .sb-bk-top-content {
  margin-top: 10px;
}
.sb-modern-header-11 .mega-menu-container ul li a {
  color: #818181;
  line-height: 20px;
}
@media (min-width: 1200px) {
  .sb-header-11 .sb-header-container {
    height: 50px;
  }
}
@media (min-width: 1200px) {
  .col-lg-offset-3 {
    margin-left: 25%;
  }
}
.found-featured.featured-ribbon {
  height: auto;
}
.sb-header-10 .sign-in-up ul.list-sign-in li.ad-post-btn a i {
  display: none;
}
.pet-hero-balck #intro-hero:after {
  content: "";
  background: transparent;
}
.pet-hero-balck #intro-hero .hero-title {
  color: #242424;
}
.pet-hero-balck #intro-hero .ads-search-heading h1 {
  color: #242424;
  line-height: 60px;
}
.pet-hero-balck #intro-hero .hero-tagline {
  color: #242424;
}
.pet-hero-balck #intro-hero {
  height: 800px;
  padding-bottom: 150px;
  padding-top: 150px;
}
.featured-slider.owl-theme .owl-nav [class*="owl-"],
.featured-slider-1.owl-theme .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  background: #fff;
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  color: #333;
  height: 40px;
  width: 40px;
  border: 1px solid #777;
}
.featured-slider.owl-theme .owl-nav .owl-next,
.featured-slider-1.owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  z-index: 9;
  right: 0px;
}
.featured-slider.owl-theme .owl-nav .owl-prev,
.featured-slider-1.owl-theme .owl-nav .owl-prev {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  z-index: 9;
  left: 0px;
}
.promotional_slider .feature-section .feature-description {
  background: #fff;
}
.sb-header.sb-header-1 {
  z-index: 1;
}
.sb-header-top1 .sb-top-right ul li .sb-mailbox {
  left: auto;
  right: 0;
  margin-top: 0;
  padding: 0;
  border-radius: 3px 3px 3px 3px;
  overflow: hidden;
  min-width: 320px;
  max-width: 320px;
  top: 35px;
}
.sb-header-top1 .sb-top-right ul li .sb-mailbox li {
  width: 100%;
  border-bottom: 1px solid #f3f3f3;
  line-height: 35px;
  background: #fff;
  text-align: start;
  height: auto;
  padding: 0;
}
.dec-location .owl-carousel .owl-stage-outer {
  padding-bottom: 45px;
}
.sb-header-top1.white-header .sb-message-center .sb-mail-contnet h5 {
  font-weight: 400;
  color: #818181;
  text-transform: capitalize;
  font-size: 14px;
}

.notification-history .message-center .sb-mail-contnet h5 {
  font-weight: 400;
  color: #818181;
  text-transform: capitalize;
  font-size: 14px;
}

.sb-header-top1.white-header .dropdown-toggle::after {
  display: none;
}
.srvs-explore-section p.heading-text {
  margin-bottom: 30px;
  margin-top: -10px;
}
.custom-padding.gray.gray .heading-panel h2 {
  padding-top: 0px;
}
.custom-padding.gray.gray .heading-panel p {
  margin-top: -10px;
  margin-bottom: 30px;
}
li.p-relative {
  position: relative;
}
.sb-header-top5 .sb-sprt-top-sign .sb-notify .point {
  right: 10px;
  top: -5px;
}
.sb-notify .point {
  background-color: #ffc220;
  border-radius: 30px;
  height: 6px;
  position: absolute;
  right: 30px;
  top: 25px;
  width: 6px;
}
.sb-header.sb-header-7.sticky {
  top: 90px;
}
.sb-header-7.sticky .header-6-form input {
  margin-top: 10px;
}
.sb-header.sb-header-7 .sb-notify .point {
  right: 22px;
  top: 12px;
}
.sb-header-8 .sb-notify .point {
  right: 20px;
  top: 20px;
}
.sb-header-8.sticky .sign-in-up ul.list-sign-in li {
  padding: 8px 0px;
}
.sb-header-8.sticky .sb-notify .point {
  top: 4px;
}
.sb-header-8 li.ad-post-btn a {
  background: transparent;
  border: 0;
  padding-left: 0;
  box-shadow: none;
}
.sb-header.sb-header-8.sticky {
  top: 0px;
}
.sb-header.sb-header-7.sticky .sb-notify .point {
  top: 4px;
}
ul.drop-down-multilevel li {
  padding: 5px 10px;
}
.sb-header-7.sticky .sign-in-up ul.list-sign-in li {
  padding: 16px 0px;
}
.sb-header-top1.header-classy-header .flo-right .sb-notify .point,
.sb-header-top1.transparent-3-header .flo-right .sb-notify .point,
.sb-header-top1.transparent-2-header .flo-right .sb-notify .point,
.sb-header-top1.transparent-header .flo-right .sb-notify .point,
.sb-header-top1.with_ad-header .flo-right .sb-notify .point,
.sb-header-top1.black-header .flo-right .sb-notify .point,
.sb-header-top1.white-header .flo-right .sb-notify .point {
  border-radius: 30px;
  height: 6px;
  position: absolute;
  right: 15px;
  top: 0px;
  width: 6px;
}

.notification-history .notification-heading .text-muted {
  margin-left: 10px;
}
.sb-header-top1.white-header
  .sb-mob-top-bar-location
  .sb-location-selector
  a
  img {
  margin-left: 10px;
  margin-top: 8px;
}
.sb-header-top1.white-header
  .flo-right
  ul.socials-links.top-bar-social
  li:hover {
  background: transparent;
}
.sb-header-top1.header-classy-header ul.list-unstyled.list-inline.flo-left li,
.sb-header-top1.transparent-3-header ul.list-unstyled.list-inline.flo-left li,
.sb-header-top1.transparent-2-header ul.list-unstyled.list-inline.flo-left li,
.sb-header-top1.transparent-header ul.list-unstyled.list-inline.flo-left li,
.sb-header-top1.with_ad-header ul.list-unstyled.list-inline.flo-left li,
.sb-header-top1.black-header ul.list-unstyled.list-inline.flo-left li,
.sb-header-top1.white-header ul.list-unstyled.list-inline.flo-left li {
  margin-bottom: 0 !important;
}
.sb-header-top1.header-classy-header
  .sb-top-left
  .sb-mob-top-bar-location
  .sb-location-selector
  a
  img,
.sb-header-top1.transparent-3-header
  .sb-top-left
  .sb-mob-top-bar-location
  .sb-location-selector
  a
  img,
.sb-header-top1.transparent-2-header
  .sb-top-left
  .sb-mob-top-bar-location
  .sb-location-selector
  a
  img,
.sb-header-top1.with_ad-header
  .sb-top-left
  .sb-mob-top-bar-location
  .sb-location-selector
  a
  img,
.sb-header-top1.black-header
  .sb-top-left
  .sb-mob-top-bar-location
  .sb-location-selector
  a
  img,
.sb-header-top1.transparent-header
  .sb-top-left
  .sb-mob-top-bar-location
  .sb-location-selector
  a
  img {
  width: auto;
  margin-left: 10px;
}
header.header-search.sb-header-2 {
  padding: 25px 0px;
}
.header-search.sb-header-2 .sign-in-up .list-sign-in li a.btn.btn-theme {
  border-radius: 0;
}
.sb-header-3-old .header-3-post a {
  border-radius: 0;
}
.sb-header-3-old .header-3-post a i {
  margin-right: 5px;
}
.sb-header-6 .sb-notify .point {
  background-color: #ffc220;
  border-radius: 30px;
  height: 6px;
  position: absolute;
  right: 23px;
  top: 15px;
  width: 6px;
}
.sb-header-9 .sb-notify .point {
  background-color: #ffc220;
  border-radius: 30px;
  height: 6px;
  position: absolute;
  right: 21px;
  top: 25px;
  width: 6px;
}
.sb-header.sb-header-9.sticky {
  z-index: 9999;
}
.sb-header-5 .sign-in-up ul.list-sign-in li {
  padding: 15px 5px;
}
.sb-header-9.sticky .sb-notify .point {
  background-color: #ffc220;
  border-radius: 30px;
  height: 6px;
  position: absolute;
  right: 21px;
  top: 15px;
  width: 6px;
}
.sb-header.sb-header-5 .sb-notify .point {
  top: 10px;
  right: 28px;
}
.sb-header.sb-header-9.sticky {
  top: 80px;
}
.sb-header-6.sticky .sign-in-up ul.list-sign-in li {
  display: inline-block;
  padding: 5px 0px;
}
.sb-header-6.sticky .sb-notify .point {
  top: 6px;
}
.sb-header-6.sticky .header-6-form input {
  margin-top: 12px;
}
.sb-notify .point:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 15px;
  height: 15px;
  background: #ffc220;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
.list-sign-in li.sb-bg-blue.p-relative i {
  color: #242424;
  background: #2457cf;
  padding: 10px 12px;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  position: relative;
}
.sb-header-top1.with_ad-header {
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}
.sb-header-top1.with_ad-header .sb-top-left ul li a {
  color: #818181;
}
.sb-header-top2
  .sb-dec-top-bar
  .sb-mob-top-bar-location
  .sb-location-selector
  .loc {
  color: #ffffff !important;
}
.sb-header-top2
  .sb-dec-top-bar
  .sb-mob-top-bar-location
  .sb-location-selector
  a
  img {
  margin-left: 10px;
}
.sb-header-top1.with_ad-header
  .sb-top-left
  .sb-mob-top-bar-location
  .sb-location-selector
  .loc {
  color: #777777 !important;
}
.sb-header-top2 .sb-dec-top-bar .sb-top-bar-social-icons .sb-top-loc li a {
  color: #777777;
}
.sticky ul.dropdown-user-login {
  margin: 19px auto;
}
ul.dropdown-menu.pull-right.sb-top-loc.ps.show li img {
  margin-right: 10px;
}
ul.dropdown-menu.pull-right.sb-top-loc.ps.show li a {
  color: #777;
  font-size: 14px;
  font-weight: 500;
}

.desc-points img {
  display: none;
}

.sb-header.sb-header-11 nav.sb-menu.menu-11 {
  float: right;
}
ul.dropdown-menu.pull-right.sb-top-loc.ps.show {
  margin-top: 17px !important;
  width: 190px;
  z-index: 999999;
}
.sb-header-top5 ul.dropdown-menu.pull-right.sb-top-loc.ps.show li {
  padding: 5px 0px;
}
.sb-header-top5 .sb-sprt-top-bar .sb-sprt-top-scl ul.list-inline li a img {
  margin-left: 8px;
  width: 25px;
}
.sb-header-top5 ul.dropdown-menu.pull-right.sb-top-loc.ps.show {
  margin-top: 17px !important;
  width: 190px;
  z-index: 999999;
  padding: 20px;
  margin-top: 15px !important;
}
.sb-header-top2
  .sb-dec-top-bar
  .sb-mob-top-bar-location
  .sb-location-selector
  ul
  li
  a
  img {
  margin-left: 0;
}
.sb-header-top2
  .sb-dec-top-bar
  .sb-mob-top-bar-location
  .sb-location-selector
  ul
  li
  a
  img
  span {
  font-size: 14px;
}
.sb-header-top2
  .sb-dec-top-bar
  .sb-mob-top-bar-location
  .sb-location-selector
  a.top-loc-selection
  img {
  margin-right: 10px;
}
.sb-header-top2 .sb-dec-top-bar .sb-top-bar-social-icons .sb-top-loc li {
  margin-left: 15px;
}
.sb-header.sb-header-9 {
  z-index: 1;
}
.sb-header-top1.with_ad-header ul.list-unstyled.flo-left li {
  margin-bottom: 0px !important;
}
.sb-header-top1.with_ad-header
  .sb-top-left
  .sb-mob-top-bar-location
  .sb-location-selector
  a
  img {
  margin-top: 4px;
  margin-right: 10px;
}
.sb-header-top1.with_ad-header .flo-right .socials-links.top-bar-social li a {
  color: #818181;
}
.sb-header-top1.with_ad-header .flo-right .socials-links.top-bar-social li {
  background: transparent;
}
.sb-header-top1 .sb-top-right ul li .sb-mailbox li .sb-drop-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #2b2b2b;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 20px 15px;
}
.sb-header-top1 .sb-top-right ul .sb-notify-div .sb-message-center a {
  color: #2b2b2b;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid rgba(120, 130, 140, 0.13);
  display: block;
  padding: 9px 15px;
}
.sb-header-top1 .sb-top-right ul .sb-notify-div .sb-message-center .user-img {
  float: left;
  margin: 0 10px 15px 0;
  position: relative;
  width: 50px !important;
}
.sb-header-top1
  .sb-top-right
  ul
  .sb-notify-div
  .sb-message-center
  .user-img
  img {
  width: 100%;
}

/* user mail notification css */ 
.notification-history .notification-heading {
  position: relative;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 48px;
}
.notification-history .notification-heading:after {
  content: "";
  height: 4px;
  width: 75px;
  background-color: #ffC220;
  position: absolute;
  bottom: 0;
  left: 0;
}
.notification-history .message-center a {
  color: #2b2b2b;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
}

.notification-history .message-center .user-mail-content .content-box {
  display: flex;
}

.notification-history .message-center .user-img {
  margin: 0 10px 0px 0;
  position: relative;
  width: 50px !important;
}
.notification-history .message-center .user-img img {
  width: 100%;
  border-radius: 4px;
}
.notification-history .message-center .mail-content {
  width: calc(100% - 60px);
}
.notification-history .message-center .mail-content h5 {
  color: #ffC220;
}

.notification-history .drop-title {
    margin-bottom: 20px;
}
.message-center .user-mail-content {
  padding: 20px 25px;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  border-left: 3px solid #ffC220;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 20px;
}
.message-center .user-mail-content .post-image {
  width: 50px;
}
.message-center .user-mail-content .post-image img {
  width: 100%;
  border-radius: 4px;
}


.sb-header-top1 .sb-top-right ul li i {
  margin-right: 5px;
  font-size: 14px;
}
.list-sign-in li.p-relative i {
  line-height: 20px;
  vertical-align: middle;
  color: #232323;
  font-size: 16px;
  position: relative;
  margin: 10px 10px;
}
.sb-header-top1.white-header
  .sb-mob-top-bar-location
  ul.dropdown-menu.pull-right.sb-top-loc
  li
  img {
  margin-right: 10px !important;
  margin-top: 6px !important;
}
.sb-header.sb-header-1.sticky {
  z-index: 9999;
}
.header-search.sb-header-3 .looking-input {
  width: 98%;
}
.sb-header.header-2 .mega-menu.sb-menu {
  margin-left: -12px;
}
.sb-header-1.sticky .sb-header-top1.header-classy-header,
.sb-header-10.sticky .sb-header-top1.transparent-3-header,
.sb-header.sb-header-1.sticky .white-header {
  display: none;
}
.sb-header.header-transparent.sb-header-10.viewport-lg.header-transparent-on {
  border-bottom: 1px solid #7f7e7e;
}
.sb-header-10.sticky .sign-in-up {
  margin-top: 0px;
}
.sb-top-header-3 .sb-top-header .mega-menu.menu-2 .menu-list-items {
  border-bottom: 1px solid;
}
.sb-header.header-2.viewport-lg .sb-menu ul li.dropdown_menu > a > span:before {
  border-color: #fff;
  content: "";
}
.sb-header-top1.header-classy-header .flo-right .dropdown-toggle::after,
.sb-header-top1.transparent-3-header .flo-right .dropdown-toggle::after,
.sb-header-top1.transparent-2-header .flo-right .dropdown-toggle::after,
.sb-header-top1.transparent-header .flo-right .dropdown-toggle::after,
.sb-header-top1.with_ad-header .flo-right .dropdown-toggle::after,
.sb-header-top1.black-header .flo-right .dropdown-toggle::after {
  display: none;
}
/*----------End All Header----------*/
.ad-slider-box {
  background: #fff none repeat scroll 0 0;
  box-shadow: 2px 2px 2px 0 rgb(0 0 0 / 10%);
  color: #666;
  overflow: hidden;
  position: relative;
  padding: 15px 15px 0;
  width: 100%;
  margin-bottom: 30px;
}
.featured-slider-1.owl-theme.ad-slider-box-carousel .owl-nav [class*="owl-"] {
  border-radius: unset;
  background: #ffc220;
  color: #fff;
}
.featured-slider-1.owl-theme.ad-slider-box-carousel .owl-nav .owl-prev {
  top: -18%;
  right: 70px;
  transform: unset;
  left: unset;
}
.featured-slider-1.owl-theme.ad-slider-box-carousel .owl-nav .owl-next {
  top: -18%;
  right: 20px;
  transform: unset;
  left: unset;
}
.mob-slider-content .featured-slider-1.owl-theme .owl-nav {
  display: none;
}
.sb-short-head h2 .heading-color {
  font-size: 32px;
}
.padding-bottom-80 {
  padding-bottom: 80px;
}
.ad-price-tble .ad-pric-content {
  box-shadow: 1px 0px 20px rgb(0 0 0 / 7%);
  position: relative;
  border-radius: 20px;
  background: #fff;
  margin-bottom: 30px;
}
.sale-div {
  position: relative;
}
.sale-div .sale-text {
  position: absolute;
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
  z-index: 3;
  right: 6px;
  top: 22px;
  font-weight: bold;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  filter: DXImageTransform.Microsoft.BasicImage(rotation=3);
}
.ad-price-tble .ad-pric-content .ad-pic-style {
  background: #c21500;
  background: -webkit-linear-gradient(to right, #ffc500, #c21500);
  background: linear-gradient(to right, #ffc500, #c21500);
  position: relative;
  overflow: hidden;
}
.ad-price-tble .ad-pric-content .price-bg {
  background: url(../images/xddd.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  height: 130px;
  background-size: 100%;
}
.ad-price-tble .ad-pric-content .ad-pic-style .ad-pric-box {
  text-align: center;
  box-shadow: 1px 0px 20px rgb(0 0 0 / 7%);
  width: 60%;
  margin: 0 auto;
  margin-top: 75px;
  background-color: #fff;
  position: relative;
  padding: 15px 5px 6px 5px;
  border-radius: 12px;
}
.ad-price-tble .ad-pric-content .ad-pic-style .ad-pric-box span {
  color: #242424;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: "Quicksand", sans-serif;
}
.ad-price-tble .ad-pric-content .ad-pic-style .ad-pric-box h5 {
  color: #242424;
  font-size: 40px;
  font-weight: 600;
  margin-top: 4px;
}
.ad-price-tble .ad-pric-content .ad-pric-detail {
  margin: 0 auto;
  display: table;
  padding: 30px 0;
}
.ad-price-tble .ad-pric-content .ad-pric-detail ul li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #242424;
}
.ad-price-tble .ad-pric-content .ad-pric-detail ul li i {
  margin-right: 12px;
  font-size: 15px;
  border-right: 1px solid #a0a0a0;
  padding-right: 15px;
  line-height: 10px;
  color: #a0a0a0;
}
.ad-price-tble .ad-pric-content .ad-pric-detail ul li span {
  padding-left: 8px;
  font-weight: 700;
  color: #242424;
  font-size: 16px;
  font-family: "Quicksand", sans-serif;
}
.ad-price-tble .ad-pric-content .ad-pic-style .ad-pric-box h5::before {
  background-color: #ffc220;
  top: 1px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  width: 50px;
  margin: 0 auto;
}
.pricing.pg-classic .block {
  border: 1px solid #d4dadf;
  padding: 60px 10px;
  margin-bottom: 30px;
  text-align: center;
}
.pricing.pg-classic h3 {
  color: #232323;
  padding: 0 10px;
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: 500;
  text-transform: capitalize;
  text-align: start;
}
.pricing .featured small.sale-value del,
.pricing .featured .price,
.pricing .featured h3 {
  color: #fff !important;
}
.pricing.pg-classic a.btn i {
  padding-left: 10px;
}
.pricing.pg-classic li {
  line-height: 2.2em;
  color: #777;
}
.pricing.pg-classic .featured ul li {
  color: #fff;
}
.pricing .featured a.btn-theme {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.row.pricing.pg-classic.adforest-packages small.sale-value del {
  color: #777;
  display: block;
  font-size: 18px;
}
.pricing.pg-classic .price {
  color: #242424;
  font-size: 40px;
  margin-bottom: 15px;
  margin-top: 40px;
}
.pricing.pg-classic ul {
  font-size: 14px;
  font-weight: 400;
  list-style-type: none;
  margin: 50px 0 30px;
  padding: 0;
}
.pricing.pg-classic li {
  line-height: 2.2em;
}

.pricing.pg-classic a.btn {
  width: auto;
  padding: 20px 25px;
  border-radius: initial;
}
.pricing.style-3 {
  text-align: center;
}
.pricing.style-3 .block {
  margin-bottom: 0;
}
.pricing.style-3 .block {
  border: 1px solid #d4dadf;
  padding: 60px 10px;
}
.pricing.style-3 .selection {
  overflow: hidden;
}
.pricing.style-3 h3 {
  color: #294661;
  font-size: 30px;
  font-weight: 600;
}
.pricing.style-3 .price {
  color: #294661;
  font-size: 54px;
  margin-bottom: 15px;
  margin-top: 40px;
}
.pricing.style-3 .time {
  font-size: 14px;
  display: block;
}
.pricing.style-3 .selection {
  overflow: hidden;
  margin-bottom: 30px;
}
.pricing.style-3 .btn-theme {
  border-radius: initial;
}
.category-grid-box-1 .image img {
  width: 100%;
}
.pg-minimal .pricing-item {
  border: 7px solid #f1f1f1;
  color: #232323;
  padding: 15px 30px;
  margin-bottom: 30px;
  overflow: hidden;
  text-align: center;
}
section.srvs-great-products.no-extra {
  padding: 80px 0px;
}
.pg-minimal .pricing-item .price {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 3px;
  position: relative;
  float: left;
  width: 100%;
  margin-top: 35px;
  margin-bottom: 10px;
}
.pg-minimal .pricing-item strong {
  display: block;
  font-size: 1.2em;
  margin: 10px 0;
}
.pg-minimal .pricing-item p {
  color: #777;
}
.pg-minimal .f_custom {
  display: block;
}
.pg-minimal .pricing-item .btn {
  margin: 15px 0;
  width: 50%;
  border-radius: 0;
}
.sb-modern-sale {
  position: relative;
}
.pg-new .subscription-main-content {
  border: 1px solid #f1f1f1;
}
.pg-new .individual-section {
  background: url(../images/46.png);
  height: auto;
  padding: 25px 17px;
  background-size: cover;
}
.pg-new .total-grids {
  position: relative;
}
.pg-new .subscrpition-text-p9 {
  float: left;
}
.pg-new .subscrpition-text-p9 h4 {
  font-size: 22px;
  font-weight: 600;
  color: #232323;
  padding-top: 55px;
}
.pg-new .subscription-price {
  position: relative;
  overflow: hidden;
}
.pg-new .subscription-price {
  position: relative;
  overflow: hidden;
  padding-left: 40px;
}
.pricing_sale {
  position: relative;
}
.pricing_sale .percentsaving {
  z-index: 2;
  color: #ffffff;
  vertical-align: top;
  display: inline-block;
  padding: 1px 35px 1px;
  font-size: 12px;
  border-radius: 0px 6px 5px 0px;
  font-weight: 400;
  text-transform: uppercase;
  position: absolute;
  top: 22px;
  left: -8px;
  background-color: #d31423;
  opacity: 1;
  filter: alpha(opacity=100);
  transition: none;
}
.pg-new .sale-value del {
  font-size: 18px;
  display: block;
  color: #242424;
  margin-left: 50px;
}
.pg-new .source-content {
  position: relative;
  overflow: hidden;
  margin-top: 73px;
  text-align: center;
}
.section-padding.pg-new
  .subscription-main-content
  .total-grids
  .subscription-price
  small.sale-value:before {
  display: none;
}
.clearfix.google-map-secul#google-map-btn {
  position: absolute;
  right: 0;
  z-index: 1;
}
.pg-new .source-content ul li {
  font-size: 18px;
  line-height: 38px;
}
.pg-new .adforest-packages .price-category {
  cursor: pointer;
}
.section-padding.pg-new
  .subscription-main-content
  .individual-section
  .select-buttons {
  text-align: center;
  margin: 25px;
}
.pg-new .select-buttons .btn-primary {
  border: 1px solid #ffc220;
  background-color: #ffc220;
  color: #242424;
  width: unset;
  padding: 10px 40px;
  border-radius: 0;
}
.subscription-main-content
  .individual-section.adforest-packages
  .total-grids
  .subscription-price
  span.price {
  color: #ffffff;
  font-size: 30px;
  font-weight: 500;
}
.parallex-light::before {
  background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.pistachio-classified-pricing .bg-lighting ul li span.f_custom {
  color: #242424;
}
.ad-grid-1 .listing-bidding,
.ad-grid-2 .listing-bidding,
.ad-grid-3 .listing-bidding,
.ad-grid-4 .listing-bidding,
.ad-grid-5 .listing-bidding,
.ad-grid-7 .listing-bidding,
.ad-grid-8 .listing-bidding,
.ad-grid-9 .listing-bidding {
  position: absolute;
  bottom: 0;
  right: -6px;
  z-index: 999;
}

.main-section-bid.bidding-section-1 {
  padding: 20px 25px;
}

.ad-grid-9 .listing-bidding {
  right: 11px;
}

.ad-grid-3 .listing-bidding {
  top: -36px;
}
.ad-grid-1 .listing-bidding .column-time,
.ad-grid-2 .listing-bidding .column-time,
.ad-grid-3 .listing-bidding .column-time,
.ad-grid-4 .listing-bidding .column-time,
.ad-grid-5 .listing-bidding .column-time,
.ad-grid-7 .listing-bidding .column-time,
.ad-grid-8 .listing-bidding .column-time,
.ad-grid-9 .listing-bidding .column-time {
  width: 24%;
}
.ad-grid-10 .ads-grid-style .listing-bidding {
  position: absolute;
  bottom: -12px;
  z-index: 999;
  width: 100%;
  text-align: center;
}
.ad-grid-10 .ads-grid-style .listing-bidding .clock .column-time {
  width: 20%;
  background: #fff;
  box-shadow: 0px 10px 15px rgb(0 0 0 / 15%);
  border-radius: 5px;
  color: #232323;
  position: relative;
  overflow: hidden;
  margin-right: 5px;
}
.ad-grid-10 .ads-grid-style .listing-bidding .clock .bidding_timer {
  font-size: 20px;
  height: 30px;
  width: 40px;
  color: #232323;
  line-height: 38px;
  background: #fff;
}
.ad-grid-10 .ads-grid-style .listing-bidding .clock .column-time .text {
  background-color: #f5f5f5;
  text-transform: uppercase;
  color: #242424;
  font-size: 12px;
}
.pistachio-classified-grid {
  padding-bottom: 50px !important;
}
.shop-great-products.shop-layout-2.custom-padding {
  background: #f3f3f5;
}
.shop-main-section {
  border: 1px solid #f7f7f7;
  box-shadow: 0px 2px 6px 0px #cccc;
  margin-bottom: 25px;
  position: relative;
}
.shop-products {
  background-color: #f9f9f9;
  text-align: center;
}
.shop-main-title-area {
  position: absolute;
  top: -4px;
  width: 100%;
  left: -4px;
}
.shop-new-product-area {
  background: url(../images/4x.png);
  height: 60px;
  background-repeat: no-repeat;
  padding: 0 2px;
}
.shop-main-title-area span {
  color: #ffffff;
  transform: rotate(-45deg);
  display: inline-block;
  float: left;
  padding: 1.8px;
}
.shop-text-section {
  padding: 15px 20px;
  background-color: #fff;
}
.shop-lates-products a {
  font-size: 14px;
  color: #777;
}
.shop-categories h5 {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 2px;
}
.shop-old-price {
  float: left;
  margin-right: 10px;
}
.shop-new-price span {
  font-weight: 600;
  color: #f58936;
  font-size: 18px;
}
.shops-cart {
  position: absolute;
  right: 20px;
  bottom: 14px;
}
.shop-products img.attachment-adforest-shop-home {
  max-width: 100%;
}
.shop-latest-price .shop-old-price strike {
  color: #777;
}
.sigle-clients-brand a {
  border: 1px solid #ddd;
  display: block;
  opacity: 0.5;
  padding: 20px;
}
.shop-layout-2 .shops-cart a {
  position: absolute;
  right: 0px;
  bottom: 5px;
  background-color: #ffc220;
  color: #fff;
  border-radius: 20px;
  padding: 4px 10px;
  display: none;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.shop-layout-2 .shop-main-section:hover .shops-cart a {
  display: block;
  color: #ffffff;
}
.dec-latest-products-s .owl-nav .owl-prev {
  position: absolute;
  left: -5%;
  top: 21%;
  background: #ffffff;
  border: 1px solid #ffc220;
  height: 40px;
  width: 40px;
  color: #242424;
  border-radius: 50%;
}
.dec-latest-products-s .owl-nav .owl-next {
  position: absolute;
  right: -5%;
  top: 21%;
  background: #ffffff;
  border: 1px solid #ffc220;
  height: 40px;
  width: 40px;
  color: #242424;
  border-radius: 50%;
}
.srvs-providers .srvs-prov-text h4::before {
  bottom: -15px;
}
.srvs-providers .srvs-prov-text h4::after {
  bottom: -22px;
}
.dec-latest-products-s .owl-dots {
  display: none;
}
section.srvs-providers {
  padding-bottom: 50px;
}
section.custom-padding.latest-blog.bg-gray {
  background: #fff;
}
.vc_col-has-fill > .vc_column-inner,
.vc_row-has-fill
  + .vc_row-full-width
  + .vc_row
  > .vc_column_container
  > .vc_column-inner,
.vc_row-has-fill + .vc_row > .vc_column_container > .vc_column-inner,
.vc_row-has-fill > .vc_column_container > .vc_column-inner {
  padding-top: 0px !important;
}
.vc_custom_1550059940403 {
  margin-top: -60px !important;
}
.description-animated-section .user_ratting_input .rating-container .star {
  font-size: 20px;
}
.description-animated-section .rating-animate .filled-stars span.star i {
  font-size: 20px;
}
.description-animated-section .rating-container .caption .label {
  font-size: 12px;
}
.description-animated-section .rating-container.rating-xs.rating-animate {
  padding-bottom: 15px;
  padding-left: 6px;
}
/*---------SELLER---------*/
.adforest-user .bg-autoh2 {
  position: relative;
  border: 1px solid #ebebeb;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background-color: #fff;
}
.adforest-user .theme-custom-ribbon {
  z-index: 2;
  color: #ffffff;
  vertical-align: top;
  display: inline-block;
  padding: 0px 14px 0px;
  font-size: 12px;
  border-radius: 0px 6px 5px 0px;
  font-weight: 400;
  text-transform: uppercase;
  position: absolute;
  top: 22px;
  left: -8px;
  background-color: #d31423;
  opacity: 1;
  filter: alpha(opacity=100);
  transition: none;
}
.adforest-user .theme-custom-ribbon::before {
  content: " ";
  position: absolute;
  left: 0px;
  bottom: -9px;
  display: block;
  height: 9px;
  width: 8px;
  z-index: 1;
  background: url(../images/fold.png) no-repeat 100% 100%;
}
.adforest-user .bg-autoh2 .upper-contain {
  padding: 30px 20px;
}
.adforest-user .seller-thumb-img {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}
.adforest-user .seller-thumb-img > a img {
  width: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid rgba(128, 128, 128, 0.2);
  width: 100px;
  height: 100px;
}
.adforest-user .all-content-area {
  position: relative;
  margin-top: 20px;
}
.adforest-user .bg-autoh2 h2 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}
.adforest-user .all-content-area h2 a {
  color: #20292f;
}
.adforest-user .bg-autoh2 p:not(:last-child) {
  margin-bottom: 5px;
  color: #777;
}
.upper-contain i.fas.fa-star.color {
  color: #ffc220;
}
.upper-contain i.fas.fa-star {
  color: #dcdce6;
}
.sb-header ul.menu-links li a span.label.ml-10 {
  padding: 5px;
  font-size: 12px;
  color: #fff;
  border-radius: 0.25em;
}
.adforest-user .rating-avg {
  border-radius: 4px;
  font-size: 12px;
  line-height: 15px;
  font-weight: 400;
  padding: 5px 7px;
  position: relative;
}
.pro-response-img img {
  width: 80px;
  height: 80px;
}
.adforest-user .bg-autoh2 h2.m-2 {
  margin: 0 !important;
}
.adforest-user .bg-autoh2 .listing-owner-social {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 12px;
  border-top: none;
  margin: 0 auto;
  align-content: center;
  justify-content: center;
}
.adforest-user .listing-owner-social li {
  margin-right: 6px;
  display: inline-block;
}
.adforest-user .listing-owner-social li a {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  background-color: #f3f3f6;
  color: #9299b8;
  border-radius: 4px;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.adforest-user .seller-detail {
  position: relative;
  width: 100%;
  display: flex;
  text-align: center;
}
.adforest-user .seller-detail a {
  padding: 15px;
  color: #20292f;
  background-color: #fff;
  border-top: 1px solid rgba(128, 128, 128, 0.2);
  transition: 0.6s;
  text-align-last: center;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
}
.description-animated-section {
  background-color: #f0f0f0;
  padding: 80px 0px;
}
.description-animated-section .listingTopFilterBar {
  margin-top: 26px;
  background: #fff;
}
/*--------SELLER---------*/
span.wpcf7-form-control-wrap input {
  margin-bottom: 20px;
  border-radius: 0;
}
input.wpcf7-form-control.wpcf7-submit.btn-theme.btn {
  border-radius: 0;
}
.ads-with-sidebar ul.recent-ads-list-location {
  display: none;
}
.ads-with-sidebar .recent-ads-list-title a {
  text-transform: capitalize;
  font-size: 16px;
  position: relative;
  font-weight: 500;
  color: #242424;
}
.ads-with-sidebar .recent-ads-list-title {
  line-height: 22px;
}
.ads-with-sidebar .recent-ads-list-price {
  font-size: 14px;
  line-height: 20px;
  margin-top: 5px;
}
.ads-with-sidebar .recent-ads-list-price span {
  font-size: 12px;
  display: inline-block;
}
.ads-with-sidebar .sb-short-head h2 {
  padding-top: 0;
  width: 80%;
}
.ads-with-sidebar .ad-grid-modern-price h5 {
  font-size: 16px;
  font-weight: 500;
}
.ads-with-sidebar .ad-grid-modern-price h5 span {
  font-size: 12px;
}
.ads-with-sidebar .ad-home-list {
  padding: 30px;
}
.adfancy-post-ad {
  background: #fbfbfb;
  padding-top: 50px;
}

.adfancy-post-ad .adf-st-information-box {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  background: #fff;
  padding: 20px;
  box-shadow: 1px 0px 20px rgb(0 0 0 / 7%);
}

.adf-information-text {
  margin-bottom: 20px;
}
.adf-search-bar {
  margin-bottom: 15px;
}
.adf-information-box .form-group {
  position: relative;
}
.adfancy-post-ad .adf-st-information-box label {
  font-size: 16px;
  font-weight: 500;
  color: #232323;
  margin-bottom: 10px;
  font-family: "Quicksand", sans-serif;
}

.adfancy-post-ad .submit-form .form-control {
  background-image: none;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  color: #656565;
  display: block;
  font-size: 14px;
  line-height: 1.42857;
  width: 100%;
  height: auto;
  padding: 15px 12px;
  box-shadow: none;
}

.adfancy-post-ad .adf-content {
  background: #fff;
  padding: 20px;
  box-shadow: 1px 0px 20px rgb(0 0 0 / 7%);
  position: relative;
  margin-bottom: 30px;
}
.adfancy-post-ad .adf-content span {
  margin-left: 5px;
  font-size: 16px;
  font-weight: 600;
  color: #232323;
  vertical-align: middle;
  font-family: "Quicksand", sans-serif;
}
.adfancy-post-ad .submit-form .adf-content small {
  font-size: 14px;
}
.adfancy-post-ad .adf-content p {
  margin: 0;
  font-size: 16px;
}
.adfancy-post-ad .form-group {
  margin-bottom: 15px;
}
.adfancy-post-ad .adf-categories {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  background: #fff;
  padding: 20px;
  box-shadow: 1px 0px 20px rgb(0 0 0 / 7%);
}
.ad-grid-7 .browse-feature-products ul li a {
  font-size: 14px;
}
.adf-categories ul#google-map-btn {
  right: 70px;
  bottom: 22%;
}
.adfancy-post-ad .submit-form small {
  color: gray;
  padding-left: 10px;
}
.adfancy-post-ad .adf-submit-form .btn-theme {
  width: 100%;
  padding: 12px 0;
}
.client-old-grid .client-2 {
  padding: 38px;
  display: block;
  position: relative;
}
.client-old-grid .client-2 {
  border-bottom: 1px solid #ededed;
  border-right: 1px solid #ededed;
}
.client-old-grid .client-2 a {
  opacity: 0.5;
  display: block;
}

.client-old-grid .client-2 a img {
  width: 100%;
}
.client-old-grid .client-2 a:hover {
  opacity: 1;
}

.parallex .app-download-section-wrapper {
  background-color: transparent;
  content: "";
  height: 100%;
  opacity: 1;
  position: relative;
  width: 100%;
  z-index: 3;
}
.app-download-section-container {
  overflow: hidden;
  padding: 180px 0 150px;
  position: relative;
  width: 100%;
  z-index: 4;
}
.app-download-section.parallex::before {
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.app-download-button,
.btn.app-download-button {
  -moz-user-select: none;
  background-color: transparent;
  border: 0 none;
  border-radius: 0;
  color: #ffffff;
  display: block;
  font-weight: 400;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-transition: all 0s ease-in-out 0s;
  -moz-transition: all 0s ease-in-out 0s;
  -ms-transition: all 0s ease-in-out 0s;
  -o-transition: all 0s ease-in-out 0s;
  transition: all 0s ease-in-out 0s;
  width: 100%;
  z-index: 1;
}
span.app-store-btn {
  display: block;
  padding: 12px 15px;
  position: relative;
  border: 1px solid #fff;
  o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}
.btn.app-download-button i {
  display: block;
  font-size: 50px;
  float: left;
  padding: 0 20px 0 0;
}
.btn.app-download-button span.app-store-btn span {
  display: block;
  overflow: hidden;
  text-align: left;
  vertical-align: bottom;
  o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}
.btn.app-download-button span.app-store-btn span span:first-child {
  font-size: 14px;
}
.btn.app-download-button span.app-store-btn span span {
  display: block;
  overflow: hidden;
  width: 100%;
}
.btn.app-download-button span.app-store-btn span span:last-child {
  font-size: 20px;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
}
.app-download-section .app-download-button:hover {
  background: #ffcc20;
}
.sb-header-10 .dropdown.sb-location-selector .dropdown-toggle::after {
  color: #fff;
}
h4.sb-list-2-price {
  position: absolute;
  right: 50px;
}
.sb-search-list-2 ul.add_info li {
  border: 1px solid #ededed;
  border-radius: 3px;
  display: inline-block;
  height: 35px;
  margin-right: 5px;
  text-align: center;
  width: 60px;
}
.custom-tooltip {
  display: inline;
  position: relative;
  z-index: 9;
}
.tooltip-item {
  cursor: pointer;
  display: inline-block;
}

.tooltip-effect-4 ul.add_info li i {
  font-size: 16px;
  position: relative;
  color: #a0a0a0;
  display: inline-block;
  top: 2px;
  margin: 0;
}
.tooltip-effect-4 .tooltip-content {
  transform: scale3d(0.7, 0.3, 1);
  transform-origin: 50% 100% 0;
  transition: opacity 0.2s ease 0s, transform 0.2s ease 0s;
}
.tooltip-effect-4 .tooltip-content {
  background: #333 none repeat scroll 0 0;
  box-shadow: -5px -5px 15px rgb(48 54 61 / 20%);
  color: #fff;
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 20px -150px;
  opacity: 0;
  padding: 15px;
  pointer-events: none;
  text-align: left;
}
.tooltip-effect-4 .tooltip-content h4 {
  color: #fff !important;
  display: block;
  font-size: 14px;
  line-height: 14px;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.custom-tooltip.tooltip-effect-4:hover .tooltip-content {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translate3d(0px, 0px, 0px) rotate3d(0, 0, 0, 0deg);
  -moz-transform: translate3d(0px, 0px, 0px) rotate3d(0, 0, 0, 0deg);
  -o-transform: translate3d(0px, 0px, 0px) rotate3d(0, 0, 0, 0deg);
  -ms-transform: translate3d(0px, 0px, 0px) rotate3d(0, 0, 0, 0deg);
  transform: translate3d(0px, 0px, 0px) rotate3d(0, 0, 0, 0deg);
}

.tooltip-effect-4 .tooltip-content,
.tooltip-item::after {
  left: 50%;
  position: absolute;
  width: 300px;
}
.tooltip-effect-4 .tooltip-content,
.tooltip-content-flip {
  bottom: 100%;
  cursor: default;
  z-index: 9999;
}
.tooltip-effect-4 .tooltip-content::after {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: #333 transparent transparent;
  border-image: none;
  border-style: solid;
  border-width: 10px;
  height: 0;
  left: 50%;
  margin-left: -10px;
  position: absolute;
  top: 100%;
  width: 0;
}

/*.tooltip-effect-4 .tooltip-content::after, .tooltip_flip::after {
    content: "";
    pointer-events: none;
}*/

.tooltip-effect-4 .tooltip-content,
.tooltip-item::after {
  left: 100%;
  width: 127px;
  text-align: center;
}
.tooltip-effect-4 .tooltip-content {
  margin: 0 0 20px -75px;
}

.tooltip-effect-4 .tooltip-content .label {
  margin-left: 10px;
  border-radius: 0.25em;
  color: #fff;
  display: inline;
  font-size: 75%;
  font-weight: bold;
  padding: 3px;
}
.tooltip-effect-4 .tooltip-content strong {
  color: #fff !important;
}
.tooltip-effect-4 .sb-search-list-2 ul.add_info {
  margin-top: 5px;
}
.sb-search-list-2 .pro-great-rating {
  margin-top: 8px;
}
.sb-search-list-2 .great-product-content p {
  text-transform: lowercase;
}
.sb-search-list-2 .great-product-content h4.sb-list-2-price span {
  font-size: 14px;
}

.blog-sidebar .widget .widget-heading {
  background-color: #fff;
  border-color: #eeeeee;
  border-bottom-color: #eeeeee;
  border-bottom: 1px solid #eeeeee;
  border-radius: 0;
  color: #232323;
  padding: 0 0 5px 0;
  margin-bottom: 15px;
}
.blog-sidebar .widget .widget-heading h4.panel-title {
  background: transparent !important;
  font-size: 16px;
  padding: 0;
  width: 100%;
}
.panel-body.recent-ads img {
  width: 100%;
}
.blog-sidebar .widget.widget-content ul {
  border: 0;
}
.blog-sidebar .widget.widget-content ul li {
  border-bottom: 1px solid #f1f1f1;
  display: block;
  padding-bottom: 13px;
  padding-top: 13px;
  font-size: 14px;
}
.error-page .error-container .error-desc {
  text-align: center;
  margin-top: 10px;
}
.blog-sidebar .widget.widget-content ul li a {
  color: #232323;
  text-transform: capitalize;
}
span.sb_show_pass {
  position: absolute;
  right: 32px;
  font-size: 18px;
  top: 48px;
  cursor: pointer;
}
span.sb_show_pass2 {
  position: absolute;
  right: 32px;
  font-size: 18px;
  bottom: 10px;
  cursor: pointer;
}
.ad-alert-box .ad_alerts {
  margin-top: 8px;
}
.password_group {
  position: relative;
}
.ad-alert-box {
  background-color: #fff;
  padding: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 1px 0px 20px rgb(0 0 0 / 7%);
  margin-bottom: 30px;
}
.blog-sidebar .widget.widget-content {
  border-top-color: #eeeeee;
  background-color: #fff;
  overflow: hidden;
}
.blog-sidebar .widget {
  padding: 25px 25px;
}
.blog-sidebar .widget {
  overflow: hidden;
  position: relative;
  border-color: #eeeeee;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 30px;
  background-color: #fff;
  border: 1px solid #eeeeee;
}
.sb-search-list-2 .great-product-content span i {
  line-height: 2.2;
}
.sb-menu ul.mega-menu-list li ul li a:hover,
.sb-menu ul.mega-menu-list li ul li a {
  font-weight: 400;
}

element.style {
}
.ad-alert-box p {
  font-size: 15px;
}
.alert-job-modal-popup input {
  margin-bottom: 10px;
}
.alert-job-modal-popup input,
.alert-job-modal-popup label {
  font-size: 14px;
  font-weight: 400;
}
.alert-job-modal-popup .select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 0;
  height: 55px;
  font-size: 14px;
}

.nothing-found.white.search-bar {
  height: auto;
}
.alert-for-map,
.sidebar-alert {
  margin-top: 40px;
}

.main-search-bar .with-top-bar .col-md-9.no-padding {
  position: relative;
}

.main-search-bar .with-top-bar i#you_current_location_text {
  position: absolute;
  right: 20px;
  top: 14px;
  color: #ccc;
  z-index: 9;
  font-size: 25px;
  display: block;
}
.widget.my-quicklinks ul li {
  display: block;
}
div#sb_reset_password_modal .modal-title {
  color: #000;
}
div#sb_reset_password_modal .form-group {
  margin-bottom: 15px;
}

div#sb_reset_password_modal .form-group .form-control {
  background-color: #fff;
  background-image: none;
  border: 1px solid #e1e1e1;
  border-radius: 0;
  box-shadow: none;
  color: #555;
  font-size: 14px;
  height: auto;
  padding: 15px 12px;
  transition: all 0.2s cubic-bezier(0, 0, 0.58, 1) 0s;
}
.woo_added a {
  text-decoration: underline;
}
#search-section.search-minimal .form-control {
  padding: 16.2px 12px !important;
  background-color: #fff;
  background-image: none;
  border: 1px solid #e1e1e1;
  border-radius: 0;
  box-shadow: none;
  color: #555;
  font-size: 14px;
  height: auto;
  padding: 15px 12px;
  transition: all 0.2s cubic-bezier(0, 0, 0.58, 1) 0s;
}

#search-section.search-minimal button.btn.btn-block.btn-light {
  padding: 14.5px;
  margin-top: 0;
}
.dropdown.ad-language {
  position: fixed;
  top: 15%;
  right: 0;
  z-index: 999;
}
.ad-language .btn-default {
  border: none;
  border-radius: 4px 0 0 4px;
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 25%);
  background: #fff;
}

.ad-language .dropdown-menu {
  border: none;
  box-shadow: 0 2px 10px rgb(0 0 0 / 25%);
  margin-top: 0 !important;
  padding: 0;
  left: auto !important;
  right: 85px !important;
  top: -45px !important;
  min-width: 125px;
}
.ad-language .btn-default:hover {
  color: #212529;
}

.ad-language .dropdown-menu > li {
  position: relative;
  overflow: hidden;
}

.ad-language .dropdown-menu > li > a {
  padding: 10px 20px;
  display: block;
}
.ad-language .dropdown-menu > li > a:hover {
  color: #fff;
  background-color: #ffc220 !important;
}

.ad-language .dropdown-menu > li > a img {
  margin-right: 5px;
  vertical-align: middle;
}
.jqte_editor ul {
  list-style: disc;
  padding: revert;
}

.col-xl-4 .new-small-grid:before {
  height: 34%;
}

.description-animated-section {
  padding: 65px 0px;
}
.description-main-product.adforest-users {
  box-shadow: 1px 2px 10px 0px rgb(0 0 0 / 30%);
}
.description-main-product {
  padding: 35px 8px 35px 8px;
  background-color: #ffffff;
  text-align: center;
  margin-bottom: 22px;
  position: relative;
}
.description-main-product.adforest-users .description-box img {
  border-radius: 50px;
  width: 41%;
  margin: 0 auto;
}
.description-main-product.adforest-users .description-heading-product {
  margin-top: 5px;
  margin-bottom: 2px;
}
.description-main-product.adforest-users .description-heading-product h2 a {
  font-size: 18px;
  color: #232323;
  font-weight: 500;
}
.paralell-box-description {
  display: table;
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 0px;
  margin-bottom: 10px;
}
.paralell-box-description .product-icon-description-icons {
  float: left;
  margin-right: 10px;
  
}
.description-main-product .product-icon-description-icons i {
  font-size: 12px;
  color: #ffcc220;
}
.paralell-box-description .description-short-text {
  float: left;
}
.adforest-user-ads {
  background-color: #f5f5f5;
  padding: 5px 10px;
  border-radius: 4px;
}
.adforest-user-ads b {
  font-size: 16px;
}
.adforest-user-ads span {
  font-size: 16px;
  font-family: "Quicksand", sans-serif;
}
.h-ribbon-ind {
  position: absolute;
  right: -5px;
  top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 75px;
  height: 75px;
  text-align: right;
}
.h-ribbon-ind span {
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 100px;
  display: block;
  background: linear-gradient(#2989d8 0%, #1e5799 100%);
  box-shadow: 0 3px 10px -5px rgb(0 0 0);
  position: absolute;
  top: 19px;
  right: -21px;
}
.h-ribbon-ind span::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid #2989d8;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #2989d8;
}
.h-ribbon-ind span::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-right: 3px solid #2989d8;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #2989d8;
}

.h-ribbon-ind.dealer span::before {
  border-left: 3px solid #2ba74c;
  border-top: 3px solid #2ba74c;
}
.h-ribbon-ind.dealer span::after {
  border-left: 3px solid transparent;
  border-top: 3px solid #2ba74c;
}
.h-ribbon-ind.dealer span {
  background: linear-gradient(#14c932 0%, #2ba74c 100%);
}

.why-us.border-box {
  border: 1px solid #f2f2f2;
  padding: 70px 70px 60px;
}
.why-us h5 {
  color: #232323;
  font-size: 20px;
  margin-bottom: 15px;
  margin-top: 0;
  text-transform: capitalize;
  font-weight: 500;
}
.jqte {
  border-radius: 4px !important;
  border: 1px solid #e1e1e1 !important;
  box-shadow: none !important;
}
.main-section-bid.safety-tips,
.claim-now.main-section-bid {
  padding: 20px;
  margin-top: 20px;
}

.claim-now.main-section-bid img {
  margin-right: 10px;
}

.claim-now.main-section-bid i {
  float: right;
  font-size: 28px;
}

.claim-now.main-section-bid a {
  width: 100%;
  display: block;
}

div#ad-alert-subscribtion {
  z-index: 1051;
}

.search-map-container .map-sidebar {
  width: 370px;
  height: 100%;
  overflow: auto;
}
.search-map-container .left-part {
  width: 40%;
  height: 100%;
}

.search-map-container .right-part.no-filters {
  width: calc(50%);
}

.search-map-container .left-part.no-map.no-filters {
  width: calc(100% - 0px);
}

.search-map-container .right-part {
  width: calc(60% - 370px);
}

.found-sort-item .p-switch label {
  padding-left: 8px;
  background: transparent;
}

.right-part.no-filters .no-container .map {
  width: 50%;
}
.sb-header.sticky {
  box-shadow: 0 0.5rem 1.125rem -0.5rem;
}
.card.make-feature .pricing-list h3 {
  font-size: 15px;
}
.card.make-feature .pricing-list h3 .accordion-content {
  margin-right: 5px;
}
.left-part.no-map.no-filters .search-found-list .great-product-herro,
.left-part.no-map .search-found-list .great-product-herro {
  flex: unset;
}
.left-part.no-map.no-filters .great-product-herro img.img-fluid,
.left-part.no-map .great-product-herro img.img-fluid {
  width: 100%;
  border-radius: 5px 0 0 5px !important;
  height: 100% !important;
  max-width: 300px;
}

.hide-switch .search-label-switch {
  padding-left: 10px;
}
.found-sort-item li.hide-switch {
  background: transparent;
}

.form-group.country-heading {
  position: relative;
}

.form-group.country-heading ul#google-map-btn {
  position: absolute;
  right: 2px;
  bottom: 5px;
}
.form-group.country-heading #google-map-btn a {
  background-color: transparent;
  box-shadow: none;
}
section.clearfix.google-map-sec {
  position: relative;
}
.ad_title_group {
  position: relative;
}

.ad_title_group .adforest-search-spinner {
  top: 68px;
  font-size: 18px;
}
.no-display.show_it {
  display: none !important;
}
.profile-dealer.verify-bage {
  left: 15px;
}

.profile-dealer span.pro-dealer2 {
  color: #fff;
  padding: 5px 10px;
  letter-spacing: 1px;
  font-size: 12px;
  border-radius: 2px;
}
.cat-searach-group {
  position: relative;
  margin-bottom: 20px;
}
.typeahead.dropdown-menu > li > a {
  padding: 10px 20px;
  white-space: normal;
}
ul.typeahead.dropdown-menu li {
  border-bottom: 1px solid #f1f1f1;
}

.dz-image img {
  max-width: 120px;
}

ul.cont-icon-list li:hover a svg.iconify.icon-start path {
  fill: #ffff;
}

.pagination-item {
  float: right;
  margin-bottom: 30px;
  text-align: center;
}

ul.pagination.pagination-lg {
  display: inline-block;
  padding-left: 0;
  list-style: none;
}

ul.pagination-lg li {
  margin: 0 4px;
  display: inline-block;
}
.states_model h3.modal-title.text-center {
  color: #242424;
  font-size: 16px;
}

.states_model button.close {
  color: #242424;
}
.search-map-container ul#google-map-btn {
  right: unset;
}
span.padding_cats {
  display: inline-block;
}
.share-ad a.btn.btn-md {
  background: #000;
  color: #ffff;
}

.page-template-page-search-php #quick-cart-pay {
  display: none;
}
.footer-black .ul.socials-links li:hover a,
.wheel-footer .ul.socials-links li:hover a {
  color: #fff;
}
.collapse-heading-search h1 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 2px;
  padding-left: 10px;
  padding-top: 20px;
}

ul.detail-page-item h1 {
  font-weight: 500;
  font-style: normal;
  color: #20292f;
  font-size: 21px;
}
.prop-latest-content-area {
  padding: 20px;
  padding-top: 190px;
}
.comment-list .comment-info {
  float: left;
  margin-right: 30px;
}
.comment-list .comment {
  display: flex;
  margin-bottom: 30px;
}
.footer-black ul.socials-links li:hover a {
  color: #ffff;
}

.sb-header-top-11 .sb-notify .point {
  right: 5px;
  top: 0px;
}
.sb-header-4 .sb-notify .point {
  right: 20px;
  top: 5px;
}

.radius_submit {
  display: inline;
  position: absolute;
  right: 0;
  top: 0;
  padding: 6px;
  height: 50px;
}
.radius_field {
  position: relative;
}
.modal.sortable-images li img {
  max-width: 100%;
  width: 100%;
  height: 90px;
}

.header-item .col-sm-12:nth-child(3) {
  position: unset;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/*------------ feature template page css start ------------*/

.ad-uploaded-section {
  padding: 30px 0 50px 0;
}
.ad-uploaded-section .uploaded-ad-box {
  padding: 20px;
  border: 1px solid #ffc220;
  border-radius: 4px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.ad-uploaded-section .uploaded-ad-box .left-icon {
  width: 120px;
  height: 120px;
  margin-right: 30px;
}
.ad-uploaded-section .uploaded-ad-box .left-icon img {
  width: 100%;
  height: 100%;
}
.ad-uploaded-section .uploaded-ad-box .right-meta {
  width: calc(100% - 150px);
}
.ad-uploaded-section .uploaded-ad-box .right-meta h4 {
  font-size: 24px;
  font-weight: 600;
  color: #20292f;
  margin-bottom: 5px;
}
.ad-uploaded-section .uploaded-ad-box .right-meta p {
  font-size: 18px;
  margin-bottom: 0;
  color: #777;
}
.ad-uploaded-section .uploaded-ad-box .right-meta p span {
  font-weight: 600;
  color: #666;
}
.ad-uploaded-section .upgrade-ad-positions {
  padding: 50px 20px 15px 20px;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  margin-bottom: 40px;
}
.ad-uploaded-section .upgrade-position-detail h4 {
  font-size: 24px;
  font-weight: 600;
  color: #20292f;
  margin-bottom: 40px;
  line-height: 40px;
  max-width: 600px;
}
.ad-uploaded-section .upgrade-position-detail h6 {
  font-size: 18px;
  font-weight: 600;
  color: #20292f;
  margin-bottom: 15px;
}
.ad-uploaded-section .upgrade-position-detail ul {
  margin-bottom: 0;
}
.ad-uploaded-section .upgrade-position-detail ul li {
  position: relative;
  margin-bottom: 10px;
  color: #999;
}
.ad-uploaded-section .upgrade-position-detail ul li img {
  width: 24px;
  height: 20px;
  margin-right: 15px;
}
.ad-uploaded-section .upgrade-position-detail ul li:last-child {
  margin-bottom: 0;
}
.ad-uploaded-section .upgrade-position-detail ul li span {
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
}
.ad-uploaded-section .upgrade-ad-positions .featured-ads-box {
  margin-top: 30px;
}
.ad-uploaded-section .upgrade-ad-positions .featured-ads-box .top-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.ad-uploaded-section .upgrade-ad-positions .featured-ads-box .top-bar h5 {
  font-size: 18px;
  color: #20292f;
  text-transform: uppercase;
}
.ad-uploaded-section .upgrade-ad-positions .featured-ads-box .top-bar button {
  padding: 10px 8px;
  color: #ffc220;
  border: 1px solid #ffc220;
  background-color: #ffff;
  border-radius: 4px;
}
.ad-uploaded-section .featured-duration ul.featured-duration-list {
  margin-bottom: 0;
}
.ad-uploaded-section .featured-duration ul li {
  position: relative;
}
.ad-uploaded-section .featured-duration ul li input {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 33px;
  left: 20px;
}
.ad-uploaded-section .featured-duration ul li .type-box {
  padding: 30px 20px 30px 15px;
  border: 1px solid #e6ebf0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.ad-uploaded-section .featured-duration ul li:last-child .type-box {
  margin-bottom: 0;
}
.ad-uploaded-section .featured-duration ul li .type-box .r-meta {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-left: 35px;
}
.ad-uploaded-section .featured-duration ul li .type-box .r-meta .txt {
  font-weight: 600;
  color: #666;
  margin-bottom: 0;
}
.ad-uploaded-section .featured-duration ul li .type-box .r-meta span {
  color: #ffc220;
}
.ad-uploaded-section .featured-duration ul li label {
  width: 100%;
}
.ad-uploaded-section
  #check-one-ctg:checked
  ~ label[for="check-one-ctg"]
  .type-box,
.ad-uploaded-section
  #check-two-ctg:checked
  ~ label[for="check-two-ctg"]
  .type-box,
.ad-uploaded-section
  #check-three-ctg:checked
  ~ label[for="check-three-ctg"]
  .type-box {
  border: 1px solid #ffc220;
  background-image: linear-gradient(
    to bottom,
    rgba(255, 194, 32, 0.3),
    rgba(255, 194, 32, 0.01)
  );
}
.ad-uploaded-section .ad-botm-buttons {
  text-align: right;
}
.ad-uploaded-section .ad-botm-buttons .skip-btn {
  display: inline-block;
  padding: 10px 30px;
  color: #ffc220;
  border: 1px solid #ffc220;
  background-color: #ffff;
  border-radius: 4px;
  margin-left: 5px;
}
.ad-uploaded-section .ad-botm-buttons .upgrade-btn {
  padding: 10px 30px;
  color: #ffff;
  border: 1px solid #ffc220;
  background-color: #ffc220;
  border-radius: 4px;
  margin-left: 5px;
}
.great-product .great-product-herro {
	height: auto;
	border-bottom-left-radius: 8px;
}
.great-product-herro img.img-fluid {
	border-radius: 8px 0 0 8px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .sb-header.sb-header-9 ul.dropdown-user-login {
    right: unset;
    left: auto;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .ad-uploaded-section .upgrade-ad-positions .upgrade-image-box {
    max-width: 400px;
    margin: 0 auto;
    margin-top: 20px;
  }

  .ad-bottom-sidebar .panel .panel-collapse .recent-ads img {
    display: block;
  }
  .ad-bottom-sidebar .panel {
    margin-bottom: 30px;
  }
}

@media (min-width: 320px) and (max-width: 767.98px) {
  .ad-uploaded-section .uploaded-ad-box .left-icon {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
  .sb-header.sb-header-9 ul.dropdown-user-login {
    right: 0;
  }
  .great-product .great-product-herro {
		width: 100%;
		border-radius: 8px 8px 0 0;
	}
	.great-product-herro img.img-fluid {
		border-radius: 8px 8px 0 0;
	}
	.great-product-content {
		border-radius: 0px 0px 8px 8px;
	}
	.detail-btn-1 {
		position: unset;
	}
}

@media (min-width: 320px) and (max-width: 575.98px) {
  .ad-uploaded-section .uploaded-ad-box {
    align-items: flex-start;
  }
  .ad-uploaded-section .uploaded-ad-box .right-meta h4 {
    font-size: 22px;
  }
  .ad-uploaded-section .uploaded-ad-box .right-meta p {
    font-size: 16px;
  }
  .ad-uploaded-section .upgrade-position-detail h4 {
    font-size: 22px;
    line-height: 30px;
  }
  .ad-uploaded-section .ad-botm-buttons .upgrade-btn,
  .ad-uploaded-section .ad-botm-buttons .skip-btn {
    padding: 10px 20px;
  }
  .ad-uploaded-section .ad-botm-buttons .skip-btn {
    margin-left: 0;
  }
}

@media (max-width: 400px) {
  .ad-uploaded-section .featured-duration ul li .type-box .r-meta {
    flex-direction: column;
  }
  .ad-uploaded-section .ad-botm-buttons .upgrade-btn,
  .ad-uploaded-section .ad-botm-buttons .skip-btn {
    display: block;
    width: 100%;
    margin-left: 0;
  }
  .ad-uploaded-section .ad-botm-buttons .skip-btn {
    margin-bottom: 10px;
  }
}
/* ---------------- feature template page css end  ------------------- */

/* ---------------- Leaflet full screen icon css start  ------------------- */

.leaflet-touch .leaflet-bar {
  border-radius: 0px 0 4px 4px;
}
.left-area .leaflet-control-container .leaflet-top.leaflet-left {
  top: 39px;
}
.leaflet-control-container .leaflet-top.leaflet-left {
  top: 4px;
}
.leaflet-touch .fullscreen-icon {
  background-size: 18px 25px;
}
.leaflet-touch .fullscreen-icon {
background-position: 6px 2px;
}

.leaflet-control-container .leaflet-left .leaflet-control-zoom .leaflet-fullscreen-on{
  background-image: url('../leaflet/icon-exit-fullscreen.svg')
}

.leaflet-touch .fullscreen-icon.leaflet-fullscreen-on {
  background-size: 18px 25px;
}
.leaflet-touch .fullscreen-icon.leaflet-fullscreen-on {
background-position: 6px 2px;
}

/* ---------------- Review Style Delete & Edit Starts  ------------------- */

.profile-rating .pro-response .pro-response-head li {
  list-style: none;
  display: inline;
}
.profile-rating .pro-response .pro-response-head li .user_rating_dlt {
  padding-left: 20px;
}

/* ---------------- Leaflet full screen icon css end  ------------------- */

/* ---------------- Review Style Dlete & Edit Ends  ------------------- */

.sb_ad_id {
  margin-bottom: 0 !important;
}
.ad-detail-2-content-heading .sb_ad {
  margin-bottom: 0;
}
div#nav-profile {
  background-color: #fff;
  border-radius: 5px;
  padding: 30px;
  margin-top: 30px;
}

.hideSearchInput {
  display: none;
}
#btn-submit ~ #you_current_location_text {
  right: 44px;
}
.cats_model .modal-header p {
  font-size: 14px;
  color: #f24a4a;
}
