@font-face {
  font-family: "Sofia Pro";
  src: url("https://www.vinomarada.cz/user/documents/fonts/SofiaProLight.eot");
  src: url("https://www.vinomarada.cz/user/documents/fonts/SofiaProLight.eot?#iefix") format("embedded-opentype"), url("https://www.vinomarada.cz/user/documents/fonts/SofiaProLight.woff2") format("woff2"), url("https://www.vinomarada.cz/user/documents/fonts/SofiaProLight.woff") format("woff"), url("https://www.vinomarada.cz/user/documents/fonts/SofiaProLight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "icomoon";
  src: url("https://www.vinomarada.cz/user/documents/fonts/icomoon.eot?7sknqx");
  src: url("https://www.vinomarada.cz/user/documents/fonts/icomoon.eot?7sknqx#iefix") format("embedded-opentype"), url("https://www.vinomarada.cz/user/documents/fonts/icomoon.ttf?7sknqx") format("truetype"), url("https://www.vinomarada.cz/user/documents/fonts/icomoon.woff?7sknqx") format("woff"), url("https://www.vinomarada.cz/user/documents/fonts/icomoon.svg?7sknqx#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow:before {
  content: "\e900";
  color: #9f4249;
}

.icon-fb:before {
  content: "\e901";
  color: #fff;
}

.icon-ig:before {
  content: "\e902";
  color: #fff;
}

.full-width {
  position: relative;
  top: 0;
  left: 50%;
  width: 100vw;
  height: auto;
  transform: translateX(-50%);
}

@media (min-width: 1200px) {
  .type-page .content-inner {
    max-width: unset;
  }
}
@media (min-width: 768px) {
  .text-wrapper {
    display: flex;
  }
  .text-wrapper .text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .text-wrapper .image {
    width: 50%;
  }
  .text-wrapper {
    padding-top: 50px;
  }
  .text-wrapper.left-text .text {
    padding-right: 50px;
  }
  .text-wrapper.right-text .text {
    padding-left: 50px;
  }
}
@media (max-width: 768px) {
  .text-wrapper {
    padding-top: 50px;
  }
  .text-wrapper.right-text .text {
    padding-left: 0px;
  }
  .text-wrapper.right-text {
    display: flex;
    flex-direction: column-reverse;
  }
}
:root {
  --teal: #8fd3d8;
  --ink: #1e2d36;
  --muted: #6b7b86;
  --card: #ffffff;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  --radius: 0;
}

/* ===== Layout ===== */
.calculator {
  background: var(--color-primary);
  border-radius: var(--radius);
  padding: 28px 80px;
  color: white;
  box-shadow: var(--shadow);
  margin-top: 70px;
}

.calculator h3 {
  margin: 20px 0 50px;
  text-align: center;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: 0.2px;
  font-weight: 800;
  color: white;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 880px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}
.panel {
  background: var(--card);
  border-radius: 0;
  padding: 18px 18px 14px;
  box-shadow: var(--shadow);
}

.panel h3 {
  margin: 0 0 6px;
  font-size: 14px;
  color: #1b2a33;
  font-weight: 700;
}

.panel .value {
  float: right;
  font-weight: 800;
  color: var(--color-primary);
}

.hint {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

/* ===== Range styling ===== */
.range {
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #e6eef0;
  outline: none;
}

.range::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--color-primary);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  margin-top: -8px;
}

.range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

.range::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary) var(--fill, 0%), #e6eef0 var(--fill, 0%));
}

.range[data-fill] {
  /* Fallback if track fill is not supported */
  background: linear-gradient(90deg, var(--color-primary) var(--fill, 0%), #e6eef0 var(--fill, 0%));
}

/* ===== Result card ===== */
.results {
  grid-column: 1/-1;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.results h2 {
  margin: 0;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
}

.results p.sub {
  margin: 6px 0 22px;
  text-align: center;
  color: black;
  font-size: 13px;
}

.cards {
  display: flex;
  justify-content: center;
}

@media (min-width: 700px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}
.card {
  background: #f9fdfd;
  padding: 28px 18px;
  text-align: center;
  box-shadow: 2px 4px 21px rgba(6, 5, 5, 0.12);
  width: 30%;
  margin: 10px;
}

.money {
  font-size: clamp(28px, 4.2vw, 40px);
  font-weight: 900;
  letter-spacing: 0.3px;
  color: var(--color-primary);
}

.caption {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.cta {
  display: block;
  width: 220px;
  margin: 24px auto 8px;
  padding: 20px 16px;
  background: var(--color-primary);
  border: 0;
  border-radius: 10px;
  font-weight: 400;
  color: white;
  cursor: pointer;
  transition: transform 0.05s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

.cta:hover {
  opacity: 0.9;
  color: white;
}

.cta:active {
  transform: translateY(1px);
}

/* small helper for value badges on mobile spacing */
.labelline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

a.cta {
  text-align: center;
  font-size: 17px;
  text-decoration: none;
}

.in-eshopy #footer {
  margin-top: 50px;
}

#footer h4 {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
#footer label.whole-width {
  font-size: 10px;
}
#footer input.form-control {
  border-color: var(--color-primary);
  border-radius: 10px;
}
#footer button.btn.btn-default.btn-arrow-right {
  border-radius: 10px;
  background-color: var(--color-primary);
}
#footer button.btn.btn-default.btn-arrow-right .sr-only {
  clip: unset;
  border: unset;
  height: unset;
  margin: unset;
  overflow: unset;
  padding: unset;
  position: unset;
  width: unset;
}
#footer .btn.btn-arrow-right:before,
#footer a.btn.btn-arrow-right:before {
  display: none;
}
#footer .custom-footer__banner9 {
  width: 100%;
}
#footer .custom-footer__banner9 .banner,
#footer .custom-footer__banner9 .banner-wrapper {
  position: unset;
  margin-bottom: 0;
  padding-bottom: 0;
}
#footer .custom-footer__banner9 .footer-bottom {
  margin-bottom: 0;
  padding-bottom: 0;
}
#footer #signature {
  flex: 1 0 180px;
  text-align: center;
}
#footer .copzright-wrap a.cookies-settings.js-cookies-settings {
  display: none;
}
#footer .custom-footer,
#footer .footer-bottom,
#footer .footer-links-icons {
  border-color: var(--color-primary);
}
#footer .site-logo {
  display: block;
  margin: 50px auto 0;
}
#footer .site-name {
  display: none !important;
}
#footer .bottom-menu {
  background: var(--color-primary);
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  height: auto;
  z-index: 10;
}
#footer .bottom-menu:before {
  content: "";
  left: 0;
  right: 0;
  position: absolute;
  height: 48px;
  background-color: var(--color-primary);
  z-index: -1;
}
#footer .bottom-menu ul {
  display: flex;
  justify-content: center;
}
#footer .bottom-menu ul li {
  margin: 0 20px;
}
#footer .bottom-menu ul li a {
  color: #fff;
}
#footer a {
  text-decoration: underline;
}
#footer .compact-form .form-control,
#footer select {
  border-color: var(--color-primary);
  border-radius: 10px;
  padding: 10px;
  height: 45px;
  font-size: 15px;
}
#footer form#formNewsletterWidget button.btn.btn-default {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  border-radius: 7px;
  height: 45px;
  right: 0px;
  top: 0px;
  padding-left: 20px;
  padding-right: 20px;
  text-transform: inherit;
  font-size: 15px;
  color: #fff;
}
#footer li.blue {
  color: var(--color-primary);
  margin-bottom: 20px;
}

.custom-footer__banner2 a,
.custom-footer__articles a,
.custom-footer__banner15 a {
  text-decoration: none !important;
}

.newsletter-header h4.topic {
  margin-bottom: 15px !important;
}

form#formNewsletterWidget input.form-control {
  font-size: 13px;
}

@media (min-width: 767px) {
  #footer .custom-footer__banner15 {
    width: 10%;
  }
  #footer .custom-footer__articles {
    width: 22%;
  }
  #footer .custom-footer__banner2 {
    width: 19%;
  }
  #footer .custom-footer__banner3 {
    width: 18% !important;
  }
  #footer .custom-footer > div.extended {
    width: 31%;
  }
}
@media (min-width: 1200px) {
  .custom-footer {
    padding-left: 0;
    padding-top: 76px;
  }
}
@media only screen and (max-width: 767px) {
  #footer .banner {
    min-height: unset;
    margin-bottom: 0;
  }
  #footer .bottom-menu ul {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px 0;
  }
  #footer button.btn.btn-default.btn-arrow-right .sr-only {
    display: block;
  }
}
@media (min-width: 1200px) {
  .footer-rows {
    min-height: 191px;
    position: unset;
  }
}
/* Spinner */
.overall-wrapper:not(.hideSpinner) {
  z-index: 9999999;
}

.overall-wrapper:not(.hideSpinner)::before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999;
  display: block;
  position: fixed;
  background-color: #fff;
  content: "";
  background-image: url("https://cdn.myshoptet.com/usr/www.uniteds.cz/user/logos/group_205.png");
  background-position: top 220px center;
  background-repeat: no-repeat;
}

.overall-wrapper:not(.hideSpinner)::after {
  content: "";
  border-color: var(--color-primary);
  border-right-color: transparent;
  z-index: 999991;
  position: fixed;
  left: 50%;
  top: 250px;
  display: block;
  width: 110px;
  height: 110px;
  margin-top: -54px;
  margin-left: -54px;
  border-style: solid;
  border-width: 3px;
  border-radius: 50%;
  font-size: 0;
  text-indent: -9999em;
  background-clip: content-box;
  -webkit-animation: load 1s infinite linear;
  animation: load 1s infinite linear;
}

header#header {
  background-color: var(--color-primary);
}

.navigation-buttons > a[data-target=login],
a.btn.btn-icon.toggle-window {
  background-color: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 5px;
  position: relative;
}
.navigation-buttons > a[data-target=login] span,
a.btn.btn-icon.toggle-window span {
  display: none !important;
}

#navigation {
  transition: none;
}
#navigation a.active b {
  border-bottom: 2px solid white;
}

.navigation-buttons > a[data-target=login] {
  position: relative;
}
.navigation-buttons > a[data-target=login]::before {
  content: "";
  width: 18px;
  height: 20px;
  background-image: url(https://736827.myshoptet.com/user/documents/upload/assets/icon/person.svg);
  background-size: cover;
  font-size: 20px;
  margin-right: 13px;
  margin-top: 9px;
  margin-left: 8px;
  position: absolute;
  right: 7px;
}

.navigation-buttons > a[data-target=login] {
  margin-right: 10px;
}

.header-top .btn.cart-count:before {
  font-size: 23px;
}

.btn.cart-count:before,
a.btn.cart-count:before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(https://736827.myshoptet.com/user/documents/upload/assets/icon/shopping-cart.svg);
  background-size: cover;
  font-size: 20px;
  margin-right: 13px;
  margin-top: 9px;
  margin-left: 8px;
}

#header .navigation-buttons .languagesMenu {
  position: absolute;
  right: 145px;
  top: 29px;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  color: #000;
  padding-left: 6px;
  padding-top: 4px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
#header .navigation-buttons .languagesMenu span.caret {
  display: none;
}

