@import url(/system/assets/font-awesome-4.5.0/css/font-awesome.min.css);

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: 'HelveticaNeue', sans-serif;
}

:root {
    --input-radius: 10px;
    --a-color: #00b8f1;
    --a-hover-color: #005ba3;
    --box-radius: 20px;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

strong {
    font-weight: bold;
}

body {
    line-height: 1;
    color: #333;
}

em {
    /*Редактор при установке i ставит em*/
    font-style: italic;
}

ul {
    list-style: none;
}

ol {
    margin-left: 2.5em;
    list-style: none;
}

ol li {
    font-size: 1em;
    margin: 1em 0;
    position: relative;
}

ol li:before {
    position: absolute;
    content: '1';
    color: #fff;
    margin: -0.25em 0 0 -2em;
    line-height: 1.5em;
    overflow: visible;
    width: 1.5em;
    height: 1.5em;
    text-align: center;
    display: block;
    padding: 0;
    font-size: 1em;
    font-weight: bold;
    background-color: #3d88bf;
    border-radius: 5px;

}

ol.breadcrumbs li:before {
    display: none;
}

ol li:nth-child(2):before {
    content: '2';
}

ol li:nth-child(3):before {
    content: '3';
}

ol li:nth-child(4):before {
    content: '4';
}

ol li:nth-child(5):before {
    content: '5';
}

ol li:nth-child(6):before {
    content: '6';
}

ol li:nth-child(7):before {
    content: '7';
}

ol li:nth-child(8):before {
    content: '8';
}

ol li:nth-child(9):before {
    content: '9';
}

ol li:nth-child(10):before {
    content: '10';
}

ol li:nth-child(11):before {
    content: '11';
}

ol li:nth-child(12):before {
    content: '12';
}

ol li:nth-child(13):before {
    content: '13';
}

ol li:nth-child(14):before {
    content: '14';
}

ol li:nth-child(15):before {
    content: '15';
}

ol li:nth-child(16):before {
    content: '16';
}

ol li:nth-child(17):before {
    content: '17';
}

ol li:nth-child(18):before {
    content: '18';
}

ol li:nth-child(19):before {
    content: '19';
}

ol li:nth-child(20):before {
    content: '20';
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('/fonts/HelveticaNeue-Bold.eot');
    src: url('/fonts/HelveticaNeue-Bold.eot?#iefix') format('embedded-opentype'),
    url('/fonts/HelveticaNeue-Bold.woff2') format('woff2'),
    url('/fonts/HelveticaNeue-Bold.woff') format('woff'),
    url('/fonts/HelveticaNeue-Bold.ttf') format('truetype'),
    url('/fonts/HelveticaNeue-Bold.svg#helveticaneuecyrbold') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('/fonts/HelveticaNeue-Light.eot');
    src: url('/fonts/HelveticaNeue-Light.eot?#iefix') format('embedded-opentype'),
    url('/fonts/HelveticaNeue-Light.woff2') format('woff2'),
    url('/fonts/HelveticaNeue-Light.woff') format('woff'),
    url('/fonts/HelveticaNeue-Light.ttf') format('truetype'),
    url('/fonts/HelveticaNeue-Light.svg#helveticaneuecyrlight') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'HelveticaNeue', sans-serif;
    font-weight: normal;
    font-size: 14pt;
}

@media only screen and (max-width: 1000px) {
    body {
        font-size: 13pt;
    }
}

@media only screen and (max-width: 800px) {
    body {
        font-size: 12pt;
    }
}


sup {
    font-size: 0.6em;
    vertical-align: top;
    display: inline-block;
    margin-top: -0.4em;
}

sub {
    font-size: 0.6em;
    display: inline-block;
    margin-bottom: -0.4em;
    vertical-align: bottom;
}

input, select, textarea {
    font-family: 'HelveticaNeue', sans-serif;
    font-weight: normal;
    font-size: 1em;
}

div.center,
div.maincontainer {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    box-sizing: border-box;
}

div.center div.center,
div.maincontainer div.maincontainer {
    padding: 0;
    max-width: unset;
    min-width: unset;
}


.dashed {
    display: inline-block;
    border-bottom: 1px dashed var(--a-color);
    cursor: pointer;
}

a, .dashed {
    color: var(--a-color);
    transition: all 300ms ease-in-out 0s;
    outline: none;
}

a {
    text-decoration: none;
}

a:hover, .dashed:hover {
    color: var(--a-hover-color);
    transition: all 300ms ease-in-out 0s;
    border-color: var(--a-hover-color);
}

a:hover {
    text-decoration: none !important;
}

a.tg {
    display: block;
    margin-bottom: 1em;
    position: relative;
    white-space: nowrap;
}

a.tg:after {
    content: '';
    display: inline-block;
    /*position: absolute;*/
    /*right: 0;*/
    margin-left: 2px;
    width: 1em;
    height: 1em;
    background: url("/images/logo/telegram.svg") no-repeat center;
    background-size: contain;
}

p {
    line-height: 18pt
}

small {
    font-size: 0.8em;
}

big {
    font-size: 1.5em;
}

h1 {
    font-weight: normal;
    font-size: 1.7em;
    text-transform: uppercase;
    padding: 10px 0;
    line-height: 1em;
    display: inline-block;
    font-family: 'HelveticaNeue';
}

.breadcrumbs + h1 {
    padding-top: 10px;
}

h2, .blockTitle {
    font-size: 1.4em;
    color: #333;
    line-height: 1.23;
    text-transform: uppercase;
    font-family: 'HelveticaNeue';
}

.blockTitle {
    margin-bottom: 1em;
}

h2 {
    margin: 2em 0 1em;
}

h3 {
    font-size: 1.1em;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1em;
    margin: 2em 0 1em;
}

* > h2:first-child,
* > h3:first-child {
    margin-top: 0;
}

.item-title {
    font-weight: 400;
    font-size: 1.2em;
    line-height: 1.23;
}

a.btn, .button {
    border: 1px solid var(--a-color);
    text-transform: uppercase;
    display: inline-block;
    font-size: 0.9em;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    margin: 25px 0;
    cursor: pointer;
    color: var(--a-color);
    line-height: 1.5em;
    padding: calc((2.65em - 1.5em) / 2) 1em;
    border-radius: var(--input-radius);
}

a.btn:hover, .button:hover {
    border-color: var(--a-hover-color);
    color: var(--a-hover-color);
    transition: all 300ms ease-in-out 0s;
    text-decoration: none;
}

.helper .buttons .button {
    margin: 0;
}

input[type=text], input[type=email], input[type=password], select, .select-wrapper, textarea, input[type=file],
[contenteditable] {
    box-sizing: border-box;
    border: 1px solid gray;
    padding: 0 1em;
    background-color: rgb(246, 246, 246);
    height: 2.5em;
    line-height: 2.5em;
    outline: none;
    border-radius: var(--input-radius);
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    text-align: left;
}

[contenteditable] {
    line-height: 1.2em;
    min-height: 2.5em;
    height: auto;
    padding-top: 0.6em;
    padding-bottom: 0.6em;
}

textarea {
    line-height: 1.2em;
    padding: 0.5em 1em;
    height: 10em;

}

input.warning, textarea.warning {
    border-color: red;
}

input[type="submit"], input[type="button"],
.button.blue {
    box-sizing: border-box;
    padding: 0 1em;
    line-height: 2.5em;
    outline: none;
    height: 2.5em;
    color: white;
    background: var(--a-hover-color);
    border: 1px solid var(--a-hover-color);
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: all 300ms ease-in-out 0s;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    border-radius: 10px;
}

input[type="submit"]:hover, input[type="button"]:hover, .button.blue:hover {
    background: var(--a-color);
    border-color: var(--a-color);
    transition: all 300ms ease-in-out 0s;
}

/*checkbox*/

input[type="checkbox"],
input[type="radio"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    display: block;
    /*float: left;*/
    /*margin-right: -2em;*/
    opacity: 0;
    width: 1em;
    z-index: -1;
    position: absolute;
}

input[type="checkbox"] + *,
input[type="radio"] + * {
    text-decoration: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: normal;
    margin-left: 1.5em;
    position: relative;
    border-bottom: 1px dotted #333;
    line-height: 1.3em;
}

input[type="checkbox"] + *:empty, input[type="radio"] + *:empty {
    margin-left: 1em;
}

input[type="checkbox"] + *:before,
input[type="radio"] + *:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    border: solid 1px #333;
    content: '';
    height: 1.2em;
    margin-left: -1.5em;
    position: absolute;
    text-align: center;
    width: 1.2em;
    line-height: 1.15em;
    box-sizing: border-box;
}

