/* ZÁKLADNÍ NASTAVENÍ */
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  padding-top: 100px;
}

/* FIXNÍ NAVIGACE */
.fh5co-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 9999;
  height: 80px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

  .fh5co-nav .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

/* LOGO */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
}

.title_logo {
  height: 50px;
  width: auto;
  margin-right: 10px;
}

.title {
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 20px;
}

/* MENU */
.menu-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

  .menu-section ul li {
    margin-left: 25px;
  }

    .menu-section ul li a {
      text-decoration: none;
      color: #333;
      font-weight: 600;
      font-size: 15px;
      transition: 0.3s;
    }

      .menu-section ul li a:hover {
        color: #594ea9;
      }

/* KOŠÍK */
.basket-item .badge {
  background: #594ea9;
  color: white;
  padding: 2px 7px;
  border-radius: 50%;
  font-size: 11px;
  position: relative;
  top: -10px;
  left: -5px;
}

/* OPRAVA OBRÁZKŮ V PRODUKTECH */

/* Fix pro malé obrázky v mřížce */
.product-grid {
  height: 300px !important; /* Jednotná výška náhledu */
  background-size: cover;
  background-position: center center;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* Odkaz přes obrázek */
.img-link {
  display: block;
  text-decoration: none;
  position: relative;
}



/* Štítek Skladem - aby byl vždy nad overlayem */
.badge-available {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #28a745;
  color: white;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
  z-index: 10;
}

/* Overlay efekt (ztmavení při hoveru) */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(89, 78, 169, 0.4); /* Fialový nádech */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}


/* Cenovka vpravo dole přímo v obrázku */
/* Cenovka vpravo dole - fialová */
.price-tag {
  position: absolute;
  right: 0;
  bottom: 15px;
  background: #594ea9 !important; /* Tvá fialová barva */
  color: #fff !important;
  padding: 6px 15px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 4px 0 0 4px;
  z-index: 10;
}

.product-card .desc .price {
  display: none;
}

/* Úprava popisku pod obrázkem (teď už jen název) */
.product-card .desc {
  padding: 10px 0 20px 0;
}

  .product-card .desc h3 {
    margin-bottom: 0;
    font-size: 16px;
  }

.img-link:hover .overlay {
  opacity: 1;
}

.img-link:hover .product-grid {
  transform: scale(1.02);
}

/* Tlačítko uvnitř overlaye */
.view-btn {
  color: #fff;
  border: 2px solid #fff;
  padding: 8px 15px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

/* Úprava popisků pod obrázkem */
.desc h3 a {
  color: #333 !important;
  text-decoration: none;
  transition: 0.3s;
}

  .desc h3 a:hover {
    color: #594ea9 !important;
  }

.price {
  font-size: 16px; /* Trochu zmenšit */
  font-weight: 400; /* Méně tučné */
  color: #888; /* Šedá místo fialové, aby to nekřičelo */
  margin-top: 5px;
  display: block;
}



/* Skrytí nechtěných ikonek v galerii */
.product-grid .inner {
  display: none !important;
}

/* Pokud jsou to ikonky v odkazu: */
.product-grid i.icon-shopping-cart {
  display: none !important;
}


/* Horní odsazení celé sekce místo toho prázdného DIVu */
.section-padding {
  padding: 50px 0 60px 0;
}

/* Styl pro filtrační lištu */
.filter-bar {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
  border: 1px solid #eee;
}

  .filter-bar label {
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
    display: block;
    margin-bottom: 5px;
    text-align: left;
  }

.custom-select {
  height: 40px;
  border-radius: 4px;
  border: 1px solid #ddd;
  box-shadow: none;
}

/* Předěl mezi sekcemi */
.section-divider {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
  margin: 40px 0;
}




/* Galerie v detailu */
.item-photo {
  margin-bottom: 20px;
}

.img-wrapper {
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #eee;
  transition: all 0.3s;
}

  .img-wrapper:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #594ea9;
  }

