@charset "UTF-8";
/* Project colors */
@import "news.css";
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap");

/*
.header {
  position: sticky;
  top: 0px;
  z-index: 9999999999;
}
*/

:root {
  --bs-link-color: white;
  --bs-nav-link-hover-color: white;
  --bs-link-hover-color: white;
}

/* Animations */
/* Borders */
/* Shadow */
/* Fonts */
/* Paddin box */
/* Custom magic */
.rotate-180 {
  transform: rotate(180deg);
}

.modal-backdrop {
  z-index: 9;
}

.headline-underline {
  border-bottom: 2px solid #E2E9E1;
  width: 100%;
}
.headline-underline h2 {
  display: inline-block;
  position: relative;
}
.headline-underline h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #115636;
  position: absolute;
  bottom: -10px;
  left: 0px;
}

/* Components */
.form-check-input[type=radio] {
  border-radius: 50%;
  border: 1px solid #1A1A1A;
  margin-top: -4px;
}

.form-check-input[type=checkbox] {
  border: 1px solid #1A1A1A;
  margin-top: -4px;
}

/* BTNS */
.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: transparent;
}

.btn-dark {
  background: #1A1A1A;
  border-radius: 5px !important;
}
.btn-dark:hover {
  background: #1A1A1A;
}

.btn {
  border-radius: 5px !important;
  transition: all 0.3s ease-in-out;
  max-width: fit-content;
}
.btn img {
  height: 16px;
  padding-left: 10px;
  margin-top: -3px;
}
.btn:hover {
  transform: scale(1.1);
}

.btn-primary:hover {
  background: #115636;
}

/* Basic typography */
body {
  font-family: "League Spartan", serif;
  font-size: 18px;
}

h1 {
  color: #115636;
  font-size: 150%;
}

@media (max-width: 576px) {
  .form-check-input {
    margin-top: 0px;
  }
}

/* Navbar */
header.checkout {
  border-bottom: 1px solid #E2E9E1;
  background-color: white;
}

