/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Concert+One&family=Federo&display=swap');


/*===== VARIABLES CSS =====*/

::placeholder {
  color: #ddd;
  font-size: 14px;
  font-weight: 700;
}

/*===== BASE =====*/
*,
::before,
::after {
  box-sizing: border-box;
}
.gt_container-3pqq3h a.glink span {
    margin-right: 5px;
    font-size: 16px !important;
    vertical-align: middle;
}


h2 {
    letter-spacing: 0.75px !important;
}

.authentication .user-profile {
    display: flex
;
    align-items: center;
    justify-content: right;
    margin-bottom: 15px;
}

.authentication > a {
    display: inline-block;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: "Federo", sans-serif  !important;
  font-size: var(--normal-font-size);
  font-weight: 600;
  background-color: #f9f9fa !important;
  overscroll-behavior: auto;
  letter-spacing: 0.75px !important;
  opacity: 0; /* Start invisible */
    animation: fadeIn 1s ease-in forwards; /* Animation name, duration, timing function, and fill mode */
}

body.modal-open{
    overflow: auto !important;
}

.vbox-open{
    overflow: auto !important;
}

/* Keyframes for fade-in effect */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

input, button, select {
    letter-spacing: 0.75px !important;
}



span.select2-results ul li {
    font-family: "Federo", sans-serif  !important;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  font-size: 16px !important;
  line-height: 17px;
}

p {
    font-size: 16px;
}

.bd-grid {
  max-width: 1024px;
  display: grid;
  grid-template-columns: 100%;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}


img {
  border-radius: 10px;
}

/*===== HEADER =====*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  padding: 0 1rem;
  background-color: #FFF;
  z-index: var(--z-fixed);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header__logo {
  color: var(--dark-color);
}

.vbox-grab .vbox-child img {
    max-width: 100%;
    max-height: 90vh;
}

.header__toggle {
  font-size: 1.7rem;
  cursor: pointer;
}

header.header-top .top-bar-ad .logo{
  display: none;
  margin-top: 15px !important;
}
header.header-top .top-bar-ad .logo.xl-none{
  display: block;
}
/*===== NAV =====*/
@media screen and (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    background-color: var(--first-color);
    width: 80%;
    height: 100vh;
    padding: 2rem 0;
    z-index: var(--z-fixed);
    transition: .5s;
    overflow-y: auto;
  }

  /* header.header-top .top-bar {
    display: none;
  } */

  .search-bar-section .search {
    display: none;
  }

  nav.navigation-bar .menu-items .logo {
    text-align: left;
    display: block !important;
  }

  nav.navigation-bar .menu-items .logo img {
    width: 100px !important;
    background: transparent !important;
  }

  header.header-top .social-info {
    display: none;
  }

  header.header-top .top-bar-ad .logo {
    display: none;
    margin-top: 0px;
  }

  .slider-section .d img {
    height: auto !important;
  }

  .card.product-card .card-body .card-images img {
    max-width: 100% !important;
  }

    #sync1 {
        border: 1px solid #ddd;
        border-radius: 10px;
        min-height: 317px !important;
        background: #ddd;
        position: relative;
    }
  
  #sync1 .product-details-images {
      height: 317px !important;
  }


  
}

main.login-section .form-group input {
    border: 1px solid #787878 !important;
    font-size: 14px;
    padding: 10px;
    border-radius: 5px !important;
    font-weight: 500;
    color: #000 !important;
    line-height: normal;
    width: 100%;
}

nav.navigation-bar .menu-items .logo {
  display: none;
}

.mobile-menu-content.active {
  display: none;
}

.mobile-menu-content {
  display: none;
}

.nav__content {
  display: flex;
  flex-direction: column;
}

.nav__perfil {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

.nav__img {
  display: flex;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
}

.nav__img img {
  width: 70px;
}

.nav__name {
  display: block;
  font-size: var(--nav-name-font-size);
  color: var(--white-color);
}

.nav__item {
  margin-bottom: 2rem;
}

.nav__link {
  color: var(--first-color-light);
}

.nav__link:hover {
  color: var(--white-color);
}

/*Show menu*/
.show {
  left: 0;
}

/*Active link*/
.active {
  color: var(--white-color);
}

/*=== Dropdown ===*/
.dropdown__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown__icon {
  font-size: 1.3rem;
  transition: .5s;
}

.dropdown__menu {
  margin: 1rem 0 0 1rem;
  display: none;
}

.dropdown__item {
  margin: 1rem 0;
}

.dropdown:hover>.dropdown__menu {
  display: block;
}

.dropdown:hover .dropdown__icon {
  transform: rotate(180deg);
}

/* ===== MEDIA QUERIES=====*/
@media screen and (min-width: 576px) {
  .nav {
    width: 288px;
  }
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }

  .header {
    height: calc(var(--header-height) + 1rem);
  }

  .header__logo,
  .header__toggle {
    display: none;
  }

  .nav {
    width: 100%;
  }

  .nav__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav__perfil {
    flex-direction: row;
    text-align: initial;
    margin-bottom: 0;
  }

  .nav__img {
    width: 40px;
    height: 40px;
    margin-right: .5rem;
    margin-bottom: 0;
  }

  .nav__img img {
    width: 46px;
  }

  .nav__name {
    color: var(--dark-color);
  }

  .nav__list {
    display: flex;
    align-items: center;
  }

  .nav__item {
    margin: 0 1.5rem;
    padding: 1.4rem 0;
  }

  .nav__link {
    color: var(--dark-color);
  }

  .nav__link:hover {
    color: var(--first-color);
  }

  /*Active link new color*/
  .active {
    color: var(--first-color);
  }

  .dropdown {
    position: relative;
  }

  .dropdown__menu {
    position: fixed;
    margin: 0;
    top: calc(var(--header-height) + 1rem);
    padding: .5rem 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: .5rem;
  }

  .dropdown__item {
    margin: .5rem 0;
  }
}

@media screen and (min-width: 1024px) {
  .bd-grid {
    margin-left: auto;
    margin-right: auto;
  }
}

/* slider  */

.switches-container {
  width: 12rem;
  position: relative;
  display: flex;
  padding: 2px;
  position: relative;
  line-height: 2.2rem;
  border-radius: 4px;
  margin-left: auto;
  margin-right: auto;
  background: #dc9932;
}

.switches-container input {
  visibility: hidden;
  position: absolute;
  top: 0;
}

.switches-container label {
  width: 50%;
  padding: 0;
  margin: 0;
  text-align: center;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
}

.switch-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  padding: 0.15rem;
  z-index: 3;
  transition: transform .5s cubic-bezier(.77, 0, .175, 1);
}

.switch {
  border-radius: 4px;
  background: #fff;
  height: 100%;
  font-size: 16px;
}

