

:root {
  --farby-main-1: #ed1b2e;
  --farby-main-2: rgb(237, 27, 46);
  --css-overlay-bg: #ffffff;
  --css-overlay-circle-bg: rgba(153, 153, 153, 0.05);
  --css-overlay-circle-active-bg: #575757;

  --css-modra-svetla: #015fc9;
  --css-tooltip-bg: #16243d;
  --css-kontrast: var(--farby-main-1);
  --css-sidebar-bg: var(--farby-main-1);
  --css-sidebar-active-bg: #000000;
  --css-sidebar-border: #04381d;
  --css-sidebar-active-border: #000000;
  --css-sidebar-favicon: #ffffff;
}


/********/
.overlay {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background: var(--css-overlay-bg);
  z-index: 9999;
  -webkit-box-shadow: inset 0px 0px 184px 30px rgba(0,0,0,0.15);
  -moz-box-shadow: inset 0px 0px 184px 30px rgba(0,0,0,0.15);
  box-shadow: inset 0px 0px 184px 30px rgba(0,0,0,0.15);
  /*cursor: wait;*/
}

.overlay__inner {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.overlay__content {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.spinner {
  width: 75px;
  height: 75px;
  display: inline-block;
  border-width: 2px;
  border-color: var(--css-overlay-circle-bg);
  border-top-color: var(--css-overlay-circle-active-bg);
  animation: spin 1s infinite linear;
  border-radius: 100%;
  border-style: solid;
}

@keyframes spin {
  100% {
      transform: rotate(360deg);
  }
}

.fade-in {
  opacity: 1;
}

.overlay.fade-in {
  -webkit-animation: fade-yellow 0.3s infinite;
  -moz-animation: fade-yellow 0.3s infinite;
  -o-animation: fade-yellow 0.3s infinite;
  animation: fade-yellow 0.3s infinite;
}

@-webkit-keyframes fade-yellow {
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}

@-webkit-keyframes fade-yellow2 {
  0% {
      opacity: 1;
  }

  100% {
      opacity: 0;
  }
}

.fade-out {
  opacity: 0;
  visibility: hidden;
}

.overlay.fade-out {
  -webkit-animation: fade-yellow 0.2s ease-in-out;
  -moz-animation: fade-yellow 0.2s ease-in-out;
  -o-animation: fade-yellow 0.2s ease-in-out;
  animation: fade-yellow 0.2s ease-in-out;
  /*cursor: wait;*/
}

#cexnLoadingOverlay2 {
  background-color: rgb(0 0 0 / 0%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: inset 0px 0px 184px 30px rgba(0,0,0,0.01);
  -moz-box-shadow: inset 0px 0px 184px 30px rgba(0,0,0,0.01);
  box-shadow: inset 0px 0px 184px 30px rgba(0,0,0,0.01);
  /*cursor: wait;*/
}

#cexnLoadingOverlay2 > div {}
#cexnLoadingOverlay2 > div .spinner {
  border-color: #00000029;
  border-top-color: #0000009e;
}

#cexnLoadingOverlay.fade-out, #cexnLoadingOverlay2.fade-out {
  -webkit-animation: fade-yellow 0.2s ease-in-out;
  -moz-animation: fade-yellow 0.2s ease-in-out;
  -o-animation: fade-yellow 0.2s ease-in-out;
  animation: fade-yellow 0.2s ease-in-out;
}

@-webkit-keyframes fade-yellow {
  0% {
      opacity: 1;
      visibility: visible;
  }

  100% {
      opacity: 0;
      visibility: hidden;
  }
}

@-webkit-keyframes fade-yellow-special {
  from {
      opacity: 1;
      visibility: visible;
  }
  100% {
      cursor: auto;
  }
  to {
      opacity: 0;
      visibility: hidden;
  }
}

