@font-face {
    font-family: 'DMSans';
    src: url('../fonts/DMSans-Regular.svg#DMSans-Regular') format('svg'),
    url('../fonts/DMSans-Regular.ttf') format('truetype'),
    url('../fonts/DMSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DMSansBold';
    src: url('../font/DMSans-Bold.svg#DMSans-Bold') format('svg'),
    url('../fonts/DMSans-Bold.ttf') format('truetype'),
    url('../fonts/DMSans-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --container-width: 1470px;
    --blue: #064290;
    --grey: #909090;
    --green: #3B9B24;
    --red: #D11919;
    --font: 'DMSans';
    --font-huge: 32px;
    --font-big: 24px;
    --font-medium: 18px;
}

body {
    width: 100%;
    margin: 0;
    padding: 147px 0 0;
    background-color: #fcfcfc;
    color: #000;
    font-family: 'DMSans', Verdana, Tahoma, Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    overflow-x: hidden;
}

.container-full {
    clear: both;
    position: relative;
    width: 100%;
}

.container {
    clear: both;
    position: relative;
    width: var(--container-width);
    margin: 0 auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 3px 6px #00000029;
    z-index: 1111;
}
header.fixed {
}

.header-top {
    background-color: var(--blue);
    color: #fff;
}

.header-top > .container {
    display: grid;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: auto auto;
}

.header-top a {
    text-decoration: none;
}
.header-top a:hover {
    text-decoration: none;
}
.header-top a + a {
    margin-left: 10px;
}
.header-top p:first-child a + a {
    margin-left: 25px;
}

.header-top img {
    height: 18px;
}
.header-top p:first-child img {
    position: relative;
    top: 2px;
    height: 14px;
    margin-right: 5px;
}

header > .container {
    display: grid;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: auto auto auto auto;
}

.header-cart {
    position: relative;
}
.header-cart a, .header-cart a:hover {
    text-decoration: none;
}
.pocet_in_cart {
    position: absolute;
    top: -10px;
    left: 12px;
    display: block;
    min-width: 15px;
    padding: 0 2px;
    border: 1px solid var(--blue);
    background-color: #fff;
    font-size: 13px;
    text-align: center;
    z-index: 2;
}


.logo {
    position: relative;
    font-size: 0;
    z-index: 13;
}
.logo img {
    height: 65px;
}

header nav {
}

header nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

header nav ul li {
    position: relative;
    margin: 0 10px;
    font-family: "DMSansBold";
    font-size: 18px;
}

header nav ul li a {
    text-decoration: none;
}

header nav ul li.active a {
    text-decoration: none;
}

header nav ul ul {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

#search_form {
}
.search-box {
    position: relative;
    display: flex;
    align-items: center;
}
#search-query {
    width: 350px;
    height: 34px;
    padding: 0 15px;
    border: 0;
    background-color: #f3f3f3;
}
#search-btn {
    width: 34px;
    height: 34px;
    border: 0;
    background-color: var(--red);
    color: #fff;
    transition: all 350ms linear;
    cursor: pointer;
}
#search-btn:hover {
}
#search-btn img {
    height: 16px;
}

.menu-responsive {
    display: none;
    position: fixed;
    top: 32px;
    right: 3vw;
    width: 26px;
    height: 20px;
    font-size: 0;
    z-index: 49;
}
.menu-responsive span {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 26px;
    height: 2px;
    background-color: #000;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}
.menu-responsive span:nth-child(1) {
    top: 0;
}
.menu-responsive span:nth-child(2), .menu-responsive span:nth-child(3) {
    top: 8px;
}
.menu-responsive span:nth-child(4) {
    top: 16px;
}
.menu-responsive.active span:nth-child(1) {
    top: 8px;
    left: 50%;
    width: 0;
}
.menu-responsive.active span:nth-child(2) {
    transform: rotate(45deg);
}
.menu-responsive.active span:nth-child(3) {
    transform: rotate(-45deg);
}
.menu-responsive.active span:nth-child(4) {
    top: 8px;
    left: 50%;
    width: 0;
}

.site-home {
    position: relative;
    margin-bottom: 35px;
}

.site-slider {
}
.site-slider .slick-prev, .site-slider .slick-next {
    visibility: hidden;
}
.site-slider * {
    margin: 0;
    font-size: 0;
}

.site-benefits {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: rgb(6,66,144,.65);
    text-align: left;
    z-index: 3;
}
.benefits {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 25px;
    color: #fff;
}
.benefits img {
    height: 55px;
}
.benefits strong {
    font-size: 20px;
}

.accessories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 25px;
    margin-bottom: 35px;
    padding-top: 25px;
    padding-bottom: 35px;
}
.accessories * {
    margin: 0;
}
.accessories a {
    display: block;
    background-color: #fff;
    box-shadow: 0 1px 3px #0000000D;
    text-decoration: none;
}
.accessories a, .accessories a:hover {
    text-decoration: none;
}
.accessories p {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}
.accessories img {
    max-width: 85%;
    max-height: 85%;
}
.accessories h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background-color: var(--blue);
    color: #fff;
}