.languagesMenu__flags .shp-flag {
  top: 0px;
  left: 3px;
  position: relative;
}

#header .navigation-buttons .languagesMenu.moved {
  right: 200px;
}

#header .navigation-buttons .languagesMenu #topNavigationDropdown {
  height: 30px;
  background: transparent;
  border: none;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  padding-top: 3px;
}

#header .navigation-buttons .languagesMenu #topNavigationDropdown:focus {
  outline: none;
  border: none;
}

#header .navigation-buttons .languagesMenu #topNavigationDropdown .caret:before {
  display: inline-block;
  speak: none;
  vertical-align: middle;
  font-family: shoptet !important;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  line-height: 0;
  text-transform: none;
  color: #000;
  margin-left: 8px;
  font-size: 10px;
  text-decoration: none;
  content: "\e90e";
}

span#usp-1 {
  display: flex;
}

.cc-announcement__inner {
  height: 40px;
}

ul.social-links__list {
  margin: 0;
}
ul.social-links__list li {
  margin-right: 10px;
}
ul.social-links__list a.instagram {
  position: relative;
  top: 2px;
}

@media only screen and (max-width: 767px) {
  #header .navigation-buttons .languagesMenu #topNavigationDropdown .caret:before {
    font-size: 8px;
    margin-left: 4px;
  }
}
#header .navigation-buttons .languagesMenu .languagesMenu__content {
  display: none;
  position: absolute;
  -ms-flex-direction: column;
  background: #fff;
  padding: 0;
  top: 30px;
  border: 1px solid #000;
  width: 170px;
  -ms-flex: 1;
  flex: 1;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 8px;
  overflow: hidden;
}

#header .navigation-buttons .languagesMenu .languagesMenu__content .languagesMenu__box {
  border-right: 1px solid #f2f2f2;
  width: 100%;
}

#header .navigation-buttons .languagesMenu .languagesMenu__content .languagesMenu__box[data-target=currency] .languagesMenu__header {
  position: relative;
}

#header .navigation-buttons .languagesMenu .languagesMenu__content .languagesMenu__box[data-target=currency] .languagesMenu__header:after {
  height: 100%;
  width: 1px;
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  background: #ccc;
}

#header .navigation-buttons .languagesMenu .languagesMenu__content .languagesMenu__header {
  padding: 0px 9px;
  font-weight: 600;
  background: #f2f2f2;
  text-align: center;
  border-bottom: none;
  border-bottom: 1px solid #ccc;
  width: 100%;
}

#header .navigation-buttons .languagesMenu .languagesMenu__content .languagesMenu__header[data-toggle=dropdown] {
  display: none;
}

#header .navigation-buttons .languagesMenu .languagesMenu__content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#header .navigation-buttons .languagesMenu .languagesMenu__content ul li a {
  padding: 4px 10px;
  border-bottom: 1px solid #f2f2f2;
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  text-align: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 30px;
  -ms-flex-align: center;
  align-items: center;
}

#header .navigation-buttons .languagesMenu .languagesMenu__content ul li a span {
  display: none;
}

#header .navigation-buttons .languagesMenu .languagesMenu__content ul li a img,
#header .navigation-buttons .languagesMenu .languagesMenu__content ul li a svg {
  margin-right: 0;
}

#header .navigation-buttons .languagesMenu .languagesMenu__content ul li a:hover {
  background: #f2f2f2;
}

#header .navigation-buttons .languagesMenu:hover .languagesMenu__content {
  display: -ms-flexbox;
  display: flex;
}

.languagesMenu .dropdown-backdrop {
  display: none !important;
}

.languagesMenu__header {
  color: black;
}

#header .navigation-buttons .languagesMenu .languagesMenu__box.toggle-window {
  width: 50%;
}

#header .navigation-buttons .languagesMenu #topNavigationDropdown .caret:before {
  display: none;
}

.languagesMenu .languagesMenu__list__link {
  line-height: 24px;
  color: black;
  background-color: white;
}

@media (min-width: 992px) {
  .languagesMenu__list {
    display: block;
    min-width: unset;
    width: 100%;
    position: relative;
  }
  .languagesMenu__header--name {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .navigation-in > ul > li {
    border-color: var(--color-primary);
  }
  .languagesMenu__content {
    display: flex;
    flex-direction: row;
  }
  .top-navigation-bar {
    display: none;
  }
  .search {
    visibility: hidden !important;
  }
  .change-menu .navigation-in ul {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center !important;
  }
  .change-menu ul.menu-level-1 {
    position: absolute;
  }
  .change-menu nav#navigation {
    visibility: visible;
    position: absolute;
    bottom: 19px;
    width: -webkit-fill-available;
    left: 50%;
    transform: translateX(-50%);
    overflow: visible;
  }
  .navigation-in > ul > li > a {
    padding-bottom: 13px;
    padding-top: 13px;
    font-size: 18px;
    border-radius: 10px;
    width: max-content;
  }
  li.menu-item-25852 a {
    background: white !important;
    border-radius: 10px;
    padding: 13px 40px 13px 20px !important;
    position: relative !important;
  }
  li.menu-item-25852 a b {
    color: var(--color-primary);
  }
  li.menu-item-25852 a:after {
    content: "\e910";
    color: var(--color-primary);
    font-size: 18px;
    speak: none;
    display: inline-block;
    font-family: shoptet;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 0;
    text-decoration: none;
    text-transform: none;
    vertical-align: middle;
    position: absolute;
    right: 10px;
    bottom: 19px;
  }
  li.menu-item-25852 a a {
    color: black !important;
  }
  #navigation {
    height: 45px;
    left: 0;
    position: relative;
  }
  .navigation-in > ul > li.exp > a,
  .navigation-in > ul > li > a:hover {
    background-color: transparent;
    color: white;
  }
  .navigation-in > ul > li.exp > a b,
  .navigation-in > ul > li > a:hover b {
    border-bottom: 2px solid #fff;
  }
}
@media only screen and (max-width: 767px) {
  #header .navigation-buttons .languagesMenu {
    top: 14px;
    right: 136px;
    display: none !important;
  }
  .top-navigation-bar {
    background-color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    border-top-color: var(--color-primary);
  }
  .site-name-wrapper {
    position: relative;
    position: absolute;
    top: -55px;
    width: 100px;
    left: 50%;
    transform: translatex(-50%);
  }
  a[data-target=login]::before {
    content: "" !important;
    width: 18px;
    height: 20px;
    background-image: url(https://736827.myshoptet.com/user/documents/upload/assets/icon/person.svg);
    background-size: cover;
    font-size: 20px;
    margin-right: 13px;
    margin-top: 9px;
    margin-left: 8px;
    position: absolute;
    right: unset;
    left: 14px;
    top: 11px;
  }
  a.toggle-window[data-target=search] {
    display: none;
  }
  .responsive-tools {
    height: 60px;
  }
  span.caret {
    display: none;
  }
  .responsive-tools > a[data-target=navigation]:before,
  .responsive-tools > a[data-target=navigation]:hover:before {
    background-color: transparent;
  }
  .responsive-tools > a[data-target=navigation]:before {
    border-radius: 50%;
    font-size: 25px;
  }
  #header .cart-count {
    border: 0;
    position: absolute;
    right: 60px;
    top: -49px;
  }
  #navigation {
    transition: none;
    top: 60px;
  }
  ul.menu-level-1 a {
    position: relative;
    padding-left: 50px !important;
  }
  ul.menu-level-1 a:before {
    background-size: contain;
    position: absolute;
    left: 15px;
    top: 10px;
    content: "";
    width: 23px;
    height: 21px;
    background-repeat: no-repeat;
  }
  li.menu-item-external-30 a {
    color: #29235c;
  }
  li.menu-item-external-30 a:before {
    background-image: url(https://www.uniteds.cz/user/documents/upload/assets/icon/Icon_home.svg);
  }
  li.menu-item-25837 a {
    color: #0960e3;
  }
  li.menu-item-25837 a:before {
    background-image: url(https://736827.myshoptet.com/user/documents/upload/assets/icon/firmy.svg);
  }
  li.menu-item-25840 a {
    color: #01b400;
  }
  li.menu-item-25840 a:before {
    background-image: url(https://736827.myshoptet.com/user/documents/upload/assets/icon/sport.svg);
  }
  li.menu-item-25843 a {
    color: #b71540;
  }
  li.menu-item-25843 a:before {
    background-image: url(https://736827.myshoptet.com/user/documents/upload/assets/icon/mesta.svg);
  }
  li.menu-item-25846 a {
    color: #8c1dff;
  }
  li.menu-item-25846 a:before {
    background-image: url(https://736827.myshoptet.com/user/documents/upload/assets/icon/tvurci.svg);
    filter: brightness(0) saturate(100%) invert(25%) sepia(91%) saturate(6569%) hue-rotate(267deg) brightness(100%) contrast(108%);
  }
  li.menu-item-25849 a {
    color: #ff9600;
  }
  li.menu-item-25849 a:before {
    background-image: url(https://736827.myshoptet.com/user/documents/upload/assets/icon/skoly.svg);
  }
  #header .site-name a img {
    display: block;
    margin: 0 auto;
    max-height: 50px;
  }
  .top-navigation-bar .dropdown {
    display: inline-block;
    left: 70px;
    position: absolute;
    top: 19px;
    color: white;
  }
  .top-navigation-bar .dropdown button,
  .top-navigation-bar a {
    color: white;
  }
  .top-navigation-bar .dropdown .dropdown-menu {
    left: auto;
    right: -55px;
  }
}
.custom-themes .subcategories {
  display: flex !important;
}
.custom-themes .benefitBanner.position--benefitProduct img {
  filter: brightness(0) invert(1) !important;
}
.custom-themes .catBanners,
.custom-themes ul.subcategories.with-image,
.custom-themes .navigation-in.menu {
  display: none;
}
.custom-themes form#formSearchForm {
  visibility: hidden;
}
.custom-themes header#header {
  background-color: var(--header-color-theme);
}
.custom-themes .custom-footer__banner2,
.custom-themes .custom-footer__banner6 {
  display: none;
}
.custom-themes .breadcrumbs {
  display: none;
}
.custom-themes .benefitBanner__content span,
.custom-themes .open-hours,
.custom-themes footer p,
.custom-themes a {
  color: var(--main-color-theme);
}
.custom-themes .p-info-wrapper .add-to-cart span.quantity .decrease,
.custom-themes .p-info-wrapper .add-to-cart span.quantity .increase,
.custom-themes .btn.btn-cart,
.custom-themes .btn.btn-conversion,
.custom-themes a.btn.btn-cart,
.custom-themes a.btn.btn-conversion,
.custom-themes .size-wrap .size-button.active,
.custom-themes .col-xs-12.col-lg-6.p-info-wrapper .infoWrap .coundownWrap,
.custom-themes .btn.btn-primary:hover,
.custom-themes a.btn.btn-primary:hover,
.custom-themes .question-tooltip,
.custom-themes .bottomDescription,
.custom-themes .banner-navigation a.active,
.custom-themes .banner-navigation .banner-category.active {
  background-color: var(--button-bg-color) !important;
  border-color: var(--button-text-color) !important;
  color: var(--button-text-color) !important;
}
.custom-themes .info.pop-up {
  color: var(--main-color-theme) !important;
}
.custom-themes .info.pop-up a {
  color: var(--main-color-theme) !important;
}
.custom-themes .col-xs-12.col-lg-6.p-info-wrapper .infoWrap ico {
  background-color: var(--main-color-theme);
}
.custom-themes .p-final-price-wrapper .price-save,
.custom-themes .sizeElement .bannerWrap .text span {
  color: var(--main-color-theme);
}
.custom-themes .benefitBanner.position--benefitProduct,
.custom-themes div#description,
.custom-themes .sidebar-inner,
.custom-themes #footer .custom-footer,
.custom-themes .banner-category.baner-cat.banner-two,
.custom-themes .compact-form .form-control,
.custom-themes select {
  border-color: var(--main-color-theme);
}
.custom-themes div#description ul li::before,
.custom-themes .dklab-delivery-box.transport {
  background: var(--main-color-theme) !important;
}
.custom-themes .responsive-tools > a[data-target=navigation],
.custom-themes .responsive-tools [data-target=search] {
  visibility: hidden;
}
@media (min-width: 768px) {
  .custom-themes .header-top {
    border-color: var(--main-color-theme);
  }
  .custom-themes .bottom-menu,
  .custom-themes header#header:before {
    background: var(--main-color-theme);
  }
  .custom-themes header#header {
    height: 96px;
  }
}
@media (max-width: 768px) {
  .custom-themes .container.footer-bottom {
    margin-top: 0px !important;
  }
}

