@font-face {
    font-family: 'ChakraPetchLight';
    src: url('fonts/ChakraPetch-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ChakraPetchSemiBold';
    src: url('fonts/ChakraPetch-SemiBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ChakraPetchRegular';
    src: url('fonts/ChakraPetch-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ChakraPetchBold';
    src: url('fonts/ChakraPetch-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



:root {
    
    --fontFaimly_default: 'ChakraPetchRegular', sans-serif;
    --fontFaimly_text: 'ChakraPetchRegular', sans-serif;
    --fontFaimly_header: 'ChakraPetchLight', sans-serif;
    --fontFaimly_button: 'ChakraPetchBold', sans-serif;
    --fontFaimly_semi: 'ChakraPetchSemiBold', sans-serif;
    
    --merchwork-color: #451a6d;
    --merchwork-color-font: #171618;
    --merchwork-color2: rgb(25,40,67);
    --merchwork-color2-font: #ffca0d;
    --merchwork-body-background: white;
    --merchwork-body-text: black;
    --merchwork-border-color: #e5e5e5;
    --merchwork-button-color: rgb(25,40,67);
    --merchwork-button-text: white;
    --merchwork-button-hover-text: white;
    --merchwork-button-hover-color: black;
    --merchwork-link-text: #0045c7;
}

:root.night {
    --merchwork-color: #1f0e25;
    --merchwork-color2: #091229;
    --merchwork-body-background: #161b35;
    --merchwork-body-text: #d7d7d7;
    --merchwork-border-color: #393c4d;
    --merchwork-button-color: #3036a9;
    --merchwork-button-text: white;
    --merchwork-button-hover-text: black;
    --merchwork-button-hover-color: white;
    --merchwork-link-text: #5582d7;
}

* {
    box-sizing: border-box;
}

html {
    background: linear-gradient(
        253deg,
        var(--merchwork-color2),
        var(--merchwork-color)
        );

    margin: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: var(--fontFaimly_default);
}

body {
    height: 100%;
    
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    padding: 0;
    margin: 0;
    width: 100%;
    overflow-x: hidden;
    background: transparent;
    color: var(--merchwork-body-text)
}

hr {
    border: transparent;
    border-top: 1px solid var(--merchwork-border-color);
}

.night input,
.night select{
    color: white;
    background: #2b335d;
}

legend {
    color: #444;

}
.night legend {
    color: white;

}
label {
    color: #444;

}
.night label {
    color: white;

}

button {
    font-family: "Inter", sans-serif;
}

/* For tablets & smart phones */
@media (max-width: 767px) {

    body {
        min-width: unset;
        width: auto;
    }
}

a {
    text-decoration: underline;
    color: var(--merchwork-link-text);
}

a:link{
    color: var(--merchwork-link-text);
}
a:active{
    color: var(--merchwork-link-text);
}
a:visited{
    color: var(--merchwork-link-text);

}
a:hover{
    color: var(--merchwork-link-text);
    text-decoration: none;
}

.nowrap {
    white-space: nowrap;
}


/* === MAIN BAR === */

.categories {
   border-bottom: 1px solid white;
    color: #d7d7d7;
}

.categories a {

    color: #d7d7d7;
}


.categories > ul {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0px auto 0px auto;
    padding: 0 16px;
    width: 80%;

    height: 56px;
    align-items: center;
}

@media (max-width: 767px) {

    .categories > ul {
        width: 100%;
        margin: 0px auto;
    }
}

.categories a {
    text-decoration: none;
}


.categories li {
    position: relative;
}

/* top items */
.categories > ul > li > .caname {

    padding: 0 14px;
    line-height: 56px;
    cursor: pointer;
    white-space: nowrap;

}

/* === SUBMENUS === */
.categories ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s;
    z-index: 1000;
}

/* deeper flyouts */
.categories ul ul ul {
    top: 0;
    left: 100%;
}

/* open on hover with delay */
.categories li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: .1s;
}

/* submenu items */
.categories ul ul li .caname {
    display: block;
    padding: 10px 16px;
    color: #222;
    cursor: pointer;
}

.categories ul ul li .caname:hover {
    background: #f2f2f2;
}

/* === ARROWS ONLY WHEN CHILDREN EXIST === */
.categories li:has(ul) > .caname::after {
    content: "›";

    opacity: .4;
    margin-left: 8px;

}

.categories > ul > li:has(ul) > .caname::after {
    content: "▼";
    font-size: 10px;
    margin-left: 6px;

}

/* === TOUCH FRIENDLY === */
@media (hover: none), (max-width: 767px) {
    .categories ul ul {
        width: 100%;
        opacity: 1;
        visibility: visible;
        position: relative;
        padding: 5px;
        transform: none;
    }

    .categories > ul > li {


    }

    .categories > ul {
        flex-direction: column;
        height: auto;
        align-items: stretch;
        gap: 0px;
        padding: 0px;
    }

    .categories > ul > li > .caname {
        line-height: 44px;

    }
}





/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}




.mi-slider {
    position: relative;
    height: 120px;
}

.mi-slider ul {
    list-style-type: none;
    position: absolute;
    width: 100%;
    min-width: 989px;
    left: 0;
    bottom: 10px;
    overflow: hidden;
    text-align: center;
    pointer-events: none;
    margin: 0px;
    padding: 0px;
}

.no-js .mi-slider ul {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 0;
    overflow: visible;
}

.mi-slider ul.mi-current {
    pointer-events: auto;
}

.mi-slider ul li {
    display: inline-block;
    margin: 0px;
    padding: 0px;
    width: 20%;
    max-width: 195px;
    -webkit-transform: translateX(600%);
    transform: translateX(600%);
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

.no-js .mi-slider ul li {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.mi-slider ul li a,
.mi-slider ul li img {
    display: block;
    margin: 0 auto;
}

.mi-slider ul li a {
    outline: none;
    cursor: pointer;
}

.mi-slider ul li img {
    max-width: 100%;
    border: none;
}

.mi-slider ul li h4 {
    display: inline-block;
    font-size: 12px;
    padding: 0px 10px 0;
    margin: 0px;
    color: gray;
}

.mi-slider ul li h4 a {
    color: gray;
}

.mi-slider ul li:hover {
    opacity: 0.7;
}

.mi-slider nav {
    position: relative;
    top: 0px;
    text-align: center;
    width: 100%;
    min-width: 989px;
    margin: 0 auto;
    border-top: 1px solid rgb(243,243,243);
}

.no-js nav {
    display: none;
}

.mi-slider nav a {
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    padding: 0px 30px 1px 30px;
    position: relative;
    color: #888;
    outline: none;
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
    border-top: 1px solid white;
    text-decoration: none;
    font-weight: bold;
}

.mi-slider nav a:hover,
.mi-slider nav a.mi-selected {
    color: white;
    background-color: rgb(243,243,243);
    border-top: 1px solid rgb(243,243,243);
}

.mi-slider nav a.mi-selected:after,
.mi-slider nav a.mi-selected:before {
    content: '';
    position: absolute;
    top: -5px;
    border: solid transparent;
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.mi-slider nav a.mi-selected:after {



    left: 50%;
    margin-left: -20px;
}

.mi-slider nav a.mi-selected:before {
    left: 50%;
    margin-left: -27px;
}

/* Move classes and animations */

.mi-slider ul:first-child li,
.no-js .mi-slider ul li {
    -webkit-animation: scaleUp 350ms ease-in-out both;
    animation: scaleUp 350ms ease-in-out both;
}

@-webkit-keyframes scaleUp {
    0% {
        -webkit-transform: translateX(0) scale(0);
    }
    100% {
        -webkit-transform: translateX(0) scale(1);
    }
}

@keyframes scaleUp {
    0% {
        transform: translateX(0) scale(0);
    }
    100% {
        transform: translateX(0) scale(1);
    }
}

.mi-slider ul:first-child li:first-child {
    -webkit-animation-delay: 90ms;
    animation-delay: 90ms;
}

.mi-slider ul:first-child li:nth-child(2) {
    -webkit-animation-delay: 180ms;
    animation-delay: 180ms;
}

.mi-slider ul:first-child li:nth-child(3) {
    -webkit-animation-delay: 270ms;
    animation-delay: 270ms;
}

.mi-slider ul:first-child li:nth-child(4) {
    -webkit-animation-delay: 360ms;
    animation-delay: 360ms;
}

/* moveFromRight */

.mi-slider ul.mi-moveFromRight li {
    -webkit-animation: moveFromRight 350ms ease-in-out both;
    animation: moveFromRight 350ms ease-in-out both;
}

/* moveFromLeft */

.mi-slider ul.mi-moveFromLeft li {
    -webkit-animation: moveFromLeft 350ms ease-in-out both;
    animation: moveFromLeft 350ms ease-in-out both;
}

/* moveToRight */

.mi-slider ul.mi-moveToRight li {
    -webkit-animation: moveToRight 350ms ease-in-out both;
    animation: moveToRight 350ms ease-in-out both;
}

/* moveToLeft */

.mi-slider ul.mi-moveToLeft li {
    -webkit-animation: moveToLeft 350ms ease-in-out both;
    animation: moveToLeft 350ms ease-in-out both;
}

/* Animation Delays */

.mi-slider ul.mi-moveToLeft li:first-child,
.mi-slider ul.mi-moveFromRight li:first-child,
.mi-slider ul.mi-moveToRight li:nth-child(4),
.mi-slider ul.mi-moveFromLeft li:nth-child(4) {
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
}

.mi-slider ul.mi-moveToLeft li:nth-child(2),
.mi-slider ul.mi-moveFromRight li:nth-child(2),
.mi-slider ul.mi-moveToRight li:nth-child(3),
.mi-slider ul.mi-moveFromLeft li:nth-child(3) {
    -webkit-animation-delay: 90ms;
    animation-delay: 90ms;
}

.mi-slider ul.mi-moveToLeft li:nth-child(3),
.mi-slider ul.mi-moveFromRight li:nth-child(3),
.mi-slider ul.mi-moveToRight li:nth-child(2),
.mi-slider ul.mi-moveFromLeft li:nth-child(2) {
    -webkit-animation-delay: 180ms;
    animation-delay: 180ms;
}

.mi-slider ul.mi-moveToLeft li:nth-child(4),
.mi-slider ul.mi-moveFromRight li:nth-child(4),
.mi-slider ul.mi-moveToRight li:first-child,
.mi-slider ul.mi-moveFromLeft li:first-child  {
    -webkit-animation-delay: 270ms;
    animation-delay: 270ms;
}

/* Animations */

@-webkit-keyframes moveFromRight {
    0% {
        -webkit-transform: translateX(600%);
    }
    100% {
        -webkit-transform: translateX(0%);
    }
}

@-webkit-keyframes moveFromLeft {
    0% {
        -webkit-transform: translateX(-600%);
    }
    100% {
        -webkit-transform: translateX(0%);
    }
}

@-webkit-keyframes moveToRight {
    0% {
        -webkit-transform: translateX(0%);
    }
    100% {
        -webkit-transform: translateX(600%);
    }
}

@-webkit-keyframes moveToLeft {
    0% {
        -webkit-transform: translateX(0%);
    }
    100% {
        -webkit-transform: translateX(-600%);
    }
}

@keyframes moveFromRight {
    0% {
        transform: translateX(600%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes moveFromLeft {
    0% {
        transform: translateX(-600%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes moveToRight {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(600%);
    }
}

@keyframes moveToLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-600%);
    }
}

.mi-slider {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {

    overflow-x: hidden;
}


.text {
    background-color: rgb(243,244,245);
}

.mcontainer {
    width: 100%;
    position: relative;
}

.mcontainer > header {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    padding: 30px;
}

.main {

}

.mcontainer > header h1 {
    font-size: 34px;
    line-height: 38px;
    margin: 0;
    font-weight: 700;
    color: #333;
    float: left;
}

.mcontainer > header h1 span {
    display: block;
    font-size: 20px;
    line-height: 26px;
    font-weight: 300;
}

/* Header Style */
.codrops-top {
    line-height: 24px;
    font-size: 11px;
    background: #fff;
    background: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    z-index: 9999;
    position: relative;
    box-shadow: 1px 0px 2px rgba(0,0,0,0.2);
}

.codrops-top a {
    padding: 0px 10px;
    letter-spacing: 1px;
    color: #333;
    display: inline-block;
}

.codrops-top a:hover {
    background: rgba(255,255,255,0.8);
    color: #000;
}

.codrops-top span.right {
    float: right;
}

.codrops-top span.right a {
    float: left;
    display: block;
}

/* Demo Buttons Style */
.codrops-demos {
    float: right;
    padding-top: 10px;
}

.codrops-demos a {
    display: inline-block;
    margin: 10px;
    color: #666;
    font-weight: 700;
    line-height: 30px;
    border-bottom: 4px solid transparent;
}

.codrops-demos a:hover {
    color: #000;
    border-color: #000;
}

.codrops-demos a.current-demo,
.codrops-demos a.current-demo:hover {
    color: #aaa;
    border-color: #aaa;
}




a img {
    border: 0px;
}

.logobox {
    position: relative;
    height: 34px;
    z-index: 99;
    background: rgb(0,152,212) ;
    min-width: 989px;

}

.logobox .container .logo {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 34px;
}

.logobox .container .logo a {
    display: block;
    position: relative;
    height: 34px;
    margin: 0;
    padding: 0px 25px;
    background: url(img/mask.png) center bottom repeat;
}

.logobox .container .logo img {
    padding-top: 8px;
    width: 100px;
}

.logobox .container .logo a:hover {
    background: url(img/mask.png) center bottom repeat;
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
}


.order-id {
    background-color: #c0c0c078;
    border: 1px solid #80808087;
    border-radius: 4px;
    white-space: nowrap;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 400;
    color: #252525;
}


.container {
    position: relative;
    margin: 0px auto 0px auto;
    width: 80%;
    min-width: 989px;

}

.container.categories {
    position: relative;
    margin: 0px auto 0px auto;
    width: auto;


}

@media (max-width: 767px) {

    .container {
        min-width: unset;
        width: calc(100% - 10px);
        margin: 0px auto;
    }
    .container.header {
        min-width: unset;
        width: auto;
        margin: 0px auto;
        padding: 0px 10px;
    }
    .container.header {
        min-width: unset;
        width: auto;
        margin: 0px auto;
        padding: 0px 10px;
    }

}

.bckground-header {
    position: relative;

}

.container.header {
    position: relative;
    height: 60px;
    z-index: 99;

}

.container.list,
.container.product-detail,
.container.cms,
.container.checkout,
.container.bigcart,
.container.hpbanner,
.container.order{
    background-color: var(--merchwork-body-background);
}


.container.cms {
    padding: 1px 0px 80px;
}

.container.list {

    padding: 1px 0px 80px;
}

.container.hpbanner{
    padding: 0px 0px 20px 0px;
}


.category-description {
    display: block;
    position: relative;
    padding: 40px 0px 0px 0px;
    margin: 40px 0px 0px 0px;
    text-align: center;
    line-height: 1.4;
}

.category-description:before {
    content: '';
    display: block;
    position: absolute;
    height: 7px;
    top: 0px;
    width: 40%;
    left: 30%;
    background: linear-gradient(253deg, var(--merchwork-color2), var(--merchwork-color));
    border-radius: 5px;

}

.night .category-description:before {
    filter: brightness(2.2) saturate(2);
}

h1.hpheader {
    text-align: center;
    text-transform: uppercase;
    font-size: 31px;
    font-weight: 800;
    clear: both;
}

.container.list .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    justify-items: start;
    align-items: start;
    grid-gap: 44px;
    padding: 0px;
    margin: 0px;

}


.container.list .products .product {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 350px;
}

.container.list .products .product .neniskladem {
    padding: 0px;
    text-align: right;
    position: absolute;
    bottom: calc(100% - 339px);
    left: 0px;
    right: 0px;
    text-align: center;
}



.container.list .products .product .name {
    position: absolute;
    /* overflow: hidden; */
    display: block;
    width: 100%;
    /* height: 30px; */
    transform: translateY(50%);
    bottom: calc(100% - 264px);
    z-index: 1;
    font-size: 19px;
    line-height: 23px;
    text-align: center;
    padding: 0px 10px;
    margin: 0px;
    cursor: pointer;
}


.container.list .products .product .name a {

    text-decoration: none;
    color: var(--merchwork-body-text);
    ;
    font-weight: 500;
}

.container.list .products .product .variants {
    position: absolute;
    width: 100%;
    bottom: calc(100% - 224px);
    z-index: 1;

    display: grid;

    grid-auto-flow: column;
    grid-auto-columns: minmax(auto, auto);

    justify-content: center;
    align-items: center;
    justify-items: center;

    gap: 8px;

    padding: 0;
    margin: 0;
    list-style: none;
}

.container.list .products .product .variants .variant {
    background: white;
    padding: 0px 6px;
    font-weight: 600;
    font-size: 12px;
    border: 1px solid  var(--merchwork-button-color);
    height: 22px;
    line-height: 20px;
    border-radius: 3px;
    color: var(--merchwork-button-text);
    background: var(--merchwork-button-color);
}

.container.list .products .product:hover .name a {

}

.container.list .products .product .price {
    position: absolute;
    overflow: hidden;
    display: block;
    width: 100%;
    /* height: 30px; */
    bottom: calc(100% - 309px);
    z-index: 1;
    font-size: 17px;
    text-align: center;
    color: #4b4b4b;
    padding: 0px;
    margin: 0px;
}

.night .container.list .products .product .price {

    color: #8f8b8b;

}

.container.list .products .product .images {

    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 250px;
}



.container.list .products .product .images .mainimage {
    opacity: 0;
    transform: scale(1);

    transition: opacity 0.25s ease, transform 0.25s ease, background-image 0.25s ease;
    overflow: hidden;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    height: 230px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;


}


.container.list .products .product .images .gallery {
    z-index: 1;
    display: block;
    width: 100%;
    height: 50px;
    position: absolute;
    top: 260px;
    left: 20px;
    right: 20px;
}

.container.list .products .product .images .gallery .image {
    overflow: hidden;
    display: block;
    width: 50px;
    height: 50px;
    border: 1px solid black;
}

.container.header .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}


.container.header .logo .mainlogo {
    height: 87px;
    
   
}

.container h1 {
    font-size: 30px;
    font-weight: 500;
    text-align: center;
}

.container.list h2 {

}

.container.list p {
    padding-right: 20px;
    padding-left: 20px;

}

.container.cms h2 {
    margin: 0px;
    padding: 10px 20px;
    font-size: 19px;
    font-weight: 300;
}

.container.cms p {
    margin: 0px;
    padding: 10px 50px;

}





.container.header .header-links {
    position: absolute;
    top: 0px;
    right: 0px;
    align-items: stretch;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 10px;
    width: max-content;


}


.container.header  .header-links li {
    display: inline-block;
    text-transform: uppercase;
    padding: 0px;
    margin: 0px;
    position: relative;
    height: 35px;
}
.container.header .header-links li a {
    display: block;
    text-decoration: none;
    color: white;
    font-size: 12px;
    padding: 5px 16px;
    margin: 4px;
    font-weight: bold;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,.5);
}
.container.header  .header-links li a:hover {
    color: black;
    background: white;
    border: 1px solid black;
}


@media (max-width: 767px) {
    .container.header  .header-links {
        display: none;
    }
}


.container.header .client {
    position: absolute;
    right: 10px;
    top: 22px;
}

.container.header .client a {
    display: block;
    text-decoration: none;
    padding-left: 20px;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 0px;
    color: white;
    background: url(manager-16.png) no-repeat center left;
    text-transform: uppercase;
}

.container.header .client a:hover {
    text-decoration: underline;
}

.container.header .colors {
    position: absolute;
    right: 10px;
    top: 5px;
}

.container.header .colors a {
    display: block;
    text-decoration: none;
    padding-right: 10px;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 0px;
    color: white;
    background: url(arr-right_s.png) no-repeat center right;
    text-transform: uppercase;
}

.container.header .colors a:hover {
    text-decoration: underline;
}

.logobox .container .languages {
    position: absolute;
    right: 0px;
    top: 4px;
}

.logobox .container .languages a {
    display: block;
    text-decoration: none;
    padding-right: 10px;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 0px;
    color: white;
    background: url(arr-right_s.png) no-repeat center right;
    text-transform: uppercase;
}

.logobox .container .languages a:hover {
    text-decoration: underline;
}

.hovermenu {
    background: rgb(0,142,202) url(img/mask.png) center bottom repeat;
}

.menu_header {
    padding: 25px 125px;
}

.menu_header ul {
    display: block;
    float: left;
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    width: 33%;
}

.menu_header ul li {
    display: block;
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

.menu_header a {
    color: white;
    text-decoration: underline;
}

.menu_header a:hover {
    color: white;
    text-decoration: none;
}


.bigscreen {
    position: relative;
    height: 400px;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-size: cover;

}


.bigscreen .smallscreen {
    position: relative;
    margin: 0px auto 0px auto;
    width: 80%;
    min-width: 989px;
    height: 400px;

    padding: 0px;

}

.bigscreen .smallscreen .inside {
    position: absolute;
    height: 385px;
    top: 15px;
    left: 10%;
    width: 80%;
}


.bigscreen .smallscreen .inside .left {
    position: absolute;
    height: 490px;
    top: 0px;
    left: 0px;
    width: 100%;
    text-align: center;
}



.bigscreen .smallscreen .inside .left h2 {
    margin: 75px 0px 30px 0px;
    padding: 0px;
    color: white;
    letter-spacing: -1px;
    font-weight: normal;
    line-height: 54px;
}

.bigscreen .smallscreen .inside .left h2 a {
    color: white;
    text-decoration: none;
}

.bigscreen .smallscreen .inside .left h2 a small {
    font-size: 27px;
    letter-spacing: 0px;
}

.bigscreen .smallscreen .inside .left h2 a span {
    color: white;
    text-decoration: none;
    padding-right: 10px;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 0px;
    background: url(arr-right_s.png) no-repeat center right;
}

.bigscreen .smallscreen .inside .left p {
    display: block;
    color: white;
    width: auto;
    text-transform: none;
    margin: 0px;
}

.bigscreen .smallscreen .inside .left ul {
    display: block;
    margin: 20px 0px 0px 0px;
    padding: 0px;
}

.bigscreen .smallscreen .inside .left ul li {
    display: block;
    position: relative;
    float: left;
    color: white;
    width: auto;
    text-transform: none;
    text-align: left;
    margin: 0px 0px 20px 12px;
    padding: 10px 0px 10px 10px;
    background: left center no-repeat;
    width: 250px;
    min-height: 35px;
}

.bigscreen .smallscreen .inside .left ul li .icon {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0px;
    left: 0px;
    margin: 0px;
    padding: 0px;
    background: 50% 50% no-repeat;
    border: 2px solid white;
    border-radius: 50px;
}

.bigscreen .smallscreen .inside .left ul li span {
    display: block;
    position: absolute;
    top: 5px;
    left: 55px;
    padding: 0px;
    margin: 0px;
    /*background: url(arr-right.png) left center no-repeat;*/
}






.bigunderline {
    position: relative;
    margin: 0px auto 0px auto;
    width: 80%;
    min-width: 989px;
    height: 100px;
    background-color: rgb(29,29,29);
    border-top: 5px solid white;
}

.underline {
    position: relative;
    margin: 0px auto 0px auto;
    width: 989px;
    height: 100px;
}



.underline a {
    display: block;
    float: left;
    padding: 0px;
    margin: 0px 0px 0px 11px;
    position: relative;
    color: white;
    font-size: 12px;
    text-decoration: none;
    background: 0px 13px no-repeat;
    height: 100px;
    width: 186px;
}



.underline a span  {
    display: block;
    position: absolute;
    color: white;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    height: 30px;
    width: 130px;
    right: 0px;
    top: 10px;
    text-transform: uppercase;
    line-height: 14px;
    /*    -webkit-transition: color 0.2s linear;*/
    transition: color 0.2s linear;
}


.underline a:hover span  {
    color: Gray;
}

.underline a:hover p  {
    color: white;
}

.underline a p {
    display: block;
    position: absolute;
    color: #9da6b2;
    font-size: 13px;
    font-weight: normal;
    text-decoration: none;
    height: 54px;
    width: 130px;
    right: 0px;
    top: 39px;
    margin: 0px;
    padding: 0px;
    line-height: 14px;
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
}



.textboxes {
}

.textbox {
    display: block;
    text-align: left;
    padding: 10px 0px 10px 0px;
    width: 32%;
    border-right: 1px solid rgb(243,243,243);
    min-height: 160px;
    margin: 15px 0px 15px 0px;
    float: left;
}

.cleaner {
    clear: both;
    font-size: 1px;
    line-height: 0px;
    margin: 0px;
    padding: 0px;
    border: 0px;
}

.textbox.last {
    border-right: 0px;
}

.textbox h2 {
    padding: 10px 20px 10px 20px;
    margin: 0px;
    color: rgb(29,29,29);
}

.textbox p {
    padding: 10px 20px 10px 20px;
    margin: 0px;

}

.footer {
    padding: 20px 0px 150px;
    color: #636363;
    background: black;
}

.footer .container .footer-columns {
    display: grid;
    list-style-type: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-items: start;
    align-items: start;
    justify-content: center;
    /* text-align: left; */
    margin: 25px 0px 60px 0px;
    padding: 0px 20px;
}

.footer .container .footer-columns > li:nth-child(3n+1) {
    justify-self: start;
}
.footer .container .footer-columns > li:nth-child(3n+2) {
    justify-self: right;
    text-align: right;
}
.footer .container .footer-columns > li:nth-child(3n+3) {
    justify-self: end;
}

.footer .container .footer-columns .footer-column ul{
    margin: 0px;
    padding: 0px;
}

.footer .container .footer-columns .footer-column ul li{
    margin: 10px 0px;
    list-style-type: none;
}

.footer .container .footer-columns .footer-column ul li a{
    color: #636363;
}

.footer .container .payments {
    display: grid;
    text-align: center;
    list-style-type: none;
    grid-template-columns: repeat(auto-fit, minmax(50px, 50px));
    grid-gap: 10px;
    justify-items: start;
    align-items: start;
    justify-content: center;
    margin: 20px 0px;
    padding: 0px;
    opacity: 1;
}

.night .footer .container .payments {
    opacity: 0.5;
}

@media (max-width: 900px) {
    .footer .container .footer-columns {
        grid-template-columns: 1fr;
    }

    .footer .container .footer-columns > li:nth-child(3n+3) {
        justify-self: center;
    }
}

.footer .container .footerlinks .copyright {
    text-align: right;
}

.slidesjs-navigation {
    display: none;
    visibility: hidden;
}

#slides {
    display: block;
    position: relative;
    margin: 0px;
    padding: 0px;
}

.slidesjs-container {
    transform: scaleX(1.001);
}

.slidesjs-pagination {
    display: block;
    text-align: center;
    padding: 0px;
    margin: 0px;
    position: absolute;
    bottom: -15px;
    right: 30%;
    width: 40%;
    height: 26px;
    z-index: 999;
}

.slidesjs-pagination li {
    display: inline-block;
    z-index: 99;
    margin: 0px 10px;

}

.slidesjs-pagination li a {
    display: block;
    width: 25px;
    height: 8px;
    border-radius: 28px;
    overflow: hidden;
    color: rgb(70,0,202);
    background-color: rgb(70,0,202);
    z-index: 99;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    font-size: 8px;
    line-height: 8px;
    padding:0px;
    margin:0px;
}

.slidesjs-pagination li a.active {
    color: #ffca0d;
    background-color: #ffca0d;
}


/* Prevent the slideshow from flashing on load */
#slides {
    display: none
}

/* Center the slideshow */


/* Show active item in the pagination */
.slidesjs-pagination .active {
    color:red;
}

/* Media quires for a responsive layout */



.weare {
    font-size: 12px;
    color: #888;
}

.colormenuitem {
    font-size: 12px;
    padding-left: 25px;
    cursor: pointer;
}
.products-box {

}

.products-box .product {
    display: block;
    float: left;
    width: 200px;
    margin: 15px 0.9% 15px 0.9%;
    min-height: 415px;
    background-color: rgb(243,243,243);
    text-decoration: none;

    padding: 0px;
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
}

.products-box .product:hover {
    background-color: rgb(229,230,232);
}


.products-box .product h2 {
    display: block;
    padding: 10px;
    margin: 0px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-size: 26px;
    line-height: 27px;
}

.products-box .product p {
    display: block;
    padding: 0px 10px 10px 10px;
    margin: 0px;
    font-size: 14px;
    line-height: 16px;
}



.hosting-box {

}

.hosting-box .product {
    position: relative;
    text-decoration: none;
    height: 100px;
    padding: 0px;
    margin: 10px 0px 10px 0px;
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
    color: #8f98a4;
    cursor: pointer;
    border: 1px solid #dedede;
    text-align: left;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    background-position: 10px 20px;
    background-repeat: no-repeat;
}

.hosting-box .product:hover {
    background-color: rgb(229,230,232);

}






.hosting-box .product h2 {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 70%;
    padding: 10px 10px 0px 70px;
    margin: 0px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-size: 20px;
    line-height: 18px;

}

.hosting-box .product .popis {
    display: block;
    position: absolute;
    top: 30px;
    left: 0px;
    width: 70%;
    padding: 5px 10px 5px 70px;
    font-size: 13px;
    line-height: 17px;
}


.hosting-box .product .cena {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 10px;
    width: 30%;
    margin: 0px;
    font-size: 33px;
    font-weight: bold;
    color: #174B63;
    letter-spacing: -1px;
    text-align: right;
    white-space: nowrap;
}

.hosting-box .product .cena .mena{
    color: #174B63;
    font-size: 25px;
}

.hosting-box .product .cena small {
    display: block;
    padding: 5px 0px;
    margin: 0px 0px 0px 0px;
    font-size: 12px;
    letter-spacing: 0px;
    font-weight: normal;
    white-space: nowrap;
    line-height: 16px;
}



.hosting-box .description {
    display: block;
    position: relative;
    padding: 5px 45px 5px 45px;
    font-size: 13px;
}

.hosting-box .description h3 {
    color: rgb(128,128,128);
    padding: 30px 0px 5px 0px;
    margin: 0px;
    font-size: 21px;
    font-weight: normal;
}

.hosting-box .description p {
    color: rgb(128,128,128);
    padding: 0px 0px;
    margin: 0px;
    font-size: 14px;
}

.hosting-box .description .includes {

    background-color: white;
    padding: 30px;
    margin: 20px 0px 20px 0px;
    border: 1px solid rgb(232,232,232);
}

.hosting-box .description .includes h3 {
    color: rgb(128,128,128);
    padding: 0px 0px 20px 0px;
    margin: 0px;
    font-size: 21px;
    font-weight: normal;
}

.hosting-box .description ul li {
    list-style: none;
}

.hosting-box .description ul li h4 {
    color: rgb(128,128,128);
    padding: 10px 0px 0px 0px;
    margin: 0px;
    font-size: 16px;
}

.hosting-box .description ul li p {
    color: rgb(128,128,128);
    padding: 0px 0px;
    margin: 0px;
    font-size: 13px;
    line-height: 19px;
}





.order-box .product {
    position: relative;
    text-decoration: none;
    height: 100px;
    padding: 0px;
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
    color: #8f98a4;
    border-bottom: 1px solid #dedede;
    text-align: left;
    background-position: 10px 20px;
    background-repeat: no-repeat;
}

.order-box .product.first {
    border-top: 1px solid #dedede;
}








.order-box .product h2 {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 60%;
    padding: 10px 10px 0px 70px;
    margin: 0px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-size: 20px;
    line-height: 18px;

}

.order-box .product .popis {
    display: block;
    position: absolute;
    top: 30px;
    left: 0px;
    width: 60%;
    padding: 5px 10px 5px 70px;
    font-size: 13px;
    line-height: 17px;
}


.order-box .product .cena {
    display: block;
    position: absolute;
    top: 0px;
    right: 10%;
    padding: 17px;
    width: 20%;
    margin: 0px;
    font-size: 33px;
    font-weight: bold;
    color: #174B63;
    letter-spacing: -1px;
    text-align: right;
    white-space: nowrap;
}

.order-box .product .cena .mena{
    color: #174B63;
    font-size: 25px;
}

.order-box .product .cena small {
    display: block;
    padding: 5px 0px;
    margin: 0px 0px 0px 0px;
    font-size: 12px;
    letter-spacing: 0px;
    font-weight: normal;
    white-space: nowrap;
    line-height: 16px;
}

.order-box .checkbox {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 10px;
    width: 10%;
    margin: 0px;
}

.order-box .checkbox input {
    position: absolute;
    top: 34px;
    right: 30px;
    padding: 0px;
    width: 30px;
    margin: 0px;
    height: 30px;
}

.order-box .orderbutton {
    padding: 50px 10px;
    text-align: right;
}

.order-box .orderbutton input {
    width: 180px;
    height: 50px;
    font-size: 25px;
    color: rgb(146,146,147);
    cursor: pointer;
}

.order-box .orderbutton span {
    font-family: arial;
    padding: 10px 30px;
    font-size: 25px;
    color: white;
    border: 1px solid rgb(157,157,157);
    background-color: rgb(90,180,90);
    cursor: pointer;
}


.order-box .product .orderbutton:hover {
    background-color: black;
}

.order-menu {
    float: right;
    width: 26%;
}

.order-menu h3 {
    color: #8f98a4;
    padding: 30px 0px 5px 0px;
    margin: 0px;
    font-size: 21px;
    font-weight: normal;
}






.products-text {
    float: left;
    width: 72%;
    min-height: 1000px;
}

.products-menu {
    float: right;
    width: 26%;
}

.products-menu h2.clickable {
    padding: 0px;
    margin: 0px;
}

.products-menu h2.clickable a {
    color: rgb(136,136,136);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 26px;
    margin: 15px 0px 0px 0px;
    padding: 10px;
    font-weight: normal;
    color: #8f98a4;
    cursor: pointer;
    display: block;
    background-color: #f5f5f5;
    border: 1px solid #dedede;
    text-align: left;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.products-menu h2.clickable a:hover {
    background-color: rgb(242,242,242);
    border: 1px solid rgb(198,198,198);
    color: #444;
}

.products-menu .service {
    position: relative;
    display: block;
    margin: 0px;
    padding: 5px 0.9% 5px 0.9%;
    text-decoration: none;

    border-bottom: 1px solid rgb(229,230,232);
}

.products-menu .service:hover {
    background-color: rgb(243,243,243);
}

.products-menu .service h2 {
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
    margin: 0px;
    padding: 0px 0px 0px 10px;
    text-decoration: none;

}

.products-menu .service img {
    position: absolute;
    max-height: 24px;
    max-width: 24px;
    left: 10px
}

.products-menu .advantages h3 {

    padding: 30px 0px 5px 0px;
    margin: 0px;
    font-size: 21px;
    font-weight: normal;
}

.products-menu .advantages p {
    padding-top: 0px;
    margin-top: 0px;
}


.products-menu .advantages .box {
    background-color: rgb(248,248,248);
    border: 1px solid rgb(232,232,232);
    padding: 5px 10px;
    margin: 10px 0px;
}

.products-menu .advantages .box h4 {

    padding: 10px 0px 5px 40px;
    margin: 0px;
    font-size: 19px;
    font-weight: normal;
    background-position: 0px 6px;
    background-repeat: no-repeat;
}












.services-box {
    float: right;
    width: 26%;
}

.services-box .service {
    display: block;
    margin: 0px;
    padding: 5px 0.9% 5px 0.9%;
    text-decoration: none;

    border-bottom: 1px solid rgb(229,230,232);
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
}

.services-box .service:hover {
    background-color: rgb(243,243,243);
}

.services-box .service h2 {
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
    margin: 0px;
    padding: 0px;
    text-decoration: none;

}

.services-text {
    float: left;
    width: 72%;
}

.contactform {
    position: relative;
    width: 40%;
    margin: 0px auto;
    padding: 40px;
    background-color: rgb(235,236,237);
    margin-bottom: 10px;
}

.contactform .close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
    padding: 0px;
    text-align: right;
    font-size: 12px;
    color: gray;
    text-decoration: none;
    cursor: pointer;
}

.contactform table {
    width: 80%;
    margin: 20px auto 0px auto;
}

.contactform table td {
    text-align: center;
    color: rgb(146,146,147);
}

.contactform table tr td input, .contactform table tr td textarea, .contactform table tr td select {
    width: 98%;
    margin: 0px;
    padding: 5px;
    border: 1px solid rgb(204,204,204);
    font-family: arial;
}


.contactform table td h2 {
    font-weight: normal;
    color: rgb(146,146,147);
}

.contactform table td h2 {
    font-size: 12px;
    color: rgb(146,146,147);
}

.contact-images {
    margin: 0px;
    padding: 10px 0px 0px 0px;
    overflow: hidden;
}

.contact-images img {
    width: 100%;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}

.contact-box {
    float: left;
    width: 72%;
    min-height: 1000px;
}


.breadcrumbs {
    margin: 0px;
    padding: 5px 50px;
    background-color: rgb(80,52,34);
    color: #d4cdab;
}

.breadcrumbs a {
    margin: 0px;
    padding: 5px 20px 5px 5px;
    color: #8f98a4;
    text-decoration: none;
    color: #d4cdab;
    background: url(img/arrow-25-16.png) no-repeat center right;
}

.breadcrumbs a:hover {

}


.onecolumn-text {
    padding: 0px 0px 35px 0px;
}

.onecolumn-text  h2 {
    padding: 15px 5%;

    font-size: 28px;
    font-weight: normal;
}

.onecolumn-text  p {
    padding: 5px 10%;

    font-size: 17px;
}




.clients-box .client {
    display: block;
    float: left;
    width: 31.5%;
    min-width: 224px;
    max-width: 300px;
    margin: 15px 0.9% 15px 0.9%;
    background-color: rgb(243,243,243);
    text-decoration: none;
    color: #8f98a4;
    padding: 0px 0px 5px 0px;
}

.clients-box .client img{
    width: 100%;
}

.clients-box .client:hover {
    background-color: rgb(229,230,232);


}

.clients-box .client h2 {
    display: block;
    padding: 10px;
    margin: 0px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-size: 18px;
    line-height: 27px;

}

.clients-box .client p {
    display: block;
    padding: 0px 10px 10px 10px;
    margin: 0px;
    font-size: 14px;
    line-height: 16px;
}


.clients-text {
    float: left;
    width: 72%;
    min-height: 1000px;
}

.clientpool {
    float: right;
    width: 26%;
}

.clientpool .client {
    display: block;
    font-size: 11px;
    border: 1px solid white;
    margin-top: 15px;
    padding: 5px;
    text-decoration: none;
    line-height:1.5em;
    cursor: default;
}

.clientpool .client:hover {
    background-color: rgb(229,230,232);
}

.clientpool .client img {
    float: left;
    margin: 5px 0px 5px 5px;
    border-radius: 5px;
}

.clientpool .client p {
    display: block;
    float: right;
    width: 70%;
    color: gray;
    padding-right: 5px;
    min-height: 80px;
    font-size: 14px;
    line-height:20px;
    margin: 0px;
    cursor: default;
}

.clientpool .client span {
    display: block;
    width: 25%;

    padding-left: 5px;
    float: left;
}

.vysvetleni {
    display: block;
    position: relative;
    padding: 20px 20px 20px 20px;
    background-color: 1px solid  rgb(249,237,156);
    border: 1px solid rgb(240,217,113);
    font-size: 12px;
    font-style: italic;
}

.vysvetleni .close {
    position: absolute;
    top: 5px;
    right: 5px;
    display: block;
    padding: 0px;
    text-align: right;
    font-size: 12px;
    color: gray;
    text-decoration: none;
}



.services-list {

}

.services-list .service {
    display: block;
    float: left;
    width: 229px;
    margin: 15px 0.9% 15px 0.9%;
    min-height: 330px;
    background-color: rgb(243,243,243);
    text-decoration: none;

    padding: 0px;
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
}

.services-list .service:hover {
    background-color: rgb(229,230,232);
}

.services-list .service .img {
    margin: 20px 0px 20px 0px;
    height: 100px;
    width: 229px;
    text-align: center;

}

.services-list .service .img img {
    max-height: 100px;
    max-width: 229px;
}


.services-list .service h2 {
    display: block;
    padding: 10px;
    margin: 0px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-size: 26px;
    line-height: 27px;
    min-height: 81px;
}

.services-list .service p {
    display: block;
    padding: 0px 10px 10px 10px;
    margin: 0px;
    font-size: 14px;
    line-height: 16px;
}

.produkt-header {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: rgb(243,243,243);
    padding-right: 5px;
}

.produkt-header .produktimg {
    float: left;
    margin: 45px 45px 80px 45px;
}

.produkt-header h1 {
    margin: 0px 0px 5px 0px;
    padding: 0px;
    text-transform: uppercase;
    font-size: 40px;
    letter-spacing: -1px;
    line-height: 40px;
}

.produkt-header h2 {
    margin: 10px 0px 5px 0px;
    padding: 0px;
    font-size: 19px;
}

.produkt-header .cena {
    margin: 20px 0px 20px 0px;
    padding: 0px;
    font-size: 50px;
    font-weight: bold;
    color: #174B63;
    letter-spacing: -3px;
}

.produkt-header p {
    font-size: 16px;
}

.produkt-header .cena small {
    display: inline-block;
    margin-top: 15px;
    font-size: 20px;
    letter-spacing: 0px;
    font-weight: normal;

}

.produkt-header .highlights {
    float: right;
    width: 25%;
    margin: 15px 0px 0px 50px;
    padding: 0px 10px 0px 0px;
}

.produkt-header .highlights span {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0px 0px 0px 0px;
}

.produkt-header .highlights p {
    font-size: 12px;
    margin: 10px 0px 10px 0px;
    line-height: 19px;
}

h3.clickable {
    font-size: 26px;
    margin: 10px 0px 10px 0px;
    padding: 10px;
    font-weight: normal;
    color: #8f98a4;
    cursor: pointer;
    display: block;
    background-color: #f5f5f5;
    border: 1px solid #dedede;
    text-align: left;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

h3.clickable:hover {
    background-color: rgb(242,242,242);
    border: 1px solid rgb(198,198,198);
    color: #444;
}

.more.clickable {
    font-size: 16px;
    margin: 10px auto;
    padding: 3px;
    font-weight: normal;
    color: #8f98a4;
    cursor: pointer;
    display: block;
    background-color: #f5f5f5;
    border: 1px solid #dedede;
    text-align: center;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    width: 80%;
}

.more.clickable:hover {
    background-color: rgb(242,242,242);
    border: 1px solid rgb(198,198,198);
    color: #444;
}


.faq {
    display: block;
    padding: 0px;
    margin: 0px;

}

.faq li {
    display: block;
    padding: 30px 20px 30px 90px;
    border-bottom: 1px solid rgb(229,230,232);
    position: relative;
    min-height: 75px;
}

.faq li .num {
    position: absolute;
    left: 12px;
    top: 20px;
    height: 90px;
    width: 50px;
}

.faq li .num span {
    position: relative;
    display:table-cell;
    height: 90px;
    width: 50px;
    font-size: 100px;
    margin: 0px;
    padding: 0px;
    font-weight: normal;
    vertical-align:middle;
    color: rgb(229,230,232);
}


.faq li h4 {
    font-size: 21px;
    text-transform: uppercase;
    margin: 0px 0px 15px 0px;
    padding: 0px;
    font-weight: bold;
}

.faq li h3 {
    font-size: 21px;
    text-transform: uppercase;
    margin: 0px 0px 15px 0px;
    padding: 0px;
    font-weight: bold;
}

.faq li p {
    font-size: 15px;
    margin: 6px 0px 6px 0px;
    padding: 0px;
    line-height: 20px;
}

.advantages {
    display: block;
    padding: 0px;
    margin: 0px;

}

.advantages li {
    display: block;
    padding: 30px 20px;
    border-bottom: 1px solid rgb(229,230,232);

}

.advantages li h4 {
    font-size: 21px;
    text-transform: uppercase;
    margin: 0px 0px 15px 0px;
    padding: 0px;
    font-weight: bold;
}

.advantages li p {
    font-size: 15px;
    margin: 6px 0px 6px 0px;
    padding: 0px;
    line-height: 20px;
}

.parametters {
    width: 100%;
    font-size: 13px;
}

.parametters tbody tr {


}

.parametters tbody tr th, .parametters tbody tr td{
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgb(229,230,232);
    padding: 5px 15px;
}

.parametters tbody tr th {
    font-size: 15px;
    line-height: 17px;
}

.parametters tbody tr td {
    text-align: right;
}

.parametters tbody tr .blue {
    background-color: rgb(54,159,207);
}

.parametters tbody tr .green {
    background-color: rgb(10,182,10);
}

.parametters tbody tr .dedicated {
    background-color: rgb(162,111,166);
}

.parametters tbody tr .orange {
    background-color: rgb(249,92,0);
}


.parametters tbody tr th small {
    font-size: 12px;
    font-weight: normal
}

.parametters tbody tr .limits {
    font-size: 12px;
    line-height: 17px;
    padding: 5px 15px 5px 15px;
    text-transform: uppercase;
    border-bottom: 0px;
    color: gray;
    text-align: right;
}

.parametters tbody .selected {
    background-color: rgb(243,243,243);
}

.parametters tbody tr .tarifnameth {
    padding: 0px;
    border-bottom: 0px;
    vertical-align: bottom;
}


.parametters tbody tr .tarifname {
    display: block;
    text-decoration: none;
    font-size: 22px;
    line-height: 17px;
    padding: 11px 11px;
    color: white;
    text-transform: uppercase;
    border-bottom: 0px;
    font-weight: normal;
}

.parametters tbody tr .tarifname:hover {
    background-color: rgb(229,230,232);
}


.parametters tbody tr .tarifname.selected {
    font-size: 38px;
    line-height: 17px;
    padding: 20px 11px 20px 11px;
}


.download {
    display: block;
    padding: 0px;
    margin: 0px;

}

.download li {
    display: block;
    padding: 30px 20px 30px 100px;
    border-bottom: 1px solid rgb(229,230,232);
    position: relative;
    min-height: 75px;
}

.download li .num {
    position: absolute;
    left: 12px;
    top: 30px;
    height: 90px;
    width: 50px;
}

.download li .num span {
    position: relative;
    display:table-cell;
    height: 90px;
    width: 50px;
    font-size: 100px;
    margin: 0px;
    padding: 0px;
    font-weight: normal;
    vertical-align:middle;
    color: rgb(229,230,232);
}


.download li h4 {
    font-size: 21px;
    text-transform: uppercase;
    margin: 0px 0px 15px 0px;
    padding: 0px;
    font-weight: bold;
}

.download li p {
    font-size: 15px;
    margin: 6px 0px 6px 0px;
    padding: 0px;
    line-height: 20px;
}

.download li p a {
    font-size: 15px;
    font-weight: bold;

}

.serviceblock {
    padding: 45px 20px 20px 20px;
    background-color: rgb(229,230,232);
}

.serviceblock h1 {
    margin: 0px 0px 5px 0px;
    padding: 0px;
    text-transform: uppercase;
    font-size: 40px;
    letter-spacing: -1px;
    line-height: 40px;
}

.serviceblock h2 {
    margin: 10px 0px 5px 0px;
    padding: 0px;
    font-size: 19px;
}

.serviceblock img {
    float: left;
    margin: 10px 25px 25px 10px;
    width: 100px;
}


.chart span {
    position: absolute;
    width: 76px;
    height: 30px;
    text-align: left;
    font-weight: bold;
}

.orderline {
    display: block;
    width: auto;
    height: 125px;
    position: relative;
    background-color: rgb(229,230,232);
    margin-bottom: 10px;
    cursor: pointer;
    margin: 10px 0px 10px 0px;
    color: #8f98a4;
    background-color: #f5f5f5;
    border: 1px solid #dedede;
    text-align: left;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.orderline:hover {
    background-color: rgb(242,242,242);
    border: 1px solid rgb(198,198,198);
    color: #444;
}
.orderline h3 {
    position: absolute;
    top: 10px;
    left: 3%;
    width: 30%;
    text-transform: uppercase;
    letter-spacing: -1px;

}

.orderline h3 span {
    position: absolute;
    display: block;
    top: 33px;
    left: 0px;
    width: 100%;
    font-size: 45px;
}

.orderline p {
    position: absolute;
    top: 10px;
    right: 3%;
    width: 60%;
}







.smallparametters {
    width: 98.2%;
    margin: 0px 0.9%;
    font-size: 13px;
}


.smallparametters tbody tr th, .smallparametters tbody tr td{
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgb(229,230,232);
    padding: 5px 15px;
}

.smallparametters tbody tr th {
    font-size: 15px;
    line-height: 17px;
}

.smallparametters tbody tr td {
    text-align: right;
}

.smallparametters tbody tr td p{
    text-align: right;
    font-size: 15px;
}

.smallparametters tbody tr th small {
    font-size: 12px;
    font-weight: normal
}

.smallparametters tbody tr .limits {
    font-size: 12px;
    line-height: 17px;
    padding: 5px 15px 5px 15px;
    text-transform: uppercase;
    border-bottom: 0px;
    color: gray;
    text-align: right;
}

.infoblock {
    display: block;
    margin: 150px 0px;
}

.infoblock h3 {
    display: block;
    margin: 10px 0px 0px 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 13px;
    text-transform: uppercase;
}

.infoblock p {
    display: block;
    margin: 0px 0px;
    padding: 10px 0px;
    font-size: 12px;
    line-height: 20px;
}

.infoblock ul li {
    margin: 0px 0px;
    padding: 0px 0px;
    font-size: 12px;
    line-height: 20px;
}

.infoblock .mapka {
    display: block;
    height: 120px;
    background: url(mapDC.png) no-repeat center -99px;
}

.block-list {
    display: block;
    margin: 0px 0px 0px 0px;
    padding: 0px;
}

.functions-list {
    position: relative;
    margin: 0px;


    padding: 0px;

}

.functions-list li {
    display: block;
    width: 50%;
    position: relative;
    margin: 0px auto;
    padding: 0px 15px;
    height: 710px;
    border-bottom: 1px solid rgb(229,230,232);

    background-color: white;
    box-sizing: border-box;
}



.functions-list li img {
    position: absolute;
    left: 0px;
    top: 10px;
    max-width: 147px;
    max-height: 620px;
}
.functions-list li .containerv2 {
    display: block;
    margin-left: 145px;
}
.functions-list li .containerv2 h1 {
    display: block;
    text-align: left;
    font-weight: 300;
    margin-right: -5px;

}

.functions-list li .containerv2 h1 a {
    color: white;
    text-decoration: none;
}

.functions-list li .containerv2 h2 {
    display: block;
    text-align: left;
    font-weight: 300;
}

.functions-list li .containerv2 p {
    display: block;
    text-align: left;
}

.functions-list li .containerv2 table {
    width: 100%;
}

.functions-list li .containerv2 table tr td {
    border-bottom: 1px solid rgb(221,221,221);
}

.functions-list li:nth-child(odd) {
    float: left;
    border-right: 1px solid rgb(229,230,232);
}

.functions-list li:nth-child(even) {
    float: right;
    clear: right;
}



.download {
    display: block;
    margin: 0px 0px 150px 0px;
    padding: 0px;
}

.download li {
    display: block;
    width: 880px;

    margin: 0px auto;
    padding: 0px;
    min-height: 360px;
    border-bottom: 1px solid rgb(229,230,232);
    background-position: bottom right;
    background-repeat: no-repeat;
}

.download li h2 {
    display: block;
    width: 435px;
    padding-top: 80px;
    text-align: right;
}

.download li h3 {
    display: block;
    width: 435px;
    text-align: right;
}

.download li p {
    display: block;
    width: 435px;
    text-align: right;
}






.vyhody-list {
    display: block;
    margin: 0px;
    padding: 0px;
}

.vyhody-list li {
    display: block;
    position: relative;
    float: left;
    width: 30.3%;
    margin: 8px 0.4%;
    padding: 130px 1.0% 10px 1.0%;
    height: 90px;
    border-bottom: 1px solid rgb(229,230,232);
    background-position: center 20px ;
    background-repeat: no-repeat;
    background-size: 100px;
    cursor: pointer;
    color: #8f98a4;
    background-color: #f5f5f5;
    border: 1px solid #dedede;
    text-align: left;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);

}


.vyhody-list li h2 {
    font-size: 30px;
    font-weight: normal;
    line-height: 35px;
    text-align: center;
    padding: 0px;
    margin: 0px;
    min-height: 70px;
    color: rgb(128,128,128);
}

.vyhody-list li p {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 10px 10px;
    text-align: left;
    color: rgb(128,128,128);
    font-size: 14px;
    line-height: 20px;
    opacity: 0;
}

.vyhody-list li:hover {
    display: block;
    padding: 10px 1.0% 10px 1.0%;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    height: 210px;
    background: none !important;
    box-shadow: 0 1px 1px rgba(0,0,0,0.3);
}

.vyhody-list li:hover h2 {
    display: none;
}

.vyhody-list li:hover p {
    display: block;
    opacity: 1;
    text-align: left;
    color: rgb(128,128,128);
    font-size: 14px;
    line-height: 20px;
    -webkit-transition: opacity  0.2s linear;
    transition: opacity  0.2s linear;
}

.itemimage {
    z-index: 10000;
}

.cart {
    position: fixed;
    top: 200px;
    right: -338px;
    z-index: 50000000;
    width: 400px;
    min-height: 54px;
    border-radius: 5px 0px 0px 5px;
    padding: 15px 10px 15px 50px;
    color: white;
    background-color: var(--merchwork-button-color);
    cursor: pointer;
    transition: right 0.20s ease, transform 0.20s ease;
    ;
}

.cart.open {
    right: 0;
}

@media (hover: none), (max-width: 767px) {
    .cart {
        top: 50%;
        transform: translateY(-50%) scale(0.8);
        right: -310px;
    }
    .cart.open {
        right: 0;
        width: 100%;
        transform: translateY(-50%) scale(1);
    }
}

.cart .cart_icon {
    position: absolute;
    top: 17px;
    left: 18px;
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M9 22C9.55228 22 10 21.5523 10 21C10 20.4477 9.55228 20 9 20C8.44772 20 8 20.4477 8 21C8 21.5523 8.44772 22 9 22Z' stroke='%23D9D9DA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/><path d='M20 22C20.5523 22 21 21.5523 21 21C21 20.4477 20.5523 20 20 20C19.4477 20 19 20.4477 19 21C19 21.5523 19.4477 22 20 22Z' stroke='%23D9D9DA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/><path d='M1 1H5L7.68 14.39C7.77144 14.8504 8.02191 15.264 8.38755 15.5583C8.75318 15.8526 9.2107 16.009 9.68 16H19.4C19.8693 16.009 20.3268 15.8526 20.6925 15.5583C21.0581 15.264 21.3086 14.8504 21.4 14.39L23 6H6' stroke='%23D9D9DA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-size: 30px;
    background-position: center;
    background-repeat: no-repeat;
}

.cart .cart_icon .cartQTY {
    position: absolute;
    top: 13px;
    left: 16px;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    background-color: white;
    border-radius: 15px;
    font-weight: 800;
    font-size: 13px;
    color: black;
}

.cart .text_in_cart {
    font-size: 16px;
    display: block;
    text-decoration: none;
    color: white;
    padding: 12px 0px;
    font-weight: bold;
    border: 1px solid transparent;
    line-height: 3px;
    position: absolute;
    top: 19px;
    left: 71px;
    box-sizing: border-box;
}

.cart .text_in_cart .qty_in_cart {
    padding: 0px 0px 0px 4px;
}

.cart .edit_cart {
    font-size: 12px;
    display: block;
    text-decoration: none;
    color: white;
    padding: 12px 15px;
    font-weight: bold;
    border-radius: 37px;
    border: 1px solid rgba(255, 255, 255, .5);
    line-height: 3px;
    text-align: center;
    font-weight: 500;
    position: absolute;
    top: 18px;
    right: 14px;
    box-sizing: border-box;
}

.cart .edit_cart:hover {
    background: white;
    border: 1px solid rgba(255, 255, 255, 1);
    color: black;
}

.cart #ordernow {
    margin: 25px 0px 15px 0px;
    position: relative;
    right: 50px;
    left: 28px;
    width: 260px;
}

.cart #ordernow a {
    display: block;
    text-decoration: none;
    color: white;
    font-size: 16px;
    padding: 12px 16px;
    margin: 4px;
    font-weight: bold;
    border-radius: 37px;
    border: 1px solid rgba(255, 255, 255, .5);
    line-height: 15px;
    text-align: center;
    font-weight: 500;
}

.cart #ordernow a:hover {
    background: white;
    border: 1px solid rgba(255, 255, 255, .5);
    color: black;
}

.cart #ordernow a.continueshopping  {
    display: block;
    text-decoration: none;
    color: white;
    font-size: 13px;
    padding: 7px 11px;
    margin: 4px;
    font-weight: bold;
    border-radius: 37px;
    border: none;
    line-height: 15px;
    text-align: center;
    font-weight: 400;
    text-decoration: underline;
}

.cart #ordernow a.continueshopping:hover  {
    background: unset;
    text-decoration: none;
}