.about {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 45px 0;
    background-color: #fff;
    box-shadow: 0 1px 3px #0000000D;
}
.about > p {
    position: relative;
    height: 100%;
    margin: 0;
}
.about > p img {
    position: absolute;
    top: 0;
    right: 0;
    max-width: none;
    height: 100%;
    z-index: 2;
}
.about > div {
    padding: 20px 40px;
    border-left: 1px solid #f1f1f1;
}
.about-title {
    color: var(--blue);
    font-size: 18px;
    font-weight: bold;
}
.about-title span {
    position: relative;
    top: -1px;
    display: inline-block;
    width: 33px;
    height: 33px;
    margin-right: 3px;
    padding: 6px 0 0;
    background: url("../img/shape.svg") no-repeat 0 0;
    text-align: center;
}

.site-logos {
    padding: 35px 0;
    background-color: #fff;
    box-shadow: 0 1px 3px #0000000D;
}
.logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0 0;
}
.logos img {
    max-width: 250px;
    max-height: 44px;
}

.subcategories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 15px 0 35px;
}
.subcategories a {
    display: flex;
    align-items: center;
    height: 90px;
    padding: 0 15px;
    border: 1px solid #f1f1f1;
    background-color: #fff;
    box-shadow: 0 1px 3px #0000000D;
    text-decoration: none;
}
.subcategories a:hover {
    border: 1px solid #d1d1d1;
    text-decoration: none;
}
.subcategories p {
    flex: 0 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.subcategories img {
    max-height: 85%;
}
.subcategories h2 {
    flex: 1;
    padding-left: 20px;
    font-size: 15px;
}

.products-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1px 20px;
    background-color: #fff;
    box-shadow: 0 1px 3px #0000000D;
}
.products-filter a {
    margin-right: 15px;
    text-decoration: none;
}
.products-filter a:hover, .products-filter a.active {
    color: var(--blue);
}
.products-filter label {
    margin-right: 10px;
    cursor: pointer;
}
.products-filter input {
    margin-right: 5px;
}

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 35px 0;
    text-align: center;
}
.products > div {
    position: relative;
    padding: 10px 0 60px;
    background-color: #fff;
    box-shadow: 0 1px 3px #0000000D;
}
.products a {
    text-decoration: none;
}
.products h2 {
    height: 33px;
    font-size: 15px;
    overflow: hidden;
}
.products-img {
    height: 200px;
    padding: 10px 0;
    text-align: center;
}
.products-img img {
    max-height: 100%;
    margin: auto;
}
.products-price {
    margin: -5px 0;
    color: var(--blue);
    font-family: 'DMSansBold';
    font-size: 20px;
}
.products-button * {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 55px;
    padding: 18px 0 0;
    border: 1px solid var(--blue);
    background-color: var(--blue);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.products-button *:hover {
    box-shadow: 0 0 10px #00000075;
    text-decoration: none;
}

.products-more {
    text-align: center;
}

.item-code {
    font-size: 11px;
    font-weight: bold;
}

.site-content {
    padding-top: 10px;
    padding-bottom: 45px;
    text-align: left;
}

.breadcrumbs {
    padding: 0 0 5px;
}
.breadcrumbs a, .breadcrumbs span {
    text-decoration: none;
    opacity: .4;
}

.detail {
    display: flex;
    padding-top: 10px;
    padding-bottom: 25px;
    background-color: #fff;
    box-shadow: 0 1px 3px #0000000D;
}

.detail-left {
    flex: 0 0 46%;
    padding: 0 40px 0 0;
}

.detail-img {
    height: 350px;
    padding: 25px;
    text-align: center;
}
.detail-img img {
    max-height: 90%;
}

.detail-right {
    flex: 1;
}

.detail h1 {
    padding-bottom: 45px;
    color: var(--blue);
}

.detail-code {
    margin-bottom: -5px;
}

.detail-code span {
    display: inline-block;
    width: 120px;
    font-weight: bold;
}

.detail-price {
    padding: 5px 20px;
    background-color: #fcfcfc;
}
.detail-price span {
    float: right;
}
.detail-price span.blue {
    font-size: 18px;
    font-weight: bold;
}

.detail-buy {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: right;
}
.detail-buy-qty {
    display: flex;
}
.detail-buy-qty a, .detail-buy-qty input {
    display: block;
    width: 50px;
    height: 50px;
    border: 1px solid #f5f5f5;
    background-color: #fff;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
}
.detail-buy-qty a {
    position: relative;
    left: -1px;
    font-size: 22px;
}
.detail-buy-qty a:hover {
    text-decoration: none;
}
.detail-buy-qty input {
    background-color: #fcfcfc;
}
.detail-buy-qty input::-webkit-outer-spin-button,
.detail-buy-qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.detail-buy-qty input[type=number] {
    -moz-appearance: textfield;
}
.detail-buy-add a {
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0 25px;
    border: 1px solid var(--blue);
    background-color: var(--blue);
    color: #fff;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}
.detail-buy a:hover {
    box-shadow: 0 0 10px #00000075;
    text-decoration: none;
}
.detail-buy-add img {
    height: 18px;
    margin-right: 15px;
}

.detail-info {
    clear: both;
    display: flex;
    padding: 20px 0 25px;
}
.detail-info-left {
    flex: 0 0 45%;
    padding: 10px 35px 15px;
}
.detail-info-right {
    flex: 1;
    padding: 10px 50px 15px;
}
.detail-info table {
    width: 100%;
    border-collapse: collapse;
    empty-cells: show;
    margin: 15px 0;
}
.detail-info table td {
    padding: 5px 20px 5px 0;
    border-top: 1px solid #d0d0d0;
}
.detail-info table tr:first-child td {
    border-top: 0;
}
.detail-info table td:first-child {
    font-weight: bold;
}

.leaflet-bottom.leaflet-right {
    opacity: 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    row-gap: 0;
    padding: 10px 0 15px;
}

.pagination {
    float: right;
    margin: -38px 0 25px;
    padding: 0;
    list-style-type: none;
}
.pagination li {
    display: inline-block;
}
.pagination li a {
    display: block;
    padding: 6px 10px 4px;
    border: 1px solid #fff;
    background-color: #fff;
    text-decoration: none;
}
.pagination li.active a, .pagination li a:hover {
    border: 1px solid var(--red);
}

/*menu autocomplete */

.twitter-typeahead {
}

.tt-menu {
    margin-top: -1px;
    padding: 10px 25px 25px;
    background-color: #fff;
    top: 110% !important;
    left: -21vw !important;
    right: -26vw !important;
    text-align: left;
}

.title_search_produkt {
    margin-bottom: 15px !important;
    padding-bottom: 12px;
    border-bottom: var(--blue);
    color: var(--blue);
    text-transform: uppercase;
}

.title_search_produkt span {
    text-transform: none;
}

.tt-menu .tt-suggestion {
    display: block;
    padding: 5px 0;
    color: var(--blue);
    text-decoration: none;
}
.tt-menu .tt-suggestion:hover {
    background-color: #e5e5e5;
}

.tt-menu .result_container {
    display: flex;
    align-items: center;
}

.tt-menu .result_container img {
    width: 30px;
    max-height: 36px;
    margin-right: 10px;
}

.tt-menu .results_data {
    float: none;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    font-size: 13px;
}

.tt-menu .results_data .product_name_search {
    display: inline-block;
    width: calc(100% - 200px);
    padding-right: 20px;
}

.tt-menu .search_dostupnost {
    width: 100px;
    padding-right: 20px;
}

.tt-menu .search_dostupnost p {
    display: inline-block;
    margin: 0;
    color: #749b77;
}

.tt-menu .search_cena {
    width: 80px;
}

.tt-menu .search_cena p {
    /*    display: inline-block;*/
    margin: 0;
    color: #b92a37;
}

.title_search_produkt_celkem {
    display: none;
    padding: 0 25px 0 0;
    font-style: italic;
    text-transform: uppercase;
}

.title_search_produkt_celkem span {
    color: var(--red);
}

.show_all_result_menu {
    display: inline-block;
    padding: 10px 15px 7px;
    border: 1px solid var(--blue);
    border-radius: 10px;
    color: var(--blue);
    text-transform: uppercase;
    text-decoration: none;
}
.tt-dataset-1 .show_all_result_menu {
    display: none;
}

.show_all_result_menu:hover {
    text-decoration: none;
}

.naseptavac-img {
    padding: 20px 0 0;
    text-align: center;
}

.naseptavac-img img {
    max-width: 320px;
}

.tt-menu .tt-suggestion.cat_naseptavac {
    display: inline-block;
    margin: 0 10px 10px 0;
    padding: 5px 10px;
    border: 1px solid #999;
    border-radius: 15px;
}

.tt-dataset-0 {
    float: left;
    width: 49%;
}

.tt-dataset-1, .tt-dataset-2 {
    float: right;
    width: 49%;
}

/* konec menu autocomplete*/

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Dots */
.slick-dots {
    position: absolute;
    bottom: 35px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    z-index: 2;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 6px;
}
.slick-dots li button {
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    border: 0;
    border-radius: 20px;
    background: var(--blue);
    font-size: 0;
    transition: all 350ms linear;
    cursor: pointer;
}
.slick-dots li.slick-active button,
.slick-dots li button:hover,
.slick-dots li button:focus {
    background: var(--blue);
}

/* Arrows */
.slick-prev, .slick-next {
    position: absolute;
    top: 45%;
    border: 0;
    background-color: transparent;
    font-size: 0;
    transition: all 350ms linear;
    cursor: pointer;
    z-index: 3;
}
.slick-prev:hover, .slick-next:hover {
    opacity: .7;
}
.slick-prev {
    left: -60px;
}
.slick-next {
    right: -40px;
}
.slick-prev:after, .slick-next:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 31px;
    height: 31px;
    background: url("../img/arrow-l.svg") no-repeat 0 0;
    background-size: contain;
    content: "";
    z-index: 2;
}
.slick-next:after {
    background: url("../img/arrow-r.svg") no-repeat 0 0;
    background-size: contain;
}

.title {
    color: var(--blue);
    font-family: 'DMSansBold';
    font-size: var(--font-big);
    font-weight: normal;
    text-align: center;
}

.link *, .detail-info-title,
.cart-prev > *, .cart-next > * {
    display: inline-block;
    padding: 8px 20px 10px;
    border: 1px solid var(--blue);
    background-color: var(--blue);
    color: #fff;
    font-family: var(--font);
    font-size: 15px;
    transition: all 350ms linear;
    line-height: 1.2;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}
.link *:hover {
    border: 1px solid #000;
    text-decoration: none;
}
.link a + a {
    float: right;
}

.halves {
    display: flex;
    justify-content: space-between;
}

.halves > * {
    width: 48%;
}

.thirds {
    display: flex;
    justify-content: space-between;
}

.thirds > * {
    width: 30%;
}

a[href^="tel:"] {
    text-decoration: none;
}

footer {
    position: relative;
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: var(--blue);
    color: #fff;
    text-align: left;
}

footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 100px;
}

