@import url(https://fonts.googleapis.com/css?family=Exo:300,400,500,600,700,800,900&display=swap&subset=latin-ext);
@import url(https://fonts.googleapis.com/css?family=Raleway:400,800);

@charset "UTF-8" .row {
  margin-right: -12px;
  margin-left: -12px;
}

.row>.col,
.row>[class*="col-"] {
  padding-right: 12px;
  padding-left: 12px;
}

.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.row.no-gutters>.col,
.row.no-gutters>[class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

@media (max-width: 991px) {
  body[class$="-active"] {
    cursor: pointer;
  }
}

@media (max-width: 991px) {
  body.navigation-active {
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%;
  }

  body.navigation-active {
    left: 280px;
  }

  body.navigation-active #mobile-navigation {
    left: 0;
    box-shadow: 2px 0 5px 0 rgb(0 0 0 / 0.1);
  }

  body.navigation-active .navigation-menu-overlay {
    display: block;
  }
}

#mobile-navigation {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  z-index: 999;
  transition: all 0.2s ease-in-out;
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

#mobile-navigation .mobile-navigation {
  overflow: hidden;
  position: relative;
}

#mobile-navigation li.has-sub-category>div {
  overflow: hidden;
}

#mobile-navigation li.has-sub-category.active>div {
  left: 0;
  overflow: visible;
}

#mobile-navigation a {
  padding: 1.5rem 1rem;
  color: #1c1c1c;
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #efefef;
}

#mobile-navigation a>div {
  display: flex;
  align-items: center;
}

#mobile-navigation a>div>div {
  margin-right: 1rem;
}

#mobile-navigation a>div>div img {
  width: 3rem;
  height: 3rem;
  object-fit: scale-down;
}

#mobile-navigation .category-level-2,
#mobile-navigation .category-level-3 {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  background: #fff;
  transition: all 0.2s ease-in-out;
  z-index: 2;
}

#mobile-navigation .category-level-2 ul,
#mobile-navigation .category-level-3 ul {
  padding: 0 1rem;
}

#mobile-navigation .category-level-2 ul>li>a,
#mobile-navigation .category-level-3 ul>li>a {
  padding: 1rem;
  border-color: #efefef;
  color: #1c1c1c;
  font-size: 1.3rem;
}

#mobile-navigation .mobile-navigation-back a {
  justify-content: flex-start;
}

#mobile-navigation .mobile-navigation-back a span {
  margin-left: 1rem;
}

#mobile-navigation .mobile-navigation-back a i {
  font-size: 1rem;
}

.shopping-information-cart {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1100;
  width: 100%;
  height: 100%;
  background-color: rgb(255 255 255 / 0.9);
}

.shopping-information-cart .shopping-information-cart-inside {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  color: #1c1c1c;
  font-size: 2.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.shopping-information-cart .shopping-information-cart-inside svg {
  flex: 0 0 5.6rem;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin-right: 2rem;
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.shopping-information-cart .shopping-information-cart-inside svg circle {
  float: left;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #ff5700;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) 2;
}

.shopping-information-cart .shopping-information-cart-inside svg path {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {

  0%,
  100% {
    transform: none;
  }

  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0 0 0 30px #ff5700;
  }
}

.promotion-wrapper {
  margin-bottom: 3.2rem;
}

.promotion-wrapper .promotion-content .promotion-row {
  border: 1px solid #efefef;
  margin-top: -1px;
}

.promotion-wrapper .promotion-content .promotion-row:first-child {
  margin-top: 0;
}

.promotion-wrapper .promotion-content .promotion-row:nth-child(odd) {
  background: #fafafa;
}

.promotion-wrapper .promotion-content .promotion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.promotion-wrapper .promotion-content .promotion-icon i {
  font-size: 3rem;
  color: #1c1c1c;
}

@media (max-width: 991px) {
  .promotion-wrapper .promotion-content .promotion-icon i {
    font-size: 2.2rem;
  }
}

.promotion-wrapper .promotion-content .promotion-info {
  height: 100%;
  padding: 1rem 0;
}

.promotion-wrapper .promotion-content .promotion-info>div {
  margin-bottom: 0.8rem;
}

.promotion-wrapper .promotion-content .promotion-info>div strong {
  font-size: 1.4rem;
}

.promotion-wrapper .promotion-content .promotion-info>span {
  display: block;
  max-height: 7.5rem;
  overflow-y: auto;
}

.promotion-wrapper .promotion-content .promotion-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem;
}

.tabbed-midblocks-container {
  margin-bottom: 2rem;
}

.tabbed-midblocks-container .tabbed-midblocks-header {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
}

.tabbed-midblocks-container .tabbed-midblocks-header>a {
  width: 4rem;
  height: 4rem;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: #ff5700;
  color: #fff;
}

@media (max-width: 991px) {
  .tabbed-midblocks-container .tabbed-midblocks-header>a {
    display: flex;
  }
}

.tabbed-midblocks-container .tabbed-midblocks-header>div {
  display: flex;
  flex: auto;
}

.tabbed-midblocks-container .tabbed-midblocks-header>div [data-tab-index] {
  flex: 0 0 20%;
  cursor: pointer;
  position: relative;
}

.tabbed-midblocks-container .tabbed-midblocks-header>div [data-tab-index]>span {
  height: 4rem;
  color: #1c1c1c;
  border-bottom: 3px solid #fff0;
  font-size: 1.6rem;
  flex: 0 0 100%;
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .tabbed-midblocks-container .tabbed-midblocks-header>div [data-tab-index] {
    flex: 0 0 100%;
    display: none;
  }

  .tabbed-midblocks-container .tabbed-midblocks-header>div [data-tab-index]>span {
    justify-content: center;
  }
}

.tabbed-midblocks-container .tabbed-midblocks-header>div [data-tab-index].active {
  display: flex;
}

.tabbed-midblocks-container .tabbed-midblocks-header>div [data-tab-index].active>span {
  border-color: #ff5700;
  color: #1c1c1c;
}

.tabbed-midblocks-container .tabbed-midblock-content {
  margin-bottom: 1rem;
}

.tabbed-midblocks-container .tabbed-midblock-content>[data-tab-content] {
  display: none;
}

.tabbed-midblocks-container .tabbed-midblock-content>[data-tab-content].active {
  display: block;
}

.tabbed-midblocks-container .tabbed-midblock-bottom {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.tabbed-midblocks-container .tabbed-midblock-bottom a {
  width: 2.4rem;
  height: 2.4rem;
  margin: 0 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff5700;
  color: #fff;
}

.tabbed-midblocks-container .tabbed-midblock-bottom a.passive {
  pointer-events: none;
  background-color: #eee;
  color: gray;
}

.mid-blocks-wrapper .mid-blocks-container .mid-blocks-header {
  margin-bottom: 2rem;
}

.mid-blocks-wrapper .mid-blocks-container .mid-blocks-header .mid-blocks-title {
  height: 4rem;
  color: #1c1c1c;
  border-bottom: 3px solid #ff5700;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}

.zoomContainer .zoomWindow {
  background-color: #fff;
}

@media (max-width: 991px) {
  .zoomContainer {
    display: none !important;
  }
}

.product-tags {
  display: flex;
}

.product-tags .product-tags-title {
  padding: 0.3rem 0;
  margin-right: 1.6rem;
  color: #1c1c1c;
  font-weight: 700;
  flex: 0 0 auto;
}

.product-tags .product-tags-content {
  display: flex;
  flex-wrap: wrap;
}

.product-tags .product-tags-content a {
  display: block;
  padding: 0.3rem 1.6rem;
  border-radius: 0.4rem;
  background: #fff;
  color: #1c1c1c;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
  border: 1px solid #efefef;
}

@media (max-width: 991px) {
  .product-tags {
    display: block;
  }
}

.fancybox-slide .fancybox-image-wrap {
  background: #fff !important;
}

body {
  font-size: 1.2rem;
  font-family: "Exo", sans-serif;
  color: #1c1c1c;
  background: #fff;
  transition: left 0.2s ease-in-out, right 0.2s ease-in-out;
  position: relative;
  left: 0;
}

@media (min-width: 992px) {
  body.navigation-active .navigation-menu-overlay {
    display: block;
  }
}

@media (min-width: 992px) {
  body.sticked .header-middle {
    box-shadow: 0 3px 3px rgb(0 0 0 / 0.16);
  }
}

body.current-page-default-entry .header-bottom {
  margin-bottom: 0;
}

body.cart-content-active .header-top,
body.cart-content-active .header-slogan,
body.cart-content-active .header-middle,
body.cart-content-active .header-bottom,
body.filter-menu-active .header-top,
body.filter-menu-active .header-slogan,
body.filter-menu-active .header-middle,
body.filter-menu-active .header-bottom,
body.user-menu-welcome-active .header-top,
body.user-menu-welcome-active .header-slogan,
body.user-menu-welcome-active .header-middle,
body.user-menu-welcome-active .header-bottom,
body.user-menu-content-active .header-top,
body.user-menu-content-active .header-slogan,
body.user-menu-content-active .header-middle,
body.user-menu-content-active .header-bottom {
  z-index: 97;
}

@media (max-width: 991px) {

  body.navigation-active .header-top,
  body.navigation-active .header-slogan,
  body.navigation-active .header-middle,
  body.navigation-active .header-bottom {
    z-index: 97;
  }
}

a {
  color: #ff5700;
}

a:active,
a:focus,
a:hover {
  color: #df455e;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1230px;
  }
}

.openbox-overlay,
.navigation-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(0 0 0 / 0.3);
  display: none;
  z-index: 99;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.header-slogan {
  position: relative;
  z-index: 100;
  background-color: #006eb9;
}

.header-slogan-inside {
  height: 4rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  height: 40px;
}

.header-top {
  position: relative;
  z-index: 100;
  background-color: #445669;
  color: #fff;
}

.header-middle {
  z-index: 101;
  background-color: #fff;
}

@media (min-width: 992px) {
  .header-middle {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
  }
}

.header-bottom {
  position: relative;
  z-index: 100;
  margin-bottom: 1.2rem;
  background-color: #445669;
  color: #fff;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-info>div {
  margin-right: 1.2rem;
}

.header-info>div>a {
  color: #000;
  font-weight: 600;
  height: 3.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  transition: all 0.2s ease-in-out;
}

.header-info>div>a i {
  margin-right: 0.6rem;
}

.header-info>div>a:hover {
  color: #ff5700;
}

.header-cargo {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}

.header-cargo a {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 400;
  transition: all 0.2s ease-in-out;
}

.header-cargo a img {
  margin-right: 0.6rem;
}

.header-cargo a:hover {
  color: #ff5700;
}

.logo {
  display: flex;
  align-items: center;
  height: 9rem;
  padding: 1.2rem 0;
}

.logo img {
  max-height: 13rem;
}

@media (max-width: 767px) {
  .logo {
    height: 10rem;
  }

  .logo img {
    max-height: 10rem;
  }
}

@media (max-width: 321px) {
  .logo img {
    max-height: 2.7rem;
  }
}

.search form {
  position: relative;
}

.search form input {
  width: 100%;
  padding: 1rem 7rem 1rem 2.4rem;
  border-radius: 15px;
  border: 1px solid #3b4055;
  height: 4.4rem;
  color: #969696;
  font-size: 1.3rem;
}

.search form input::placeholder {
  opacity: 1;
  color: #969696;
}

.search form button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 6.4rem;
  background: #fff0;
  border: none;
  padding: 0;
  color: #000;
  font-size: 18px;
}

@media (max-width: 991px) {
  .search {
    margin-bottom: 1.8rem;
  }
}

.header-middle-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-middle-right>div {
  margin-left: 2.4rem;
}

.header-middle-right>div>a {
  position: relative;
  height: 4.4rem;
  display: flex;
  gap: 0.25rem;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  color: #1c1c1c;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.header-middle-right>div>a:hover {
  color: #ff5700;
}

.header-middle-right>div.cart-menu>a .cart-amount {
  position: absolute;
  top: -2px;
  right: -14px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff5700;
  color: #fff;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .header-middle-right>div {
    margin-left: 1.6rem;
  }

  .header-middle-right>div>a {
    width: 4.4rem;
    flex-direction: row;
    justify-content: center;
  }

  .header-middle-right>div>a>span {
    display: none;
  }

  .header-middle-right>div.cart-menu>a .cart-amount {
    top: 0;
    right: 3px;
  }
}