.cart #cart_table {
    margin-top: 33px;
    max-height: 320px;
    position: relative;
    left: 10px;
    width: calc(100% + -10px);
}

.cart .cart-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    margin: 4px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    background: rgba(255,255,255,0.08);
}

.cart .cart-row:first-child {
    margin-top: 52px;
}

.cart .cart-row:hover {
    background: rgba(255,255,255,0.2);
}

.cart .cart-img {
    flex: 0 0 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    left: -60px;
}

.cart .cart-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart .cart-info {
    flex: 1;
    min-width: 0;
    position: relative;
    left: -48px;
    line-height: 10px;
}

.cart .cart-name {
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 3px 0px;
}

.cart .cart-sku {
    font-size: 10px;
    opacity: 0.8;
    padding: 3px 0px;
}

.cart .cart-qty {
    font-size: 12px;
    opacity: 0.9;
    padding: 3px 0px;
}

.cart .cart-price {
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    padding: 0px 5px 0px 0px;
}


.orderdiv {
    position: relative;
}

.price {
    display: block;
    padding: 15px 10px;
}


.price .sleva {
    display: block;
    font-size: 25px;
    font-weight: 400;
}


.price .nyni {
    font-size: 22px;
    font-weight: 400;
}

.price .cena {
    font-size: 27px;
    font-weight: 700;
}