.eshop-item-box {
  position: relative;
  min-width: 0;
  flex-shrink: 0;
  background: white;
  white-space: normal;
  border: 1px solid rgba(116,123,145,.2);
  border-radius: 20px;
  display: flex;
  height: 100%;
}
.eshop-item-box .re-img {
  /* padding-top: 10%; */
  display: block;
  background-color: #ffffff;
  position: relative;
  border-radius: 20px 0 0 20px;
  /* width: 250px; */
  border-right: 1px solid #ddd;
  width: 30%;
}
.eshop-item-box .re-img > div {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding: 10% 10%;
  height: 250px;
}
.eshop-item-box .re-img > div .d-p-list {
  position: absolute;
  top: 10px;
  left: 10px;
  margin-top: 10px;
  font-size: 0;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.eshop-item-box .re-img > div .d-p-label {
  display: inline-block;
  padding: 4px 10px;
  color: #fff;
  border-radius: 3px;
  font-weight: bolder;
  font-size: 14px;
  line-height: 1;
  vertical-align: top;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-transform: uppercase;
  margin-right: 5px;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 15px;
  z-index: 3;
  text-align: center;
}

.navbar-toggler .navbar-toggler-icon {
  color: var(--farby-main-1);
  transition: color .2s ease-in-out;
  font-size: 29px;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  color: var(--farby-main-2);
}

.eshop-item-box .re-img > div .d-p-label.d-zlava {
  background: #ee0000;
  color: #fff;
}
.eshop-item-box .re-img > div > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  /* max-width: 100%; */
}
/*.eshop-item-box .re-img > div > div {
  height: 200px;
  background-size: contain;
  background-position: center;
  border-radius: inherit;
  background-image: url('../img/no-image-transparent.png');
  background-repeat: no-repeat;
}*/
.eshop-item-box .re-middle {
  padding: 15px 25px;
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 70%;
}
.eshop-item-box .re-middle a:hover .re-nazov {
  color: var(--farby-main-2);
}
.eshop-item-box .re-middle .re-nazov {
  margin-bottom: 0;
  transition: color 0.2s ease-in-out 0s;
  color: #000;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  /* max-width: 60%; */
  line-height: 28px;
}
.eshop-item-box .re-middle .re-typy {
  margin-bottom: 10px;
}
.eshop-item-box .re-middle .re-typ-vina {
  font-size: 12px;
  border-radius: 25px;
  padding: 1px 12px;
  display: inline-block;
  background-color: var(--farby-main-1);
  color: #fff;
}
.eshop-item-box .re-middle .re-bez-histamu {
  font-size: 12px;
  border-radius: 25px;
  padding: 1px 12px;
  display: inline-block;
  background-color: #f3f5fb;
  color: #000;
}
.eshop-item-box .re-middle .re-popis {
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.eshop-item-box .re-middle .re-cena {
  font-size: 22px;
  font-weight: bold;
}
.eshop-item-box .re-middle .re-cena span:nth-of-type(1) {
  margin-right: 0.7em;
}
.eshop-item-box .re-middle .re-cena span:nth-of-type(2) {
  font-size: 14px;
  font-weight: 400;
  position: relative;
  color: #747b91;
}

.eshop-item-box .re-middle .re-cena span:nth-of-type(2)::before {
  position: absolute;
  content: '';
  top: 50%;
  left: -1px;
  width: calc(100% + 1px);
  height: 1px;
  background: #747b91;
}

.eshop-item-box .re-middle .re-btn {}
.eshop-item-box .re-middle .re-btn .input-group {
  margin-bottom: 0;
}
.eshop-item-box .re-middle .re-btn input {
  border-radius: 25px;
  width: 60px;
  padding-right: 1px;
  padding-left: 17px;
  text-align: center;
}
.eshop-item-box .re-middle .re-btn .btn .fa {
  margin-right: 10px;
}
.eshop-item-box .re-middle .re-btn .btn {
  border-radius: 25px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.6;
  padding: 9px 20px;
}


.eshop-kosik-dropdown:not(.eshop-zhrnutie) {
  min-width: 350px;
}
.eshop-kosik-dropdown.eshop-zhrnutie {
  border: 1px solid #ddd;
  margin-bottom: 25px;
  border-radius: 25px;
  padding: 15px 20px;
  /* background-color: #f3f5fb; */
  /* color: #747b91; */
  color: #000000bd;
}

.eshop-kosik-dropdown.eshop-zhrnutie li {
  list-style: none;
  padding: 0;
}

.eshop-kosik-dropdown.eshop-zhrnutie li.zhrnutie-doprava-a-platba .dp-info {
  padding-right: 20px;
  font-style: italic;
  /* opacity: 0.9; */
}

.eshop-kosik-dropdown.eshop-zhrnutie li.zhrnutie-doprava-a-platba .dp-spolu {
  padding-right: 20px;
  /* opacity: 0.9; */
}
.eshop-kosik-dropdown.eshop-zhrnutie li.zhrnutie-doprava-a-platba {
  font-size: 90%;
}

.eshop-kosik-dropdown.eshop-zhrnutie li.zhrnutie-doprava-a-platba span {
  font-weight: var(--fw-style-bold);
  color: #000;
  font-size: 15px;
}

.eshop-kosik-dropdown.eshop-zhrnutie li.zhrnutie-kosik .dp-spolu {
  padding-right: 20px;
  /* opacity: 0.9; */
}

.eshop-kosik-dropdown.eshop-zhrnutie li.zhrnutie-kosik {
  font-size: 90%;
}

.eshop-kosik-dropdown.eshop-zhrnutie li.zhrnutie-kosik span {
  font-weight: var(--fw-style-bold);
  color: #000;
  font-size: 15px;
}
.eshop-kosik-dropdown .ek-dropdown-row {
  display: flex;
  gap: 12px;
}

[data-eshop-template-kosik] .eshop-kosik-dropdown .ek-dropdown-row {
  border-bottom: 1px solid #ddd;
  flex-wrap: nowrap !important;
}
.eshop-kosik-dropdown .ek-dropdown-row .ek-extra-fields {
  padding-left: 44px;
  margin-bottom: 14px;
}
.eshop-kosik-dropdown .ek-dropdown-row .ek-extra-fields .re-extra-box {
  display: flex;
  width: 100%;
}
.eshop-kosik-dropdown .ek-dropdown-row .ek-extra-fields .re-extra-box > span:first-child {
  background-color: #5e2e60 !important;
  padding: 3px 9px;
  display: inline-block;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  color: #fff;
  font-size: 14px;
  flex-grow: 1;
  display: block !important;
  text-wrap: wrap !important;
}

.eshop-kosik-dropdown .ek-dropdown-row .ek-extra-fields .re-extra-box > span:last-child {
  background-color: #337982;
  padding: 3px 9px;
  display: inline-block;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  color: #fff;
  font-size: 14px;
  text-wrap: nowrap;
  display: flex;
}
.eshop-kosik-dropdown .ek-dropdown-row .ek-extra-fields .re-extra-box > span:nth-of-type(2) span {
  align-self: center;
}

.eshop-zhrnutie-footer {
  border: 1px solid #ddd;
  margin-bottom: 16px;
  border-radius: 25px;
  padding: 15px 20px;
}
.eshop-zhrnutie-footer .zh-celkovo {
  border-bottom: 1px solid #ddd;
  padding-bottom: 6px;
  margin-bottom: 10px;
  font-size: 16px;
}
.eshop-zhrnutie-footer .zh-celkovo .zh-part1 {
  font-weight: 600;
  font-size: 95%;
}
.eshop-zhrnutie-footer .zh-celkovo .zh-part2 span {
  color: #000;
  font-weight: var(--fw-style-bold);
  font-size: 20px;
}
.eshop-zhrnutie-footer .zh-pokracovat {}
.eshop-zhrnutie-footer .zh-pokracovat button {}
.eshop-zhrnutie-footer .zh-spat {}
.eshop-zhrnutie-footer .zh-spat button {}

.eshop-kosik-dropdown .ek-dropdown-row .ek-d-img {
  display: flex;
  width: 30px;
  min-width: 30px;
  color: #101010;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.eshop-kosik-dropdown .ek-dropdown-row .ek-d-img img {
  max-width: 100%;
  height: auto;
  max-height: 68px;
}
.eshop-kosik-dropdown .ek-dropdown-row .ek-d-text {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  align-self: center;
}
.eshop-kosik-dropdown .ek-dropdown-row .ek-d-text a {
  color: #606060;
  font-size: 13px;
  line-height: 17px;
}
.eshop-kosik-dropdown .ek-dropdown-row .ek-d-text a:hover {
  color: rgb(237 27 46);
  text-decoration: none;
}
.eshop-kosik-dropdown .ek-dropdown-row .ek-d-text .ek-d-t-title {
  font-size: 12px;
  line-height: 14px;
  display: block;
}
.eshop-kosik-dropdown .ek-dropdown-row .ek-d-text .ek-d-t-quantity {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}
.eshop-kosik-dropdown .ek-dropdown-row .ek-d-text .ek-d-t-quantity span {
  font-size: 12px;
  font-weight: 300;
  line-height: 21px;
  color: rgb(98 98 98);
}
.eshop-kosik-dropdown .ek-dropdown-row .ek-d-cost {
  display: flex;
  gap: 3px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.eshop-kosik-dropdown .ek-dropdown-row .ek-d-cost span {
  color: #000;
  font-size: 15px;
  line-height: 24px;
  font-weight: var(--fw-style-bold);
}
.eshop-kosik-dropdown .ek-dropdown-footer {}
.eshop-kosik-dropdown .ek-dropdown-footer .overall-cost {
  display: flex;
  gap: 5px;
  justify-content: space-between;
}
.eshop-kosik-dropdown .ek-dropdown-footer .overall-cost .oc-part1 {
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  color: #000000;
}
.eshop-kosik-dropdown .ek-dropdown-footer .overall-cost .oc-part2 {
  color: #e9242e;
  font-size: 16px;
  line-height: 24px;
  font-weight: var(--fw-style-bold);
  text-align: right;
  min-width: 70px;
}

.eshop-adjust-quantity {
  background: url(./../img/eshop/plus-minus-quantity.png) no-repeat 100% 0;
  border: 1px solid #d2d2d2;
  border-radius: 3px;
  position: relative;
  height: 30px;
  width: 60px;
  font-size: 14px;
  text-align: center;
}

.eshop-adjust-quantity .countEdit {
  background: #fff;
  border-right: 1px solid #d2d2d2;
  float: left;
  width: 37px;
  padding-left: 1px;
}

.eshop-adjust-quantity .countEdit input {
  height: 24px;
  text-align: center;
  width: 23px;
  background-color: #fff;
  border: 1px solid #fff;
  margin: 2px;
  vertical-align: middle;
  padding: 1px 2px;
}

.eshop-adjust-quantity [data-eshop-kosik-quantity-take], .eshop-adjust-quantity [data-eshop-kosik-quantity-add] {
  cursor: pointer;
  float: left;
  height: 15px;
  width: 21px;
}

.eshop-obchod {}
.eshop-obchod .eo-box {
  /* border: 1px solid #ddd; */
  -webkit-box-shadow: 0px -1px 9px 0px rgba(163,163,163,1);
  -moz-box-shadow: 0px -1px 9px 0px rgba(163,163,163,1);
  box-shadow: 0px -1px 9px 0px rgba(163,163,163,1);
  border-radius: 10px;
  padding: 20px 20px;
  height: 320px;
}

.eshop-obchod .eo-box .eo-obrazok {
  height: 170px;
}
.eshop-obchod .eo-box .eo-obrazok img {
  max-height: 170px;
  display: block;
}


.eshop-doprava-navyber {}
.eshop-doprava-navyber .doprava-item {
  border: 1px solid #ddd;
  margin-bottom: 16px;
  border-radius: 25px;
  padding: 0 10px;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: pointer;
}
.eshop-doprava-navyber .doprava-item.doprava-checked {
  background-color: #e8f5e2;
  border-color: #94cf79;
}
.eshop-doprava-navyber .doprava-item.doprava-blocked {
  cursor: not-allowed;
  opacity: .251;
  border-color: #c4cad5;
  background-color: #c4cad5;
}
.eshop-doprava-navyber .doprava-item.doprava-blocked .dp-cena span {
  color: #292929 !important;
}
.eshop-doprava-navyber .doprava-item .dp-checkbox {
  padding: 15px 15px;
}
.eshop-doprava-navyber .doprava-item .dp-checkbox span {
    color: #e3e3e3;
    opacity: 0.5;
}
.eshop-doprava-navyber .doprava-item.doprava-checked .dp-checkbox span {
  color: green;
  opacity: 1;
}
.eshop-doprava-navyber .doprava-item .dp-info {
  padding: 20px 20px;
}
.eshop-doprava-navyber .doprava-item .dp-info .dp-desc {
  font-size: 90%;
  opacity: 0.8;
}
.eshop-doprava-navyber .doprava-item .dp-info .dp-desc2 {}
.eshop-doprava-navyber .doprava-item .dp-info .dp-desc2 span {}
.eshop-doprava-navyber .doprava-item .dp-cena {
  padding: 15px 15px;
}
.eshop-doprava-navyber .doprava-item .dp-cena span {
  font-weight: var(--fw-style-bold);
}
.eshop-doprava-navyber .doprava-item .dp-cena span.dp-zadarmo {
  color: green;
}


/***/


/**/

.btn:active, .btn:focus, .navbar-toggler {
  box-shadow: none !important;
}

.eshop-detail-box {margin-bottom: 5px;}
.eshop-detail-box:not(.asistant-verzia) .re-left-side {
  border-radius: 30px;
  padding: 10px;
  background-color: #ffffff;
  position: relative;
}


.eshop-detail-box:not(.asistant-verzia) .re-left-side .d-p-list {
  position: absolute;
  top: 10px;
  left: 10px;
  margin-top: 10px;
  font-size: 0;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  top: 45px!important;
  left: 40px!important;
}
.eshop-detail-box:not(.asistant-verzia) .re-left-side .d-p-label {
  display: inline-block;
  padding: 4px 10px;
  color: #fff;
  border-radius: 3px;
  font-weight: bolder;
  font-size: 14px;
  line-height: 1;
  vertical-align: top;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-transform: uppercase;
  margin-right: 5px;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 15px;
  z-index: 3;
  text-align: center;
}
.eshop-detail-box:not(.asistant-verzia) .re-left-side .d-p-label.d-zlava {
  background: #ee0000;
  color: #fff;
}

.eshop-detail-box .re-left-side .re-obr {
  height: 330px;
  background-size: contain;
  background-position: center;
  background-image: url('../img/no-image-transparent.png');
  background-repeat: no-repeat;
}
.eshop-detail-box .re-left-side .re-obr2 {
  height: 106px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.eshop-detail-box .re-right-side {}
.eshop-detail-box .re-right-side .re-info {}
.eshop-detail-box .re-right-side .re-info .d-skladom-high .fa {
  font-size: 60%;
  position: relative;
  top: -2px;
}
.eshop-detail-box .re-right-side .re-info .d-skladom-high {
  color: #008a00;
  position: relative;
  display: block;
  font-weight: bolder;
  font-size: 14px;
  line-height: 1.2;
  margin-top: 15px;
  vertical-align: middle;
}
.eshop-detail-box .re-right-side .re-info .d-skladom-low .fa {
  font-size: 60%;
  position: relative;
  top: -2px;
}
.eshop-detail-box .re-right-side .re-info .d-skladom-low {
  color: #cfa431;
  position: relative;
  display: block;
  font-weight: bolder;
  font-size: 14px;
  line-height: 1.2;
  margin-top: 15px;
  vertical-align: middle;
}
.eshop-detail-box .re-right-side .re-info .d-skladom-none .fa {
  font-size: 60%;
  position: relative;
  top: -2px;
}
.eshop-detail-box .re-right-side .re-info .d-skladom-none {
  color: #000;
  position: relative;
  display: block;
  font-weight: bolder;
  font-size: 14px;
  line-height: 1.2;
  margin-top: 15px;
  vertical-align: middle;
}

.eshop-detail-box .re-right-side .re-info .d-dodanie .fa {}
.eshop-detail-box .re-right-side .re-info .d-dodanie {
  font-size: 12px;
  color: #000;
  margin: 15px 0 0 0;
}

.eshop-detail-box .re-right-side .re-info .re-nazov {
  margin-bottom: 10px;
  transition: color 0.2s ease-in-out 0s;
  color: #000;
  text-decoration: none;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.43;
  padding-top: 10px;
}

.eshop-detail-box .re-right-side .re-info .re-typy {
  margin-bottom: 20px;
}
.eshop-detail-box .re-right-side .re-info .re-typ-vina {
  font-size: 12px;
  border-radius: 25px;
  padding: 1px 12px;
  display: inline-block;
  background-color: var(--farby-main-1);
  color: #fff;
}

.eshop-detail-box .re-right-side .re-info .re-bez-histamu {
  font-size: 12px;
  border-radius: 25px;
  padding: 1px 12px;
  display: inline-block;
  background-color: #f3f5fb;
  color: #000;
}

.eshop-detail-box .re-right-side .re-info .re-popis {
  color: #000;
  margin-bottom: 30px;
}
.eshop-detail-box .re-right-side .re-info .re-popis .long-version {
  line-break: anywhere;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.h-header {
  font-weight: 700;
  font-style: normal;
  color: #000;
  margin-bottom: 0;
  font-size: 20px;
  text-align: left;
  max-width: 90%;
}

.eshop-detail-box .re-right-side .re-info .re-cena {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
}
.eshop-detail-box .re-right-side .re-info .re-cena span:nth-of-type(1) {
  margin-right: 0.7em;
}
.eshop-detail-box .re-right-side .re-info .re-cena span:nth-of-type(2) {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  color: #747b91;
  top: -2px;
}

.eshop-detail-box .re-right-side .re-info .re-cena span:nth-of-type(2)::before {
  position: absolute;
  content: '';
  top: 50%;
  left: -1px;
  width: calc(100% + 1px);
  height: 1px;
  background: #747b91;
}

.eshop-detail-box .re-right-side .re-info .re-btn {}
.eshop-detail-box .re-right-side .re-info .re-btn .input-group {
  margin-bottom: 0;
}
.eshop-detail-box .re-right-side .re-info .re-btn input {
  border-radius: 25px;
  width: 60px;
  padding-right: 1px;
  padding-left: 17px;
  text-align: center;
}
.eshop-detail-box .re-right-side .re-info .re-btn .btn .fa {
  margin-right: 10px;
}
.eshop-detail-box .re-right-side .re-info .re-btn .btn {
  border-radius: 25px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.6;
  padding: 9px 20px;
}



.eshop-detail-box .re-right-side .re-info .re-box {
  -webkit-box-shadow: 0px 0px 22px -13px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 22px -13px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 22px -13px rgb(0 0 0 / 0.5);
  border-radius: 10px;
  padding: 15px;
}

.eshop-detail-box .re-right-side .re-info .re-box .re-part-1 {
  font-size: 21px;
  font-weight: var(--fw-style-bold);
  padding: 0 10px;
}
.eshop-detail-box .re-right-side .re-info .re-box .re-part-2 {
  padding: 0 10px;
  font-size: 20px;
}
.eshop-detail-box .re-right-side .re-info .re-box .re-part-2.re-cena {
  font-size: 24px;
  color: #743676;
}

.eshop-detail-box .re-right-side .re-info .re-box-zavolat {
  color: #fff;
  background-color: #ff5400;
}
.eshop-detail-box .re-right-side .re-info .re-box-zavolat a {
  color: #fff;
}
.eshop-detail-box .re-right-side .re-info .re-box-zavolat .fa {
  background-color: #2d2c2c;
  color: #fff;
  padding: 5px 6px;
  border-radius: 50%;
  font-size: 16px;
}


.eshop-detail-box .re-right-side .re-info .re-box-viac {
  color: #fff;
  background-color: #2d2c2c;
}
.eshop-detail-box .re-right-side .re-info .re-box-viac a {
  color: #fff;
  text-align: center;
}
.eshop-detail-box .re-right-side .re-info .re-box-viac .fa {
  /* background-color: #5e2e60; */
  color: #fff;
  padding: 5px 6px;
  border-radius: 50%;
  font-size: 16px;
}

.eshop-detail-box-box-popis {
  padding: 0 0;
}

[data-eshop-pridat-produkt] {
  cursor: pointer;
  user-select: none;
}

.hroby-box {
  margin: 0 auto;
  max-width: 922px;
}
.hroby-box .re-line:not(.skip-this-one) {
  position: relative;
  -webkit-box-shadow: 0px 0px 22px -13px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 22px -13px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 22px -13px rgba(0,0,0,0.5);
  margin-bottom: 0;
  padding: 22px 36px;
  font-weight: 400;
  /* padding-right: 237px; */
  padding-bottom: 22px;
  border-radius: 10px;
}
.hroby-box .re-line-inner {
  margin: 0 auto;
}

.hroby-box .re-line-inner .re-ziadanky {
  margin-bottom: 15px;
}
.hroby-box .re-line-inner .re-ziadanka {
  background-color: #ffffff;
  /* color: #000; */
  padding: 13px 19px;
  border-radius: 10px;
  margin-bottom: 15px;
  -webkit-box-shadow: 0px 0px 22px -13px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 22px -13px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 22px -13px rgba(0,0,0,0.5);
}
.hroby-box .re-line-inner .re-ziadanka .re-popis-box {
  /* max-width: 100%; */
  /* white-space: wrap; */
  word-break: break-all;
  padding-bottom: 4px;
}
.hroby-box .re-line-inner .re-ziadanka .re-info-boxik {
  background-color: #5e2e60;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
}
.hroby-box .re-line-inner .re-ziadanka:last-child {
  margin-bottom: 0px;
}
.hroby-box .re-line-inner .re-ziadanka b {
  font-weight: 500 !important;
}

.hroby-box .re-line .re-part-1 {
  padding: 10px 10px 12px 10px;
  width: fit-content;
}
.hroby-box .re-line .re-part-1 span {
  color: #5e2e60;
  font-size: 27px;
  line-height: 20px;
}
.hroby-box .re-line .re-part-1 .re-dates {
  /* gap: 30px; */
  margin-top: 5px;
}
.hroby-box .re-line .re-part-1 .re-dates span {
  color: #000;
  font-size: 20px;
  line-height: 20px;
}
.hroby-box .re-line .re-part-1 .re-dates .fa {
  position: relative;
  transform: translateY(-15%);
  font-size: 14px;
}
.hroby-box .re-line .re-part-1 .re-dates div:nth-of-type(1) {
  margin-right: 35px;
}
.hroby-box .re-line .re-part-1 .re-dates div:nth-of-type(2) {
}
.hroby-box .re-line .re-part-2 {
  position: relative;
  padding: 6px 10px;
  padding-right: calc(100px);
  overflow: hidden;
  max-width: 100%;
}
.hroby-box .re-line .re-part-2 span {
  color: #703774;
  font-size: 31px;
  background-color: #fff;
  line-height: 30px;
  position: relative;
  z-index: 2;
  border-radius: 10px;
  display: inline-block;
}
.hroby-box .re-line .re-obs-number {
  position: absolute;
  right: 50px;
  top: 0;
  min-width: 58px;
  height: 45px;
  line-height: 43px;
  background-color: #5e2e60;
  color: #fff;
  text-align: center;
  padding: 0px 10px 0px 10px;
  transform: translateY(-100%);
  border-radius: 5px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
  font-weight: 300;
  font-size: 21px;
}
.hroby-box .re-line .re-obs-jedno {}
.hroby-box .re-line .re-obs-jedno .btn {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.hroby-box .re-line .re-obs-number span {
  vertical-align: middle;
}
.hroby-box .re-line .re-abs-bg {
  position: absolute;
  background-image: url('../img/cintorin.png');
  right: 0;
  height: 100%;
  bottom: -1px;
  background-repeat: no-repeat;
  width: 100%;
  background-size: contain;
  background-position: right top;
}

.hroby-box .re-line-after {
  z-index: 2;
  position: relative;
  top: 0;
  transform: translateY(-23px);
  margin-bottom: 60px;
  font-size: 18px;
  padding: 0 26px;
}
.hroby-box .re-line-after.re-ziadna {}
.hroby-box .re-line-after.re-ziadna .re-line-after-inner {
  background-color: #ffffff;
  color: #5e2e60;
}
.hroby-box .re-line-after.re-ziadna .re-line-after-inner a {}
.hroby-box .re-line-after-inner {
  font-weight: 400;
  text-align: center;
  margin: 0 auto;
  -webkit-box-shadow: 0px 0px 22px -13px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 22px -13px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 22px -13px rgba(0,0,0,0.5);
  background-color: #5e2e60;
  color: #fff;
  border-radius: 10px;
  padding: 11px 5px;
}

.hroby-box .re-line-after-inner a {
  color: inherit;
}

.hroby-box .re-line-before {
  margin-bottom: 10px;
}
.hroby-box .re-line-before-inner {}

.eshop-kosik-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 7;
}
.eshop-kosik-btn .btn {
  position: relative;
  /* padding: 12px 19.15px; */
  display: flex;
  justify-content: center;
  width: 50px;
  height: 50px;
  align-items: center;
  border-radius: 50%;
  font-size: 19px;
  -webkit-box-shadow: 0px 0px 22px -13px rgba(0,0,0,1);
  -moz-box-shadow: 0px 0px 22px -13px rgba(0,0,0,1);
  box-shadow: 0px 0px 22px -13px rgb(0 0 0 / 1);
  transition: 0.2s;
  background: var(--farby-main-1) !important;
  border-color: var(--farby-main-1) !important;
}
.eshop-kosik-btn .fa {}
.eshop-kosik-btn .re-pocet {
  position: absolute;
  top: -15px;
  right: -6px;
  font-size: 14px;
  background-color: var(--farby-main-2);
  padding: 0px 8.57px;
  height: 28px;
  min-width: 28px;
  line-height: 28px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 22px -13px rgba(0,0,0,1);
  -moz-box-shadow: 0px 0px 22px -13px rgba(0,0,0,1);
  box-shadow: 0px 0px 22px -13px rgb(0 0 0 / 1);
  display: block;
}
.btn-kosik-header {
  position: relative;
}
.btn-kosik-header .re-pocet {
  position: absolute;
  top: -10px;
  right: -7px;
  font-size: 12px;
  background-color: #000;
  padding: 2px 7.7px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 22px -13px rgba(0,0,0,1);
  -moz-box-shadow: 0px 0px 22px -13px rgba(0,0,0,1);
  box-shadow: 0px 0px 22px -13px rgb(0 0 0 / 1);
  display: block;
}


.eshop-pg-kosik-box {}
.eshop-pg-kosik-item-box {
  position: relative;
  border-bottom: 1px solid #c2c7d6;
  margin-bottom: 15px;
  padding: 22px 26px;
  font-weight: 400;
  /* padding-right: 237px; */
  padding-bottom: 22px;
}
.eshop-pg-kosik-item-box .re-part-1 {
  align-self: center;
  margin: 0 10px;
  text-align: center;
  /* width: 1%; */
  flex: 0 0 100px;
}
.eshop-pg-kosik-item-box .re-part-1 img {
  /* width: 80px; */
  max-width: 100%;
  /* background-color: #fbfbfb; */
  max-height: 120px;
}
.eshop-pg-kosik-item-box .re-part-2 {
  align-self: center;
  flex: 1 1 0;
  margin: 0 10px;
}
.eshop-pg-kosik-item-box .re-part-2 .re-link-1 {
  font-size: 20px;
  line-height: 1.5;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  color: #000;
}
.eshop-pg-kosik-item-box .re-part-2 .re-extra-fields-box {
  /* width: fit-content; */
  max-width: 700px;
}
.eshop-pg-kosik-item-box .re-part-2 .re-extra-fields-box .form-control[readonly] {
}
.eshop-pg-kosik-item-box .re-part-3 {
  align-self: center;
  margin: 0 10px;
}
.eshop-pg-kosik-item-box .re-part-4 {
  align-self: center;
  width: 100px;
  text-align: left;
  max-width: 100%;
  margin: 0 10px;
  font-size: 14px;
  font-weight: bolder;
  color: #000;
}
.eshop-pg-kosik-item-box-inner {
  margin: 0 auto;
}
.eshop-pg-kosik-item-box-inner > .d-flex:nth-last-of-type(1) {gap: 15px;}

.eshop-pg-kosik-box-after {}
.eshop-pg-kosik-box-after-inner {}


.eshop-pg-kosik-footer {
  padding: 0px 0px;
  border-radius: 10px;
}
.eshop-pg-kosik-footer-inner {}

.eshop-pg-kosik-item-box .input-group-prepend .dropdown .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  height: 100%;
  white-space: normal;
}

.eshop-pg-kosik-item-box .input-group-prepend .dropdown .dropdown-item {
  cursor: pointer;
}

@media (max-width: 1200px) {
.eshop-pg-kosik-item-box .input-group-prepend .dropdown .dropdown-item {
  white-space: normal;
}
  
  .eshop-pg-kosik-item-box-inner > .d-flex:nth-last-of-type(1) {
  flex-wrap: wrap;
  justify-content: center !important;
  !i;
  !;
}
  .eshop-pg-kosik-item-box .re-part-1 {
  width: 100%;
}
  .eshop-pg-kosik-item-box .re-part-2 {
      text-align: center;
  }
  .eshop-pg-kosik-item-box .re-part-2 .re-extra-fields-box {
  margin: 0 auto;
  /* max-width: 100%; */
  /* width: 100%; */
}
  .eshop-pg-kosik-item-box .re-part-3 {
      width: 100%;
  }
  .eshop-pg-kosik-item-box .re-part-3 .d-flex {
      justify-content: center !important;
  }
  .eshop-pg-kosik-item-box .re-part-4 {
  width: 100%;
  text-align: center;
}
}


.eshop-pg-kosik-item-box .re-part-2 .re-extra-fields-box .input-group {
  width: 100%;
  border-radius: 0px !important;
  display: flex;
  justify-content: center;
}
.eshop-pg-kosik-item-box .re-part-2 .re-extra-fields-box .input-group .input-group-prepend {
  /* width: 100%; */
}
.eshop-pg-kosik-item-box .re-part-2 .re-extra-fields-box .input-group > div:first-child.input-group-prepend .btn {
  /* width: 100%; */
  /* border-radius: 0px !important; */
  /* margin-bottom: 0px; */
  /* border-top-left-radius: 5px !important; */
  /* border-top-right-radius: 5px !important; */
}
.eshop-pg-kosik-item-box .re-part-2 .re-extra-fields-box .input-group > div:last-child.input-group-prepend .btn {
  width: 100%;
  border-radius: 0px !important;
  margin-bottom: 0px;
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}
.eshop-pg-kosik-item-box .re-part-2 .re-extra-fields-box .input-group .input-group-prepend .btn {
  /* text-wrap: balance; */
}

.eshop-pg-kosik-item-box .re-extra-fields-box .input-group > div/*:not(:last-child)*/ {
  /* margin-left: 0 !important; */
}

.eshop-pg-kosik-item-box .re-extra-fields-box .input-group > div:not(:last-child) input {
 border-radius: 0px !important;
}

.eshop-pg-kosik-item-box .re-part-2 .re-extra-fields-box .input-group > div:last-child input {
  border-radius: 0px !important;
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
  /* margin-left: 0 !important; */
}


@media (max-width: 997px) {
  .eshop-pg-kosik-item-box .re-part-2 .re-extra-fields-box .input-group {
      width: 100%;
      border-radius: 0px !important;
      display: flex;
      justify-content: center;
  }
  .eshop-pg-kosik-item-box .re-part-2 .re-extra-fields-box .input-group .input-group-prepend {
      width: 100%;
  }
  .eshop-pg-kosik-item-box .re-part-2 .re-extra-fields-box .input-group > div:first-child.input-group-prepend .btn {
      width: 100%;
      border-radius: 0px !important;
      margin-bottom: 0px;
      border-top-left-radius: 5px !important;
      border-top-right-radius: 5px !important;
  }
  .eshop-pg-kosik-item-box .re-part-2 .re-extra-fields-box .input-group > div:last-child.input-group-prepend .btn {
      width: 100%;
      border-radius: 0px !important;
      margin-bottom: 0px;
      border-bottom-left-radius: 5px !important;
      border-bottom-right-radius: 5px !important;
  }
  .eshop-pg-kosik-item-box .re-part-2 .re-extra-fields-box .input-group .input-group-prepend .btn {
      /* text-wrap: balance; */
  }

  .eshop-pg-kosik-item-box .re-extra-fields-box .input-group > div/*:not(:last-child)*/ {
      margin-left: 0 !important;
  }

  .eshop-pg-kosik-item-box .re-extra-fields-box .input-group > div:not(:last-child) input {
     border-radius: 0px !important;
  }
  
  .eshop-pg-kosik-item-box .re-part-2 .re-extra-fields-box .input-group > div:last-child input {
      border-radius: 0px !important;
      border-bottom-left-radius: 5px !important;
      border-bottom-right-radius: 5px !important;
      margin-left: 0 !important;
  }

}

.eshop-adjust-quantity2 {
  font-weight: normal;
}
.eshop-adjust-quantity2 div div:nth-last-of-type(1) {
  position: relative;
  background-color: #2a2a2a;
  color: #fff;
  padding: 0 10px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 7px;
  transition: 0.2s;
  cursor: pointer;
}
.eshop-adjust-quantity2 div div:nth-last-of-type(1):hover {
  background-color: #1a1a1a;
}
.eshop-adjust-quantity2 div div:nth-last-of-type(1) .fa {
  position: relative;
  transform: translateY(50%);
  font-size: 12px;
}
.eshop-adjust-quantity2 div div:nth-last-of-type(2) {
  
}
.eshop-adjust-quantity2 div div:nth-last-of-type(2) input {
  background-color: #e9ecef;
  border: none;
  border-radius: 0px;
  padding: 7px 8px;
  width: 55px;
  color: #424242;
  text-align: center;
}
.eshop-adjust-quantity2 div div:nth-last-of-type(3) {
  position: relative;
  background-color: #2a2a2a;
  color: #fff;
  padding: 0 10px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  transition: 0.2s;
  cursor: pointer;
  vertical-align: bottom;
}
.eshop-adjust-quantity2 div div:nth-last-of-type(3):hover {
  background-color: #1a1a1a;
}
.eshop-adjust-quantity2 div div:nth-last-of-type(3) .fa {
  position: relative;
  transform: translateY(50%);
  font-size: 12px;
}
.btn-group-header {}
.btn-group-header .btn {font-size: 26px;}
.btn-moj-kredit {
  background-color: #337882;
  border-color: #337882;
}

@media (max-width: 997px) {
  .btn-group-header {
  position: fixed;
  bottom: 60px;
  z-index: 12;
  left: 15px;
  -webkit-box-shadow: 0px 0px 22px -13px rgba(0,0,0,1);
  -moz-box-shadow: 0px 0px 22px -13px rgba(0,0,0,1);
  box-shadow: 0px 0px 22px -13px rgb(0 0 0 / 1);
}


  .btn-group-header .btn-group .btn {
      border-bottom-left-radius: 0;
  }
  .btn-group-header .btn-group {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
}
  
  .btn-group-header .btn {
      font-size: 12px;
  }

  .btn-group-header .btn:last-child {
      border-bottom-right-radius: 0;
  }
}

.eshop-obchod .category-list {}
.eshop-obchod .category-list .cat-item {
  background-color: #ffffff;
  color: #fff;
  padding: 22px 16px 26px 16px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  -webkit-box-shadow: 0px 0px 22px -13px rgba(0,0,0,1);
  -moz-box-shadow: 0px 0px 22px -13px rgba(0,0,0,1);
  box-shadow: 0px 0px 22px -13px rgb(0 0 0 / 1);
}
.eshop-obchod .category-list .cat-item .cat-part-0 {
  position: relative;
  z-index: 3;
  font-size: 84px;
}
.eshop-obchod .category-list .cat-item .cat-part-0 .fa {}
.eshop-obchod .category-list .cat-item .cat-part-1 {
  font-size: 19px;
  position: relative;
  z-index: 3;
}
.eshop-obchod .category-list .cat-item .cat-part-2 {
  font-size: 29px;
  font-weight: 400;
  position: relative;
  z-index: 3;
}
.eshop-obchod .category-list .cat-item .cat-part-overlay-part-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #5e2e608f;
  border-radius: inherit;
  z-index: 2;
  user-select: none;
  -webkit-user-drag: none;
  transition: 0.3s;
}
.eshop-obchod .category-list .cat-item .cat-part-overlay-part-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.eshop-obchod .category-list a:hover .cat-item {}
.eshop-obchod .category-list a:hover .cat-item .cat-part-overlay-part-1 {
  background-color: #5e2e60bf;
}


/**/

.ac-upravit-btn, .ac-odobrat-btn {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: relative;
}

.btn-primary {
  border-color: var(--farby-main-1);
  background-color: var(--farby-main-1);
}

.btn-primary:hover {
  color: #fff;
  border-color: var(--farby-main-2);
  background-color: var(--farby-main-2);
}

.btn-check:active+.btn-primary, .btn-check:checked+.btn-primary, .btn-primary.active, .btn-primary:active, .show>.btn-primary.dropdown-toggle {
  border-color: var(--farby-main-2);
  background-color: var(--farby-main-2);
}

.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #fff;
  border-color: var(--farby-main-1);
  background-color: var(--farby-main-1);
  box-shadow: unset !important;
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  border-color: var(--farby-main-1);
  background-color: var(--farby-main-1);
}

.form-check-input {
  box-shadow: none !important;
}

.form-check-input:checked {
  background-color: var(--farby-main-1);
  border-color: var(--farby-main-1);
}

.isImportant {
  color: red;
}

.isNewRow {
  color: red;
  font-size: 80%;
}

@media (max-width: 767px) {

  .eshop-item-box {
      flex-direction: column;
  }
  .eshop-item-box .re-img {
      width: 100%;
      border-radius: 20px 20px 0 0;
  }
  .eshop-item-box .re-middle {
      align-self: center;
  }
}

.d-logo {
  max-width: 481px;
  margin: 0 auto;
  padding-top: 45px;
  margin-bottom: 70px;
  padding-left: 25px;
  padding-right: 25px;
}
.d-logo img {}

.navbar-main {
  background-color: #ffffff;
  z-index: 1085;
}
.navbar-main .nav-item {}
.navbar-main .nav-item .nav-link {
  color: #000;
  transition: color .2s ease-in-out;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
      padding-right: 1.0rem;
      padding-left: 1.0rem;
  }
}