header {
  background-color: white;
  /* Phone only */
}
header .top {
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  /* Aktivní stav vyhledávacího formuláře */
  /* Zobrazení výsledků */
  padding-top: 15px;
  padding-bottom: 15px;
}
header .top .logotype a img {
  transition: width 0.3s ease;
  animation-duration: all 0.3s ease-in-out;
  width: 100px;
}
@media (min-width: 768px) and (max-width: 991px) {
  header .top .logotype a img {
    width: 70px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  header .top .logotype a img {
    width: 50px;
  }
}
@media (max-width: 575px) {
  header .top .logotype a img {
    width: 50px;
  }
}
header .top .search h3 {
  font-size: 120%;
  font-weight: bold;
  color: #1A1A1A;
}
header .top .search ul {
  padding-left: 0px;
}
header .top .search ul li {
  list-style: none;
  font-size: 90%;
  border-bottom: 1px solid #DEDEDE;
  padding-top: 5px;
  padding-bottom: 2px;
}
header .top .search ul li a {
  color: #1A1A1A;
  text-decoration: none;
}
header .top .search ul li a:hover {
  text-decoration: underline;
}
header .top .search .show-all {
  color: #115636;
  text-decoration: none;
}
header .top .search .show-all:hover {
  text-decoration: underline;
}
@media (min-width: 1400px) {
  header .top .search input {
    width: 600px;
  }
}
@media (min-width: 992px) and (max-width: 1399px) {
  header .top .search input {
    width: 300px;
  }
}
header .top .search .btn img {
  width: 35px;
  padding-left: 0px;
}
header .top .search .featured-image img {
  width: 80px;
}
@media (max-width: 767px) {
  header .top .search .featured-image img {
    width: 160px;
  }
}
header .top .search table input.form-control {
  margin: auto;
}
header .top .search table td, header .top .search table th {
  text-align: center;
  vertical-align: middle;
  font-size: 80%;
}
header .top .search table td .table-col-description-phone, header .top .search table th .table-col-description-phone {
  padding-right: 10px;
  font-weight: bold;
}
header .top .search table a {
  color: #1A1A1A;
  text-decoration: none;
}
header .top .search table a:hover {
  text-decoration: underline;
}
header .top .search table td.delete-item img {
  width: 20px;
  transition: all 0.3s ease-in-out;
}
header .top .search table td.delete-item img:hover {
  transform: scale(1.2);
}
@media (max-width: 767px) {
  header .top .search table thead {
    display: none;
  }
  header .top .search table tr {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  header .top .search table .table-col-description-phone {
    display: none;
  }
}
header .top .search table thead th {
  font-weight: bold;
}
header .top .search-form {
  position: relative;
}
header .top .search-form.search-active {
  transition: all 0.3s ease;
}
header .top .search-results {
  position: absolute;
  padding: 10px;
  width: 100%;
  border: 1px solid #ddd;
  height: auto;
  overflow-y: scroll;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: rgba(112, 144, 176, 0.25) 0px 16px 23px 0px;
}
@media (max-width: 768px) {
  header .top .search-results {
    position: fixed;
    left: 15px;
    margin-top: 15px;
    max-height: 70vh;
    width: calc(100% - 30px);
  }
}
header .top .search-results p.search-result-headline {
  font-size: 80%;
}
header .top .search-results .price {
  color: #115636;
}
header .top .search-results .on-stock {
  color: #115636;
}
header .top .search-results .out-of-stock {
  color: #C84631;
}
header .top .search-results .low-stock-quantity {
  color: #ECB444;
}
@media (min-width: 768px) {
  header .top {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
header .top .controls {
  gap: 25px;
  align-items: center;
}
@media (min-width: 766px) {
  header .top .controls {
    display: flex;
  }
}
@media (max-width: 767px) {
  header .top .controls {
    display: none !important;
  }
}
header .top .controls a {
  font-size: 100%;
  text-decoration: none;
}
header .top .controls a:hover {
  text-decoration: underline;
}
header .top .controls .login {
  color: #115636;
}
header .top .controls .price-switcher a {
  color: #1A1A1A;
}
header .top .controls .price-switcher .active {
  color: #115636;
}
header .top .controls .price-total {
  font-size: 90%;
  color: #115636;
  display: flex;
  align-items: center;
}
header .top .controls .price-total a {
  color: #115636;
}
header .top .dropdown button {
  font-size: 100%;
  background-color: transparent;
  padding: 0px;
  border: 0px;
}
header .top .dropdown-toggle::after {
  margin-left: 0px;
}
header .top .wishlist a, header .top .cart a {
  position: relative;
  transition: all 0.3s ease-in-out;
}
header .top .wishlist a img, header .top .cart a img {
  transition: all 0.3s ease-in-out;
  width: 30px;
}
header .top .wishlist a span, header .top .cart a span {
  position: absolute;
  background-color: #115636;
  color: #E2E9E1;
  font-size: 70%;
  right: -10px;
  text-align: center;
  top: -10px;
  line-height: 22px;
  width: 20px;
  height: 20px;
  border-radius: 100px;
}
header .top .wishlist a:hover img, header .top .cart a:hover img {
  transform: scale(1.1);
}
header .bottom {
  background-color: #779F8C;
}
@media (max-width: 768px) {
  header .bottom {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
header .bottom .container {
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  header .bottom .container {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  header .bottom .container .nav {
    display: none;
  }
}
header .bottom .container .nav li {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (min-width: 768px) and (max-width: 991px) {
  header .bottom .container .nav li {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) {
  header .bottom .container .nav li {
    padding-top: 5%;
    padding-bottom: 5px;
  }
}
header .bottom .container .nav li a.active {
  font-weight: bold;
}
header .bottom .container .nav li:hover {
  background-color: #115636;
}
header .bottom .container .nav li:has(a.active) {
  background-color: #115636;
}
header .bottom .container .help {
  gap: 15px;
}
header .bottom .container .help span, header .bottom .container .help a {
  color: white;
  font-size: 90%;
}
header .indexcity {
  z-index: 9999;
}
header .right {
  right: 0 !important;
  left: 0 !important;
}
header .navbar-header {
  z-index: 9999;
}
@media only screen and (max-width: 767px) {
  header .navbar-collapse {
    background-color: white;
    position: fixed;
    top: 0;
    transition: all 0.8s ease-out;
    height: 100%;
    width: 100%;
    left: 768px;
  }
  header .navbar-collapse .left-panel-nav {
    box-shadow: none;
  }
  header .navbar-inverse .navbar-nav > li > a {
    color: #000;
  }
}
header .nav-phone {
  z-index: 99;
}
@media (min-width: 767px) {
  header .nav-phone {
    display: none;
  }
}
header .nav-phone button {
  background-color: #779F8C;
  padding: 2px 7px;
  border: 0px;
  border-radius: 5px;
}
header .nav-phone button img {
  width: 25px;
}
header li:has(.show) img, header li:has(.collapsing) img {
  transform: rotate(-90deg);
}

.header-scrolled {
  /*position: sticky;*/
  transition: all 0.3s ease;
}
.header-scrolled .top {
  padding-top: 15px;
  padding-bottom: 15px;
}
.header-scrolled .logotype a img {
  animation-duration: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .header-scrolled .logotype a img {
    width: 70px !important;
  }
}

.controls-phone {
  position: fixed;
  left: 0px;
  bottom: 0px;
  display: flex;
  z-index: 9999999;
  gap: 25px;
  padding-top: 15px;
  padding-bottom: 15px;
  align-items: center;
  width: 100%;
  background: #f3f3f3;
  justify-content: center;
}
@media (min-width: 768px) {
  .controls-phone {
    display: none !important;
  }
}
.controls-phone a {
  text-decoration: none;
  font-size: 14px;
}
.controls-phone a:hover {
  text-decoration: underline;
}
.controls-phone .price-total a {
  color: #115636;
}
.controls-phone .login {
  color: #115636;
  font-size: 14px;
}
.controls-phone .price-switcher {
  font-size: 14px;
}
.controls-phone .price-switcher a {
  color: #1A1A1A;
}
.controls-phone .price-switcher .active {
  color: #115636;
}
.controls-phone .wishlist, .controls-phone .cart {
  font-size: 80%;
}
.controls-phone .wishlist a, .controls-phone .cart a {
  position: relative;
}
.controls-phone .wishlist a img, .controls-phone .cart a img {
  width: 30px;
}
@media (max-width: 576px) {
  .controls-phone .wishlist a img, .controls-phone .cart a img {
    width: 22px;
  }
}
.controls-phone .wishlist a span, .controls-phone .cart a span {
  position: absolute;
  background-color: #115636;
  color: #E2E9E1;
  font-size: 70%;
  right: -10px;
  text-align: center;
  top: -10px;
  line-height: 22px;
  width: 20px;
  height: 20px;
  border-radius: 100px;
}
.controls-phone .dropdown button {
  font-size: 80%;
  background-color: transparent;
  padding: 0px;
  border: 0px;
}
.controls-phone .dropdown-toggle::after {
  margin-left: 0px;
}

/* Structure */
/* Left panel */
@media screen and (min-width: 768px) {
  .left-panel {
    padding-left: 0px;
  }
}
@media (max-width: 576px) {
  .left-panel {
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .left-panel .left-panel-nav {
    display: none;
  }
}

.left-panel-nav {
  padding: 25px 25px;
  box-shadow: rgba(112, 144, 176, 0.25) 0px 16px 23px 0px;
  border-radius: 5px;
}
.left-panel-nav .collapse {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}
.left-panel-nav .collapse.show {
  height: auto; /* Bude nastaveno po přechodu */
}
.left-panel-nav li a {
  font-size: 90%;
  color: #1A1A1A;
}
.left-panel-nav li.nav-item, .left-panel-nav .li-submenu {
  width: 100%;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}
.left-panel-nav li.nav-item a.nav-link:hover, .left-panel-nav li.nav-item a.nav-link:focus, .left-panel-nav .li-submenu a.nav-link:hover, .left-panel-nav .li-submenu a.nav-link:focus {
  color: #115636;
}
.left-panel-nav .li-submenu .nav {
  flex-wrap: nowrap;
}
.left-panel-nav .li-submenu {
  width: 100%;
}
.left-panel-nav .li-submenu img {
  transition-duration: 0.3s;
  transform: rotate(90deg);
  width: 10px;
  cursor: pointer;
}
.left-panel-nav .li-submenu a {
  justify-content: space-between;
}
.left-panel-nav .li-submenu li {
  transition: padding-left 0.3s ease-in-out;
}
.left-panel-nav .li-submenu li a {
  color: #1A1A1A !important;
}
.left-panel-nav .li-submenu li:hover {
  padding-left: 7px;
  color: #115636;
}
.left-panel-nav li:has(.show) img, .left-panel-nav li:has(.collapsing) img {
  transform: rotate(-90deg);
}

@media (max-width: 576px) {
  .left-panel-banner-section {
    display: flex;
    gap: 10px;
  }
}
.left-panel-banner-section img {
  margin-top: 30px;
  border-radius: 5px;
  width: 100%;
}
@media (max-width: 576px) {
  .left-panel-banner-section img {
    margin-top: 10px;
  }
}

.left-panel-filter-section {
  margin-top: 30px;
}
.left-panel-filter-section .left-panel-filter-section-container {
  padding: 25px;
  background: #FEFAF4;
  border-radius: 5px;
  border: 1px solid #E8E8E8;
  /* Styl posuvníku (dráha) */
  /* Styl posuvníku (thumb - jezdec) */
}
.left-panel-filter-section .left-panel-filter-section-container h4 {
  border-bottom: 2px solid #E2E9E1;
}
.left-panel-filter-section .left-panel-filter-section-container h5 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 90%;
}
.left-panel-filter-section .left-panel-filter-section-container .filter-list {
  margin-left: 0px;
  padding-left: 0px;
}
.left-panel-filter-section .left-panel-filter-section-container .filter-list li {
  font-size: 90%;
  list-style: none;
  margin-left: 0px;
}
.left-panel-filter-section .left-panel-filter-section-container .filter-list a {
  color: #1A1A1A;
  text-decoration: none;
}
.left-panel-filter-section .left-panel-filter-section-container .filter-list a:hover {
  text-decoration: underline;
}
.left-panel-filter-section .left-panel-filter-section-container .filter-list .active {
  font-weight: bold;
}
.left-panel-filter-section .left-panel-filter-section-container .form {
  margin-top: 5px;
}
.left-panel-filter-section .left-panel-filter-section-container .form label {
  padding-left: 5px;
  font-size: 90%;
}
@media (max-width: 992px) {
  .left-panel-filter-section .left-panel-filter-section-container .form {
    display: flex;
    flex-direction: row;
  }
}
.left-panel-filter-section .left-panel-filter-section-container .rangeslider {
  display: flex;
  flex-direction: column;
}
.left-panel-filter-section .left-panel-filter-section-container .rangeslider label {
  font-size: 90%;
}
.left-panel-filter-section .left-panel-filter-section-container input[type=range] {
  -webkit-appearance: none; /* Odebere výchozí styl pro Webkit prohlížeče */
  appearance: none;
  width: 100%; /* Nastavte šířku dle potřeby */
  max-height: 3px; /* Tloušťka dráhy */
  background: red; /* Barva dráhy */
  border-radius: 5px;
  outline: none;
}
.left-panel-filter-section .left-panel-filter-section-container input[type=range]::-webkit-slider-runnable-track {
  border-radius: 5px;
}
.left-panel-filter-section .left-panel-filter-section-container input[type=range]::-moz-range-track {
  border-radius: 5px;
}
.left-panel-filter-section .left-panel-filter-section-container input[type=range] {
  margin-top: 10px;
}
.left-panel-filter-section .left-panel-filter-section-container input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #115636;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -9px;
}
.left-panel-filter-section .left-panel-filter-section-container input[type=range]::-webkit-slider-runnable-track {
  height: 3px;
  background: #ddd;
  border-radius: 10px;
  border: 1px solid #ccc;
}
.left-panel-filter-section .left-panel-filter-section-container input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #115636;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

/* Right panel */
@media screen and (min-width: 768px) {
  .right-panel {
    padding-left: 50px;
    padding-right: 0px;
  }
}

/* SlideShow */
.carousel .carousel-indicators {
  position: absolute;
  left: 0px;
  right: auto;
  margin-left: 0px;
  margin-right: 0px;
}
.carousel .carousel-indicators button {
  background-color: white;
  width: 15px;
  height: 13px;
  border-radius: 100%;
  border-width: 1px;
  border-color: #676767;
}
@media (max-width: 576px) {
  .carousel .carousel-indicators button {
    width: 10px;
    height: 8px;
  }
}
.carousel .carousel-indicators button.active {
  background-color: #115636;
}

/* Favorite categories */
.favorite-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 25px;
  margin-top: 50px;
}
@media (max-width: 1400px) {
  .favorite-categories {
    grid-template-columns: repeat(auto-fit, minmax(4, 1fr));
  }
}
@media (max-width: 992px) {
  .favorite-categories {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .favorite-categories {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .favorite-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.favorite-categories .favorite-categories-card {
  padding: 10px 10px 20px 10px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
  align-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  border: 1px solid #115636;
}
.favorite-categories .favorite-categories-card:hover {
  box-shadow: rgba(112, 144, 176, 0.25) 0px 16px 23px 0px;
  transform: scale(1.02);
}
.favorite-categories .favorite-categories-card img {
  border-radius: 5px;
}
.favorite-categories .favorite-categories-card span {
  color: #4F5D77;
  font-size: 90%;
}
@media (max-width: 992px) {
  .favorite-categories .favorite-categories-card {
    padding: 5px;
    gap: 5px;
    flex-direction: row;
  }
  .favorite-categories .favorite-categories-card img {
    width: 40px;
  }
  .favorite-categories .favorite-categories-card span {
    font-size: 80%;
  }
}

/* Archive product */
@media (max-width: 992px) {
  .product-archive-header .form-check-inline {
    display: flex;
    gap: 5px;
  }
}
.product-archive-header .product-archive-header-confirm {
  display: flex;
  align-items: center;
  gap: 20px;
}
.product-archive-header .product-archive-header-confirm .form-check-input[type=radio] {
  margin-top: 4px;
}
@media (max-width: 576px) {
  .product-archive-header .product-archive-header-confirm {
    gap: 10px;
    flex-direction: row;
  }
  .product-archive-header .product-archive-header-confirm label {
    font-size: 80%;
  }
}
.product-archive-header .product-archive-header-confirm .dropdown {
  background-color: #f8f9fa;
  border: 1px solid #d3d6ce;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 80%;
  color: #343a40;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: none;
  width: fit-content;
}
@media (max-width: 576px) {
  .product-archive-header .product-archive-header-confirm .dropdown {
    padding: 3px 7px;
  }
  .product-archive-header .product-archive-header-confirm .dropdown span {
    font-size: 80% !important;
  }
}
.product-archive-header .product-archive-header-confirm .dropdown img {
  margin-top: -4px;
  padding-right: 10px;
}
@media (max-width: 576px) {
  .product-archive-header .product-archive-header-confirm .dropdown img {
    display: none;
  }
}

.product-archive {
  margin-top: 30px;
}
.product-archive a {
  text-decoration: none;
}
.product-archive .product-archive-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 1400px) {
  .product-archive .product-archive-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .product-archive .product-archive-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .product-archive .product-archive-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.product-archive .product-archive-card {
  animation-duration: all 0.3s ease-in-out;
  display: flex;
  position: relative;
  flex-direction: column;
  padding: 10px 10px 20px 10px;
  border: 1px solid #115636;
  border-radius: 10px;
}
.product-archive .product-archive-card .product-image {
  height: 300px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.product-archive .product-archive-card .labels {
  position: absolute;
  margin-left: 10px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-archive .product-archive-card .labels .label {
  font-size: 80%;
  color: white;
  border-radius: 100px;
  padding: 2px 10px;
}
@media (max-width: 576px) {
  .product-archive .product-archive-card .labels .label {
    font-size: 60%;
    padding: 3px 7px;
  }
}
.product-archive .product-archive-card .labels .label1 {
  background-color: #115636;
}
.product-archive .product-archive-card .labels .label2 {
  background-color: #563A11;
}
.product-archive .product-archive-card .labels .label3 {
  background-color: #D26E70;
}
.product-archive .product-archive-card .labels .label4 {
  background-color: #C8A374;
}
.product-archive .product-archive-card img {
  border-radius: 5px;
}
.product-archive .product-archive-card .category-name {
  font-size: 80%;
  color: #4F5D77;
  margin-top: 10px;
}
@media (max-width: 576px) {
  .product-archive .product-archive-card .category-name {
    font-size: 70%;
  }
}
.product-archive .product-archive-card .product-name {
  color: #1A1A1A;
  font-size: 100%;
  font-weight: bold;
  line-height: 100%;
  margin-top: 10px;
}
@media (max-width: 576px) {
  .product-archive .product-archive-card .product-name {
    font-size: 80%;
  }
}
.product-archive .product-archive-card .product-confirm {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}
.product-archive .product-archive-card .product-confirm .price {
  display: flex;
  gap: 15px;
  align-items: flex-end;
}
.product-archive .product-archive-card .product-confirm .price .price-current {
  color: #115636;
  font-size: 100%;
}
@media (max-width: 576px) {
  .product-archive .product-archive-card .product-confirm .price .price-current {
    font-size: 80%;
  }
}
.product-archive .product-archive-card .product-confirm .price .price-old {
  color: #989898;
  font-size: 80%;
  text-decoration: line-through;
}
@media (max-width: 576px) {
  .product-archive .product-archive-card .product-confirm .price .price-old {
    font-size: 60%;
  }
}
@media (max-width: 576px) {
  .product-archive .product-archive-card .product-confirm img {
    width: 30px;
  }
}
.product-archive .product-archive-card {
  transition: all 0.3s ease-in-out;
}
.product-archive .product-archive-card:hover {
  box-shadow: rgba(112, 144, 176, 0.25) 0px 16px 23px 0px;
  transform: scale(1.02);
}

/* USP */
.usp {
  background: linear-gradient(90deg, rgb(254, 250, 244) 0%, rgb(255, 255, 255) 100%);
  box-shadow: rgba(112, 144, 176, 0.25) 0px 16px 23px 0px;
  border-radius: 10px;
  padding: 30px;
  display: grid;
  margin-top: 100px;
}
.usp .usp-container {
  display: grid;
  position: relative;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 20px;
}
@media (max-width: 1400px) {
  .usp .usp-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1200px) {
  .usp .usp-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 576px) {
  .usp .usp-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.usp .usp-container .usp-item-bonsai {
  position: absolute;
  right: -60px;
  bottom: -32px;
}
@media (max-width: 576px) {
  .usp .usp-container .usp-item-bonsai {
    right: -30px;
  }
  .usp .usp-container .usp-item-bonsai img {
    width: 140px;
  }
}
.usp h3 {
  color: #115636;
  font-size: 133%;
  font-weight: bold;
}
.usp .usp-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.usp .usp-item img {
  width: 34px;
}
.usp .usp-item span {
  font-size: 80%;
}

/* Banner bottom section */
.bottom-banner-section {
  margin-top: 100px;
}
@media (max-width: 576px) {
  .bottom-banner-section {
    margin-top: 10px;
  }
}
@media (min-width: 992px) {
  .bottom-banner-section {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.bottom-banner-section img {
  border-radius: 10px;
  width: 100%;
}
@media (max-width: 576px) {
  .bottom-banner-section img {
    border-radius: 5px;
  }
}

/* Article archive */
.articles-archive {
  padding-top: 100px;
  padding-bottom: 100px;
  margin-top: 100px;
  background: linear-gradient(90deg, rgb(254, 250, 244) 0%, rgb(255, 255, 255) 100%);
}
@media (max-width: 576px) {
  .articles-archive {
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 50px;
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  .articles-archive .container {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.articles-archive .articles-archive-container {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
@media (max-width: 1400px) {
  .articles-archive .articles-archive-container {
    grid-template-columns: repeat(4, 22%);
    justify-content: space-between;
  }
}
@media (max-width: 992px) {
  .articles-archive .articles-archive-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .articles-archive .articles-archive-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.articles-archive .articles-archive-container .archive-card-category-headline {
  min-height: 420px;
  background-image: url("../img/placeholder/article-headline-placeholder.png");
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 1400px) {
  .articles-archive .articles-archive-container .archive-card-category-headline {
    min-height: 220px;
  }
}
.articles-archive .articles-archive-container .archive-card-category-headline .archive-card-category-headline-container {
  position: absolute;
  bottom: 27px;
  left: 10px;
}
.articles-archive .articles-archive-container .archive-card-category-headline .archive-card-category-headline-container h4 {
  color: white;
  font-size: 133%;
  font-weight: bold;
}
@media (max-width: 576px) {
  .articles-archive .articles-archive-container .archive-card-category-headline .archive-card-category-headline-container h4 {
    font-size: 120%;
  }
}
.articles-archive .articles-archive-container .archive-card-category-headline .archive-card-category-headline-container a {
  text-decoration: none;
  color: white;
  font-size: 90%;
}
.articles-archive .archive-card-category-item {
  background-color: white;
  box-shadow: rgba(112, 144, 176, 0.25) 0px 16px 23px 0px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 10px 10px 20px 10px;
}
.articles-archive .archive-card-category-item .product-image {
  height: 300px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.articles-archive .archive-card-category-item time {
  font-size: 80%;
  color: #4F5D77;
  margin-top: 10px;
}
@media (max-width: 576px) {
  .articles-archive .archive-card-category-item time {
    font-size: 70%;
  }
}
.articles-archive .archive-card-category-item h4 {
  color: #1A1A1A;
  font-size: 100%;
  font-weight: bold;
  line-height: 100%;
  margin-top: 10px;
}
@media (max-width: 576px) {
  .articles-archive .archive-card-category-item h4 {
    font-size: 80%;
  }
}
.articles-archive .archive-card-category-item a {
  text-decoration: none;
  color: #1A1A1A;
  font-size: 90%;
}
@media (max-width: 576px) {
  .articles-archive .archive-card-category-item a {
    font-size: 70%;
  }
}
.articles-archive .archive-card-category-item .labels {
  position: absolute;
  margin-left: 10px;
  margin-top: 10px;
}
.articles-archive .archive-card-category-item .labels .label {
  font-size: 80%;
  color: white;
  border-radius: 100px;
  background-color: #115636;
  padding: 5px 10px;
}
@media (max-width: 576px) {
  .articles-archive .archive-card-category-item .labels .label {
    font-size: 60%;
    padding: 3px 7px;
  }
}

/* Product archive */
.archive-product-description h1 {
  font-size: 133%;
  color: #1A1A1A;
}
.archive-product-description p {
  font-size: 80%;
}

.subcategory-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}
@media (max-width: 1400px) {
  .subcategory-card {
    grid-template-columns: repeat(auto-fit, minmax(4, 1fr));
  }
}
@media (max-width: 992px) {
  .subcategory-card {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .subcategory-card {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .subcategory-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.subcategory-card .subcategory-card-item {
  padding: 10px 10px 20px 10px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
  align-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  border: 1px solid #115636;
}
.subcategory-card .subcategory-card-item:hover {
  box-shadow: rgba(112, 144, 176, 0.25) 0px 16px 23px 0px;
  transform: scale(1.02);
}
.subcategory-card .subcategory-card-item img {
  border-radius: 5px;
}
.subcategory-card .subcategory-card-item span {
  color: #4F5D77;
  font-size: 90%;
}
@media (max-width: 992px) {
  .subcategory-card .subcategory-card-item {
    padding: 5px;
    gap: 5px;
    flex-direction: row;
  }
  .subcategory-card .subcategory-card-item img {
    width: 40px;
  }
  .subcategory-card .subcategory-card-item span {
    font-size: 80%;
  }
}

ul.pagination a {
  color: #696969;
}
ul.pagination a.page-link {
  border: 0px;
}
ul.pagination .active {
  border-radius: 5px;
}

/* Product detail */
@media (max-width: 1199px) {
  .detail-product-description {
    margin-top: 60px;
  }
}
.detail-product-description h1 {
  font-size: 133%;
  color: #1A1A1A;
}
.detail-product-description p {
  font-size: 80%;
}
.detail-product-description .category {
  margin-top: 10px;
  font-size: 80%;
}
.detail-product-description .category a {
  color: #115636;
  text-decoration: none;
}
.detail-product-description .category a:hover {
  text-decoration: underline;
}
.detail-product-description .category span {
  color: #4F5D77;
  padding-right: 10px;
}
.detail-product-description .price {
  border-top: 1px solid #E2E9E1;
  border-bottom: 1px solid #E2E9E1;
  margin-top: 20px;
  padding-top: 15px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: center;
}
.detail-product-description .price .price-current {
  color: #115636;
  font-size: 150%;
}
.detail-product-description .price .price-old {
  color: #989898;
  font-size: 90%;
  text-decoration: line-through;
}
.detail-product-description .labels {
  gap: 5px;
  align-items: center;
}
.detail-product-description .labels .labels-name {
  color: #4F5D77;
  font-size: 80%;
  padding-right: 5px;
}
.detail-product-description .labels .label {
  font-size: 80%;
  color: white;
  border-radius: 100px;
  padding: 2px 10px;
}
@media (max-width: 576px) {
  .detail-product-description .labels .label {
    font-size: 60%;
    padding: 3px 7px;
  }
}
.detail-product-description .label1 {
  background-color: #115636;
}
.detail-product-description .label2 {
  background-color: #563A11;
}
.detail-product-description .label3 {
  background-color: #D26E70;
}
.detail-product-description .label4 {
  background-color: #C8A374;
}

.detail-product-info .stock-status {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.detail-product-info .stock-status span {
  font-weight: bold;
  font-size: 90%;
}
.detail-product-info .stock-status .on-stock {
  color: #115636;
}
.detail-product-info .stock-status .out-of-stock {
  color: #C84631;
}
.detail-product-info .stock-status .low-stock-quantity {
  color: #ECB444;
}

.doplnkovy-prodej {
  margin-top: 20px;
}
.doplnkovy-prodej label {
  padding-left: 5px;
  font-size: 90%;
}

.add-to-card {
  gap: 5px;
  margin-top: 20px;
}
.add-to-card .form-control {
  height: 50px;
  width: 50px;
}
.add-to-card button.submit, .add-to-card button[type=submit] {
  font-size: 90%;
  padding: 12px 40px;
  color: #ffffff;
  border: none;
  background-color: #115636;
  border: 1px solid #115636;
  border-radius: 5px;
  height: 50px;
  transition-duration: 0.3s;
}
.add-to-card button.submit:hover, .add-to-card button[type=submit]:hover {
  transform: scale(1.05);
}
.add-to-card a {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #e5e5e5;
  color: #333;
  border-radius: 4px;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  position: relative;
  text-align: center;
  vertical-align: top;
  width: 50px;
  margin: 0 3px;
  transition-duration: 0.3s;
}
.add-to-card a:hover {
  transform: scale(1.05);
}

.additional-info {
  margin-top: 40px;
}
.additional-info span {
  font-size: 90%;
}
.additional-info .additional-info-item-value {
  color: #1A1A1A;
}
.additional-info .additional-info-item-name {
  font-weight: bold;
}
.additional-info a span.additional-info-item-value {
  text-decoration: underline;
  color: #115636;
}

.product-description-full {
  margin-top: 60px;
}
.product-description-full .product-description-full-content {
  margin-top: 30px;
}
.product-description-full .product-description-full-content p {
  font-size: 90%;
}

.related-products {
  margin-top: 60px;
}

.product-detail-gallery .ag-format-container {
  width: auto;
  margin: 0 auto;
}
.product-detail-gallery ul {
  margin: 0;
  padding: 0;
}
.product-detail-gallery .layout {
  width: 100%;
  position: relative;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .product-detail-gallery .layout {
    width: 100%;
  }
}
.product-detail-gallery .layout a {
  color: #666;
}
.product-detail-gallery .slide {
  display: none;
}
.product-detail-gallery .slide li {
  list-style: none;
}
.product-detail-gallery .slide.slick-initialized {
  display: block;
}
.product-detail-gallery .slick-dots {
  margin-top: 5px;
  margin-left: -5px;
  margin-right: -5px;
  display: flex;
  justify-content: center;
}
.product-detail-gallery .slick-dots li {
  display: inline-block;
  max-height: 56px;
  max-width: 112px;
  margin: 5px;
}
.product-detail-gallery .slick-list.draggable {
  border-radius: 10px;
}
.product-detail-gallery .slick-dots li img {
  height: auto;
  width: 100%;
  cursor: pointer;
  opacity: 0.5;
}
.product-detail-gallery .slick-dots li.slick-active img {
  cursor: default;
  opacity: 1;
}
.product-detail-gallery .slick-prev,
.product-detail-gallery .slick-next {
  margin: -50px 0 0;
  z-index: 99;
  position: absolute;
  top: 50%;
}
.product-detail-gallery .slick-prev {
  left: -50px;
}
.product-detail-gallery .slick-next {
  right: -50px;
}
.product-detail-gallery .icon {
  display: inline-block;
  height: 50px;
  width: 50px;
}
.product-detail-gallery .icon__cnt {
  height: 100%;
  width: 100%;
}
.product-detail-gallery .slider li img {
  border-radius: 5px;
  width: -webkit-fill-available;
}

.product-detail-gallery .slick-dots {
  margin-top: 5px;
  margin-left: 0px;
  margin-right: 0px;
  display: flex;
  justify-content: flex-start;
}

.product-detail-gallery .slick-dots li {
  display: inline-block;
  max-height: 56px;
  max-width: 112px;
  margin: 5px 5px 5px 0px;
}

/* Footer */
footer {
  margin-top: 50px;
  margin-bottom: 50px;
}
footer .newsletter {
  background: #779F8C;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0px !important;
}
footer .newsletter input[type=checkbox] {
  margin-top: 4px;
}
footer .newsletter .container {
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 576px) {
  footer .newsletter .container {
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }
}
footer .newsletter .newsletter-item1 {
  align-items: center;
  justify-content: center;
  gap: 15px;
}
footer .newsletter .newsletter-item1 img {
  width: 40px;
}
footer .newsletter .newsletter-item1 span {
  font-size: 100%;
  font-weight: bold;
  color: white;
}
footer .newsletter .newsletter-item2 p {
  color: white;
}
footer .newsletter .newsletter-item2 p a {
  color: white;
}
@media (min-width: 992px) {
  footer .newsletter .newsletter-item2 input {
    width: 400px;
  }
}
footer .newsletter .newsletter-item2 button {
  background: #1A1A1A;
}
footer .footer-content {
  padding-top: 40px;
  padding-bottom: 40px;
}
footer .footer-content h3 {
  font-size: 120%;
  color: #115636;
}
footer .footer-content h4 {
  color: #1A1A1A;
  font-size: 120%;
}
footer .footer-content ul {
  padding-left: 0px;
}
footer .footer-content ul li {
  list-style: none;
  padding-bottom: 5px;
}
footer .footer-content ul li address {
  margin-bottom: 0px;
}
footer .footer-content ul li a {
  text-decoration: none;
  color: #115636;
}
footer .footer-content ul li a span {
  font-weight: bold;
}
footer .footer-content ul li a:hover {
  text-decoration: underline;
}
footer .footer-content ul.footer-list li a {
  color: #1A1A1A;
  font-weight: normal;
}
footer .footer-content ul.footer-list li a:hover {
  color: #115636;
}
footer .footer-content .socials-icons {
  gap: 8px;
  align-items: center;
}
footer .footer-content .socials-icons img {
  transition-duration: 0.3s;
  height: 22px;
}
footer .footer-content .socials-icons img:hover {
  transform: scale(1.3);
}
footer .footer-content .fci2, footer .footer-content .fci3, footer .footer-content .fci4 {
  padding-top: 20px;
}

.checkout-footer h4 {
  color: #115636 !important;
}
.checkout-footer .fci4 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 576px) {
  .checkout-footer .fci4 {
    align-items: flex-start;
  }
}
.checkout-footer span {
  color: #115636;
  font-size: 90%;
}
.checkout-footer .footer-checkout-contact {
  margin-top: 20px;
  max-width: 420px;
  gap: 20px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgb(254, 250, 244) 0%, rgb(255, 255, 255) 100%);
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  box-shadow: rgba(112, 144, 176, 0.25) 0px 16px 23px 0px;
}
.checkout-footer .footer-checkout-contact img {
  width: 122px;
}
.checkout-footer .footer-checkout-contact ul {
  margin-bottom: 0px;
}
.checkout-footer .footer-checkout-contact ul li {
  text-align: left;
  font-size: 90%;
}
.checkout-footer .footer-checkout-contact ul li:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.checkout-footer .footer-checkout-contact ul li a {
  color: #1A1A1A;
  text-decoration: underline;
  padding-left: 5px;
  animation-duration: all 0.3s ease-in-out;
}
.checkout-footer .footer-checkout-contact ul li a:hover {
  color: #115636;
}

/* POPUP - ADD TO BASKET */
.modal-dialog, .basket {
  max-width: 1300px;
}
.modal-dialog .card, .basket .card {
  border: 0px;
}
.modal-dialog .card a, .basket .card a {
  text-decoration: none;
}
.modal-dialog .product-archive-card, .basket .product-archive-card {
  animation-duration: all 0.3s ease-in-out;
  display: flex;
  position: relative;
  flex-direction: column;
  padding: 10px 10px 20px 10px;
  border: 1px solid #115636;
  border-radius: 10px;
}
.modal-dialog .product-archive-card .labels, .basket .product-archive-card .labels {
  position: absolute;
  margin-left: 10px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.modal-dialog .product-archive-card .labels .label, .basket .product-archive-card .labels .label {
  font-size: 80%;
  color: white;
  border-radius: 100px;
  padding: 2px 10px;
}
@media (max-width: 576px) {
  .modal-dialog .product-archive-card .labels .label, .basket .product-archive-card .labels .label {
    font-size: 60%;
    padding: 3px 7px;
  }
}
.modal-dialog .product-archive-card .labels .label1, .basket .product-archive-card .labels .label1 {
  background-color: #115636;
}
.modal-dialog .product-archive-card .labels .label2, .basket .product-archive-card .labels .label2 {
  background-color: #563A11;
}
.modal-dialog .product-archive-card .labels .label3, .basket .product-archive-card .labels .label3 {
  background-color: #D26E70;
}
.modal-dialog .product-archive-card .labels .label4, .basket .product-archive-card .labels .label4 {
  background-color: #C8A374;
}
.modal-dialog .product-archive-card img, .basket .product-archive-card img {
  border-radius: 5px;
}
.modal-dialog .product-archive-card .category-name, .basket .product-archive-card .category-name {
  font-size: 80%;
  color: #4F5D77;
  margin-top: 10px;
}
@media (max-width: 576px) {
  .modal-dialog .product-archive-card .category-name, .basket .product-archive-card .category-name {
    font-size: 70%;
  }
}
.modal-dialog .product-archive-card .product-name, .basket .product-archive-card .product-name {
  color: #1A1A1A;
  font-size: 100%;
  font-weight: bold;
  line-height: 100%;
  margin-top: 10px;
}
@media (max-width: 576px) {
  .modal-dialog .product-archive-card .product-name, .basket .product-archive-card .product-name {
    font-size: 80%;
  }
}
.modal-dialog .product-archive-card .product-confirm, .basket .product-archive-card .product-confirm {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}
.modal-dialog .product-archive-card .product-confirm .price, .basket .product-archive-card .product-confirm .price {
  display: flex;
  gap: 15px;
  align-items: flex-end;
}
.modal-dialog .product-archive-card .product-confirm .price .price-current, .basket .product-archive-card .product-confirm .price .price-current {
  color: #115636;
  font-size: 100%;
}
@media (max-width: 576px) {
  .modal-dialog .product-archive-card .product-confirm .price .price-current, .basket .product-archive-card .product-confirm .price .price-current {
    font-size: 80%;
  }
}
.modal-dialog .product-archive-card .product-confirm .price .price-old, .basket .product-archive-card .product-confirm .price .price-old {
  color: #989898;
  font-size: 80%;
  text-decoration: line-through;
}
@media (max-width: 576px) {
  .modal-dialog .product-archive-card .product-confirm .price .price-old, .basket .product-archive-card .product-confirm .price .price-old {
    font-size: 60%;
  }
}
@media (max-width: 576px) {
  .modal-dialog .product-archive-card .product-confirm img, .basket .product-archive-card .product-confirm img {
    width: 30px;
  }
}
.modal-dialog .modal-body, .basket .modal-body {
  display: flex;
  flex-direction: column;
  align-content: center;
  padding-bottom: 50px;
  align-items: center;
}
.modal-dialog .modal-header, .basket .modal-header {
  border-bottom: 0px;
}
.modal-dialog .item-add-to-basket, .basket .item-add-to-basket {
  color: #115636;
  font-size: 130%;
  font-weight: bold;
}
.modal-dialog .form-control, .basket .form-control {
  height: 50px;
  width: 50px;
}
.modal-dialog .featured-image img, .basket .featured-image img {
  width: 80px;
}
@media (max-width: 767px) {
  .modal-dialog .featured-image img, .basket .featured-image img {
    width: 160px;
  }
}
.modal-dialog table input.form-control, .basket table input.form-control {
  margin: auto;
}
.modal-dialog table td, .modal-dialog table th, .basket table td, .basket table th {
  text-align: center;
  vertical-align: middle;
}
.modal-dialog table td .table-col-description-phone, .modal-dialog table th .table-col-description-phone, .basket table td .table-col-description-phone, .basket table th .table-col-description-phone {
  padding-right: 10px;
  font-weight: bold;
}
.modal-dialog table td.delete-item img, .basket table td.delete-item img {
  width: 20px;
  transition: all 0.3s ease-in-out;
}
.modal-dialog table td.delete-item img:hover, .basket table td.delete-item img:hover {
  transform: scale(1.2);
}
@media (max-width: 767px) {
  .modal-dialog table thead, .basket table thead {
    display: none;
  }
  .modal-dialog table tr, .basket table tr {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .modal-dialog table .table-col-description-phone, .basket table .table-col-description-phone {
    display: none;
  }
}
.modal-dialog table thead th, .basket table thead th {
  font-weight: bold;
}
.modal-dialog .product-archive .product-archive-container, .basket .product-archive .product-archive-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 1400px) {
  .modal-dialog .product-archive .product-archive-container, .basket .product-archive .product-archive-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .modal-dialog .product-archive .product-archive-container, .basket .product-archive .product-archive-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .modal-dialog .product-archive .product-archive-container, .basket .product-archive .product-archive-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.modal-dialog .modal-btn-path, .basket .modal-btn-path {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Basket */
.basket .featured-image img {
  width: 80px;
}
@media (max-width: 767px) {
  .basket .featured-image img {
    width: 160px;
  }
}
.basket table input.form-control {
  margin: auto;
}
.basket table td, .basket table th {
  text-align: center;
  vertical-align: middle;
}
.basket table td .table-col-description-phone, .basket table th .table-col-description-phone {
  padding-right: 10px;
  font-weight: bold;
}
.basket table td.delete-item img {
  width: 20px;
  transition: all 0.3s ease-in-out;
}
.basket table td.delete-item img:hover {
  transform: scale(1.2);
}
@media (max-width: 767px) {
  .basket table thead {
    display: none;
  }
  .basket table tr {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .basket table .table-col-description-phone {
    display: none;
  }
}
.basket table thead th {
  font-weight: normal;
}
.basket .doplnkove-zbozi .form label {
  font-size: 90%;
  padding-left: 5px;
}
.basket .form-control {
  max-width: 60px;
}

.basket-controls {
  justify-content: space-between;
  align-items: center;
  align-content: center;
}
@media (max-width: 576px) {
  .basket-controls {
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
  }
}

.usp-steps {
  margin-top: 80px;
}

/* Steps path */
.steps {
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .steps {
    gap: 5px;
  }
}
@media (max-width: 576px) {
  .steps .step {
    width: 25%;
    text-align: center;
    justify-content: center;
    align-items: flex-start;
    height: 50px;
  }
}
.steps .step span {
  background-color: #D9D9D9;
  color: #1A1A1A;
  font-size: 90%;
  font-weight: bold;
  text-align: center;
  display: flex;
  border-radius: 1000px;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}
@media (max-width: 576px) {
  .steps .step span {
    width: 24px;
    height: 24px;
  }
}
.steps .step a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #1A1A1A;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .steps .step a {
    font-size: 70%;
    line-height: 110%;
    text-align: center;
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .steps .step a {
    flex-direction: column;
    font-size: 80%;
  }
}
.steps .step a:hover {
  transform: scale(1.2);
}
.steps .active span {
  background: #115636;
  color: white;
}
@media (max-width: 576px) {
  .steps .active span {
    background-color: #115636;
    font-size: 90%;
    font-weight: bold;
    text-align: center;
    display: flex;
    border-radius: 1000px;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .steps {
    max-width: 700px;
    margin: auto;
  }
}
@media (min-width: 992px) {
  .steps {
    max-width: 960px;
    margin: auto;
  }
}

/* Delivery */
.delivery-block {
  border-radius: 10px;
  background-color: #fcfcfc;
  box-shadow: rgba(112, 144, 176, 0.25) 0px 16px 23px 0px;
  padding: 50px;
}
@media (max-width: 767px) {
  .delivery-block {
    padding: 20px;
  }
}
.delivery-block h3 {
  font-size: 110%;
}
.delivery-block .form-item {
  justify-content: space-between;
  border-bottom: 1px solid #DEDEDE;
}
.delivery-block .form-item .note {
  font-size: 80%;
  color: #4F5D77;
  margin-left: 25px;
}
.delivery-block .form-item input[type=radio] {
  margin-top: 4px;
}
.delivery-block .form label {
  font-size: 90%;
  padding-left: 5px;
}
.delivery-block .form label img {
  height: 24px;
  padding-right: 10px;
}

.basket-checkout {
  background-color: #F9F9F9;
}
.basket-checkout h3 {
  background: #779F8C;
  color: white;
  text-align: center;
  width: 100%;
  border-radius: 5px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.basket-checkout .table {
  background: transparent;
}
.basket-checkout .table tr {
  border-color: transparent;
}
.basket-checkout .table tr td {
  font-size: 90%;
  background: transparent;
}
.basket-checkout .table tr td.price {
  white-space: nowrap;
}
@media (min-width: 768px) {
  .basket-checkout .table tr td.featured-image {
    padding-left: 0px;
  }
}
@media (max-width: 768px) {
  .basket-checkout .table tr.basket-checkout-delivery {
    flex-direction: row;
    justify-content: space-between;
  }
}
.basket-checkout .table tr.basket-checkout-delivery td:first-child {
  text-align: left;
}
.basket-checkout .table tr.basket-checkout-delivery td:last-child {
  text-align: right;
}
@media (max-width: 768px) {
  .basket-checkout .table tr.basket-price-total {
    flex-direction: row;
    justify-content: space-between;
  }
}
.basket-checkout .table tr.basket-price-total td {
  font-weight: bold;
}
.basket-checkout .table tr.basket-price-total td:first-child {
  text-align: left;
}
.basket-checkout .table tr.basket-price-total td:last-child {
  text-align: right;
}

.final-checkout .btn-group {
  justify-content: flex-end;
}

/* Contact info */
.create-account {
  border-radius: 5px;
  background: #F7F8F9;
  border: 1px solid #E2E9E1;
  padding: 24px 20px;
  align-items: center;
  align-content: center;
  gap: 10px;
}
.create-account span, .create-account a {
  font-size: 90%;
}
.create-account a {
  color: #115636;
  text-decoration: none;
}
.create-account a:hover {
  text-decoration: underline;
}
.create-account img {
  width: 20px;
  margin-top: -5px;
}

.contact-info .form-control {
  width: auto;
}
@media (max-width: 767px) {
  .contact-info .input-respo-down {
    margin-top: 16px;
  }
}
.contact-info input[type=checkbox] {
  margin-top: 4px;
}
.contact-info input[type=text], .contact-info input[type=tel], .contact-info input[type=email], .contact-info input[type=password], .contact-info select {
  height: 45px;
  font-size: 80%;
  border-radius: 5px;
  border: 1px solid #1A1A1A;
  padding-left: 10px;
  padding-right: 10px;
}
.contact-info input[type=text]::placeholder, .contact-info input[type=tel]::placeholder, .contact-info input[type=email]::placeholder, .contact-info select::placeholder {
  font-size: 90%;
}
.contact-info textarea {
  font-size: 80%;
  border-radius: 5px;
  border: 1px solid #1A1A1A;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
}
.contact-info textarea::placeholder {
  font-size: 80%;
}
.contact-info .form label {
  font-size: 80%;
  padding-left: 5px;
}

/* Free Shipping */
.progress-free-shipping {
  padding-bottom: 1rem;
}
.progress-free-shipping .progress-bar {
  background-color: #115636;
  flex-direction: row;
  align-items: center;
  font-size: 14px;
  height: 30px;
  border-radius: 5px;
}
.progress-free-shipping .progress-bar img {
  margin-top: -2px;
  margin-left: 10px;
}
.progress-free-shipping .progress-bar span {
  margin-left: 3px;
}
.progress-free-shipping .progress {
  position: relative;
  overflow: visible;
}
.progress-free-shipping .progress p {
  margin-bottom: 0px;
  position: absolute;
  right: 0px;
  bottom: -30px;
  font-size: 16px;
  width: 100%;
  text-align: center;
}
.progress-free-shipping .progress-zero .progress-bar {
  width: 100%;
  background-color: #E6E9ED;
  color: #115636;
}

/* Breadcrumb */
.breadcrumb-container {
  background: #FEFAF4;
  padding-top: 16px;
  padding-bottom: 16px;
}
.breadcrumb-container .category-name {
  font-size: 133%;
}
.breadcrumb-container .stock {
  font-size: 80%;
}
.breadcrumb-container ol {
  font-size: 90%;
  margin-bottom: 0px;
}
.breadcrumb-container ol .breadcrumb-item a {
  color: #4F5D77;
  text-decoration: none;
}
.breadcrumb-container ol .breadcrumb-item a:hover {
  text-decoration: underline;
  color: #115636;
}
.breadcrumb-container ol .active {
  color: #115636;
}

/* Post content */
.post-content a {
  color: #115636;
}
.post-content h1 {
  font-size: 200%;
}
.post-content ul {
  padding-left: 1rem;
}
.post-content .table > :not(caption) > * > * {
  border-bottom: 0px;
}
.post-content table {
  border-radius: 5px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 0px;
  box-shadow: rgba(112, 144, 176, 0.25) 0px 16px 23px 0px;
}
.post-content table .custom-thead th {
  background-color: #115636;
  color: white;
}
.post-content table tr:nth-child(odd) td {
  background-color: #fefefe;
}
.post-content blockquote {
  background-color: #FEFAF4;
  padding: 5%;
  box-shadow: rgba(112, 144, 176, 0.25) 0px 16px 23px 0px;
  border-radius: 5px;
}
.post-content .modal-content {
  width: fit-content;
  margin: auto;
}
.post-content .modal-dialog .modal-body, .post-content .basket .modal-body {
  padding-bottom: 0px;
}
.post-content .content-gallery {
  padding-left: 0px;
  padding-right: 0px;
}
.post-content .content-gallery .img-pre {
  height: 300px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  overflow: hidden;
}

/*# sourceMappingURL=style.css.map */