input[type="checkbox"]:checked + *:before,
input[type="radio"]:checked + *:before {
    border-color: var(--a-color);
    background-color: var(--a-color);
    color: #fff;
    content: '\f00c';
}

input[type="checkbox"]:focus + *:before,
input[type="radio"]:focus + *:before {
    border-color: #333;
    box-shadow: none;
}

input[type="checkbox"]:disabled + *,
input[type="radio"]:disabled + * {
    opacity: 0.5;
    color: #999;
}

input[type="radio"] + *:before {
    border-radius: 100%;
}

/*checkbox*/

nav {
    position: fixed;
    width: 100%;
    background: #fff;
    top: 0;
    z-index: 100;
    box-shadow: 0 0 10px gray;
}

nav .mainmenu {
    line-height: 50px;
    height: 50px
}

nav .catalogmenu {
    background-color: #bbe9f8;
}

nav menu.mainmenu {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    box-sizing: border-box;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -moz-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -moz-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

nav menu.mainmenu .elements {
    position: relative;
    height: 50px;
}

nav menu.mainmenu > .elements > .element {
    display: inline-block;
    position: relative;
}

nav menu.mainmenu > .elements > .element.catalog {
    display: inline;
    position: static;
}


nav .catalogmenu menu {
    line-height: 30px;
    font-size: 0.75em;
    -moz-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-end;
}

nav .catalogmenu menu .element {
    position: relative;
}

nav .menu-item {
    text-transform: uppercase;
    padding: 0 0.5em;
    margin: 0 2px;
    line-height: inherit;
    text-decoration: none;
    font-weight: normal;
    font-size: 0.8em;
    color: #333;
    border-radius: 1px;
    /*transition: none;*/
    white-space: nowrap;
    display: inline-block;
}

nav menu.submenu {
    display: none;

    transition: none;
    z-index: 1;
    position: absolute;
    /*left: -16em;*/

    box-sizing: border-box;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -moz-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -moz-align-items: stretch;
    -webkit-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 1em;
    line-height: 1em;
    text-align: left;
    max-height: calc(100vh - 50px - 2em);
    overflow: auto;
    box-shadow: 0 30px 30px -30px gray;
    top: 50px;

}

nav menu.submenu.catalog {
    right: 0;
    min-width: 25em;
}

nav menu.submenu.normal {
    /*min-width: 12em;*/
}

nav menu.submenu > *:nth-child(odd) {
    /*background-color: #0d95e8;*/
}

nav .mainmenu a.submenu-item {
    font-size: 0.8em;
    /*line-height: 2em;*/
    /*margin: 0 2px;*/
    /*font-weight: normal;*/
    /*white-space: nowrap;*/
    /*text-decoration: underline;*/
    /*color: #333;*/
}

nav .mainmenu .submenu.catalog a.submenu-item.title {
    /*font-size: 1em;*/
    font-weight: bold;
    display: block;
    /*text-align: center;*/
    /*color:#666;*/
}

nav a.submenu {
    padding: 0 0.5em;
    margin: 0 2px;
    line-height: inherit;
    font-weight: normal;
    white-space: nowrap;
    text-decoration: none;
    color: #333;
}

nav a.submenu:hover {
    background-color: #7ecff3;
}

nav a.menu-item:hover {
    text-shadow: none;
    color: var(--a-hover-color);
}

nav .element:hover .submenu {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
}

nav .mainmenu .submenu.normal > .element {
    width: 100%;
    white-space: nowrap;
}

nav .mainmenu .submenu.normal > .element .submenu-item {
    color: #333;
    margin: 0.5em 1em;
    display: block;
    text-transform: uppercase;
}

nav .mainmenu .submenu.normal > .element .submenu-item:hover {
    text-shadow: none;
    color: var(--a-hover-color);
}

nav .mainmenu .submenu.catalog > .element {
    width: calc(50% - 2em);
    margin: 0.5em 1em;
}

nav .mainmenu .element-products {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    box-sizing: border-box;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -moz-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -moz-align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    /*-moz-flex-wrap: nowrap;*/
    /*-webkit-flex-wrap: nowrap;*/
    /*-ms-flex-wrap: nowrap;*/
    /*flex-wrap: nowrap;*/
}

nav .mainmenu .element-products .product-item {
    /*text-align: center;*/
    font-size: 0.8em;
    /*width: 120px;*/
    color: #333;
    padding: 0.25em 0;
}

nav .mainmenu .element-products .product-item:hover {
    color: var(--a-hover-color);
}

nav .mainmenu .element-products .product-item img {
    max-height: 70px;
    /*display: inline-block;*/
    display: none;
}

nav div.center,
nav div.maincontainer {
    text-align: right;
}

nav .feedback {
    display: inline-block;
    margin-left: 4px;
    border: 2px solid var(--a-hover-color);
    background: var(--a-hover-color);
    padding: 0.5em;
    cursor: pointer;
    color: white;
    text-transform: uppercase;
}

nav .feedback:hover {
    border-color: white;
    background: white;
    color: var(--a-hover-color);
}

nav .phone {
    font-size: 0.9em;
    text-decoration: none;
    color: #333;
    display: inline-block;
    position: absolute;
    left: 2em;
    margin-top: 1px;
}

nav .phone:hover {
    color: var(--a-hover-color);
}

nav .phone:after {
    font-family: FontAwesome;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;

    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
    content: '\f095';
    /*position: absolute;*/
    margin-left: 0.5em;
    transition: all 300ms ease-in-out 0ms;
    opacity: 0;
}

nav .phone:hover:after {
    opacity: 1;
}

@media screen and (min-width: 890px) and (max-width: 1040px) {
    nav .phone span {
        display: none;
    }

    nav .phone:after {
        opacity: 1;
    }
}

nav > *, nav > *:hover {
    transition: all 300ms ease-in-out 0s;
}

#navbutton {
    display: none;
}