.footer-col {
    position: relative;
    padding: 0 45px;
}
.footer-col:after, .footer-col:first-child:before {
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    background-color: #fff;
    content: "";
    z-index: 2;
}
.footer-col:first-child:before {
    right: auto;
    left: 0;
}

footer ul {
    margin: 10px 0;
    list-style-type: none;
}
footer li {
    padding: 5px 0;
}
footer li a {
    text-decoration: none;
}

#map {
    width: 100%;
    height: 500px;
    filter: grayscale(1);
}

.site-bottom {
    margin: 0;
    padding: 20px 0 15px;
}
.site-bottom img {
    max-height: 14px;
}

.container:after,
.container-full:after {
    clear: both;
    display: block;
    content: '';
}

.clear, .cleaner {
    clear: both;
    display: block;
    height: 1px;
    border: 0;
    font-size: 0;
}

.black {
    color: #000;
}

.white {
    color: #fff;
}

.blue {
    color: var(--blue);
}

.grey {
    color: var(--grey);
}

.green {
    color: var(--green);
}

.red {
    color: var(--red);
}

.uppercase {
    text-transform: uppercase;
}

.hidden {
    display: none;
}

.invisible {
    visibility: hidden;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

h1, .h1 {
    clear: both;
    margin-top: .7em;
    margin-bottom: .5em;
    font-family: 'DMSansBold';
    font-size: var(--font-huge);
    font-weight: normal;
    line-height: 1.1em;
}

h2, .h2 {
    clear: both;
    margin-top: .8em;
    margin-bottom: .6em;
    font-family: 'DMSansBold';
    font-size: var(--font-big);
    font-weight: normal;
    line-height: 1.1em;
}

h3, .h3 {
    margin-top: 1em;
    margin-bottom: .8em;
    font-family: 'DMSansBold';
    font-size: var(--font-medium);
    font-weight: normal;
    line-height: 1.1em;
}

h4 {
    clear: both;
    margin: 25px 0 15px;
    font-family: 'DMSansBold';
    font-size: 16px;
    font-weight: normal;
    line-height: 1.1em;
}

.font10 {
    font-size: 10px;
}

.font11 {
    font-size: 11px;
}

.font12 {
    font-size: 12px;
}

.font14 {
    font-size: 14px;
}

.font16 {
    font-size: 16px;
}

.font18 {
    font-size: 18px;
}

.font20 {
    font-size: 20px;
}

.font22 {
    font-size: 22px;
}

.font24 {
    font-size: 24px;
}

.font28 {
    font-size: 28px;
}

.margin-top-5 {
    margin-top: 5px;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-40 {
    margin-top: 40px;
}

.margin-top-50 {
    margin-top: 50px;
}

.margin-top-60 {
    margin-top: 60px;
}

.margin-bottom-5 {
    margin-bottom: 5px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

.margin-bottom-50 {
    margin-bottom: 50px;
}

.margin-bottom-60 {
    margin-bottom: 60px;
}

.padding-top-5 {
    padding-top: 5px;
}

.padding-top-10 {
    padding-top: 10px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-top-30 {
    padding-top: 30px;
}

.padding-top-40 {
    padding-top: 40px;
}

.padding-top-50 {
    padding-top: 50px;
}

.padding-top-60 {
    padding-top: 60px;
}

.padding-bottom-5 {
    padding-bottom: 5px;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.padding-bottom-30 {
    padding-bottom: 30px;
}

.padding-bottom-40 {
    padding-bottom: 40px;
}

.padding-bottom-50 {
    padding-bottom: 50px;
}

.padding-bottom-60 {
    padding-bottom: 60px;
}

.no-margin {
    margin: 0;
    padding: 0;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-size: 14px;
    opacity: .7;
}
::-moz-placeholder { /* Firefox 19+ */
    font-size: 14px;
    opacity: .7;
}
:-ms-input-placeholder { /* IE 10+ */
    font-size: 14px;
    opacity: .7;
}
:-moz-placeholder { /* Firefox 18- */
    font-size: 14px;
    opacity: .7;
}

input, textarea, select, option, button {
    color: #000;
    font-family: 'DMSansBold', Tahoma, Arial, Helvetica, sans-serif;
    font-size: 14px;
}

textarea {
    max-width: 100%;
    resize: none;
}

ul {
    margin: 15px 0;
    padding: 0;
    list-style-position: inside;
}

p {
    margin: 15px 0;
    padding: 0;
}

strong {
    font-family: 'DMSansBold';
    font-weight: normal;
}

a {
    color: inherit;
    transition: all 250ms linear;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    border: 0;
}

*:focus {
    outline: none;
}

* {
    box-sizing: border-box;
}


.notie-container {
    z-index: 9999!important;
}

/* košík start */

.cart-progress {
    margin: 10px 0 35px;
    padding: 0;
    list-style-type: none;
    text-align: center;
}

.cart-progress li {
    position: relative;
    display: inline-block;
    min-width: 150px;
    font-size: 14px;
    text-transform: uppercase;
}
.cart-progress li:before {
    position: absolute;
    top: 9px;
    width: 100%;
    height: 2px;
    background-color: var(--blue);
    content: "";
    z-index: -1;
}
.cart-progress li:last-child:before {
    display: none;
}

.cart-progress li a {
    display: block;
    text-decoration: none;
}

.cart-progress li a span {
    display: block;
    text-align: center;
}

.cart-progress li a span:first-child {
    display: inline-block;
    width: 30px;
    margin-bottom: 8px;
    padding: 2px 0;
    background-color: var(--grey);
}
.cart-progress li.active a span:first-child {
    background-color: var(--blue);
}

.cart-items-box {
    padding: 10px 40px 20px;
    border: 1px solid var(--grey);
}

.cart-row {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.cart-img {
    flex: 0 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background-color: #fff;
    text-align: center;
}
.cart-img img {
}

.cart-item {
    position: relative;
    width: calc(100% - 470px);
    padding: 0 30px;
    color: #898989;
}
.cart-item h3 {
    margin: 5px 0;
    color: var(--blue);
}
.cart-item p {
    margin: 5px 0;
}
.cart-item a {
    text-decoration: none;
}

.cart-amount {
    flex: 0 0 180px;
    padding-right: 50px;
}

.cart-amount p {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 130px;
    height: 36px;
    border: 1px solid var(--grey);
    background-color: #fff;
}
.cart-amount p input {
    width: 50px;
    border: 0;
    text-align: center;
}
.cart-amount p button {
    min-width: 30px;
    border: 0;
    background-color: transparent;
    font-size: 26px;
    cursor: pointer;
}
.cart-amount-minus {
    color: var(--red);
}
.cart-amount-plus {
    color: var(--green);
}

.cart-ceny_b2b_novat {
    flex: 0 0 160px;
    font-size: var(--font-medium);
    font-weight: bold;
}
.cart-ceny_b2b_novat span {
    display: block;
    font-size: 13px;
    font-weight: normal;
}

.cart-ceny_b2b_withvat {
    flex: 0 0 160px;
    font-size: var(--font-medium);
    font-weight: bold;
}
.cart-ceny_b2b_withvat span {
    display: block;
    font-size: 13px;
    font-weight: normal;
}

.cart-remove {
    flex: 0 0 23px;
}

.cart_total {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 30px 0 0;
}

.cart_total > * {
    width: 49%;
}

.cart-dis {
    padding: 15px 35px 20px;
    border: 1px solid var(--grey);
    font-weight: bold;
}

.cart_total .cart-prev {
    position: absolute;
    bottom: 20px;
    left: 15px;
}

.cart_total_summary {
    padding: 5px 35px 20px;
    border: 1px solid var(--grey);
}

.cart-row-sum {
}

.cart-row-sum .cart-price-without-vat {
    display: flex;
    justify-content: space-between;
}

.cart-row-sum .cart-price-with-vat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 24px;
}
.cart-row-sum .cart-price-with-vat span {
    font-size: 16px;
}

.cart-white-box {
    padding: 15px 50px 20px;
    border: 1px solid var(--blue);
}

.flex .login_form p {
    display: inline-block;
}

.flex .login_form label input {
    height: 31px;
    margin-right: 10px;
    padding: 0 15px;
    border: 1px solid var(--blue);
}

#customer_details {
}

input.form-control.error{
    border: 1px solid red;
}

.step2-wrap label,
.label-reset label,
.special_form_bg label {
    font-size: 0;
}

.step2-wrap label.error,
.label-reset label.error,
.special_form_bg label.error {
    font-size: 15px;
}


.step2-wrap .chkspolecnost label, .step2-wrap .btn-add-shipping-address label{
    font-size: 16px;
}

.specialtelefon {
    position: relative;
}

.specialtelefon #prefix {
    position: absolute;
    top: 2px;
    left: 15px;
    width: 40px;
    height: 32px;
    padding: 0;
    border: 0;
    z-index: 2;
}

.specialtelefon #phone {
    padding-left: 60px;
}

.site-login input[type="text"], 
.site-login input[type="email"], 
.site-login input[type="password"], 
.site-login input[type="tel"], 
.site-login input[type="submit"], 
.site-login select {
    width: 100%;
    height: 36px;
    padding: 0px 10px;
    border: 1px solid var(--blue);
    background-color: #fff;
}



.login-left, .login-right {
    float: left;
    width: 50%;
    display: flex;
    justify-content: center;
}

.login-left > div, .login-right > div {
    width: 400px;
}

.wrap-reg {
    float: left;
    width: 48%;
}
.wrap-reg:nth-child(2n+1) {
    margin-right: 4%;
}

.wrap-reg input,
.wrap-reg select,
.label-reset textarea {
    width: 100%;
    height: 36px;
    padding: 10px 15px;
    border: 1px solid var(--blue);
    background-color: #fff;
}
.wrap-reg .input-disabled {
    background-color: var(--grey);
}

.wrap-reg select {
    padding: 0 15px;
}

.error_messages {
    color: red;
    font-weight: 600;
}

.error_messages ul {
    list-style: none;
}

.label-reset textarea {
    height: 140px;
}

.main-container-register #customer_details input[type="text"],
.main-container-register #customer_details input[type="email"],
.main-container-register #customer_details input[type="password"],
.main-container-register #customer_details select,
.main-container-register #customer_details textarea {
    width: 300px;
    height: 36px;
    margin: 3px 0;
    padding: 10px 15px;
    border: 1px solid var(--blue);
    background-color: #fff;
}
.main-container-register #customer_details select {
    padding: 0 15px;
}
.main-container-register #customer_details label {
    display: inline-block;
    width: 130px;
}
.main-container-register #customer_details label#conditions {
    width: auto;
}

