/* Add custom CSS styles below */
/* Coded with ♥ by Jozef Reda */
/* Report me if you find any bugs */
/* Body */
.navbar-brand img {
    max-height: 6rem;
}
#mainnav,
#mainnav .sub-menu,
.top-navbar,
body {
  background-color: white;
}
/* Header */
.index .s-block--photos-slider {
  margin: 0;
}

.index .s-block--photos-slider .s-slider-block__title {
    display: none;
}

salla-slider.photos-slider .swiper-slide,
[dir="rtl"] salla-slider.photos-slider .swiper {
  padding: 0;
  margin: 0;
  width: 100%;
}
/* Title */
.index .s-slider-block__title {
  display: none;
}
/* Fixed Banner */
.s-block--fixed-banner {
  margin: 0;
}
.index .banner--fixed img {
  margin: 1rem auto;
  background-color: transparent;
}
.index .s-block--banners {
  margin: 0 auto;
}
/* Products */
.index salla-product-card,
custom-salla-product-card {
  border: 3px solid var(--color-primary);
}
.index .s-block--features + .s-block--features,
.index .s-block--fixed-banner + .s-block--fixed-banner,
.index .s-block--banners + .s-block--banners {
  margin-top: 0 !important;
}
.index .one-row .banner-entry,
.index .two-row .banner-entry,
.index .one-row .banner-entry:first-child,
.index .two-row .banner-entry:first-child {
  height: 200px;
  grid-column: span 1;
  grid-row: span 1;
  background-color: transparent;
}
.index a.banner-entry.square-photos:hover {
  transform: scale(1.1);
  transition: transform 1s ease;
}
.index .s-block--best-offers {
  margin: 2rem auto !important;
}
.index .md\:grid-cols-3 {
  margin: 2rem auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.index section:nth-child(3 of .s-block--banners) .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.index section:nth-child(3 of .s-block--banners) .md\:grid-cols-3 .banner-entry:nth-child(odd) {
    grid-row: span 2;
    height: 100%;
}

.index section:nth-child(3 of .s-block--banners) .md\:grid-cols-3 .banner-entry:nth-child(even) {
    height: 250px;
}

.index a.banner-entry .lazy__bg {
  background-size: contain;
  background-repeat: no-repeat;
}
.index .s-button-primary,
.index .s-button-primary-outline {
  fill: var(--color-primary-reverse);
  color: var(--color-primary-reverse);
padding:0.5rem 1rem;
  border-color: var(--color-primary);
  background-color:var(--color-primary);
}

.index .s-product-card-promotion-title {
    background-color: #09d36a
}
/* Footer */
.store-footer,
.store-footer .store-footer__inner {
  background-color: var(--color-primary) !important;
}

footer * {
  border-color: white;
}

footer .copyright-text p,
footer .copyright-text p a:hover{
  color:var(--color-primary) !important
}

/* Media Queries */
@media (max-width: 768px) {
  .index .one-row .banner-entry,
  .index .two-row .banner-entry,
  .index .one-row .banner-entry:first-child,
  .index .two-row .banner-entry:first-child {
    height: 100px;
  }
  .index .s-products-slider-card {
    width: 55%;
  }
 .index  .md\:grid-cols-3 {
    margin: 1rem auto !important;
  }
  
 .index  section:nth-child(3 of .s-block--banners) .md\:grid-cols-3 .banner-entry:nth-child(even) {
    height: 75px;
}

footer *{
    text-align:center;
    margin-left:auto !important;
    margin-right:auto !important;
  }
}

/*.index .banner-entry  {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.index .banner-entry::after {
  content: '';
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.25);
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.index .banner-entry:hover::after {
  animation: flashing 0.5s linear;
}

@keyframes flashing {

  0%,
  50% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}*/