nav .element .menu-item.icon > i {
    display: none;
}

.mainmenu .cartcount {
    background: var(--a-color) none repeat scroll 0% 0%;
    font-size: 0.9em;
    color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    min-width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    display: inline-block;
    margin-left: 0.25em;
}

@media screen and (min-width: 891px) {
    nav .hideOnFullScreen {
        display: none !important;
    }
}

@media screen and (max-width: 890px) {
    nav .catalogmenu {
        display: none;
    }

    #navbutton {
        display: block;
        transition: all 300ms ease-in-out 0s;
        font-size: 1.5em;
    }

    nav menu.mainmenu .elements {
        display: none;
        position: absolute;
        top: 50px;
        background-color: #fff;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        left: 0;
        width: 100%;
        box-shadow: 0 30px 30px -30px gray;

        max-height: calc(100vh - 100px);
        overflow: auto;
        padding: 1em 0;
        box-sizing: border-box;
        height: auto;
    }

    #navbutton.clicked {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);

    }

    #navbutton.clicked + .elements {
        display: block;
    }

    nav menu.mainmenu > .elements > .element {
        display: block;
        line-height: 2em;
        padding: 0 1em;
        position: static;
    }

    nav menu.submenu {
        position: relative;
        left: unset;
        border: none;
        box-shadow: none;
        overflow: auto;
        max-height: none;
        padding: 0.5em;
        -moz-flex-direction: row;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -moz-align-items: flex-start;
        -webkit-align-items: flex-start;
        -ms-align-items: flex-start;
        align-items: flex-start;
        -moz-justify-content: flex-end;
        -webkit-justify-content: flex-end;
        -ms-justify-content: flex-end;
        justify-content: flex-end;
        top: 0;
    }

    nav menu.submenu.catalog {
        border-bottom: 1px solid #ccc;
        border-top: 1px solid #ccc;
    }


    nav menu.submenu.catalog {
        right: unset;
        min-width: unset;
        padding: 0.5em 0;
        margin: 0.5em 0;
    }

    nav menu.mainmenu > .elements > .element.catalog {
        display: block;
        position: static;
    }

    nav .mainmenu .submenu.normal {
        padding: 0;
    }

    nav .mainmenu .submenu.normal > .element .submenu-item {
        margin: 0;
    }

    nav .mainmenu .submenu.normal > .element {
        width: 100%;
    }

    /*nav .element:hover .submenu {*/
    /*display: none;*/
    /*}*/
    nav .element .menu-item + .submenu {
        display: -moz-flex;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
    }

    nav .mainmenu .submenu > .element {
        width: 50%;
        padding: 0 0.5em;
        margin: 0.5em 0;
        box-sizing: border-box;
    }

    nav .mainmenu .submenu.catalog > .element {
        width: 50%;
        margin: 0.5em 0;
    }

    nav .mainmenu .element-products .product-item img {
        display: none;
    }


    nav .mainmenu .element-products {
        display: -moz-flex;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        box-sizing: border-box;
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -moz-justify-content: center;
        -webkit-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -moz-align-items: flex-end;
        -webkit-align-items: flex-end;
        -ms-align-items: flex-end;
        align-items: flex-end;
        -moz-flex-wrap: nowrap;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    nav .mainmenu a.submenu-item.title {
        font-size: 0.9em;
        text-align: right;
    }

    nav .mainmenu .normal a.submenu-item.title {
        font-size: 0.8em;
    }

    nav .mainmenu .element-products .product-item {
        text-align: right;
        width: auto;
        margin: 0.3em 0;
    }

    nav .mainmenu a.submenu-item {
        line-height: 1em;
        white-space: normal;
        margin: 0 0 0.5em;
    }

    nav .element .menu-item.icon > i {
        display: inline;
    }

    nav .hideOnSmallScreen {
        display: none !important;
    }
}

