

/* Start:/local/templates/teplocom/style.css?17700349659593*/
@charset "UTF-8";
:root {
  --color-default: #ffffff;
  --color-second: #161616;
  --color-accent: #F38A00;
  --color-accent--light: #FFA81E;
  --color-font-main: #161616;
  --color-font-second: #FFFFFF;
  --color-font-third: #A7A8A9;
  --color-bg: #EFEFEF;
  --color-dark: #3C3F44;
  --color-bg-dark: #5c5c5c;
  --color-divider: #D7D7D7;
  --font-main: "Circe";
  --font-size-xs: 10px;
  --font-size-sm: 14px;
  --font-size-main: 16px;
  --font-size-smd: 18px;
  --font-size-md: 20px;
  --font-size-lmd: 32px;
  --font-size-lg: 48px;
  --weight-font-main: 400;
  --section-margin: 100px;
  --section-margin-small: 20px;
  --index: calc(1vh + 1vw);
}

@media (max-width: 768px) {
  :root {
    --font-size-smd: 16px;
    --font-size-md: 18px;
    --font-size-lmd: 28px;
    --font-size-lg: 43px;
    --section-margin: 80px;
  }
}
@media (max-width: 576px) {
  :root {
    --font-size-md: 16px;
    --font-size-lmd: 20px;
    --font-size-lg: 22px;
    --section-margin: 50px;
    --section-margin-small: 10px;
  }
}
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;
}

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

html {
  height: 100%;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

body {
  font-family: var(--font-main);
  font-size: var(--font-size-main);
  font-weight: var(--weight-font-main);
  background-color: var(--color-default);
  color: var(--color-font-main);
  min-width: 320px;
  max-width: 2300px;
  margin: 0 auto;
}

img {
  user-select: none;
  height: auto;
  width: -webkit-fill-available;
}

textarea {
  resize: none;
}

button {
  font-family: inherit;
}

.form__icon-wrapper {
  margin-bottom: 20px;
  width: 48px;
  background-color: #fff;
}
.form__icon-wrapper img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: center;
}

.form__title {
  font-weight: bold;
  line-height: 120%;
}
@media (min-width: 576px) {
  .form__title {
    margin-bottom: 30px;
    font-size: var(--font-size-lmd);
  }
}
.form__title--center {
  text-align: center;
}

.form__content.hide {
  display: none;
}

.form__cols {
  display: grid;
  grid-template-columns: 100%;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .form__cols {
    gap: 20px;
  }
}

.form__label {
  width: 100%;
  position: relative;
}

.form__label-text {
  text-transform: uppercase;
  font-size: var(--font-size-sm);
  color: var(--color-font-third);
  font-weight: 900;
  position: absolute;
  width: 100%;
  height: 20px;
  top: 10px;
  left: 10px;
}
.form__label-text--required:after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: red;
  margin-left: 10px;
  position: relative;
  top: -5px;
  box-sizing: border-box;
}

.form__input,
.form__select,
.form__text {
  width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
  font-size: var(--font-size-main);
  line-height: 120%;
  font-family: var(--font-main);
  color: var(--font-color-main);
  background-color: transparent;
  border: 1px solid var(--color-divider);
}
@media (min-width: 576px) {
  .form__input,
  .form__select,
  .form__text {
    height: 60px;
  }
}

.form__input {
  padding-top: 20px;
}

.form__text {
  height: 150px;
  padding-top: 10px;
}

.form__button {
  display: block;
  width: 300px;
  margin: 0 auto 30px auto;
}
.form__button.oc-attach-loader {
  pointer-events: none;
}

.form__agreement {
  width: 100%;
  max-width: 600px;
  text-align: center;
  font-size: 14px;
  color: #000000;
  font-family: var(--font-main);
  line-height: 1.3;
  margin: 0 auto 20px auto;
}

.form__link {
  color: inherit;
  font-size: inherit;
  text-decoration: underline;
  cursor: pointer;
}
.form__link:hover {
  color: var(--color-accent);
}

.form__status {
  background-color: #62C584;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-family: var(--font-second);
  margin-top: 20px;
  display: none;
  line-height: 120%;
}
.form__status.active {
  display: block;
}

.form-performer .form__cols,
.performer-form .form__cols {
  grid-template-columns: 100%;
}

@media (max-width: 768px) {
  .form__cols {
    grid-template-columns: 100%;
  }
}
@media (max-width: 576px) {
  .form__title {
    margin-bottom: 15px;
    font-size: 22px;
  }
  .form__cols {
    gap: 15px;
  }
  .form__input, .form__select {
    height: 45px;
  }
}
.button {
  border: none;
  background-color: var(--color-accent);
  padding: 15px 25px;
  text-transform: uppercase;
  color: var(--color-font-second);
  font-size: var(--font-size-main);
  line-height: 95%;
  font-family: var(--font-main);
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  box-sizing: border-box;
}
.button:hover {
  background-color: var(--color-second);
}

.text {
  margin-bottom: 30px;
  font-size: var(--font-size-main);
  line-height: 130%;
  font-weight: bold;
  max-width: 1000px;
}
.text--opacity {
  opacity: 0.5;
}

#modalContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 101;
}

.modal-content {
  position: relative; /* Для корректного позиционирования кнопки закрытия */
  background: transparent;
  max-width: 600px;
  width: 90%;
}
@media screen and (max-width: 440px) {
  .modal-content .b24-form-content {
    padding: 10px 16px 0;
  }
  .modal-content .b24-form-content .b24-form-field {
    margin-bottom: 10px;
  }
  .modal-content .b24-form-content .b24-form-field-agreement {
    margin-bottom: 5px;
  }
  .modal-content .b24-form-content .b24-form-field-agreement .b24-form-control-container {
    line-height: 7px;
    margin-bottom: 0;
  }
  .modal-content .b24-form-content .b24-form-field-agreement .b24-form-field-agreement-link {
    font-size: 10px;
  }
  .modal-content .b24-form-control-text .b24-form-control {
    height: 76px;
  }
  .modal-content .b24-form-header-description {
    font-size: 13px;
    margin-bottom: 0;
  }
}

/* Стили для кнопки закрытия */
.trn-form-feedback-close {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  z-index: 100;
  width: 22px;
  height: 22px;
}

.trn-form-feedback-close img {
  width: 22px;
  height: 22px;
}

.b24-form-state-container .b24-form-success {
  background-color: #ffffff !important;
}

.b24-form-success-icon {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%20169%20169%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%3Cdefs%3E%3Ccircle%20id%3D%22a%22%20cx%3D%2284.5%22%20cy%3D%2284.5%22%20r%3D%2265.5%22/%3E%3Cfilter%20x%3D%22-.8%25%22%20y%3D%22-.8%25%22%20width%3D%22101.5%25%22%20height%3D%22101.5%25%22%20filterUnits%3D%22objectBoundingBox%22%20id%3D%22b%22%3E%3CfeGaussianBlur%20stdDeviation%3D%22.5%22%20in%3D%22SourceAlpha%22%20result%3D%22shadowBlurInner1%22/%3E%3CfeOffset%20dx%3D%22-1%22%20dy%3D%22-1%22%20in%3D%22shadowBlurInner1%22%20result%3D%22shadowOffsetInner1%22/%3E%3CfeComposite%20in%3D%22shadowOffsetInner1%22%20in2%3D%22SourceAlpha%22%20operator%3D%22arithmetic%22%20k2%3D%22-1%22%20k3%3D%221%22%20result%3D%22shadowInnerInner1%22/%3E%3CfeColorMatrix%20values%3D%220%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.0886691434%200%22%20in%3D%22shadowInnerInner1%22%20result%3D%22shadowMatrixInner1%22/%3E%3CfeGaussianBlur%20stdDeviation%3D%22.5%22%20in%3D%22SourceAlpha%22%20result%3D%22shadowBlurInner2%22/%3E%3CfeOffset%20dx%3D%221%22%20dy%3D%221%22%20in%3D%22shadowBlurInner2%22%20result%3D%22shadowOffsetInner2%22/%3E%3CfeComposite%20in%3D%22shadowOffsetInner2%22%20in2%3D%22SourceAlpha%22%20operator%3D%22arithmetic%22%20k2%3D%22-1%22%20k3%3D%221%22%20result%3D%22shadowInnerInner2%22/%3E%3CfeColorMatrix%20values%3D%220%200%200%200%201%200%200%200%200%201%200%200%200%200%201%200%200%200%200.292285839%200%22%20in%3D%22shadowInnerInner2%22%20result%3D%22shadowMatrixInner2%22/%3E%3CfeMerge%3E%3CfeMergeNode%20in%3D%22shadowMatrixInner1%22/%3E%3CfeMergeNode%20in%3D%22shadowMatrixInner2%22/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Ccircle%20stroke-opacity%3D%22.05%22%20stroke%3D%22%23000%22%20fill-opacity%3D%22.07%22%20fill%3D%22%23000%22%20cx%3D%2284.5%22%20cy%3D%2284.5%22%20r%3D%2284%22/%3E%3Cuse%20fill%3D%22%23FFF%22%20 xlink%3Ahref%3D%22%23a%22/%3E%3Cuse%20fill%3D%22%23000%22%20filter%3D%22url%28%23b%29%22%20 xlink%3Ahref%3D%22%23a%22/%3E%3Cpath%20fill%3D%22%23FFA500%22%20d%3D%22M76.853%20107L57%2087.651l6.949-6.771%2012.904%2012.576L106.051%2065%20113%2071.772z%22/%3E%3C/g%3E%3C/svg%3E") !important;
}