.switch div {
  width: 100%;
  text-align: center;
  opacity: 0;
  display: block;
  color: #dc9932;
  transition: opacity .2s cubic-bezier(.77, 0, .175, 1) .125s;
  will-change: opacity;
  position: absolute;
  top: 2px;
  left: 0;
}

.switches-container input:nth-of-type(1):checked~.switch-wrapper {
  transform: translateX(0%);
}

.switches-container input:nth-of-type(2):checked~.switch-wrapper {
  transform: translateX(100%);
}

.switches-container input:nth-of-type(1):checked~.switch-wrapper .switch div:nth-of-type(1) {
  opacity: 1;
}

.switches-container input:nth-of-type(2):checked~.switch-wrapper .switch div:nth-of-type(2) {
  opacity: 1;
}

div#sync2 img {
  opacity: .4;
  border: 2px solid #dddddd;
  border-radius: 10px;
}

div#sync2 .current img {
  opacity: 1;
  border: 2px solid #ddd;
  border-radius: 10px;
  margin-right: 7px !important;
}

input[type="number"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* brand new design  */

header.header-top {
  background-color: #8f3678;
  margin: 0;
  padding: 10px 0;
  line-height: normal;
}

header.header-top .top-bar-ad {
  position: relative;
  overflow: hidden;
}

header.header-top .top-bar-ad span#top-ad-remove svg {
  width: 25px;
  position: absolute;
  top: 5px;
  right: 5px;
  background: #fff;
  border-radius: 5px;
}

header.header-top .top-bar-ad img {
  width: 100%;
  border-radius: 10px;
  /* min-height: 100px;
  max-height: 100px; */
}

header.header-top .social-info button {
  background: #ddd;
  border: 0;
  padding: 10px 20px;
  outline: none;
  border-radius: 5px;
  font-weight: 700;
  color: #000;
  font-family: "Federo", sans-serif;
  box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 5px;
  font-size: 16px !important;
}


header.header-top .social-info .authentication p {
  color: #fff;
  margin: 0;
}

header.header-top .social-info {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
}

header.header-top .social-info button a {
  color: #fff;
  text-decoration: none;
}

header.header-top .top-bar-ad.top-ads {
    margin-left: 35px;
    margin-right: 35px;
}

/* header.header-top .search-bar-section {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  padding: 10px 0;
} */

a.gt_switcher-popup.glink.nturl.notranslate {
    color: #000 !important;
    background: #ddd;
    padding: 10px 20px;
    min-width: 80% !important;
    display: inline-block;
    border-radius: 5px;
    font-size: 16px !important;
    font-weight: 700;
    font-family: "Federo", sans-serif;
    box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 5px;
}


.image-preview-container img {
  max-height: 90px;
  margin: 0 5px;
  max-width: 90px !important;
  border: 1px solid #000;
  padding: 3px;
  height: 90px;
}

@media  screen and (max-width: 575px) {
  header.header-top .social-info{
    justify-content: start;
    margin-top: 10px;
  }
}

header.header-top .search-bar-section .logo img {
  width: 200px;
  background: #fff;
  border-radius: 5px;
  padding: 5px;
}

/* header.header-top .search-bar-section {
  width: 100%;
} */

header.header-top .search-bar-section .search-bar {
  width: 100%;
  position: relative;
}

header.header-top .search-bar-section .search-bar input#myInput {
  width: 100%;
  padding: 15px;
  border-radius: 7px;
  border: none;
  font-family: "Federo", sans-serif;
}

.select2-results li {
    list-style: none;
    display: list-item;
    background-image: none;
    font-family: "Federo", sans-serif !important;
}

/*header.header-top .social-info .authentication a {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: end;*/
/*}*/

header.header-top .search-bar-section svg {
  width: 25px;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

header.header-top .search-bar-section .search-bar button {
  position: absolute;
  top: 50%;
  right: 7px;
  padding: 7px 20px;
  border: 0;
  border-radius: 5px;
  font-weight: 700;
  transform: translateY(-50%);
  background-color: #FFB200;
  color: #000;
  font-family: "Federo", sans-serif;
}

header.header-top .search-bar-section .logo {
  width: 100%;
}

header.header-top .search-bar-section .menu-items {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: end;
}

.search-bar-section .search-menu .menu-items {
  width: 45% !important;
}

.search-bar-section .search-menu button.navbar-toggler i{
  color: #FFF;
}

header.header-top .search-bar-section .menu-items ul li a {
  font-size: 18px !important;
  font-weight: 700;
  color: #ffffff;
  background: transparent !important;
  padding: 0;
  font-family: "Federo", sans-serif;
}

.location-modal span.close-modal i {
    font-size: 24px;
}

header.header-top .search-bar-section .menu-items ul li {
  margin: 0 5px;
}

header.header-top .search-bar-section .menu-items ul li button {
  font-size: 16px;
  height: auto;
  padding: 10px 20px;
  border: 0;
  font-weight: 700;
  line-height: normal;
  border-radius: 4px;
  background-color: #FFB200;
  color: #000;
  letter-spacing: normal;
}

.slider-section .ad-img img {
    width: 100%;
    min-height: 178px;
}

.slider-bottom-ad img {
  width: 100%;
  border-radius: 10px;
min-height: 250px;
max-height: 250px;
}

.slider-section img {
  width: 100% !important;
  border-radius: 10px;
  height: 100% !important;
  max-height: 95% !important;
}
.slider-section .d img {
  height: 250px !important;
}
.slider-section .main-slider {
  height: 100%;
}

section.footer-ad-section .ad-img img {
  width: 100%;
  border-radius: 10px;
  min-height: 250px;
  max-height: 250px;
}

footer.footer-section {
  background-color: #808080;
  padding-bottom: 0;
  padding-top: 40px;
}

footer.footer-section .logo img {
    width: 215px !important;
  max-height: 120px;
}

footer.footer-section ul.social-items li {
  display: inline-block;
  margin: 5px;
}

footer.footer-section ul {
  margin: 0;
  padding: 0;
}

footer.footer-section ul.app-download li img {
  width: 157px;
  height: 55px;
}

.search-bar-section .search-menu ul li {
  margin: 0 10px !important;
}

footer.footer-section ul.app-download {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 10px;
  flex-direction: row;
}

footer.footer-section .visitor-count {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  flex-direction: row;
  margin-top: 15px;
}

footer.footer-section h4 {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 10px;
  font-family: "Federo", sans-serif;
}

footer.footer-section ul li a {
  text-decoration: none;
  color: #000000;
  display: block;
  font-weight: 500;
  padding: 4px 0;
  font-family: "Federo", sans-serif;
  font-size: 16px !important;
  line-height: 27px;
}

footer.footer-section .visitor-count p {
  margin: 0;
  background-color: #000;
  color: #ffffff;
    padding: 5px 9px;
  border-radius: 10px;
  width: 100%;
  font-size: 16px !important;
  font-weight: 500;
  font-family: "Federo", sans-serif;
}

footer.footer-section .copyright {
  background-color: #000;
  padding: 5px 0;
  color: #ffffff;
  margin-top: 25px;
  font-family: "Federo", sans-serif;
  font-size: 16px;
}

.popular-category .card {
    display: grid;
    grid-template-columns: 60px 1fr;
    align-items: center;
    justify-content: start;
    background-color: transparent;
    border: 0px;
    padding: 10px;
    gap: 10px;
}

.popular-category .card img {
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 6px;
}

.popular-category .card .card-title {
  width: 100%;
  margin: 0;
}

.popular-category .card .card-title h4 {
  text-decoration: none;
  border: none;
  font-size: 18px !important;
  font-weight: 500;
  color: #000;
  margin: 0;
  font-family: "Federo", sans-serif;
  line-height: normal;
}

.popular-category h2 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  /* border-bottom: 1px solid #787878; */
  padding-bottom: 10px;
  margin: 0;
  margin-bottom: 0;
  font-family: "Federo", sans-serif;
  height: 60px;
  padding: 20px 0;
}

