html {
    --color-black: rgb(59, 60, 67);
    --color-green: rgb(41, 160, 41);
    --color-blue: #88bfb1;
    --color-red: #e31e24;
    --color-gold: rgb(178, 145, 66);
    --a-color: var(--color-gold);
    --color-secondary: #999999;
    /*--bg-color: rgb(233, 234, 235);*/
    --bg-color: rgb(247, 244, 236);
    --button-color: var(--color-gold);
    --color-unactive: #DCDCDC;
    /*https://isotropic.co/tool/hex-color-to-css-filter/*/
    --color-green-filter: invert(56%) sepia(10%) saturate(2783%) hue-rotate(94deg) brightness(110%) contrast(94%);
    --color-black-filter: invert(17%) sepia(8%) saturate(42%) hue-rotate(333deg) brightness(107%) contrast(97%);
    --color-red-filter: invert(33%) sepia(82%) saturate(1127%) hue-rotate(328deg) brightness(79%) contrast(101%);
    --color-gold-filter: invert(53%) sepia(67%) saturate(363%) hue-rotate(4deg) brightness(97%) contrast(88%);
    --box-radius: 7px;
    --box-shadow16dp: 0px 16px 16px 0px rgba(0, 0, 0, 0.16), 0px 0px 8px 0px rgba(0, 0, 0, 0.12);
    --box-shadow8dp: 0px 8px 8px 0px rgba(0, 0, 0, 0.16), 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
    --box-shadow4dp: 0px 4px 4px 0px rgba(0, 0, 0, 0.08), 0px 0px 2px 0px rgba(0, 0, 0, 0.04);
    --box-shadow2dp: 0px 2px 2px 0px rgba(0, 0, 0, 0.06), 0px 0px 2px 0px rgba(0, 0, 0, 0.03);
    --body-width: 1440px;
    --body-padding-side: 40px;
    --body-padding: 0 var(--body-padding-side);
    --pallete2: #ffdfdf;
    --pallete3: #EBC7C0;
    --pallete4: #D4AF92;
    --pallete5: #C79581;
    --border-color: var(--color-gold);
    --font-family-main: "Source Sans Pro", sans-serif;
    --font-family-secondary: "Times New Roman", Times, serif;
    --font-family-heads: "Gotham Pro", sans-serif;
}

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;
}

strong {
    font-weight: 400;
}

:root {
    --swiper-pagination-bullet-inactive-color: var(--bg-color);
    --swiper-pagination-color: var(--a-color);
    --swiper-pagination-bullet-inactive-opacity: 0.8;
    --swiper-pagination-bullet-opacity: 1;
    --swiper-navigation-color: #444;
}

body {
}

body, input, select, textarea {
    font-size: 14pt;
    font-weight: 300;
    line-height: 140%;
    color: var(--color-black);
    -webkit-font-smoothing: antialiased;

    font-family: var(--font-family-main);
    font-optical-sizing: auto;
}

.maincontainer {
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    max-width: var(--body-width);
    padding: var(--body-padding);
}

@media screen and (max-width: 1200px) {
    html {
        --body-padding-side: 30px;
    }
}

@media screen and (max-width: 650px) {
    html {
        --body-padding-side: 20px;
    }
}

.maincontainer .maincontainer {
    padding: 0;
    max-width: unset;
    margin: 0;
}

h1 {
    font-family: var(--font-family-heads);
    margin-bottom: 1em;
    font-size: 1.75em;
    line-height: 1.23em;
    font-weight: 300;
    text-transform: uppercase;
}

h2, .blockTitle, .contentheader {
    font-family: var(--font-family-secondary);
    font-size: 1.5em;
    font-weight: 300;
    line-height: 1.23em;
    margin: 1em 0 0.35em;
    /*text-transform: uppercase;*/
    font-style: italic;
    /*line-height: 0.8em;*/

}