.puvodniprice {
    margin-top: 57px;
    padding: 0px 0px 10px;
}

.puvodniprice .drive {
    display: block;
    font-size: 16px;
    font-weight: 700;
    text-decoration: line-through;
    padding-left: 40px;
}

.puvodniprice .label {
    display: block;
    font-size: 12px;
    font-weight: 400;
    padding-left: 10px;
    line-height: 15px;
}

.zbyva  {
    position: absolute;
    height: 40px;
    width: 150px;
    right: 0px;
    top: 60px;
}

.zbyva .counter  {
    position: absolute;
    right: 10px;
    top: 30px;
}

.zbyva .label  {
    position: absolute;
    right: 10px;
    top: 0px;
    font-size: 12px;
}

.zbyva .labels  {
    position: absolute;
    right: 10px;
    top: 55px;


}
.zbyva .labels span  {
    position: relative;
    float: right;
    width: 32px;
    font-size: 10px;
    text-align: center;
    margin-left: 3px;
}

.zbyva.incart  {
    position: relative;
    height: auto;
    right: 0px;
    top: -25px;
}

.zbyva .counter.incart  {
    position: absolute;
    left: 5px;
    top: 5px;
    right: 0px;

}

.zbyva .labels.incart  {
    position: absolute;
    right: 5px;
    top: 35px;
}