main.create-ad label {
  display: block;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  margin-bottom: 10px;
font-family: "Federo", sans-serif;
}

.box-background-color {
  padding: 0;
  border-radius: 10px;
}

main.create-ad .profile-dashboard {
  background-color: #fff;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 5px;
  border-radius: 10px;
  height: 100%;
}

main.create-ad .profile-dashboard ul li a {
  font-size: 16px;
  color: #000;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 10px;
}

main.create-ad .profile-dashboard ul li a img {
  width: 25px;
  height: 25px;
}

main.create-ad {
  margin: 32px 0;
}

main.create-ad .profile-dashboard ul li a:active {
  background: transparent !important;
}

main.create-ad .profile-dashboard ul li:focus-visible {
  border: none;
  outline: none;
}

main.create-ad .profile-dashboard ul li a span {
    line-height: none;
    font-family: "Federo", sans-serif;
}

main.create-ad .profile-dashboard ul li{
  transition:all .3s linear;
}

main.create-ad .profile-dashboard ul li:hover {
  background-color: #FFB200;
  border-radius: 5px;
  color: #fff;
}

main.create-ad .profile-dashboard ul li:hover span {
  color: #fff;
}

.slider-section .slider-bottom-wrapper {
    margin-bottom: 40px;
}

main.create-ad form input {
  border: 1px solid #787878 !important;
  font-size: 14px;
  padding: 10px;
  border-radius: 5px !important;
  font-weight: 500;
  color: #000 !important;
  line-height: normal;
  width: 100%;
  font-family: "Federo", sans-serif;
}

main.create-ad form .form-group {
  margin-bottom: 10px;
}

main.create-ad form .form-group span.selection span.select2-selection {
  min-height: 39px;
  display: flex;
  align-items: center;
  padding: 6px;
  color: #757575;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid #787878;
  font-family: "Federo", sans-serif;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield !important;
}

main.create-ad form .form-group textarea {
  padding: 15px;
  color: #757575;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid #787878;
  border-radius: 10px !important;
    height: 45px;
    font-family: "Federo", sans-serif;
}

main.create-ad textarea#description {
  height: 80px;
}

main.create-ad form .form-group input#negotiable {
  visibility: visible;
}

main.create-ad form .form-group.ad_type {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
}

main.create-ad form .form-group.ad_type input {
    width: auto;
    margin-left: 60px;
}

main.create-ad form .form-group.ad_type :nth-child(2) {
    margin-left: 0px !important;
}

main.create-ad form .form-group.ad_type label {
  display: block;
  width: 100%;
}

main.create-ad form button {
  padding: 15px 25px;
  font-weight: 600;
  width: auto;
  line-height: normal;
  letter-spacing: normal;
  border: 0;
  min-height: auto;
  border-radius: 5px;
  background-color: #FFB200;
  color: #000;
}

main.create-ad form .form-group.used_time input {
  width: auto;
  font-size: 16px !important;
  font-weight: 600 !important;
}

main.create-ad form .form-group.used_time {
  font-size: 16px !important;
  font-weight: 600 !important;
}

section.shop-page-section .ad-filtering.card {
  background-color: #fff;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 3px;
  border-radius: 10px;
  height: 100%;
  min-height: 100% !important;
}

section.shop-page-section {
  margin: 0;
  margin-bottom: 40px;
}

section.shop-page-section .product-show {
  margin-bottom: 15px;
}

section.shop-page-section .short-by {
  margin-bottom: 15px;
}

section.shop-page-section .filter-location {
  margin-bottom: 20px;
  margin-top: 20px;
  cursor: pointer;
}

section.shop-page-section .filter-category {
  margin-bottom: 15px;
  cursor: pointer;
}

section.shop-page-section .ad-filtering label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000;
  font-family: "Federo", sans-serif;
}

section.shop-page-section .ad-filtering select {
  border: 1px solid #000000 !important;
  font-size: 16px;
  padding: 10px;
  border-radius: 5px !important;
  font-weight: 500;
  color: #000 !important;
  line-height: normal;
  width: 100%;
  font-family: "Federo", sans-serif;
}

section.shop-page-section .ad-filtering h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: "Federo", sans-serif;
}

.card.product-card {
  background-color: #fff;
  padding: 10px;
  border: 1px solid #ddd !Important;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 5px;
}

.card.product-card .card-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: #731695;
  line-height: normal;
  margin: 0;
  padding: 0;
}

.card.product-card .card-content p {
  font-size: 16px;
  font-weight: 500;
  font-family: "Federo", sans-serif;
  margin-top: 0 !important;
  padding: 0;
  color: #000;
  margin: 4px 0;
  line-height: 20px !important;
}

.card.product-card .card-content h5 {
  font-size: 15px;
  font-weight: 600;
  color: #731695;
  line-height: normal;
  margin: 0;
  padding: 0;
}

section.shop-page-section .card.product-card .card-body {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 20px;
  flex-direction: row;
  padding: 0;
}

section.shop-page-section .card.product-card img {
  width: 100px;
  border-radius: 5px;
}

section.shop-page-section .ad-filtering ul.parent_menu li label {
  font-weight: 400;
  color: #000;
}

main.edit-profile.create-ad .form-group label {
  margin-bottom: 8px;
}

main.create-ad form .profile-picture img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

main.create-ad form .profile-picture {
  margin-bottom: 25px;
}

header.header-top .social-info .authentication img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

main.edit-profile.create-ad form h6 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  line-height: normal;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

main.create-ad.my-post-list table.table tr th {
  font-size: 14px;
  border: 1px solid #757575;
  line-height: normal;
  margin: 0;
  text-align: center;
}

main.create-ad.my-post-list table.table tr td {
  font-size: 14px;
  border: 1px solid #757575;
  line-height: normal;
  margin: 0;
  text-align: center;
}

main.create-ad.my-post-list table.table tr td img{
  width: 70px;
  border-radius: 10px;
}