#header .sticky-on {
  opacity: 1;
  top: 0;
  visibility: visible;
}

#header .navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

#header {
  display: none;
  padding: 0;
  margin-bottom: 150px;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .navbar-main {
      display: none !important;
  }
  #header {
      display: block;
      z-index: 1084;
      position: relative;
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      /* z-index: 1020; */
      
  }
  #header .wpo-site-header {
      background-color: #fff;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-lg .navbar-nav .nav-link {
      padding-right: 1.5rem;
      padding-left: 1.5rem;
  }
}

.navbar-main .nav-item:hover .nav-link {
  color: var(--farby-main-1);
}
.navbar-main .navbar-brand {
  padding: 15px 0;
  width: 160px;
}

@media screen and (min-width: 992px) {
  .navbar-main .navbar-brand {
      padding: 15px 0;
      width: 188px;
  }
}
.navbar-main .navbar-brand img {}

.navbar-main .navbar-ending {
  width: 188px;
  text-align: right;
}

header {
  padding: 9px;
  background: #f3f5fb;
  color: #000000;
}

header .nav-item .nav-link {
  color: #000;
  font-size: 14px;
}

.podobne-produkty {
  background-color: #f3f5fb;
  padding: 50px 0;
  margin-top: 50px;
}

.footer-type-1 {
  background-color: #ffffff;
  border-top: 1px solid rgba(116,123,145,.2);
}