/*# sourceMappingURL=style.css.map */

/* End */


/* Start:/local/templates/teplocom/css/task-9260-topline.css?17782368311689*/
@media screen and (min-width: 1160px) {
  .header.new-header .header__logo-wrapper {
    width: 117px;
  }
  .header.new-header .header__logo-wrapper:not(a) {
    position: relative;
    top: 5px;
    margin-left: 30px;
  }
  .header.new-header .top-line__phone {
    font-family: Circe;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    color: #6D6E70;
  }
  .header.new-header .top-line__phone svg {
    position: relative;
    top: 2px;
    width: 14px;
    height: 14px;
    margin-right: 8px;
  }
  .header.new-header .top-line__email {
    font-family: Circe;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    text-transform: lowercase;
    color: #6D6E70;
  }
  .header.new-header .top-line__nav {
    flex-direction: row-reverse;
    gap: 25px;
  }
  .header.new-header .top-line__nav-item {
    margin-right: 0;
  }
  .header.new-header .top-line__link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    border-radius: 3px;
    height: 24px;
    box-sizing: border-box;
    background-color: #FFA420;
  }
  .header.new-header .top-line__link.js-open-popup-feedback {
    background-color: #6D6E70;
    margin-top: 0;
  }
  .header.new-header .top-line__link-name {
    position: relative;
    top: 2px;
    color: #FFF;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
  }
  .header.new-header .top-line__link:hover {
    filter: brightness(0.75);
  }
  .header.new-header .nav__list-item:has(ul):hover ul.sub_menu.sub_menu--nested {
    display: none;
  }
}

/*# sourceMappingURL=task-9260-topline.css.map */

/* End */