main.create-ad.my-post-list table.table tr td i {
  font-size: 16px;
  margin: 0 5px;
  color: #FFB200;
}

.product-save-list table.table tr th {
  font-size: 14px;
  border: 1px solid #757575;
  line-height: normal;
  margin: 0;
  text-align: center;
}

.product-save-list table.table tr td {
  font-size: 14px;
  border: 1px solid #757575;
  line-height: normal;
  margin: 0;
  text-align: center;
}

.product-save-list table.table table.table tr td img{
  width: 70px;
  border-radius: 10px;
}

.product-save-list table.table table.table tr td i {
  font-size: 16px;
  margin: 0 5px;
  color: #FFB200;
}

main.login-section img {
    width: 100%;
    min-height: 400px;
    border-radius: 10px;
    margin: 20px;
    margin-top: 35px;

}

main.login-section h3 {
  text-align: center;
  font-size: 18px !important;
  font-weight: 600;
  color: #000;
  padding-bottom: 0px;
  margin: 0;
  margin-top: 25px;
  font-family: "Federo", sans-serif;
}

main.login-section .form-group label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 7px;
  line-height: normal;
  display: block;
}

main.main-container.search-html .container {
    padding: 0;
}

main.login-section .form-group input {
  border: 1px solid #000000 !important;
  font-size: 16px;
  padding: 10px;
  font-weight: 500;
  color: #000 !important;
  line-height: normal;
  width: 100%;
}

main.login-section .form-group {
    margin-bottom: 20px;
    padding: 0 50px;
}

main.login-section .form-group button.btn {
  padding: 10px 20px;
  border-radius: 5px;
  color: #000;
  line-height: normal;
  background-color: #ddd;
  box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 5px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
}

main.login-section .social-login {
    margin-top: 25px !important;
}

main.login-section .social-login h5 {
  text-align: center;
  margin: 15px 0;
  font-size: 18px !important;
  font-weight: 600;
  color: #000;
  line-height: normal;
}

main.login-section .social-login .social-login-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  line-height: normal;
  flex-direction: row;
}

main.login-section .social-login .social-login-items a {
  background: #FFB200;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  line-height: normal;
}

main.login-section {
  margin: 15px 0;
}

.otp-card.box-background-color {
  max-width: 600px;
  margin: 25px auto;
  padding: 25px;
}

.otp-card.box-background-color h3 {
  text-align: center;
  margin: 15px 0;
  font-size: 18px !important;
  font-weight: 600;
  color: #000;
  line-height: normal;
  font-family: "Federo", sans-serif;
}

.otp-card.box-background-color p {
  text-align: center;
  margin: 25px 0;
  font-size: 16px !important;
  font-weight: 500;
  color: #000;
  line-height: normal;
  margin-top: 0;
}

.otp-card.box-background-color .otp-input {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 0;
  max-width: 250px;
  margin: 25px auto;
  gap: 10px;
}

.otp-card.box-background-color .otp-input input {
  border: 2px solid #55525c;
  padding: 8px 0;
  border-radius: 10px !important;
  font-size: 25px;
  text-align: center;
  font-weight: 700;
}

.otp-card.box-background-color button.btn {
  padding: 15px 45px;
  font-weight: 600;
  font-size: 0px;
  width: auto;
  line-height: normal;
  letter-spacing: normal;
  border: 0;
  min-height: auto;
  border-radius: 5px;
  background-color: #ddd;
  color: #000;
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  display: flex;
}

.select {
  width: 100% !important;
}

nav.breadcrumb-area ol li svg {
  width: 20px;
  height: 20px;
  color: #000;
  line-height: normal;
}

nav.breadcrumb-area ol li {
  display: inline-flex;
  list-style: none;
  margin: 5px 0;
}

nav.breadcrumb-area ol {
    padding: 4px 10px;
    background: #ddd;
    margin: 10px;
    margin-top: 0px;
    border-radius: 5px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
}

nav.breadcrumb-area ol span {
    margin: 0 5px;
    color: #000;
  font-size: 16px;
  font-weight: 400;
}

nav.breadcrumb-area ol li a {
  color: #000;
  font-size: 15px;
  font-weight: 400;
}

main.product-details .seller-information ul li {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: row;
  padding: 0;
}

main.product-details .seller-information ul li  p{
  width: 100%;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  padding: 0 5px;
  line-height: 35px;
}

main.product-details .seller-information ul li  p:first-of-type {
  border-right: 2px dashed #99999975;
  margin-right: 10px;
  font-family: "Federo", sans-serif;
  padding-left: 12px;
  line-height: 35px;
}

main.product-details .seller-information {
  border-radius: 10px;
  margin-bottom: 36px;
  box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 5px;
}

main.product-details .seller-information ul{
  margin: 0;
  padding: 0;
}

main.login-section form {
    margin-top: 25px;
    padding: 47px;
    padding-top: 0;
}

main.product-details .seller-information h4 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  background: #ddd;
  padding: 17px 10px;
  font-family: "Federo", sans-serif;
  color: #196534;
  /* letter-spacing: .25px; */
  height: 60px;
  line-height: 25px;
  margin-bottom: 0;
  border-radius: 10px 10px 0 0;
}

main.product-details .product-info .title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: normal;
  letter-spacing: .75px;
}

main.product-details .product-info p {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  line-height: 7px;
}

main.product-details .product-info h5.description-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: normal;
  letter-spacing: .75px;
}

main.product-details .product-info .product-price-group h4{
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: normal;
  letter-spacing: normal;
}

main.product-details .product-info .product-price-group h6{
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: normal;
  letter-spacing: normal;
}

main.product-details .product-info ul {
  padding: 0;
  margin: 0;
}

main.product-details .product-info .product-aditional-info{
      border-radius: 10px;
      margin-bottom: 40px;
      min-height: 380px;
      box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 5px;
}

main.product-details .product-info .product-aditional-info h4 {
  font-size: 22px;
  font-weight: 600;
  font-family: "Federo", sans-serif;
  text-align: center;
  padding: 17px 10px;
  color: #196534;
  background: #ddd;
  height: 60px;
  line-height: 25px;
  margin-bottom: 0;
  border-radius: 10px 10px 0 0;
}

main.product-details .product-info .product-aditional-info ul li {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: row;
  padding: 0;
  /* line-height: 35px; */
  /* height: 35px; */
}

main.product-details .product-info .product-aditional-info ul li:last-child {
    border-radius: 0 0 10px;
}

main.product-details .product-info .product-aditional-info ul li p {
  width: 100%;
  margin: 0;
  padding: 0px 5px;
  line-height: 35px;
  font-size: 16px;
  font-weight: 500;
}

main.product-details .product-info .product-aditional-info ul li p:first-of-type {
  border-right: 2px dashed #99999975;
  margin-right: 10px;
  font-family: "Federo", sans-serif;
  padding-left: 12px;
}