.footer-type-2 {
  background-color: #f3f5fb;
  border-top: 1px solid rgba(116,123,145,.2);
}

.footer-type-3 {
  background-color: #ffffff;
  border-top: 1px solid rgba(116,123,145,.2);
}

.footer-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.footer-item .footer-title {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 0.85em;
  text-align: left;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-item.footer-logo {
  display: flex;
  align-items: center;
}
.footer-item.footer-logo > div {
  max-width: 250px;
  padding: 15px 0;
}

@media screen and (min-width: 741px) {
  .footer-type-1 {
      padding: 50px 0;
  }
  .footer-type-2 {
      padding: 50px 0;
  }
  .footer-list {
      flex-direction: row;
      margin: -20px -35px;
  }
}

@media screen and (max-width: 740px) {
  .footer-list .footer-item {
      /* margin: 0 -20px; */
      padding: 20px;
      border-bottom: 1px solid rgba(194,199,214,.3);
      margin-left: var(--bs-gutter-x,-.75rem);
      margin-right: var(--bs-gutter-x,-.75rem);
  }
  .footer-list .footer-item:last-child {
      border-bottom-width: 0px;
  }
}

@media screen and (min-width: 641px) {
  .footer-list .footer-item {
      flex: 0 0 50%;
      padding: 20px 35px;
  }
}

@media screen and (min-width: 1000px) {
  .footer-list .footer-item {
      flex: 1 0 0%;
  }
}

.footer-item .slov-posta {
  max-width: 110px !important;
}

.footer-item .obr100p {
  max-width: 154px !important;
}

.payment-list {
display: flex;
flex-wrap: wrap;
margin: -4px; }

.payment-list__itemWide {
width: 5em;
height: 25px;
padding: 0.2em 0.5em; }

.payment-list__twint {
height: 25px;
padding: 0.2em 0; }

.payment-list__item {
width: 38px;
height: 24px;
margin: 4px; }

.payment-list__notice {
margin-top: 18px; }

.payment-list--centered {
justify-content: center; }

.footer__imagerow-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.footer__imagerow-container .footer__imagerow-item {
  flex: 0 1 auto;
  display: inline-block;
  padding: 0 5px 10px;
  max-width: 100%;
}

.footer__linklist {
  margin-top: -8px;
  margin-bottom: -5px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

.footer__link-item {
  display: block;
  padding: 5px 0;
}

@media screen and (min-width: 641px) {
  .footer__linklist {
      margin-top: -2px;
      margin-bottom: 0;
  }
}

.list--unstyled {
  list-style: none;
}

.animated-href {
  transition: color 0.2s ease-in-out 0s;
}

.icon-old-style {
  display: inline-block;
  height: 1em;
  width: 1em;
  fill: currentColor;
  vertical-align: middle;
  background: none;
  pointer-events: none;
  overflow: visible; 
}

.eshop-pg-kosik-item-box svg.icon  {
  display: inline-block;
  height: 1em;
  width: 1em;
  fill: currentColor;
  vertical-align: middle;
  background: none;
  pointer-events: none;
  overflow: visible; 
}

.heading {
  font-weight: bold;
  font-style: normal;
  color: black;
}
    
.heading-medium {
  font-weight: normal;
  font-style: normal;
  color: black;
}

.eshop-kosik-btn-pok {
  padding: 5px 30px;
  font-size: 14px;
  line-height: 42px;
  border-radius: 25px;
  width: 100%;
  text-transform: uppercase;
}

.eshop-kosik-btn-reg {
  padding: 14px 24px;
  line-height: 24px;
  border-radius: 25px;
  text-transform: uppercase;
  font-size: 14px;
}

.form-control:not(.skip-this-one) {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  border-radius: 25px;
  padding: 8px 30px;
  line-height: 38px;
  transition: all 0.2s ease-in-out 0s;
  color: #484848;
}
.form-control:not(.skip-this-one):focus {
  color: #5a5a5a;
  border-color: #ddd;
  box-shadow: none;
}

.eshop-celkom {
  font-size: 19px;
  font-weight: 400;
  font-style: normal;
  color: #000;
  vertical-align: middle;
  display: flex;
  gap: 20px;
  align-items: baseline;
}
.eshop-celkom span[data-eshop-kosik-cena-celkom] {
  font-family: sans-serif;
  font-size: 24px;
}

.quantity-selector {
display: inline-flex;
align-items: center;
height: 38px;
font-size: 15px;
border: 1px solid #c2c7d6;
border-radius: 25px;
box-shadow: 0 1px 1px rgba(194, 199, 214, 0.2);
vertical-align: middle; }
.quantity-selector svg:hover {
  opacity: 1; }
.quantity-selector .icon--minus {
  width: 10px;
  height: 2px; }
.quantity-selector .icon--plus {
  width: 10px;
  height: 10px; }
.quantity-selector .quantity-selector__button:first-child {
  border-right: 1px solid #c2c7d6; }
.quantity-selector .quantity-selector__button:last-child {
  border-left: 1px solid #c2c7d6; }

.quantity-selector__button {
display: flex;
align-items: center;
padding: 0 12px;
color: black;
height: 100%;
transition: color 0.2s ease-in-out;
background-color: transparent;
border: none;
}
.quantity-selector__button:not([disabled]):hover {
  color: black; }

.quantity-selector__value {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
padding: 0 5px;
min-width: 32px;
text-align: center;
border: none; }
.quantity-selector__value:focus {
  outline: none; }
.quantity-selector__value br {
  display: none;
  /* quite ugly fix to prevent contenteditable to have breaklines, but simpler than JS based solution */ }

.eshop-celkom span {
}

.alert {
  position: relative;
  padding: 24px 30px;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 25px;
}

.home-banners {
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 40px;
  gap: 10px;
}
.sim-banner {
  display: flex;
  min-height: 280px;
  width: 100%;
}

.sim-banner > :first-child {
  flex: 1 0 0;
  overflow: hidden;
  display: block;
  border-radius: 3px;
  padding: 26px 30px;
  background-color: rgba(0,0,0,0);
  color: #ffffff;
  position: relative;
}

.sim-banner > :first-child::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.sim-banner-group {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (min-width: 992px) {

  .home-banners {
      flex-wrap: nowrap !important;
  }
  
  .home-banners > .sim-banner {
      width: 60%;
  }

  .home-banners > .sim-banner-group {
      width: 40%;
  }

}

@media screen and (min-width: 992px) {
  .home-banners {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 10px;
  }

  .sim-banner-group {
      gap: 10px;
  }


}

@media screen and (min-width: 1000px) {
  .home-banners {
      white-space: normal;
  }
}

.sim-banner .b-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.sim-banner .b-image > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover!important;
  background-position: center!important;
  background-repeat: no-repeat;
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
  transition: opacity .2s ease-in-out,-webkit-transform 1.2s ease-in-out;
  transition: opacity .2s ease-in-out,transform 1.2s ease-in-out;
  transition: opacity .2s ease-in-out,transform 1.2s ease-in-out,-webkit-transform 1.2s ease-in-out;
}

@media (-moz-touch-enabled: 0), (hover: hover) {
.sim-banner .b-image > div {
  background-position: right calc(100% + 35px);
}

.sim-banner > :first-child:hover .b-image > div {
  background-position: right calc(100% + 15px);
  -webkit-transform: scale(1.07);
  transform: scale(1.07);
} 
}

.sim-banner .b-body {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 1;
  justify-content: flex-start;
  text-align: left;
  align-items: flex-start;
}
.sim-banner .b-body .b-heading {
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  max-width: 70%;
  font-size: 60px;
}
.sim-banner .b-body .b-content {
  font-size: 22px;
  max-width: 70%;
  line-height: 1.5;
}
.sim-banner .b-body .b-button {
  position: relative;
  display: inline-block;
  padding: 0 30px;
  line-height: 48px;
  border-radius: 31px;
  text-align: center;
  font-weight: 400;
  font-size: 15px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--farby-main-1);
  color: #ffffff;
  transition: box-shadow .2s ease-in-out;
}

.sim-banner .b-body .b-button:hover {
  box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.06);
}

.eshop-title-produkty {
  font-size: 22px;
  line-height: 1.55;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (min-width: 641px) {
  .eshop-title-produkty {
      font-size: 25px;
      line-height: 1.5;
  }
}

.sim-banner-group .sim-banner .b-body .b-heading {
  font-size: 32px;
}
.sim-banner-group .sim-banner .b-body .b-content {
  font-size: 22px;
}
.sim-banner-group .sim-banner .b-body .b-button {
  line-height: 35px;
  font-size: 12px;
  padding: 0 20px;
}

@media screen and (max-width: 991px) {
  .sim-banner .b-body .b-heading {
      font-size: 25px;
  }
  .sim-banner-group .sim-banner .b-body .b-heading {
      font-size: 25px;
  }
}

.btn-kosik-header {
  border-radius: 50%;
  padding: 7px 12px;
  font-size: 18px;
}

.header-vyhladavanie-box {

position: relative;
}

.header-vyhladavanie-input {
  border-radius: 100px;
  border: 0px solid #f1f1f1;
  padding: 8px 38px 8px 42px;
  box-shadow: 0px 0px 2px #16161624;
  color: #7a7e85;
  width: 220px;
}

.header-vyhladavanie-btn {
  background-repeat: no-repeat;
  background-position: left 11px center;
  background-size: 18px 18px;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="122.879px" height="119.799px" viewBox="0 0 122.879 119.799" enable-background="new 0 0 122.879 119.799" xml:space="preserve"><g><path fill="%23808080" d="M49.988,0h0.016v0.007C63.803,0.011,76.298,5.608,85.34,14.652c9.027,9.031,14.619,21.515,14.628,35.303h0.007v0.033v0.04 h-0.007c-0.005,5.557-0.917,10.905-2.594,15.892c-0.281,0.837-0.575,1.641-0.877,2.409v0.007c-1.446,3.66-3.315,7.12-5.547,10.307 l29.082,26.139l0.018,0.016l0.157,0.146l0.011,0.011c1.642,1.563,2.536,3.656,2.649,5.78c0.11,2.1-0.543,4.248-1.979,5.971 l-0.011,0.016l-0.175,0.203l-0.035,0.035l-0.146,0.16l-0.016,0.021c-1.565,1.642-3.654,2.534-5.78,2.646 c-2.097,0.111-4.247-0.54-5.971-1.978l-0.015-0.011l-0.204-0.175l-0.029-0.024L78.761,90.865c-0.88,0.62-1.778,1.209-2.687,1.765 c-1.233,0.755-2.51,1.466-3.813,2.115c-6.699,3.342-14.269,5.222-22.272,5.222v0.007h-0.016v-0.007 c-13.799-0.004-26.296-5.601-35.338-14.645C5.605,76.291,0.016,63.805,0.007,50.021H0v-0.033v-0.016h0.007 c0.004-13.799,5.601-26.296,14.645-35.338C23.683,5.608,36.167,0.016,49.955,0.007V0H49.988L49.988,0z M50.004,11.21v0.007h-0.016 h-0.033V11.21c-10.686,0.007-20.372,4.35-27.384,11.359C15.56,29.578,11.213,39.274,11.21,49.973h0.007v0.016v0.033H11.21 c0.007,10.686,4.347,20.367,11.359,27.381c7.009,7.012,16.705,11.359,27.403,11.361v-0.007h0.016h0.033v0.007 c10.686-0.007,20.368-4.348,27.382-11.359c7.011-7.009,11.358-16.702,11.36-27.4h-0.006v-0.016v-0.033h0.006 c-0.006-10.686-4.35-20.372-11.358-27.384C70.396,15.56,60.703,11.213,50.004,11.21L50.004,11.21z"/></g></svg>');
  /* background-position: center; */
  position: absolute;
  background-color: transparent;
  border: 0px solid transparent;
  border: none;
  display: block;
  width: 34px;
  height: 32px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
  left: 2px;
}

.header-vyhladavanie-clear {
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 13px 13px;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="122.878px" height="122.88px" viewBox="0 0 122.878 122.88" enable-background="new 0 0 122.878 122.88" xml:space="preserve"><g><path fill="%23808080" d="M1.426,8.313c-1.901-1.901-1.901-4.984,0-6.886c1.901-1.902,4.984-1.902,6.886,0l53.127,53.127l53.127-53.127 c1.901-1.902,4.984-1.902,6.887,0c1.901,1.901,1.901,4.985,0,6.886L68.324,61.439l53.128,53.128c1.901,1.901,1.901,4.984,0,6.886 c-1.902,1.902-4.985,1.902-6.887,0L61.438,68.326L8.312,121.453c-1.901,1.902-4.984,1.902-6.886,0 c-1.901-1.901-1.901-4.984,0-6.886l53.127-53.128L1.426,8.313L1.426,8.313z"/></g></svg>');
  /* background-position: center; */
  position: absolute;
  background-color: transparent;
  border: 0px solid transparent;
  border: none;
  display: block;
  width: 34px;
  height: 32px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1.0;
  right: 2px;
}

.header-vyhladavanie-call {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 20px;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="122.88px" height="122.267px" viewBox="0 0 122.88 122.267" enable-background="new 0 0 122.88 122.267" xml:space="preserve"><g><path d="M33.822,50.291c4.137,7.442,8.898,14.604,15.074,21.133C55.1,77.984,62.782,83.962,72.771,89.03l0.01,0.005l0.002-0.005 c0.728,0.371,1.421,0.362,2.072,0.118c0.944-0.353,1.927-1.137,2.883-2.086c0.729-0.726,1.643-1.924,2.631-3.223 c3.846-5.054,8.601-11.301,15.314-8.193c0.142,0.065,0.276,0.141,0.402,0.226l22.373,12.852c0.08,0.046,0.157,0.095,0.23,0.147 c2.966,2.036,4.177,5.172,4.19,8.683c0.014,3.621-1.329,7.674-3.274,11.101c-2.565,4.517-6.387,7.502-10.761,9.525 c-4.17,1.928-8.798,2.954-13.267,3.608c-6.989,1.025-13.578,0.374-20.288-1.692c-6.55-2.017-13.176-5.385-20.4-9.86l-0.526-0.326 c-3.326-2.06-6.906-4.276-10.389-6.904C31.108,93.296,18.007,79.283,9.512,63.904C2.361,50.958-1.552,36.995,0.581,23.681 C1.75,16.375,4.901,9.743,10.333,5.35c4.762-3.853,11.188-5.94,19.448-5.203c0.973,0.084,1.793,0.639,2.255,1.419l0.006-0.003 l14.324,24.27c2.11,2.718,2.344,5.415,1.203,8.096c-0.943,2.218-2.892,4.251-5.476,6.168c-0.786,0.65-1.708,1.325-2.659,2.021 C36.236,44.459,32.578,47.136,33.822,50.291L33.822,50.291z M44.67,75.422C38.066,68.44,33.035,60.88,28.695,53.065 c-0.076-0.123-0.144-0.253-0.202-0.39c-3.174-7.459,2.52-11.625,7.493-15.262c0.845-0.618,1.663-1.217,2.401-1.829l0.002,0.003 c0.043-0.036,0.088-0.071,0.135-0.105c1.843-1.354,3.171-2.647,3.678-3.837c0.289-0.679,0.182-1.426-0.466-2.265 c-0.111-0.129-0.213-0.271-0.303-0.423L27.795,5.852c-5.869-0.241-10.419,1.321-13.784,4.044 c-4.239,3.429-6.723,8.759-7.674,14.699c-1.905,11.894,1.716,24.594,8.292,36.5c8.078,14.623,20.575,27.977,32.864,37.25 c3.379,2.55,6.776,4.653,9.932,6.607l0.526,0.326c6.818,4.223,13.017,7.386,19.052,9.244c5.876,1.809,11.634,2.38,17.729,1.486 c4.009-0.587,8.113-1.485,11.668-3.129c3.351-1.55,6.248-3.785,8.134-7.104c1.496-2.637,2.53-5.653,2.521-8.222 c-0.006-1.63-0.472-3.029-1.605-3.844L93.2,80.93c-2.461-1.081-5.629,3.081-8.193,6.45c-1.104,1.452-2.125,2.792-3.156,3.817 c-1.477,1.466-3.118,2.723-4.962,3.411c-2.136,0.799-4.395,0.834-6.755-0.37l0.002-0.004C59.522,88.849,51.323,82.457,44.67,75.422 L44.67,75.422z"/></g></svg>');
  /* background-position: center; */
  background-color: transparent;
  border: 0px solid transparent;
  border: none;
  display: block;
  width: 32px;
  height: 32px;
  opacity: 0.9;
}

.header-vyhladavanie-gap {
  gap: 15px;
}

.fancyboxAge-skin {
  background: transparent!important
}

.fancyboxAge-opened .fancyboxAge-skin {
  -webkit-box-shadow: 0 10px 25px transparent!important;
  -moz-box-shadow: 0 10px 25px transparent!important;
  box-shadow: 0 10px 25px transparent!important
}

.fancyboxAge-wrap,.fancyboxAge-skin,.fancyboxAge-outer,.fancyboxAge-inner,.fancyboxAge-image,.fancyboxAge-wrap iframe,.fancyboxAge-wrap object,.fancyboxAge-nav,.fancyboxAge-nav span,.fancyboxAge-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top
}

.fancyboxAge-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2147483646
}

.fancyboxAge-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px
}