menu .logo {
    transition: visibility 0ms ease 0ms;
    position: absolute;
    width: 6em;
    height: 50px;
    left: 2em;
    /*visibility: hidden;*/
    background: transparent url("/img/alkraft.png") no-repeat;
    background-position: left center;
    background-size: contain;
}

menu .logo.showed {
    visibility: visible;
    transition-delay: 300ms;
}

menu .logo.showed + .phone {
    margin-left: 8em;
}

header {
    position: relative;
    padding-top: 40px;
    background: #eee;
    border-bottom: 5px solid #f0f0f0
}

body > section:first-of-type {
    margin-top: 50px; /*Высота nav-бара*/
}

.main-slider {
    height: 600px;
}

.thin-slider {
    height: 500px;
}

.swiper-slide {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

}

.swiper-slide .title {
    display: block;
    /*background-color: rgba(255, 255, 255, 0.4);*/
    /*padding: 0.5em;*/
}

.swiper-slide[style*=comfort-interior1-opened] {
    background-position: center 75%;
}

.swiper-slide[style*=comfort-interior2-opened] {
    background-position: center 90%;
}

.swiper-slide[style*=inspektor-interior1-opened] {
    background-position: center 75%;
}

.swiper-slide[style*=comfort-r-interior-closed] {
    background-position: center 80%;
}

.swiper-slide[style*=shtukatur-interior] {
    background-position: center top;
}

.swiper-slide[style*=santehnik-interior] {
    background-position: center bottom;
}

.swiper-slide[style*=brigadir] {
    background-position: left bottom;
}

.thin-slider .swiper-slide[style*=comfort-interior1-opened] {
    background-position: center 80%;
}

.thin-slider .swiper-slide[style*=comfort-interior2-opened] {
    background-position: center 95%;
}

.thin-slider .swiper-slide[style*=inspektor-interior1-opened] {
    background-position: center 80%;
}

.thin-slider .swiper-slide[style*=comfort-r-interior-closed] {
    background-position: center 80%;
}

.thin-slider .swiper-slide[style*=inzhener-interior] {
    background-position: center 60%;
}

.header-field {
    margin-top: -550px !important;
    height: 550px;
    position: relative;
    z-index: 90;
    pointer-events: none;
}

#headlogo {
    padding-top: 70px;
}

#headlogo img {
    width: auto;
    height: 40px;
    margin: 0px 0;
}

#top #headlogo img {
    width: 300px;
    height: auto;

}

#top .header-field {
    position: relative;
}

#top .header-field h1 {
    right: 0;
    width: 100%;
    box-sizing: border-box;
    max-width: 500px;
    line-height: 1em;
    overflow: hidden;
    /*border: 2px solid #00a6e1;*/
    padding: 20px;
    margin-top: 40px;
    background-color: rgba(255, 255, 255, 0.5);
    font-size: 1.7em;
}

section.slider.root {
    border-bottom: 5px solid #f0f0f0;
}

section.slider.root .static-wrapper {
    align-items: flex-start;
    max-width: 1280px;
    padding: 0 40px;
    box-sizing: border-box;
    margin: auto;
    position: relative;
    z-index: 2;
}

section.slider.root .static-wrapper .description {
    max-width: 500px;
    width: auto;
    margin: 2em 2em 0 0;
    position: absolute;
    top: 0;
}

section.slider.root .static-wrapper .description:before {
    content: '';
    background: url("/img/logo.svg") no-repeat;
    width: 300px;
    height: 150px;
    display: block;
}

section.slider.root .static-wrapper .description .wrapper {
    background-color: rgba(255, 255, 255, 0.5);
    font-size: 1.3em;
    padding: 20px;
    line-height: 1.2em;
    color: #000;
    text-transform: uppercase;
    text-align: left;
    text-shadow: none;
    font-family: 'HelveticaNeue';
    font-weight: normal;
}