@media (max-width: 376px) {
  .header-middle-right>div {
    margin-left: 1rem;
  }
}

.toggle-bar {
  align-items: center;
  justify-content: center;
  display: none;
  cursor: pointer;
  z-index: 1;
}

.toggle-bar i {
  font-size: 2rem;
}

@media (max-width: 991px) {
  .toggle-bar {
    display: flex;
  }
}

#navigation .category-level-1>ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

#navigation .category-level-1>ul>li {
  padding: 0 1.5rem;
}

#navigation .category-level-1>ul>li>a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  #navigation .category-level-1>ul>li>a {
    font-size: 1.4rem;
  }
}

#navigation .category-level-1>ul>li>a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 5px;
  color: #000;
  background-color: #ff5700;
  transition: all 0.2s ease-in-out;
}

#navigation .category-level-1>ul>li.active>a:after {
  width: 100%;
}

#navigation .category-level-1>ul>li.active>.category-level-2 {
  display: block;
}

#navigation .category-level-2 {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: none;
}

#navigation .category-level-2 .container {
  display: flex;
  align-items: center;
  background-color: #fff;
  width: 90%;
  padding-top: 20px;
  padding-bottom: 10px;
}

#navigation .category-level-2 .container>ul {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  flex: 1 0 0%;
}

#navigation .category-level-2 .container>ul>li {
  flex: 0 0 25%;
  text-align: center;
}

#navigation .category-level-2 .container>ul>li>a {
  display: block;
  color: #1c1c1c;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: all 0.2s ease-in-out;
}

#navigation .category-level-2 .container>ul>li:hover>a {
  color: #ff5700;
}

#navigation .category-level-2 .container .navigation-banner {
  flex: 0 0 auto;
}

#navigation .category-level-3>ul>li>a {
  display: block;
  color: #1c1c1c;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  transition: all 0.2s ease-in-out;
}

#navigation .category-level-3>ul>li:hover>a {
  color: #ff5700;
}

#navigation .category-level-3>ul>li.navigation-show-all {
  font-style: italic;
  text-decoration: underline;
}

@media (max-width: 991px) {
  #navigation {
    display: none;
  }
}

#main #entry-slider {
  height: 0;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

#main #entry-slider.slick-slider {
  height: auto;
  overflow: visible;
}

#main #entry-slider .entry-slider>div {
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 991px) {
  #main #entry-slider .entry-slider>div {
    width: calc(100% - 24px);
  }
}

@media (max-width: 767px) {
  #main #entry-slider .entry-slider>div {
    padding: 2rem 0;
  }
}

#main #entry-slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: absolute;
  bottom: 2rem;
}

#main #entry-slider .slick-dots>li {
  position: relative;
  margin: 0 1.2rem;
}

#main #entry-slider .slick-dots>li>img {
  width: 78px;
  height: 45px;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
  object-fit: cover;
}

#main #entry-slider .slick-dots>li.slick-active:after {
  content: "";
  position: absolute;
  left: 0;
  margin-top: 5px;
  padding-bottom: -2rem;
  width: 100%;
  height: 3px;
  background-color: #ff5700;
}

@media (max-width: 767px) {
  #main #entry-slider .slick-dots {
    bottom: 5px;
  }

  #main #entry-slider .slick-dots li img {
    width: 10px;
    height: 10px;
  }

  #main #entry-slider .slick-dots li.slick-active:after {
    bottom: -0.5rem;
  }
}

.entry-banner-title {
  margin-bottom: 2.4rem;
}

.entry-banner-title .banner {
  margin-bottom: 2.4rem;
}

.entry-banner-title .banner .banner-title-text {
  align-items: center;
  text-align: center;
  height: 4rem;
  color: #1c1c1c;
  font-size: 25px;
  font-weight: 500;
  padding: 0 1.5rem;
  border-radius: 0 0 10px 10px;
  border: 1px solid #efefef;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 767px) {
  .entry-banner-title .banner .banner-title-text {
    font-size: 1.2rem;
    padding: 0 0.5rem;
  }
}

.entry-banner-title .banner .banner-title-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry-banner-title .banner:hover .banner-title-text {
  color: #fff;
  background-color: #ee7009;
  border-color: #1c1c1c;
}

[data-selector="banner-count-down"] .banner a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

[data-selector="banner-count-down"] .banner a .banner-count-down {
  position: absolute;
  left: 1.8rem;
  bottom: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 3.6rem);
  height: 2.4rem;
  color: #1c1c1c;
  font-size: 14px;
  font-weight: 500;
  background-color: #fff;
  border-radius: 1.2rem;
}

[data-selector="banner-count-down"] .banner a .banner-count-down span {
  padding: 0 0.2rem;
}

@media (max-width: 991px) {
  [data-selector="banner-count-down"] .banner a .banner-count-down {
    font-size: 12px;
  }
}

@media (max-width: 321px) {
  [data-selector="banner-count-down"] .banner a .banner-count-down {
    font-size: 10px;
  }
}

.default-products {
  margin-bottom: 1rem;
}