.fancyboxAge-opened {
  z-index: 2147483647
}

.fancyboxAge-opened .fancyboxAge-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0,0,0,.5);
  -moz-box-shadow: 0 10px 25px rgba(0,0,0,.5);
  box-shadow: 0 10px 25px rgba(0,0,0,.5)
}

.fancyboxAge-outer,.fancyboxAge-inner {
  position: relative
}

.fancyboxAge-inner {
  overflow: hidden
}

.fancyboxAge-type-iframe .fancyboxAge-inner {
  -webkit-overflow-scrolling: touch
}

.fancyboxAge-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap
}

.fancyboxAge-image,.fancyboxAge-iframe {
  display: block;
  width: 100%;
  height: 100%
}

.fancyboxAge-image {
  max-width: 100%;
  max-height: 100%
}

#fancyboxAge-loading,.fancyboxAge-close,.fancyboxAge-prev span,.fancyboxAge-next span {
  background-image: url(fancybox_sprite.png)
}

#fancyboxAge-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: .8;
  cursor: pointer;
  z-index: 2147483640;
  display: none!important
}

#fancyboxAge-loading div {
  width: 0;
  height: 0;
  display: none!important
}

.fancyboxAge-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 2147483640
}

.fancyboxAge-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url(blank.gif);
  -webkit-tap-highlight-color: transparent;
  z-index: 2147483640
}