@media (min-width: 768px) {
  .invert-header .navigation-buttons .phone-number span,
  .invert-header .navigation-buttons .phone-number a,
  .invert-header .navigation-buttons a[data-target=cart],
  .invert-header a.btn.btn-icon.toggle-window.cart-count .sr-only,
  .invert-header .navigation-buttons a.top-nav-button.top-nav-button-login.primary.login.toggle-window {
    color: white !important;
  }
}
@media (max-width: 768px) {
  .invert-header .top-navigation-bar.transport {
    background-color: var(--header-color-theme);
  }
}

@media (min-width: 768px) {
  .sticky-mobile:not(.ordering-process) #header {
    background: var(--header-color-theme, white) !important;
  }
  .custom-themes #navigation {
    height: 0px;
  }
  .custom-themes .back-button {
    margin-top: 15px;
  }
}
.carousel-inner .banner {
  margin-bottom: 0;
}

.btn {
  text-transform: inherit !important;
}

.text-wrap {
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 40px;
  background: white;
  width: 33%;
  padding: 40px;
}
.text-wrap .header {
  font-size: 35px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--color-primary);
}
.text-wrap p {
  font-weight: 400;
}
.text-wrap p strong {
  font-weight: 800;
  width: 100%;
}
.text-wrap .btn {
  background: var(--color-primary);
  color: white;
  font-weight: 400;
  border: 2px solid var(--color-primary);
  padding: 10px 20px;
  display: inline-block;
  text-transform: math-auto;
  border-radius: 10px;
}
.text-wrap .btn:hover {
  background: var(--color-primary);
  color: white;
  text-decoration: none;
}

.homepage-box {
  background-color: transparent;
  border-bottom-color: transparent;
  border-top-color: transparent;
}

.benefitBanner__item {
  background: var(--color-primary);
  padding: 10px 0px 15px 30px;
  margin: 0 20px;
}
.benefitBanner__item strong.benefitBanner__title {
  color: white;
  font-size: 35px;
  padding-left: 20px;
}

.benefitBanner__data {
  padding-left: 20px;
  color: white;
  font-size: 20px;
}

.row.banners-content.body-banners > div {
  width: 100%;
}

h2 {
  font-size: 30px;
  margin-bottom: 40px;
  font-weight: 800;
  color: black;
  text-align: center;
  margin-top: 0;
}

.name {
  font-weight: 300;
}

.merch-wraper .apendix {
  text-align: center;
}
.merch-wraper .merch-category {
  display: flex;
  margin-top: 30px;
  margin-bottom: 30px;
}
.merch-wraper .category {
  text-align: center;
}
@media (min-width: 768px) {
  .merch-wraper .category {
    width: 20%;
  }
}
.merch-wraper .category {
  padding: 50px 0;
}
.merch-wraper .category:hover {
  box-shadow: #e3e3e3 0px 0px 10px;
}
.merch-wraper .category .image {
  margin-bottom: 20px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.merch-wraper .category .header {
  font-size: 20px;
  font-weight: 600;
  color: black;
  margin-bottom: 40px;
  position: relative;
}
.merch-wraper .category .header::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: black;
  margin-top: 10px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.merch-wraper .category .blue::after {
  background: #0984e3;
}
.merch-wraper .category .green::after {
  background: #2ecc71;
}
.merch-wraper .category .red::after {
  background: #b71540;
}
.merch-wraper .category .blue-light:after {
  background: #00d8d6;
}
.merch-wraper .category .orange:after {
  background: #ff9600;
}
.merch-wraper .category p {
  width: 70%;
  margin: 0 auto 20px;
}
.merch-wraper a.btn {
  color: #29235c;
  border-radius: 10px;
  border-color: #29235c;
  font-weight: 600;
  text-transform: inherit;
}

.portfolio-wrap.full-width {
  background: #f8f8f8;
  margin-top: 50px;
  padding-top: 80px;
  padding-bottom: 50px;
}
.portfolio-wrap.full-width .list-item img {
  height: 18px;
}
.portfolio-wrap.full-width .portfolio {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.portfolio-wrap.full-width .item {
  width: calc(38% - 20px);
  margin: 10px;
  background: white;
  padding: 50px;
  min-width: 500px;
}
.portfolio-wrap.full-width .image {
  width: fit-content;
  margin: 0 auto 30px;
}
.portfolio-wrap.full-width .header {
  text-align: center;
  font-size: 25px;
  font-weight: 800;
  color: black;
  margin-bottom: 30px;
}
.portfolio-wrap.full-width p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 30px;
}
.portfolio-wrap.full-width .list-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #dadada;
  padding: 10px 0;
}
.portfolio-wrap.full-width .list-item .name {
  font-size: 13px;
}
.portfolio-wrap.full-width .list-item:last-child {
  border-bottom: none;
}
.portfolio-wrap.full-width .list-item a {
  color: #0984e3;
  text-decoration: underline;
}
.portfolio-wrap.full-width .price-wrap {
  text-align: center;
  margin-top: 30px;
}
.portfolio-wrap.full-width .price {
  font-size: 25px;
  margin-bottom: 5px;
}
.portfolio-wrap.full-width a.btn {
  font-size: 20px;
  text-transform: inherit !important;
  background: var(--color-primary);
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  text-decoration: unset;
}
.portfolio-wrap.full-width .list {
  font-size: 15px;
}
.portfolio-wrap.full-width .list ul {
  list-style: none;
}
.portfolio-wrap.full-width .list li {
  padding: 5px 0;
  position: relative;
  padding-left: 30px;
  font-weight: 300;
}
.portfolio-wrap.full-width .list li::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: var(--color-primary);
  position: absolute;
  left: 0;
  font-size: 35px;
  top: 8px;
  border-radius: 10px;
}

.yes {
  position: relative;
}
.yes:before {
  content: "\e913";
  font-size: 24px;
  speak: none;
  display: inline-block;
  font-family: shoptet;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 0;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  position: absolute;
  right: 0px;
  bottom: -10px;
  color: #2ecc71;
}

.metch-wrap .apendix {
  text-align: center;
}
.metch-wrap .benefits {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 30px;
}
.metch-wrap .benefit_item {
  position: relative;
  margin: 10px;
  padding-left: 30px;
  min-height: 200px;
  background-size: cover;
}
.metch-wrap .one,
.metch-wrap .four {
  flex: 0 1 calc(56% - 20px);
}
.metch-wrap .two,
.metch-wrap .three {
  flex: 0 1 calc(44% - 20px);
}
.metch-wrap .overlay-bennefits {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--color-primary);
  opacity: 0.9;
}
.metch-wrap .text-wrap {
  position: relative;
  background-color: transparent;
  color: white;
  width: 70%;
  padding: 0;
  z-index: 101;
  top: unset;
  bottom: unset;
  left: unset;
}
.metch-wrap .text-wrap .header {
  font-size: 25px;
  color: white;
  padding-left: 60px;
  position: relative;
}
.metch-wrap .text-wrap img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slick-slide {
  padding: 15px;
}

.footer-banners.row.banner-wrapper > div {
  width: 100%;
}
.footer-banners.row.banner-wrapper .eshops-wrap {
  margin-top: 80px;
}
.footer-banners.row.banner-wrapper .footer-banner.col-sm-12.col-lg-6 {
  margin-top: 20px;
}
.footer-banners.row.banner-wrapper .eshop {
  border: 1px solid var(--color-primary);
  position: relative;
}
.footer-banners.row.banner-wrapper .eshop .text-wrap {
  position: static;
  width: unset;
  padding: 20px;
}
.footer-banners.row.banner-wrapper .eshop .text-wrap .header {
  font-size: 18px !important;
  margin-top: 10px;
}
.footer-banners.row.banner-wrapper .eshop a.btn {
  position: relative;
  width: fit-content;
  display: block;
  margin: auto;
  padding-left: 50px;
}
.footer-banners.row.banner-wrapper .eshop a.btn img {
  position: absolute;
  left: 12px;
  top: 14px;
}

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 50px;
  width: 50px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  border: 1px solid var(--color-primary);
  border-radius: 10px;
}

.slick-prev {
  left: -60px;
}
.slick-prev:after {
  content: "\e910";
  transform: rotate(180deg);
  color: black;
  font-size: 18px;
  speak: none;
  display: inline-block;
  font-family: shoptet;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 0;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  position: absolute;
  right: 16px;
  bottom: 23px;
}

.slick-next {
  right: -60px;
}
.slick-next:after {
  content: "\e910";
  color: black;
  font-size: 18px;
  speak: none;
  display: inline-block;
  font-family: shoptet;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 0;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  position: absolute;
  right: 13px;
  bottom: 23px;
}