.chkspolecnost {
    clear: both;
    padding: 30px 0 0;
}

.label-reset {
    clear: both;
    padding: 10px 0 25px;
}

.btn-add-shipping-address {
    padding: 20px 0 10px;
}


#shipping {
    float: left;
    width: 48%;
}

.shipping-item-name {
    display: inline-block;
    width: 63%;
}

.shipping-item-price {}

#payment {
    float: right;
    width: 48%;
}

#shipping h2, #payment h2 {
    padding-bottom: 5px;
}

.payment_methods {
    list-style-type: none;
}

.payment_methods li {
    padding: 10px 0;
}

.payment_methods img {
    display: none;
}

.payment_methods input[type="radio"] {
    margin-right: 5px;
}

.payment_box.payment_method_bacs {
    padding: 15px 0 0 25px;
}

.payment_methods li .vyber_doprava {
    display: block;
    font-weight: 600;
}

div.packetery-branch-list select {
    display: block;
    width: auto !important;
    height: 30px;
    margin: 10px 0;
    padding: 0 15px;
    border: 1px solid var(--yellow) !important;
    background-color: #fff !important;
}

.payment-text {
    padding-top: 10px;
}

.text-payment {
    display: inline-block;
    width: 63%;
}

.shipping-desc {
    display: none;
}
.payment-desc {
    display: none;
}