.fancyboxAge-prev {
  left: 0
}

.fancyboxAge-next {
  right: 0
}

.fancyboxAge-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 2147483640;
  visibility: hidden
}

.fancyboxAge-prev span {
  left: 10px;
  background-position: 0 -36px
}

.fancyboxAge-next span {
  right: 10px;
  background-position: 0 -72px
}

.fancyboxAge-nav:hover span {
  visibility: visible
}

.fancyboxAge-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible!important
}

.fancyboxAge-lock {
  overflow: hidden!important;
  width: auto
}

.fancyboxAge-lock body {
  overflow: hidden!important
}

.fancyboxAge-lock-test {
  overflow-y: hidden!important
}

.fancyboxAge-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 2147483646;
  background: url(fancybox_overlay.png);
  text-align: center;
}

.fancyboxAge-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0
}

.fancyboxAge-lock .fancyboxAge-overlay {
  overflow: auto;
  overflow-y: scroll
}

.fancyboxAge-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 2147483640
}

.fancyboxAge-opened .fancyboxAge-title {
  visibility: visible
}

.fancyboxAge-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 2147483640;
  text-align: center
}

.fancyboxAge-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: 0 0;
  background: rgba(0,0,0,.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #fff;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap
}

.fancyboxAge-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff
}

.fancyboxAge-title-inside-wrap {
  padding-top: 10px
}

.fancyboxAge-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0,0,0,.8)
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  #fancyboxAge-loading,.fancyboxAge-close,.fancyboxAge-prev span,.fancyboxAge-next span {
      background-image:url(fancybox_sprite@2x.png);
      background-size: 44px 152px
  }

  #fancyboxAge-loading div {
      background-size: 24px 24px
  }
}

.text-bg-main1 {
  background-color: var(--farby-main-1);
  color: #fff;
}

@media (max-width: 995px) {
  .toast-no-phone {
      display: none;
  }
}








.wpo-site-header .navigation {
  background-color: #fff;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 0
}

.wpo-site-header #navbar {
  transition: .5s
}

.wpo-site-header #navbar>ul li a:focus,.wpo-site-header #navbar>ul li a:hover {
  text-decoration: none;
  color: #1f39c0
}

@media screen and (min-width: 992px) {
  .blog-sidebar {
      padding-left:45px
  }

  .wpo-blog-pg-section.blog-pg-left-sidebar .blog-sidebar,.wpo-blog-single-section.wpo-blog-single-left-sidebar-section .blog-sidebar {
      padding-left: 0;
      padding-right: 45px
  }

  .wpo-site-header #navbar {
      justify-content: center
  }

  .wpo-site-header #navbar>ul>li>a:before {
      position: absolute;
      left: 50%;
      bottom: 10%;
      width: 2px;
      height: 15px;
      background: var(--farby-main-1);
      content: "";
      opacity: 0;
      visibility: hidden;
      transition: .3s;
      border-radius: 3px;
      transform: translate(-50%,-50%)
  }

  .wpo-site-header #navbar>ul>li>a.active:before,.wpo-site-header #navbar>ul>li>a:hover:before {
      opacity: 1;
      visibility: visible
  }

  .wpo-site-header #navbar>ul>li>.sub-menu>.menu-item-has-children>a:before {
      content: "\e649";
      font-family: themify;
      content: "\e649";
      font-size: .7333333333rem;
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%)
  }

  .wpo-site-header #navbar li,.wpo-site-header #navbar>ul>li>.sub-menu>.menu-item-has-children>a {
      position: relative
  }

  .wpo-site-header #navbar li.whiteb {
      display: flex;
      align-items: center;
      padding-left: 15px
  }

  .wpo-site-header #navbar li.whiteb a {
      background-color: var(--farby-main-1)!important;
      color: #fff!important;
      border-radius: 50px!important;
      padding: 10px 25px!important;
      box-shadow: 0 4px 4px rgba(0,0,0,.25)!important
  }

  .wpo-site-header #navbar li.logoh,.wpo-site-header #navbar li.telefon,.wpo-site-header #navbar li.yellowb {
      display: none
  }

  .wpo-site-header #navbar>ul>li>a {
      padding: 35px 20px;
      display: block;
      position: relative;
      color: #323232;
      font-family: Inter,sans-serif;
      font-size: 18px;
      font-weight: 500;
      text-transform: uppercase
  }

  .wpo-site-header #navbar>ul>li .sub-menu a.active,.wpo-site-header #navbar>ul>li .sub-menu a:hover,.wpo-site-header #navbar>ul>li>a.active {
      color: var(--farby-main-1)
  }

  .wpo-site-header #navbar>ul .sub-menu {
      background-color: #fff;
      box-shadow: 0 2px 20px 0 rgba(62,65,159,.09);
      width: 240px;
      position: absolute;
      padding: 20px 0;
      left: 0;
      top: 110%;
      z-index: 10;
      visibility: hidden;
      opacity: 0;
      transition: .3s
  }

  .wpo-site-header #navbar>ul>li .sub-menu a {
      display: block;
      padding: 10px 15px;
      position: relative;
      overflow: hidden;
      color: #323232;
      font-family: Inter,sans-serif;
      font-size: 14px;
      font-weight: 500;
      text-transform: uppercase
  }

  .wpo-site-header #navbar>ul>li .sub-menu a:after {
      position: absolute;
      left: 15px;
      bottom: 4px;
      width: 0;
      height: 2px;
      content: "";
      background: var(--farby-main-1);
      transition: .3s;
      opacity: 0;
      visibility: hidden
  }

  .wpo-site-header #navbar>ul>li .sub-menu a.active:after,.wpo-site-header #navbar>ul>li .sub-menu a:hover:after {
      width: 40px;
      opacity: 1;
      visibility: visible;
      color: var(--farby-main-1)
  }

  .wpo-site-header #navbar>ul>li>.sub-menu .sub-menu {
      left: 110%;
      top: 0
  }

  .wpo-site-header #navbar>ul>li:hover>.sub-menu {
      top: 100%;
      visibility: visible;
      opacity: 1
  }

  .wpo-site-header #navbar .sub-menu>li:hover>.sub-menu {
      left: 100%;
      visibility: visible;
      opacity: 1
  }
}