.zbyva .counterends  {
    padding-top: 30px;
    text-align: center;
    background-color: #666666;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: rgba(255,255,255,0.5) 0px 3px 3px;

}






.emptycart {
    text-align: center;
    padding: 60px;
}



.carttable {
    width: 100%;
    border-spacing: 0px;
    border-collapse: separate;
}

.carttable th {
    background-color: rgb(231,231,231);
    font-size: 14px;
    font-weight: normal;
    border-bottom: 1px solid rgb(204,204,204);
    color: gray;
    padding: 15px 5px 5px 5px;
    text-align: left;
}

.night .carttable th {
    background-color: var(--merchwork-border-color);
    border-bottom: 1px solid var(--merchwork-border-color);
    color: #b7b7b7;
}


.carttable td,
.carttable th{
    padding: 10px 15px;
    border-color: var(--merchwork-border-color);
}


.carttable td {
    font-size: 14px;
    font-weight: normal;
    border-bottom: 1px solid var(--merchwork-border-color);
}

.carttable td .itemname {
    font-size: 14px;
    font-weight: bold;

}

.carttable td .itemname a:hover {
    text-decoration: underline;
}

.carttable td .minqtytag {
    font-size: 12px;
    font-weight: normal;

    display: block;
}

.carttable td.image-column {
    text-align: center;
    padding-top: 10px;
    width: 140px;
    padding-left: 0px;
    padding-right: 0px;
}