.thumb-image {
  width: 100%;
  height: 250px;
  object-fit: cover; /* Toto zajistí, že obrázky nebudou deformované */
  display: block;
}

/* Info box vpravo */
.product-details-box {
  padding: 20px;
  background: #fff;
}

.product-title {
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.product-description {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}

/* Specifikace */
.spec-row {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
}

.spec-label {
  font-weight: 700;
  color: #333;
}

.spec-value.highlight {
  font-size: 24px;
  color: #594ea9;
  font-weight: 700;
}

/* Tlačítko a nákup */
.purchase-action {
  margin-top: 40px;
  padding: 20px;
  background: #fdfdfd;
  border: 1px dashed #ddd;
  border-radius: 8px;
}

.shipping-info {
  font-size: 13px;
  color: #888;
  margin-top: 10px;
  text-align: center;
}





/* Posun textu ve slideru pod menu */


.slider-text-inner {
  display: table-cell !important;
  vertical-align: middle !important;
  padding-top: 80px; /* Výška tvého menu */
}

  .slider-text-inner .desc {
    background: rgba(255, 255, 255, 0.85); /* Světlé poloprůhledné pozadí pro tmavý text */
    padding: 30px;
    border-radius: 8px;
    color: #333 !important;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .slider-text-inner .price {
    color: #594ea9 !important; /* Tvá fialová */
    font-size: 32px !important;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
  }

  .slider-text-inner h2 {
    font-size: 28px !important;
    color: #000 !important;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

/* Oprava modrého tlačítka ve slideru */
.btn-primary.btn-outline {
  background: #594ea9 !important;
  color: #fff !important;
  border: 2px solid #594ea9 !important;
}



.slider-text-inner p {
  color: #fff !important;
}



/* PATIČKA BEZ BALASTU */
footer {
  background: #fdfdfd;
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid #eee;
}

  footer ul, .footer-social {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 0 0 !important;
    display: flex;
    justify-content: center;
  }

    footer ul li {
      margin: 0 15px !important;
    }

      footer ul li a i {
        font-size: 24px;
        color: #594ea9;
      }

/* ŠIPEČKA NAHORU */
.gototop {
  position: fixed;
  bottom: 20px;
  right: 20px; /* Přesunuto doprava */
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

  .gototop.active {
    opacity: 1;
    visibility: visible;
  }

  .gototop a {
    width: 50px;
    height: 50px;
    display: table;
    background: rgba(89, 78, 169, 0.8);
    color: #fff;
    text-align: center;
    border-radius: 50%;
  }

    .gototop a i {
      display: table-cell;
      vertical-align: middle;
      font-size: 20px;
    }



/* Oprava překrývání na úvodní stránce */
#fh5co-hero {
  margin-bottom: 40px !important; /* Vytvoří mezeru pod velkým obrázkem */
}


  /* --- ZMENŠENÍ ZÁHLAVÍ (HERO) --- */
  #fh5co-hero,
  #fh5co-hero .flexslider,
  #fh5co-hero .slides,
  #fh5co-hero .slides li {
    height: 550px !important; /* Jedna fixní výška pro všechno */
    min-height: 550px !important;
  }

    /** Vycentrování textu v nižším slideru */
    #fh5co-hero .slider-text {
      height: 550px !important;
      display: flex !important;
      align-items: center;
      justify-content: center;
    }

    #fh5co-hero .slider-text-inner {
      display: table-cell !important;
      vertical-align: middle !important;
      padding-top: 50px; /* Korekce kvůli menu */
    }

/* --- KONTRASTNÍ POPISEK (TEN BÍLÝ BOX) --- */
/* Ten bílý box, aby byl vidět */
.slider-text-inner .desc-hero {
  background: rgba(255, 255, 255, 0.95) !important; /* Téměř neprůhledná bílá */
  padding: 35px !important;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2); /* Silnější stín pro čitelnost */
  max-width: 500px;
  margin: 0 auto;
}

.price-hero {
  display: block;
  color: #594ea9;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.hero-material {
  color: #000 !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  margin: 10px 0 !important;
}