.share-product-info div#social-links ul li {
  display: inline-block;
  margin: 0px;
}

.share-product-info ul li span {
  background: #ddd;
  border-radius: 5px;
  color: #28c4ef;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 25px;
  box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 5px;
}

.share-product-info div#social-links h5 {
  font-size: 18px;
  font-weight: 700;
  padding: 10px 0;
  color: #000;
  margin: 0;
  font-family: "Federo", sans-serif;
}

main.product-details .share-product-info {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 15px;
}

main.product-details .share-product-info div#social-links {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  flex-direction: row;
}

main.product-details .share-product-info div#social-links ul {
  padding: 0;
  margin: 0;
}

main.product-details .share-product-info a.btn {
  font-size: 16px;
  height: auto;
  padding: 10px 20px;
  border: 0;
  font-weight: 700;
  line-height: normal;
  font-family: "Federo", sans-serif;
  border-radius: 5px;
  background-color: #ddd;
  color: #000;
  box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 5px;
}

.owl-nav button.owl-prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #000 !important;
}

.owl-nav button.owl-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: transparent;
  border-radius: 50%;
  color: #000 !important;
}

.owl-nav button i {
  font-size: 35px;
  color: #000 !important;
  opacity: .5;
  transition: all .3s linear;
  width: 35px;
  height: 35px;
  background: transparent;
  line-height: 35px;
  border-radius: 50%;
}

.owl-nav button:hover i {
  opacity: 1;
}

/* .similar-ad .card.product-card .card-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0530ad;
  margin: 0;
  line-height: normal;
} */

.similar-ad .card.product-card .card-content p {
  margin-top: 2px;
}

main.login-otp div#timer {
    text-align: center;
    margin-top: 10px;
}

.sync2 .related-img img {
    width: 100px !important;
}

.similar-ad .card.product-card .card-content a.btn {
      display: block;
      background: #f7f7f7;
      border: 0;
      padding: 10px;
      border-radius: 5px;
      font-family: "Federo", sans-serif;
      font-size: 16px;
      font-weight: 600;
      text-transform: capitalize;
      color: #000;
      line-height: normal;
      box-shadow: rgba(0, 0, 0, 0.35) 2px 6px 8px;
      max-width: 70%;
      margin: 0 auto;
      margin-top: 20px;
}

main.product-details .product-img {
    box-shadow: none;
    margin-bottom: 0px;
    border: 1px solid #ddd !important;
    display: block;
    border-radius: 10px;
    width: auto !important;
    padding: 0;
    background: #ddd;
}

.similar-ad h4.title {
  font-size: 18px !important;
  font-weight: 600;
  color: #000 !important;
  padding: 29px 0;
  margin: 10px 0;
  margin-bottom: 0;
  height: 85px;
  margin-bottom: 0;
}

section.featured .card.product-card .card-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #196534;
  font-family: "federo", sans-serif !important;
  min-height: 60px;
  margin: 0;
  line-height: normal;
  margin-top: 10px;
}

section.featured .card.product-card .card-content p {
  margin-top: 2px;
  line-height: 16px;
}

header.header-top .search-bar-section .logo {
    display: none !important;
}

section.featured .card.product-card .card-content a.btn {
  display: block;
  background: #ddd;
  border: 0;
  padding: 10px;
  border-radius: 5px;
  font-family: "Federo", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  color: #000;
  line-height: normal;
  box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 5px;
    max-width: 70%;
    margin: 0 auto;
    margin-top: 20px;
}

section.featured h4.title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  padding-bottom: 10px;
  margin: 0;
  font-family: "Federo", sans-serif;
  margin-bottom: 0;
  height: 60px;
  padding: 20px;
}

.card.product-card .card-body {
  padding: 0;
}

.popular-category {
  margin: 40px 0;
}

main.product-details .similar-ad {
  margin: 40px 0;
}

.similar-ad .box-background-color {
  padding-bottom: 20px !important;
  padding-top: 0px !important;
  
}

a {
  text-decoration: none !important;
}

.card.product-card .card-content {
  padding-top: 10px;
}

.popular-category a.category-items {
  /* margin-bottom: 45px; */
  display: block;
}

main.create-ad form .form-group .additional-fields span.select2 {
  width: 100% !important;
}

main.create-ad form .form-group .additional-fields {
  margin-top: 15px !important;
}

section.shop-page-section h4.category-title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    padding-bottom: 10px;
    margin: 0;
    margin-bottom: 0;
    padding: 10px 10px;
    background: #ddd;
    margin: 10px;
    margin-top: 0px;
    border-radius: 5px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
}

.ad-filtering.card .active {
  display: block !important;
  padding-left: 0px;
}

section.shop-page-section .filter-location ul {
    padding-left: 0px;
}

footer.footer-section ul.social-items li a i {
  width: 40px;
  height: 40px;
  background: #ddd;
  text-align: center;
  line-height: 40px;
  border-radius: 5px;
  margin: 0;
  box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 5px;
}

footer.footer-section ul.social-items li {
  margin: 0;
}
 
.mobile-menu-content {
  position: absolute;
    top: 0;
    background: #fff;
    width: 40%;
    height: 100%;
    z-index: 9;
    display: none;
    transition: all .5s linear;
}

.mobile-menu-content .user-login {
  padding: 15px;
}

.mobile-menu-content .user-login h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  text-align: center;
  line-height: normal;
  padding-bottom: 10px;
  margin: 0;
  letter-spacing: normal;
}

.mobile-menu-content .user-login button.btn {
  background: #000;
  color: #fff;
  width: 100%;
  margin: 10px 0;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: normal;
  padding: 7px;
  border: 0;
}

.mobile-menu-content .user-login label {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin: 0;
  padding-bottom: 5px;
  line-height: normal;
}

.mobile-menu-content .user-login input {
  border: 1px solid #000;
  border-radius: 5px !important;
}

.mobile-menu-content .user-login .social-login h5 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  text-align: left;
  line-height: normal;
  padding-bottom: 10px;
  margin: 0;
  letter-spacing: normal;
}

.mobile-menu-content .user-login .social-login a {
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  line-height: normal;
  display: inline-block;
}

.mobile-menu-content .user-login .social-login {
  margin-top: 15px;
}

.mobile-menu-content ul li a {
  font-size: 16px;
  color: #000;
  font-weight: 600;
  padding: 10px 0;
  font-family: "Federo", sans-serif;
}

.mobile-menu-content ul {
  padding: 0 15px;
}

.mobile-menu-content .header-top .logo img {
  width: 150px;
}

.mobile-menu-content .header-top {
  display: flex;
  align-items: start;
  gap: 10px;
  padding: 10px;
  justify-content: space-between;
}

.mobile-menu-content .header-top button.remove {
  border: 0;
  background: transparent;
  color: #000;
  font-size: 25px;
}

.mobile-menu-content ul li a i {
  margin-right: 10px;
}

