<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
  font-family: Roboto Thin;
  src: url(/fonts/roboto/Roboto-Thin.ttf);
}
@font-face {
  font-family: Roboto Light;
  src: url(/fonts/roboto/Roboto-Light.ttf);
}
@font-face {
  font-family: Roboto Regular;
  src: url(/fonts/roboto/Roboto-Regular.ttf);
}
@font-face {
  font-family: Roboto Medium;
  src: url(/fonts/roboto/Roboto-Medium.ttf);
}
@font-face {
  font-family: Roboto Bold;
  src: url(/fonts/roboto/Roboto-Bold.ttf);
}
@font-face {
  font-family: Roboto Black;
  src: url(/fonts/roboto/Roboto-Black.ttf);
}
@font-face {
  font-family: Roboto Italic;
  src: url(/fonts/roboto/Roboto-Italic.ttf);
}
.m-bold {
  font-family: "Roboto Bold";
}
.m-light {
  font-family: "Roboto Light";
}
.m-thin {
  font-family: "Roboto Thin";
}
.m-relative {
  position: relative;
}
.m-flex {
  display: flex;
}
.m-pointer {
  cursor: pointer;
}
.m-move {
  cursor: move;
}
.m-grab {
  cursor: grab;
}
.m-center {
  text-align: center;
}
.m-right {
  text-align: right;
}
.m-left {
  text-align: left;
}
.pt-10 {
  padding-top: 100px;
}
.pb-1 {
  padding-bottom: 10px;
}
.pb-2 {
  padding-bottom: 20px;
}
.pb-5 {
  padding-bottom: 50px;
}
.pb-10 {
  padding-bottom: 100px;
}
.pr-3 {
  padding-right: 30px;
}
.pl-3 {
  padding-left: 30px;
}
.mt-1 {
  margin-top: 10px;
}
.mt-3 {
  margin-top: 30px;
}
.mt-5 {
  margin-top: 50px;
}
.mb-1 {
  margin-bottom: 10px;
}
.mb-2 {
  margin-bottom: 20px;
}
.mb-3 {
  margin-bottom: 30px;
}
.mb-5 {
  margin-bottom: 50px;
}
.ml-1 {
  margin-left: 10px;
}
.ml-2 {
  margin-left: 20px;
}
.mr-1 {
  margin-right: 10px;
}
.mr-2 {
  margin-right: 20px;
}
.sm {
  font-size: 16px;
}
.lg {
  font-size: 18px;
}
.xlg {
  font-size: 24px;
}
.hidden {
  display: none;
}
html {
  height: 100%;
}
body {
  min-width: 1024px;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Roboto Regular';
  font-size: 17px;
  color: black;
  display: flex;
  flex-direction: column;
}
body .main-wrapper {
  min-width: 1024px;
  display: flex;
  flex-direction: column;
  flex-grow: 2;
}
body .main-content {
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1500px;
  box-sizing: border-box;
  padding: 0 10px;
}
body.freezing {
  padding-right: 15px;
  overflow: hidden;
}
ul {
  list-style: none;
  padding-left: 0;
}
p {
  margin: 0;
}
a {
  color: #8b4513;
}
a:hover {
  text-decoration: none;
}
a:visited,
a:active,
a:focus {
  color: #8b4513;
}
h1,
h2,
h3 {
  font-family: Roboto Medium;
  font-weight: normal;
  margin: 0;
}
.light-input {
  border: none;
  border-bottom: 1px solid #e4e9ef;
  outline: none;
  padding: 3px 5px;
  font-size: 17px;
  min-width: 250px;
  font-family: Roboto;
}
.light-input::placeholder {
  color: #cbd2dc;
}
.light-input.large {
  padding: 3px 10px;
  font-size: 26px;
  font-family: Roboto Light;
}
.message-alert {
  color: #ee5253;
  font-size: 14px;
  font-family: Roboto Bold;
  padding: 10px 0;
}
.c-checkbox-wrapper {
  display: flex;
  align-items: center;
  margin-top: 30px;
  cursor: pointer;
}
.c-checkbox-wrapper:first-child {
  margin-top: 0;
}
.c-checkbox-wrapper .c-checkbox {
  border: 1px solid #cbd2dc;
  background-color: white;
  width: 20px;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-checkbox-wrapper .c-checkbox:after {
  content: '';
  width: 0;
  height: 0;
  background-color: black;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.c-checkbox-wrapper .c-checkbox.active:after {
  width: 14px;
  height: 14px;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.c-checkbox-wrapper .c-checkbox.muted {
  background-color: #f3f3f3;
}
.c-checkbox-wrapper .description {
  flex-grow: 2;
  padding-left: 18px;
}
.c-radio-wrapper {
  display: flex;
  align-items: center;
  margin-top: 30px;
  cursor: pointer;
}
.c-radio-wrapper:first-child {
  margin-top: 0;
}
.c-radio-wrapper .c-radio {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #cbd2dc;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-radio-wrapper .c-radio:after {
  content: '';
  width: 0;
  height: 0;
  background-color: black;
  border-radius: 50%;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.c-radio-wrapper .c-radio.active {
  position: relative;
}
.c-radio-wrapper .c-radio.active:after {
  width: 14px;
  height: 14px;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.c-radio-wrapper .description {
  flex-grow: 2;
  padding-left: 18px;
}
.c-text-input {
  padding: 5px 10px;
  border: 1px solid #cbd2dc;
  border-bottom: none;
  box-shadow: 0px 2px 0px 0px #252526;
  outline: none;
}
.c-text-input[disabled] {
  background-color: #f3f3f3;
}
.c-textarea {
  padding: 5px 10px;
  border: 1px solid #cbd2dc;
  border-bottom: none;
  box-shadow: 0px 2px 0px 0px #252526;
  outline: none;
  font-size: 18px;
}
.c-textarea[disabled] {
  background-color: #f3f3f3;
}
.m-text-input {
  padding: 10px 15px;
  border: 1px solid #e1e1ed;
  border-radius: 5px;
  outline: none;
  color: #1e1e21;
  font-size: 20px;
}
.m-text-input.block {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.m-toggler {
  background-color: #e1e1ed;
  border-radius: 15px;
  width: 65px;
  height: 26px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  transition: all 0s;
  transition-delay: 0.05s;
}
.m-toggler:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -17px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #b6bcc3;
  background-color: white;
  transition: all 0.1s;
}
.m-toggler.checked {
  background-color: #b1ff7d;
  transition: all 0s;
  transition-delay: 0.05s;
}
.m-toggler.checked:after {
  left: 32px;
  transition: all 0.1s;
}
.btn {
  border: none;
  outline: none;
  padding: 10px 40px;
  font-size: 20px;
  font-family: Roboto;
  background-color: #f5deb3;
  color: #8b4513;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 1;
}
.btn:active,
.btn:visited {
  color: #8b4513;
}
.btn:hover {
  background-color: #ffecc9;
}
.title1 {
  font-size: 20px;
  color: #cbd2dc;
}
.title2 {
  font-family: Roboto Medium;
}
.footer-view p {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-view span {
  padding-right: 10px;
}
.header-view {
  background-color: #f5deb3;
}
.header-view .header {
  margin: 0 auto;
  max-width: 1500px;
  padding: 20px 10px;
  box-sizing: border-box;
}
.header-view .header .menu {
  display: flex;
}
.header-view .header .menu .item {
  margin-right: 30px;
  border-bottom: 1px solid transparent;
}
.header-view .header .menu .item a {
  color: #8b4513;
  font-size: 20px;
  font-family: Roboto Bold;
  text-decoration: none;
}
.header-view .header .menu .item.selected {
  border-bottom: 1px solid #8b4513;
}
.header-view .header .menu .item:hover {
  border-bottom: 1px solid #8b4513;
}
.index-view .main-title {
  font-family: Roboto Light;
  font-size: 30px;
}
.index-view .title-block {
  margin: 60px 0 50px 0;
  text-align: center;
}
.index-view .title-block .general-title {
  margin-top: 20px;
  font-size: 60px;
  font-family: Roboto Black;
  letter-spacing: 5px;
}
.index-view .title-block .m-flex {
  justify-content: center;
  align-items: center;
}
.index-view .title-block .btn {
  margin-left: 20px;
  padding: 30px 40px;
}
.index-view .title-block .phones {
  margin-left: 236px;
}
.index-view .title-block .phone {
  font-size: 34px;
  margin-bottom: 10px;
}
.index-view .title-block .phone:last-child {
  margin-bottom: 0;
}
.index-view .gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.index-view .gallery .wrapper {
  margin-right: 10px;
  margin-top: 10px;
}
.index-view .gallery .wrapper a img {
  width: 200px;
}
.index-view .gallery .wrapper:last-child {
  margin-right: 0;
}
.price-view {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 30px;
  flex-grow: 2;
}
.price-view .price-wrapper {
  max-width: 1500px;
  padding: 0 10px;
  width: 100%;
}
.price-view .price-wrapper table {
  width: 100%;
  border-collapse: collapse;
}
.price-view .price-wrapper table td,
.price-view .price-wrapper table th {
  border: 1px solid black;
  text-align: center;
  padding: 10px;
}
.price-view .price-wrapper table thead th {
  font-family: Roboto Bold;
  font-weight: normal;
}
.price-view .price-wrapper table tbody tr:hover {
  background-color: #fff9ed;
}
.price-view .price-wrapper table tbody tr td:first-child {
  text-align: left;
  width: 220px;
}
.technical-description-view {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 30px;
  flex-grow: 2;
}
.technical-description-view .wrapper {
  max-width: 1500px;
  padding: 0 10px;
  width: 100%;
}
.contacts-view {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 30px;
  flex-grow: 2;
  align-items: center;
}
.contacts-view .wrapper {
  padding: 0 10px;
  text-align: center;
}
.using-view .gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.using-view .gallery .wrapper {
  margin-right: 10px;
  margin-top: 10px;
}
.using-view .gallery .wrapper a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 150px;
  border: 1px solid gray;
}
.using-view .gallery .wrapper a img {
  max-width: 200px;
  max-height: 150px;
}
</pre></body></html>