.carttable td.name-column {
    padding-left: 20px;

}

.carttable td.remove-column {
    padding-top: 10px;
    width: 35px;
    text-align: right;
    border-left: 1px solid var(--merchwork-border-color);
}

.carttable td.remove-column img {
    cursor: pointer;
    width: 16px;
    opacity: 0.0;
    transition: opacity .25s ease;
}

.carttable td.remove-column {
    padding-right: 0px;
}

.carttable tr:hover td.remove-column img {
    opacity: 0.5;
}



.carttable td.qty-column {
    text-align: right;
}

.carttable th.qty-column {
    text-align: right;
}

.carttable th.price-column {
    text-align: right;
}

.carttable td.price-column {
    text-align: right;

}

.carttable td.price-column.tdoldprice {
    text-decoration: line-through;
}

.carttable td.price-column.tdyourprice {
    font-size: 18px;
    border-right: 1px solid var(--merchwork-border-color);
}

.carttable td.total-column {
    text-align: right;
}


@media (hover: none), (max-width: 767px) {
    .carttable .image-column {
        display: none;
    }

    .carttable td.remove-column img {
        opacity: 0.5;
    }
}

.orderlink button {
    display: inline-block;
    margin: 5px 0 0px;
    padding: 8px 22px;
    background: var(--merchwork-button-color);
    color: var(--merchwork-button-text);
    border: none;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--merchwork-button-color);
}