.default-products .products-header {
  color: #474848;
  text-align: center;
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.default-products.similar-products .products-header,
.default-products.offered-products .products-header {
  font-size: 1.9rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1.9rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #efefef;
}

.default-products.similar-products .products-header>span>span,
.default-products.offered-products .products-header>span>span {
  color: #ff5700;
}

.default-products .products-content {
  height: auto;
  overflow: hidden;
}

.default-products .products-content.slick-slider {
  height: auto;
  overflow: visible;
}

.default-products .products-content .showcase {
  margin-bottom: 0;
}

.default-products .products-content .product-item {
  padding: 0 1.2rem;
}

.default-products .products-content>.slick-list {
  padding: 0.5rem 0;
}

.default-products .products-content>.slick-arrow {
  width: 3rem;
  height: 4rem;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: #fff;
}

.default-products .products-content>.slick-arrow>i {
  display: none;
}

.default-products .products-content>.slick-arrow.slick-prev {
  left: 12px;
  border-radius: 0 10px 10px 0;
  background-image: url(//www.beyazesyaevi.com/idea/dp/70/themes/selftpl_659d1a03a2c01/assets/images/icon-arrow-left.svg?revision=1779350271);
}

.default-products .products-content>.slick-arrow.slick-next {
  right: 11px;
  border-radius: 10px 0 0 10px;
  background-image: url(//www.beyazesyaevi.com/idea/dp/70/themes/selftpl_659d1a03a2c01/assets/images/icon-arrow-right.svg?revision=1779350271);
}

.default-products .products-content>.slick-arrow.slick-disabled {
  opacity: 0;
}

.default-products .products-content>.slick-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 2rem;
  width: 100%;
}

.default-products .products-content>.slick-dots>li {
  margin: 0 0.5rem;
}

.default-products .products-content>.slick-dots>li>button {
  width: 12px;
  height: 12px;
  border: none;
  position: relative;
  overflow: hidden;
  text-indent: -9999px;
  border-radius: 50%;
  background-color: #efefef;
  padding: 0;
  display: block;
  margin-bottom: 0.5rem;
}

.default-products .products-content>.slick-dots>li.slick-active>button {
  background-color: #ff5700;
}

.showcase {
  position: relative;
  border: 1px solid #efefef;
  border-radius: 10px;
  padding: 1.3rem;
  margin-bottom: 2.4rem;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 767px) {
  .showcase {
    padding: 0.2rem;
  }
}

.showcase .showcase-infos {
  display: block;
  display: -webkit-box;
  height: 90px;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: inherit;
}

.showcase .showcase-image-container {
  position: relative;
}

.showcase .showcase-image-container a.showcase-label-container {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}

.showcase .showcase-image-container a.showcase-label-container>div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.2rem;
  height: 2.5rem;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  border-radius: 25px;
}

.showcase .showcase-image-container a.showcase-label-container>div.new-label {
  margin-bottom: 0.3rem;
  background-color: #1c1c1c;
}

.showcase .showcase-image-container a.showcase-label-container>div.discount-label {
  background-color: #ff5700;
}

@media (max-width: 767px) {
  .showcase .showcase-image-container a.showcase-label-container>div {
    width: 4.4rem;
    height: 2.2rem;
    font-size: 1.2rem;
  }
}

.showcase .showcase-image-container a.sold-out-label {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(28 28 28 / 0.3);
  border-radius: 10px;
}

.showcase .showcase-image-container a.sold-out-label span {
  display: block;
  width: 100%;
  line-height: 3rem;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  background-color: rgb(28 28 28 / 0.55);
}

.showcase .showcase-image-container .showcase-image {
  position: relative;
}

.showcase .showcase-image-container .showcase-image .showcase-image-item a {
  display: block;
  padding-top: 100%;
  position: relative;
}

.showcase .showcase-image-container .showcase-image .showcase-image-item a img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.showcase .showcase-image-container .showcase-image .showcase-image-item a img {
  border-radius: 10px;
}

.showcase .showcase-image-container .showcase-image .showcase-thumbs-image {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase .showcase-image-container .showcase-image .showcase-thumbs-image>a {
  display: block;
  height: 100%;
}

@media (max-width: 991px) {
  .showcase .showcase-image-container .showcase-image .showcase-thumbs-image {
    display: none;
  }
}

.showcase .showcase-image-container .showcase-image .showcase-image-dots {
  position: absolute;
  left: 0;
  bottom: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase .showcase-image-container .showcase-image .showcase-image-dots button {
  width: 0.7rem;
  height: 0.7rem;
  margin: 0 0.4rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #efefef;
  background: #fff0;
}

.showcase .showcase-image-container .showcase-image .showcase-image-dots button.active {
  border-color: #ff5700;
  background-color: #ff5700;
}

@media (max-width: 991px) {
  .showcase .showcase-image-container .showcase-image .showcase-image-dots {
    display: none;
  }
}

.showcase .showcase-image-container .showcase-favorites {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}

.showcase .showcase-image-container .showcase-favorites>a.add-my-favorites {
  width: 4rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c1c1c;
  font-size: 2rem;
}

.showcase .showcase-image-container .showcase-favorites>a.add-my-favorites.favorite-product i {
  font-weight: 900;
}

.showcase .showcase-image-container .showcase-market-price {
  position: absolute;
  left: 50%;
  top: -1.3rem;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.6rem;
  height: 3.9rem;
  color: #fff;
  font-weight: 500;
  background-color: #ff5700;
  border-radius: 0 0 10px 10px;
}

@media (max-width: 767px) {
  .showcase .showcase-image-container .showcase-market-price {
    top: -0.2rem;
    width: 5.8rem;
    height: 3.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 321px) {
  .showcase .showcase-image-container .showcase-market-price {
    display: none;
  }
}

.showcase .showcase-content {
  padding: 1rem 0;
}

@media (max-width: 767px) {
  .showcase .showcase-content {
    padding: 1rem;
  }
}

.showcase .showcase-content .showcase-title {
  text-align: center;
  margin-bottom: 1.3rem;
}

.showcase .showcase-content .showcase-title a {
  display: block;
  font-size: 1.3rem;
  line-height: 1.7rem;
  height: 3.4rem;
  overflow: hidden;
  color: #1c1c1c;
}

@media (max-width: 767px) {
  .showcase .showcase-content .showcase-title a {
    font-size: 1.2rem;
  }
}

.showcase .showcase-content .showcase-price {
  font-size: 1.7rem;
  color: #ff5700;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase .showcase-content .showcase-price-new {
  font-weight: 600;
}

.showcase .showcase-content .showcase-price-old {
  color: #1c1c1c;
  text-decoration: line-through;
  top: -14px;
  font-size: 14px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  text-align: center;
}

.showcase .showcase-content .showcase-price.has-discount .showcase-price-new {
  color: #ff5700;
}

.showcase:hover {
  box-shadow: 0 0 5px rgb(28 28 28 / 0.2);
}

.showcase:hover .showcase-image-container .showcase-image .showcase-image-dots {
  opacity: 1;
  visibility: visible;
}

.entry-banner .banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 2.4rem;
  border-radius: 10px;
}

.entry-banner .banner img {
  transition: 0.4s linear;
}

.entry-banner .banner:hover img {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .entry-banner-group-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.entry-banner-group-3 {
  padding-bottom: 2.4rem;
}

#footer {
  margin-top: 4.8rem;
}

#footer .footer-row-1 {
  padding: 2rem 0;
  background-color: #3b4055;
  color: #fff;
  background-size: cover;
}

#footer .footer-row-2 {
  padding: 5rem 0 1rem;
  background-color: #fff;
}

#footer .footer-row-2 .footer-phone a,
#footer .footer-row-2 .footer-mail a,
#footer .footer-row-2 .footer-address a {
  display: flex;
  align-items: center;
}

#footer .footer-row-2 .footeradresi {
  color: #fff;
  background-color: #817c7c;
  width: 26px;
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  margin-right: 13px;
  float: left;
  line-height: 28px;
}

#footer .footer-row-3 {
  padding: 2rem 0;
  background-color: #fff;
}

@media (max-width: 767px) {
  #footer .footer-row-2 {
    padding: 3rem 0;
  }
}

.shopping-banners .shopping-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  color: #1c1c1c;
  text-align: center;
  padding: 0 2rem;
}

.shopping-banners .shopping-banner .shopping-banner-img {
  width: 6rem;
  height: 6rem;
  position: relative;
  display: block;
}

.shopping-banners .shopping-banner .shopping-banner-img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.shopping-banners .shopping-banner .shopping-banner-title {
  font-size: 1.7rem;
  font-weight: 600;
  padding: 1.2rem 0 0.4rem;
}

.shopping-banners .shopping-banner .shopping-banner-sub-title {
  font-size: 1.3rem;
}

.footer-menu-container .footer-menu .footer-menu-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1c1c1c;
}

.footer-menu-container .footer-menu .footer-menu-content>ul>li {
  margin-bottom: 1rem;
  color: #1c1c1c;
  font-size: 1.3rem;
}

.footer-menu-container .footer-menu .footer-menu-content>ul>li>a {
  color: #000;
}

.footer-menu-container .footer-menu .footer-menu-content>ul>li>a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .footer-menu-container {
    text-align: center;
  }

  .footer-menu-container[data-menu-type="accordion"] {
    margin-bottom: 1rem;
    text-align: left;
  }

  .footer-menu-container[data-menu-type="accordion"] .footer-menu .footer-menu-title {
    padding: 12px;
    border: 1px solid #efefef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
    background-color: #fff;
    margin-bottom: 12px;
  }

  .footer-menu-container[data-menu-type="accordion"] .footer-menu .footer-menu-title:after {
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }

  .footer-menu-container[data-menu-type="accordion"] .footer-menu .footer-menu-content {
    padding: 0 12px 12px;
    display: none;
  }

  .footer-menu-container[data-menu-type="accordion"] .footer-menu.activeall .footer-menu-title:after {
    content: "";
  }

  .footer-menu-container[data-menu-type="accordion"] .footer-menu.activeall .footer-menu-content {
    display: block !important;
  }

  .footer-menu-container[data-menu-type="accordion"] .footer-menu.active .footer-menu-title:after {
    content: "";
  }

  .footer-menu-container[data-menu-type="accordion"] .footer-menu.active .footer-menu-content {
    display: block;
  }
}

.footer-text {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
  color: #fff;
}

.footer-google-play {
  margin-bottom: 1.2rem;
}

.footer-app-store {
  margin-bottom: 3rem;
}

.social-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #474848;
}

.footer-phone-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  margin-left: 2.25rem;
}

.footer-social div {
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}

.footer-social div a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #474848;
  font-size: 4rem;
  transition: all 0.2s ease-in-out;
}

.newsletter-title {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.newsletter-content {
  overflow: hidden;
  width: 30%;
  height: 4.4rem;
  background-color: #006eb9;
}

.newsletter-content form {
  position: relative;
}

.newsletter-content form input {
  width: 100%;
  padding: 1rem 5rem 1rem 1rem;
  border: none;
  height: 4.4rem;
  color: #fff;
  font-size: 1.3rem;
  background-color: #006eb9;
}

.newsletter-content form input::placeholder {
  opacity: 1;
  color: #fff;
}

.newsletter-content form button {
  position: absolute;
  top: 2px;
  right: 20px;
  height: 100%;
  width: 5rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  background: #fff0;
  border: none;
  padding: 0;
}

@media (max-width: 767px) {
  .newsletter {
    padding-top: 2rem;
  }

  .newsletter-content {
    width: 70%;
  }
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright .copyright {
  font-size: 1.1rem;
  font-weight: 500;
}

@media (max-width: 991px) {
  .footer-copyright {
    flex-direction: column;
    justify-content: center;
  }

  .footer-copyright .copyright {
    text-align: center;
    margin-bottom: 1rem;
  }
}

#scroll-top {
  position: fixed;
  right: 20px;
  bottom: 40px;
  display: none;
  cursor: pointer;
}

@media (max-width: 991px) {
  #scroll-top {
    display: none !important;
  }
}

