<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

/* Start:/local/templates/.default/css/codemirror/codemirror.css?14802457686519*/
/* BASICS */

.div-input-text .CodeMirror {
    height: 20px !important;
}

.CodeMirror {
    /* Set height, width, borders, and global font properties here */
    font-family: monospace;
    height: 89px;
    padding: 2px 0;
    background: #F6F6F6 !important;
    font-size: 13px;
}
.CodeMirror-scroll {
  /* Set scrolling behaviour here */
  overflow: auto;
  cursor: text;
}

/* PADDING */

.CodeMirror-lines {
  padding: 4px 0; /* Vertical padding around content */
}
.CodeMirror pre {
  padding: 0 4px; /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white; /* The little square between H and V scrollbars */
}

/* GUTTER */

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* CURSOR */

.CodeMirror div.CodeMirror-cursor {
  border-left: 1px solid black;
  z-index: 3;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursor {
  width: auto;
  border: 0;
  background: #7e7;
  z-index: 1;
}
/* Can style cursor different in overwrite (non-insert) mode */
.CodeMirror div.CodeMirror-cursor.CodeMirror-overwrite {}

.cm-tab { display: inline-block; }

/* DEFAULT THEME */

.cm-s-default .cm-keyword {color: #708;}
.cm-s-default .cm-atom {color: #219;}
.cm-s-default .cm-number {color: #164;}
.cm-s-default .cm-def {color: #00f;}
.cm-s-default .cm-variable {color: black;}
.cm-s-default .cm-variable-2 {color: #05a;}
.cm-s-default .cm-variable-3 {color: #085;}
.cm-s-default .cm-property {color: black;}
.cm-s-default .cm-operator {color: black;}
.cm-s-default .cm-comment {color: #a50;}
.cm-s-default .cm-string {color: #a11;}
.cm-s-default .cm-string-2 {color: #f50;}
.cm-s-default .cm-meta {color: #555;}
.cm-s-default .cm-qualifier {color: #555;}
.cm-s-default .cm-builtin {color: #30a;}
.cm-s-default .cm-bracket {color: #997;}
.cm-s-default .cm-tag {color: #170;}
.cm-s-default .cm-attribute {color: #00c;}
.cm-s-default .cm-header {color: blue;}
.cm-s-default .cm-quote {color: #090;}
.cm-s-default .cm-hr {color: #999;}
.cm-s-default .cm-link {color: #00c;}

.cm-negative {color: #d44;}
.cm-positive {color: #292;}
.cm-header, .cm-strong {font-weight: bold;}
.cm-em {font-style: italic;}
.cm-link {text-decoration: underline;}

.cm-s-default .cm-error {color: #f00;}
.cm-invalidchar {color: #f00;}

div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
.CodeMirror-activeline-background {background: #e8f2ff;}

/* STOP */

/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */

.CodeMirror {
  line-height: 1;
  position: relative;
  overflow: hidden;
  background: white;
  color: black;
}

.CodeMirror-scroll {
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px; margin-right: -30px;
  padding-bottom: 30px; padding-right: 30px;
  height: 100%;
  outline: none; /* Prevent dragging from highlighting the element */
  position: relative;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.CodeMirror-sizer {
  position: relative;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actuall scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
}
.CodeMirror-vscrollbar {
  right: 0; top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0; left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0; bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0; bottom: 0;
}

.CodeMirror-gutters {
  position: absolute; left: 0; top: 0;
  padding-bottom: 30px;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  padding-bottom: 30px;
  margin-bottom: -32px;
  display: inline-block;
  /* Hack to make IE7 behave */
  *zoom:1;
  *display:inline;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}

.CodeMirror-lines {
  cursor: text;
}
.CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
}
.CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}
.CodeMirror-code pre {
  border-right: 30px solid transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.CodeMirror-wrap .CodeMirror-code pre {
  border-right: none;
  width: auto;
}
.CodeMirror-linebackground {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  overflow: auto;
}

.CodeMirror-widget {}

.CodeMirror-wrap .CodeMirror-scroll {
  overflow-x: hidden;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.CodeMirror-measure pre { position: static; }

.CodeMirror div.CodeMirror-cursor {
  position: absolute;
  visibility: hidden;
  border-right: none;
  width: 0;
}
.CodeMirror-focused div.CodeMirror-cursor {
  visibility: visible;
}

.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }

.cm-searching {
  background: #FF6F6F;
}

/* IE7 hack to prevent it from returning funny offsetTops on the spans */
.CodeMirror span { *vertical-align: text-bottom; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursor {
    visibility: hidden;
  }
}

.bx-core-dialog-content .error {
    font-size: 13px;
    padding-bottom: 8px;
}

.bx-core-dialog-head {margin-bottom: 5px !important}
/* End */


/* Start:/local/templates/.default/css/catalog.css?174307160429634*/
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-700.eot");
    src: local("Roboto Black"), local("Roboto-Black"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-700.eot?#iefix") format("embedded-opentype"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-700.woff2") format("woff2"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-700.woff") format("woff"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-700.ttf") format("truetype"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-700.svg#Roboto") format("svg");
}
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-500.eot");
    src: local("Roboto Medium"), local("Roboto-Medium"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-500.eot?#iefix") format("embedded-opentype"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-500.woff2") format("woff2"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-500.woff") format("woff"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-500.ttf") format("truetype"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-500.svg#Roboto") format("svg");
}
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-regular.eot");
    src: local("Roboto"), local("Roboto-Regular"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-regular.eot?#iefix") format("embedded-opentype"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-regular.woff2") format("woff2"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-regular.woff") format("woff"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-regular.ttf") format("truetype"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-regular.svg#Roboto") format("svg");
}

@-webkit-keyframes animate-icon {
    0% {
        transform: scale3d(1, 1, 1);
    }
    25% {
        transform: scale3d(1.3, 1.3, 1);
    }
    50% {
        transform: scale3d(1, 1, 1);
    }
    75% {
        transform: scale3d(1.3, 1.3, 1);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }
}
@keyframes animate-icon {
    0% {
        transform: scale3d(1, 1, 1);
    }
    25% {
        transform: scale3d(1.3, 1.3, 1);
    }
    50% {
        transform: scale3d(1, 1, 1);
    }
    75% {
        transform: scale3d(1.3, 1.3, 1);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }
}
.clear {
    height:0;
    clear:both;
}
.mTop5 {
    margin-top: 5px;
}
.mTop20 {
    margin-top: 20px;
}
.mBottom0 {
    margin-bottom: 0 !important;
}
.mBottom12 {
    margin-bottom: 12px !important;
}
.code {
    color: #848282;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
}
.code-block {
    height: 16px;
    margin-bottom: 7px;
}
.code-block .article,
.code-block .place-review {
    float: left;
    margin-top: 3px;
}
.code-block .place-review a {
    text-decoration: underline !important;
    color: #848282;
}
.code-block .place-review a:hover {
    color: #4b8ab6 !important;
}
.code-block .stars {
    float: right;
}
.code-block .stars-wrapper {
    float: left;
    margin-right: 10px;
}
.code-block .stars-wrapper span {
    display: block;
    float: left;
}
.available,
.buyif-wrap {
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 5px;
    position: relative;
}
.available-es {
    display: inline-block;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    margin-left: 15px;
}
.available-es .el-css-stockline {
    padding-bottom: 10px;
}
.available-es .el-css-stockline-name {
    padding-left: 0;
}
.available-es .el-css-stockline-name.av {
    padding-left: 0;
    background: #ffffff;
}
.buyif-wrap {
    float: right;
    text-align: right;
    position: relative;
    z-index: 2;
}
.price {
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    padding-top: 5px;
    margin-top: 8px;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.price table {
    border-collapse: collapse;
}
.price td {
    padding: 0;
    vertical-align: bottom;
}
.price .right {
    text-align: right;
}
.price .base {
    color: #ff6000;
}
.price .discount,
.price .cur-price {
    color: #ff0000;
}
.price .base,
.price .discount {
    margin-right: 7px;
}
.price .cur-price {
    margin-right: 4px;
}
.price label {
    color: #4b8ac2;
    padding-right: 4px;
}
.price .num {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    position: relative;
}
.price .base div {
    display: inline-block;
}
.price .old .num:after {
    content: "";
    background-color: transparent;
    display: block;
    height: 1px;
    border-top: 1px solid #ff6000;
    position: absolute;
    top: 50%;
    z-index: 1;
    width: 100%;
    left: 0;
}
.price .old .num s {
    text-decoration: inherit;
}
.price .dec {
    font-size: 10px !important;
    font-family: 'Roboto', sans-serif;
}

.css-big-bata .oldprice .base {
    color: #555 !important;
    font-weight: 400 !important;
}
.css-big-bata .old .num:after {
    border-top: 1px solid #555 !important;
}
.af-product-card .price {
    width: calc(100% - 220px);
}

.af-product-card .not-available{
    font-weight: 500;
    width: fit-content;
    height: fit-content;
    font-size: 14px;
    background-color: #F0F0F0;
    padding: 8px 16px;
    flex-shrink: 0;
}

/* ACTIONS */
.af-product-card .item-actions {
    display: flex;
    width: 220px;
    height: auto;
    padding: 0;
    margin: 8px 0;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-end;
}
.item-measure {
    color: #848282;
    font-size: 12px;
    margin-right: 146px;
    margin-bottom: 10px;
    line-height: 10px;
}
.af-product-card .item-basket {
    display: flex;
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 8px;
    position: relative;
}
.af-product-card .item-basket::before {
    content: "";
    width: 30px;
    height: 30px;
    margin-right: 6px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    align-self: flex-start;
}
.af-product-card .item-basket:not(.adding)::before {
    content: "";
    width: 30px;
    height: 30px;
    margin-right: 6px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("/local/img/assets/basket.svg");
}
.af-product-card .item-basket:not(.adding)::after {
	display: block;
	content: "";
	width: 14px;
	height: 14px;
	background-size: 100% auto;
	background-repeat: no-repeat;
    background-position: center;
    background-image: url("/local/img/assets/plus.svg");
    position: absolute;
    left: 17px;
    top: 16px;
    transform-origin: center;
    transform-style: preserve-3d;
}
.af-product-card .item-basket:not(.adding):not(.added):not(.changed):hover::after,
.af-product-card .item-basket.added.changed:not(.adding):hover::after {
    -webkit-animation: animate-icon 500ms ease-in;
            animation: animate-icon 500ms ease-in;
}
.af-product-card .item-basket.added:not(.adding):not(.changed)::after {
    background-image: url("/local/img/assets/mark.svg");
}
.af-product-card .item-basket.adding::before {
    position: relative;
    z-index: 2;
    background-image: url("/local/img/preloader-micro.gif");
}
.af-product-card .item-basket.adding::after {
    content: attr(data-adding);
    display: flex;
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-align: right;
    color: #222222;
    padding-right: 30px;
    box-sizing: border-box;
    align-items: center;
    justify-content: flex-end;
    background-color: rgba(255, 255, 255, .8);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.af-product-card .item-quantity {
    display: block;
    width: 40px;
    min-height: 28px;
    height: auto;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    line-height: 1;
    text-align: right;
    font-weight: 400;
    color: #222222;
    margin: 0 6px 0 0;
    padding: 4px;
    outline: none;
    border: 1px solid #c1c5c8;
    box-sizing: border-box;
    align-self: flex-end;
    margin-left: auto;
    background-color: #ffffff;
    box-shadow: inset 2px 2px 2px -1px rgb(180 188 191 / 50%);
}
.af-product-card .item-buttons {
    display: block;
    width: auto;
    max-width: calc(100% - 82px);
    height: auto;
    align-self: flex-end;
    margin-left: auto;
}
.af-product-card .af-button {
    height: 28px;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    padding-left: 10px;
    padding-right: 10px;
    border: 0;
    border-radius: 3px;
}
.af-product-card .af-button.af-button__buy,
.basket .adding-wrap a.af-button__buy {
    display: flex;
    color: #ffffff !important;
    border: 0;
}
.af-product-card .af-button.af-button__proceed,
.basket .adding-wrap.added a.af-button__proceed {
    display: flex;
    color: #222222 !important;
}
.af-product-card .af-button.af-button__update,
.basket .adding-wrap.added.changed a.af-button__update {
    display: flex;
    color: #ffffff !important;
    border: 0;
}
.af-product-card .css-tinkoff-info,
#content .main .af-product-card .css-tinkoff-info {
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    line-height: 1;
    text-align: right;
    font-weight: 400;
    color: #0F74D1;
    text-decoration: none;
    padding: 2px 0 2px 20px;
    float: none;
}
.af-product-card .css-tinkoff-info:hover,
#content .main .af-product-card .css-tinkoff-info:hover {
    color: #0A65B9
}

.af-product-card .item-basket.added .af-button__buy,
.af-product-card .item-basket.added.changed .af-button__buy,
.af-product-card .item-basket.added.changed .af-button__proceed,
.af-product-card .item-basket.added:not(.changed) .af-button__buy,
.af-product-card .item-basket.added:not(.changed) .af-button__update,
.af-product-card .item-basket.changed:not(.added) .af-button__update,
.af-product-card .item-basket.changed:not(.added) .af-button__proceed,
.af-product-card .item-basket:not(.added):not(.changed) .af-button__update,
.af-product-card .item-basket:not(.added):not(.changed) .af-button__proceed {
    display: none;
}

.af-product-card .products-prices__not-available {
    display: inline-block;
}

.price-and-basket {
    display: flex;
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 8px 0 0;
    position: relative;
}
.in-stock {color: #6bbc02}
.on-order {color: #ff6000}

/* Styles for ie6 */
* html .price-and-basket {
    width:95%;
}
* html .price-and-basket .price {
    width:90%;
}

/* контент карточки */
.specifications {
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
}
.specifications table {
    border-collapse: collapse;
}
.specifications .stSpecTitle {
    display: -moz-inline-stack;
    display: inline-block;
    *zoom: 1;
    *display: inline;
    width: 100%;
    _width: 99%;
    text-indent:0;
    position: relative;
    color: #222222;
}
.specifications .fntSpecBig span {
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
}
.specifications .fntSpecBig .tab_link {
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}
.specifications .l-descr-side {
    width: 47%;
    float: left;
    padding: 0 0 5px 15px;
}
.specifications .r-descr-side {
    width: 47%;
    float: left;
    padding: 0 5px 5px 0;
}
.specifications .content {
    margin-left: 10px;
}
.specifications .content .title {
    position: relative;
}
.specifications .content .title:after {
    content: "";
    background-color: transparent;
    display: block;
    height: 1px;
    border-top: 1px solid #dcdfe2;
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    z-index: 1;
}
.specifications .content .title span {
    background: #fff;
    color: #2d2d2d;
    padding-right: 3px;
    position: relative;
    z-index: 10;
}
.specifications .content .data {
    display: -moz-iline-stack;
    display: inline-block;
    *zoom: 1;
    *display: inline;
    width: 100%;
}
.specifications .content .name {
    color: #485e6d;
    white-space: nowrap
}
.specifications .bug-link {
    float: right;
}
.specifications .bug-link a,
.specifications .opinion {
    font-size: 11px;
    font-family: 'Roboto', sans-serif;
    color: #848282;
    text-decoration: underline;
}
.specifications .bug-link a:hover,
.specifications .opinion:hover {
    color: #4b8ab6 !important;
}
.specifications .opinion-wrapper {
    float: right;
}

/* списки */
.item .name a {
    color: #4b8ab6 !important;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight:700;
    text-decoration: none;
}
.item .name a:hover {
    text-decoration: underline;
}

.more-item .item .code,
.list-section-block .item .code,
.search-page .item .code {
    margin-top: 5px;
}
.more-item .item .price-and-basket {
    margin: 5px 0;
}

.available .price-var {
    color: #ff6000;
    border-bottom: 1px dashed #ff6000;
}
.analogs-list li {
    border-top: 1px solid #dcdfe2;
    padding:5px 0;
}
.analogs-list .first {
    border-top: none;
    padding-top: 0;
}
.analogs-list .last {
    padding-bottom: 0;
}
.analogs-list .price {
    padding-top: 0;
}
.analogs-list .analog-l-side {
    float: left;
}
.analogs-list .analog-r-side {
    margin-left: 70px;
}
.analog-popup {
    display: none;
    border-radius: 4px;
    background:#fff;
    padding: 8px;
    position:absolute;
    z-index:9999;
    max-width:550px;
    box-shadow:0 0 5px #4B8AB6;
    border: 2px solid #4B8AB6;
}
.analog-popup .price-and-basket {
    margin-bottom: 0
}
.analog-popup .popup-close {
    text-align: right;
    float: right;
    font-size: 11px;
    font-family: 'Roboto', sans-serif;
}
.analog-popup .popup-close a {
    cursor:pointer;
}
.analog-popup .popup-close a:hover span {
    background-position: 0 -10px;
}
.analog-popup .popup-close span {
    background: url('/local/img/popup-close.png') 0 0 no-repeat;
    height: 10px;
    min-height: 10px;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    zoom: 1;
    *display: inline;
    _height: 10px;
    width: 10px;
}

.css-analogs-list-wrapper.css-no-popup:after {
    content: "";
    background-color: transparent;
    display: block;
    height: 1px;
    border-top: 1px solid #dcdfe2;
    left: 0;
    z-index: 1;
}

.af-supplementaries-block .af-store-title {
    color: #4b8ab6;
    text-decoration: none;
    border-bottom: 1px dashed #4b8ab6;
}

/* печать в каталоге */
.img-wrapper {
    position:relative;
    float:left;
}
.img-print {
    position:absolute;
    bottom:0;
    right:0;
    display:none;
}
.popup.img-print {
    display:block;
    right: 15px;
    bottom: 15px;
    z-index:10000
}

/* лупа в списке */
.gallery-h {
    position: relative;
    display: block;
}
.gallery-h .enlarge {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* контейнеры списка */
.image-wrapper {
    position: relative;
}
.image-wrapper::after {
    display:block;
    content:"";
    clear:both;
}
.image-wrapper:after {
    display:block;
    content:"";
    clear:both;
}

.reviews-line {
    position: relative;
    height: 16px;
}
.reviews-line .r-count {
    padding-left: 10px;
    vertical-align: bottom;
}
.reviews-line .opinion-wrapper,
.reviews-line .op {
    position: absolute;
    bottom: 0;
    right: 0;
}
.reviews-line .tab_link {
    float: left;
}

.discounted {
    cursor: default;
    display: block;
    position: absolute;
    width: 39px;
    height: 39px;
    right: 0;
    background: url('/local/img/percent.png');
    z-index: 1;
}

/* new detail item */
.specifications .content .n {
    padding-left: 15px;
}
.specifications .data-sheets {
    width: 100%;
    margin-bottom: 5px;
}

/* reviews */
.rev-star-block {
    border: 0;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.compare-form {
    float: left;
    visibility: hidden;
}
.fav-form {
    visibility: hidden;
}

.el-css-onstore {
    color: #4b8ab6;
    border-bottom: 1px dashed #4b8ab6;
}
.el-css-onstore-popup {
    top: 30px;
    opacity: 0;
    visibility: hidden;
    width: 190px;
    padding: 10px 10px 8px !important;
    outline: none;
}
.el-css-stockline {
    position: relative;
    padding-bottom: 2px;
    margin-bottom:2px;
}
.el-css-stockline:after {
    content: "";
    background-color: transparent;
    display: block;
    height: 1px;
    border-top: 1px dashed #dcdfe2;
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    z-index: 1;
}
.el-css-stockline span {
    position: relative;
    z-index: 10;
    background-color: #fff;
    font-size: 12px;
}
.el-css-stockline-name {
    padding-right: 5px;
}
.el-css-stockline-name.av {
    font-weight: 700
}
.el-css-stockline-val {
    padding-left: 5px;
    float:right;
}
.el-css-stockline-val span {
    color: #ccc;
}
.el-css-storeclose {
    text-align: right;
    padding-top: 0;
}
.el-css-storeclose a {
    color:#929292 !important;
    font-size: 11px;
}

.otz_around {
    margin-bottom: 20px;
}

/**************************************************************************************************************************************************************************/
/***************************************************Кнопка конструктора плиток в карточке**********************************************************************************/
/**************************************************************************************************************************************************************************/
.button_3d_plitka{
    margin-top: 30px;
}
.button_3d_plitka .threed-constructor-button__block {
    position: relative;
    z-index: 1;
    display: block;
    width: 135px;
    border: 1px solid #4b8ab6;
    border-radius: 8px;
    text-decoration: none;
    padding: 5px;
    transition: border-color 0.4s, color 0.4s;
}
#content .main .goods-list .item .left .button_3d_plitka a.threed-constructor-button__block {
    text-decoration: none;
}
.button_3d_plitka .threed-constructor-button__block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #20739B;
    z-index: -1;
    opacity: 0;
    border-radius: 8px;
    transform: scale3d(0.7, 1, 1);
    transition: transform 0.4s, opacity 0.4s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button_3d_plitka .button:focus {
    outline: none;
}
.button_3d_plitka .threed-constructor-button__block,
.button_3d_plitka .threed-constructor-button__block::before {
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button_3d_plitka .threed-constructor-button__block:hover .threed-constructor-button__title,
.button_3d_plitka .threed-constructor-button__block:hover .threed-constructor-button__desc {
    color: #fff;
    border-color: #37474f;
}
.button_3d_plitka .threed-constructor-button__block:hover::before {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
.button_3d_plitka .threed-constructor-button__icon {
    width:  120px;
    height: 120px;
    margin: auto;
    background-image: url('/local/img/redesign/3d-constructor_tr_sprite.png');
    background-repeat: repeat-x;
    background-position: 0px 0px;
    animation-name: button_3d_plitka-animate;
    animation-duration: 8000ms;
    animation-iteration-count: infinite;
    animation-fill-mode: backwards;
    -moz-animation-name: button_3d_plitka-animate;
    -moz-animation-duration: 8000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-fill-mode: backwards;
    -o-animation-name: button_3d_plitka-animate;
    -o-animation-duration: 8000ms;
    -o-animation-iteration-count: infinite;
    -o-animation-fill-mode: backwards;
    -webkit-animation-name: button_3d_plitka-animate;
    -webkit-animation-duration: 8000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-fill-mode: backwards;
}
.button_3d_plitka .threed-constructor-button__title,
.button_3d_plitka .threed-constructor-button__desc {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    color: #4b8ab6;
}
.button_3d_plitka .threed-constructor-button__title {
    padding: 5px 0px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}
.button_3d_plitka .threed-constructor-button__desc {
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    padding: 0px 5px 5px 0px;
}
@-webkit-keyframes button_3d_plitka-animate {
    0%, 23% {
        background-position-x: 0px;
    }
    33%, 56% {
        background-position-x: -120px;
    }
    66%, 89% {
        background-position-x: -240px;
    }
    100% {
        background-position-x: -360px;
    }
}
@keyframes button_3d_plitka-animate {
    0%, 23% {
        background-position-x: 0px;
    }
    33%, 56% {
        background-position-x: -120px;
    }
    66%, 89% {
        background-position-x: -240px;
    }
    100% {
        background-position-x: -360px;
    }
}
/**************************************************************************************************************************************************************************/
/**************************************************************************************************************************************************************************/
/**************************************************************************************************************************************************************************/

.price__block &gt; div {
    display: inline-block;
}
.price__block &gt; div * {
    line-height: 19px;
}
.nowrap {
    white-space: nowrap;
}
.oldprice * {
    line-height: 21px !important;
}
.nowrap.higher {
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
}
.price__block .num.higher {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}
.disount__block,
.curprice__block {
    display: inline-block;
}

.curprice__info {
    position: relative;
    background-image: url(/local/img/price-info.svg);
    width: 17px;
    height: 17px;
    vertical-align: top;
}

.curprice__info:hover:after {
    white-space: pre;
    position: absolute;
    content: attr(data-info);
    top: 25px;
    left: -150px;
    width: max-content;
    max-width: 400px;
    padding: 8px;
    text-align: left;
    background-color: white;
    color: #4D4D4D;
    font-weight: 400;
    z-index: 10;
    border: 1px solid #4b8ab6;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    box-shadow: 0 0 5px -1px;
}

.price__block {
    line-height: 20px;
}
.vip-price_button {
    line-height: 24px;
    vertical-align: baseline;
    padding: 0px 6px;
    border: 1px solid;
    border-radius: 4px;
    position: relative;
    z-index: 0;
    cursor: pointer;
    transition: width 0.3s;
}
.vip-price_button.clicked {
   /* height: auto;*/
    cursor: default;
    margin-bottom: 6px;
}
.vip-price_icon {
    display: inline-block;
    width: 32px;
    height: 18px;
    position: relative;
    top: 4px;

    background: url('/local/img/common-icons/vipcard_icon.svg');
    background-size: auto;
    background-position: center center;

    background-repeat: no-repeat;
    text-decoration: none;
}
.vip-price_value-block {
    display: none
}

.vip-price_value {
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    color: red;
    text-align: center;
}
.vip-price_value .dec {
    font-size: .65em;
    font-family: 'Roboto', sans-serif;
}
.vip-price_value-txt {
    transition: opacity 0.3s;
}
.vip-price_value-txt::before {
    content: 'Цена по VIP-карте';
    position: absolute;
    line-height: 28px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    vertical-align: bottom;
    font-weight: 700;
    background-color: #fff;
    border-radius: 4px;
    z-index: 10;
    left: 0;
    top: -24px;
    transition: top 300ms;
}
.vip-price_value-txt.shown::before {
    top: 0;
    transition: top 300ms;
}
.vip-price_addVIP {
    line-height: 16px;
    padding-bottom: 3px;
    text-align: center;
}
.vip-price_button .add2basket {
    color: #6bbc02;
    border-bottom: 1px dashed #6bbc02;
}
.vip-price_button .add2basket * {
    pointer-events: none;
}
.vipcardprice {
    font-size: 0.94em;
    font-family: 'Roboto', sans-serif;
    margin-top: 2px;
    color: #7d93a2;
}
br.hight-br {
    line-height: 24px;
}
br.hight-br + .vip-price_button {
    margin-top: 6px;
}

.analogs-list {
    margin-top: 12px;
}

.op_watchlink, .op_befirst {
    line-height: 16px;
    font-weight: 400;
    color: #555;
}
.op_watchlink {
    float: left;
    font-size: .8em;
    font-family: 'Roboto', sans-serif;
    text-decoration: underline;
    padding-top: .2em;
}
.op_befirst {
    font-size: .9em;
    font-family: 'Roboto', sans-serif;
    padding-left: 1em;
    text-transform: none;
}
.op_prestars {
    float: left;
    line-height: 16px;
    vertical-align: bottom;
    padding-right: .6em;
}

.ad_block {
    background-color: #fefef2;
    width: 100%;
    border-radius:5px;
    margin-top: 1em;
    margin-bottom: 1em;
}
.hg-set {
    margin-top: 10px;
    margin-bottom: 20px;
}
.hg-set &gt; img,
.hg-set &gt; h4,
.hg-set &gt; ul {
    width: 80%;
    min-width: 500px;
    height: auto;
    margin-right: 10%;
    text-align: left;
}
.hg-set &gt; h4 {
    margin-top: 16px;
    color: #222;
}
.hg-set &gt; ul &gt; li {
    line-height: 22px;
}
.hg-set &gt; ul &gt; li &gt; a,
a.hg-set-ext {
    color: #4b8ab6 !important;
}
a.hg-set-button {
    display: block;
    position: absolute;
    margin-top: -6%;
    right: 27.8%;
    width: 10%;
    min-width: 70px;
    font-size: 18px !important;
    height: 1.8em;
    line-height: 1.8em !important;
    background-color: #bcbcbc;
    border-radius: 8px;
    border: 1px solid #fff;
    color: #222222;
    text-decoration: none !important;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 700;
    text-align: center;
    box-shadow: 1px 1px 2px 0px #222222;
}
a.hg-set-button:hover  {
    background-color: #EAEAEA;
    border-color: #bcbcbc;
    box-shadow: 2px 2px 4px 0px #222222;
}
a.hg-set-button:active {
    background-color: #bcbcbc;
    box-shadow: 1px 1px 5px 0px #222222 inset;
    border-color: transparent;
}
.hg-set &gt; ul + p {
    margin-top: 10px;
    margin-left: 20px;
}
a.hg-set-ext {
    font-weight: 700 !important;
    font-size: 16px !important;
    font-family: 'Roboto', sans-serif;
}

.css-big-font {
    font-size: 14px !important;
    font-family: 'Roboto', sans-serif;
}

/* СОПУТСТВУЮЩИЕ ТОВАРЫ */
.more-item .quantity {
    box-sizing: border-box;
    padding: 4px;
    outline: none;
    border: 1px solid #c1c5c8;
    border-radius: 2px;
    background: #fff;
    box-shadow: inset 2px 2px 2px -1px rgba(180, 188, 191, 0.5);
    color: #222222;
    vertical-align: middle;
    font-size: 13px;
    height: auto;
    width: 38px;
    margin: 1px 3px 2px 0;
    text-align: right;
}
.more-item .css-measure .quantity {
    width: 57px;
}
.more-item .price-and-basket {
    display: -moz-inline-stack;
    display: inline-block;
    *zoom: 1;
    *display: inline;
    width: 100%;
    margin: 8px 0 0;
}
.more-item .price-and-basket .basket {
    float: right;
    text-align: right;
    position: relative;
    margin-left: 30px;
}
.more-item .price-and-basket .basket.css-measure {
    width: 182px;
}
.more-item .price-and-basket .basket .add2basket {
    font-family: 'Roboto', sans-serif;
    color: #6bbc02;
    text-decoration: none;
    border-bottom: 1px dashed #6bbc02;
}
.more-item .price-and-basket .basket .go {
    color: #ff6000;
}
.more-item .price-and-basket .basket .img {
    position: absolute;
    left: -30px;
    top: 50%;
    margin-top: -13px;
}
.more-item .basket .adding-wrap {
    padding-top: 1px;
    text-align: left;
}
.more-item .basket .adding-wrap span {
    font-size: 12px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    position: relative;
    float: right;
    padding-top: 6px;
}
.more-item .basket .adding-wrap.adding span {
    padding-left: 20px;
}
.more-item .basket .adding-wrap.adding span img {
    position: absolute;
    top: -1px;
    left: 0;
}
.more-item .basket .adding-wrap.adding,
.more-item .basket .adding-wrap.adding a {
    color: #4b8ab6 !important;
}
.more-item .basket .adding-wrap.added a {
    color: #ff6000 !important;
}
.more-item .basket .adding-wrap.added .quantity_info a {
    color: #4b8ab6 !important;
}
.more-item .basket .adding-wrap.added .add2basket {
    display: none;
}
.more-item .basket .adding-wrap.added .go {
    display: inherit;
}
.more-item .basket .adding-wrap.added.changed .add2basket {
    display: inherit;
    border-bottom: 1px dashed #ff6000;
}
.more-item .basket .adding-wrap.added.changed .go {
    display: none;
}
.more-item .basket .adding {
    color: #4b8ab6 !important;
}
.more-item .basket .adding a {
    display: none;
}

/* End */


/* Start:/local/css/store.css?16533933613185*/
.el-css-onstore {color: #4b8ab6 !important; border-bottom: 1px dashed #4b8ab6;text-decoration: none !important}
.el-css-onstore-popup {top: 30px;opacity: 0;visibility: hidden; padding: 10px 10px 8px !important;outline: none; width: 230px;}
.market-warning-wrapper .el-css-onstore-popup { width: 850px !important;max-width: 850px !important;}
.el-js-onstore-hide-popup {display: none}
.el-css-stockline {position: relative;padding-bottom: 2px;line-height: normal;margin-bottom:2px;}
.el-css-stockline:after {content: "";background-color: transparent;display: block;height: 1px;border-top: 1px dashed #dcdfe2;position: absolute;top: 50%;width: 100%;left: 0;z-index: 1;}
.el-css-stockline span {position: relative;z-index: 10; font-size: 12px;background-color: #fff;}
.el-css-stockline-name {
    padding-right: 5px;
    background: url("/local/img/common-icons/phone_icon_store.png");
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-left: 21px;
    padding-bottom: 4px;
}
.el-css-stockline-name.av {
    font-weight: bold;
}
.el-css-stockline-name.es {
    background-image: none;
    padding-left: 0px;
}
.el-css-stockline-val {padding-left: 5px;float:right}
.el-css-stockline-val span {color: #ccc}
.tooltip-shops .el-css-stockline-val span.blue {text-shadow: none;}
.el-css-signpadding .el-css-stockline-val .noSign {padding-left: 10px}
.el-css-storedescr {font-size: 11px; font-style: italic; padding-top: 15px;}
.el-css-storeclose {text-align: right;padding-top: 5px}
.el-css-storeclose a {color:#929292 !important; font-size: 11px}

.el-css-onstore-source {display:none}

.in-stock {color: #6bbc02}
.in-stock-orange {color: orange;}

.available, .buyif-wrap {font-size: 12px;margin-bottom: 5px; position: relative;}

.available {
    position: relative;
}
.available-es {
    display: inline-block;
    font-size: 12px;
    margin-left: 15px;
}
.available-es .el-css-stockline-name {
    padding-left: 0; 
}
.available .ui-tooltip {
    min-width: 300px;
    max-width: 500px;
}
.available-es .ui-tooltip{
    min-width: 150px;
    max-width: 350px;
}
.available-basket{position: relative !important;}

.warning,
.warning &gt; a {
    color: #ffc107 !important;
    line-height: 22px;
    font-size: 12px;
}
.warning {
    display: inline-block;
    margin-top: 6px;
}
.css-mobile-version .warning {
    margin-top: 0;
}
.warning.tooltip-nob {
    cursor: pointer;
}
.info-icon.warning:before {
    content: " ";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(/local/img/info-warning.svg);
    background-repeat: no-repeat;
    margin-right: .3em;
    vertical-align: text-bottom;
}
.ui-tooltip.spec-conditions-ui-tooltip-content {
    font-size: 12px;
}
.ui-tooltip.spec-conditions-ui-tooltip-content p {
    margin-bottom: 0px;
    line-height: normal;
}
.ui-tooltip.spec-conditions-ui-tooltip-content p:not(:first-child) {
    margin-top: 10px;
}
.ui-tooltip.spec-conditions-ui-tooltip-content p.starstext {
    color: #888;
    font-style: italic;
}
.ui-tooltip p.close-widget {
    display: inline-block;
    float: right;
    border-bottom: 1px dashed #222222;
    cursor: pointer;
}

/* End */


/* Start:/local/css/check-coupon-price.css?17367868572806*/
.sale-prices {
    width: 100%;
    display: flex;
    margin-top: 5px;
}
.sale-prices__single {
    display: inline-block;
    border: 1px solid #4a8ac1;
    border-radius: 4px;
    padding: 7px 10px;
    width: 201px;
    box-sizing: border-box;
    cursor: pointer;
    height: 30px;
    overflow: hidden;
    transition: 0.15s;
}
.sale-prices__single:first-child {
    margin-right: 20px;
}
.sale-prices__single .header {
    font-size: 12px;
    color: #4a8ac1;
    font-weight: bold;
    text-align: center;
}
.sale-prices__single .header.red {
    font-size: 14px;
    color: #fe3131;
    text-align: center;
}
.sale-prices__single .header__big {
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    background-color: red;
    padding: 3px 5px 2px;
    font-size: .9em;
    text-align: center;
    border-radius: 2px;
    font-family: "Roboto";
}
.sale-price__code::-webkit-input-placeholder {
    color: #d6d6d6;
}
.sale-price__code::-moz-placeholder {
    color: #d6d6d6;
}
.sale-prices .vip-price_button {
    margin-top: 0;
    margin-right: 30px;
    height: 30px;
    box-sizing: border-box;
    display: inline-block;
    overflow: hidden;
    color: #4b8ab6;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    background-color: #fff;
    line-height: 24px;
    vertical-align: baseline;
    padding: 0px 6px;
    border: 1px solid;
    border-radius: 4px;
    position: relative;
    z-index: 0;
    cursor: pointer;
    transition: width 0.3s;
}
.vip-price_button.clicked {
    height: auto;
}
.sale-prices__single .header__big.header__big--yellow {
    background-color: #fdcc27;
    color: #000000;
}
.sale-prices__hidden {
    margin-top: 8px;
}
.sale-prices__hidden .link {
    color: #83c731;
    font-size: 12px;
    text-decoration-style: dashed;
    text-align: center;
    display: block;
    font-weight: bold;
    margin-top: 4px;
}
.sale-prices__hidden .footer-text {
    color: #9bacb9;
    font-size: 12px;
    text-align: center;
    font-weight: bold;
    margin-top: 5px;
}
.sale-prices__button-container {
    text-align: center;
}
.sale-prices__button-container .submit-discount {
    margin-top: 10px;
    margin-bottom: 10
}
.sale-prices__hidden, .success-discount, .fail-discount {
    display: none;
}
.sale-prices__hidden input {
    width: 100%;
    padding: 2px 5px;
    border: 1px solid #4a8ac1;
    box-sizing: border-box;
}
.success-discount {
    margin-top: 15px;
}

@media (max-width: 1115px) {
    .sale-prices .vip-price_button {
        text-align: center;
        padding: 0px 2px 5px 2px;
        line-height: 20px;
    }
    .sale-prices__single {
        line-height: 18px;
        width: auto;
        padding: 6px;
    }
    .item .price-and-basket {
        flex-direction: column;
    }
}

/* End */


/* Start:/local/css/catalog-bonus.css?16789551551037*/
.price__bonuses {
    display: flex;
    background: #FAFAFA;
    border-radius: 5px;
    min-width: 200px;
}

.price__bonuses__default {
    align-items: center;
    padding: 5px 10px;
    margin-left: 10px;
}

.price__bonus {
    margin-left: 10px;
    padding-left: 20px;
    position: relative;
}

.price__bonus p {
    font-size: 14px;
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 500;
}

.price__bonus .price__bonus__percent {
    font-size: 10px;
    margin-left: 5px;
}

.price__bonus:before {
    content: '';
    background: url("/local/img/assets/ruble.png") no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    left: -3px;
}

.price__bonuses__default .price__bonus:before {
    top: -2px;
}

.price__bonus.element-bonus:before {
    top: 5px;
}

.card-discount-restriction {
    color: #ff0000;
}

.not-visible {
    display: none !important;
}

@media (max-width: 1553px) {
    .price__bonus p {
        margin-top: 5px;
    }
    .price__bonus:before {
        top: 3px;
    }
}

/* End */


/* Start:/local/templates/.default/components/afonya/catalog.product.exhibition/.default/style.css?165477154993*/
.mb-5 {
    margin-bottom: 5px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

/* End */


/* Start:/local/templates/.default/components/afonya/price.subscription/.default/style.css?16310993101903*/
.change-price-subsc-container {
    position: relative;
    margin-bottom: 5px;
}

.price-subscription-text {
    font-style: italic;
    font-size: 13px;
    color: #4b8ab6;
    cursor: pointer;
}

.bordered {
    border-bottom: 1px dashed #4b8ab6;
}

.tooltip-change-price {
    display: inline-block;
    position: absolute;

    font: 12px Arial, Helvetica, sans-serif;
    color: #000000;
    max-width: 300px;

    border: 1px solid #4b8ab6;
    border-radius: 4px;

    padding: 0.5em;
    margin-left: 1em;
    margin-right: 1em;

    background-color: #ffffff;
    box-shadow: 0 0 5px -1px;
}

.subscribe-attention .attention-header {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ff5400
}

.subscribe-attention, .subscription-info, .form-subscription {
    width: 275px;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    vertical-align: top;
    font-size: 13px;
}

.form-subscription .af-button.af-button__blue {
    margin-top: 10px;
}

.subscribe-attention {
    border: 1px rgb(243, 168, 71) solid;
    box-shadow: 0 0 0 4px #fffae7 inset;
}

.success-border {
    border: 1px #4ed636 solid !important;
    box-shadow: 0 0 0 4px #e7fae3 inset !important;
}

.success-header {
    color: #318024 !important;
}

.subscription-info p {
    margin-bottom: 10px;
}

.subscription-info, .form-subscription {
    border: 1px #0C72D0 solid !important;
    box-shadow: 0 0 0 3px #ebebeb inset;
}

.form-error-container {
    color: #ff0000;
    margin-bottom: 0.5em;
    display: none;
}

.form-fields {
    display: flex;
}

.form-column-left, .form-column-right {
    display: flex;
    flex-direction: column;
}

.form-column-left {
    width: 140px;
}

.form-column-right {
    margin-left: 1.5em;
}

.form-column-left .quantity {
    width: 100%;
    text-align: left;
}

.form-column-right input {
    margin-top: 1px;
}

.not-visible {
    display: none;
}

/* End */


/* Start:/local/templates/.default/components/afonya/product.doc.file/.default/style.css?17036743022995*/
.product-docs-files-content,
.product-editor-content {
    font-size : 12px;
}

.product-docs-files-content [disabled],
.product-docs-files-content [disabled] * {
    cursor : default !important;
}

.product-docs-files-content h2,
.product-editor-content h2 {
    font-size     : 16px;
    display       : inline-block;
    margin-bottom : 10px;
}

.product-docs-files-content h2.hidden {
    display : none;
}

.product-editor-content .file-uploader {
    border-bottom  : 1px solid #e8e8e8;
    margin-bottom  : 20px;
    padding-bottom : 15px;
}

.product-editor-content .file-uploader [for$=file-name] {
    padding : 10px 0;
    display : block;
}

.product-editor-content .file-uploader [id$=file-name] {
    width          : calc(100% - 83px);
    display        : inline-block;
    vertical-align : middle;
    border         : 1px solid #8f8f9d;
    padding        : 6px 5px 5px;
    margin         : 1px 0 9px;
}

.product-editor-content .file-uploader input[class^=js-],
.product-editor-content .file-uploader button label {
    cursor : pointer;
}

.product-editor-content .file-uploader .js-add {
    float : right;
}

.product-docs-files-content .docs-files ul {
    margin : 5px 0;
}

.product-docs-files-content .docs-files ul li {
    display : block;
    cursor  : default;
    height  : 36px;
}

.product-docs-files-content .docs-files ul li.--template {
    display : none;
}

.product-docs-files-content .docs-files ul li a {
    text-decoration : none;
}

.product-docs-files-content .docs-files ul li a:hover {
    text-decoration : underline;
}

.product-docs-files-content .docs-files .doc-file-icon {
    position : relative;
    display  : inline-block;
    margin   : 2px 6px 10px 0;
}

.product-docs-files-content .docs-files .doc-file-icon:after {
    content      : "";
    margin-right : 26px;
}

.product-docs-files-content .docs-files .doc-file-icon div:first-child {
    position   : absolute;
    background : #e5e8eb;
    top        : -10px;
    width      : 23px;
    height     : 30px;
}

.product-docs-files-content .docs-files .doc-file-icon div:first-child &gt; div {
    position   : absolute;
    background : #b9bec4;
    overflow   : hidden;
    top        : -2px;
    right      : 0;
    width      : 7px;
    height     : 10px;
}

.product-docs-files-content .docs-files .doc-file-icon div:first-child &gt; div:after {
    position   : absolute;
    content    : "";
    transform  : rotate(45deg);
    background : white;
    top        : -9px;
    right      : -9px;
    width      : 16px;
    height     : 16px;
}

.product-docs-files-content .docs-files .doc-file-icon div:last-child {
    position       : absolute;
    background     : #9ba4ae;
    color          : white;
    font-size      : 7px;
    text-transform : uppercase;
    top            : 3px;
    right          : 0;
    padding        : 1px 2px;
}

.product-docs-files-content .docs-files .js-delete {
    display    : inline-block;
    float      : right;
    margin-top : -4px;
}

/* End */


/* Start:/local/templates/.default/components/afonya/catalog.product.additional/.default/style.css?17430716042024*/
.item-additional {
    display: flex;
}

.item-additional__right {
    flex: 1;
    margin: 0;
}

.item-additional__right .not-available {
    font-weight: 500;
    width: fit-content;
    height: fit-content;
    font-size: 12px;
    background-color: #f0f0f0;
    padding: 8px 16px;
    margin: 13px 0;
}

.item-additional__basket {
    position: relative;
}

.item-additional__current-price {
    vertical-align: top
}

.item-additional__action-link {
    display: block;
    line-height: 14px;
}


.js-delete-product {
    cursor: pointer;
    text-align: right;
    font-size: small;
}

.js-restore-product {
    cursor: pointer;
    text-align: right;
    font-size: small;
    margin-bottom: 10px
}

.related-window {
    width: 260px;
    height: 95px;
}

.related-window form {
    font-size: small;
}

.related-window .el-css-onstore {
    font-size: medium;
}

.related-window .el-css-store-close {
    text-align: right;
    padding-top: 10px;
    padding-bottom: 5px;
}

.related-window .el-css-store-close a {
    color: #929292 !important;
}

.related-window .el-css-store-close a:hover {
    color: #0a7ddd !important;
}

.related-window .related-product-error {
    color: #9b0000;
    text-align: left;
}

#xmlId {
    border: 1px solid #4a8ac1 !important;
    border-radius: 4px;
    margin-top: 15px;
    padding: 8px 10px;
    width: 99%;
    box-sizing: border-box;
    cursor: pointer;
    height: 24px;
    overflow: hidden;
    transition: 0.15s;
}
#type {
    margin-top: 5px;
    margin-left: -5px;
}

.ui-widget.ui-widget-content {
    height: auto;
}

.item-wrapper button.js-added-product {
    border-width: 1px;
    border-style: inset;
    border-color: rgb(133, 133, 133);
    padding: 2px 6px;
    background-color: rgba(133, 133, 133, 0.12);
}

.item-wrapper hr {
    margin-bottom: 5px;
    margin-top: 5px;
}

picture.center-alignment {
    height: 90px;
    width: 90px;
}
picture.center-alignment img {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}


/* End */


/* Start:/local/js/libs/fancybox/3.5.7/jquery.fancybox.min.css?156464899512802*/
body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:manipulation;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}.fancybox-caption{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){.fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@keyframes a{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){.fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0 auto;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:2px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}}

/* End */


/* Start:/local/templates/.default/components/afonya/catalog.element/.default/tabs.css?17317078407775*/
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-700.eot");
    src: local("Roboto Black"), local("Roboto-Black"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-700.eot?#iefix") format("embedded-opentype"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-700.woff2") format("woff2"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-700.woff") format("woff"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-700.ttf") format("truetype"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-700.svg#Roboto") format("svg");
}
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-500.eot");
    src: local("Roboto Medium"), local("Roboto-Medium"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-500.eot?#iefix") format("embedded-opentype"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-500.woff2") format("woff2"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-500.woff") format("woff"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-500.ttf") format("truetype"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-500.svg#Roboto") format("svg");
}
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-regular.eot");
    src: local("Roboto"), local("Roboto-Regular"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-regular.eot?#iefix") format("embedded-opentype"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-regular.woff2") format("woff2"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-regular.woff") format("woff"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-regular.ttf") format("truetype"),
    url("/local/assets/fonts/roboto/web/roboto-v20-latin_cyrillic-regular.svg#Roboto") format("svg");
}
.tabs_container {
    font-size: 12px;
    margin-top: 17px;
}
div.tabs {
    width: 100%;
    height: 42px;
    white-space: nowrap;
    margin: 0px;
    border-bottom: 1px solid #dcdfe2;
    list-style: none;
}
div.tabs:not(.slick-slider) {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}
div.tabs.slick-slider {
    padding: 0 20px;
}
div.tabs.slick-slider div.tab-link {
    top: 0px;
}
div.tabs div.tab-link {
    display: inline-block;
    width: 145px;
    height: 42px;
    color: #222222;
    text-align: center;
    white-space: normal;
    vertical-align: bottom;
    outline: none;
    padding: 6px 15px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    position: relative;
    top: 1px;
    background: none;
    cursor: pointer;
}
div.tabs:not(.slick-slider) div.tab-link {
    display: flex;
    min-width: 0;
    width: auto;
    max-width: 150px;
    align-items: center;
	justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
}
div.tabs div.current {
    color: #222222;
    border-top: 1px solid #dcdfe2;
    border-left: 1px solid #dcdfe2;
    border-right: 1px solid #dcdfe2;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom: 1px solid #FFFFFF;
    padding: 5px 15px;
}
div.tabs:not(.slick-slider) div.current {
    padding: 5px 9px;
}
.tab_content {
    display: none;
    padding: 15px;
}
.tab_content.current {
    display: inherit;
}
#content .main .goods-list .item .right .specifications .content {
    display: block !important;
}
.af-product-card .tab_content[itemprop="description"] {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #222222;
    font-weight: 400;
}
.af-product-card .product-complect-content {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #222222;
    font-weight: 400;
}
.af-product-card .product-complect-content p {
    margin: 0;
}
.af-product-card .tab_content img,
.af-product-card .tab_content video {
    max-width: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
}
.bug-link {
    text-align: right;
}
.bug-link a {
    margin: 0 0 0 10px;
    font-size: 11px;
    color: #848282;
    text-decoration: underline;
}
.otzyvy{
    display: block !important;
}
.slick-prev, .slick-next {
    display: block;
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    top: 7px;
}
.slick-prev {
    left: 0;
}
.slick-next {
    right: 0;
}
.slick-prev:before,
.slick-prev:after,
.slick-next:before,
.slick-next:after {
    width: 1px;
    height: 10px;
    margin-top: -2px;
    margin-left: -2px;
    display: block;
    content: "\0020";
    overflow: hidden;
    clear: both;
    position: absolute;
    top: 50%;
    left: 50%;
    background: #000000;
}
.slick-prev:before {
    margin-top: -9px;
}
.slick-next:before {
    margin-left: 0;
    margin-top: -9px;
}
.slick-next:after {
    margin-left: 0;
}
.slick-prev:after,
.slick-next:before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.slick-prev:before,
.slick-next:after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.slick-slide,
.slick-slide * {
    outline: none !important;
}
.slick-slide:focus {
    outline: none;
}
.slick-slide {
    float: none !important;
}

/* модальное окно */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1100; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal-content {
    position: relative;
    background-color: #FFFFFF;
    margin: auto;
    padding: 0;
    border: 1px solid #000000;
    width: 800px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

.modal-content #feedback_form .input_text {
    border-width: 1px;
    border-style: inset;
    border-color: rgb(118, 118, 118);
    padding: 3px;
}

.modal-content #feedback_form table {
    border-collapse: separate;
    border-spacing: 4px;
}

@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}
@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}
.close {
    color: #000000;
    float: right;
    font-size: 28px;
    font-weight: 700;
}
.close:hover,
.close:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
}
.modal-header {
    padding: 2px 16px;
    background-color: #FFFFFF;
    color: #000000;
    height: 25px;
}
.modal-body {
    padding: 2px 16px;
}
.modal-footer {
    padding: 2px 16px;
    background-color: #FFFFFF;
    color: #000000;
}
.admin-tab li span {
    color: #485e6d;
}

/* End */


/* Start:/local/css/element.css?17019438112024*/
/*jointcontent*/
.jointcontent_block {
    font-size: 12px;
    margin-left: 10px;
}
.jointcontent_place-01 {
    margin-left: 0px;
    padding-top: 5px;
}
/*place-01 с VIP картой*/
.vip-price_button.clicked + .basket + .jointcontent_place-01 {
    padding-top: 0px;
}
.jointcontent_place-03,
.jointcontent_place-04 {
    margin-left: 0px;
}
/*------------*/

.image-holder {
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    text-align: left;
}

.image-item {
    list-style: none;
}
.image-item, 
.thumbnail-item {
    position: relative;
}
.image-item a,
.image-item picture,
.thumbnail-item a,
.thumbnail-item picture {
    display: block;
}

.normal-holder-wrapper {position: relative;}

.normal-holder {margin-bottom: 10px}

.thumbnail-holder .thumbnail-item {
    display: inline-block;
    margin-bottom: 6px;
}

.thumbnail-item:nth-child(odd) {
    margin-right: 6px;
}

.thumbnail-item.selected .thumbnail {
    border-color: #007cc3;
    box-shadow: 0 0 2px 1px rgba(0, 124, 195, 0.5);
}

.thumbnail {
    border: 1px #868686 solid;
    width: 70px;
    height: 70px;
    display: block;

    background-size:cover;
    background-position:50%;
}

.normal-holder-wrapper .enlarge
{
    position: absolute;
    bottom: 0;
    right: 0;
    cursor:pointer;
    /*
    display: block;
    height: 15px;
    line-height: 1;
    text-align: right;
    padding-right: 5px;
    bottom: 8px;
    z-index: 9999;
    width: 145px;
    cursor:pointer;
    */
}

@media all and (min-width: 800px) {
    .fancybox-thumbs {
        top: auto;
        width: auto;
        bottom: 0;
        left: 0;
        right: 0;
        height: 95px;
        padding: 10px 10px 5px 10px;
        box-sizing: border-box;
        background: rgba(0, 0, 0, 0.3);
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 0;
        bottom: 95px;
    }
}

.fancybox-thumbs&gt;ul {
    margin: 0 auto;
}
.fancybox-thumbs&gt;ul&gt;li:before {
    border-width: 2px !important;
}

.normal-size {font-size: 12px !important;}
/* End */
/* /local/templates/.default/css/codemirror/codemirror.css?14802457686519 */
/* /local/templates/.default/css/catalog.css?174307160429634 */
/* /local/css/store.css?16533933613185 */
/* /local/css/check-coupon-price.css?17367868572806 */
/* /local/css/catalog-bonus.css?16789551551037 */
/* /local/templates/.default/components/afonya/catalog.product.exhibition/.default/style.css?165477154993 */
/* /local/templates/.default/components/afonya/price.subscription/.default/style.css?16310993101903 */
/* /local/templates/.default/components/afonya/product.doc.file/.default/style.css?17036743022995 */
/* /local/templates/.default/components/afonya/catalog.product.additional/.default/style.css?17430716042024 */
/* /local/js/libs/fancybox/3.5.7/jquery.fancybox.min.css?156464899512802 */
/* /local/templates/.default/components/afonya/catalog.element/.default/tabs.css?17317078407775 */
/* /local/css/element.css?17019438112024 */
</pre></body></html>