.orderlink button:hover {
    background: var(--merchwork-button-hover-color);
    color: var(--merchwork-button-hover-text);
    border: 1px solid var(--merchwork-button-hover-color);
}

.orderdiv {
    text-align: right;
}

.orderdiv button {
    width: auto;
    margin: 20px 0 12px;
    padding: 16px 54px;
    background: var(--merchwork-button-color);
    color: white;
    border: 1px solid var(--merchwork-button-color);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;

}

.orderdiv button:hover {
    background: black;
    color: white;
}

.offerends  {
    text-align: center;
    background-color: #666666;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: rgba(255,255,255,0.5) 0px 3px 3px;
}

.ordervalues label {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.ordervalues label {
    display: block;
    padding: 4px;
}

.ordervalues label input {
    display: block;
    float: right;
    line-height: 20px;
    color: #555;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    vertical-align: middle;
    border: 1px solid silver;
    padding: 4px;
    width: 200px;
}
.ordervalues label select {
    display: block;
    float: right;
    line-height: 20px;
    color: #555;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    vertical-align: middle;
    border: 1px solid silver;
    padding: 4px;
    width: 250px;
}

.checkoutdiv {
    width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: right;
    padding: 20px;
}

.checkoutdiv button {
    display: inline-block;
    border-radius: 10px;
    padding: 10px 15px;
    color: white;
    background: rgb(156,28,41) ;
    border: 0px;
    cursor: pointer;
    font-weight: normal;
    font-size: 24px;
}



.containerv {
    width: calc(100% - 320px);
    float: right;
}


.containerv .orderdiv {
    width: 315px;
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
    background-color: rgba(207,200,167,.4);
    padding: 0px 0px 20px 10px;
    border-radius: 0px 0px 0px 30px;
}


.containerv h1 {
    display: block;
    text-align: left;
    font-weight: 300;
}

.containerv h2 {
    display: block;
    text-align: left;
    font-weight: 300;
    padding-left: 20px;
}

.containerv p {
    display: block;
    text-align: left;
    padding-left: 20px;
}

.containerv table {
    padding-left: 20px;

}

.containerv table tr td {
    border-bottom: 1px solid rgb(221,221,221);
}

.padder {
    padding: 10px 30px 120px;

}

.atributy {

    border-spacing: 0px;
    border-collapse: separate;
}

.atributy th {
    width: 100px;
    border-bottom: 1px solid rgb(221,221,221);
    font-weight: 300;
    text-align: right;
}

.atributy td {
    border-bottom: 1px solid rgb(221,221,221);
    font-weight: 300;
    text-align: left;
    padding-left: 15px;
}


.finorderdiv {
    padding: 30px 20px;
}

.finorderdiv h2 {
    font-weight: normal;
    padding-left: 100px;
}

.finnishedorder {
    padding: 25px 41px;
}



.titler {
    position: absolute;
    top: 20px;
    left: 250px;
    font-size: 15px;
    color: white;
    font-weight: 400;
    font-style: italic;
}

.titler strong {
    font-weight: 700;
}


@media (max-width: 767px) {
    .container.header .titler {
        display: none;
    }
}

.inventorydiv {
    font-size: 20px;
    padding-top: 15px;
    padding-left: 15px;
}

.inventorydiv .title {

}

.inventorydiv .qty {
    font-weight: normal;
    font-size: 24px;
}

.inventorydiv .mu {

}

.vatinf {
    font-size: 11px;
}

.facebook {
    display: block;
    position: absolute;
    top: 9px;
    right: 0px;

}

.facebook img {

    height: 40px;
    filter: invert(100%);
}

.downbox {
    position: absolute;
    bottom: 10px;
}

.checkout-info {
    width: 376px;
    /* margin-left: auto; */
    /* margin-right: auto; */
    padding: 10px 16px;
    box-sizing: border-box;
    border: 1px solid silver;
    margin: 10px auto;
    font-size: 13px;
    line-height: 20px;
    background-color: rgba(192,192,192,.5);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.product-detail-grid .images {
    position: relative;
    display: block;
    width: 100%;
    min-height: 500px;
}

.product-detail-grid .mainimage-wrap {
    position: absolute;
    inset: 0;
}

.product-detail-grid .mainimage {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    cursor: zoom-in;
    max-height: calc(100vh - 150px);
}


.product-detail-grid .mainimage.zoomed {
    background-size: auto;
    cursor: zoom-out;
}

.product-detail-grid .effectimage {
    position: absolute;
    display: block;
    width: 100%;
    top: 0px;
    aspect-ratio: 1 / 1;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    mix-blend-mode: multiply;
    visibility: hidden;
}


/* thumbnails nad obrázkem */
.product-detail-grid .thumbs-vertical {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    width: 72px;

}

.product-detail-grid .thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    border-radius: 3px;
    border: 1px solid silver;
}




.product-detail-grid .info {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0px 0px 0px 0px;
}

.product-detail-grid .info:before {
    content: '';
    position: absolute;
    top: 0px;
    border-left: 1px solid black;
    bottom: 0px;
    width: 1px;
    left: -15px;
    position: absolute;
    pointer-events: none;
}

.product-detail-grid .product-name {
    font-size: 37px;
    line-height: 1.15;
    margin: 0;
    font-family: var(--fontFaimly_button);

    text-align: left;
}

.product-detail-grid .sku {
    font-size: 13px;
    color: #777;
}

.product-detail-grid .price {
    font-size: 20px;
    font-weight: 600;
    margin: 0px 0px 0px 0px;
    padding: 5px 0px;
}

.product-detail-grid .price .vat {
    font-size: 13px;
    font-weight: 400;
    color: #777;
}

.product-detail-grid .availability {
    font-size: 14px;
}

.product-detail-grid .availability.out {
    color: #c00;
}

.product-detail-grid .availability.in {
    color: #0a7a2f;
}






.badge-new {
    color: #0a7a2f;
    font-size: 14px;
    font-weight: 600;
}

.product-icons {
    display: flex;
    gap: 6px;
    margin: 12px 0;
}

.product-icons .icon {
    font-size: 12px;
    padding: 4px 6px;
    border-radius: 4px;
    background-color: #f2f2f2;
    font-weight: 600;
    line-height: 1;
}

.product-icons .sex {
    background-color: #e6f0ff;
}

.product-icons .body {
    background-color: #f5f5f5;
}

.night .product-icons .body {
    background-color: #f5f5f5;
    filter: invert(1);
}

.badge-brand {
    display: grid;
    grid-template-columns: minmax(33%, 100px) 1fr;
    width: 100%;
    font-size: 12px;
    font-weight: 600;

    gap: 15px;
    padding: 0 0 7px;
    margin: 0;
    list-style: none;
    align-items: center;
    border-bottom: 1px solid var(--merchwork-border-color);
}



.badge-brand > a {
    display: block;
    text-decoration: none;
}

.badge-brand .bimg{
    min-height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}
.night .badge-brand .bimg{
    filter: invert(1);
}



.badge-brand .bhtml{

    font-size: 13px;
    font-weight: 400;

}

.badge-brand .bhtml strong{
    display: block;
}



.rating {
    font-size: 20px;
    color: #1e7be2;
}

.rating span {
    color: #777;
    font-size: 14px;
}

.buybox {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.buybox button {
    background: var(--merchwork-button-color);

    border-radius: 999px;
}

.wishlist {
    margin-top: 14px;
    background: none;
    border: 1px solid var(--merchwork-border-color);
    color: var(--merchwork-button-color);
    padding: 10px;
    border-radius: 999px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-grid .images {
        grid-template-columns: 1fr;
    }

    .thumbs-vertical {
        flex-direction: row;
        order: 2;
    }
}

.info-section {
    padding: 16px 0 0;
    border-top: 1px solid var(--merchwork-border-color);
    font-size: 16px;
    line-height: 1.5;
}

.free-delivery .check {
    color: #1a7f37;
    margin-right: 6px;
}

.short-desc a,
.personalization a,
.offers a {

    font-weight: 500;
}

.personalization {
    display: flex;
    align-items: center;
    gap: 8px;
}

.personalization .plus {
    color: var(--merchwork-button-color);
    font-weight: 700;
}

.personalization .price {


    font-size: unset;
    margin: unset;
    padding: unset;
}

.quantity {
    display: flex;
    justify-content: center;

}

.qtylabel {
    font-size: 18px;
    font-weight: 600;
}

.product-detail-grid .qty {
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-detail-grid .qty button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--merchwork-button-color);
    background: var(--merchwork-button-color);
    color: var(--merchwork-button-text);
    cursor: pointer;
    font-size: 20px;
    font-weight: 800;
    line-height: 26px;
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

.product-detail-grid .qty button:hover {
    background-color: var(--merchwork-button-hover-color);
    color: var(--merchwork-button-hover-text);

}

.product-detail-grid .qty input {
    width: 70px;
    text-align: center;
    border: none;
    font-size: 30px;
    padding-left: 17px;
    border-radius: 3px;
}




.btn-primary {
    width: 100%;
    margin: 0px 0 12px;
    padding: 10px 16px;
    background-color: var(--merchwork-button-color);
    color: var(--merchwork-button-text);
    border: none;
    border-radius: 999px;
    font-size: 23px;
    font-family: var(--fontFaimly_button);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--merchwork-button-hover-color);
    color: var(--merchwork-button-hover-text);

}

.btn-primary:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.btn-secondary {
    width: 100%;
    padding: 14px;
    background: #fff;
    color: var(--merchwork-button-color);
    border: 1px solid var(--merchwork-button-color);
    border-radius: 999px;
    font-size: 15px;
    cursor: pointer;
}

.offers {
    margin-top: 10px;
    font-size: 13px;
}


.alternative-list {
    display: grid;
    text-align: center;
    list-style-type: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.alternative-list > a{
    cursor: pointer;
}


.alternative-list .alternative {
    cursor: pointer;
    text-align: center;
    overflow: hidden;
}

.alternative-list .alternative .alternative-image {
    width: 100%;
    aspect-ratio: 1/1;
    min-height: unset;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: outline .2s;
    cursor: unset;
}





/* variant */


.variant-list {
    display: grid;
    text-align: center;
    list-style-type: none;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.variant-list > * {

}

.variant-list > a{
    cursor: pointer;
}


.variant-list .variant {
    cursor: pointer;
    text-align: center;
    overflow: hidden;
}

.variant-list .variant .variant-image {
    width: 100%;
    aspect-ratio: 1/1;
    min-height: unset;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: outline .2s;
    cursor: unset;
}





/* */
.variant-boxes {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(auto, auto);
    justify-content: left;
    align-items: center;
    justify-items: center;
    gap: 6px;
    padding: 0;
    margin: 6px 0px 0px 0px;
    list-style: none;
}

.variant-boxes .variant-box {
    min-width: 42px;
    padding: 7px 13px;
    font-size: 15px;
    color: var(--merchwork-button-text);
    background: var(--merchwork-button-color);
    cursor: pointer;
    font-weight: 500;
    border-radius: 42px;
    height: 42px;
    border: none;
    border: 1px solid var(--merchwork-button-color);
}

.variant-boxes .variant-box.active {
    background-color: var(--merchwork-button-hover-color);
    color: var(--merchwork-button-hover-text);
    border: 1px solid var(--merchwork-button-hover-color);


}

.size-guide {
    margin-left: 12px;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
    position: relative;
    display: inline-block;
    font-weight: 500;
    color: var(--merchwork-link-text);
}

.size-guide-panel {
    position: absolute;
    left: 0;
    top: 28px;
    width: 360px;
    background: #111;

    border-radius: 8px;
    padding: 16px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 10;
}

.size-guide-panel.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.size-guide-panel table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.size-guide-panel th,
.size-guide-panel td {
    padding: 4px 9px;
    border-bottom: 1px solid #333;
    text-align: left;
}

.size-guide-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: 0;

    font-size: 18px;
    cursor: pointer;
}


.checkoutform {
    width: 100%;
    margin: 0 auto;
    display: grid;
    gap: 50px;
    grid-template-columns: 490px minmax(100px, 1fr);
}

@media (max-width: 767px) {
    .checkoutform {
        grid-template-columns: 1fr;
    }
}

.checkoutform fieldset {
    border: 1px solid var(--merchwork-border-color);
    border-radius: 8px;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
    margin: 0px 0px 40px 0px;
}

.night .checkoutform fieldset {


}

.checkoutform legend {
    padding: 0 8px;
    font-weight: 600;

}

.checkoutform label {
    display: flex;
    flex-direction: column;
    font-size: 14px;

    gap: 6px;
}

.checkoutform input,
.checkoutform select {
    height: 44px;
    padding: 0 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;

    transition: border-color 0.2s, box-shadow 0.2s;
}

.checkoutform input:focus,
.checkoutform select:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.08);
}