.paginate-wrapper {
  position: relative;
  padding: 2rem 0;
}

.paginate-wrapper .paginate {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 575px) {
  .paginate-wrapper .paginate {
    justify-content: space-between;
  }
}

.paginate-wrapper .paginate a {
  padding: 0 0.2rem;
  min-width: 5rem;
  height: 5rem;
  color: #1c1c1c;
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.paginate-wrapper .paginate a i {
  display: block;
  line-height: 1.4rem;
  font-size: 1.8rem;
}

.paginate-wrapper .paginate .paginate-content {
  display: flex;
}

.paginate-wrapper .paginate .paginate-content a {
  margin: 0 0.6rem;
}

@media (max-width: 575px) {
  .paginate-wrapper .paginate .paginate-content a {
    margin: 0 0.2rem;
  }
}

.paginate-wrapper .paginate .paginate-left a {
  margin-right: 0.6rem;
}

.paginate-wrapper .paginate .paginate-right a {
  margin-left: 0.6rem;
}

.paginate-wrapper .paginate .paginate-passive a {
  background-color: #fff;
  color: #1c1c1c;
}

.paginate-wrapper .paginate .paginate-active a {
  background-color: #fff;
}

.paginate-wrapper .paginate .paginate-element-active {
  background-color: #ff5700;
  color: #fff;
}

.contentbox-header {
  margin-bottom: 1.6rem;
  padding-bottom: 1.6rem;
  padding-top: 1.6rem;
  text-align: center;
}

.contentbox-header p {
  font-size: 1.2rem;
  margin-bottom: 0;
  display: block;
}

.contentbox-header h4 {
  margin-bottom: 0;
  font-size: 2.4rem;
  font-weight: 500;
  text-transform: uppercase;
}

#breadcrumbs {
  margin-bottom: 1.2rem;
}

@media (max-width: 767px) {
  #breadcrumbs {
    display: none;
  }
}

#breadcrumbs ol {
  display: flex;
  padding: 0;
  margin: 0;
  align-items: center;
}

#breadcrumbs ol li i {
  font-size: 1.2rem;
  margin: 0 0.5rem;
  font-style: normal;
}

#breadcrumbs ol li i:before {
  content: ">";
}

#breadcrumbs ol li span {
  display: flex;
  align-items: center;
  color: #1c1c1c;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

#breadcrumbs ol li a {
  color: #1c1c1c;
}

#breadcrumbs ol li a:hover span span {
  color: #ff5700;
}

@media (max-width: 767px) {
  .block-item[data-type="filter-product-groups"] {
    display: block;
    margin-bottom: 0;
    border: none;
  }

  .block-item[data-type="filter-product-groups"] .block-item-title {
    display: none;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content {
    display: block;
    padding: 0;
  }

  .block-item[data-type="product-groups"] {
    display: none;
  }

  .filter-menu,
  .horizontal-filter-menu {
    position: fixed;
    width: 280px;
    height: 100%;
    left: -280px;
    top: 0;
    background: #fff;
    z-index: 100;
    padding: 12px;
    transition: all 0.2s ease-in-out;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .filter-menu .filter-menu-category,
  .horizontal-filter-menu .filter-menu-category {
    display: none;
  }

  .filter-menu-active {
    left: 280px;
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%;
  }

  .filter-menu-active .filter-menu,
  .filter-menu-active .horizontal-filter-menu {
    left: 0;
  }

  #filter-wrapper {
    display: none;
  }

  #filter-wrapper.has-sorting-option:not(.has-filter-option) {
    display: block;
  }

  #filter-wrapper.has-sorting-option:not(.has-filter-option) .filter-wrapper-header {
    display: none;
  }

  #filter-wrapper.has-sorting-option:not(.has-filter-option) .filter-wrapper-content #sorting-options {
    display: block;
  }

  #filter-wrapper.has-filter-option {
    display: block;
  }

  #filter-wrapper.has-filter-option .filter-wrapper-content #sorting-options {
    display: none;
  }

  .sorting-options-content-active #filter-wrapper .filter-wrapper-content #sorting-options {
    display: block;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  #filter-wrapper {
    margin-bottom: 2rem;
  }
}

@media (min-width: 768px) {

  .filter-menu-overlay,
  .filter-wrapper-header {
    display: none !important;
  }
}

.horizontal-filter-menu {
  padding: 1.5rem;
  border: 1px solid #efefef;
  margin-bottom: 1rem;
}

.horizontal-filter-menu .horizontal-filter-menu-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.horizontal-filter-menu .clear-filters {
  display: flex;
  margin-bottom: 1rem;
}

.horizontal-filter-menu .clear-filters a {
  display: block;
  padding: 0.2rem 0.5rem;
  background: #eee;
  color: #1c1c1c;
}

.horizontal-filter-menu .filter-menu-selected-items {
  flex: 0 0 100%;
}

.horizontal-filter-menu .filter-menu-groups {
  margin-bottom: 1rem;
}

.horizontal-filter-menu .filter-menu-groups .filter-menu-group-title {
  margin-bottom: 1rem;
}

.horizontal-filter-menu .filter-menu-selected-items {
  margin-bottom: 1rem;
}

.horizontal-filter-menu .filter-menu-selected-items .filter-menu-selected-items-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.horizontal-filter-menu .filter-menu-selected-items .filter-menu-selected-items-content .filter-menu-selected-group {
  margin-bottom: 0.5rem;
}

.horizontal-filter-menu .filter-menu-selected-items .filter-menu-selected-items-content .filter-menu-selected-group .filter-menu-selected-group-title {
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}

.horizontal-filter-menu .filter-menu-selected-items .filter-menu-selected-items-content .filter-menu-selected-group .filter-menu-selected-group-content {
  display: flex;
  flex-wrap: wrap;
}

.horizontal-filter-menu .filter-menu-selected-items .filter-menu-selected-items-content .filter-menu-selected-group .filter-menu-selected-group-content .filter-menu-selected-item {
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  flex: 0 0 auto;
}

.horizontal-filter-menu .filter-menu-selected-items .filter-menu-selected-items-content .filter-menu-selected-group .filter-menu-selected-group-content .filter-menu-selected-item:last-child {
  margin-right: 0;
}

.horizontal-filter-menu .filter-menu-selected-items .filter-menu-selected-items-content .filter-menu-selected-group .filter-menu-selected-group-content .filter-menu-selected-item a {
  display: block;
  padding: 0.2rem 0.5rem;
  background: #eee;
  color: #1c1c1c;
}

.cascade-menu .parent-item a.selected-item {
  color: #ff5700;
}

.block-item {
  margin-bottom: 2rem;
  border: 1px solid #efefef;
}

.block-item a {
  color: #1c1c1c;
}

.block-item a:hover {
  color: #df455e;
}

.block-item .block-item-title {
  padding: 1rem;
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.block-item .block-item-title>i {
  display: none;
}

@media (max-width: 767px) {
  .block-item .block-item-title>i {
    display: block;
  }
}

.block-item .block-item-content {
  padding: 1rem;
}

.block-item.active .block-item-title>i.fa-angle-down:before {
  content: "";
}

.block-item[data-type="no-frame"] .block-item-title {
  display: none;
}

.product-image {
  position: relative;
}

.product-image .new-label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  z-index: 10;
  width: 5.2rem;
  height: 2.5rem;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  border-radius: 25px;
  background-color: #1c1c1c;
}

.product-image #product-primary-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 2.4rem;
  padding-top: 100%;
  border-radius: 10px;
}

.product-image #product-primary-image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

#product-thumb-image {
  margin-top: -12px;
  margin-bottom: -12px;
}

#product-thumb-image .thumb-item {
  padding-top: 4px;
  padding-bottom: 4px;
}

#product-thumb-image .thumb-item>div>a {
  padding-top: 100%;
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 10px;
}

#product-thumb-image .thumb-item>div>a img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 767px) {
  #product-thumb-image {
    margin: 0 -12px;
  }

  #product-thumb-image .thumb-item {
    padding: 0 12px;
  }
}

.product-list-container {
  margin-bottom: 1.6rem;
}

.product-list-container .product-list-block {
  padding: 0.4rem 0;
}

.product-list-container .product-list-row {
  display: flex;
  align-items: baseline;
  padding: 0.4rem 0;
  color: #929292;
  font-size: 1.3rem;
}

.product-list-container .product-list-row a {
  color: #929292;
  transition: all 0.2s ease-in-out;
}

.product-list-container .product-list-row a:hover {
  color: #ff5700;
}

.product-list-container .product-list-row .product-list-title {
  flex: 0 0 auto;
  color: #000;
  font-weight: 700;
}

.product-list-container .product-list-row .product-list-content {
  flex: 1 1 auto;
  display: flex;
  align-items: baseline;
  word-break: break-word;
  color: #000;
}

.product-list-container .product-list-row .product-list-content:before {
  content: ":";
  margin: 0 0.6rem;
}

.product-title {
  position: relative;
  padding-right: 14rem;
  margin-bottom: 1rem;
}

.product-title h1 {
  font-size: 2.3rem;
  font-weight: 500;
}

@media (max-width: 991px) {
  .product-title {
    padding-right: 0;
  }

  .product-title h1 {
    font-size: 1.8rem;
  }
}

.product-favori-and-social {
  position: absolute;
  margin-top: -10px;
  margin-right: 10px;
  right: 0;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .product-favori-and-social {
    position: static;
  }
}