.hero-desc {
  color: #444 !important;
  font-size: 16px !important;
  margin-bottom: 20px !important;
}


.fh5co-heading {
  margin-bottom: 50px !important;
  text-align: center;
}

  .fh5co-heading h2 {
    font-family: 'Lora', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
  }

    /* Linka pod nadpisem */
    .fh5co-heading h2:after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 25%;
      width: 50%;
      height: 2px;
      background: #594ea9;
    }




/* Pokud se produkty stále lepí, odtlačíme přímo kontejner produktů */
#fh5co-product {
  padding-top: 60px !important;
  clear: both; /* Zruší vliv okolních plovoucích prvků */
}


  /* Srovnání produktů do řad */
  #fh5co-product .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  #fh5co-product .col-md-4 {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
  }

/* Sjednocení textu pod obrázkem */
.product-entry .desc {
  text-align: center;
  padding: 15px 10px;
  flex-grow: 1; /* Zajistí, že všechny boxy budou stejně vysoké */
}

  .product-entry .desc h3 {
    font-size: 18px;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 700;
  }

  .product-entry .desc .price {
    color: #594ea9;
    font-weight: 700;
    font-size: 16px;
  }

/* Úprava výšky úvodního slideru */
#fh5co-hero .flexslider {
  height: 600px !important; /* Pevná výška pro velká PC */
  min-height: 600px !important;
}

  #fh5co-hero .flexslider .slides li {
    height: 600px !important;
  }

/* Pokud chceš, aby to bylo responzivní (na mobilu menší) */
@media (max-width: 768px) {
  #fh5co-hero .flexslider,
  #fh5co-hero .flexslider .slides li {
    height: 400px !important;
    min-height: 400px !important;
  }

  .slider-text-inner h2 {
    font-size: 20px !important;
  }
}

/* Vycentrování textu v menším slideru */
.slider-text {
  height: 600px !important;
}





/* TOTÁLNÍ FIX PATIČKY */
footer {
  padding: 40px 0;
  background: #f8f8f8;
  text-align: center;
  border-top: 1px solid #eee;
  width: 100%;
}

  footer ul {
    list-style-type: none !important; /* Odstraní puntíky */
    padding: 0 !important;
    margin: 20px 0 0 0 !important;
    display: flex;
    justify-content: center;
    gap: 20px;
  }

    footer ul li {
      list-style: none !important;
      margin: 0 !important;
    }

  footer .icon-facebook, footer .icon-envelope {
    font-size: 24px;
    color: #594ea9;
  }

.copyright {
  display: block;
  margin-bottom: 10px;
  color: #666;
  font-size: 14px;
}




/* --- KONTAKTNÍ STRÁNKA --- */
.contact-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

  .contact-list li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
    font-size: 16px;
    line-height: 1.5;
  }

    .contact-list li i {
      position: absolute;
      left: 0;
      top: 5px;
      font-size: 20px;
      color: #594ea9; /* Tvá fialová */
    }

    .contact-list li a {
      color: #333;
      text-decoration: none;
      transition: 0.3s;
    }

      .contact-list li a:hover {
        color: #594ea9;
      }

/* Poladění formuláře */
#fh5co-contact h3 {
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#fh5co-contact .form-control {
  border: 2px solid #f0f0f0;
  box-shadow: none;
  border-radius: 4px;
}

  #fh5co-contact .form-control:focus {
    border-color: #594ea9;
  }


/* --- STRÁNKA O MNĚ --- */
.about-title {
  font-family: 'Lora', serif;
  font-size: 32px;
  margin-bottom: 25px;
  color: #333;
}

#fh5co-about p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Citát v textu */
blockquote {
  border-left: 5px solid #594ea9;
  padding: 15px 25px;
  font-style: italic;
  background: #f9f9f9;
  margin: 30px 0;
  font-size: 18px;
}