.reference-wrap {
  margin-top: 70px;
}
.reference-wrap .reference {
  box-shadow: #e8e8e8 0px 0px 10px;
  padding: 30px;
}
.reference-wrap .reference .image img {
  height: 45px;
}
.reference-wrap .reference .image {
  margin-bottom: 30px;
}
.reference-wrap .reference .name {
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 10px;
  font-size: 18px;
}
.reference-wrap .reference p {
  font-weight: 600;
}

.image-cover {
  height: 250px;
  background-size: cover;
  background-repeat: no-repeat;
}

form.contact-form {
  background: var(--color-primary);
  padding: 50px;
  margin-top: 70px;
  color: white;
  display: flex;
}
form.contact-form .text-block {
  border-right: 1px solid white;
}
form.contact-form .text-block h2 {
  color: white;
}
form.contact-form .text-block .appendix {
  text-align: center;
  margin-bottom: 30px;
}
form.contact-form .text-block .contact-buttons {
  text-align: center;
}
form.contact-form .text-block label.btn {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  padding: 20px;
}
form.contact-form .text-block label.btn::after {
  display: none;
}
form.contact-form .text-block label.btn::before {
  display: none;
}
form.contact-form .text-block label.btn {
  margin-bottom: 20px;
}
form.contact-form .text-block label.btn:checked {
  background: white;
  color: var(--color-primary);
}
form.contact-form .text-block label.btn {
  border-radius: 10px;
  width: 70%;
}
form.contact-form .text-block label.btn span {
  font-size: 18px;
  text-transform: math-auto;
  font-weight: 600;
}
form.contact-form .text-block label.btn .appendix {
  margin-bottom: 0;
  text-transform: capitalize;
  margin-top: 10px;
}
form.contact-form .text-block label.btn.tel span {
  position: relative;
  padding-left: 30px;
}
form.contact-form .text-block label.btn.tel span img {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0px;
  background-size: contain;
}
form.contact-form .text-block label.btn.tel span svg {
  fill: white;
}
form.contact-form .text-block label.btn.mail span {
  position: relative;
  padding-left: 30px;
}
form.contact-form .text-block label.btn.mail span svg {
  fill: white;
}
form.contact-form .text-block input[type=checkbox]:checked + label,
form.contact-form .text-block input[type=radio]:checked + label {
  background-color: white;
  color: var(--color-primary);
}
form.contact-form .text-block input[type=checkbox]:checked + label svg,
form.contact-form .text-block input[type=radio]:checked + label svg {
  fill: var(--color-primary);
}
form.contact-form .form-wrap {
  margin-left: 50px;
}
form.contact-form .form-wrap input.name,
form.contact-form .form-wrap input.phone,
form.contact-form .form-wrap input.email,
form.contact-form .form-wrap input.company-name {
  width: calc(50% - 12px);
  margin: 10px;
  height: 50px;
  background: var(--color-primary-hover);
  border: none;
  padding-left: 10px;
}
form.contact-form .form-wrap input.name,
form.contact-form .form-wrap input.email {
  margin-left: 0;
}
form.contact-form .form-wrap input.phone,
form.contact-form .form-wrap input.company-name {
  margin-right: 0;
}
form.contact-form .form-wrap textarea::placeholder,
form.contact-form .form-wrap input::placeholder {
  color: var(--color-placeholder), rgb(200, 200, 200);
}
form.contact-form .form-wrap select {
  margin-top: 10px;
  width: 100%;
  max-width: unset;
  height: 50px;
  background: var(--color-primary-hover);
  border: none;
  color: var(--color-placeholder), rgb(200, 200, 200);
  position: relative;
  border-radius: 0;
  font-size: 14px;
}
form.contact-form .form-wrap .select-wrap {
  position: relative;
}
form.contact-form .form-wrap .select-wrap::after {
  content: "\e910";
  color: var(--color-placeholder), rgb(200, 200, 200);
  transform: rotate(90deg);
  font-size: 18px;
  speak: none;
  display: inline-block;
  font-family: shoptet;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 0;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  position: absolute;
  right: 13px;
  bottom: 23px;
  pointer-events: none;
}
form.contact-form .form-wrap textarea#message {
  margin-top: 20px;
  width: 100%;
  height: 100px;
  background: var(--color-primary-hover);
  border: none;
  color: white;
  padding-left: 10px;
  padding-top: 10px;
}
form.contact-form button {
  color: var(--color-primary);
  padding: 15px 25px;
  font-weight: 600;
  border-radius: 10px;
  position: relative;
  float: right;
  border-color: transparent;
  background-color: white;
}
form.contact-form button img {
  margin-left: 10px;
}
form.contact-form button:hover {
  background: rgba(255, 255, 255, 0.7215686275);
  text-decoration: none;
}
form.contact-form p {
  text-align: center;
  max-width: 420px;
  margin: auto;
  position: relative;
  right: 10px;
  font-weight: 300;
}

.welcome h1 {
  display: none;
}

.text-wrap.pointer-event-none {
  pointer-events: none;
}

@media (max-width: 767px) {
  .merch-wraper .merch-category {
    display: flex;
    margin-top: 50px;
    flex-direction: column;
  }
  .merch-wraper .merch-category .category {
    margin-bottom: 50px;
  }
  .portfolio-wrap.full-width .portfolio {
    display: block;
    position: relative;
    left: -11px;
  }
  .portfolio-wrap.full-width .item {
    width: unset;
    min-width: unset;
  }
  .metch-wrap .benefits {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  form.contact-form {
    background: var(--color-primary);
    padding: 50px 20px;
    margin-top: 70px;
    color: #fff;
    display: flex;
    flex-direction: column;
  }
  .text-block {
    border: none !important;
  }
  form.contact-form .form-wrap {
    margin-left: 0px;
  }
  form.contact-form .form-wrap input.name,
  form.contact-form .form-wrap input.phone,
  form.contact-form .form-wrap input.email,
  form.contact-form .form-wrap input.company-name {
    width: 100%;
    margin: 10px 0;
    height: 50px;
    background: var(--color-primary-hover);
    border: none;
    padding-left: 10px;
  }
  .portfolio-wrap.full-width .item {
    padding: 40px 20px;
  }
  .portfolio-wrap.full-width .list-item {
    font-size: 12px;
  }
  .portfolio-wrap.full-width .list-item .value {
    text-align: right;
  }
  .benefitBanner__item {
    margin-bottom: 20px;
  }
  .benefitBanner__item strong.benefitBanner__title {
    color: #fff;
    font-size: 20px;
    padding-left: 20px;
  }
  .benefitBanner__data {
    padding-left: 20px;
    color: #fff;
    font-size: 17px;
  }
  .slick-next {
    right: -5px;
  }
  .slick-prev {
    left: -5px;
    z-index: 1;
  }
  .category-perex .banner .text-wrap {
    display: none;
  }
  .text-wrap {
    position: absolute;
    top: unset;
    bottom: 0px;
    left: 0px;
    background: rgba(255, 255, 255, 0.5411764706);
    width: 100%;
    padding: 10px 10px 20px;
  }
  .text-wrap .btn {
    position: absolute;
    right: 5px;
    bottom: 5px;
    padding: 5px 10px;
    font-size: 12px;
  }
  .text-wrap .header {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .text-wrap p {
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 0;
  }
  .metch-wrap .text-wrap {
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    width: 90%;
    padding: 0;
    left: 20px;
  }
  .content-wrapper.homepage-box.welcome-wrapper {
    padding: 0;
  }
  .benefitBanner__picture img {
    height: 75px;
    width: unset;
    margin: auto;
  }
  .metch-wrap .benefit_item {
    position: relative;
    margin: 10px;
    padding-left: 10px;
    min-height: 180px;
    background-position: center;
    background-size: cover;
  }
  .metch-wrap .text-wrap .header {
    font-size: 22px;
  }
  form.contact-form .text-block label.btn {
    width: 85%;
    margin-right: 0;
  }
  #header {
    margin-bottom: 0px;
  }
  div#content-wrapper {
    overflow: hidden;
  }
  main#content .row.banners-row.has-text-banner {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }
  .category-perex .banner {
    margin-left: -10px;
    margin-right: -10px;
  }
  #portfolio .list {
    display: none;
  }
  #portfolio .list.expanded {
    display: block;
  }
  #portfolio .btn.show-more-btn {
    display: block;
    width: fit-content;
    margin: auto;
    border: none;
    color: #0984e3;
    font-weight: 600;
    position: relative;
    text-transform: inherit;
  }
  #portfolio .btn.show-more-btn::after {
    content: "\e910";
    color: #0984e3;
    font-size: 16px;
    speak: none;
    display: inline-block;
    font-family: shoptet;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 0;
    text-decoration: none;
    text-transform: none;
    vertical-align: middle;
    position: relative;
    right: -9px;
    bottom: 1px;
    transform: rotate(90deg);
    transition: 300ms;
  }
  #portfolio .btn.show-more-btn.expanded::after {
    transform: rotate(-90deg);
    transition: 300ms;
  }
  #portfolio .slick-dots {
    position: relative;
    left: 13px;
  }
  .benefit_item {
    display: flex;
    align-items: center;
  }
  .metch-wrap .text-wrap img {
    position: absolute !important;
  }
  form.contact-form .form-wrap .select-wrap::after {
    right: 13px;
    bottom: 34px;
  }
  #contact-form .text-block {
    margin-bottom: 30px;
  }
  .in-skoly #portfolio .list {
    display: block;
  }
  .portfolio-wrap.full-width .price {
    font-size: 19px;
    margin-bottom: 5px;
    color: black;
  }
  .note {
    font-size: 12px;
  }
  .portfolio-wrap.full-width a.btn {
    margin-top: 10px;
  }
  .portfolio-wrap.full-width .header {
    font-size: 20px;
  }
  .footer-banners.row.banner-wrapper .eshop a.btn {
    margin-top: 20px !important;
  }
  .footer-banners.row.banner-wrapper .eshop a.btn img {
    top: 10px;
  }
  form.contact-form p {
    right: 0px;
  }
}
@media (min-width: 992px) {
  .benefitBanner__item {
    flex: 0 0 25%;
  }
}
@media (min-width: 768px) {
  .metch-wrap .benefit_item {
    padding: 50px;
  }
  .metch-wrap .benefit_item .text-wrap p {
    font-weight: 300;
  }
  .benefitBanner {
    justify-content: center;
  }
}
.p-detail-info {
  display: none;
}

.p-detail-inner-header h1 {
  display: inline-block;
  color: black;
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 50px;
}

.ti-dropdown-widget-inner {
  max-width: 800px !important;
}