.product-favorites>a.add-my-favorites {
  width: 3.2rem;
  height: 2.4rem;
  color: #1c1c1c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.product-favorites>a.add-my-favorites.favorite-product {
  color: #ff5700;
}

.product-favorites>a.add-my-favorites.favorite-product i {
  font-weight: 900;
}

.product-social {
  position: relative;
  width: 3.2rem;
  height: 2.4rem;
  margin-right: 1rem;
}

.product-social>a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-social .product-social-content {
  position: absolute;
  top: -0.3rem;
  right: 100%;
  height: 3rem;
  display: none;
  background-color: #eee;
  z-index: 11;
  padding: 0 1rem;
}

@media (max-width: 991px) {
  .product-social .product-social-content {
    right: auto;
    left: 100%;
  }
}

.product-social .product-social-content>div {
  display: flex;
  height: 100%;
  margin-left: -5px;
  margin-right: -5px;
  align-items: center;
  justify-content: center;
}

.product-social .product-social-content>div>div {
  padding-left: 5px;
  padding-right: 5px;
}

.product-social .product-social-content>div>div>a i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  width: 2rem;
  height: 2rem;
}

.product-social .product-social-content>div>div>a.product-social-facebook i {
  background-color: #3b5998;
}

.product-social .product-social-content>div>div>a.product-social-twitter i {
  background-color: #1da1f2;
}

.product-social .product-social-content>div>div>a.product-social-pinterest i {
  background-color: #bd081c;
}

.product-social .product-social-content>div>div>a.product-social-whatsapp i {
  background-color: #128c7e;
}

.product-price-container {
  display: flex;
  align-items: center;
  margin-left: -0.8rem;
  margin-right: -0.8rem;
  margin-bottom: 1rem;
}

@media (max-width: 321px) {
  .product-price-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

.product-price-container>div {
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}

.product-price-container .product-price {
  display: flex;
  align-items: baseline;
}

.product-price-container .product-price-new,
.product-price-container .product-price-old {
  color: #ff5700;
  font-size: 3rem;
  font-weight: 650;
}

.product-price-container.has-discount .product-price .product-price-old {
  font-size: 2.8rem;
  font-weight: 400;
  text-decoration: line-through;
  color: #1c1c1c;
}

.product-price-container .discount-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  border-radius: 4px;
  background-color: #ff5700;
}

.product-lowest-price {
  font-size: 1.3rem;
  margin-bottom: 1.6rem;
}

