:root {
  --black: #000;
  --white: #fff;
}

.main-title {
  color: var(--black);
  font-size: 25px;
  font-weight: 700;
}

.main-link {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.24);
  padding: 8px 15px;
}

.main-link a {
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

header {
  padding: 20px 0;
}
header .logo 
{
  width: 250px;
  height: auto;
}
header .logo img
{
  width: 100%;
  max-width: 150px;
}
header .header-yardim {
  color: #1F1F1F;
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
}

header .header-login-button {
  padding: 8px 15px;
  background-color: #eee;
  border-radius: 4px;
  color: var(--black);
  font-weight: 700;
  font-size: 16px;
  border: 1px solid #eee;
}

header .header-login-button.cart {
  border: 1px solid #eee;
  background-color: #eee;
}

.header-search {
  padding: 10px 16px;
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 1px solid #afafaf;
  background-color: transparent;
  width: 330px;
  font-size: 18px;
  font-weight: 300;
}

.header-search:focus {
  outline: none;
}

.header-search-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  background-color: transparent;
  border: none;
}

.header-bottom .header-items {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
}

.header-bottom .header-items.indirim {
  padding: 4px 15px;;
  border-radius: 4px;
  background-color: #FFFCB6;
  font-weight: 700;
}

.blog-list .post-content{padding-bottom: 20px;
    width: 22%;
    float: left;
    margin-right: 20px;}
.post-content h2{font-size:25px;margin-bottom:15px;}

.header-bottom .header-items.markalar {
  background-color: #B6D8FF;
  padding: 4px 15px;
  border-radius: 4px;
  font-weight: 700;
}

.powered-by {
    display: none !important;
}

.header-bottom .header-items:hover+.absolute-dropdown {
  visibility: visible;
}

.header-div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  position: relative;
}

.header-div:hover .absolute-dropdown {
  visibility: visible;
}

.absolute-dropdown {
  position: absolute;
  top: 100%;
  visibility: hidden;
  left: 0;
  height: fit-content;
  width: 270px;
  z-index: 999;
  
}

.absolute-dropdown:hover {
  visibility: visible;
  transition: 0.6s;
}

.absolute-dropdown .dropdown-content {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  min-width: 240px;
  max-height: 300px;
  overflow: auto;
}
.absolute-dropdown .dropdown-content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(57, 62, 70, 0.12);
  background-color: #f5f5f5;
}
.absolute-dropdown .dropdown-content::-webkit-scrollbar {
  height: 2px;
  width: 5px;
  background-color: rgba(57, 62, 70, 0.12);
}
.absolute-dropdown .dropdown-content::-webkit-scrollbar-thumb {
  background-color: #555555;
  border-radius: 50px;
  border: 2px solid #555555;
}

.absolute-dropdown .dropdown-content .dropdown-list .dropdown-title {
  color: var(--black);
  font-weight: 500;
  font-size: 16px;
}

.absolute-dropdown .dropdown-content .dropdown-list .dropdown-items {
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  padding: 7px 7px 7px 0;
}

.absolute-dropdown .dropdown-content .dropdown-list .dropdown-items:hover {
  color: red;
}

.main-banner-img {
  height: 750px;
}

.main-banner-img img {
  height: 100%;
}

.category-banner {
  width: 100%;
  /* height: 150px; */
}