.mobile-menu-content.active {
  display: block;
  right: 0 !important;
}

header.header-top nav.navigation-bar .menu-items button:focus-visible{
  border: 0;
  outline: none;
}

header.header-top nav.navigation-bar .menu-items button:focus{
  border: 0;
  outline: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 37px !important;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.product-price-group {
  border-radius: 10px;
  margin-bottom: 36px;
  box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 5px;
}

main.product-details {
  padding: 0;
  padding-bottom: 0px !important;
}

.product-price-group h4 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  font-family: "Federo", sans-serif;
  padding: 17px 10px;
  background: #ddd;
  color: #196534;
  letter-spacing: .75px;
  height: 60px;
  margin-bottom: 0;
  line-height: 25px;
  border-radius: 10px 10px 0 0;
}

.product-price-group ul {
  padding: 0;
  margin: 0;
}

.product-price-group ul li {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: row;
  padding: 0;
}

.product-price-group ul li p:first-of-type {
  border-right: 2px dashed #99999975;
  margin-right: 10px;
  font-family: "Federo", sans-serif;
  padding-left: 12px;
}

.product-price-group ul li p {
  width: 100%;
  margin: 0;
  padding: 0 5px;
  font-size: 16px;
  font-weight: 500;
  line-height: 35px;
}




@media (max-width: 1575px) {
    footer.footer-section .visitor-count p {
        font-size: 15px !important;
    }
}



/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (max-width: 1450px) {
  
    /* CSS */
  
    header.header-top .social-info .authentication a {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 3px;
        justify-content: end;
    }
    
    div#ajax_view_product_list .card-images img {
        width: auto !important;
        border-radius: 10px;
    }
    
    section.shop-page-section .card.product-card .card-content h3 {
        margin-bottom: 15px;
        height: 31px  !important;
        
    }
    .card.product-card .card-content h3 {
        font-size: 16px  !important;
        font-weight: normal;
        color: #0530ad;
        font-family: "Concert One", sans-serif;
        margin: 0;
        line-height: normal;
    }
    
    .card.product-card .card-content h4 {
        font-size: 14px !important;
        font-weight: 600;
        color: #731695;
        line-height: normal;
        margin: 0;
        padding: 0;
        font-family: "Federo", sans-serif;
    }
    
    main.product-details h4.title {
        font-weight: 700;
        /* letter-spacing: 1px; */
        font-family: "Federo", sans-serif;
        color: #0530ad;
        font-size: 20px !important;
    }
    
    main.product-details p.sub-title {
        font-size: 14px !important;
        font-family: "Federo", sans-serif;
    }
    
   
    
    main.product-details .product-info .product-aditional-info1 {
        border-radius: 10px;
        /*min-height: 340px !important;*/
        min-height: 400px !important;
        box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 5px;
    }

    header.header-top .social-info div#gt-mordadam-43217984 {
        margin-top: 18px;
    }
    
    .authentication .user-profile {
        margin-bottom: 12px;
    }
    
    header.header-top .social-info button {
        margin-bottom: 0px;
        font-size: 16px !important;
    }

  
}

.seller-information.safty-tips li p {
    border-right: 0px !important;
}

section.footer-ad-section {
    margin-bottom: 0px;
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
  
  /* CSS */
  
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
  
  /* CSS */
  
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
  /* CSS */
  
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
  
  /* CSS */
  
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
  
  /* CSS */

  .popular-category .card .card-title h4 {
    font-weight: 600;
    font-size: 14px !important;
  }

  .popular-category .card {
    padding: 5px;
  }

  footer.footer-section h4 {
    margin-top: 25px;
    font-weight: 700 !important;
    font-size: 18px !important;
  }

  footer.footer-section ul li a {
    font-size: 15px;
    font-weight: 700;
    color: #cbcbcb;
  }
  
}

section.contact-us-page {
  margin: 50px 0;
}

section.contact-us-page .card {
  border: 0;
}

section.contact-us-page .card .card-img svg {
  width: 100px;
  fill: #fff;
  stroke: #FFB20059;
}

section.contact-us-page .card .card-img {
  margin-bottom: 10px;
  text-align: right;
}

section.contact-us-page .card .card-content p {
  margin: 5px 0;
}

section.contact-us-page .card .card-content i {
  border-radius: 2px;
  width: 25px;
  height: 25px;
  background: #dddddd73;
  text-align: center;
  line-height: 30px;
  font-size: 15px;
}

section.contact-us-page .google-map iframe {
  width: 100%;
  height: 350px;
}

section.contact-us-page .form-group {
  margin-bottom: 15px;
}

section.contact-us-page .form-group label{
  margin-bottom: 10px;
}

section.contact-us-page form button {
  font-size: 16px;
  height: auto;
  padding: 10px 20px;
  border: 0;
  font-weight: 700;
  line-height: normal;
  border-radius: 4px;
  background-color: #FFB200;
  color: #000;
  letter-spacing: 0.75px;
}

section.contact-us-page .section-title h4 {
  font-weight: 700;
  margin-top: 20px;
  color: #000;
  text-align: left;
  font-family: "Federo", sans-serif  !important;
}

.location-modal {
  position: absolute;
  right: -290px;
  top: 0;
  height: 100%;
  background: #fff;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  display: none;
  transition: all 2s ease;
  min-width: 300px;
  z-index: 9;
}

.location-modal.\.active-modal {
  right: 0;
  display: block;
}

.location-modal .modal-header {
  padding: 0;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding-bottom: 5px;
}

.location-modal .modal-header h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0;
  line-height: normal;
  font-family: "Federo", sans-serif  !important;
}

.location-modal ul.parent_menu {
  padding: 0;
  margin-bottom: 15px;
}

.location-modal ul.parent_menu ul {
  padding: 0;
  padding-left: 5px;
}

.location-modal ul.parent_menu li {
  padding: 3px 0;
}

.location-modal a.btn {
  background: #ddd;
  font-weight: 600;
  font-size: 16px !important;
  color: #000;
  box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 5px;
}

.location-modal span.close-modal {
  cursor: pointer;
  position: relative;
}

header.header-top .top-bar-ad i {
  position: absolute;
  top: 5px;
  right: 5px;
  color: #ffffff;
  cursor: pointer;
}

.card.product-card .card-body .card-images img {
    margin: 0 auto;
    width: 100% !important;
    border-radius: 10px;
    /* min-height: 240px; */
}

.category-wise-product-show .owl-carousel .owl-theme. fetured-product.card.product-card.card-body.card-images img {
    margin: 0 auto !important;
    width: 100% !important;
    border-radius: 10px !important;
    /* min-height: 240px; */
}


/* section.shop-page-section .card.product-card .card-body .card-images {
  min-width: 100px;
  width: 200px;
  text-align: center;
} */


main.product-details .container-fluid {
    padding: 0;
}


main.product-details .product-img i {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: #ffffffc2;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    color: #FFB200;
}