.product-options select.form-control:not([size]):not([multiple]),
.product-options select:not([size]) {
  height: 4.4rem;
  color: #1c1c1c;
  font-size: 1.3rem;
  padding: 0.6rem 2.8rem 0.6rem 2rem;
  border: 1px solid #efefef;
  border-radius: 2.2rem;
  background-image: url(//www.beyazesyaevi.com/idea/dp/70/themes/selftpl_659d1a03a2c01/assets/images/icon-selectbox.svg?revision=1779350271);
}

.variant-select {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  margin: 0 -8px;
}

.variant-select .variant-list {
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 1.6rem;
  padding: 0 8px;
}

.variant-select .variant-list select {
  width: 100% !important;
}

.variant-plural {
  margin-bottom: 2rem;
}

.variant-plural .variant-list {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.variant-plural .variant-list:last-child {
  margin-bottom: 0;
}

.variant-plural span {
  flex: 0 0 auto;
  border: 1px solid #eee;
  padding: 0.5rem 1rem;
  cursor: pointer;
  margin: 0 1rem 1rem 0;
}

.variant-plural span:last-child {
  margin-right: 0;
}

.variant-plural span.variant-passive {
  background-color: #eee;
}

.variant-plural span.variant-no-stock {
  background-color: #eee;
}

.variant-plural span.variant-selected {
  border-color: #1c1c1c;
}

.variant-singular {
  margin-bottom: 2rem;
}

.variant-singular .radio-custom {
  margin-bottom: 1rem;
}

.product-cart-buttons {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
  margin-bottom: 1.6rem;
}

.product-cart-buttons>div {
  padding-left: 8px;
  padding-right: 8px;
}

.product-cart-buttons .product-buttons-wrapper {
  flex: 1 0 0%;
  max-width: 100%;
}

.product-cart-buttons .product-buttons-wrapper .product-buttons-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}

.product-cart-buttons .product-buttons-wrapper .product-buttons-row>div {
  flex: 1 0 0%;
  max-width: 100%;
  padding-left: 8px;
  padding-right: 8px;
}

.product-qty-wrapper .product-qty {
  display: flex;
  flex-wrap: wrap;
  border-radius: 2.6rem;
  border: 1px solid #efefef;
  width: 11.8rem;
  height: 5.2rem;
}

.product-qty-wrapper .product-qty>a {
  flex: 0 0 4rem;
  max-width: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c1c1c;
}

.product-qty-wrapper .product-qty>div {
  flex: 1 0 0%;
  max-width: 100%;
}

.product-qty-wrapper .product-qty>div input {
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #fff0;
  border: none;
  font-size: 2.2rem;
}

@media (max-width: 575px) {
  .product-qty-wrapper {
    margin-bottom: 1.6rem;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .product-qty-wrapper .product-qty {
    width: 100%;
  }
}

.product-cart-buttons a.add-to-cart-button,
.product-cart-buttons a.no-stock-button,
.product-cart-buttons a.quick-order-button,
.product-cart-buttons a.remind-me-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.2rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 1.5rem;
  border-radius: 0.3rem;
}

.product-cart-buttons a.add-to-cart-button,
.product-cart-buttons a.remind-me-button {
  background-color: #ff5700;
}

.product-cart-buttons a.no-stock-button {
  color: #1c1c1c;
  background-color: #efefef;
}

.product-cart-buttons a.quick-order-button {
  background-color: #3b4055;
}

.product-short-details {
  font-size: 1.3rem;
  margin-bottom: 1.6rem;
}

.product-cargo-buttons {
  display: flex;
  align-items: center;
}

.product-cargo-buttons .product-cargo-button {
  width: 15.5rem;
  height: 3.6rem;
  margin-right: 1.6rem;
}

.product-cargo-buttons .product-cargo-button.fast_shipping {
  background: url(//www.beyazesyaevi.com/idea/dp/70/themes/selftpl_659d1a03a2c01/assets/images/icon-btn-1.svg?revision=1779350271) no-repeat 50% 50%;
}

.product-cargo-buttons .product-cargo-button.same_day_shipping {
  background: url(//www.beyazesyaevi.com/idea/dp/70/themes/selftpl_659d1a03a2c01/assets/images/icon-btn-2.svg?revision=1779350271) no-repeat 50% 50%;
}

.product-cargo-buttons .product-cargo-button.three_days_delivery {
  background: url(//www.beyazesyaevi.com/idea/dp/70/themes/selftpl_659d1a03a2c01/assets/images/icon-btn-3.svg?revision=1779350271) no-repeat 50% 50%;
}

.product-cargo-buttons .product-cargo-button.five_days_delivery {
  background: url(//www.beyazesyaevi.com/idea/dp/70/themes/selftpl_659d1a03a2c01/assets/images/icon-btn-4.svg?revision=1779350271) no-repeat 50% 50%;
}

.product-cargo-buttons .product-cargo-button.seven_days_delivery {
  background: url(//www.beyazesyaevi.com/idea/dp/70/themes/selftpl_659d1a03a2c01/assets/images/icon-btn-5.svg?revision=1779350271) no-repeat 50% 50%;
}

.product-cargo-buttons .product-cargo-button.free_shipping {
  background: url(//www.beyazesyaevi.com/idea/dp/70/themes/selftpl_659d1a03a2c01/assets/images/icon-btn-6.svg?revision=1779350271) no-repeat 50% 50%;
}

.product-cargo-buttons .product-cargo-button.delivery_from_stock {
  background: url(//www.beyazesyaevi.com/idea/dp/70/themes/selftpl_659d1a03a2c01/assets/images/icon-btn-7.svg?revision=1779350271) no-repeat 50% 50%;
}

.product-cargo-buttons .product-cargo-button.pre_ordered_product {
  background: url(//www.beyazesyaevi.com/idea/dp/70/themes/selftpl_659d1a03a2c01/assets/images/icon-btn-8.svg?revision=1779350271) no-repeat 50% 50%;
}

.product-cargo-buttons .product-cargo-button.limited_stock {
  background: url(//www.beyazesyaevi.com/idea/dp/70/themes/selftpl_659d1a03a2c01/assets/images/icon-btn-9.svg?revision=1779350271) no-repeat 50% 50%;
}

.product-cargo-buttons .product-cargo-button.ask_stock {
  background: url(//www.beyazesyaevi.com/idea/dp/70/themes/selftpl_659d1a03a2c01/assets/images/icon-btn-10.svg?revision=1779350271) no-repeat 50% 50%;
}

.product-cargo-buttons .product-cargo-button.campaigned_product {
  background: url(//www.beyazesyaevi.com/idea/dp/70/themes/selftpl_659d1a03a2c01/assets/images/icon-btn-11.svg?revision=1779350271) no-repeat 50% 50%;
}

@media (max-width: 321px) {
  .product-cargo-buttons .product-cargo-button {
    background-size: 100% !important;
  }

  .product-cargo-buttons .product-cargo-button:last-child {
    margin-right: 0;
  }
}

.product-detail-tab {
  padding-top: 4rem;
}

.product-detail-tab .product-detail-tab-header {
  display: flex;
  align-items: center;
  overflow-x: auto;
  background-color: #e8e8e8;
  justify-content: space-between;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  padding: 0 1rem;
}

.product-detail-tab .product-detail-tab-header [data-tab-index]>a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
}

.product-detail-tab .product-detail-tab-header [data-tab-index].active>a {
  color: #ff5700;
}

.product-detail-tab .product-detail-tab-header [data-tab-index].active>a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
}

@media (max-width: 767px) {
  .product-detail-tab .product-detail-tab-header {
    justify-content: flex-start;
  }

  .product-detail-tab .product-detail-tab-header [data-tab-index] {
    padding-right: 1.5rem;
  }
}

.product-detail-tab .product-detail-tab-content [data-tab-content] {
  height: 0;
  overflow: hidden;
}

.product-detail-tab .product-detail-tab-content [data-tab-content]>div {
  padding: 2.6rem 0;
}

.product-detail-tab .product-detail-tab-content [data-tab-content].active {
  height: auto;
  overflow: visible;
}

.payment-options .row>* {
  flex: 0 0 100%;
  max-width: 100%;
}

.btn {
  font-size: 1.2rem;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
}

.btn.btn-primary {
  color: #fff;
  background: #ff5700;
}

.btn.btn-primary:not(.btn-loading):active,
.btn.btn-primary:not(.btn-loading).active,
.btn.btn-primary:not(.btn-loading):hover,
.btn.btn-primary:not(.btn-loading).hover,
.btn.btn-primary:not([disabled]):not(.disabled):active,
.btn.btn-primary:not([disabled]):not(.disabled).active {
  background: #df455e;
  color: #fff;
}

.btn.btn-secondary {
  color: gray;
  background: #eee;
}

.btn.btn-secondary:not(.btn-loading):active,
.btn.btn-secondary:not(.btn-loading).active,
.btn.btn-secondary:not(.btn-loading):hover,
.btn.btn-secondary:not(.btn-loading).hover {
  color: gray;
  background: #e1e1e1;
}

.btn-loading:before {
  border-top-color: #ff5700;
}

.loader .ball-pulse>div {
  background-color: #ff5700;
}

.loading>div {
  border-top-color: #ff5700;
  border-bottom-color: #ff5700;
}

.loading-bar .loader {
  background: #ff5700;
}

.control-label {
  color: #1c1c1c;
}

.information-content {
  border: solid 1px #efefef;
  border-radius: 0.4rem;
}

.information-content span {
  border-radius: 0.4rem;
}

.information-content i {
  color: #d5d5d5;
}

.member-block li>a.active {
  color: #ff5700;
}

.member-block li:hover>a:not(.active) {
  color: #ff5700;
}

.member-block li:hover>a:not(.active) i.left-icons {
  color: #ff5700;
}

#featured-product-block {
  border: none;
}

.filter-menu .filter-menu-category .filter-menu-category-title {
  background-color: #fff0;
  border: none;
  padding: 1.5rem;
}

.filter-menu .filter-menu-category .filter-menu-category-content a {
  color: #1c1c1c;
}

.filter-menu .filter-menu-groups .filter-menu-group-title {
  background-color: #fff0;
  border: none;
  padding: 1.5rem;
}

.filter-menu .filter-menu-groups .filter-menu-group-content label {
  color: #1c1c1c;
}

.filter-menu .filter-menu-selected-items .filter-menu-selected-items-title {
  background-color: #fff0;
  border: none;
  padding: 1.5rem;
  font-weight: 400;
}

.filter-menu .filter-menu-selected-items .filter-menu-selected-items-content {
  padding: 1.5rem;
}

.filter-menu .filter-menu-selected-items .filter-menu-selected-items-content .filter-menu-selected-group .filter-menu-selected-group-title {
  font-weight: 400;
}

.idea-promotion-bar {
  padding: 0;
}

.idea-promotion-bar.bar-position-top {
  border-bottom: none;
}

@media (max-width: 991px) {
  .idea-promotion-bar {
    display: none !important;
  }
}

#checkout-breadcrumbs .checkout-steps>a {
  margin-left: -12px;
  margin-right: -12px;
}

body.user-menu-content-active .user-menu-content {
  right: 0;
  box-shadow: -2px 0 5px 0 rgb(0 0 0 / 0.1);
}

body.user-menu-welcome-active .user-menu-welcome {
  right: 0;
  box-shadow: -2px 0 5px 0 rgb(0 0 0 / 0.1);
}

@media (max-width: 991px) {

  body.user-menu-content-active,
  body.user-menu-welcome-active {
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%;
    left: -280px;
  }
}

.user-menu-content,
.user-menu-welcome {
  position: fixed;
  top: 0;
  right: -480px;
  width: 480px;
  height: 100%;
  background-color: #fff;
  z-index: 101;
  transition: all 0.2s ease-in-out;
  overflow-y: auto;
  padding: 6rem;
}

.user-menu-content .user-menu-content-top,
.user-menu-welcome .user-menu-content-top {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #efefef;
}

.user-menu-content .user-menu-title,
.user-menu-welcome .user-menu-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 1rem;
}

.user-menu-content .user-menu-subtitle,
.user-menu-welcome .user-menu-subtitle {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.user-menu-content .user-menu-input,
.user-menu-welcome .user-menu-input {
  margin-bottom: 1.5rem;
}

.user-menu-content .user-menu-input input,
.user-menu-welcome .user-menu-input input {
  background-color: #fff;
  border-radius: 0;
  font-size: 1.2rem;
  color: #1c1c1c;
}

.user-menu-content .user-menu-input input::placeholder,
.user-menu-welcome .user-menu-input input::placeholder {
  color: #1c1c1c;
  opacity: 1;
}

.user-menu-content .user-menu-forgot-pass,
.user-menu-welcome .user-menu-forgot-pass {
  text-align: right;
  display: block;
  color: #1c1c1c;
  text-decoration: underline;
}

.user-menu-content .user-menu-button,
.user-menu-welcome .user-menu-button {
  margin-bottom: 1.5rem;
}

.user-menu-content .user-menu-button .btn,
.user-menu-welcome .user-menu-button .btn {
  font-size: 1.6rem;
  font-weight: 700;
}

.user-menu-content .btn-user-menu-signup,
.user-menu-welcome .btn-user-menu-signup {
  background-color: #1c1c1c;
  color: #fff;
}

.user-menu-content .user-menu-profile-list,
.user-menu-welcome .user-menu-profile-list {
  padding: 2rem 0;
  margin-bottom: 2rem;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}

.user-menu-content .user-menu-profile-list>a,
.user-menu-welcome .user-menu-profile-list>a {
  color: #1c1c1c;
  font-size: 1.6rem;
  padding: 1rem 0;
  display: block;
}

.user-menu-content .user-menu-profile-list>a:hover,
.user-menu-welcome .user-menu-profile-list>a:hover {
  color: #ff5700;
  text-decoration: underline;
}

.user-menu-content .user-menu-profile-logout>a,
.user-menu-welcome .user-menu-profile-logout>a {
  font-size: 1.6rem;
  font-weight: 700;
}

@media (max-width: 991px) {

  .user-menu-content,
  .user-menu-welcome {
    right: -280px;
    width: 280px;
    padding: 1.5rem;
  }
}

body.cart-content-active .cart-content {
  right: 0;
  box-shadow: -2px 0 5px 0 rgb(0 0 0 / 0.1);
}

@media (max-width: 991px) {
  body.cart-content-active {
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%;
    left: -280px;
  }
}

.cart-content {
  position: fixed;
  top: 0;
  right: -480px;
  width: 480px;
  height: 100%;
  background-color: #fff;
  z-index: 101;
  transition: all 0.2s ease-in-out;
  padding: 6rem;
  overflow-y: auto;
}

.cart-content .cart-content-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 1rem;
}

.cart-content .cart-content-subtitle {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.cart-content .cart-list {
  border-top: 1px solid #efefef;
  margin-bottom: 3rem;
}

.cart-content .cart-list .cart-list-item {
  border-bottom: 1px solid #efefef;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cart-content .cart-list .cart-list-item .cart-list-item-image {
  flex: 0 0 6rem;
  margin-right: 1rem;
}

.cart-content .cart-list .cart-list-item .cart-list-item-image>span {
  display: block;
  width: 100%;
  height: 6rem;
  background: url(//www.beyazesyaevi.com/idea/dp/70/themes/selftpl_659d1a03a2c01/assets/images/nopic_image.png?revision=1779350271) no-repeat center center;
  background-size: 50% 50%;
}

.cart-content .cart-list .cart-list-item .cart-list-item-content {
  flex: 1 0 0%;
  min-width: 0;
  padding-right: 1rem;
}

.cart-content .cart-list .cart-list-item .cart-list-item-content .cart-list-item-title {
  color: #1c1c1c;
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-content .cart-list .cart-list-item .cart-list-item-content .cart-list-item-brand {
  display: block;
  color: #1c1c1c;
}

.cart-content .cart-list .cart-list-item .cart-list-item-content .cart-list-item-price {
  font-size: 1.4rem;
  font-weight: 700;
}

.cart-content .cart-list .cart-list-item .cart-list-item-content .cart-list-item-amount {
  font-size: 1.2rem;
  font-weight: 400;
}

.cart-content .cart-list .cart-list-item .cart-list-item-delete {
  color: #1c1c1c;
  flex: 0 0 2rem;
  opacity: 0.5;
  transition: all 0.2s ease-in-out;
  font-size: 1.6rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cart-content .cart-list .cart-list-item .cart-list-item-delete:hover {
  opacity: 1;
}

.cart-content .cart-content-total-price {
  margin-bottom: 3rem;
}

.cart-content .cart-content-total-price>span {
  font-size: 1.6rem;
}

.cart-content .cart-content-total-price>div {
  font-size: 1.8rem;
  font-weight: 700;
}

.cart-content .cart-content-button {
  margin-bottom: 1.5rem;
}

.cart-content .cart-content-button .btn {
  font-size: 1.6rem;
  font-weight: 700;
}

.cart-content .cart-content-empty-icon {
  position: relative;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  height: 20rem;
  margin-bottom: 3rem;
}

.cart-content .cart-content-empty-icon img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.cart-content .cart-content-empty-icon img {
  width: 15rem;
  height: auto;
  opacity: 0.2;
}

@media (max-width: 991px) {
  .cart-content {
    right: -280px;
    width: 280px;
    padding: 1.5rem;
  }
}

@media (min-width: 768px) {
  .block-item[data-type="filter-product-groups"] {
    border: none;
  }

  .block-item[data-type="filter-product-groups"] .block-item-title {
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 1.2rem 0;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content {
    padding: 0;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box {
    border: none;
    margin-bottom: 1rem;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-category .filter-menu-category-title {
    padding: 1.2rem 0;
    font-weight: 500;
    text-transform: uppercase;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-category .filter-menu-category-content {
    padding: 0.3rem 0;
    border-bottom: none;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-category .filter-menu-category-content a {
    color: #1c1c1c;
    font-size: 1.3rem;
    padding: 0.5rem 0 0.5rem 2rem;
    transition: all 0.2s ease-in-out;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-category .filter-menu-category-content a:hover {
    color: #ff5700;
    text-decoration: underline;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-category .filter-menu-category-content a i {
    display: none;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-category .filter-menu-category-top a {
    padding: 1.2rem 0;
    font-size: 1.3rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-category .filter-menu-category-top a:before {
    content: "<";
    margin-right: 0.5rem;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-category .filter-menu-category-top a i {
    display: none;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-groups .filter-menu-group-title {
    padding: 2rem 0 1.2rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    border-top: 1px solid #ff5700;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-groups .filter-menu-group-content {
    padding: 0 0 1.8rem;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-groups .filter-menu-group-content input[type="checkbox"]+label {
    color: #1c1c1c;
    font-size: 1.4rem;
    padding-left: 3rem;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-groups .filter-menu-group-content input[type="checkbox"]+label:before {
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 5px;
    background-size: 0.8rem;
    border: 1px solid #efefef;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-groups .filter-menu-group-content input[type="checkbox"]:checked+label:before {
    background-color: #fff;
    border-color: #efefef;
    background-image: url(//www.beyazesyaevi.com/idea/dp/70/themes/selftpl_659d1a03a2c01/assets/images/icon-checkbox.svg?revision=1779350271);
  }

  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-groups .filter-menu-group-content .scrollbar-inner>.scroll-element .scroll-element_track {
    background-color: #efefef;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-groups .filter-menu-group-content .scrollbar-inner>.scroll-element .scroll-bar {
    background-color: #1c1c1c;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-groups .filter-menu-group-content .scrollbar-inner>.scroll-element .scroll-bar,
  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-groups .filter-menu-group-content .scrollbar-inner>.scroll-element .scroll-element_track,
  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-groups .filter-menu-group-content .scrollbar-inner>.scroll-element .scroll-element_outer {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-groups .filter-menu-group-content .scrollbar-inner>.scroll-element:hover .scroll-bar,
  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-groups .filter-menu-group-content .scrollbar-inner>.scroll-element.scroll-draggable .scroll-bar {
    background-color: #1c1c1c;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-selected-items {
    margin-bottom: 1.8rem;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-selected-items .filter-menu-selected-items-title {
    color: #1c1c1c;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0 0 1.8rem;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-selected-items .filter-menu-selected-items-content {
    padding: 0 0 1.8rem;
    border-bottom: 1px solid #efefef;
  }

  .block-item[data-type="filter-product-groups"] .block-item-content .filter-menu .filter-menu-box.filter-menu-selected-items .filter-menu-selected-items-content a {
    color: #878787;
    font-size: 1.3rem;
  }

  #sorting-options {
    margin-bottom: 2.4rem;
  }

  #sorting-options select.form-control:not([size]):not([multiple]),
  #sorting-options select:not([size]) {
    height: 4.6rem;
    font-size: 1.3rem;
    padding: 0.6rem 3rem 0.6rem 2rem;
    border: 1px solid #efefef;
    border-radius: 2.3rem;
    background-image: url(//www.beyazesyaevi.com/idea/dp/70/themes/selftpl_659d1a03a2c01/assets/images/icon-selectbox.svg?revision=1779350271);
  }

  #sorting-options .record-count {
    line-height: 26px;
    font-size: 1.4rem;
  }

  #sorting-options .checkbox-custom {
    line-height: 26px;
  }

  #sorting-options .checkbox-custom input[type="checkbox"]+label {
    color: #1c1c1c;
    font-size: 1.4rem;
    padding-left: 3rem;
  }

  #sorting-options .checkbox-custom input[type="checkbox"]+label:before {
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 5px;
    background-size: 0.8rem;
    border: 1px solid #efefef;
  }

  #sorting-options .checkbox-custom input[type="checkbox"]:checked+label:before {
    background-color: #fff;
    border-color: #efefef;
    background-image: url(//www.beyazesyaevi.com/idea/dp/70/themes/selftpl_659d1a03a2c01/assets/images/icon-checkbox.svg?revision=1779350271);
  }
}

.filter-options-title,
.sorting-options-title {
  border-radius: 30px;
}

.magazabuton {
  padding: 5px;
  font-weight: 800;
  margin-right: 20px;
  margin-left: 20px;
  font-size: 14px;
  color: #3b68ea;
}

.kampanyaButon {
  padding: 5px;
  font-weight: 800;
  margin-right: 20px;
  margin-left: 20px;
  font-size: 14px;
  color: #ce8800;
}

.footer-social-top {
  display: flex;
  margin-left: 20px;
  margin-right: -0.8rem;
}

.footer-social-top div {
  padding-left: 0.3rem;
  padding-right: 0.3rem;
}

.footer-social-top div a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}

.footer-social-top div a.footer-social-facebook {
  background-color: #3078b9;
}

.footer-social-top div a.footer-social-facebook:hover {
  background-color: #1b64a7;
}

.footer-social-top div a.footer-social-instagram {
  background-color: #bd497e;
}

.footer-social-top div a.footer-social-instagram:hover {
  background-color: #af326b;
}

.footer-social-top div a.footer-social-youtube {
  background-color: #cb5e4c;
}

.footer-social-top div a.footer-social-youtube:hover {
  background-color: #bb4a37;
}

@media (max-width: 767px) {
  .nomob {
    display: none;
  }

  .yesmob {
    display: block !important;
  }

  body.navigation-active {
    left: 280px;
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%;
  }

  body.navigation-active #mobile-navigation {
    left: 0;
    box-shadow: 2px 0 5px 0 rgb(0 0 0 / 0.1);
  }

  body.navigation-active .navigation-menu-overlay {
    display: block;
  }
}

.entry-blog-container .entry-blog-header {
  color: #474848;
  text-align: center;
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .entry-blog-container .entry-blog-content {
    flex-wrap: wrao;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .entry-blog-container .entry-blog-content .entry-blog-item {
    width: 38vw;
  }
}

@media (max-width: 767px) {
  .entry-blog-container .entry-blog-content .entry-blog-item {
    width: 81vw;
  }
}

.entry-blog-container .entry-blog-content .entry-blog-item-container {
  margin-bottom: 1rem;
}

.entry-blog-container .entry-blog-content .entry-blog-item-container .entry-blog-item-image {
  height: 100%;
}

.entry-blog-container .entry-blog-content .entry-blog-item-container .entry-blog-item-image a {
  position: relative;
  overflow: hidden;
  display: block;
  padding-top: 66.6666666667%;
  background: #fafafa;
}

.entry-blog-container .entry-blog-content .entry-blog-item-container .entry-blog-item-image a img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.entry-blog-container .entry-blog-content .entry-blog-item-container .entry-blog-item-image .entry-blog-nopic {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 70px;
  background: #fafafa;
}

.entry-blog-container .entry-blog-content .entry-blog-item-container .entry-blog-item-content {
  padding-top: 0.25rem;
}

.entry-blog-container .entry-blog-content .entry-blog-item-container .entry-blog-item-content .entry-blog-title {
  margin-bottom: 0.25rem;
}

.entry-blog-container .entry-blog-content .entry-blog-item-container .entry-blog-item-content .entry-blog-title a {
  display: block;
  overflow: hidden;
  height: 44px;
  color: #1c1c1c;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
}

.entry-blog-container .entry-blog-content .entry-blog-item-container .entry-blog-item-content .entry-blog-title a:hover {
  color: #ff5700;
}

.entry-blog-container .entry-blog-content .entry-blog-item-container .entry-blog-item-content .entry-blog-text {
  margin-top: 0.5rem;
}

.entry-blog-container .entry-blog-content .entry-blog-item-container .entry-blog-item-content .entry-blog-text p {
  overflow: hidden;
  height: 70px;
  font-size: 12px;
  line-height: 1.5;
  color: #1c1c1c;
  margin-bottom: 0;
}

.entry-blog-container .entry-blog-content .entry-blog-item-container .entry-blog-item-content .entry-blog-button {
  margin-top: 1rem;
}

.entry-blog-container .entry-blog-content .entry-blog-item-container .entry-blog-item-content .entry-blog-button a {
  border: 1px solid #1c1c1c;
  background: #fff0;
  outline: none;
  font-weight: 600;
  font-size: 12px;
  padding: 1rem 4rem;
  border-radius: 20px;
  color: #000;
  display: inline-block;
  width: fit-content;
}

.blog-list-container .blog-list-content .blog-list-item .blog-list-item-image .blog-list-item-nopic {
  color: #fff;
  font-size: 70px;
  background: #eee;
}

.bilgilendirme {
  border: solid 3px #ea6c0b;
  border-radius: 10px;
  padding: 2px;
  text-align: center;
}

.bilgilendirme li {
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
}

.bilgilendirme a {
  text-decoration: none;
  color: #000;
}

.bilgilendirme a:hover {
  color: #ea6c0b;
  transition-duration: 1s;
}

.urun_aciklama {
  background-color: #fbfbfb;
  border-radius: 5px;
  padding: 5px;
}

.urun_aciklama_marka {
  font-size: 2rem;
  font-weight: 700;
}

.s_sor_alan {
  font-size: 1.5rem;
  background-color: #fff;
  border: solid 1px #e5e5e5;
  border-radius: 0.5rem;
  font-weight: 700;
  margin-right: 10px;
}

.s_sor_buton {
  background-color: #25d366;
  font-size: 1.5rem;
  border: solid 1px #e5e5e5;
  border-radius: 0.5rem;
  font-weight: 700;
  margin-right: 10px;
  color: #fff;
}

.s_sor_buton:hover {
  color: #000;
}

.havale {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 6rem;
  height: 3rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 4px;
  background-color: #a1a1a1;
  margin-top: -15px;
}

.fiyat_eski {
  font-size: 2.4rem;
  font-weight: 400;
  text-decoration: line-through;
  padding-left: 1.6rem;
  color: #1c1c1c;
}

.blinking {
  animation: blinkingText 1.2s infinite;
  font-size: 1.4rem;
}

@keyframes blinkingText {
  0% {
    color: #000;
  }

  49% {
    color: #000;
  }

  60% {
    color: #fff0;
  }

  99% {
    color: #fff0;
  }

  100% {
    color: #000;
  }
}

figure.photo {
  font-family: "Raleway", Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 5px;
  min-width: 120px;
  max-width: 210px;
  max-height: 120px;
  width: 100%;
  background: #000;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 5px rgb(0 0 0 / 0.15);
  border-radius: 10px;
}

figure.photo * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

figure.photo img {
  max-width: 100%;
  position: relative;
  opacity: 0.4;
  display: block;
}

figure.photo figcaption {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

figure.photo h5 {
  position: absolute;
  left: 40px;
  right: 40px;
  display: inline-block;
  background: #000;
  -webkit-transform: skew(-10deg) rotate(-10deg) translate(0, -50%);
  transform: skew(-10deg) rotate(-10deg) translate(0, -50%);
  padding: 12px 5px;
  margin: 0;
  top: 50%;
  text-transform: uppercase;
  font-weight: 400;
}

figure.photo h4 span {
  font-weight: 800;
}

figure.photo:before {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: "";
  background: #fff;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: rotate(110deg) translateY(-50%);
  transform: rotate(110deg) translateY(-50%);
}

figure.photo a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

figure.photo.blue {
  background: #123851;
}

figure.photo.blue h2 {
  background: #0a212f;
}

figure.photo.red {
  background: #581a14;
}

figure.photo.red h2 {
  background: #36100c;
}

figure.photo.yellow {
  background: #7f5006;
}

figure.photo.yellow h2 {
  background: #583804;
}

figure.photo:hover img,
figure.photo.hover img {
  opacity: 1;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

figure.photo:hover h2,
figure.photo.hover h2 {
  -webkit-transform: skew(-10deg) rotate(-10deg) translate(-150%, -50%);
  transform: skew(-10deg) rotate(-10deg) translate(-150%, -50%);
}

figure.photo:hover:before,
figure.photo.hover:before {
  -webkit-transform: rotate(110deg) translateY(-150%);
  transform: rotate(110deg) translateY(-150%);
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.iletisim_link:hover {
  color: #000;
}

.urun_baslik {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.marka_alani {
  margin-top: 25px;
  border-radius: 5px;
  padding: 5px;
  font-weight: 700;
  right: 0;
  width: 500px;
}

.mail_list {
  background-image: url(//www.beyazesyaevi.com/idea/dp/70/themes/selftpl_659d1a03a2c01/assets/uploads/footer-bg.jpg?revision=1779350271);
  background-repeat: no-repeat, repeat;
  background-size: cover;
  padding-top: 25px;
  padding-bottom: 50px;
}

.head-text {
  font-size: 14px;
  font-weight: 500;
}

.renk-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 250px;
  margin-bottom: 1rem;
}

.renk-column {
  flex: 15%;
  width: 100%;
  height: 130px;
  margin-right: 1rem;
}

.gimg {
  margin-top: 8px;
  vertical-align: middle;
  width: 100px;
  display: block !important;
}

.ankat .row {
  height: auto;
  overflow: hidden;
}

.ankat .row.slick-slider {
  height: auto;
  overflow: visible;
}

.ankat .row>.slick-list {
  padding: 0.5rem 0;
}

.ankat .row>.slick-arrow {
  width: 3rem;
  display: flex;
  height: 3rem;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: #ff5700;
  justify-content: center;
  align-items: center;
}

.ankat .row>.slick-arrow.slick-prev {
  left: 12px;
}

.ankat .row>.slick-arrow.slick-next {
  right: 11px;
}

.ankat .row>.slick-arrow.slick-disabled {
  opacity: 0;
}

.ankat .row>.slick-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 2rem;
  width: 100%;
}

.ankat .row>.slick-dots>li {
  margin: 0 0.5rem;
}

.ankat .row>.slick-dots>li>button {
  width: 8px;
  height: 8px;
  border: none;
  position: relative;
  overflow: hidden;
  text-indent: -9999px;
  border-radius: 50%;
  background-color: #efefef;
  padding: 0;
  display: block;
  margin-bottom: 0.5rem;
}

.ankat .row>.slick-dots>li.slick-active>button {
  background-color: #ff5700;
}

.ankat .ankatdiv {
  margin-bottom: 15px;
  position: relative;
  text-align: center;
}

.ankat .ankatdiv img {
  margin: auto;
}

.ankat span {
  position: absolute;
  bottom: -15px;
  white-space: nowrap;
  left: 50%;
  color: #1c1c1c;
  transform: translate(-50%, 0);
  font-weight: 500;
  font-size: 13px;
}

.socicon.instagram {
  background-clip: text;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
}

.socicon.facebook {
  color: #4267b2;
}

@media screen and (max-width: 600px) {
  .renk-column {
    flex: 100%;
    max-width: calc(100% / 4 - 20px);
  }
}

@media screen and (max-width: 800px) {
  .renk-column {
    flex: 50%;
    max-width: calc(100% / 4 - 20px);
  }
}

@media screen and (max-width: 480px) {
  .ankat span {
    font-size: 12px;
    bottom: -17px;
  }
}

.menu_cs {
  height: 80px;
}

.menu_cs:hover {
  border-bottom: 2px solid #d66138;
  box-shadow: rgb(100 100 111 / 0.2) 0 7px 29px 0;
}

btn:hover {
  color: #000;
}

.current-page-product-detail .product-extra-details ol,
.current-page-product-detail .product-extra-details ul,
.current-page-product-detail .product-detail ol,
.current-page-product-detail .product-detail ul {
  margin: 0;
  padding: 0;
}

.current-page-product-detail .product-extra-details ol li,
.current-page-product-detail .product-detail ol li {
  list-style: decimal inside;
}

.current-page-product-detail .product-extra-details ul li,
.current-page-product-detail .product-detail ul li {
  list-style: disc inside;
}

.groupapps-row {
  background: #f1f1f1;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 15px 0;
}

@media (max-width: 767px) {
  .groupapps-row {
    height: auto;
  }
}

.groupapps-row .groupapps-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.groupapps-row .groupapps-logo img {
  height: unset;
  max-height: 36px;
  margin-top: 2px;
}

.product-standart-cargo-buttons {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.6rem !important;
  margin-bottom: 1.6rem;
}

.product-standart-cargo-buttons>div i {
  align-items: center;
  color: #000;
  height: 3.6rem;
  margin-bottom: 1rem;
  padding-left: 0.6rem;
  font-size: 2.4rem;
}

.product-standart-cargo-buttons>div span {
  align-items: center;
  color: #000;
  height: 3.6rem;
  margin-bottom: 1rem;
  padding-left: 0.6rem;
  font-size: 1.6rem;
}

.entry-row-5 {
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .entry-row-5 {
    margin-bottom: 30px;
  }
}

.entry-row-5-banners>.slick-arrow {
  width: 26px;
  height: 36px;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  border-radius: none;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border: 1px solid #d8d8d8;
  background-color: #fff;
}

.entry-row-5-banners>.slick-arrow>i {
  display: none;
}

.entry-row-5-banners>.slick-arrow:hover {
  border-color: #1d7ec2;
  background-color: #1d7ec2;
  box-shadow: 0 0 10px rgb(0 0 0 / 0.15);
}

.entry-row-5-banners>.slick-arrow.slick-prev {
  left: 45px;
  background-image: url(//www.beyazesyaevi.com/idea/dp/70/themes/selftpl_659d1a03a2c01/assets/images/entry-arrow-left.svg?revision=1779350271);
}

.entry-row-5-banners>.slick-arrow.slick-next {
  right: 45px;
  margin-right: 14.5%;
  background-image: url(//www.beyazesyaevi.com/idea/dp/70/themes/selftpl_659d1a03a2c01/assets/images/entry-arrow-right.svg?revision=1779350271);
}

.entry-row-5-banners>.slick-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 20px;
}

.entry-row-5-banners>.slick-dots>li {
  margin: 0 9px;
}

.entry-row-5-banners>.slick-dots>li>button {
  position: relative;
  overflow: hidden;
  display: block;
  width: 11px;
  height: 11px;
  text-indent: -9999px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #d8d8d8;
}

.entry-row-5-banners>.slick-dots>li.slick-active>button {
  background-color: #1d7ec2;
}

.moreWP {
  width: 100%;
  text-align: center;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  margin: 1rem 0;
  padding: 10px;
  background: linear-gradient(1deg, #26d545, #72d383);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 17px;
  color: #fff !important;
}