.category-banner img {
  max-width: 100%;
  width: 100%;
  /* height: 100%; */
  border-radius: 10px;
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-banner img:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.main-card {
  border-radius: 12px;
  background-color: var(--white);
  border: 1px solid #e7e7e7;
}

.main-card .image-box {
  width: 100%;
  /* height: 165px; */
}

.main-card.green .image-box img {
  height: 100%;
}

.main-card.blue .image-box img {
  height: 100%;
}

.main-card.purple .image-box img {
  height: 100%;
}

.main-card .image-box img {
  width: 100%;
  /* height: 100%; */
  max-width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.main-card .card-info {
  padding: 15px;
}

.main-card .card-info .bilgi {
  gap: 10px;
}

.main-card .product-name {
  color: #434343;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  display: -webkit-box;
  height: 38px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.main-card .product-category {
  color: #e5017d;
  font-size: 12px;
  font-weight: 600;
  line-height: 19px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.main-card .rating {
  color: #1F1F1F;
  font-size: 12px;
  font-weight: 500;
  line-height: 13px;
}

.main-card .price {
  color: #303030;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  text-align:center;
}

.main-card .main-card-button {
  padding: 10px;
  border-radius: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  width: 100%;
  border: none;
  background-color: #292929;
}

.main-card .product-badge {
  padding: 4px 8px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  position: absolute;
  top: 12px;
  left: 12px;
}

.main-card .product-badge.red {
  background-color: #FF222B;
}

.main-card .product-badge.green {
  background-color: #44C46F;
}

.main-card.green .main-card-button {
  background-color: #000000;
}

.main-card.green .product-name span {
  color: #000000;
  font-weight: 600;
}

.main-card.green .image-box {
  height: 150px;
}

.main-card.purple .main-card-button {
  background-color: #000000;
}

.main-card.purple .product-name span {
  color: #000000;
  font-weight: 600;
}

.main-card.purple .image-box {
  height: 150px;
}

.main-card.blue .main-card-button {
  background-color: #000000;
}

.main-card.blue .product-name span {
  color: #000000;
  font-weight: 600;
}

.main-card.blue .image-box {
  height: 150px;
}

.bg-product {
  height: 433px;
  background-repeat: no-repeat;
  width: 100%;
  min-width: 100%;
  background-size: cover;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.products-banner {
  width: 100%;
  height: 500px;
}

.products-banner img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  max-width: 100%;
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.products-banner a{
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}
.products-banner a:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.category-slider-items .image-box img {
  border-radius: 12px;
}

.category-slider-items .category-name {
  color: #292929;
  font-weight: 600;
}

.breadcumb {
  white-space: nowrap;
}

.breadcumb .items {
  color: #292929;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}

.owl-button {
  background-color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}

.owl-button:focus {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
}

.owl-button.customPrevBtn {
  left: -70px;
}

.owl-button.customNextBtn {
  right: -70px;
}

.owl-button.customPrevBtn1 {
  left: -70px;
}

.owl-button.customNextBtn1 {
  right: -70px;
}

.owl-button.customPrevBtn2 {
  left: -70px;
}

.owl-button.customNextBtn2 {
  right: -70px;
}

.main-banner-md {
  width: 100%;
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 5px;
}

.main-banner-md img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 5px;
}

.main-banner-md img:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.product-disc ul{list-style-type: disc;}

footer {
		xbackground-image: url(../../assets/img/footer.png);
  height:565px !important;
  width: 100%;
  background-repeat: round;
  background-size: auto;
}
footer a{color:black !important;}
footer .footer-one {
  padding: 30px 340px;
}

footer .footer-one .title {
  xcolor: var(--white);
  font-size: 24px;
  font-weight: 600;
  line-height: 50px;
}

footer .iletisime-gec {
  padding: 8px 30px;
  color: #303030;
  font-weight: 500;
  line-height: 28px;
  font-size: 18px;
  background-color: #fff;
  border-radius: 20px;
  border: solid 1px;
}

footer .logo {
  height: 150px;
}

footer .logo img {
  height: 100%;
}

footer .text-footer {
  color: #B6B8BC;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

footer .email-footer {
  color: #B6B8BC;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

footer .footer-title {
  xcolor: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

footer .footer-items {
  xcolor: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

footer .footer-menuler li a {
  xcolor: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.container.bosluklar {
  border-top: 1px solid #3D414C;
  padding-top: 30px;
}

.product-detail-brand {
  color: #1F1F1F;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.product-name-detail {
  color: #252C32;
  font-size: 34px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: -0.88px;
}

.reviews-text {
  color: #1F1F1F;
  font-size: 18px;
  font-weight: 400;
  line-height: 16px;
}

.hafiza-title {
  color: #252C32;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.hafiza-button {
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 8px 14px;
  background-color: var(--white);
  width: 100%;
  color: #252C32;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.096px;
}

.hafiza-button.satici {
  width: auto;
  font-size: 14px;
  padding: 16px;
}

.hafiza-button.satici span {
  font-size: 12px;
  font-weight: 700;
}

.hafiza-button.satici.active {
  padding: 16px;
}

.hafiza-button.active {
  border: 1px solid rgba(0, 0, 0, 0.4);
  color: #000;
  font-weight: 700;
}

.detail-renkler .form-check-input {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

.detail-renkler .form-check-input.yellow {
  background-color: #F8F384;
}

.detail-renkler .form-check-input.purple {
  background-color: #624D80;
}

.detail-renkler .form-check-input.green {
  background-color: #5DD7C8;
}

.detail-renkler .form-check-input.blue {
  background-color: #7AC7FF;
}

.detail-renkler .form-check-input.black {
  background-color: #191919;
}

.detail-renkler .form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' class='bi bi-check' viewBox='0 0 16 16'%3E%3Cpath d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z'/%3E%3C/svg%3E");
}

.detail-renkler .form-check-input.yellow:checked {
  background-color: #F8F384;
  border-color: #F8F384;
}

.detail-renkler .form-check-input.purple:checked {
  background-color: #624D80;
  border-color: #624D80;
}

.detail-renkler .form-check-input.green:checked {
  background-color: #5DD7C8;
  border-color: #5DD7C8;
}

.detail-renkler .form-check-input.blue:checked {
  background-color: #7AC7FF;
  border-color: #7AC7FF;
}

.detail-renkler .form-check-input.black:checked {
  background-color: #191919;
  border-color: #191919;
}

.detail-renkler .form-check-input:focus {
  box-shadow: none;
}

.sigorta-card {
  border-radius: 4px;
  background-color: #D8EEE2;
  width: 100%;
  padding: 15px;
}

.sigorta-card span {
  font-weight: 600;
  font-size: 14px;
  color: #000;
}

.sigorta-card .title {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.084px;
  text-transform: capitalize;
}

.sigorta-card .text {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.072px;
  text-transform: capitalize;
}

.product-detail-badge {
  border-radius: 4px;
  background-color: #FF222B;
  padding: 4px 8px;
  color: #FFF;
  font-weight: 700;
}

.product-price-discount {
  color: rgba(31, 31, 31, 0.4);
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
  text-decoration: line-through;
}

.product-price-new {
  color: #1F1F1F;
  font-size: 32px;
  font-weight: 700;
  line-height: 50px;
}

.sepete-ekle-button {
  border-radius: 5px;
  background-color: #303030;
  padding: 14px;
  width: 100%;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  border: none;
}

.product-fav-button {
  width: 47px;
  min-width: 47px;
  color: #000;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border: 1px solid #1F1F1F;
  border-radius: 5px;
}

.banka-card {
  border-radius: 4px;
  border: 1px solid #CBCBCB;
  padding: 5px 10px;
  width: 210px;
}

.detail-tabs .tabs-items {
  padding: 20px 70px;
  border: none;
  background-color: #fff;
  color: rgba(0, 0, 0, 0.7);
  font-size: 20px;
  font-weight: 500;
}

.detail-tabs .tabs-items.active {
  color: #000;
  font-weight: 700;
  border-bottom: 2px solid #000;
}

.slider-item-ratio .slider-container>*>* {
  border-radius: 12px;
  object-fit: contain !important;
}

.product-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, 1fr) !important;
}

.category-sidebar {
  border: 1px solid #eee;
  border-radius: 5px;
}

.category-sidebar .accordion {
  background-color: #F4F4F4;
}

.category-sidebar .accordion-item {
  border: none !important;
}

.category-sidebar .accordion-item .accordion-button {
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #eee;
}

.category-sidebar .accordion-item .accordion-button:focus {
  box-shadow: none;
}
 
.category-sidebar .accordion-item .accordion-button:focus {
  box-shadow: none;
  border-color: #eee;
}

.category-sidebar .accordion-item .accordion-button:not(.collapsed) {
  background: none;
  box-shadow: none;
}

.category-sidebar .sidebar-title {
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
}

.category-sidebar .kategoriler {
  padding: 0 15px;
}

.category-sidebar .kategoriler .sidebar-items {
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
}

.category-sidebar .accordion-body {
  border-bottom: 1px solid #EEE;
}

.category-sidebar .switch-text {
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
}

.category-sidebar .form-switch .form-check-input {
  width: 49px;
  height: 25px;
}

.category-sidebar .sidebar-search {
  border-radius: 3px;
  background: #C4C4C4;
  border: none;
  width: 50px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-sidebar .sidebar-items {
  color: #444;
  font-size: 14px;
  font-weight: 400;
}

.input-min-max {
  border-radius: 3px;
  border: 1px solid rgba(57, 62, 70, 0.15);
  background: rgba(57, 62, 70, 0.1);
}
.formlinefix
{
  background-color: #fff !important;
}
@media only screen and (max-width: 990px) {
  
  #orderBy {
      width: 96%;
  }
  header .logo
  {
    width: 100px ;
  }
  .mt-60 {
  margin-top: 370px !important;
}
  .bg-product{background-color:#ffffff !important;}
  .catSlider .sldinfo
  {
    margin-left: 110px !important;
  }
  .catSlider .gitbtn {
    top: 145px !important;
    margin-left: 110px !important;
}

  .cat-slider-fiyat {
    margin-top: 0;
    font-size: 16px;
}
  .arama-sonuclari .col-lg-3
{
  max-width: 50% !important ;
}
  .quantity .quantity-input
  {
    width: 100% !important;
  }
  .guvenilir-alisveris .cargo-badge {
    font-size: 10px !important;
    padding: 5px 6px !important;
  }

  .mt-50 {
    margin-top: 30px !important;
  }

  .main-card .product-name {
    -webkit-line-clamp: 2;
  }

  .logo {
    height: 30px;
  }

  .dropdown-toggle::after {
    display: none;
  }

  header .icons {
    color: #333333;
    font-size: 20px;
  }

  header .header-search {
    width: 100%;
  }

  .header-bottom {
    background-color: #262626;
    padding: 15px 0;
  }

  .bars-button {
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 16px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
  }

  .main-title {
    text-wrap: nowrap;
    font-size: 26px;
  }

  .mt-100 {
    margin-top: 50px !important;
  }

  .bg-product {
    background-image: none !important;
  }

  .mt-325-mobil {
    margin-top: 300px !important;
  }

  .mt-80 {
    margin-top: 40px !important;
  }

  .mt-400-mobil {
    margin-top: 370px  !important;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  footer {
    background-image: none;
    background-color: #ffffff;
    height: fit-content !important;
  }

  footer .footer-one .title {
    line-height: 30px;
    font-size: 24px;
  }

  footer .footer-one {
    padding: 30px;
  }

  .container.bosluklar {
    padding: 30px !important;
  }

  .main-banner-img {
    height: auto;
  }

  .main-card .image-box {
    height: auto;
  }

  .category-banner {
    height: auto;
  }

  .main-card.green .image-box {
    height: 140px;
  }

  .main-card.purple .image-box {
    height: 120px;
  }

  .main-card.blue .image-box {
    height: 120px;
  }

  .detail-tabs .tabs-items {
    padding: 10px 20px;
    font-size: 15px;
  }
  .detail-tabs .tabs-items.active 
  {
    font-weight: 500;
  }
  .main-card .product-category
  {
    height: 38px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; 
    overflow:hidden;

  }
  .product-name-detail {
    font-size: 30px;
    line-height: 38px;
  }
  #urunsirala tr {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
}
#orderBy, #cat-limit {
  padding: 4px 8px !important;
}
body {
  font-family: "Urbanist", sans-serif;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 100px;
}

.col-lg {
  width: 20% !important;
  max-width: 20% !important;
}

.product-fav-button.active {
  color: red;
}

.BreadCrumb {
  white-space: nowrap;
  color: #444;
  font-size: 14px;
  font-weight: 400;
}

.breadcrumb-menubar li a::after {
  content: " » ";
  margin-left: 10px;
}

.breadcrumb-menubar li:nth-last-child(-n + 2) a::after {
  content: "" !important;
}

.breadcrumb-menubar li a {
  text-wrap: nowrap;
  color: #444;
  font-size: 14px;
  font-weight: 400;
  flex-wrap: nowrap;
}

.sayfaIcleri {
  padding: 30px 0;
}

.kategoriler li a {
  color: #000;
  font-size: 15px;
  font-weight: 400;
}

.kategoriler ul {
  padding-left: 0 !important;
}

.kategori-urunler .page-title {
  display: flex;
  gap: 10px;
  font-size: 0;
  align-items: center;
}

.kategori-urunler .page-title {
  /* display: none; */
  font-size: 20px;
  font-weight: 500 !important;

}

.kategori-urunler .page-title .BreadCrumb {
  /* display: none; */
  font-size: 18px;
  font-weight: 500 !important;

}

.kategori-urunler .BreadCrumb {
  margin-bottom: 0 !important;
}

.mobile-kategori-offcanvas .menu-list-item .menu-link {
  color: #444;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(222, 227, 235, 1);
  padding: 10px 0;
}

.mobile-kategori-offcanvas .offcanvas-title {
  color: #444;
  font-size: 17px;
  font-weight: 600;
}

.mobile-kategori-offcanvas .menu-list-item .menu-link:focus {
  color: #ff6700;
}

.mobile-kategori-offcanvas .menu-list-item .mobile-menu-alt-link {
  color: #444;
  font-size: 14px;
  font-weight: 500;
}

.mobile-kategori-offcanvas .offcanvas-body {
  padding: 0 1rem !important;
}

.detayblok {
  margin-top: 20px;
}

.beden-button {
  color: var(--gray);
  font-size: 14px;
  font-weight: 400;
  padding: 7px 13px;
  border: 2px solid #e1e1e1;
  border-radius: 5px;
  background-color: var(--white);
}

.beden-button.active {
  border-color: var(--orange);
}

.beden-button.selected {
  border-color: var(--orange);
}

.page-title {
  overflow: auto !important;
}

.js-drawer.drawer {
  height: 100% !important;
}

.guvenilir-alisveris .cargo-badge {
  color: #000;
  font-size: 12px;
  font-weight: 700;
  line-height: 23px;
  background-color: #fff;
  padding: 5px 10px;
  border: 1px solid rgba(62, 62, 62, 0.25);
  border-radius: 5px;
}
.anasBaslik
{
  margin-bottom: 20px;
}
.mobil-mt-20
{
  margin-top: 20px !important;
}

.quantity {
  border-radius: 4px;
  border: 1px solid #a2a3b1;
  padding: 5px;
  /* Firefox */
}
.quantity .quantity-button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: transparent;
  border: none;
  font-size: 20px;
}
.quantity .quantity-input {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 34px;
  background-color: transparent;
}
.quantity .quantity-input:focus {
  outline: none;
}
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity input[type=number] {
  -moz-appearance: textfield;
}
.searchResultFilter li a 
{
  color: #222;
  font-size: 14px;
  font-weight: 500;
}

.UrunSecenekleriHeader{
  padding-left: 0;
}

ul.urunSecim{
  padding: 10px 0 !important;
}
.urunSecimTable{
  border: none !important;
}

.catSlider .viewport .overview li 
{
  border: 1px solid #EEE;
  padding: 15px;
}
.catSlider .viewport .overview li .sldimg
{
  border: 1px solid #EEE;
}
.sldinfo
{
  margin-left: 325px !important;
}
.gitbtn
{
  margin-left: 325px !important;
}
.catSlider .pagenum img
{
  width: 100% !important;
  height: 100%;
  max-width: 100%;
}
.arama-sonuclari .col-lg-3
{
  max-width: 25% ;
}
.page-inner-content .topresults 
{
  color: #222;
  font-size: 16px;
  font-weight: 500;
}
.product-grid-wrapper
{
  width: 20% !important;
  margin-bottom: 20px;
}
@media only screen and (max-width: 990px) {
  .catSlider .overview li {
    width: 100%;
    height: 200px !important;
}
.max-2-lines
{
  font-size: 15px;
}
  .product-grid-wrapper
  {
    width: 50% !important;
    margin-bottom: 20px;
  }
}
.detayblok .page-title 
{
  font-size: 30px;
  margin-bottom: 20px;
}

.filtrele-menu ul {
  margin-left: 0;
  padding-left: 0;
}
.category-banner-text{
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
}
.renkli-banner-title{
  position: absolute;
  bottom: 12px;
  left: 50%;
  font-weight: 600;
  color: #FFF;
  transform: translateX(-50%);
  font-size: 18px;
  text-align: center;
  width: 100%;
}


.kategori-listeleri .page-title
{
  font-size: 0px !important;
  margin-bottom: 20px;
}
.kategori-listeleri .page-title .BreadCrumb
{
  font-size: 20px;
  font-weight: 600 !important;
}
.kategori-listeleri .page-title .BreadCrumb:first-child{
  display: none !important;
}
#urunsirala
{
  display: block;
}
@media (max-width:990px) {
  .bg-product .col-6{
    padding:0;
    padding-right: 10px;
  }
  .bg-product .col-6:nth-child(odd){
    padding-right: 10px;
    padding-left: 10px;
  }
}
.etikets .etiket 
{
  color: #000;
  font-size: 14px;
}
#sp-iletisim-form 
{
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1* var(--bs-gutter-y));
  margin-right: calc(-.5* var(--bs-gutter-x));
  margin-left: calc(-.5* var(--bs-gutter-x));
}
#sp-iletisim-form .col-md-6:first-child
{
  padding-right: 3rem !important;
}
@media (max-width:990px)
{
  #sp-iletisim-form 
  {
    flex-direction: column;
  }
  #sp-iletisim-form .col-md-6
  {
    padding: 0 20px !important;
  }
}

@media (max-width:990px)
{
  html ::-webkit-resizer {
    background-color: #fff
  }
  
  html ::-webkit-scrollbar {
    width: 5px;
    overflow: visible;
    height:2px;
  }
  html ::-webkit-scrollbar-button {
    display: none
  }
  
  html ::-webkit-scrollbar-corner {
    background-color: #fff
  }
  html ::-webkit-scrollbar-thumb {
    background-color: rgba(138, 138, 138, .4);
    border-radius: 7px
  }
  html ::-webkit-scrollbar-track-piece {
    background-color: #fff
  }
}

.category-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 26px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1.7), rgba(0, 0, 0, 0));
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.tum-kategori-box {
  border: 1px solid #cacaca;
  background-color: #fff;
  border-radius: 5px;
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
  margin-bottom: 25px;
  overflow: hidden;
}

.tum-kategori-box .top {
  padding: 10px;
  border-bottom: 1px solid #e4e4e4;
  background: #B6D8FF;
  color: #000;
}

.tum-kategori-box .top a {
  color: #000;
  font-size: 17px;
  font-weight: 500;
}

.tum-kategori-box .body a {
  font-size: 15px;
  font-weight: 400;
  color: #444;
  line-height: 29px;
}

.tum-kategori-box .body-div {
  padding: 10px;
  height: 210px;
  max-height: 210px;
  overflow: auto;
}

.tum-kategori-box .body-div::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  background-color: transparent;
}

.tum-kategori-box .body-div::-webkit-scrollbar {
  width: 3px;
  height: 100%;
  background-color: transparent;
}

.tum-kategori-box .body-div::-webkit-scrollbar-thumb {
  background-color: #000000;
  border: 2px solid #000;
}

.urundetbadge {
    width: auto;
    height: auto;
    overflow: hidden;
    display: block;
    position: absolute;
    z-index: 19;
    top: 10px;
    left: 10px;
}
.urundetbadgelist {
    width: auto;
    height: auto;
    overflow: hidden;
    display: block;
    height: 58px;
    z-index: 19;
}
.badgekutu
{
	border-radius:5px;
	gap:10px;
	padding:3px 5px;
	color:#fff !important;
	float:left;
	margin-right:10px;
	margin-bottom:5px;
	font-size:12px;
}

.anindaGonderim{background-color: #4caf50;;}
.ucretsizKargo{background-color: #dc7a00;}
.yerliUrun{background-color: #0062dc;}
.yeniUrun{background-color: #86b7ef;}
.ucretsizkargoUrun{background-color: #b481f2;}
.indirimdeUrun{background-color: #f84646;} 
.tukendiUrun{background-color: red;} 

.filterCheck {
    text-transform: capitalize !important;
}

.whatsapp_tabela .wrap {
    float: left;
    border: 2px solid #dfdfdf;
    background: #fdfdfd;
    padding: 10px;
    border-radius: 5px;
    padding-left: 20px;
    padding-right: 27px;
    width: 100%;
}
.whatsappburn {
    display: flex;
}
.whatsappburn a {
    margin-top: -1px !important;
    height: 42px;
    display: flex;
    align-items: center;
}
.whatsappburn a {
    display: flex;
    justify-content: center;
    width: 100%;
    background: #4caf50;
    max-width: 525px;
    border-radius: 4px;
    padding: 17px;
    color: #fff;
    font-size: 17px;
    margin-bottom: 13px;
    margin-top: 4px;
}
.whatsappburn a p {
    font-size: 14px;
	padding-left: 13px;
}

.yerli-uretim
{
	display:none;
}

@media(max-width:990px)
{
  
.form-search-input{
  width: 100%;
  box-shadow: none;
  outline: none;
  border: 1px solid rgba(34, 34, 34, 1);
  padding: 10px 20px 10px 40px;
  border-radius: 10px;

}
.form-search-input::placeholder{
  font-style: normal !important;
}
.form-search-input:focus{
  box-shadow: none !important;
  backdrop-filter: none;
  border: 1px solid rgba(34, 34, 34, 1) !important;
  outline: none !important;
}
.form-search-input.active{
  border-radius: 10px 10px 0 0 !important;

}
.search-input-area .search-icon{
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.search-response{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  min-height: 100px;
  z-index: 99;
  background-color: #FFF;
  border-radius: 0 0 10px 10px;
  display: none;
  border: 1px solid rgb(34, 34, 34);
  overflow: auto;
  max-height: 300px;
}
.search-response.active{
  display: block;
  border-top: 0 !important;
}
.result-item{
  padding: 10px 5px;
  border-bottom: 1px solid #8e8e8e;
  display: flex;
  gap: 10px;
}
.result-item:last-child{
  border-bottom: 0 !important;
}

.result-item .product-name{
  font-size: 16px;
  text-overflow: ellipsis;
}
.result-item .product-cat{
  font-size: 14px;
  color: rgba(0, 0, 0, .6) !important;
}
#hizli-uye-menu a
{
  color: #000;
}
}