/* Start:/local/templates/teplocom/components/bitrix/menu/top-menu.php/style.css?17685715464511*/
@media (min-width: 1000px) {
  .nav__list.trn-hide-on-desktop {
    display: none;
  }
  .nav__list-item:has(ul) {
    position: relative;
  }
  .nav__list-item:has(ul) .sub_menu {
    display: none;
    position: absolute;
    flex-direction: column;
    flex-wrap: wrap;
    top: calc(100% + 4px);
    left: -33px;
    background-color: #ffffff;
    z-index: 100;
    width: max-content;
    min-width: 100%;
    max-height: 500px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
  }
  .nav__list-item:has(ul) .sub_menu__item {
    padding: 5px;
    display: flex;
    flex-direction: column;
  }
  .nav__list-item:has(ul) .sub_menu__item a {
    font-family: Circe;
    font-weight: 400;
    font-size: 14px;
    color: #000;
    margin-bottom: 0;
    text-decoration: none;
    line-height: normal;
  }
  .nav__list-item:has(ul) .sub_menu__item a:last-child {
    margin-bottom: 5px;
  }
  .nav__list-item:has(ul) .sub_menu__item a:hover {
    color: #FFA81E;
  }
  .nav__list-item:has(ul) .sub_menu__sub {
    display: flex;
    flex-direction: column;
    list-style: inside;
    padding-left: 7px;
  }
  .nav__list-item:has(ul) .sub_menu__sub li {
    width: max-content;
  }
  .nav__list-item:has(ul) .sub_menu__sub li a {
    font-family: Circe;
    font-weight: 400;
    font-size: 14px;
    color: #a7a8a9;
    text-decoration: none;
    line-height: normal;
  }
  .nav__list-item:has(ul) .sub_menu__sub li:hover a {
    color: #FFA81E;
  }
  .nav__list-item:has(ul) .sub_menu__sub li:hover::marker {
    color: #FFA81E;
  }
  .nav__list-item:has(ul) .sub_menu__sub li::marker {
    color: #a7a8a9;
    font-size: 10px;
    margin-right: 8px;
  }
  .nav__list-item:has(ul):hover:before {
    position: absolute;
    top: -10px;
    left: -43px;
    width: calc(100% + 46px);
    height: calc(100% + 20px);
    background-image: url("/local/templates/teplocom/components/bitrix/menu/top-menu.php/images/catalog_bg.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
  }
  .nav__list-item:has(ul):hover a.nav__link {
    z-index: 3;
    color: #FFA81E;
  }
  .nav__list-item:has(ul):hover ul.sub_menu {
    display: flex;
  }
  .nav__list-item:has(ul) a.nav__link:hover {
    color: #FFA81E;
    opacity: 1;
  }
}
@media (max-width: 1000px) {
  .nav__list.trn-hide-on-mobile {
    display: none;
  }
  .nav__list-item:has(ul) .sub_menu {
    display: none;
  }
  .trn-header .trn-arrow-back.active {
    width: 20px;
    height: 20px;
    background-image: url("/local/templates/teplocom/components/bitrix/menu/top-menu.php/images/arrow-back.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 1rem;
  }
  .trn-header .nav__list .nav__list-item:has(.sub_menu):after {
    display: block;
    content: "";
    background-image: url("/local/templates/teplocom/components/bitrix/menu/top-menu.php/images/arrow-right.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 13px;
    height: 19px;
    margin-left: auto;
    margin-top: -2px;
  }
  .trn-header .nav__list .nav__list-item:has(.sub_menu) > .nav__link {
    pointer-events: none;
  }
  .trn-header .nav__list .nav__list-item:has(.sub_menu).active:after {
    background-image: url("/local/templates/teplocom/components/bitrix/menu/top-menu.php/images/arrow-down.svg");
  }
  .trn-header .nav__list .nav__list-item:has(.sub_menu).active .sub_menu {
    position: relative;
    display: block;
    width: 100%;
    height: calc(90vh - 156px);
    overflow-y: auto;
  }
  .trn-header .nav__list .nav__list-item:has(.sub_menu).active .sub_menu:after {
    position: fixed;
    bottom: 20px;
    display: block;
    content: "";
    background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    width: 100%;
    height: 35px;
    pointer-events: none;
  }
  .trn-header .nav__list .nav__list-item:has(.sub_menu).active .sub_menu .sub_menu__item {
    margin: 1em 0;
  }
  .trn-header .nav__list .nav__list-item:has(.sub_menu).active .sub_menu .sub_menu__item a {
    font-size: 18px;
    text-decoration: none;
    color: #727474;
  }
}
@media (max-height: 680px) and (max-width: 480px) {
  .trn-header .nav__list .nav__list-item:has(.sub_menu).active .sub_menu {
    height: calc(90vh - 256px);
  }
  .trn-header .nav__list .nav__list-item:has(.sub_menu).active .sub_menu:after {
    bottom: 120px;
  }
}

/*# sourceMappingURL=style.css.map */

/* End */


/* Start:/local/templates/teplocom/components/bitrix/system.auth.form/trn-auth/style.css?17685715463728*/
@charset "UTF-8";
.auth-modal {
  display: none;
}

body:has(.auth-modal.open) {
  overflow: hidden;
}

.auth-modal.open {
  display: flex;
}

.auth-modal {
  position: fixed;
  z-index: 13;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.auth-modal .auth {
  background-color: #ffffff;
  z-index: 15;
}
@media (min-width: 700px) {
  .auth-modal .auth {
    padding: 40px;
    width: 40%;
  }
}
@media (max-width: 700px) {
  .auth-modal .auth {
    padding: 20px;
    width: 80%;
  }
}
.auth-modal .auth h3 {
  display: flex;
  justify-content: space-between;
}
.auth-modal .auth h3 .close_auth_modal {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.auth-modal .auth a.registr_btn {
  background-color: #D7D7D7;
  padding: 15px 25px;
  color: #3C3F44;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.auth-modal .auth a.frg_pass_btn {
  padding: 15px 25px;
  color: #D7D7D7;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.auth-modal tr:has(.bx-auth-serv-icons) {
  display: none;
}
.auth-modal .background {
  position: absolute;
  z-index: 12;
  width: 100%;
  height: 100%;
}
.auth-modal h3 {
  font-size: 32px;
  font-weight: 600;
  border-bottom: 1px solid #D7D7D7;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.auth-modal input[type=text], .auth-modal input[type=password] {
  height: 60px;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 10px 0;
  font-size: var(--font-size-main);
  line-height: 120%;
  font-family: var(--font-main);
  color: var(--font-color-main);
  background-color: var(--color-default);
  border: 1px solid var(--color-divider);
}
.auth-modal input[type=submit] {
  background-color: var(--color-accent);
  padding: 15px 25px;
  text-transform: uppercase;
  color: var(--color-font-second);
  font-size: var(--font-size-main);
  font-family: var(--font-main);
  font-weight: bold;
  cursor: pointer;
  line-height: 95%;
  border: none;
  outline: none;
  width: 100%;
}
.auth-modal table {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.auth-modal table tbody {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.auth-modal table tbody tr {
  width: 100%;
}
.auth-modal table tbody tr td {
  display: block;
  width: 100%;
}
.auth-modal tr:has(input[type=text]):not(:has(input[name=captcha_sid])), .auth-modal tr:has(input[type=password]):not(:has(input[name=captcha_sid])) {
  position: relative;
}
.auth-modal tr:has(input[type=text]):not(:has(input[name=captcha_sid])) td:first-child, .auth-modal tr:has(input[type=password]):not(:has(input[name=captcha_sid])) td:first-child {
  position: absolute;
  top: 10px;
  left: 10px;
}
.auth-modal tr:has(input[type=text].error_input) input, .auth-modal tr:has(input[type=password].error_input) input {
  border: 1px solid red !important;
  margin-bottom: 20px;
}
.auth-modal tr:has(input[type=text].error_input):after, .auth-modal tr:has(input[type=password].error_input):after {
  content: "Поле обязательно для заполнения";
  position: absolute;
  bottom: 0;
  color: red;
  font-size: 12px;
}
.auth-modal tr:has(input[type=checkbox]) {
  display: flex;
  align-items: center;
  gap: 10px;
}
.auth-modal tr:has(input[type=checkbox]) td {
  width: max-content;
}
.auth-modal span.starrequired {
  color: rgb(204, 54, 99);
}

.error {
  color: red;
  display: block;
  padding: 10px 0;
}

/*# sourceMappingURL=style.css.map */

/* End */


/* Start:/local/templates/teplocom/components/bitrix/breadcrumb/trn-breadcrumb/style.css?17685715463677*/
@charset "UTF-8";
:root {
  --color-default: #ffffff;
  --color-second: #161616;
  --color-accent: #F38A00;
  --color-accent--light: #FFA81E;
  --color-font-main: #161616;
  --color-font-second: #FFFFFF;
  --color-font-third: #A7A8A9;
  --color-bg: #EFEFEF;
  --color-dark: #3C3F44;
  --color-bg-dark: #5c5c5c;
  --color-divider: #D7D7D7;
  --font-main: "Circe";
  --font-size-xs: 10px;
  --font-size-sm: 14px;
  --font-size-main: 16px;
  --font-size-smd: 18px;
  --font-size-md: 20px;
  --font-size-lmd: 32px;
  --font-size-lg: 48px;
  --weight-font-main: 400;
  --section-margin: 100px;
  --section-margin-small: 20px;
  --index: calc(1vh + 1vw);
}

@media (max-width: 768px) {
  :root {
    --font-size-smd: 16px;
    --font-size-md: 18px;
    --font-size-lmd: 28px;
    --font-size-lg: 43px;
    --section-margin: 80px;
  }
}
@media (max-width: 576px) {
  :root {
    --font-size-md: 16px;
    --font-size-lmd: 20px;
    --font-size-lg: 22px;
    --section-margin: 50px;
    --section-margin-small: 10px;
  }
}
.breadcrumbs {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
  padding: 20px 15px;
  box-sizing: border-box;
}

.breadcrumbs__item {
  margin-right: 15px;
  position: relative;
  margin-bottom: 5px;
  list-style: none;
  font-family: var(--font-main);
  letter-spacing: 5%;
  padding-right: 40px;
}
@media (max-width: 576px) {
  .breadcrumbs__item:last-child:after {
    content: none;
  }
}
.breadcrumbs__item:after {
  content: "";
  display: block;
  width: 24px;
  height: 100%;
  background-image: url("/local/templates/teplocom/images/header/nav-line-2.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  .breadcrumbs__item {
    padding-right: 0;
  }
  .breadcrumbs__item::after {
    content: "";
    top: 40%; /* Корректировка позиции для мобильной версии */
    border-top: 1px solid #999C9D; /* Замена фонового изображения на границу */
    background-image: none;
    width: 100%; /* Линия занимает всю ширину */
    height: 1px; /* Толщина линии */
  }
  .breadcrumbs__item:last-child::after {
    content: none;
  }
}
@media (max-width: 768px) {
  .breadcrumbs__item--current {
    color: var(--font-main); /* Пример: изменение цвета текста */
    pointer-events: none; /* Запрет кликов на текущий элемент */
    font-weight: 400;
  }
  .breadcrumbs__item--current:after {
    display: none; /* Убираем линию после текущего элемента */
  }
}
.breadcrumbs__item--current:after {
  display: none;
}

.breadcrumbs__link {
  color: var(--color-font-main);
  font-size: var(--font-size-main);
  transition: color 0.3s;
  text-decoration: none;
}
@media (max-width: 768px) {
  .breadcrumbs__link {
    color: var(--color-font-third);
    text-decoration: none;
    font-weight: 400;
    text-transform: none;
  }
}
.breadcrumbs__link:hover {
  color: var(--color-accent);
}

.breadcrumbs__text {
  font-size: var(--font-size-main);
  opacity: 0.5;
}
@media (max-width: 768px) {
  .breadcrumbs__text {
    font-weight: 400;
  }
}

@media (max-width: 768px) {
  .breadcrumbs__item {
    padding-right: 23px;
    margin-right: 7px;
    text-decoration: none;
    font-weight: 400;
    text-transform: none;
  }
  .breadcrumbs__item::after {
    width: 15px;
  }
}
@media (max-width: 576px) {
  .breadcrumbs {
    padding: 15px 5px;
  }
}

/*# sourceMappingURL=style.css.map */

/* End */


/* Start:/local/templates/teplocom/components/bitrix/main.share/trn-socmedia/style.css?17685715461196*/
.main-share {
	display: inline-flex;
	margin: 0;
	padding: 0;
	list-style: none;
	align-items: center;
}

.main-share-icon {
	display: block;
	margin-left: 4px;
	width: 22px;
	height: 22px;
}

.main-share-icon a,
.main-share-icon a:link,
.main-share-icon a:visited,
.main-share-icon a:active {
	display: block;
	padding-top: 4px;
	width: 22px;
	height: 22px;
	border-radius: 3px;
	color: #fff;
	vertical-align: middle;
	text-align: center;
	font-size: 14px;
}

.main-share-icon > a { background-size: cover; }

.main-share-icon .main-share-vk {
	background: #446690 no-repeat center url(/local/templates/teplocom/components/bitrix/main.share/trn-socmedia/images/icon-vk.svg);
}

.main-share-icon .main-share-twitter {
	background: #50abf1 no-repeat center url(/local/templates/teplocom/components/bitrix/main.share/trn-socmedia/images/icon-twitter.svg);
}

.main-share-icon .main-share-google-plus {
	background: #fff no-repeat center url(/local/templates/teplocom/components/bitrix/main.share/trn-socmedia/images/icon-google-plus.svg);
}

.main-share-icon .main-share-pinterest {
	background: #cb2027 no-repeat center url(/local/templates/teplocom/components/bitrix/main.share/trn-socmedia/images/icon-pinterest.svg);
	background-size: 16px;
}

.main-share-icon .main-share-facebook {
	background: #39579a no-repeat center url(/local/templates/teplocom/components/bitrix/main.share/trn-socmedia/images/icon-facebook.svg);
}

.main-share-icon .main-share-telegram {
	background: #50abf1 no-repeat center url(/local/templates/teplocom/components/bitrix/main.share/trn-socmedia/images/icon-telegram.svg);
}
/* End */


/* Start:/local/templates/teplocom/components/bitrix/menu/footer-menu/style.css?17769570382173*/
@charset "UTF-8";
@media (max-width: 568px) {
  .footer__nav-wrapper {
    gap: 0;
    text-align: left;
  }
  .footer__nav-wrapper .footer__nav-col {
    margin-bottom: 0;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3137254902);
  }
  .footer__nav-wrapper .footer__nav-col .footer__nav-inner {
    height: 0;
    overflow: hidden;
    gap: normal;
    transition: all 0.3s;
  }
  .footer__nav-wrapper .footer__nav-col .footer__nav-inner li {
    width: 100%;
    padding: 0 10px;
  }
  .footer__nav-wrapper .footer__nav-col .footer__nav-inner li .footer__nav-inner-link {
    text-align: left;
    display: block;
    line-height: 30px;
    margin-bottom: 5px;
    font-weight: 350;
    font-size: 22px;
  }
  .footer__nav-wrapper .footer__nav-col .footer__nav-title {
    margin-bottom: 0;
    line-height: 36px;
    text-align: left;
    position: relative;
    padding: 0 10px;
    opacity: 1;
    font-weight: normal;
  }
  .footer__nav-wrapper .footer__nav-col .footer__nav-title:after {
    display: block;
    content: "";
    width: 20px; /* Размер иконки */
    height: 20px;
    right: 5px;
    top: 40%;
    transform: translateY(-50%) rotate(180deg);
    transform-origin: center;
    position: absolute;
    transition: all 0.3s;
    /* SVG как background-image */
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='19' height='19' rx='2.5' stroke='%23A2A2A2'/%3E%3Cpath d='M15.7341 11.9856L10.3672 6.61865L5.00025 11.9856' stroke='%23A2A2A2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .footer__nav-wrapper .footer__nav-col .footer__nav-title.show:after {
    transform: translateY(-50%) rotate(0deg);
  }
  .footer__nav-wrapper .footer__nav-col .footer__nav-title.show + .footer__nav-inner {
    height: fit-content;
  }
  .footer__nav-wrapper .footer__nav-col:nth-child(3) .footer__nav-title:after {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */

/* End */


/* Start:/include/common/cookie-alert/style.min.css?1772806482975*/
.trn-cookie-alert{position:fixed;display:none;flex-direction:column;justify-content:space-between;align-items:center;gap:20px;width:100%;max-width:calc(100vw - 70px);box-sizing:border-box;padding:21px 33px;left:50%;bottom:25px;transform:translate(-50%,0);background-color:#6d6e70;color:#fff;border-radius:9px;box-shadow:rgba(255,255,255,.2)0 7px 29px 0;z-index:99999}@media screen and (min-width:640px){.trn-cookie-alert{flex-direction:row;gap:29px;padding:11px 25px;bottom:19px;max-width:1380px}}.trn-cookie-alert-button,.trn-cookie-alert-text{font-family:Circe;font-weight:400;font-size:16px;line-height:110%;letter-spacing:0;cursor:default}.trn-cookie-alert-text a{color:#fff}.trn-cookie-alert-button{width:100%;background-color:#ffa420;border-radius:3px;padding:6px 15px;font-weight:700;text-align:center;cursor:pointer;box-sizing:border-box}.trn-cookie-alert-button span{position:relative;top:2px}@media screen and (min-width:640px){.trn-cookie-alert-button{width:auto}}
/* End */


/* Start:/local/templates/teplocom/template_styles.css?177695750838460*/
:root {
  --color-default: #ffffff;
  --color-second: #161616;
  --color-accent: #F38A00;
  --color-accent--light: #FFA81E;
  --color-font-main: #161616;
  --color-font-second: #FFFFFF;
  --color-font-third: #A7A8A9;
  --color-bg: #EFEFEF;
  --color-dark: #3C3F44;
  --color-bg-dark: #5c5c5c;
  --color-divider: #D7D7D7;
  --font-main: 'Circe';
  --font-size-xs: 10px;
  --font-size-sm: 14px;
  --font-size-main: 16px;
  --font-size-smd: 18px;
  --font-size-md: 20px;
  --font-size-lmd: 32px;
  --font-size-lg: 48px;
  --weight-font-main: 400;
  --section-margin: 100px;
  --section-margin-small: 20px;
  --index: calc(1vh + 1vw);
}

@media (max-width: 768px) {
  :root {
    --font-size-smd: 16px;
    --font-size-md: 18px;
    --font-size-lmd: 28px;
    --font-size-lg: 43px;
    --section-margin: 80px;
  }
}
@media (max-width: 576px) {
  :root {
    --font-size-md: 16px;
    --font-size-lmd: 20px;
    --font-size-lg: 22px;
    --section-margin: 50px;
    --section-margin-small: 10px;
  }
}
@font-face {
  font-family: "Circe";
  font-style: normal;
  font-weight: 100;
  src: url("/local/templates/teplocom/fonts/Circe-Thin.woff2") format("woff2");
}
@font-face {
  font-family: "Circe";
  font-style: normal;
  font-weight: 300;
  src: url("/local/templates/teplocom/fonts/Circe-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Circe";
  font-style: normal;
  font-weight: 400;
  src: url("/local/templates/teplocom/fonts/Circe-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Circe";
  font-style: normal;
  font-weight: 700;
  src: url("/local/templates/teplocom/fonts/Circe-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Circe";
  font-style: normal;
  font-weight: 800;
  src: url("/local/templates/teplocom/fonts/Circe-ExtraBold.woff2") format("woff2");
}
* {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
}

@media (min-width: 1400px) {
  .header .trn-header-form-btn {
    display: none;
  }
  .nav__link {
    font-size: 14px;
  }
  .nav__link {
    font-family: var(--font-main);
    color: var(--color-font-main);
    text-decoration: none;
    font-weight: 800;
    position: relative;
    text-transform: uppercase;
    transition: 0.3s;
  }
  .nav__link:hover {
    color: var(--color-accent);
    opacity: 0.6;
  }
  .nav__link.active {
    color: var(--color-accent);
  }
  .top-line {
    display: grid;
    gap: 0 20px;
  }
  .top-line__phone {
    font-size: 20px;
  }
  .top-line__link {
    font-size: 14px;
  }
}
@media (max-width: 1400px) {
  .header .trn-header-form-btn {
    display: none;
  }
  .nav__link {
    font-size: 14px;
  }
  .nav__link {
    font-family: var(--font-main);
    color: var(--color-font-main);
    text-decoration: none;
    font-weight: 800;
    position: relative;
    text-transform: uppercase;
    transition: 0.3s;
  }
  .nav__link:hover {
    color: var(--color-accent);
    opacity: 0.6;
  }
  .nav__link.active {
    color: var(--color-accent);
  }
  .top-line {
    display: grid;
    gap: 0 20px;
  }
  .top-line__phone {
    font-size: 20px;
  }
  .top-line__link {
    font-size: 14px;
  }
}
@media (max-width: 1000px) {
  .header {
    border-bottom: 1px solid #E3E3E6;
  }
  .header__search {
    height: 40px;
  }
  .header__cart-wrapper {
    padding-right: 40px;
  }
  .header__cart-wrapper::after {
    border: 20px solid transparent;
    border-right: 20px solid var(--color-accent);
    border-bottom: 20px solid var(--color-accent);
    left: -40px;
  }
  .header__lk-wrapper {
    padding-right: 30px;
  }
  .header__lk-wrapper::after {
    border: 20px solid transparent;
    border-right: 20px solid #D56C0A;
    border-bottom: 20px solid #D56C0A;
    left: -40px;
  }
  .header__logo-wrapper {
    width: 50px;
  }
  .header__container {
    grid-template-rows: max-content;
    grid-template-columns: max-content 1fr max-content;
    align-items: center;
    margin-bottom: 5px;
    padding: 0 10px;
  }
  .header__open-nav {
    display: block;
    width: 50px;
    height: 30px;
    border: none;
    background-color: transparent;
    background-image: url("/local/templates/teplocom/images/header/burger.svg");
    background-position: center right;
    background-repeat: no-repeat;
  }
  .header__open-nav.active {
    background-image: url("/local/templates/teplocom/images/header/close.svg");
    filter: brightness(10) invert(1);
  }
  .header__phone {
    display: inline-block;
    font-size: 18px;
    color: #A7A8A9;
    letter-spacing: -0.64px;
    text-decoration: none;
    font-weight: 700;
    margin-right: 2rem;
  }
  .header__email {
    display: inline-block;
    color: #A7A8A9;
    letter-spacing: -0.64px;
    text-decoration: none;
  }
  .header__container {
    gap: 15px 25px;
    padding: 0;
  }
  .header__logo-wrapper {
    grid-row: 1/2;
    width: 60px;
  }
  .header__container {
    gap: 25px 25px;
  }
  .header__logo-wrapper {
    width: 100px;
  }
  .nav {
    position: absolute;
    top: 45px;
    right: 0;
    display: none;
    background-color: var(--color-default);
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    border-top: 1px solid var(--color-bg);
    padding: 20px 15px;
    z-index: 50;
    border-bottom: 1px solid var(--color-divider);
    border-left: 1px solid var(--color-divider);
  }
  .nav.active {
    display: block;
  }
  .nav__list {
    display: flex;
    flex-direction: column;
  }
  .nav__list-item {
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 10px;
    margin-right: 0;
    padding-right: 20px;
    box-sizing: border-box;
  }
  .nav__list-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .nav__list-item:last-child:after {
    display: block;
    display: none;
  }
  .nav__list-item:last-child:before {
    display: none;
  }
  .nav__list-item:after {
    background-image: url("/local/templates/teplocom/./local/templates/teplocom/images/header/arrow.svg");
    width: 10px;
    height: 17px;
    display: none;
  }
  .nav__list-item:before {
    content: "";
    width: 20px;
    height: 1px;
    background-color: var(--color-bg);
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
  }
  .nav__top-line .top-line__phone, .nav__top-line .top-line__email {
    display: none;
  }
  .nav__top-line .top-line__nav {
    flex-direction: column;
  }
  .nav__top-line .top-line__nav-item {
    margin-bottom: 5px;
    margin-right: 0;
  }
  .nav__top-line .top-line__link {
    padding: 10px 10px;
    width: 100%;
    grid-template-columns: max-content max-content;
    justify-content: flex-start;
    box-sizing: border-box;
    height: 30px;
    display: inline-flex;
  }
  .nav {
    grid-column: 1/-1;
  }
  .nav__list-item {
    padding-right: 30px;
    margin-right: 10px;
  }
  .subscription {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .footer__container {
    grid-template-columns: 1fr 1fr;
  }
  .social-media__item {
    margin-right: 10px;
  }
}
@media (max-width: 768px) {
  .header {
    background-color: white;
  }
  .header__container {
    padding: 0;
    width: calc(100% - 20px) !important;
    margin: 0 auto;
  }
  .header .trn-header-form-btn {
    display: none;
  }
  .header__nav.trn-header.active {
    position: fixed;
    max-width: 89.5vw;
    top: 0;
    bottom: 0;
    padding: 0 5vw 5vw;
    box-shadow: -18.5vw 0 1px rgba(35, 35, 35, 0.5215686275);
  }
  .header__nav.trn-header.active:before {
    display: block;
    content: "";
    background-image: url("/local/templates/teplocom/images/header/logo-mini.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 120px;
    height: 120px;
    margin-bottom: 5vw;
  }
  .header__nav.trn-header.active:after {
    position: absolute;
    display: block;
    content: "";
    width: calc(100% - 10vw);
    top: 120px;
    border-bottom: 1px solid #999C9D;
  }
  .header__nav.trn-header.active + .header__mobile_contacts {
    z-index: 52;
    bottom: 10vw;
    position: fixed;
    left: 20.5vw;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #FFF;
  }
  .header__nav.trn-header.active + .header__mobile_contacts:after {
    position: absolute;
    display: block;
    content: "";
    background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    width: 100%;
    height: 35px;
    bottom: 50px;
    pointer-events: none;
  }
  .header__nav.trn-header.active + .header__mobile_contacts .header__phone, .header__nav.trn-header.active + .header__mobile_contacts .header__email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999C9D;
    font-weight: normal;
  }
  .header__nav.trn-header.active + .header__mobile_contacts .header__phone:before, .header__nav.trn-header.active + .header__mobile_contacts .header__email:before {
    display: block;
    content: "";
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
  }
  .header__nav.trn-header.active + .header__mobile_contacts .header__phone {
    margin-bottom: 0.75rem;
  }
  .header__nav.trn-header.active + .header__mobile_contacts .header__phone:before {
    background-image: url("/local/templates/teplocom/images/header/phone.svg");
  }
  .header__nav.trn-header.active + .header__mobile_contacts .header__phone svg {
    display: none;
  }
  .header__nav.trn-header.active + .header__mobile_contacts .header__email:before {
    background-image: url("/local/templates/teplocom/images/header/mail.svg");
  }
  .header__nav.trn-header.active ~ .header__open-nav.js-open-nav.active {
    right: 5vw;
    position: fixed;
    z-index: 51;
    top: 25px;
    width: 20px;
    height: 20px;
    background-image: url("/local/templates/teplocom/images/header/new-close.svg");
    background-size: contain;
    filter: none;
  }
  .header__nav.trn-header.active .top-line.nav__top-line {
    display: none;
  }
  .header__nav.trn-header.active .nav__list-item {
    margin-right: 0;
    padding-right: 15px;
  }
  .header__nav.trn-header.active .nav__list-item:before {
    display: none;
  }
  .header__nav.trn-header.active .nav__list-item .nav__link {
    font-size: 20px;
    font-weight: bold;
    text-transform: none;
  }
  .header__nav.trn-header.active .trn-header-form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: #F39C12;
    color: #FFF;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    padding: 25px;
    margin-top: 2rem;
  }
  .subscription__container {
    grid-template-columns: 100%;
  }
  .footer__container {
    grid-template-columns: 100%;
  }
  .footer__phone {
    text-align: center;
    width: auto;
    margin: 0 auto 10px auto;
  }
  .footer__nav {
    justify-content: center;
  }
  .footer__nav-link {
    padding: 14px 33px;
    border: 1px solid var(--color-accent);
  }
  .footer__col--right {
    justify-content: center;
  }
  .footer__footer {
    justify-content: center;
  }
  .footer__nav-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  .footer__nav-col {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .page {
    padding-top: 20px;
  }
  .page-white-mobile {
    background-color: #FFF !important;
  }
  .header {
    background-color: white;
  }
  .header__container {
    padding: 0;
    width: calc(100% - 10vw) !important;
    margin: 0 auto;
    gap: 17px !important;
  }
  .header__search-input {
    padding-left: 5px;
  }
  .header__lk-wrapper {
    padding-right: 15px;
  }
  .header__lk-text {
    display: none;
  }
  .header__mobile_contacts {
    text-align: right;
  }
  .header__mobile_contacts .header__phone {
    margin: 0.25rem 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin-right: 0;
  }
  .header__mobile_contacts .header__phone svg {
    display: none;
  }
  .header__mobile_contacts .header__phone:after {
    position: relative;
    display: block;
    content: url("/local/templates/teplocom/images/header/phone_new.svg");
  }
  .header__mobile_contacts .header__email {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
  }
  .header__mobile_contacts .header__email:after {
    position: relative;
    display: block;
    content: url("/local/templates/teplocom/images/header/email_new.svg");
  }
  .header__nav.trn-header.active {
    position: fixed;
    max-width: 89.5vw;
    top: 0;
    bottom: 0;
    padding: 0 5vw 5vw;
    box-shadow: -13.5vw 0 1px rgba(35, 35, 35, 0.5215686275);
  }
  .header__nav.trn-header.active:before {
    display: block;
    content: "";
    background-image: url("/local/templates/teplocom/images/header/logo-mini.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 120px;
    height: 120px;
    margin-bottom: 5vw;
  }
  .header__nav.trn-header.active:after {
    position: absolute;
    display: block;
    content: "";
    width: calc(100% - 10vw);
    top: 120px;
    border-bottom: 1px solid #999C9D;
  }
  .header__nav.trn-header.active + .header__mobile_contacts {
    z-index: 52;
    bottom: 10vw;
    position: fixed;
    left: 15.5vw;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #FFF;
  }
  .header__nav.trn-header.active + .header__mobile_contacts:after {
    position: absolute;
    display: block;
    content: "";
    background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    width: 100%;
    height: 35px;
    bottom: 50px;
    pointer-events: none;
  }
  .header__nav.trn-header.active + .header__mobile_contacts .header__phone, .header__nav.trn-header.active + .header__mobile_contacts .header__email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999C9D;
    font-weight: normal;
    justify-content: start;
  }
  .header__nav.trn-header.active + .header__mobile_contacts .header__phone:after, .header__nav.trn-header.active + .header__mobile_contacts .header__email:after {
    display: none;
  }
  .header__nav.trn-header.active + .header__mobile_contacts .header__phone:before, .header__nav.trn-header.active + .header__mobile_contacts .header__email:before {
    display: block;
    content: "";
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
  }
  .header__nav.trn-header.active + .header__mobile_contacts .header__phone {
    margin-bottom: 0.75rem;
  }
  .header__nav.trn-header.active + .header__mobile_contacts .header__phone:before {
    background-image: url("/local/templates/teplocom/images/header/phone.svg");
  }
  .header__nav.trn-header.active + .header__mobile_contacts .header__phone svg {
    display: none;
  }
  .header__nav.trn-header.active + .header__mobile_contacts .header__email:before {
    background-image: url("/local/templates/teplocom/images/header/mail.svg");
  }
  .header__nav.trn-header.active ~ .header__open-nav.js-open-nav.active {
    right: 5vw;
    position: fixed;
    z-index: 51;
    top: 25px;
    width: 20px;
    height: 20px;
    background-image: url("/local/templates/teplocom/images/header/new-close.svg");
    background-size: contain;
    filter: none;
  }
  .header__nav.trn-header.active .top-line.nav__top-line {
    display: none;
  }
  .header__nav.trn-header.active .nav__list-item {
    margin-right: 0;
    padding-right: 15px;
  }
  .header__nav.trn-header.active .nav__list-item:before {
    display: none;
  }
  .header__nav.trn-header.active .nav__list-item .nav__link {
    font-size: 20px;
    font-weight: bold;
    text-transform: none;
  }
  .header__nav.trn-header.active .trn-header-form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: #F39C12;
    color: #FFF;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    padding: 25px;
    margin-top: 2rem;
  }
  .header .header__open-nav {
    background-position: center;
  }
  .footer__nav {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .footer__nav-wrapper {
    grid-template-columns: 100%;
    gap: 40px;
  }
  .footer__nav-item {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  .footer__nav-item:last-child {
    margin-bottom: 0;
  }
  .footer__nav-link {
    justify-content: center;
    grid-template-columns: max-content max-content;
    width: 100%;
  }
  .footer__col--right {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer__button {
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
    max-width: 400px;
  }
  .footer__footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }
  .footer__social-media {
    width: 100%;
    justify-content: space-between;
  }
  .footer__terms {
    padding-left: 0;
    margin-left: 0;
    margin-top: 10px;
  }
  .footer__terms::before {
    display: none;
  }
}
main {
  height: max-content;
}

.page__main {
  height: max-content;
  overflow: hidden;
  max-width: 100%;
}

.page {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: max-content 1fr max-content;
  height: auto;
  box-sizing: border-box;
  margin: auto;
}
@media (min-width: 576px) {
  .page {
    padding: 15px 0 0;
  }
}
.page--grey {
  background-color: var(--color-bg);
}

.container {
  width: 100%;
  max-width: 1400px;
  padding: 0 10px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 576px) {
  .container {
    padding: 0 5px;
  }
}
.header {
  height: max-content;
  border-bottom: 0;
}

.header__container {
  display: grid;
  box-sizing: border-box;
}
@media (min-width: 1160px) {
  .header__container {
    gap: 25px 45px;
    padding: 0 15px;
  }
}
@media (max-width: 1160px) {
  .header__container {
    gap: 15px 25px;
    padding: 0;
  }
}
@media (min-width: 1000px) {
  .header__container {
    grid-template-columns: max-content 1fr;
    grid-template-rows: max-content max-content;
    align-items: center;
    margin-bottom: 15px;
  }
}
.header__logo-wrapper {
  text-decoration: none;
  display: block;
}
@media (max-width: 1160px) {
  .header__logo-wrapper {
    grid-row: 1/2;
    width: 60px;
  }
}
@media (min-width: 1160px) and (max-width: 1200px) {
  .header__logo-wrapper {
    width: 100px;
  }
}
@media (min-width: 1160px) {
  .header__logo-wrapper {
    grid-row: 1/-1;
    width: 160px;
  }
}

.header__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.header__search {
  background-color: var(--color-accent--light);
}
@media (min-width: 1000px) {
  .header__search {
    height: 50px;
  }
}

.header__search-container {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr max-content max-content;
  box-sizing: border-box;
}

.header__search-form {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 0 10px;
  height: 100%;
  align-items: center;
  position: relative;
}

input.header__search-input {
  background-color: transparent;
  text-transform: uppercase;
  font-family: var(--font-main);
  font-weight: 700;
  letter-spacing: -0.9px;
  border: none;
  height: 100%;
  width: 100%;
  color: var(--color-font-second);
  font-size: 18px;
  transition: 0.3s;
  padding-left: 15px;
  padding-right: 60px;
}
input.header__search-input::placeholder, input.header__search-input::-webkit-input-placeholder, input.header__search-input::-moz-placeholder, input.header__search-input:-moz-placeholder, input.header__search-input:-ms-input-placeholder {
  color: var(--color-font-second);
  font-size: 18px;
  font-family: var(--font-main);
}
input.header__search-input:active, input.header__search-input:focus {
  outline: none;
  background-color: #161616;
}

.header input::placeholder {
  color: var(--color-font-second);
}
.header__email {
  color: #A7A8A9;
  transition: 0.3s;
  letter-spacing: -0.6px;
  text-decoration: none;
  font-weight: 700;
}

.header__search-button {
  width: 25px;
  height: 100%;
  background-image: url("/local/templates/teplocom/images/header/search.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 50px;
}

.header__cart-wrapper {
  background-color: var(--color-accent);
  position: relative;
  height: 100%;
}
@media (min-width: 1000px) {
  .header__cart-wrapper {
    padding-right: 80px;
  }
}
.header__cart-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}
@media (min-width: 1000px) {
  .header__cart-wrapper:after {
    border: 25px solid transparent;
    border-right: 25px solid var(--color-accent);
    border-bottom: 25px solid var(--color-accent);
    left: -49px;
  }
}

.header__cart {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0 8px;
  color: var(--color-font-second);
  font-weight: 700;
  text-decoration: none !important;
  height: 100%;
  align-items: center;
  font-size: 18px;
}

.header__cart-count {
  position: absolute;
  left: 14px;
  top: 7px;
  background-color: var(--color-default);
  font-size: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  width: 15px;
  height: 12px;
  color: var(--color-font-main);
  opacity: 0.9;
}
.header__cart-count:empty {
  display: none;
}

.header__lk-wrapper {
  background-color: #D56C0A;
  position: relative;
  height: 100%;
}
@media (min-width: 1000px) {
  .header__lk-wrapper {
    padding-right: 50px;
  }
}
.header__lk-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}
@media (min-width: 1000px) {
  .header__lk-wrapper:after {
    border: 25px solid transparent;
    border-right: 25px solid #D56C0A;
    border-bottom: 25px solid #D56C0A;
    left: -49px;
  }
}

.header__lk {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0 8px;
  color: var(--color-font-second);
  font-weight: 700;
  text-decoration: none !important;
  height: 100%;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
}

@media (min-width: 1000px) {
  .header__open-nav {
    display: none;
  }
}

@media (min-width: 1000px) {
  .header__phone, .header__email {
    display: none;
  }
}

@media (max-width: 1160px) {
  .nav {
    grid-column: 1/-1;
  }
}

@media (max-width: 1000px) {
  .top-line.nav__top-line {
    display: block;
    margin-bottom: 15px;
  }
}
@media (min-width: 1000px) {
  .top-line.nav__top-line {
    display: none;
  }
}

.nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav__list-item {
  position: relative;
}
.nav__list-item:after {
  content: "";
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 1000px) {
  .nav__list-item:after {
    display: block;
    width: 24px;
    height: 100%;
    background-image: url("/local/templates/teplocom/images/header/nav-line.svg");
  }
}
@media (max-width: 1520px) {
  .nav__list-item {
    padding-right: 30px;
    margin-right: 10px;
  }
}
@media (min-width: 1520px) {
  .nav__list-item {
    padding-right: 40px;
    margin-right: 18px;
  }
}
@media (min-width: 768px) {
  .nav__list-item:last-child {
    margin-right: 0;
    padding-right: 0;
  }
}
.nav__list-item:last-child:after {
  display: none;
}

.nav__link {
  font-size: 14px;
  font-weight: normal;
}
@media (max-width: 1160px) {
  .nav__link {
    grid-column: 1/-1;
  }
}

.top-line {
  grid-template-columns: max-content max-content;
  align-items: center;
  justify-content: flex-end;
}
@media (min-width: 1300px) {
  .top-line {
    gap: 0 65px;
  }
}
@media (max-width: 1000px) {
  .top-line {
    display: none;
  }
}

.top-contacts {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.top-line__email {
  color: #A7A8A9;
  transition: 0.3s;
  letter-spacing: -0.6px;
  text-decoration: none;
  font-weight: 700;
}
.top-line__email:hover {
  color: #000;
}

.top-line__phone {
  color: #A7A8A9;
  letter-spacing: -0.6px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}
.top-line__phone:hover {
  color: #000;
}
@media (min-width: 1400px) {
  .top-line__phone {
    font-size: 28px;
  }
}

.top-line__nav {
  display: flex;
  justify-content: flex-end;
}

.top-line__nav-item {
  margin-right: 25px;
}
.top-line__nav-item:last-child {
  margin-right: 0;
}

.top-line__link {
  text-decoration: none;
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: center;
  gap: 0 10px;
  transition: 0.3s;
  height: 20px;
  background-color: transparent;
  border: none;
  font-family: var(--font-main);
  padding: 0;
  cursor: pointer;
}
@media (min-width: 1400px) {
  .top-line__link {
    font-size: var(--font-size-main);
  }
}
.top-line__link img {
  object-fit: contain;
  object-position: center;
}
.top-line__link:hover {
  filter: brightness(0);
}
.top-line__link.js-open-popup-feedback {
  margin-top: -1px;
}

.top-line__link-name {
  color: #A7A8A9;
}

.subscription {
  background-color: var(--color-accent);
  padding: calc(var(--section-margin) / 2) 0;
}
@media (min-width: 1000px) {
  .subscription {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

.subscription__container {
  display: grid;
  gap: 20px 40px;
}
@media (min-width: 769px) {
  .subscription__container {
    grid-template-columns: 3fr 2fr;
  }
}

.subscription__wrapper-text {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: max-content max-content;
  gap: 0 15px;
}

.subscription__icon {
  display: block;
  width: 100%;
  height: 48px;
  grid-column: 1/2;
  grid-row: 1/-1;
}
.subscription__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

.subscription__title.title {
  color: var(--color-font-second);
  font-size: var(--font-size-lmd);
  margin-bottom: 15px;
}

.subscription__subtitle {
  color: var(--color-font-second);
  font-size: var(--font-size-smd);
  font-weight: bold;
  line-height: 150%;
}

.subscription__input {
  background-color: var(--color-default);
  margin-bottom: 15px;
  padding: 0 0 0 15px;
  height: 50px;
}

.subscription__button-wrapper {
  display: grid;
  gap: 15px;
  align-items: center;
}
@media (min-width: 1100px) {
  .subscription__button-wrapper {
    grid-template-columns: 180px 1fr;
  }
}

.subscription__button {
  background-color: var(--color-default);
  width: 100%;
  text-align: center;
  color: var(--color-font-main);
  border: 1px solid var(--color-divider);
}
.subscription__button:hover {
  color: var(--color-font-second);
}

.subscription__agreement {
  color: var(--color-font-second);
  font-size: var(--font-size-sm);
  line-height: 120%;
}

.subscription__link {
  color: var(--color-font-second);
  font-size: var(--font-size-sm);
  text-decoration: underline;
  transition: 0.3s;
}
.subscription__link:hover {
  color: var(--color-font-main);
}

@media (max-width: 1100px) {
  .subscription__button-wrapper {
    grid-template-columns: 100%;
  }
}
.footer {
  background-color: var(--color-dark);
  padding: calc(var(--section-margin) / 2) 0;
}

.footer__container {
  display: grid;
  gap: 20px;
  justify-content: space-between;
}
@media (min-width: 1000px) {
  .footer__container {
    grid-template-columns: max-content 1fr;
  }
}

.container.footer__container:before,
.container.footer__container:after {
  content: none;
}

.footer__col--right {
  display: flex;
}
@media (min-width: 769px) {
  .footer__col--right {
    justify-content: flex-end;
  }
}

.footer__left {
  display: flex;
  align-items: center;
}
@media (max-width: 1080px) {
  .footer__left {
    margin-bottom: 20px;
    align-items: flex-start;
  }
  .footer__left a {
    margin-left: 1.2rem;
  }
}
@media (max-width: 576px) {
  .footer__left {
    margin-bottom: 20px;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }
}

.footer__phone {
  font-weight: 700;
  color: var(--color-font-second);
  text-decoration: none;
  letter-spacing: -0.64px;
  display: block;
  transition: 0.3s;
  font-size: 38px;
}
@media (min-width: 769px) {
  .footer__phone {
    margin-bottom: 10px;
    font-size: var(--font-size-lmd);
  }
}
.footer__phone:hover {
  color: var(--color-accent);
}

.footer__copyright {
  opacity: 0.5;
  color: var(--color-font-second);
}
.footer__copyright span {
  position: relative;
  bottom: 2px;
}
@media (min-width: 1080px) {
  .footer__copyright span {
    bottom: 3px;
  }
}

.footer__footer {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1080px) {
  .footer__footer {
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}

.footer__terms {
  opacity: 0.5;
  font-weight: 350;
  color: var(--color-font-second);
  text-decoration: none;
  position: relative;
  box-sizing: border-box;
  font-size: 0.85rem;
}
@media (min-width: 576px) {
  .footer__terms {
    padding-left: 45px;
    margin-left: 30px;
  }
}
@media (min-width: 1000px) {
  .footer__terms {
    font-size: 1rem;
  }
}
@media (min-width: 640px) and (max-width: 780px) {
  .footer__terms {
    margin-left: 0.5rem;
    padding-left: 35px;
  }
}
.footer__terms:before {
  content: "";
  width: 24px;
  height: 100%;
  background-image: url("/local/templates/teplocom/images/header/nav-line.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  filter: invert(1) brightness(100);
}
@media (min-width: 769px) {
  .footer__terms:before {
    display: block;
  }
}
.footer__terms:hover {
  text-decoration: underline;
}

.footer__nav {
  display: flex;
}

@media (min-width: 576px) {
  .footer__nav-item {
    margin-right: 15px;
  }
}
.footer__nav-item:last-child {
  margin-right: 0;
}

.footer__nav-link {
  text-decoration: none;
  color: var(--color-accent);
  display: grid;
  gap: 15px;
  transition: 0.1s;
  background-color: transparent;
  cursor: pointer;
  font-size: var(--font-size-main);
  box-sizing: border-box;
  margin: 0;
  line-height: 100%;
  font-weight: 350;
  font-size: 22px;
}
@media (min-width: 769px) {
  .footer__nav-link {
    padding: 0;
    border: none;
  }
}
@media (min-width: 576px) {
  .footer__nav-link {
    grid-template-columns: 10px 1fr;
  }
}
.footer__nav-link:hover {
  filter: grayscale(5) brightness(5);
}

.footer__col--right {
  display: flex;
  align-items: center;
}
@media (min-width: 769px) {
  .footer__col--right {
    justify-content: flex-end;
  }
}

.footer__button {
  border: none;
  background-color: var(--color-accent);
  padding: 12px 25px;
  text-transform: uppercase;
  color: var(--color-font-second);
  font-size: var(--font-size-main);
  font-family: var(--font-main);
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
@media (min-width: 576px) {
  .footer__button {
    margin-left: 25px;
  }
}
.footer__button:hover {
  background-color: var(--color-second);
}

.footer__nav-wrapper {
  display: grid;
  grid-column: 1/-1;
  padding: calc(var(--section-margin) / 2) 0;
}
@media (min-width: 769px) {
  .footer__nav-wrapper {
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
  }
}

.footer__nav-title {
  text-transform: uppercase;
  color: var(--color-font-second);
  opacity: 0.5;
  grid-column: 1/-1;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  margin-bottom: 10px;
}
@media (min-width: 769px) {
  .footer__nav-title {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 640px) {
  .footer__nav-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    text-transform: uppercase;
    color: #FFF;
    opacity: 1;
  }
}

@media (min-width: 769px) {
  .footer__nav-inner.footer__nav-inner--2-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 769px) {
  .footer__nav-inner.footer__nav-inner--1-cols {
    grid-template-columns: 1fr;
  }
}

.footer__nav-inner {
  grid-template-columns: 100%;
  grid-gap: 15px 40px;
  gap: 15px 40px;
}
.footer__nav-inner--2-cols {
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 769px) {
  .footer__nav-inner {
    display: grid;
    grid-template-columns: 100%;
    gap: 15px 40px;
  }
}
@media (min-width: 640px) and (max-width: 780px) {
  .footer__nav-inner-item {
    margin-top: 15px;
  }
}

.footer__nav-inner-link {
  text-decoration: none;
  color: var(--color-font-second);
  font-weight: bold;
  display: inline-block;
}
.footer__nav-inner-link:hover {
  text-decoration: underline;
}
@media screen and (min-width: 640px) {
  .footer__nav-inner-link {
    font-weight: 350;
    font-size: 22px;
    line-height: 100%;
  }
}

.social-media {
  display: flex;
  align-items: center;
}

@media (min-width: 1000px) {
  .social-media__item {
    margin-right: 15px;
  }
}
.social-media__item:last-child {
  margin-right: 0;
}

.social-media__link {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--color-default);
  box-sizing: border-box;
  background-color: var(--color-accent);
  transition: 0.3s;
  border-radius: 50%;
  cursor: pointer;
}
.social-media__link img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  object-position: center;
  transition: 0.3s;
}
.social-media__link:hover {
  background-color: var(--color-second);
}

.title {
  font-size: var(--font-size-lg);
  margin-bottom: calc(var(--section-margin) / 2);
  line-height: 120%;
  letter-spacing: -0.64px;
}

.subtitle {
  font-weight: 600;
  font-size: var(--font-size-md);
  margin-bottom: calc(var(--section-margin) / 8);
  line-height: 120%;
  letter-spacing: -0.64px;
}

.trn-types-of-payment svg {
  box-sizing: border-box;
  display: inline-block;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 50%;
  fill: var(--color-bg-default);
}
.trn-types-of-payment svg.card {
  fill: rgb(204, 54, 99);
  background-color: rgba(204, 54, 99, 0.2);
}
.trn-types-of-payment span, .trn-types-of-payment img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}
.trn-types-of-payment span:last-child {
  margin-right: 0;
}
@media all and (max-width: 640px) {
  .trn-types-of-payment {
    flex-direction: row;
  }
}

@media (max-width: 769px) {
  .footer__info-block {
    display: grid;
    justify-content: center;
    padding: 0 10px;
  }
}
@media (min-width: 640px) and (max-width: 780px) {
  .footer__info-block {
    margin-top: 15px;
  }
}
.footer__info-block .blocks {
  margin-bottom: 15px;
}
.footer__info-block .footer__info-link {
  display: inline-flex;
  gap: 14px;
}
.footer__info-block .footer__info-link a {
  color: var(--color-font-second);
  text-decoration: none;
  display: block;
  transition: 0.3s;
}
.footer__info-block .footer__info-link a:hover {
  text-decoration: underline;
}
.footer__info-block .footer__info-link i {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}
.footer__info-block .footer__info-link a[href="tel:+78002500303"] {
  font-weight: 350;
  font-size: 22px;
  line-height: 100%;
}
.footer__info-block .footer__info-link .svg-inline-email + a {
  font-weight: 350;
  font-size: 22px;
  line-height: 100%;
}
.footer__info-block .footer__info-link.support {
  margin-top: 30px;
}
.footer__info-block .footer__info-link .footer__info-link_support {
  gap: 14px;
  display: flex;
  flex-direction: column;
}
.footer__info-block .footer__info-link .footer__info-link_support a {
  font-weight: 350;
  font-size: 22px;
  color: #f38a00;
}
.footer__info-block .footer__info-text {
  display: inline-flex;
  gap: 14px;
  color: var(--color-font-second);
  opacity: 1;
  text-decoration: none;
  position: relative;
  box-sizing: border-box;
}
.footer__info-block .footer__info-text i {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}
.footer__info-block .footer__info-text.shedule {
  font-weight: 350;
  font-size: 18px;
  line-height: 100%;
  opacity: 0.5;
}
.footer__info-block .footer__info-text .svg-inline-address + p {
  font-weight: 350;
  font-size: 22px;
  line-height: 100%;
}
.footer__info-block .shedule {
  margin-left: 34px;
  margin-top: 8px;
  font-weight: 350;
  font-size: 18px;
  line-height: 100%;
}

.error_404_page {
  display: grid;
  grid-column-gap: 20px;
  position: relative;
  grid-row-gap: 20px;
}
@media (min-width: 700px) {
  .error_404_page {
    grid-template-columns: 1fr 1fr;
    padding: 0 130px;
  }
}
@media (max-width: 700px) {
  .error_404_page {
    grid-template-columns: 1fr;
  }
}
.error_404_page .number img {
  width: 100%;
}
.error_404_page .text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 700px) {
  .error_404_page .text {
    width: max-content;
    align-self: center;
    justify-self: flex-end;
  }
}
@media (max-width: 700px) {
  .error_404_page .text {
    align-items: center;
  }
}
.error_404_page .text h3 {
  font-weight: 600;
  text-transform: uppercase;
  color: #f38a00;
  line-height: 120%;
  width: max-content;
}
@media (min-width: 700px) {
  .error_404_page .text h3 {
    font-size: 64px;
  }
}
@media (max-width: 700px) {
  .error_404_page .text h3 {
    font-size: 32px;
  }
}
.error_404_page .text span {
  font-weight: 400;
  font-size: 20px;
  color: #000;
}
@media (min-width: 700px) {
  .error_404_page .text span {
    width: max-content;
  }
}
@media (max-width: 700px) {
  .error_404_page .text span {
    text-align: center;
  }
}
.error_404_page .text a {
  text-decoration: none;
  cursor: pointer;
  padding: 13px 10px 10px;
  background: #ffa81e;
  display: block;
  width: max-content;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}
@media (min-width: 700px) {
  .error_404_page .text a {
    font-size: 24px;
  }
}
@media (max-width: 700px) {
  .error_404_page .text a {
    font-size: 20px;
  }
}

ul.trn-list {
  list-style: disc;
  padding-left: 1rem;
}

ol.trn-list {
  list-style: auto;
  padding-left: 1rem;
}

ul:has(.trn-list), ol:has(.trn-list) {
  padding-left: 1rem;
}

ul:has(.trn-list) {
  list-style: disc;
}

ol:has(.trn-list) {
  list-style: auto;
}

/*# sourceMappingURL=template_styles.css.map */

/* End */
/* /local/templates/teplocom/style.css?17700349659593 */
/* /local/templates/teplocom/css/task-9260-topline.css?17782368311689 */
/* /local/templates/teplocom/components/bitrix/menu/top-menu.php/style.css?17685715464511 */
/* /local/templates/teplocom/components/bitrix/system.auth.form/trn-auth/style.css?17685715463728 */
/* /local/templates/teplocom/components/bitrix/breadcrumb/trn-breadcrumb/style.css?17685715463677 */
/* /local/templates/teplocom/components/bitrix/main.share/trn-socmedia/style.css?17685715461196 */
/* /local/templates/teplocom/components/bitrix/menu/footer-menu/style.css?17769570382173 */
/* /include/common/cookie-alert/style.min.css?1772806482975 */
/* /local/templates/teplocom/template_styles.css?177695750838460 */