/* Boxík s informacemi o prodeji */
.purchase-info-box {
  background: #594ea9;
  color: white;
  padding: 25px;
  border-radius: 8px;
  margin-top: 40px;
}

  .purchase-info-box h4 {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .purchase-info-box p {
    color: rgba(255,255,255,0.9) !important;
    margin-bottom: 0 !important;
  }

/* Styl pro obrázek */
.about-img-wrap .shadow {
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border: 10px solid #fff;
}



/* --- ÚPRAVA FOTKY NA STRÁNCE O MNĚ --- */
.about-img-wrap {
  max-width: 400px; /* Zde si nastavíš maximální šířku, která ti vyhovuje */
  margin: 0 auto; /* Vycentrování v rámci sloupce */
  position: relative;
}

  .about-img-wrap img {
    width: 100%; /* Obrázek vyplní vnitřek wrapu (těch 400px) */
    height: auto;
    border: 8px solid #fff; /* Bílý rámeček pro efekt fotky */
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); /* Jemný stín */
    border-radius: 4px;
  }

/* Poladění zarovnání pro mobily */
@media screen and (max-width: 768px) {
  .about-img-wrap {
    margin-top: 30px; /* Mezera nad fotkou, když skočí pod text */
    max-width: 300px; /* Na mobilu ji můžeme zmenšit ještě víc */
  }
}



/* --- KOŠÍK --- */
.cart-table {
  border-bottom: 1px solid #eee;
}

  .cart-table th {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    color: #999;
    border-top: none !important;
  }

  .cart-table td {
    vertical-align: middle !important;
    padding: 20px 0 !important;
  }

.cart-img img {
  width: 80px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.cart-name a {
  color: #333;
  font-size: 16px;
}

.cart-price, .cart-total {
  font-weight: 600;
}

.btn-remove {
  color: #ff5b5b;
  font-size: 20px;
  transition: 0.3s;
}

  .btn-remove:hover {
    color: #d10000;
  }

/* Pokladna v pravém sloupci */
.checkout-box {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #eee;
}

.shipping-info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.grand-total {
  font-size: 18px;
  font-weight: 700;
  color: #594ea9; /* Tvá fialová */
}

.btn-block {
  display: block;
  width: 100%;
  padding: 15px;
  font-weight: 700;
}



/* --- JEDNOTNÉ HLAVIČKY STRÁNEK --- */
.page-header-simple {
  padding: 10px 0; /* Horní a spodní odsazení - uprav podle oka */
  background: #fff;
  border-bottom: 1px solid #f5f5f5;
}

  .page-header-simple h1 {
    font-family: 'Lora', serif; /* Nebo tvůj font pro nadpisy */
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: #333;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
  }

    /* Elegantní linka pod nadpisem */
    .page-header-simple h1::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      margin-left: -25px; /* Polovina šířky linky pro vycentrování */
      width: 50px;
      height: 3px;
      background: #594ea9;
    }


.img-wrapper {
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

  .img-wrapper:hover img {
    transform: scale(1.05); /* Jemné přiblížení při najetí */
  }




/* --- ZÁKLADNÍ ROZLOŽENÍ (Desktop) --- */
.fh5co-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Logo vlevo, menu vpravo */
  padding: 15px 0;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.title_logo {
  max-height: 40px;
  margin-right: 10px;
}

.menu-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex; /* Menu v řadě vedle sebe */
  align-items: center;
}

  .menu-section ul li {
    margin-left: 25px;
  }

/* Skrytí hamburgeru na desktopu */
.fh5co-nav-toggle {
  display: none !important;
}