.wc-proceed-to-checkout {
    clear: both;
    display: flex;
    align-items: center;
    padding: 20px 0 0;
    justify-content: space-between;
}

.cart-next {
    text-align: right;
}

.error-mes {
    color: var(--red);
}

.text-mobile {
    display: none;
}

.souhrndatacart {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.souhrndatacart > * {
    flex: 1;
}

#table_shop {
    width: 100%;
    margin: 30px 0 45px;
    border-collapse: collapse;
    empty-cells: show;
}

#table_shop thead th {
    padding: 5px 0;
    border-bottom: 1px solid #bfb2aa;
}

#table_shop th,
#table_shop td {
    padding: 10px 0;
}

#table_shop p {
    margin: 0;
}

#table_shop a {
    text-decoration: none;
}

.order-total {
    border-top: 1px solid #bfb2aa;
    border-bottom: 1px solid #bfb2aa;
    font-weight: bold;
}

#order_review .checkout-conditions {
    text-align: right;
}

body #pplvydejnimista {
    max-width: 88vw;
    width: 100%;
}


@media (max-width: 1660px) {
    body {
        padding: 6.5vw 0 0;
    }
    :root {
        --container-width: 100%;
    }
    .container {
        padding-left: 3vw;
        padding-right: 3vw;
    }
    .slick-prev {
        left: 3vw;
    }
    .slick-next {
        right: 6vw;
    }
}