@media screen and (min-width: 992px) and (max-width:1870px) {
  .wpo-site-header #navbar>ul>li>a {
      padding:35px 18px
  }
}

.wpo-site-header.s1,.wpo-site-header.s2,.wpo-site-header.s3 {
  left: 0;
  top: 0;
  width: 100%;
  position: absolute;
  z-index: 111
}

.wpo-site-header .navbar-header .navbar-brand img {
  max-height: 100px;
}

@media (max-width: 440px) {
  .wpo-site-header .navbar-header .navbar-brand img {
      max-width:170px
  }

  .wpo-blog-pg-section .entry-meta ul li+li:before {
      display: none
  }
}

@media (max-width: 370px) {
  .wpo-site-header .navbar-header .navbar-brand img {
      max-width:140px
  }
}

@media (max-width: 1700px) {
  .wpo-site-header {
      padding:0 30px
  }
}

@media (max-width: 1500px) {
  .wpo-site-header #navbar>ul>li>a {
      padding:30px 15px
  }

  .wpo-site-header {
      padding: 0 10px
  }
}

@media (max-width: 1400px) {
  .wpo-site-header #navbar>ul>li>a {
      padding:30px 10px;
      font-size: 18px
  }
}

@media (max-width: 1200px) {
  .wpo-site-header #navbar>ul>li>a {
      padding:30px 6px;
      font-size: 16px
  }

  .wpo-site-header .header-right .theme-btn,.wpo-site-header .header-right .view-cart-btn {
      display: none
  }
}

.wpo-site-header .navigation.sticky-header.sticky-on {
  background-color: #fff
}

.wpo-site-header.s1,.wpo-site-header.s3 {
  background: 0 0
}

.award,.hero-slider-section .hero-slider,.static-hero .hero-slider {
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(34,31,60,.1)
}

.wpo-site-header.s1 .navigation,.wpo-site-header.s3 .navigation {
  background-color: transparent
}

.cta-wrap .cta-form,.wpo-blog-single-section .tag-share .tag,.wpo-blog-single-section .tag-share-s2 .tag,.wpo-site-header.s1 .header-right .call-number,.wpo-site-header.s3 .header-right .call-number {
  display: flex;
  align-items: center
}

.wpo-site-header.s1 .header-right .call-number .icon,.wpo-site-header.s3 .header-right .call-number .icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #C09639;
  border-radius: 100px
}

.wpo-site-header.s1 .header-right .call-number .text .title,.wpo-site-header.s3 .header-right .call-number .text .title {
  display: block;
  color: #525252;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px
}

.wpo-site-header.s1 .header-right .call-number .text .number,.wpo-site-header.s3 .header-right .call-number .text .number {
  color: #014700;
  font-family: DM Sans;
  font-size: 22px;
  font-weight: 500;
  line-height: 35px
}

.wpo-blog-single-section .comment-respond .form-submit input:hover,.wpo-site-header.s3 .navigation.sticky-header.sticky-on {
  background-color: #014700
}

@media screen and (min-width: 992px) {
  .wpo-site-header #navbar .close-navbar,.wpo-site-header .navbar-header .open-btn {
      display:none
  }

  .wpo-site-header.s3 #navbar>ul>li>a {
      color: #fff
  }

  .wpo-site-header.s3 #navbar>ul li a:hover,.wpo-site-header.s3 #navbar>ul>li .sub-menu a.active,.wpo-site-header.s3 #navbar>ul>li .sub-menu a.active:after,.wpo-site-header.s3 #navbar>ul>li>a.active {
      color: #fbb132
  }

  .wpo-site-header.s3 #navbar>ul>li .sub-menu a:after,.wpo-site-header.s3 #navbar>ul>li>a:before {
      background: #fbb132
  }
}

.hero-slider-section .content .sub-title h2,.hero-slider-section .content p,.wpo-site-footer li,.wpo-site-header.s3 .header-right .call-number .text .number,.wpo-site-header.s3 .header-right .call-number .text .title {
  color: #fff
}

.hero-slider-section,.static-hero {
  height: 1025px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 150px
}

@media (max-width: 1700px) {
  .hero-slider-section,.static-hero {
      padding:0 30px
  }
}

.hero-slider-section .content,.static-hero .content {
  max-width: 651px;
  text-align: left;
  padding-top: 100px
}

@media (max-width: 1199px) {
  .blog-sidebar .recent-post-widget .post h4 {
      margin:0
  }

  .wpo-site-header #navbar {
      position: relative;
      right: -70px
  }

  .wpo-site-header.s1 #navbar,.wpo-site-header.s3 #navbar {
      right: 0
  }

  .wpo-site-header.s1 .header-right .call-number .icon,.wpo-site-header.s3 .header-right .call-number .icon {
      width: 55px;
      height: 55px
  }

  .wpo-site-header.s1 .header-right .call-number .text .title,.wpo-site-header.s3 .header-right .call-number .text .title {
      font-size: 18px;
      line-height: 23px
  }

  .wpo-site-header.s1 .header-right .call-number .text .number,.wpo-site-header.s3 .header-right .call-number .text .number {
      font-size: 16px;
      line-height: 23px
  }

  .hero-slider-section .content,.static-hero .content {
      max-width: 520px
  }
}

@media (max-width: 991px) {
  .wpo-site-header .navbar-header {
      float: none;
      position: relative;
      z-index: 99;
      text-align: center;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .header-right .cart-toggle-btn,.wpo-site-header .header-right .search-toggle-btn {
      width:40px;
      height: 40px
  }

  .wpo-site-header .header-right .cart-toggle-btn .fi:before,.wpo-site-header .header-right .search-toggle-btn .fi:before {
      font-size: 16px
  }

  .cart-search-contact .header-search-form {
      top: 65px
  }

  .page-wrapper,.wpo-site-header .navbar-toggler .first-angle,.wpo-site-header .navbar-toggler .last-angle {
      transition: .3s
  }

  .body-overlay:before {
      content: "";
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,.9);
      position: absolute;
      left: 0;
      top: 0;
      z-index: 10;
      transition: .3s
  }

  .wpo-site-header .navigation {
      padding: 20px 0
  }

  .wpo-site-header #navbar>ul>li.telefon a,.wpo-site-header #navbar>ul>li.whiteb a,.wpo-site-header #navbar>ul>li.yellowb a {
      border-radius: 50px!important;
      box-shadow: 0 4px 4px rgba(0,0,0,.25)!important
  }

  .wpo-site-header #navbar>ul>li a {
      display: block;
      font-size: 17px;
      color: #014700;
      font-weight: 600
  }

  .wpo-site-header #navbar>ul>li.whiteb a {
      background-color: var(--farby-main-1)!important;
      color: #fff!important;
      padding: 10px 25px!important
  }

  .wpo-site-header #navbar>ul>li.yellowb a {
      background-color: #fbb132!important;
      color: #fff!important;
      padding: 10px 25px!important
  }

  .wpo-site-header #navbar>ul>li.telefon a {
      background-color: #fff!important;
      color: #014700!important;
      padding: 10px 21px!important;
  }

  
  .wpo-site-header #navbar>ul>li.telefon img {
      widht: 25px;
      height: 25px;
  }

  .wpo-site-header #navbar>ul>li a.active,.wpo-site-header #navbar>ul>li a:hover {
      color: #014700;
      font-size: 32px
  }

  .wpo-site-header #navbar>ul .sub-menu>li:last-child {
      border-bottom: 0
  }

  .wpo-site-header #navbar>ul>li>.sub-menu a {
      padding: 8px 15px 8px 45px
  }

  .wpo-site-header #navbar>ul>li>.sub-menu .sub-menu a {
      padding: 8px 15px 8px 65px
  }

  .wpo-site-header #navbar>ul .menu-item-has-children>a {
      position: relative;
      color: #014700
  }

  .wpo-site-header #navbar>ul .menu-item-has-children>a.active,.wpo-site-header #navbar>ul .menu-item-has-children>a.rotate,.wpo-site-header #navbar>ul .menu-item-has-children>a:hover {
      color: #014700
  }

  .wpo-site-header #navbar>ul .menu-item-has-children>a:before {
      font-family: themify;
      content: "\e649";
      font-size: .7333333333rem;
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      transition: .3s
  }

  .wpo-site-header #navbar>ul .menu-item-has-children>a.rotate:before {
      transform: rotate(90deg);
      top: 38%
  }

  .wpo-site-header .container {
      width: 100%
  }

  .wpo-site-header .mobail-menu button {
      background-color: var(--farby-main-1);
      width: 40px;
      height: 35px;
      border: 0;
      padding: 5px 10px;
      outline: 0;
      position: relative;
      z-index: 20
  }

  .wpo-site-header .mobail-menu button:focus {
      outline: 0;
      box-shadow: none
  }

  .wpo-site-header .mobail-menu button span {
      background-color: #fff;
      width: 20px;
      display: block;
      height: 2px;
      margin-bottom: 5px
  }

  .wpo-site-header .mobail-menu button span:last-child {
      margin: 0
  }

  .wpo-site-header #navbar {
      background: #fff;
      display: block!important;
      height: 100%;
      height: 100vh;
      margin: 0;
      padding: 0;
      border: 0;
      position: fixed;
      left: -320px;
      top: 0;
      z-index: 999999;
      opacity: 0;
      visibility: hidden
  }

  .wpo-site-header #navbar .navbar-nav {
      display: block;
      height: 100%;
      overflow: auto;
      padding-bottom: 60px
  }

  .wpo-site-header #navbar>ul {
      position: relative;
      z-index: 101
  }

  .wpo-site-header #navbar ul a {
      color: #000
  }

  .wpo-site-header #navbar ul a:hover,.wpo-site-header #navbar ul li.current a {
      color: var(--farby-main-1)
  }

  .wpo-site-header #navbar .close-navbar {
      background-color: #fff;
      width: 40px;
      height: 40px;
      color: #000;
      border: 0;
      outline: 0;
      position: absolute;
      left: -41px;
      top: 90px;
      z-index: 20
  }

  .wpo-site-header #navbar .close-navbar .ti-close {
      position: relative;
      top: 1px
  }

  .wpo-site-header .menu-close {
      display: block;
      z-index: 99;
      background: var(--farby-main-1);
      color: #fff;
      border: 0;
      text-align: center;
      margin: 30px 30px 30px auto;
      line-height: 40px;
      border-radius: .25rem;
      width: 40px;
      height: 35px;
      padding: 0 10px;
      display: flex;
      align-items: center;
      justify-content: center
  }

  .wpo-site-header .slideInn {
      left: 0!important;
      opacity: 1!important;
      visibility: visible!important
  }

  .wpo-site-header .x-close .middle-angle {
      opacity: 0
  }

  .wpo-site-header .x-close .first-angle {
      position: absolute;
      -webkit-transform: rotate(-44deg);
      top: 16px;
      left: 10px
  }

  .wpo-site-header .x-close .last-angle {
      -webkit-transform: rotate(44deg);
      position: absolute;
      top: 16px;
      right: 10px
  }

  .wpo-site-header #navbar li.hid,.wpo-site-header .navbar-collapse.collapse,.wpo-site-header.s1 .header-right .call-number .text,.wpo-site-header.s3 .header-right .call-number .text {
      display: none
  }

  .wpo-site-header .navbar-collapse.collapse.in,.wpo-site-header .navbar-header .collapse,.wpo-site-header .navbar-toggle {
      display: block
  }

  .wpo-site-header .navbar-header,.wpo-site-header .navbar-nav,.wpo-site-header .navbar-right {
      float: none
  }

  .wpo-site-header .navbar-nav>li {
      float: none;
      text-align: center;
      margin-bottom: 25px
  }

  .wpo-site-header .navbar-nav>li a img {
      max-width: 200px
  }

  .wpo-site-header .navbar-nav>li:last-child {
      margin-bottom: 0
  }

  .wpo-site-header #navbar>ul>li>a {
      font-size: 25px;
      padding: 8px 30px;
      color: #014700;
      display: inline-block
  }

  .wpo-site-header.s1 .header-right .call-number .icon,.wpo-site-header.s3 .header-right .call-number .icon {
      width: 45px;
      height: 45px
  }

  .wpo-site-header.s1 .header-right .call-number .icon img,.wpo-site-header.s3 .header-right .call-number .icon img {
      width: 20px;
      height: 20px
  }

  .hero-slider-section,.static-hero {
      display: block;
      padding: 0;
      height: 100%
  }

  .hero-slider-section .content,.static-hero .content {
      text-align: center;
      margin: 0 auto 50px;
      padding-top: 150px;
      max-width: 600px
  }
}