.col-xs-12.col-lg-6.p-info-wrapper {
  display: flex;
  flex-direction: column;
}
.col-xs-12.col-lg-6.p-info-wrapper .p-detail-inner-header {
  order: 1;
}
.col-xs-12.col-lg-6.p-info-wrapper .p-short-description {
  order: 2;
}
.col-xs-12.col-lg-6.p-info-wrapper .p-short-description.truncated {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 5px;
}
.col-xs-12.col-lg-6.p-info-wrapper .show-more-btn {
  background-color: transparent;
  border: none;
  color: var(--color-primary, var(--color-primary));
  padding: 0;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  margin-bottom: 10px;
  display: block;
}
.col-xs-12.col-lg-6.p-info-wrapper button.show-more-btn {
  order: 2;
  margin-bottom: 40px !important;
}
.col-xs-12.col-lg-6.p-info-wrapper p[data-testid=productCardDescr] {
  order: 3;
}
.col-xs-12.col-lg-6.p-info-wrapper .infoWrap {
  order: 3;
}
.col-xs-12.col-lg-6.p-info-wrapper .infoWrap .deliveryInfo.active {
  padding: 10px 20px;
}
.col-xs-12.col-lg-6.p-info-wrapper .infoWrap .coundownWrap {
  width: fit-content;
  background: var(--color-primary);
  padding: 2px 15px 0;
  margin-bottom: 40px;
  flex: none;
}
.col-xs-12.col-lg-6.p-info-wrapper .infoWrap .coundownWrap .coundownHeader {
  font-size: 14px;
  width: auto;
  color: white;
  min-width: 200px;
}
.col-xs-12.col-lg-6.p-info-wrapper .infoWrap .coundownWrap ul li {
  font-size: 15px;
}
.col-xs-12.col-lg-6.p-info-wrapper .infoWrap .coundownWrap ul li span {
  color: white;
}
.col-xs-12.col-lg-6.p-info-wrapper .infoWrap div#countdown {
  position: relative;
  top: 8px;
}
.col-xs-12.col-lg-6.p-info-wrapper .infoWrap .info {
  margin-left: 20px;
  margin-top: 10px;
  color: var(--color-primary);
  font-weight: 600;
}
.col-xs-12.col-lg-6.p-info-wrapper .infoWrap .info a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 300;
}
.col-xs-12.col-lg-6.p-info-wrapper .infoWrap ico {
  background: var(--color-primary);
  padding: 2px 9px;
  border-radius: 50%;
  margin-right: 7px;
  color: white;
  font-family: serif;
  font-weight: 800;
}
.col-xs-12.col-lg-6.p-info-wrapper table.detail-parameters {
  order: 4;
}
.col-xs-12.col-lg-6.p-info-wrapper .availability-value {
  order: 5;
}
.col-xs-12.col-lg-6.p-info-wrapper div#myBtnTabulka_velikosti {
  order: 6;
}
.col-xs-12.col-lg-6.p-info-wrapper .add-to-cart {
  order: 7;
}
.col-xs-12.col-lg-6.p-info-wrapper .social-buttons-wrapper {
  display: none;
}
.detail-parameters th {
  font-size: 20px;
  padding-bottom: 20px;
  color: black !important;
  width: 100px;
  padding-top: 10px;
}

.type-detail .size-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.type-detail .size-wrap .size-button {
  border-radius: 10px;
  border: 2px solid #dbdbdb;
  min-width: 100px;
  height: 50px;
  margin-right: 10px;
  color: #969696;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-top: 13px;
  cursor: pointer;
  margin-bottom: 10px;
}

.type-detail .size-wrap .size-button.active {
  border: 2px var(--color-primary);
  background: var(--color-primary);
  color: white;
}

.size-button.xxxBig.big {
  width: 150px !important;
}

.detail-parameters td {
  position: relative;
}
.detail-parameters td:has(select):after {
  content: "\e90e";
  font-size: 20px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  transition: color 0.3s ease-out;
  width: 25px;
  speak: none;
  display: inline-block;
  font-family: shoptet;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 0;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  position: absolute;
  color: var(--color-primary);
  left: 145px;
  top: 28px;
  pointer-events: none;
}
.detail-parameters td .quantity,
.detail-parameters td select {
  width: 180px;
  background-color: white;
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  border-radius: 10px;
  height: 46px;
  font-size: 16px;
}
.detail-parameters td span {
  margin-right: 10px;
  font-weight: 600;
}

.quantity input {
  text-align: left;
  width: unset;
  padding-left: 13px;
}

.quantity .decrease,
.quantity .increase {
  background-color: transparent;
  border-color: transparent;
  color: var(--color-primary);
  right: 10px;
}

.quantity .decrease:before,
.quantity .increase:before {
  font-size: 10px;
  height: 100%;
  left: 0px;
  line-height: 23px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  font-size: 15px;
}

.quantity input {
  font-size: 16px;
}

.sizeElement {
  padding-bottom: 30px;
  order: 4;
}
.sizeElement a {
  background: #969696;
  padding: 16px 10px 10px 50px;
  color: white;
  border-radius: 5px;
  margin-right: 15px;
  position: relative;
}

.btn.add-to-cart-button:before {
  display: none;
}

.availability-value {
  display: none;
}

.order-select {
  position: relative;
}
.order-select::after {
  content: "\e90e";
  font-size: 20px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  transition: color 0.3s ease-out;
  width: 25px;
  speak: none;
  display: inline-block;
  font-family: shoptet;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 0;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  position: absolute;
  color: var(--color-primary);
  right: 10px;
  top: 19px;
  pointer-events: none;
}
.order-select select {
  background-color: white;
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  border-radius: 10px;
  height: 46px;
}
.order-select span {
  margin-right: 10px;
  font-weight: 600;
}

div#myBtnTabulka_velikosti {
  display: none;
}

a.sizeTableButton:before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(https://www.kraloveskoly.cz/user/documents/upload/assets/img/ios-resize.svg);
  position: absolute;
  background-size: cover;
  left: 17px;
}

a.sizeTableButton.delivery:before {
  width: 22px;
  background-image: url(https://www.kraloveskoly.cz/user/documents/upload/assets/img/shipping-fast.svg);
}

.p-info-wrapper .add-to-cart {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-top: 40px;
}
.p-info-wrapper .add-to-cart span.quantity {
  padding: 0 40px;
  text-align: center;
  background: transparent;
  height: 50px;
  margin-bottom: 20px;
  border-radius: 10px;
  border-color: #dbdbdb;
}
.p-info-wrapper .add-to-cart span.quantity input.amount {
  background: transparent;
  color: #000000;
  text-align: center;
  height: 40px;
  font-size: 20px;
  margin-top: 4px;
}
.p-info-wrapper .add-to-cart span.quantity .decrease,
.p-info-wrapper .add-to-cart span.quantity .increase {
  background-color: transparent;
  border-color: transparent;
  color: inherit;
  color: var(--color-primary);
}
.p-info-wrapper .add-to-cart .btn.add-to-cart-button {
  margin-top: 10px;
  border-radius: 10px;
  padding: 6px 25px;
  font-size: 18px;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.p-info-wrapper .add-to-cart .price-final {
  font-size: 35px;
  line-height: 1;
  padding: 7px 30px 0 0;
}

div#sizeTable {
  display: none;
}

.tabe-size-wrap {
  display: none;
}

@media (min-width: 768px) {
  .infoWrap {
    display: flex;
  }
  .sizeElement {
    display: flex;
    order: 9;
  }
  .p-info-wrapper .add-to-cart {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
  }
  .p-final-price-wrapper {
    width: fit-content;
  }
}
.stars-wrapper {
  display: none;
}

.extended-description {
  display: none;
}

.shp-tabs-holder {
  display: none;
}

.benefitBanner.position--benefitProduct {
  border-top: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  padding-top: 20px;
  padding-bottom: 20px;
  width: 1418px;
}

div#description {
  border-top: 2px solid var(--color-primary);
  padding-top: 40px;
}
div#description h3 {
  display: none;
}
div#description ul {
  list-style-type: none;
  padding-left: 20px;
}
div#description ul li {
  position: relative;
}
div#description ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  position: absolute;
  left: -20px;
  top: 5px;
  border-radius: 50%;
}

div#popup-wrap {
  display: flex;
}
div#popup-wrap .photo-wrap {
  flex: 1 0 30%;
}
div#popup-wrap .text-wrap {
  padding-left: 30px;
}
div#popup-wrap h2 {
  font-size: 23px;
  color: black;
  font-weight: 600;
  margin-bottom: 30px;
}
div#popup-wrap ul {
  list-style: none;
  padding-left: 7px;
}
div#popup-wrap ul li {
  color: black;
  font-weight: 600;
}
div#popup-wrap ul li:before {
  content: "\e913";
  speak: none;
  display: inline-block;
  font-family: shoptet;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 0;
  text-decoration: none;
  text-transform: none;
  width: 30px;
  height: 30px;
  background: #56d560;
  color: #fff;
  font-size: 15px;
  padding: 15px 7px;
  border-radius: 50%;
  left: -10px;
  position: relative;
  margin-bottom: 10px;
}

div#delivery-wrap h2 {
  text-align: center;
  font-weight: 600;
  color: black;
}
div#delivery-wrap .header {
  border-bottom: 2px solid var(--color-primary);
  padding: 0 0 7px 15px;
  margin-bottom: 10px;
}
div#delivery-wrap th {
  border-right: solid 30px transparent;
  line-height: 1.8;
}
div#delivery-wrap table {
  margin-bottom: 25px;
}

.availability-value {
  font-size: 14px;
}

.sizeElement .bannerWrap {
  display: flex;
}
.sizeElement .bannerWrap .image {
  width: 47px;
}
.sizeElement .bannerWrap .text {
  margin-left: 10px;
  color: #0a84e3;
  font-size: 18px;
  font-weight: 700;
}
.sizeElement .bannerWrap .text span {
  color: var(--color-primary);
}

.col-xs-12.col-lg-6.p-info-wrapper .bannerWrap .image {
  background: var(--color-primary);
  border-radius: 50%;
  padding: 12px;
}

@media (max-width: 768px) {
  .benefitBanner.position--benefitProduct {
    width: 100%;
  }
  .col-xs-12.col-lg-6.p-info-wrapper .infoWrap .info {
    margin-left: 0px;
    margin-top: 10px;
  }
  .deliveryInfo {
    margin-bottom: 20px;
  }
  .sizeElement {
    display: flex;
    flex-direction: column;
  }
  a.sizeTableButton {
    margin-bottom: 17px;
    margin-right: 0;
  }
  .bannerWrap {
    margin-bottom: 20px;
  }
  .p-final-price-wrapper {
    right: 0;
  }
  .col-xs-12.col-lg-6.p-info-wrapper .p-final-price-wrapper {
    order: 4;
  }
  span.sr-only {
    display: none;
  }
  .ti-dropdown-widget {
    height: 80%;
    top: 110px !important;
    width: 100%;
  }
  .deliveryInfo.active {
    margin-bottom: 0;
  }
  a.chevron-after.chevron-down-after,
  button.show-more-btn,
  .p-short-description {
    display: none !important;
  }
  .p-detail-inner-header h1 {
    font-size: 27px;
  }
  .col-xs-12.col-lg-6.p-info-wrapper .infoWrap {
    order: 7;
  }
  .detail-parameters .sizeElement {
    padding-top: 50px;
    position: absolute;
    bottom: 0px;
  }
  .add-to-cart {
    position: relative;
  }
  .col-xs-12.col-lg-6.p-info-wrapper .add-to-cart {
    margin-top: 0;
  }
  button.btn.btn-lg.btn-conversion.add-to-cart-button {
    position: absolute;
    right: 0;
  }
}
.add-to-cart span.price-standard {
  margin-left: 0px;
}