@media (max-width: 1439px) {

    .cart-items-box,
    .cart-white-box {
        padding: 10px 20px 20px;
    }
    .cart-remove {
        flex: 0 0 15px;
    }
    .cart-dis {
        padding: 15px 20px 20px;
    }
    .cart_total_summary {
        padding: 15px 20px 20px;
    }

}

@media (max-width: 1377px) {
    :root {
        --font-huge: 28px;
        --font-big: 24px;
        --font-medium: 18px;
    }
}

@media (max-width: 1086px) {
    body {
        padding: 80px 0 0;
    }
    header > .container {
        padding-right: 6vw;
    }
    .menu-responsive {
        display: block;
    }
    header nav {
        position: fixed;
        top: 83px;
        bottom: 0;
        left: 0;
        display: block;
        width: 100vw;
        padding: 0 3vw;
        background-color: #fff;
        transform: translateX(-100%);
        transition: all 350ms linear;
        text-align: left;
        z-index: 48;
    }
    header nav.active {
        transform: translateX(0);
    }
    header nav ul {
        display: block;
        padding: 5px 0;
        text-align: center;
    }
    header nav ul li {
        display: block;
        margin: 0;
        border-bottom: 1px solid #f3f3f3;
    }
    header nav ul li a {
        display: block;
        padding: 13px 0;
    }
    header nav ul ul {
        display: block;
        position: static;
        width: auto;
        margin: 0;
        padding: 10px 0 0 20px;
    }
    header nav ul li:hover ul {
        display: block;
    }
    header nav ul ul:before, header nav ul ul:after {
        display: none;
    }
    header nav ul ul li {
        padding: 10px 0;
        border: 0;
    }
    header nav ul ul li a {
    }
    header nav ul ul ul li {
        padding: 2px 0;
    }
    .logo img {
        width: 130px;
    }
    .halves {
        display: block;
    }
    .halves > * {
        width: auto;
    }
    .thirds {
        display: block;
    }
    .thirds > * {
        width: auto;
    }

    .cart-row {
        flex-wrap: wrap;
    }
    .cart-item {
        order: 1;
        width: 100%;
        padding: 0 0 10px;
    }
    .cart-img {
        order: 2;
        flex: 0 0 70px;
        height: 70px;
        margin-right: 6%;
    }
    .cart-amount {
        order: 3;
        flex: 0 0 calc(31% - 29px);
        padding-right: 5%;
    }
    .cart-ceny_b2b_novat {
        order: 4;
        flex: 0 0 calc(31% - 29px);
    }
    .cart-ceny_b2b_withvat {
        order: 5;
        flex: 0 0 calc(31% - 29px);
    }
    .cart-remove {
        order: 6;
    }

}

@media (max-width: 913px) {
}

@media (max-width: 767px) {
    :root {
        --font-huge: 22px;
        --font-big: 20px;
        --font-medium: 18px;
    }
    .slick-dots {
        bottom: 15px;
    }
    .slick-prev, .slick-next {
        top: 36%;
    }
}

@media (max-width: 555px) {
}