.card.product-card .card-body .card-images {
  position: relative;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px 10px 0 0;
  text-align: center;
  /* min-height: 240px !important; */
  /* height: 240px !important; */
  border: 1px solid #ddd;
}

.card.product-card .card-body .card-images .product-label {
  position: absolute;
  left: 0;
  top: 0;
}

.card.product-card .card-body .card-images .product-label img {
    width: 50px !important;
    height: 50px !important;
    min-height: 50px !important;
}

/*.swiper-slide img.slider-img {*/
/*  max-height: 400px;*/
/*}*/

/*.swiper-slide {*/
/*    width: 658px !important;*/
/*}*/

.gallery-thumbs .swiper-slide-thumb-active .swiper-slide-active{
    border-radius: 10px !ipmortant;
}

.gallery-thumbs .swiper-slide-thumb-active{
    transform: unset !important;
}

.gallery-top .swiper-slide img {
    width: 100%;
    height: 585px;      
    object-fit: cover; 
}

.gallery-thumbs .swiper-slide img {
    width: 100%;
    height: 120px; 
    object-fit: cover;
}
.vbox-container{
    bottom: auto !important;
}

.vbox-next, .vbox-prev {
    top: 25% !important;
}

.swiper.hero-slider {
    height: 100% !important;
}

.no-products {
  color: red;
  font-style: italic;
}

header.header-top .top-bar-ad {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

header.header-top .top-bar-ad .logo img {
  width: 215px;
  max-height: 120px;
}

header.header-top nav.navigation-bar .search-bar-section {
  justify-content: end;
}

main.product-details h4.title {
  font-weight: 600;
  letter-spacing: 0.75px;
  font-family: "Federo", sans-serif;
  color: #196534;
  font-size: 22px;
}

main.product-details .product-info .product-aditional-info1 h4 {
        font-size: 22px;
        font-weight: 600;
        font-family: "Federo", sans-serif;
        text-align: center;
        padding: 17px 10px;
        color: #196534;
        background: #ddd;
        margin-bottom: 0;
        line-height: 25px;
        height: 60px;
        border-radius: 10px 10px 0 0;
}
main.product-details .product-info .product-aditional-info1 ul li p {
    width: 100%;
    margin: 0;
    padding: 5px 10px;
}

main.product-details .seller-information ul li:last-child {
    border-radius: 0 0 10px 10px;
}

.product-details-wrapper .product-details-gallery div#sync2 {
    margin-top: 10px !important;
}

main.main-container.search-html .container-fluid {
    padding: 0;
}

main.product-details .product-info .product-aditional-info1 {
    border-radius: 10px;
    /*min-height: 355px;*/
    min-height: 380px;
    box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 5px;
}
.owl-carousel .owl-item img {
     max-height: 560px !important; 
}
#sync1{
    border-radius: 10px;
    min-height: 553px;
    background: #fff;
    position: relative;
}

#sync1 .product-details-images {
    height: 555px;
    display: flex;
    align-items: start;
    border-radius: 10px;
    justify-content: center;
    background: #fff;
}

.product-details-gallery .owl-carousel .owl-stage-outer {
    position: unset !important;
}

.card.product-card .card-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #196534;
  font-family: "federo", sans-serif;
  margin: 0;
  line-height: normal;
}

.card.product-card .card-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffb200;
  line-height: 20px;
  margin: 0;
  padding: 0;
  font-family: "Federo", sans-serif;
  margin-top: 10px;
  
}

div#sync1 a.venobox.product-img img {
  width: 100% !important;
  overflow: hidden;
  max-height: 555px;
}

div#ajax_view_product_list .card-images {
  margin: 0px !important;
  min-height: auto !Important;
  border-radius: 10px;
}

section.shop-page-section .card.product-card .card-images {
  margin: 0px !important;
}

img {
  max-width: 100%;
}

/*.slider-section img.slider-section-ad {*/
/*    min-height: 239px;*/
/*}*/

header.header-top .top-bar-ad .advataisment-1 {
    width: 970px;
    height: 90px;
    background: #ddd;
    border-radius: 10px;
}

.popular-category .card .card-images {
  width: 80px;
}

section.shop-page-section .show-all-ads .show-all-product .card.product-card {
    margin-bottom: 20px;
}

main.product-details ul li p span {
  font-size: 16px;
  font-weight: 500;
  font-family: "Federo", sans-serif;
}

main.product-details .product-info .product-aditional-info1 article {
  font-size: 16px;
    padding: 20px 20px;
    margin-bottom: 0;
    font-family: "Federo", sans-serif;
    line-height: 35px;
    font-weight: 500;
}

main.product-details p.sub-title {
  font-size: 16px;
  font-family: "Federo", sans-serif;
}

.fetured-product .card.product-card {
  position: relative;
  margin: 0;
  margin-bottom: 20px;
  padding: 0px;
    box-shadow: none;
}

.fetured-product .card.product-card .card-body {
  display: flex;
  flex-direction: column !important;
}

.fetured-product .card.product-card .card-body .card-images {
  width: 100% !important;
  border-radius: 10px;
}

.fetured-product .card.product-card .card-body .card-images img {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 10px !important;
}

.fetured-product .card.product-card .card-content {
  position: absolute;
  bottom: 0;
  width: 96% !important;
  max-width: 96% !important;
  left: 0;
  padding: 30px !important;
  margin: 15px;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgb(0 0 0 / 0%) 50%);
}

div#ajax_view_product_list .card-images img {
    width: auto;
    height: 169px;
    border-radius: 10px;
}

.fetured-product .card.product-card .card-content h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.fetured-product .card.product-card .card-content p {
  font-size: 14px;
  color: #fff;
}

.fetured-product .card.product-card .card-content h4 {
  font-size: 22px;
}

div#ajax_view_product_list .card.product-card {
  margin: 0px;
  margin-bottom: 20px;
}

div#main_search_pagination nav ul {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: row;
}

div#main_search_pagination nav ul li span {
  padding: 10px 8px;
  display: block;
  font-size: 14px;
  color: #000;
  line-height: normal;
}

div#main_search_pagination nav ul li a:hover {
  color: #FFB200;
}

section.shop-page-section .card.product-card .card-content {
  padding: 0px;
  max-width: 70%;
  width: 70%;
}

section.shop-page-section .card.product-card .card-content p {
  line-height: 16px;
  font-family: "Federo", sans-serif;
}

section.shop-page-section .card.product-card .card-content h4 {
  margin-top: 18px;
}

section.shop-page-section .card.product-card .card-content h3 {
  margin-bottom: 15px;
  height: 48px;
}

section.shop-page-section .ad-filtering.card ul li label {
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}

section.shop-page-section .card.product-card .card-body .card-images {
  width: 35%;
}

section.shop-page-section .filter-category ul li input:hover {
    cursor: pointer;
}

section.shop-page-section .filter-location ul li input:hover {
    cursor: pointer;
}