.checkoutform input[type="text"],
.checkoutform input[type="email"] {
    width: 100%;
}

.checkoutform fieldset label.label-jmeno,
.checkoutform fieldset label.label-delivery,
.checkoutform fieldset label.label-payment {
    grid-column: span 2;
}

@media (max-width: 720px) {
    .checkoutform fieldset {
        grid-template-columns: 1fr;
    }

    .checkoutform fieldset label {
        grid-column: span 1;
    }


}

.checkoutform .payments {
    display: grid;
    text-align: center;
    list-style-type: none;
    grid-template-columns: repeat(auto-fit, minmax(50px, 50px));
    grid-gap: 10px;
    justify-items: start;
    align-items: start;
    justify-content: center;
    margin: 35px 0px;
    padding: 0px;
}

.checkoutform p {
    line-height: 26px;
    font-size: 16px;
    font-weight: 300;
}

.ordertable {
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
}

.ordertable th {
    background-color: rgb(231,231,231);
    font-size: 14px;
    font-weight: normal;
    border-bottom: 1px solid rgb(204,204,204);
    color: gray;
    padding: 15px 5px 5px 5px;
    text-align: left;
}

.ordertable td,
.ordertable th {
    padding: 10px 15px;
}

.ordertable td {
    font-size: 14px;
    font-weight: normal;
    border-bottom: 1px solid rgb(231,231,231);
}