span.quantity {
  margin-right: 20px;
}

@media (min-width: 992px) {
  .col-xs-12.col-lg-6.p-image-wrapper {
    flex: 0 0 auto;
    width: 40%;
  }
  .col-xs-12.col-lg-6.p-info-wrapper {
    padding-left: 20px;
  }
}
span.parameter-dependent.default-variant {
  visibility: hidden;
}

@media (min-width: 768px) {
  .p-image-wrapper .flags-extra .flag {
    border-radius: 50%;
    height: 75px;
    min-height: 75px;
    min-width: 75px;
    width: 75px;
  }
  tr.variant-list.variant-not-chosen-anchor.sizes.variant-selected .availability-value {
    position: absolute;
    right: 20%;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .availability-value {
    font-size: 16px;
    margin-bottom: 19px;
  }
  .infoWrap {
    display: none;
  }
  .sizeElement {
    padding-bottom: 30px;
    order: 8;
  }
  .type-product main#content .row {
    margin-left: -10px !important;
    margin-right: -10px !important;
  }
  .type-product .p-final-price-wrapper {
    height: 72px;
  }
  .type-product .p-final-price-wrapper {
    position: relative;
    width: 100%;
  }
  .type-product strong.price-final.price-action {
    position: absolute;
    bottom: 9px;
  }
  .type-product .p-final-price-wrapper:has(.price-save) {
    height: 90px;
  }
  .type-product .p-final-price-wrapper:has(.price-save) .price-action {
    position: relative;
    bottom: 0;
  }
}
div#cboxLoadedContent a.btn.btn-conversion {
  background-color: #3f396d !important;
}
div#cboxLoadedContent .extra strong {
  color: #3f396d !important;
}
div#cboxLoadedContent .price-range > div {
  background-color: #3f396d !important;
}

.type-category .content-wrapper.homepage-box.middle-banners-wrapper .col-sm-4 {
  display: none;
}

.in-eshopy ul.subcategories.with-image,
.in-eshopy h1.category-title {
  display: none;
}

.shops-wraper {
  display: none;
}

div#category-header {
  display: none;
}

.breadcrumbs {
  visibility: hidden;
}

.item.bestseller {
  border: 2px solid #0984e3;
  position: relative;
}
.item.bestseller .ribbon {
  background: #0984e3;
  color: white;
  width: max-content;
  padding: 10px 30px;
  border-radius: 50px;
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
}

.products-block.products .p .name {
  font-size: 16px;
  color: black;
  font-weight: 600;
}

.products-block.products > div {
  padding: 20px;
}

.product {
  border: none !important;
}
.product .p-in-in {
  margin-bottom: 26px;
}

.filter-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.filter-container::before, .filter-container::after {
  display: none;
}

.flag {
  padding: 7px 15px;
  border-radius: 50px;
}

.btn.btn-primary,
a.btn.btn-primary {
  padding: 7px 35px;
  border-radius: 10px;
  text-transform: none;
  font-weight: 600;
}

.btn.filter-button {
  border: none;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: unset;
}
.btn.filter-button:before {
  content: "";
  background-image: url(https://www.uniteds.cz/user/documents/upload/assets/icon/filter.png);
  width: 20px !important;
  height: 20px;
  display: inline-block;
  background-size: cover;
  margin: 0 10px 0 0;
  position: relative;
  top: 6px;
  filter: brightness(0) saturate(100%) invert(13%) sepia(45%) saturate(2285%) hue-rotate(227deg) brightness(91%) contrast(96%);
}

.type-category .category-description {
  margin-top: 20px;
  font-size: 16px;
  line-height: 28px;
  color: black;
}
.type-category .apendix {
  text-align: center;
}
.type-category .metch-wrap {
  padding-top: 80px;
}
.type-category .category-perex.empty-content.empty-content-category {
  display: none;
}
.type-category .row.banners-content.body-banners .col-sm-4 {
  display: none;
}

.desktop img.mobile {
  display: none;
}

.mobile img.desktop {
  display: none;
}

.three-reasons-why {
  margin-top: 50px;
}

.reason {
  border: 2px solid var(--color-primary);
  padding: 40px;
  text-align: center;
  width: 28%;
}
.reason .icon {
  display: block;
  margin: 0 auto 20px auto;
  width: fit-content;
}
.reason .title {
  font-size: 16px;
  font-weight: 600;
  color: black;
  margin-bottom: 20px;
}

.shops-wraper {
  margin-top: 50px;
}

.shops {
  min-height: 300px;
}

@media (min-width: 768px) {
  .reasons-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 80px;
  }
}
.middle-banner {
  background: var(--color-primary);
  padding: 70px 0 50px;
  color: white;
}
.middle-banner h2 {
  color: white;
}
.middle-banner a.btn {
  display: block;
  margin: 30px auto 0;
  background: #fff;
  color: var(--color-primary);
  border: none;
  width: fit-content;
  text-decoration: unset;
  padding: 20px 30px;
  border-radius: 10px;
}
.middle-banner a.btn:hover {
  background: #f2f2f2;
  color: var(--color-primary);
}

@media (max-width: 767px) {
  .reason {
    margin: 20px;
    width: unset;
  }
  .calculator {
    padding: 28px 20px;
  }
  section.calculator .grid {
    display: unset;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  section.calculator .panel {
    margin-bottom: 10px;
  }
  section.calculator .cards {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  section.calculator .card {
    width: unset;
  }
  .product .p-in-in {
    margin-bottom: 50px;
  }
}
.subcategories.with-image li {
  width: 20%;
}
@media (max-width: 768px) {
  .subcategories.with-image li {
    width: 50%;
  }
}
.subcategories.with-image li a {
  border: none;
  flex-direction: column;
  height: unset;
  padding-right: 7px;
}
.subcategories.with-image li a .image {
  width: unset;
}
.subcategories.with-image li a .image img {
  max-height: unset;
  max-width: 150px;
}
.subcategories.with-image li a span.text {
  font-size: 20px;
  text-align: center;
  color: #000;
  margin-bottom: 20px;
  height: 55px;
  max-height: unset;
}
.subcategories.with-image li a::before {
  display: none;
}
.subcategories.with-image li a:hover {
  background-color: transparent;
}
.subcategories.with-image li a:hover:after {
  background-color: transparent;
}

.content ul.subcategories.with-image {
  display: flex;
}
.content ul.subcategories.with-image:nth-child(n+3) {
  display: none;
}

.filter-wrap {
  margin-bottom: 50px;
}
.filter-wrap .filter {
  display: flex;
}
.filter-wrap form#formSearchForm {
  width: 40%;
}
.filter-wrap .or {
  padding: 17px;
  font-size: 20px;
  color: black;
}
.filter-wrap select.type-select,
.filter-wrap select.region-select,
.filter-wrap select.country-select {
  min-width: 190px;
  margin-right: 20px;
}
.filter-wrap .compact-form .form-control,
.filter-wrap select {
  height: 50px;
}
.filter-wrap button.btn.btn-default {
  height: 41px;
}
.filter-wrap input.query-input.form-control.search-input.js-search-input-add {
  z-index: 6;
  position: relative;
}
.filter-wrap button.btn.btn-default {
  height: 41px;
  z-index: 6;
}

.in-skoly h1.category-title {
  display: none;
}
.in-skoly ul.subcategories.with-image {
  display: none;
}
.in-skoly .category-content-wrapper {
  min-height: 0px;
}
.in-skoly .category-perex.empty-content {
  text-align: center;
}
.in-skoly h3 {
  text-align: center;
  font-size: 30px;
  color: black;
  margin-bottom: 50px;
}

.school-item {
  width: 20%;
  padding: 10px;
}
.school-item a {
  display: flex;
  flex-direction: column;
}
.school-item img {
  max-width: 150px;
  margin: auto;
  margin-bottom: 25px;
}
.school-item span {
  font-size: 16px;
  text-align: center;
  color: black;
  margin-bottom: 0px;
  font-weight: 600;
}
.school-item span.school-category {
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
}
.school-item .btn {
  color: var(--color-primary);
  border-radius: 11px;
  margin: auto;
  display: block;
  width: fit-content;
  margin-top: 20px;
}

.in-vybaveni-do-skoly aside.sidebar.sidebar-left,
.in-papirnictvi-2 aside.sidebar.sidebar-left {
  display: none;
}
.in-vybaveni-do-skoly .filter-sections,
.in-papirnictvi-2 .filter-sections {
  display: none;
}

.school-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.search-whispererss:has(.suggestion-item) {
  position: absolute;
  border: 1px solid rgba(128, 128, 128, 0.2705882353);
  width: 100%;
  padding-top: 10px;
  background: white;
  border-top: none;
  top: 45px;
}

.suggestion-item {
  padding: 6px 0px 6px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.0705882353);
  cursor: pointer;
}

.content-wrapper-in .category-top {
  display: none;
}

.sidebar {
  background-color: transparent;
}

.sidebar-inner {
  border-right: 1px solid #ff9600;
}

input[type=checkbox] + label:before,
input[type=radio] + label:before {
  border-radius: 50%;
}

input[type=checkbox]:checked + label:after,
input[type=radio]:checked + label:after {
  background-color: #ff9600;
  border-color: #fff;
  border-radius: 50%;
}

.orderDropdown {
  width: 100%;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
  .school-item {
    width: 50%;
  }
  .filter-wrap .filter {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .filter-wrap form#formSearchForm {
    width: 90%;
    margin: auto;
  }
  .filter-wrap .or {
    padding: 17px;
    font-size: 20px;
    color: #000;
    text-align: center;
  }
  .filter-wrap select.type-select,
  .filter-wrap select.region-select,
  .filter-wrap select.country-select {
    min-width: 190px;
    margin-right: 20px;
    width: 90%;
    margin: auto;
    display: block;
    margin-bottom: 10px;
  }
}
.colors-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: absolute;
  left: 0;
  bottom: 25px;
  height: 35px;
}
.colors-wrap .color {
  width: 15px;
  height: 15px;
  border: 1px solid #5d5d5d;
  border-radius: 50%;
  margin-right: 3px;
  margin-bottom: 2px;
  overflow: hidden;
}
.colors-wrap .color img {
  position: relative;
  top: -4px;
  width: 16px;
  height: 16px;
}