header.header-top .search-bar-section .menu-items.mobile-toggle {
  display: none;
}

.similar-ad .card.product-card .card-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #196534;
  margin: 0;
  min-height: 60px;
  line-height: normal;
}

/*.similar-ad .card.product-card .card-content h4 {*/
/*  font-size: 20px;*/
/*  font-weight: 600;*/
/*  color: #731695;*/
/*  line-height: normal;*/
/*  margin: 0;*/
/*  padding: 0;*/
/*}*/

main.product-details .box-background-color {
  padding: 20px;
  padding-bottom: 1px;
}

section.featured .box-background-color {
    padding: 20px 0;
    padding-top: 0;
    
}

.popular-category .box-background-color {
    padding: 20px;
    padding-top: 0;
}

.all-featured-product {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
    gap: 40px 15px;
    padding: 10px 20px;
}

.all-featured-category {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
}

main.main-container.search-html {
    max-width: 75%;
    margin: 0 auto;
    padding: 8px 0px;
}

.home-images-wrapper .home-images-one {
  margin-bottom: 10px;
}

.slider-bottom-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.product-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* .product-details-wrapper .product-details-info {
    display: grid;
    grid-template-columns: 334px auto;
    gap: 30px;
} */

section.shop-page-section .all-ads-containr {
    display: grid;
    grid-template-columns: 4fr 340px;
    gap: 20px;
}

section.shop-page-section .show-all-ads {
    display: grid;
    grid-template-columns: 340px  2fr;
    gap: 20px;
}


main.create-ad .row_1,
main.create-ad .row_7,
main.create-ad .row_8,
main.create-ad .row_14,
main.create-ad .row_15 {
    background-color: #e5e5e5;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 5px;
    border-radius: 10px;
    height: 100%;
    margin-right: 0px;
}




main.create-ad form .form-group.used_time span.select2 {
    width: 100% !important;
}


.main-loader {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9;
    background: #000000a1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

header.header-top .container-fluid {
    max-width: 75%;
    margin: 0 auto;
    padding: 0px;
}

footer.footer-section .container-fluid {
    max-width: 75%;
    margin: 0 auto;
}


/*main.product-details .product-img {*/

/*}*/

.category-wise-product-wrapper {
    display: grid;
    grid-template-columns: 4fr 340px;
    gap: 20px;
}

.category-wise-products .category-wise-product {
    display: grid;
    grid-template-columns: 340px 2fr;
    gap: 20px;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 0;
}

section.footer-section {
    margin: 40px 0;
    margin-bottom: 0;
}


.similar-ad .card.product-card{
  padding: 10px !important;
}

.image-preview-container {
  margin-top: 10px;
}

@keyframes rotateClockwise {
  from {
  transform: rotate(0deg);
  }
  to {
  transform: rotate(360deg);
  }
}

.loader_circle_1 {
  animation: rotateClockwise 1.5s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.ajax-loader {
  position: absolute;
  z-index: 99;
  background: #0000008c;
  width: 100%;
  height: 100%;
  display: none;
}

.ajax-loader svg {
  position: fixed;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  height: 100vh;
}

main.create-ad form .form-group.seller_address {
  display: none;
}

main.create-ad form .form-group.form-checkbox {
  display: flex;
  align-items: end;
  justify-content: start;
  text-align: start;
  gap: 10px;
}

main.create-ad form .form-group.form-checkbox label{
  margin: 0px !important;
  display: inline-block;
}

main.create-ad form .form-group.form-checkbox input {
  margin: 0px;
  display: inline-block !important;
  width: auto;
}

main.create-ad.product-save-list table tr td img {
    max-width: 100px;
    max-height: 100px;
}

.main-slider-wrapper .slider-wrapper {
  overflow: hidden;
}

.product-details-wrapper .product-details-gallery {
  overflow: hidden;
}

section.shop-page-section .show-all-ads .show-all-product {
  overflow: hidden;
}

.category-wise-products .category-wise-product .category-wise-product-show {
  overflow: hidden;
}

.main-slider-wrapper .home-images-wrapper {
    height: 100%;
}

.main-slider-wrapper .home-images-wrapper .home-images-one {
    height: 50%;
}

.main-slider-wrapper .home-images-wrapper .home-images-two {
    height: 50%;
}

.product-details-wrapper .product-details-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.container-fluid.slider-section {
    padding: 0;
}

.popular-category .container-fluid {
    padding: 0;
}

.slider-section .container-fluid {
    padding: 0;
}

section.featured .container-fluid {
    padding: 0;
}

section.footer-section .container-fluid {
    padding: 0;
}

footer.footer-section .container-fluid {
    padding: 0;
}

    footer.footer-section ul.social-items {
        display: flex;
        gap: 18px !important;
        flex-direction: row;
        margin-top: 14px;
    }
.bg-light{
    background-color: transparent !important;
}

div#ajax_view_product_list span.featured {
    position: absolute;
    right: -15px;
    
    font-size: 16px;
    background: #196534;
    padding: 6px 10px;
    border-radius: 5px;
    font-weight: 600;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 5px;
}

.mobail-card-title h3{
    display: none;
}

.product-details .similar-product .owl-stage-outer .owl-stage{
    padding: 10px 0px;
}
.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 6px 0;
  padding: 0 50px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #000; /* line color */
}

.divider:not(:empty)::before {
  margin-right: 10px;
}
.divider:not(:empty)::after {
  margin-left: 10px;
}
header.header-top .search-bar-section .menu-items ul li.active a
{
    color: #000 !important;
}
#resend-button{
    font-size: 15px !important;
    box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 5px;
}
div#ajax_view_product_list span.featured {
        
        transform: rotate(-90deg);
    }
.location-modal .modal-header .close-modal{
    background:transparent;
}

.menu_child_element{
    padding-left:30px;
}
section.shop-page-section .filter-category ul li {

    padding-left: 30px;

}
section.shop-page-section .filter-category ul li ul.active li {

    padding-left: 17px;

}
section.shop-page-section .filter-location ul.parent_menu li.menu_child_element ul li label
{
    font-size: 15px ! Important;
}
section.shop-page-section .filter-location ul.parent_menu li.menu_child_element ul li .sub-cat
{
    font-size: 15px ! Important;
}
section.shop-page-section .filter-category ul li ul.active li .sub-cat lebel {

    font-size: 15px ! Important;

}
section.shop-page-section .filter-category ul li ul.active li label {
    font-size: 15px ;
}



.ad-filtering select:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.ad-filtering select.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: DodgerBlue;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
main.product-details .seller-information ul li p a {
   color:#196534 !important;
}

header.header-top .top-bar-ad.top-ads {
    margin-left: 35px;
    margin-right: 0px;
}
.close-modal{
    cursor: pointer;
}
.vbox-child{
    background: none !important;
}

#whatsapp-button{
    bottom: 80px !important;
    right: 18px !important;
}