.wpo-site-header .header-right {
  display: flex;
  justify-content: flex-end;
  z-index: 991;
  position: relative;
  align-items: center;
}
@media (max-width: 991px) {
  .wpo-site-header .header-right {
      right: -10px;
  }
}


.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: var(--css-kontrast);
  border-color: var(--css-kontrast);
}

.page-link {
  color: var(--css-kontrast);
}

.page-link:hover {
  z-index: 2;
  color: var(--css-kontrast);
  background-color: #e9ecef;
  border-color: #dee2e6
}

.page-link:focus {
  z-index: 3;
  color: var(--css-kontrast);
  background-color: #e9ecef;
  outline: 0;
  box-shadow: unset;
}


.details-meta .d-skladom-high {
  color: #008a00;
  position: relative;
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  vertical-align: middle;
}

.details-meta .d-skladom-low {
  color: #cfa431;
  position: relative;
  display: block;
  font-weight: bolder;
  font-size: 14px;
  line-height: 1.2;
  vertical-align: middle;
}

.details-meta .d-skladom-none {
  color: #000;
  position: relative;
  display: block;
  font-weight: bolder;
  font-size: 14px;
  line-height: 1.2;
  vertical-align: middle;
}

.details-meta .d-skladom-high .fa, .details-meta .d-skladom-low .fa, .details-meta .d-skladom-none .fa {
  font-size: 80%;
}

.details-meta .d-dodanie {
  font-size: 13px;
  color: #000;
  margin: 0 0 0 0;
}


.is-there-but-no-clickos {
  visibility: hidden;
  pointer-events: none;
  user-select: none;
}



.product-stock .d-skladom-high {
  color: #008a00;
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  vertical-align: middle;
}

.product-stock .d-skladom-low {
  color: #cfa431;
  position: relative;
  display: inline-block;
  font-weight: bolder;
  font-size: 14px;
  vertical-align: middle;
}

.product-stock .d-skladom-none {
  color: #000;
  position: relative;
  display: inline-block;
  font-weight: bolder;
  font-size: 14px;
  vertical-align: middle;
}


/* New stuff */




















.header-inner-start .support p {
    line-height: 42px;
}

.header {
  background-color: var(--farby-main-1);
}

.fotter-area {
  background-color: var(--farby-main-3);
}

.progress-wrap svg.progress-circle path {
  stroke: var(--farby-main-2);
}

.progress-wrap::after {
  color: var(--farby-main-2);
}

.progress-wrap {
  /* box-shadow: inset 0 0 0 2px rgb(212 212 212); */
  display: none;
}

.prod-a-href-fix {
    max-height: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* background: #ddd; */
}

.prod-a-href-fix img {
    position: absolute;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
}

.prod-a-href-fix-v1 {
    height: 325px;
    width: 325px;
}

.prod-a-href-fix-v2 {
    height: 145px;
    width: 145px;
}

.prod-a-href-fix-v3 {
    height: 170px;
    width: 170px;
}

.prod-a-href-fix-v4 {
    height: 135px;
    width: 135px;
}

.prod-a-href-fix-v5 {
  height: 103px;
  width: 119px;
}

.prod-a-href-fix-v6 {
  height: 221px;
  width: 221px;
}

.prod-a-href-fix-v7 {
  height: 249px;
  width: 249px;
}



.product__details-thumb {
  position: relative;
  display: flex;
  align-items: center;
  /* height: 100%; */
  width: 100%;
  justify-content: center;
  align-self: center;
}
.product__details-thumb .product__offer {
  position: absolute;
  top: 0;
  left: 0;
}
.product__details-thumb .product__offer span {
  display: inline-block;
  text-align: center;
  font-size: 12px;
  padding: 2px 10px;
  line-height: 16px;
  border-radius: 2px;
  background-color: #5aab19;
  color: #ffffff;
  font-weight: 400;
}

.product__details-content .price del {
  font-size: 17px;
  order: 2;
  color: rgb(153, 153, 153);
  font-weight: 400;
  margin: 1px 0px -1px;
  padding-left: 3px;
  padding-right: 3px;
}

.product__details-content del {
  order: 1;
  font-size: 16px;
  margin: -2px 0px 2px;
}

.text-truncate-4-lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
          line-clamp: 4;
  -webkit-box-orient: vertical;
}

.product__item-d {
  display: flex;
  flex-direction: column;
}

.basic-pagination ul li a.disabled {
  background: #f5f5f5;
  color: initial;
  border-color: #e5e5e5;
}

.basic-pagination ul li a {
  line-height: 40px;
}


.header__search.is-page-obchod .header__search-box .search-input {
  padding-left: 20px;
}

.header__search.is-page-obchod .header__search-cat, .header__search.is-page-obchod .header__search-box::before {
  display: none;
}

.filter-nothing-fount {
  border: 1px solid #ddd;
  border-left-width: 0;
  border-top-width: 0;
  padding: 15px 10px;
  font-size: 110%;
  text-align: center;
}

.filter-nothing-fount button {}

.header__info-2 .logo {
  margin-right: 18px;
}


.text-always-break {
    word-break: break-all;
    word-break: break-word;
}

.temp-produkty-mobile {
  background-color: #fff;
  padding: 30px 0;
  margin-bottom: 30px;
}

.temp-produkty-mobile .product__filter-wrap {
    border: none;
    border-bottom: 1px solid #e5e5e5;
    padding: 0;
}

@media (min-width: 992px) {
  .temp-produkty-mobile {
    display: none;
  }
}

.temp-produkty-mobile .section__head::before {
  display: none;
}

@media (max-width: 991px) {
  .hide-on-mobile {
    display: none;
  }
}

@media (min-width: 990px) {
  .show-on-mobile {
    display: none;
  }
}

.mean-container .mean-nav ul li a.mean-expand:hover {
  color: #ffffff;
  background: var(--farby-main-4);
}

.mean-container .mean-nav ul li a.mean-expand:hover i {
  color: #ffffff;
}


.footer-title-2 {
  font-family: "Great Vibes", cursive;
font-weight: 700;
font-style: normal;
font-size:45px;
color:var(--farby-main-1);
}


.nb {
background-color:var(--farby-main-1);
color:#fff;
width:100%;
heigh:10px;
padding:10px;
align:center;
}




.kform {
background-color:#fff;
min-width:30%;
min-height:250px;
padding:30px;
margin:20px;

border-radius: 28px 28px 28px 28px;
-moz-border-radius: 28px 28px 28px 28px;
-webkit-border-radius: 28px 28px 28px 28px;
border: 0px solid #000000;

-webkit-box-shadow: -1px -1px 30px -23px rgba(0,0,0,0.75);
-moz-box-shadow: -1px -1px 30px -23px rgba(0,0,0,0.75);
box-shadow: -1px -1px 30px -23px rgba(0,0,0,0.75);
text-align:center;
}

.kform i {
display: inline-block;
font-size:85px;
color:var(--farby-main-1);
text-align:center;

}

.nadpis {
display: inline-block;
font-size:25px;
font-weight:400;
}


.kontakt {
display: inline-block;
font-size:18px;
font-weight:400;
color:var(--farby-main-1);
}


.noti {
background-color:var(--farby-main-1);
min-width:80%;
min-height:250px;
padding:30px;
margin:20px;
color:#fff;

border-radius: 28px 28px 28px 28px;
-moz-border-radius: 28px 28px 28px 28px;
-webkit-border-radius: 28px 28px 28px 28px;
border: 0px solid #000000;

-webkit-box-shadow: -1px -1px 30px -23px rgba(0,0,0,0.75);
-moz-box-shadow: -1px -1px 30px -23px rgba(0,0,0,0.75);
box-shadow: -1px -1px 30px -23px rgba(0,0,0,0.75);
text-align:center;
}

.noti h1 {
  color: #fff;
}

.product__content .price span {
  font-size: 20px;
  color: var(--farby-main-1);
}

.product__content-2 .price {
  transition: 0.3s;
  padding-top: 20px;
}

.product__content .price {
  transition: 0.3s;
  padding-top: 12px;
}

.cart-btn-4 {
  color: #ffffff !important;
}


.banner__content h6 a {
  color: #fff !important;
}


.single-item-pd .cart-btn {
  border: 1px solid #e5e5e5 !important;
    background-color: #ffffff !important;
    color: #222 !important;
}


.trending-product-area .product__item-2 .product__content {
  text-align: center;
}

.fotter-area .cart-btn-3 {
  background-color: var(--farby-main-6);
  color: var(--farby-main-5);
}


.fotter-area .cart-btn-3 {
  background-color: var(--farby-main-6);
  color: var(--farby-main-5);
}

.copy-right-area-2 p span {
  color: var(--farby-main-6);

}

.footer__link-2 ul li a:hover, .footer__links-d p a:hover {
  color: var(--farby-main-10);

}

.footer__hotline .icon-2 i, .footer__hotline .text-2 span {
  color: var(--farby-main-6);

}

.moveing-text-area {
  background-color: var(--farby-main-7);
}

.footer__widget-title h4 {
  color: var(--farby-main-8);

}

.footer__widget-content p, .footer__link-2 ul li a, .footer__hotline .text h4, .footer__info ul li span, .footer__links p a, .copy-right-area p {
  color: var(--farby-main-9);

}

.img-succes-order {
  width: 150px;
  margin: 0 auto;
  display: block;
  margin-bottom: 30px;
  max-width: 100%;
}

.product__item .cart-btn {
  border: 1px solid #e5e5e5 !important;
  background-color: #ffffff !important;
  color: #222 !important;
}

.product__details-content .price span {
  padding-bottom: 5px;
}

.product__details-content .price {
  padding-bottom: 15px;
}

.product__details-content .price .re-price-bez {
  font-size: 16px;
  color: rgb(153, 153, 153);
  font-weight: 400;
  margin: 1px 0px -1px;
  /* padding-left: 3px; */
  /* padding-right: 3px; */
}

.logo-3 .logo-image img {
  width: auto;
}

.pswp--pswp__img-bg--white .pswp__img {
  /* background-color: #ffffff; */
}

.fake-fa-icon {

  width: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  visibility: hidden !important;

}

[data-eshop-alert-box-free-shipping] > .alert:nth-of-type(1) {
  margin-bottom: 30px;
}

.offcanvas__logo img {
  max-width: 100%;
  height: 100px;
}