.about {
    padding: 50px 0;
}

.about div.center div.withborder,
.about div.maincontainer div.withborder {
    padding: 25px;
    border: 2px solid #eee;
}

.col1 {
    width: 60%
}

.col2 {
    width: 40%
}

.about div.center h2,
.about div.maincontainer h2 {
    padding-top: 0;
}

.partners {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-justify-content: space-around;
    -webkit-justify-content: space-around;
    -ms-justify-content: space-around;
    justify-content: space-around;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.partners img {
    width: 50%;
    height: auto;
    object-fit: contain;

}

#production h2 {
    color: white;
}

.product-list {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    position: relative;
    z-index: 90
}

.product-list div {
    background: gray;
    transition: all 300ms ease-in-out 0s;
    text-transform: uppercase;
    font-size: 1.1em;
    font-weight: bold;
    width: 20%;
    line-height: 50px;
    height: 50px;
    text-align: center;
    color: white;
    cursor: pointer;
    user-select: none;
}

.product-list div.active {
    transition: all 300ms ease-in-out 0s;
    border-bottom-color: white;
    border-top-color: #eee;
    border-left-color: #eee;
    border-right-color: #eee;
    background: white;
    color: #ccc;
    pointer-events: none;
    font-weight: normal;
}

.product-list div:hover {
    transition: all 300ms ease-in-out 0s;
    background: var(--a-hover-color);
    border-color: var(--a-hover-color);
}

.products-items {
    margin-top: 0px;
}

.products-items .first-level {
    position: relative;
    background: white;
    padding: 25px;
    box-sizing: border-box;
    min-height: 1000px;
    pointer-events: none;
}

.products-items .first-level.swiper-slide-active {
    pointer-events: all;
    z-index: 9999;
}

.products-items .swiper-slide h2 {
    color: gray !important
}

.products-items .guarantee-age {
    width: 128px;
    height: 128px;
    position: absolute;
    z-index: 99999;
    top: 25px
}

#company {
    padding: 100px 0;
}

.products-items .swiper-slide h3 {
    font-size: 1.3em;
    color: #ccc;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}

/*
.swiper-slide {
    pointer-events: none;
}

.swiper-slide-active {
    pointer-events: auto;
}
*/
.products-items .inside-swiper .swiper-slide {
    z-index: 10
}

.products-items .swiper-slide p {
    padding: 25px 0;
}

ul.info,
ul.info1,
ul.info2 {
    padding: 1em 0;
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    box-sizing: border-box;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -moz-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

}

ul.info li,
ul.info1 li,
ul.info2 li {
    width: 50%;
    box-sizing: border-box;
    padding: 1em 1em 1em 3em;
    background: url(/img/check-icon.svg) left center no-repeat;
    background-size: 30px 22px;
}

ul.info1 li {
    width: 100%;
    padding: 0.5em 0 0.5em 3em;
}

ul.info1 li + li {
    /*padding-top: 1.5em;*/
}

ul.info li:nth-child(even),
ul.info2 li:nth-child(even) {
    padding: 1em 0 1em 4em;
    background-position: 1em center;
}

@media only screen and (max-width: 800px) {
    ul.info li {
        width: 100%;
    }

    ul.info li:nth-child(even) {
        padding: 1em 1em 1em 3em;
        background-position: left center;
    }
}

.gradient {
    background: var(--a-color);
    background: -moz-linear-gradient(top, var(--a-color) 0%, #0087c6 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, var(--a-color)), color-stop(100%, #0087c6));
    background: -webkit-linear-gradient(top, var(--a-color) 0%, #0087c6 100%);
    background: -o-linear-gradient(top, var(--a-color) 0%, #0087c6 100%);
    background: -ms-linear-gradient(top, var(--a-color) 0%, #0087c6 100%);
    background: linear-gradient(to bottom, var(--a-color) 0%, #0087c6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00b8f1', endColorstr='#0087c6', GradientType=0);
}

.pattern {
    background: url(/img/pattern1.svg) top center no-repeat;
    background-size: cover;
    height: 100%;
}

.pattern h2 {
    color: white
}

.guarantee h2 {
    color: white;
}

#others {
    background: #eee;
    min-height: 240px;
}

.feedback-field-top {
    display: none;
    position: relative;
    top: 8px;
    transition: none;
    border-bottom: 5px solid gray;

}

.feedback-field-top h2 {
    color: white;
    text-align: center;
    text-transform: uppercase;
}

.feedback-field-top section {
    transition: none;
    padding: 50px 0;
}

.feedback-field-top .close {
    right: 40px;
    transition: none;
}

.xls {
    font-size: 1.1em;
    background: url(/img/xls-icon1.svg) left center no-repeat;
    line-height: 100px;
    height: 100px;
    padding-left: 100px;
    display: block;
    margin-left: 50px;
    font-weight: bold;
}

.xls:hover {
    background: url(/img/xls-icon2.svg) left center no-repeat;
}

.close {
    position: absolute;
    width: 48px;
    height: 48px;
    background: url(/img/close-icon1.svg);
    cursor: pointer;
    transition: none;
}

.close:hover {
    background: url(/img/close-icon2.svg);
}

#contacts div.center,
#contacts div.maincontainer {
    height: 380px;
    margin-top: -380px;
    position: relative;
    pointer-events: none;
}

#contacts .logo-footer {
    width: 150px;
    height: auto;
    margin-bottom: 25px;
    /*display: none;*/
}

#contacts #map {
    height: 380px;
}

#contacts .info {
    position: relative;
    top: 50px;
    width: 40%;
    background: rgba(255, 255, 255, .75);
    padding: 25px;
    pointer-events: auto;
    font-size: 0.9em;
}

#contacts .info p {
    line-height: 16pt
}