h1.category-title {
  font-size: 40px;
  font-weight: 600;
  color: black;
  margin-top: 40px;
}

.category-top {
  position: relative;
}

.bottomDescription {
  background-color: #ff9600;
  min-width: 500px;
  position: absolute;
  border-radius: 10px;
  right: 0;
  top: -14px;
}

.topDescription {
  margin-bottom: 60px;
}

.coundownWrap {
  display: flex;
  color: white;
  padding: 15px;
  border-radius: 10px;
  overflow: hidden;
}
.coundownWrap ul {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.coundownWrap ul li {
  font-size: 30px;
  font-weight: 800;
  margin-left: 10px;
  font-family: Arial, Helvetica, sans-serif;
}
.coundownWrap ul li span {
  color: black;
  margin-right: 5px;
}
.coundownWrap .ico-clock {
  width: 40px;
  height: 40px;
  background-image: url(https://www.kraloveskoly.cz/user/documents/upload/assets/img/clock.svg);
  background-size: cover;
  margin-top: 1px;
  margin-right: 10px;
}
.coundownWrap .coundownHeader {
  font-size: 12px;
  width: 76px;
  margin-top: 9px;
  margin-right: 5px;
  line-height: 1;
}
.coundownWrap span#seconds {
  width: 35px;
  display: inline-block;
  text-align: right;
}

.sidebar .h4,
.sidebar h4 {
  color: black;
}

.new-wrap {
  display: flex;
}

.widget-parameter-wrapper.justified {
  display: none;
}

h1.category-title {
  max-width: 100%;
  text-align: center;
}

@media (min-width: 1200px) {
  .products-block > div {
    flex: 0 0 auto;
    width: 25%;
  }
}
.end-info {
  background: #ff0000;
  color: white;
  padding: 10px 10px 10px 60px;
  border-radius: 7px;
  position: relative;
}
.end-info:before {
  content: "";
  display: inline;
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url(https://www.kraloveskoly.cz/user/documents/upload/assets/img/info-circle.svg);
  left: 24px;
  top: 7px;
  background-size: cover;
}

.bottomDescription:has(.future) {
  display: flex;
  flex-direction: row-reverse;
  background-color: transparent !important;
  justify-content: space-between;
}
.bottomDescription:has(.future) .coundownWrap.future {
  background: #dbdbdb;
  color: black;
  padding: 11px 10px 17px 50px;
}
.bottomDescription:has(.future) .coundownWrap.future .coundownHeader {
  font-size: 16px;
  width: unset;
  margin-top: 9px;
  margin-right: 5px;
  line-height: 1;
  font-weight: 600;
  position: relative;
}
.bottomDescription:has(.future) .coundownWrap.future .coundownHeader:before {
  content: "";
  display: inline;
  position: absolute;
  width: 29px;
  height: 33px;
  background-image: url(https://www.kraloveskoly.cz/user/documents/upload/assets/img/moon.svg);
  left: -39px;
  top: -9px;
  background-size: cover;
}
.bottomDescription:has(.future) .deliveryInfo {
  background: antiquewhite;
  border-radius: 10px;
  padding: 10px 10px 10px 50px;
  background-color: var(--color-primary);
  height: fit-content;
  margin-top: 8px;
  margin-right: 15px;
}
.bottomDescription:has(.future) .deliveryInfo a {
  color: white;
  font-weight: 400 !important;
}
.bottomDescription:has(.future) .deliveryInfo:before {
  content: "";
  display: inline;
  position: absolute;
  width: 20px;
  height: 22px;
  background-image: url(https://www.kraloveskoly.cz/user/documents/upload/assets/img/bell-white.svg);
  left: 18px;
  top: 15px;
  background-size: cover;
}

.description-bottom a.link-icon.watchdog.btn {
  background: #000;
  border-color: #000;
  width: 153px;
  padding: 18px 18px;
  font-size: 12px;
  height: 53px;
  line-height: 16px;
  right: 4px;
  top: 3px;
  border-radius: 9px;
  color: #fff;
}
.description-bottom a.link-icon.watchdog.btn::before {
  display: none;
}

.banner-navigation a,
.banner-navigation .banner-category {
  position: relative;
  width: 100%;
  max-height: 120px;
  overflow: hidden;
  color: #000;
  font-weight: 600;
  font-size: 40px;
  line-height: 3;
}
.banner-navigation a img,
.banner-navigation .banner-category img {
  max-height: 120px;
}
.banner-navigation a.active,
.banner-navigation .banner-category.active {
  background-color: var(--color-primary);
  color: white;
}
.banner-navigation a .new-class,
.banner-navigation .banner-category .new-class {
  position: absolute;
  right: -28px;
  bottom: 22px;
  font-size: 15px;
  color: #fff;
  background: red;
  padding: 5px 31px;
  line-height: 1;
  transform: rotate(315deg);
}
.banner-navigation a a,
.banner-navigation .banner-category a {
  cursor: pointer;
}
.banner-navigation .banner-category {
  border: 1px solid var(--color-primary);
  display: flex !important;
  justify-content: space-between;
  padding-right: 70px;
}

.english .banner-navigation a .new-class,
.banner-navigation .banner-category .new-class {
  padding: 5px 48px;
}

.selector-header {
  text-align: center;
  margin-top: 40px;
  font-size: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #000;
  margin-bottom: 50px;
}

.select-wrap {
  text-align: center;
}
.select-wrap select {
  margin-right: 20px;
  width: 200px;
  border-color: #dadada;
  height: unset;
}

.in-skoly .portfolio-wrap.full-width .item {
  width: calc(25% - 27px);
  margin: 10px;
  background: #fff;
  padding: 50px 20px;
  min-width: unset;
}
.in-skoly .portfolio-wrap.full-width .item ul {
  padding-left: 20px;
}
.in-skoly .portfolio-wrap.full-width .item a.btn {
  text-decoration: none;
}
.in-skoly .portfolio-wrap.full-width .item .header {
  font-size: 22px;
}

.supplies-wrap.supplies {
  margin-top: 60px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.supplies-wrap.supplies table {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
.supplies-wrap.supplies table td.availability {
  display: none;
}
.supplies-wrap.supplies table thead {
  display: none;
}
.supplies-wrap.supplies tr.product-wrap-tr {
  border-bottom: 2px solid var(--color-primary);
}
.supplies-wrap.supplies tr.product-wrap-tr img {
  width: 100px;
}
.supplies-wrap.supplies .name a {
  color: black;
  margin-right: 20px;
  margin-left: 10px;
}
.supplies-wrap.supplies .price {
  font-weight: 600;
  margin-right: 12px;
}
@media (min-width: 768px) {
  .supplies-wrap.supplies span.quantity {
    padding: 0 30px;
    text-align: center;
    background: transparent;
    height: 40px;
    margin-bottom: 0px;
    border-radius: 10px;
    border-color: #dbdbdb;
    margin-right: 20px;
  }
  .supplies-wrap.supplies span.quantity input.amount {
    background: transparent;
    color: #000000;
    text-align: center;
    height: 40px;
    font-size: 20px;
    margin-top: 0px;
  }
  .supplies-wrap.supplies span.quantity .decrease {
    border-style: solid none none solid;
    border-width: 1px;
    left: auto;
    left: 2px;
    top: 2px;
    background: #ff9600;
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .supplies-wrap.supplies span.quantity .decrease:hover {
    background-color: var(--color-primary);
  }
  .supplies-wrap.supplies span.quantity .decrease:hover::before {
    color: white;
  }
  .supplies-wrap.supplies span.quantity .decrease::before {
    content: "-";
    position: absolute;
    text-align: center;
    top: -4px;
    left: -1px;
    font-size: 43px;
    color: white;
  }
  .supplies-wrap.supplies span.quantity span.increase {
    border-style: solid none none solid;
    border-width: 1px;
    left: auto;
    right: 1px;
    top: 2px;
    background: #ff9600;
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .supplies-wrap.supplies span.quantity span.increase:hover {
    background-color: var(--color-primary);
  }
  .supplies-wrap.supplies span.quantity span.increase:hover::before {
    color: white;
  }
  .supplies-wrap.supplies span.quantity span.increase::before {
    content: "+";
    position: absolute;
    text-align: center;
    top: 0px;
    left: -1px;
    font-size: 30px;
    color: #fff;
  }
  .supplies-wrap.supplies span.quantity .decrease,
  .supplies-wrap.supplies span.quantity .increase {
    border-color: transparent;
    color: inherit;
  }
}
.supplies-wrap.supplies .btn.add-to-cart-button {
  margin-top: 0px;
  border-radius: 10px;
  padding: 7px 25px;
  font-size: 15px;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.supplies-wrap.supplies .in-card .btn.add-to-cart-button {
  background-color: green;
  border-color: green;
}
@media screen and (max-width: 768px) {
  .supplies-wrap.supplies span.quantity {
    margin-bottom: 5px;
    margin-top: 5px;
    margin-left: 5px;
  }
  .supplies-wrap.supplies .quantity input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: 0;
    display: inline-block;
    font-family: Arial, sans-serif;
    font-style: normal;
    height: 25px;
    margin: 0;
    padding: 0;
    text-align: right;
    width: 23px;
  }
  .supplies-wrap.supplies .quantity .decrease,
  .supplies-wrap.supplies .quantity .increase {
    cursor: pointer;
    height: 15px;
    position: absolute;
    width: 15px;
  }
  .supplies-wrap.supplies .quantity .decrease:before,
  .supplies-wrap.supplies .quantity .increase:before {
    top: -3px;
  }
  .supplies-wrap.supplies .quantity .decrease {
    top: 13px;
  }
  .supplies-wrap.supplies span.quantity {
    margin-right: 10px;
  }
  .supplies-wrap.supplies .add-cart-form {
    display: flex;
  }
  .supplies-wrap.supplies div#tabAlternativeProducts1 {
    margin-left: -10px;
  }
  .supplies-wrap.supplies button.btn.btn-plain.btn-cart.add-to-cart-button {
    margin-bottom: 4px;
  }
  .supplies-wrap.supplies .price {
    width: 70px;
    top: -7px;
    position: relative;
    margin-right: 0px;
    font-size: 12px;
  }
  .supplies-wrap.supplies th.product-tools {
    min-width: 30px;
  }
  .supplies-wrap.supplies tr.product-wrap-tr td:eq(2) {
    display: none;
  }
  .supplies-wrap.supplies th.code {
    font-size: 0;
  }
  .supplies-wrap.supplies img {
    width: 50px !important;
    max-width: none;
  }
  .supplies-wrap.supplies td.availability {
    position: relative;
  }
  .supplies-wrap.supplies .name {
    width: 120px;
    height: 75px;
    overflow: hidden;
  }
  .supplies-wrap.supplies .name a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .supplies-wrap.supplies th.availability {
    font-size: 0;
  }
  .supplies-wrap.supplies .code.border-right {
    position: absolute;
    top: 0;
    left: 90px;
    font-size: 10px;
    border-right: none;
  }
  .supplies-wrap.supplies .availability span {
    position: absolute;
    max-height: 26px;
    height: 26px;
    width: 70px;
    overflow: hidden;
    line-height: 1.2;
    font-size: 10px;
    text-align: right;
    top: 45px;
  }
  .supplies-wrap.supplies span.availability-amount {
    display: none;
  }
  .supplies-wrap.supplies th.tab-price {
    text-align: right !important;
    padding-right: 15px;
  }
  .supplies-wrap.supplies button.btn.btn-cart.add-to-cart-button {
    padding-left: 10px;
    padding-right: 4px;
  }
  .supplies-wrap.supplies button.btn.btn-cart.add-to-cart-button span {
    display: none;
  }
  .supplies-wrap.supplies button.btn.btn-cart.add-to-cart-button:before {
    content: "\e921";
    speak: none;
    display: inline-block;
    font-family: shoptet;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 0;
    text-decoration: none;
    text-transform: none;
    vertical-align: middle;
    width: 20px;
  }
  .supplies-wrap.supplies .name a {
    margin-left: 0px;
    font-size: 14px;
    top: 10px;
    position: relative;
  }
  .supplies-wrap.supplies img {
    margin-right: 10px;
  }
}

.year-display {
  text-align: center;
  font-size: 25px;
  margin-top: 40px;
  font-weight: 700;
  color: black;
}

@media (max-width: 768px) {
  .bottomDescription:has(.future) {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0);
    justify-content: space-between;
    min-width: unset;
  }
  .bottomDescription:has(.future) .deliveryInfo {
    position: relative;
    margin-right: 0;
  }
  .bottomDescription:has(.future) .deliveryInfo:before {
    top: 8px;
  }
  h1.category-title {
    max-width: 100%;
  }
  .banner-navigation .banner-category {
    overflow: hidden !important;
    max-height: 50px;
    font-size: 22px;
    line-height: 2.2;
    margin-bottom: 10px;
  }
  .banner-navigation .banner-category img {
    max-height: 50px;
  }
  .banner-navigation .banner-category .new-class {
    right: -32px;
    bottom: 11px;
    font-size: 9px;
  }
  .selector-header {
    font-size: 19px;
  }
  .select-wrap select {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .coundownWrap ul li {
    font-size: 16px;
  }
  .coundownWrap {
    flex-direction: column;
  }
  .bottomDescription {
    position: relative;
  }
  .coundown .coundownHeader {
    position: absolute;
    left: 70px;
    font-size: 18px !important;
    width: 142px !important;
    margin-top: 9px;
    margin-right: 5px;
    line-height: 1;
    top: 8px;
  }
  div#countdown {
    padding-bottom: 10px;
  }
  .ico-clock {
    margin-bottom: 15px;
  }
  .coundownWrap span#seconds {
    width: 17px;
  }
  div#countdown {
    width: 300px;
  }
  .bottomDescription {
    min-width: unset;
    /* width: 194px !important; */
  }
  .colors-wrap {
    bottom: 80px;
  }
  .type-category .order-select select {
    height: 34px;
    font-size: 11px;
    padding: 6px 10px;
  }
  .order-select::after {
    font-size: 16px;
  }
}
.deliveryInfo.active {
  color: white;
}
.deliveryInfo.active h3.coundownHeader {
  color: white;
}

.coundownWrap.deactive {
  padding: 0 !important;
}

.bottomDescription:has(.deliveryInfo.active) {
  padding: 10px 20px;
  margin-bottom: 20px !important;
}

.flag.flag-discount {
  background-color: #ff9600;
}
.flag.flag-discount span.price-standard {
  right: -14px;
  bottom: 10px;
  color: #000;
  padding: 2px 12px;
  border-radius: 5px;
  width: max-content;
  text-decoration: line-through;
}
.flag.flag-discount span.price-save {
  font-size: 16px !important;
}
.flag.flag-discount .price-standard > span {
  text-decoration: none;
}

.category-perex.empty-content.empty-content-category {
  display: none;
}

@media (min-width: 768px) {
  .banner-navigation {
    display: flex;
    justify-content: space-between;
  }
  .banner-navigation .banner-category {
    width: calc(50% - 10px);
  }
  .banner-navigation > a {
    width: calc(50% - 10px);
  }
  .banner-navigation > a .banner-category {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .five-in-live .product {
    width: 25% !important;
  }
}
tr.product-wrap-tr.hand-left {
  display: none;
}

.hand-left tr.product-wrap-tr.hand-left {
  display: table-row;
}
.hand-left tr.product-wrap-tr.hand-right {
  display: none;
}

.gender-boy tr.product-wrap-tr.gender-girl {
  display: none;
}
.gender-boy tr.product-wrap-tr.gender-boy {
  display: table-row;
}

.gender-girl tr.product-wrap-tr.gender-girl {
  display: table-row;
}
.gender-girl tr.product-wrap-tr.gender-boy {
  display: none;
}

.supplies-wrap.supplies a.btn {
  display: block;
  margin: 20px auto;
  width: fit-content;
  background-color: green;
  border-color: green;
  color: white;
  border-radius: 10px;
  padding: 7px 25px 7px 50px;
  font-size: 15px;
  position: relative;
  margin-bottom: 50px;
}
.supplies-wrap.supplies a.btn:before {
  content: "";
  font-size: 24px;
  width: 25px;
  height: 22px;
  background-image: url(https://329182.myshoptet.com/user/documents/upload/assets/icons/Icon%20awesome-shopping-cart.svg);
  background-size: cover;
  position: absolute;
  left: 12px;
  filter: brightness(0) saturate(100%) invert(96%) sepia(4%) saturate(53%) hue-rotate(323deg) brightness(116%) contrast(100%);
}

.accessories-section {
  margin: 0 auto;
  padding: 50px 0px 80px;
  border-bottom: 2px solid var(--color-primary);
  border-top: 2px solid var(--color-primary);
}

.accessories-title {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
}

.accessories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  flex-direction: row;
}

.accessory-item {
  min-width: 310px;
  height: 60px;
  text-align: left;
  padding: 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease;
  position: relative;
}
.accessory-item::after {
  content: "\e90e";
  font-size: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  transition: color 0.3s ease-out;
  width: 25px;
  speak: none;
  display: inline-block;
  font-family: shoptet;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 0;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  color: black;
  transform: rotate(270deg);
  position: absolute;
  right: -7px;
}

a.accessory-item {
  overflow: hidden;
}

.accessory-item img {
  width: unset;
  max-height: 62px;
  height: auto;
  margin-bottom: 8px;
  position: absolute;
  right: 40px;
  bottom: -20px;
}

/* Add subtle hover effect */
.accessory-item:hover {
  transform: translateY(-5px);
}

/* Text styling */
.accessory-item span {
  font-weight: bold;
  color: #000;
  font-size: 19px;
}

/* Specific background colors */
.accessory-aktovky {
  background-color: #edfffb;
}

.accessory-lahve {
  background-color: #fff5fc;
}

.accessory-boxy {
  background-color: #eff6ff;
}

.accessory-kufriky {
  background-color: #fff4e8;
}

.accessory-desky {
  background-color: #f2f2f2;
}

.accessory-sacky {
  background-color: #ffeded;
}

.accessory-penaly {
  background-color: #e5fbff;
}

pre.note-content {
  text-align: left;
}

label.btn.mail svg {
  height: 16px;
  top: 4px;
  left: 0px;
  position: absolute;
}

label.btn.tel svg {
  height: 19px;
  top: 3px;
  left: 3px;
  position: absolute;
}

.type-category form.contact-form button {
  color: var(--color-primary);
  padding: 15px 50px 15px 25px;
  font-weight: 600;
  border-radius: 10px;
  position: relative;
  float: right;
  border-color: rgba(0, 0, 0, 0);
  background-color: #fff;
}
.type-category form.contact-form button svg {
  position: absolute;
  width: 25px;
  top: 11px;
  right: 16px;
}

.filter-wrap {
  margin-bottom: 50px;
}
.filter-wrap .filter {
  display: flex;
  justify-content: center;
}
.filter-wrap form#formSearchForm {
  width: 40%;
}
.filter-wrap .or {
  padding: 17px;
  font-size: 20px;
  color: black;
}
.filter-wrap select.type-select,
.filter-wrap select.region-select,
.filter-wrap select.country-select {
  min-width: 190px;
  margin-right: 20px;
}
.filter-wrap .compact-form .form-control,
.filter-wrap select {
  height: 50px;
}
.filter-wrap button.btn.btn-default {
  height: 41px;
}
.filter-wrap input.query-input.form-control.search-input.js-search-input-add {
  z-index: 6;
  position: relative;
}
.filter-wrap button.btn.btn-default {
  height: 41px;
  z-index: 6;
}

.compact-form .form-control,
select {
  border-color: var(--color-primary);
  border-radius: 10px;
  padding: 10px;
  height: 60px;
  font-size: 18px;
}

button.btn.btn-default {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  border-radius: 7px;
  height: 50px;
  right: 5px;
  top: 5px;
  padding-left: 20px;
  padding-right: 20px;
  text-transform: inherit;
  font-size: 18px;
  color: #fff;
}
button.btn.btn-default:before {
  content: "\e920";
  speak: none;
  display: inline-block;
  font-family: shoptet;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 0;
  text-decoration: none;
  text-transform: none;
  margin-right: 15px;
}

.filter__items {
  margin-right: 20px;
}

select.category-select {
  min-width: 230px;
}

@media (max-width: 768px) {
  .accessories-title {
    font-size: 33px;
    line-height: 1.3;
  }
  .supplies-wrap.supplies .accessory-item img {
    max-width: 80px !important;
    width: unset !important;
  }
  .filter-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-direction: column-reverse;
  }
  .order-select select {
    height: 35px;
  }
  .order-select {
    text-align: right;
    margin-bottom: 10px;
  }
  .order-select .select2-selection,
  .order-select select,
  .order-select select.form-control {
    max-width: 190px;
  }
  .filter__items {
    margin-right: 0px;
  }
  select.category-select {
    min-width: 100% !important;
    margin-bottom: 20px;
  }
  .filter-wrap form#formSearchForm {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .ordering-process main#content .row {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  span.sublabel.pickup-point-choose,
  span.sublabel.new-gen-choose {
    border: 1px solid !important;
    padding: 7px;
    width: fit-content;
  }
}
.radio-wrapper span.sublabel {
  border: 1px solid !important;
  width: fit-content;
  padding: 5px;
}

.type-page h1 {
  display: none;
}

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