/* --- MOBILNÍ VERZE (pod 768px) --- */
@media screen and (max-width: 768px) {
  .fh5co-nav .container {
    padding: 20px 15px !important;
  }

  /* Schováme klasické menu */
  .menu-section ul {
    display: none;
  }

  /* Ukážeme a napozicujeme hamburger */
  .fh5co-nav-toggle {
    display: block !important;
    position: absolute;
     
    transform: translateY(-50%);
    padding: 10px;
    z-index: 2001;
    top: 25px !important; /* Posune hamburger vertikálně na střed loga */
    right: 15px !important;
  }

    /* Vykreslení čárek fialovou barvou */
    .fh5co-nav-toggle i {
      position: relative;
      display: inline-block;
      width: 25px;
      height: 3px;
      background: #594ea9;
      transition: all .2s;
    }

      .fh5co-nav-toggle i::before, .fh5co-nav-toggle i::after {
        content: '';
        width: 25px;
        height: 3px;
        background: #594ea9;
        position: absolute;
        left: 0;
        transition: all .2s;
      }

      .fh5co-nav-toggle i::before {
        top: -7px;
      }

      .fh5co-nav-toggle i::after {
        bottom: -7px;
      }

  /* Styl pro ROZBALENÉ menu na mobilu */
  .offcanvas-visible .menu-section ul {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 270px;
    background: #fff;
    z-index: 2000;
    padding: 70px 20px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  }

    .offcanvas-visible .menu-section ul li {
      margin: 0 0 20px 0;
      display: block;
    }
}


/* Schováme všechna ostatní toggle tlačítka, která nepatří do menu-section */
.fh5co-nav-toggle:not(.menu-section .fh5co-nav-toggle) {
  display: none !important;
}

/* Pokud se ten spodní hamburger jmenuje jinak (často fh5co-nav-toggle2 nebo podobně) */
#fh5co-offcanvas .fh5co-nav-toggle {
  display: none !important;
}


/* Celý vysunovací panel */
#fh5co-offcanvas {
  background: #222 !important; /* Elegantní tmavé pozadí */
  color: #fff;
}

  /* Odkazy v mobilním menu */
  #fh5co-offcanvas ul li a {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 18px;
    font-weight: 400;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    display: block;
  }

    /* Aktivní odkaz a hover efekt */
    #fh5co-offcanvas ul li a:hover,
    #fh5co-offcanvas ul li.active a {
      color: #594ea9 !important; /* Tvá fialová */
      padding-left: 10px; /* Jemné posunutí při najetí */
    }

  /* Stylování ikony košíku v menu */
  #fh5co-offcanvas .basket-item a {
    color: #fff !important;
    background: rgba(89, 78, 169, 0.2); /* Jemný fialový podklad */
    border-radius: 4px;
    margin-top: 20px;
    text-align: center;
  }

  #fh5co-offcanvas .basket-item .badge {
    background-color: #594ea9;
    margin-left: 5px;
  }


/* Animace hamburgeru na křížek */
.fh5co-nav-toggle.active i {
  background: transparent !important; /* Schováme prostřední čárku */
}

  .fh5co-nav-toggle.active i::before {
    top: 0;
    transform: rotate3d(0, 0, 1, 45deg);
  }

  .fh5co-nav-toggle.active i::after {
    bottom: 0;
    transform: rotate3d(0, 0, 1, -45deg);
  }

  /*
.filter-bar .row > div {
  margin-bottom: 15px; 
}

.filter-bar label {
  font-size: 12px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 5px;
  display: block;
}
    */

.filter-bar {
  background: #f9f9f9; /* Jemné šedé pozadí pro celou lištu */
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 40px;
  border: 1px solid #eee;
}

  .filter-bar label {
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #594ea9; /* Tvá fialová barva */
    margin-bottom: 8px;
    display: block;
  }

.custom-select {
  border: none;
  border-bottom: 2px solid #ddd; /* Jen spodní linka místo rámečku */
  background-color: transparent;
  border-radius: 0;
  padding: 5px 0;
  height: auto;
  box-shadow: none;
  transition: border-color 0.3s;
  font-size: 15px;
}

  .custom-select:focus {
    border-bottom-color: #594ea9; /* Při kliknutí zfialoví */
    box-shadow: none;
    outline: none;
  }


.empty-results {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 8px;
  border: 2px dashed #eee;
  margin: 20px 0;
}

  .empty-results i {
    font-size: 50px;
    color: #ccc;
    display: block;
    margin-bottom: 20px;
  }

  .empty-results h3 {
    font-weight: 400;
    color: #333;
  }

  .empty-results p {
    color: #888;
    margin-bottom: 25px;
  }