h3, .contenttitle, .item-title {
    font-family: var(--font-family-heads);
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.23em;
    display: block;
    margin: 1em 0 0.35em
}

h4 {
    font-size: 0.9em;
    font-weight: 600;
    line-height: 1.23em;
    margin: 1em 0 0.35em
}

* > h1:first-child,
* > h2:first-child,
* > h3:first-child,
* > h4:first-child,
* > .blockTitle:first-child,
* > .contentheader:first-child,
* > .contenttitle:first-child,
* > .item-title:first-child {
    margin-top: 0;
}

a {
    outline: none;
    display: inline-block;
    -moz-transition: color 0.2s ease, border-bottom-color 0.2s ease;
    -webkit-transition: color 0.2s ease, border-bottom-color 0.2s ease;
    -ms-transition: color 0.2s ease, border-bottom-color 0.2s ease;
    transition: color 0.2s ease, border-bottom-color 0.2s ease;
    color: var(--a-color);
    text-decoration: none;
}

a.secondary {
    color: var(--color-secondary);
}

a:hover {
    text-decoration: underline;
}

h1 a, h2 a, h3 a, h4 a {
    color: #000;
}


img {
    border: none;
    max-width: 100%;
    max-height: 100%;
}

svg {
    width: 100%;
    height: 100%;
}

table {
    border-collapse: collapse;
    font-weight: inherit;
    font-size: inherit;
}

td {
    vertical-align: top;
}


.clear {
    clear: both;
}

ul {
    list-style-type: circle;
    list-style-position: outside;
    margin: 1em 0 1em 1em;
}

li::marker {
    color: var(--color-gold);
}

ul.checks {
    list-style: none;
    margin-left: 0;
}

ul.checks > li {
    background-image: url(/i/check-icon.svg);
    background-position: left 5px;
    background-repeat: no-repeat;
    background-size: 25px 15px;
    padding-left: 35px;
}

ol li::marker,
ul.abc li::marker {
    color: var(--color-gold);
}

ul.abc {
    list-style-type: lower-alpha;
    margin-left: 1em;
}

ul.square {
    list-style-type: square;
    margin-left: 1em;
}

li {
    margin: 0.5em 0;
}

ol {
    list-style-position: outside;
    margin-left: 1em;
}


blockquote {
    border-top: 1px solid var(--color-gold);
    border-bottom: 1px solid var(--color-gold);
    background-color: transparent;
    text-align: center;
    display: inline-block;
    padding: 1em;
    font-style: normal;
    margin: 1em 0;
    line-height: 1.5em;
    color: var(--color-gold);
    font-family: var(--font-family-secondary);
    font-style: italic;
    letter-spacing: 1px;
    border-radius: 0;
    font-weight: 400;
    font-size: 1.3em;
}

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

.dashed {
    cursor: pointer;
    color: var(--a-color);
    border-bottom: 1px dashed transparent;
    text-decoration: none !important;
}

.dashed:hover {
    border-color: var(--a-color);
}

.myicon,
.svgicon {
    --size: 16px;
    --backgroundSize: var(--size);
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    padding-left: var(--size);
    min-width: var(--size);
    min-height: var(--size);
    position: relative;
    line-height: var(--size);
}

.myicon:before,
.svgicon svg {
    content: '';
    left: 0;
    position: absolute;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: var(--backgroundSize) !important;
    width: var(--size);
    height: var(--size);
}

a.myicon:before {
    filter: var(--color-black-filter);
}

a.myicon:hover:before {
    filter: var(--color-gold-filter);
}

.myicon.red:before {
    filter: var(--color-red-filter);
}

.myicon.search:before {
    background: url("/i/search.svg");
}

.myicon.user:before {
    background: url("/i/user.svg");
}

.myicon.cart:before {
    background: url("/i/cart.svg");
}

.myicon.cart.gold:before {
    background: url("/i/cart_gold.svg");
}