#contacts .dev {
    position: absolute;
    text-decoration: none;
    color: black;
    font-weight: bold;
    left: 40px;
    bottom: 15px;
    font-size: 0.75em;
    line-height: 11pt;
    padding-left: 40px;
    background: url(/img/lp-logo.svg) center left no-repeat;
    opacity: .2;
    pointer-events: auto;
}

#contacts .dev:hover {
    opacity: 1;
}

#video {
    display: none;
}

#video iframe {
    width: 853px;
    height: 480px;
}

@media only screen and (min-width: 981px) and (max-width: 1279px) {
    div.center,
    div.maincontainer {
        min-width: 980px;
        max-width: 1279px;
    }

    body {
        min-width: 980px;
        max-width: 1279px;
    }

    menu .logo.showed {
        display: block;
    }

    .xls {
        line-height: initial;
        background-size: 80px auto;
        background-position: center top;
        height: auto;
        padding-left: 0;
        padding-top: 100px;
        text-align: center;
    }

}

@media only screen and (min-width: 768px) and (max-width: 980px) {
    body {
        min-width: 768px;
        max-width: 980px;
    }

    div.center,
    div.maincontainer {
        min-width: 768px;
        max-width: 980px;
        padding: 0 20px;
    }

    nav a.menu, nav a.submenu {
        padding: 0 0.25em;
    }

    nav .phone {
        left: 1em
    }

    menu .logo {
        left: 1em;
    }

    .about div.center .withborder,
    .about div.maincontainer .withborder {
        -moz-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .col1:first-child {
        margin-bottom: 30px;
    }

    .col1 {
        width: 100% !important;
        padding: 0 !important;
    }

    .products-items .guarantee-age {
        width: 96px;
        height: 96px;
    }

    .inside-swiper img {
        max-width: 640px;
    }

    .product-list div {
        font-size: 15px;
    }

    .products-items .swiper-slide h3 {
        font-size: 16px;
    }

    .xls {
        line-height: initial;
        background-size: 80px auto;
        background-position: center top;
        height: auto;
        padding-left: 0;
        padding-top: 100px;
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    div.center,
    div.maincontainer {
        min-width: 320px;
        max-width: 767px;
        padding: 0 20px;
    }

    body {
        min-width: 320px;
        max-width: 767px;
    }

    #video iframe {
        width: 640px;
        height: 360px;
    }

    nav a.menu, nav a.submenu {
        padding: 0 0.25em;
    }

    menu .logo {
        left: 1em;
    }

    menu .logo + .phone {
        left: 1em;
    }

    .product-list div {
        font-size: 14pt;
    }

    #production {
        overflow-x: hidden;
    }

    .about div.center .withborder,
    .about div.maincontainer .withborder {
        -moz-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .products-items .guarantee-age {
        width: 96px;
        height: 96px;
    }

    .inside-swiper .swiper-slide {
        max-width: 100%;
        width: 100% !important
    }

    .inside-swiper img {
        max-width: 540px;
    }

    .product-list div {
        font-size: 15px;
    }

    .products-items .swiper-slide h3 {
        font-size: 16px;
    }

    .xls {
        line-height: initial;
        background-size: 80px auto;
        background-position: center top;
        height: auto;
        padding-left: 0;
        padding-top: 100px;
        text-align: center;
    }
}

.icon {
    text-decoration: none;
    border-bottom: none;
    position: relative;
}

.icon::before {
    font-family: FontAwesome;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;

    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
}

.icon > .label {
    display: none;
}

ol.breadcrumbs {
    font-size: 0.8em;
}

ol.breadcrumbs li.home {
    font-size: 1.2em;
}

ol.breadcrumbs .fa-breadcrumb-separator {
    margin: 0 0.7em;
}

.fa-breadcrumb-separator::before {
    content: "\f105";
}

footer {
    position: relative;
    border-top: 1px solid #e6e6e6;
    background-color: #f0f0f0;
    padding: 0em 0;
    font-size: 11pt;
}

footer a {
    color: #333;
    white-space: nowrap;
}

footer a:hover {
    color: var(--a-color);
}

footer div.center,
footer div.maincontainer {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -moz-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -moz-align-items: stretch;
    -webkit-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -moz-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    background-color: inherit;
}

footer div.center > *:last-child,
footer div.maincontainer > *:last-child {
    text-align: left;
    background-image: -moz-linear-gradient(to right, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
    background-image: -webkit-linear-gradient(to right, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
    background-image: -ms-linear-gradient(to right, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0));
    line-height: 1.2em;
    padding: 3em 3em 4em;
    max-width: 30%;
}

@media only screen and (max-width: 640px) {
    footer div.center,
    footer div.maincontainer {
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    footer div.center > *:last-child,
    footer div.maincontainer > *:last-child {
        background-image: none;
    }
}

footer div.center > *:last-child a,
footer div.maincontainer > *:last-child a {
    white-space: nowrap;
}

footer .copyrights > * {
    margin-bottom: 0.5em;
}

footer .catalogmenu {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -moz-align-items: stretch;
    -webkit-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -moz-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 3em 0 4em;
    width: 70%;
    line-height: 1.2em;

}

@media screen and (max-width: 1100px) {
    footer div.center > *:last-child,
    footer div.maincontainer > *:last-child {
        max-width: 33.33%;
    }
}

@media screen and (max-width: 920px) {
    footer .catalogmenu {
        -moz-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -moz-justify-content: center;
        -webkit-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        width: auto;
        padding: 3em;
    }

    footer .catalogmenu > div {
        margin-bottom: 2em;
        width: 50%;
        padding-right: 2em;
    }
}

@media only screen and (max-width: 640px) {

    footer .catalogmenu {
        padding-bottom: 0;
    }

    footer .catalogmenu > div {
        margin-bottom: 2em;
        width: 100%;
        padding-right: 2em;
    }

    footer div.center > *:last-child,
    footer div.maincontainer > *:last-child {
        max-width: none;
        padding-top: 0;
    }
}

footer .catalogmenu > * {
    padding-right: 3em;
}

footer .catalogmenu .withkids + .withkids {
    margin-top: 0.5em;
}

footer .catalogmenu .withkids div > * {

    margin: 0.5em 0;

}

footer .catalogmenu div > div {
    margin-bottom: 0.5em;
}

footer .catalogmenu a {
    display: inline;
}

footer .catalogmenu a.razdel {
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    font-size: 0.9em;
    line-height: 1.1em;
}

footer .catalogmenu .bigphone {
    font-size: 1.5em;
    border-bottom: none;
    font-weight: bold;
    max-width: 100%;
    display: block;
    white-space: nowrap;
    margin-bottom: 0.5em;
}

.fileicon:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
    font-size: 1.2em;
    margin-right: 0em;
    width: 1em;
    line-height: 1em;
    display: inline-block;
    text-align: center;
    vertical-align: baseline;
}

.fileicon *:before {
    display: none;
}

.unknownicon:before {
    content: "\f016";
    color: #C2C2C2;
}

.excelicon:before {
    content: "\f1c3";
    color: #268c04;
}

.pdficon:before {
    content: "\f1c1";
    color: #c21830;
}

.wordicon:before {
    content: "\f1c2";
    color: #0A3C8C;
}

.texticon:before {
    content: "\f0f6";
    color: dimgrey;
}

.archiveicon:before {
    content: "\f1c6";
    color: #1E1E1E;
}

.archiveicon:before {
    content: "\f1c6";
    color: #1E1E1E;
}

.exeicon:before {
    content: "\f0e7";
    color: #328AE0;
}

.imageicon:before {
    content: "\f1c5";
    color: #2FB431;
}

.clear {
    clear: both;
}

.field {
    margin-bottom: 1em;
    box-sizing: border-box;
    position: relative;
}

.field label {
    display: block;
    margin-bottom: 0.5em;
}

.field input, .field select, .field textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}

.field.half {
    width: 50%;
    float: left;
    padding: 0 0.75em 0 0;
    clear: none;
}

.field.half + .field.half {
    padding: 0 0 0 0.75em;
}

.field.third {
    width: 33.333%;
    float: left;
    padding: 0 1em 0 0;
    clear: none;
}

.field.third + .field.third {
    padding: 0 0.5em;
}

.field.third + .field.third + .field.third {
    padding: 0 0 0 1em;
}

.field.twothirds {
    width: 66.666%;
    float: left;
    padding: 0 0.5em 0 0;
    clear: none;
}

.field.twothirds + .field.third:not(.first) {
    padding: 0 0 0 1em;
}

.field.third + .field.twothirds {
    padding: 0 0 0 0.5em;
}

.field.first {
    clear: both;
}

@media screen and (max-width: 736px) {
    .field > .field {
        margin: inherit;
    }

    .field.half, .field.third {
        width: 100%;
        float: none;
        padding: 0 !important;
    }

    .field.half.first, .field.third.first {
        padding: 0;
    }

}

table.odded {

}

table.odded td {
    padding: 0.5em 0.5em !important;
    width: auto !important;
    height: auto !important;
    line-height: inherit !important;
}

table.odded td * {
    line-height: inherit !important;
}

table.odded tr:nth-child(even) td {
    background-color: #f0f0f0;
}

table.blocks, table.blocks2, table.blocks3, table.blocks4,
table.blocks > tbody, table.blocks2 > tbody, table.blocks3 > tbody, table.blocks4 > tbody {
    display: block;
    clear: both;
}

table.blocks img, table.blocks2 img, table.blocks3 img, table.blocks4 img {
    height: auto !important;
    max-width: 100%;
}

table.blocks > tbody > tr, table.blocks > tr,
table.blocks2 > tbody > tr, table.blocks2 > tr,
table.blocks3 > tbody > tr, table.blocks3 > tr,
table.blocks4 > tbody > tr, table.blocks4 > tr {
    -moz-display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    display: flex;
    -moz-align-items: stretch;
    -webkit-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -moz-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -1em;
}

table.blocks.nopadding > tbody > tr, table.blocks.nopadding > tr,
table.blocks2.nopadding > tbody > tr, table.blocks2.nopadding > tr,
table.blocks3.nopadding > tbody > tr, table.blocks3.nopadding > tr,
table.blocks4.nopadding > tbody > tr, table.blocks4.nopadding > tr {
    margin: 0;
}

table.blocks.centered > tbody > tr, table.blocks.centered > tr,
table.blocks2.centered > tbody > tr, table.blocks2.centered > tr,
table.blocks3.centered > tbody > tr, table.blocks3.centered > tr,
table.blocks4.centered > tbody > tr, table.blocks4.centered > tr {
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
}

table.blocks > tbody > tr > td, table.blocks > tr > td,
table.blocks2 > tbody > tr > td, table.blocks2 > tr > td,
table.blocks3 > tbody > tr > td, table.blocks3 > tr > td,
table.blocks4 > tbody > tr > td, table.blocks4 > tr > td {
    display: block;
    padding: 1em;
    width: auto !important;
    overflow: visible;
}

table.blocks.nopadding > tbody > tr > td, table.blocks.nopadding > tr > td,
table.blocks2.nopadding > tbody > tr > td, table.blocks2.nopadding > tr > td,
table.blocks3.nopadding > tbody > tr > td, table.blocks3.nopadding > tr > td,
table.blocks4.nopadding > tbody > tr > td, table.blocks4.nopadding > tr > td {
    padding: 0;
}

table.blocks > tbody > tr > td,
table.blocks3 > tbody > tr > td,
table.blocks > tr > td,
table.blocks3 > tr > td {
    width: calc(33.333% - 2em) !important;
}

table.nopadding.blocks > tbody > tr > td,
table.nopadding.blocks3 > tbody > tr > td,
table.nopadding.blocks > tr > td,
table.nopadding.blocks3 > tr > td {
    width: 33.333% !important;
}

table.blocks2 > tbody > tr > td,
table.blocks2 > tr > td {
    width: calc(50% - 2em) !important;
}

table.nopadding.blocks2 > tbody > tr > td,
table.nopadding.blocks2 > tr > td {
    width: 50% !important;
}

table.blocks4 > tbody > tr > td,
table.blocks4 > tr > td {
    width: calc(25% - 2em) !important;
}

table.nopadding.blocks4 > tbody > tr > td,
table.nopadding.blocks4 > tr > td {
    width: 25% !important;
}

@media screen and (max-width: 640px) {

    table.blocks > tbody > tr > td, table.blocks > tr > td,
    table.blocks2 > tbody > tr > td, table.blocks2 > tr > td,
    table.blocks3 > tbody > tr > td, table.blocks3 > tr > td {
        width: 100% !important;
    }

    table.nopadding.blocks > tbody > tr > td, table.nopadding.blocks > tr > td,
    table.nopadding.blocks2 > tbody > tr > td, table.nopadding.blocks2 > tr > td,
    table.nopadding.blocks3 > tbody > tr > td, table.nopadding.blocks3 > tr > td {
        width: 100% !important;
    }

    table.blocks4 > tbody > tr > td, table.blocks4 > tr > td {
        width: calc(50% - 2em) !important;
    }

    table.nopadding.blocks4 > tbody > tr > td, table.nopadding.blocks4 > tr > td {
        width: 50% !important;
    }

}

.page-header {
    padding: 20px 0;
}

.page-header h1 {
    margin: 0;
    padding: 0 10px 0 0;
}

.page-header .button {
    margin: -10px 0 0 0;
}

.sidesplit {
    -moz-display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    display: flex;
    -moz-align-items: stretch;
    -webkit-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -moz-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

@media screen and (max-width: 600px) {
    .sidesplit {
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .page-header .button {
        margin: 10px 0 0 0;
    }
}

.features section {
    padding: 0em;
    position: relative;

    /*background-color: #f6f6f6;*/
    margin: 3em 0;

    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -moz-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;

}

.features section.empty, .features section.empty h2 {
    color: #999;

}

.features section.empty .button {
    display: none;
}

.features section .texts {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    flex-grow: 1;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    text-align: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    width: 100%;
    background-color: #f0f0f0;
    padding: 1.5em 1em;
    border-radius: 100px;
    position: relative;
}

.features section .texts .description {
    max-width: 600px;
}

.features section .collectionproducts {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;

    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    text-align: center;
    flex-grow: 1;
    width: 100%;
}

.features section .collectionproduct {
    margin: 0 10px;
}

.features section .collectionproducts .image {
    width: 240px;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
    position: relative;
}

/*
.features section .collectionproducts .shadow {
    position: absolute;
    border-radius: 50%;
    width: 240px;
    height:4em;
    background-color: #dedede;
    content: '';
    bottom: 30px;
    z-index: 0;
    box-shadow: 0 0 10px #;
}*/

.features section .collectionproducts .slogan {
    margin: 10px 0;
}

.features section .button {
    margin-bottom: 0;
}

.w100 {
    max-width: 100%;
    overflow-x: auto;
}

pre {
    background-color: #f0f0f0;
    padding: 1em;
    font-size: 0.7em;
    font-family: "Courier New", monospace;
    white-space: pre-wrap;
    max-height: 20em;
    overflow: auto;
    margin: 1em 0;
    overflow-wrap: break-word;
    line-break: loose;
}


.notpublished {
    opacity: 0.2;
}

.notpublished .notpublished {
    opacity: 1;
}


.blockTitle:empty,
.blockDescription:empty {
    display: none;
}

.scrollex-infocus {
    -moz-transform: translateX(0) translateY(0);
    -webkit-transform: translateX(0) translateY(0);
    -ms-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
    opacity: 1;
    -moz-transition: opacity 0.5s ease, -moz-transform 0.5s ease;
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    -ms-transition: opacity 0.5s ease, -ms-transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease;

    /*-moz-transition-delay: 1s;*/
    /*-webkit-transition-delay: 1s;*/
    /*-ms-transition-delay: 1s;*/
    /*transition-delay: 1s;*/
}

.scrollex-outfocus {

    -moz-transform: translateX(0) translateY(50px);
    -webkit-transform: translateX(0) translateY(50px);
    -ms-transform: translateX(0) translateY(50px);
    transform: translateX(0) translateY(50px);
    opacity: 0;
}

.fancybox-caption {
    text-align: center;
    font-size: 14pt !important;
}