.ordertable td .itemname {
    font-size: 14px;
    font-weight: bold;

}

.ordertable td.image-column {
    text-align: center;
    padding-top: 10px;
    width: 140px;
    padding-left: 0;
    padding-right: 0;
}

.ordertable td.name-column {
    padding-left: 20px;
}

.ordertable td.qty-column,
.ordertable th.qty-column {
    text-align: right;
}

.ordertable td.price-column,
.ordertable th.price-column {
    text-align: right;
}

.ordertable td.price-column.tdyourprice {
    font-size: 18px;
}

.ordertable tr.totalrow td {
    border-bottom: 1px solid rgb(231,231,231);

}

.ordertable td.total-column {
    text-align: right;
}

@media (hover: none), (max-width: 767px) {
    .ordertable .image-column {
        display: none;
    }
}

.order-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px 30px;
    margin: 20px 0 30px 0;
    padding: 15px 20px;
    background-color: rgb(245,245,245);
    border: 1px solid rgb(231,231,231);
}

.order-summary > div {
    font-size: 14px;
    color: #333;
}

.order-summary strong {
    display: inline-block;
    min-width: 90px;
    font-weight: normal;
    color: gray;
}

@media (max-width: 767px) {
    .order-summary {
        grid-template-columns: 1fr;
        padding: 15px;
    }
}
.product-icons {
    display: flex;
    gap: 6px;
    margin: 0px 0;
    align-items: center;
}

.product-icons .icon {
    width: 35px;
    height: 35px;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.night .product-icons .icon{
    background-color: white;
    filter: invert(1);
}

/* sex */
.icon.sex-F {
    background-image: url('/img/ico/sex_icon_f.png');
}
.icon.sex-M {
    background-image: url('/img/ico/sex_icon_m.png');
}
.icon.sex-U {
    background-image: url('/img/ico/sex_icon_u.png');
}
.icon.sex-K {
    background-image: url('/img/ico/sex_icon_k.png');
}


.product-icons.figure-shape .icon {
    width: 33px;
    height: 55px;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
}

/* bodyshape / fit */
.icon.fit-1 {
    background-image: url('/img/ico/fit_icon_1.png');
}
.icon.fit-2 {
    background-image: url('/img/ico/fit_icon_2.png');
}
.icon.fit-3 {
    background-image: url('/img/ico/fit_icon_3.png');
}
.icon.fit-4 {
    background-image: url('/img/ico/fit_icon_4.png');
}
.icon.fit-5 {
    background-image: url('/img/ico/fit_icon_5.png');
}
.icon.fit-6 {
    background-image: url('/img/ico/fit_icon_6.png');
}
.icon.fit-7 {
    background-image: url('/img/ico/fit_icon_7.png');
}
.icon.fit-8 {
    background-image: url('/img/ico/fit_icon_8.png');
}
.icon.fit-9 {
    background-image: url('/img/ico/fit_icon_9.png');
}

.swich-day-night {
    display: inline-block;
    width: 26px;
    height: 26px;
    background-image: url('/img/ico/dn-icon.png');
    background-size: contain;
    margin: 4px;
    cursor: pointer;
    transition: filter 0.1s linear;
    filter: invert(1);
}

html.night .swich-day-night {
    filter: invert(1);
}
html.night .swich-day-night:hover {
    filter: invert(0);
}

html.day .swich-day-night {
    filter: invert(0);
}

html.day .swich-day-night:hover {
    filter: invert(1);
}

#card-element {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
}

#card-errors {
    color: #e5424d;
    font-size: 13px;
    margin-top: 6px;
}

#dpd-widget-container {
    min-height: 600px;
}


.checkoutform button {
    width: auto;
    margin: 20px 0 12px;
    padding: 16px 54px;
    background: var(--merchwork-button-color);
    color: white;
    border: 1px solid var(--merchwork-button-color);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;

}

.checkoutform button:hover {
    background: black;
    color: white;
}


.checkoutform .cardlabel {
    text-align: center;
    margin: 0px 0px 13px;
}

.checkoutform .cardlabel .payments {
    padding: 0px;
    margin: 18px 0px;
}


.checkoutform .cardlabel span {
    display: flex;
    align-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.checkoutform .cardlabel span svg{
    margin: 0px 5px;
}

.night .checkoutform .cardlabel span svg{
    filter: invert(1);
}

.bottom-checkout{
    margin: 80px 5px 20px 5px;
}

.bottom-checkout p{
    font-size: 14px;
    text-align: center;
    line-height: 21px;
}

.night .bottom-checkout p{
    opacity: 0.5;
}