.myicon.cart.white:before {
    background: url("/i/cart_white.svg");
}

.myicon.cart-white:before {
    background: url("/i/cart-w.svg");
}

.myicon.compare:before {
    background: url("/i/compare2.svg");
}

.myicon.forward:before {
    background: url("/i/forward-small.svg");
}

.myicon.menu-burger:before {
    background: url("/i/menu-burger.svg");
}

.myicon.close:before {
    background: url("/i/close.svg");
}

.myicon.close.red:before {
    background: url("/i/close.svg");
    filter: var(--color-red-filter);
}

.myicon.show:before {
    background: url("/i/show.svg");
}

.myicon.question:before {
    background: url("/i/info.svg");
}

.myicon.check:before {
    background: url("/i/check.svg");
}

.myicon.wifi:before {
    background: url("/i/wifi.svg");
}

.myicon.weight:before {
    background: url("/i/weight.svg");
}

.myicon.usb:before {
    background: url("/i/usb.svg");
}

.myicon.distance:before {
    background: url("/i/distance.svg");
}

.myicon.info:before {
    background: url("/i/i.svg");
}

.myicon.delete:before {
    background: url("/i/delete.svg");
}

.myicon.plus,
.myicon.minus {
    --size: 40px;
    cursor: pointer;
}

.myicon.plus span,
.myicon.minus span {
    display: inline-block;
    margin-left: 0.5em;
    color: var(--color-secondary);
}

.myicon.plus:hover span,
.myicon.minus:hover soan {
    color: var(--border-color);
}

.myicon.plus:before,
.myicon.minus:before {
    /*background-size: var(--size);*/
}

.myicon.plus:before {
    background: url("/i/plus.svg");
}

.myicon.minus:before {
    background: url("/i/minus.svg");
}

.myicon.clock:before {
    background: url("/i/clock.svg");
}

.myicon.location:before {
    background: url("/i/location.svg");
}

.myicon.phone:before {
    background: url("/i/phone.svg");
}

.myicon.erase:before {
    --backgroundSize: 18px;
    background: url("/i/close.svg");
}

.myicon.edit:before {
    background: url("/i/edit.svg");
}

.myicon.discount:before {
    background: url("/i/discount.svg");
}


.blockTitle + * {
    margin-top: 1em;
}

.blockTitle .myicon {
    --size: 20px;
}

.item-description {
    color: var(--color-black);
    line-height: 150%;
    /*font-size: 16px !important;*/
    /*font-weight: 400 !important;*/
    text-align: left;
}


.plusminus {
    -moz-display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    display: flex;
    -moz-align-items: flex-end;
    -webkit-align-items: flex-end;
    -ms-align-items: flex-end;
    align-items: flex-end;
    -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;
}

.plusminus .icon {
    font-size: 1.6em;
    cursor: pointer;
}

.plusminus input {
    width: 50px;
    border: none;
    border-bottom: 1px solid transparent;
    text-align: center;
    margin: 0 10px;
    display: inline;
    padding: 5px 0;
    border-radius: 0;
}

.plusminus input:focus {
    border-bottom-color: var(--color-green);
}

.edit-block-button {
    top: var(--topmenu-height);
}


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

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

table.odded tr:nth-child(odd) td {
    background-color: var(--bg-color);
}

table.odded,
table.simple-table {
    margin: 1em 0;
    width: auto;
}

table.simple-table td {
    padding: 0.5em 0.5em !important;
    width: auto !important;
    height: auto !important;
    line-height: inherit !important;
    border: 1px solid #dedede;
    vertical-align: top;
}

table.centered td {
    vertical-align: middle;
}

table.noborder tr td:first-child {
    padding-left: 0 !important;
}

table.noborder tr td:last-child {
    padding-right: 0 !important;
}

table.noborder td {
    border: none;
    padding-top: 0.25em !important;
    padding-bottom: 0.25em !important;
}

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

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

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