
@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/helveticaneuecyr-italic-webfont.woff2') format('woff2'),
       url('../fonts/helveticaneuecyr-italic-webfont.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/helveticaneuecyr-roman-webfont.woff2') format('woff2'),
       url('../fonts/helveticaneuecyr-roman-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/helveticaneuecyr-black-webfont.woff2') format('woff2'),
       url('../fonts/helveticaneuecyr-black-webfont.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/helveticaneuecyr-bold-webfont.woff2') format('woff2'),
       url('../fonts/helveticaneuecyr-bold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/helveticaneuecyr-bolditalic-webfont.woff2') format('woff2'),
       url('../fonts/helveticaneuecyr-bolditalic-webfont.woff') format('woff');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('../fonts/roboto-v30-latin-regular.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

.prices {
  display: flex;
  justify-content: space-around;
}

.red {
  color: red;
  font-weight: 700;
}

*,
::after,
::before {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: sans-serif;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
}

p {
  margin-top: 0;
  margin-bottom: 15px;
}


ul {
  padding-left: 2rem;
}


ul {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 18px;
}


ul ul {
  margin-bottom: 0;
}

b,
strong {
  font-weight: bolder;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}

a:hover {
  color: #0a58ca;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

tbody,
td,
th,
tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

button,
input {
  margin: 0;
  font-family: sans-serif;
  font-size: 20px;
}

button {
  text-transform: none;
}

[type='button'],
[type='submit'],
button {
  -webkit-appearance: button;
  appearance: button;
}

[type='button']:not(:disabled),
[type='submit']:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

.img-fluid {
  /* width: 400px; */
  max-width: 100%;
  height: auto;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row>* {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
  font-size: 18px;
  border: 1px solid #999;
}

.table> :not(caption)>*>* {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table>tbody {
  vertical-align: inherit;
}

.d-block {
  display: block !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.logo {
  display: block;
  width: 250px;
  padding: 15px 0;
}

.head {
  background-image: url('../images/head.jpeg');
  background-size: 100%;
}

.ui-form {
  max-width: 350px;
  padding: 30px 20px;
  margin: 30px auto;
  background: #fff;
}

.form-row {
  position: relative;
  margin-bottom: 40px;
}

.form-row input {
  display: block;
  width: 100%;
  padding: 10px 10px;
  font-family: 'Roboto', sans-serif;
  background: 0;
  border-width: 0;
  border-bottom: 2px solid #4a90e2;
  transition: all 0.2s ease;
}

.form-row label {
  position: absolute;
  left: 13px;
  color: #9d959d;
  font-size: 20px;
  transform: translateY(-37px);
  transition: all 0.2s ease;
}

.form-row input:focus {
  outline: 0;
  border-color: #f77a52;
}

.form-row input:focus+label,
.form-row input:valid+label {
  transform: translateY(-60px);
  margin-left: -14px;
  font-size: 14px;
  font-weight: 400;
  outline: 0;
  border-color: #f77a52;
  color: #f77a52;
}

.ui-form button {
  width: 100%;
  padding: 0;
  line-height: 42px;
  background: #4a90e2;
  border-width: 0;
  color: #fff;
  font-size: 20px;
}

.ui-form button:hover {
  background: #0056b8;
}

.ui-form img {
  margin-bottom: 25px;
}

.ui-form p {
  margin: 0;
  padding-top: 10px;
}

.name {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
}

body {
  font-size: 20px;
}

.inL_475537 {
  border: 1px lightgray solid;
}

.inL_379099 {
  text-align: center;
  margin-bottom: 30px;
}

.inL_396742 {
  font-size: 30px;
  color: red;
  font-weight: bold;
}

.inL_804017 {
  font-size: 30px;
  color: black;
  font-weight: bold;
}

.inL_33366 {
  margin-bottom: 70px;
}

.inL_853880 {
  color: black;
}

.inL_417279 {
  color: black;
}


a,
a:active,
a:focus,
a:hover,
a:visited {
  outline: 0 !important;
}

::-moz-focus-inner,
::-moz-focus-outer {
  border: 0;
  padding: 0;
}

input:invalid {
  outline: none;
  box-shadow: none;
}

input::-ms-clear {
  display: none;
}

.button-note {
  padding-left: 0;
  font-size: 16px;
  color: #666;
  text-align: center;
}

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

  .head {
    background: linear-gradient(to bottom, rgba(76, 98, 200, 1) 0%, rgba(0, 0, 0, 1) 100%);
  }
}

.date {
  color: #555;
  font-size: 15px;
}

.prod-i {
  max-width: 250px;
}

@media (max-width: 732px) {
  .img-fluid {
    max-width: 400px;
    width: 100%;
  }

  .prod-i {
    max-width: 150px;
  }

  .ui-form img {
    width: 150px;
  }

  p {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .table {
    font-size: 14px !important;
  }

  .table> :not(caption)>*>* {
    padding: 3px !important;
  }

  
  ul {
    font-size: 17px;
    line-height: 1.3;
  }
}

@media (max-width: 360px) {

  .ui-form img {
    width: 140px;
  }

  .table {
    font-size: 12px !important;
  }

  .table> :not(caption)>*>* {
    padding: 3px !important;
  }
}


/* ::::: http://zdorovo.m0g.ru/files/css/style.css?_=1465211364 ::::: */

* {
  margin: 0px;
  padding: 0px;
}

html,
body {
  height: 100%;
}

body {
  font-size: 18px;
  font-family: Helvetica, Arial, sans-serif;
  color: black;
  background: rgb(247, 247, 247) none repeat scroll 0% 0%;
}


input {
  outline: medium none;
}

a {
  color: rgb(22, 151, 206);
}

a:hover {
  color: rgb(176, 73, 59);
}

a img {
  border: medium none;
}

a:focus {
  outline: medium none;
}

h1 {
  font-size: 24px;
  font-weight: normal;
}

h2 {
  font-size: 22px;
  font-weight: normal;
}

.alex_zevsa_wcih4ECQW {
  position: relative;
  margin: 0px auto;
  width: 960px;
  padding: 0px 20px;
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}


.katyakoncakova_FtFDdVex .puzzle_LTiRtzPGfe,
.katyakoncakova_FtFDdVex .Natali0610_RVdHBJiwC {
  font-family: PFDinTextCondProMedium, Helvetica, Arial ! important;
}


.renul_seDwyoGn57 .dvksub_rYPIQ4ET,
.zhanna_86_o5IKudBv h2 {
  font-family: PFDinTextCondProRegular, Helvetica, Arial ! important;
}

.katyakoncakova_FtFDdVex {
  position: relative;
  z-index: 15;
}

.katyakoncakova_FtFDdVex .Natali0610_RVdHBJiwC {
  margin-top: 40px;
  float: left;
  width: 360px;
  text-decoration: none;
  color: black;
  display: block;
  position: relative;
}

.katyakoncakova_FtFDdVex .Natali0610_RVdHBJiwC img {
  width: 80px;
  height: 80px;
  float: left;
  margin-top: 10px;
}

.katyakoncakova_FtFDdVex .Natali0610_RVdHBJiwC h1 {
  font-size: 18px;
  margin-top: 17px;
  margin-left: 18px;
  width: 165px;
  float: left;
  text-transform: uppercase;
  line-height: 1;
}

.katyakoncakova_FtFDdVex .mikstroy_hlTMvYzPJs {
  width: 330px;
  float: right;
  margin-top: 60px;
}

.katyakoncakova_FtFDdVex .mikstroy_hlTMvYzPJs .mansurovan_vUZn4RQN {
  text-align: right;
  font-size: 12px;
  text-transform: uppercase;
  float: right;
}

.katyakoncakova_FtFDdVex .mansurovan_vUZn4RQN .Dulov_V_V_du3BxPsUO {
  font-weight: bold;
  color: rgb(53, 55, 70);
}

.katyakoncakova_FtFDdVex .mansurovan_vUZn4RQN a {
  color: rgb(53, 55, 68);
}

.katyakoncakova_FtFDdVex .mansurovan_vUZn4RQN a:hover {
  color: rgb(176, 73, 61);
}

.katyakoncakova_FtFDdVex .mansurovan_vUZn4RQN .udav_t_slEtc0GR {
  margin: 0px 5px;
}

.katyakoncakova_FtFDdVex .mikstroy_hlTMvYzPJs .tata_soboleva_XjcqhmYZ7 {
  margin-top: 25px;
  position: relative;
  text-align: right;
}

.katyakoncakova_FtFDdVex .puzzle_LTiRtzPGfe {
  margin-top: 10px;
  background: rgb(51, 53, 65) none repeat scroll 0% 0%;
  height: 50px;
}

.katyakoncakova_FtFDdVex .puzzle_LTiRtzPGfe .main-menu-blk {
  list-style: outside none none;
}

.katyakoncakova_FtFDdVex .main-menu-blk>li {
  display: inline-block;
  float: left;
  margin-right: 23px;
  position: relative;
  padding: 17px 10px;
}

.katyakoncakova_FtFDdVex .puzzle_LTiRtzPGfe a {
  text-transform: uppercase;
  font-size: 14px;
  color: white;
  text-decoration: none;
}

.alstep54_sglCGFT6q {
  font-size: 12px;
}

.renul_seDwyoGn57 h2 {
  font-weight: bold;
  font-size: 36px;
  margin-top: 15px;
}

.renul_seDwyoGn57 .dvksub_rYPIQ4ET {
  color: rgb(108, 110, 126);
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 5px;
}

.renul_seDwyoGn57 .Genrik91_k2XdOzZlq1 {
  margin-top: 25px;
  color: rgb(51, 51, 51);
  line-height: 1.5;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px dashed rgb(185, 185, 185);
  font-size: 18px;
}

.renul_seDwyoGn57 .Genrik91_k2XdOzZlq1 p {
  text-indent: 20px;
  color: black;
  text-align: justify;
  margin: 15px;
  line-height: 31px;
}

.renul_seDwyoGn57 .Genrik91_k2XdOzZlq1 .udalykhnn_av3FDRJhB {
  text-align: center;
}

.renul_seDwyoGn57 .Genrik91_k2XdOzZlq1 .AGB_yQobO46Dw {
  margin-top: 10px;
  font-size: 13px;
  color: rgb(161, 161, 162);
}

.zhanna_86_o5IKudBv {
  background: white none repeat scroll 0% 0%;
  padding: 35px 40px 40px;
  border-radius: 4px;
}

.zhanna_86_o5IKudBv h2 {
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1;
}

.altakansk_YrlOq5h6N {
  font-family: Arial;
  color: rgb(108, 110, 131);
  margin: 0px 5px;
}

.dmavrodi_yjLIBb2Q {
  position: relative;
  z-index: 10;
}

.sazonov66_g9ysODlqt {
  margin-bottom: -340px;
  min-height: 100%;
  position: relative;
  background: rgb(247, 247, 247) none no-repeat scroll center top;
}

.vk-container {
  font-family: tahoma, arial, verdana, sans-serif, Lucida Sans;
  font-size: 15px;
  color: black;
  text-decoration: none;
}

.vk-header {
  background: rgb(218, 226, 232) none repeat scroll 0% 0%;
  padding: 4px 4px 4px 6px;
  margin-bottom: 10px;
}

.vk-logo {
  background: transparent none no-repeat scroll 0% 0%;
  width: 16px;
  height: 16px;
  float: right;
  margin-top: -1px;
}

.vk-header-text {
  padding: 2px 3px 1px;
  line-height: 100%;
  color: rgb(69, 104, 142);
  font-weight: bold;
}

.vk-avatar img {
  float: left;
  margin-right: 10px;
}

.vk-comment,
.vk-comment-load {
  margin-bottom: 15px;
  position: relative;
  border-bottom: 1px solid rgb(218, 225, 232);
  padding-bottom: 15px;
}

.vk-comment:last-child {
  border-bottom: 0px none;
}

.vk-comment-name {
  color: rgb(43, 88, 122);
  font-weight: bold;
  font-size: 12px;
}

.vk-comment-text {
  margin-left: 60px;
}

.vk-comment-date {
  margin-left: 60px;
  color: rgb(153, 153, 153);
}

@media screen and (max-width: 1020px) {
  .alex_zevsa_wcih4ECQW {
    width: auto;
  }

  .main-menu-blk {
    width: 100%;
    margin: 0px auto;
  }

  .katyakoncakova_FtFDdVex .main-menu-blk>li {
    width: 16.666%;
    float: left;
    margin: 0px;
    display: block;
    padding: 0px;
    text-align: center;
  }

  .katyakoncakova_FtFDdVex .puzzle_LTiRtzPGfe {
    height: auto;
  }

  .katyakoncakova_FtFDdVex .main-menu-blk>li a {
    line-height: 50px;
  }

  .katyakoncakova_FtFDdVex .mikstroy_hlTMvYzPJs {
    width: 180px;
  }

  body img {
    max-width: 100%;
  }

  center>img {
    max-width: 100%;
  }
}

@media screen and (max-width: 720px) {
  .katyakoncakova_FtFDdVex .main-menu-blk>li {
    width: 33.333%;
  }

  .katyakoncakova_FtFDdVex .mikstroy_hlTMvYzPJs {
    display: none;
  }
}

@media screen and (max-width: 499px) {
  .tg tr> :first-child {
    display: none;
  }

  .katyakoncakova_FtFDdVex .Natali0610_RVdHBJiwC {
    margin-top: 0;
    text-align: center;
  }

  .katyakoncakova_FtFDdVex .Natali0610_RVdHBJiwC h1 {
    margin: auto;
    float: none;
  }

  .katyakoncakova_FtFDdVex .Natali0610_RVdHBJiwC img {
    float: none;
  }

  .border-red {
    padding: 10px !important;
  }

  .zhanna_86_o5IKudBv {
    padding: 15px 20px 20px;
  }
}

@media screen and (max-width: 420px) {
  .zhanna_86_o5IKudBv {
    padding-left: 10px;
    padding-right: 10px;
  }

  .alstep54_sglCGFT6q {
    display: none;
  }

  .katyakoncakova_FtFDdVex .main-menu-blk>li {
    width: 50%;
  }

  .udalykhnn_av3FDRJhB img,
  body img {
    max-width: 100%;
  }

  .katyakoncakova_FtFDdVex .Natali0610_RVdHBJiwC {
    width: 320px;
  }

  .katyakoncakova_FtFDdVex .Natali0610_RVdHBJiwC h1 {
    width: 225px;
    font-size: 16px;
  }

  .alex_zevsa_wcih4ECQW {
    padding: 0px;
  }

}

.submit {
  margin-top: 10px;
  height: 50px;
  width: 300px;
  background-color: firebrick;
  color: rgb(255, 255, 255);
  font-size: 30px;
  border-radius: 3px;
}

.img-avatar {
  max-width: 48px;
  width: 100%;
}

.tg {
  border-collapse: collapse;
  border-spacing: 0px;
}

table {
  max-width: 800px;
  min-width: 220px;
  margin: 0px auto;
  box-shadow: 2px 3px 8px 0px rgba(105, 105, 105, 0.39);
}

th,
td {
  border-color: rgb(189, 189, 189);
}

.tg {
  border-collapse: collapse;
  border-spacing: 0px;
}

.tg td {
  font-family: Arial, sans-serif;
  font-size: 14px;
  padding: 10px 5px;
  border-style: solid;
  border-width: 1px;
  overflow: hidden;
  word-break: normal;
}

.tg th {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  padding: 10px 5px;
  border-style: solid;
  border-width: 1px;
  overflow: hidden;
  word-break: normal;
}

.tbg1 {
  background: rgb(180, 237, 255) none repeat scroll 0% 0%;
}

.tbg2 {
  background: rgb(235, 250, 255) none repeat scroll 0% 0%;
}

.vote-block {
  width: auto;
  display: block;
  background: #eeeff1;
  border-radius: 3px;
}

.vote-block-head {
  display: block;
  text-align: left;
  width: auto;
  padding: 15px 20px;
}

.vote-block-head h2 {
  color: rgb(143, 0, 1);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  line-height: 25px;
  margin-top: 0;
}

.vote-block-head span {
  font-size: 18px;
  color: #000;
  text-transform: lowercase;
}

.vote-block-content {
  display: block;
  width: auto;
  border: 1px solid #eeeff1;
  background: #fff;
  padding: 0 20px;
}

.vote-block-content-container:first-child {
  margin-top: 30px;
}

.vote-block-content-container:last-child {
  margin-bottom: 40px;
}

.vote-block-content-container {
  display: block;
  width: auto;
  margin-bottom: 20px;
}

.vote-block-content-container:after {
  content: '';
  display: block;
  clear: both;
}

.vote-block-content-text {
  float: left;
  display: block;
  width: 40%;
  text-align: left;
  font-size: 14px;
}

.vote-block-content-stat {
  display: block;
  float: right;
  width: 60%;
  position: relative;
  background: #eeeff1;
  height: 25px;
}

.vote-block-content-stat-line {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background: #66a01d;
  text-align: right;
}

.vote-block-content-stat-line h6 {
  font-size: 12px;
  color: #eeeff1;
  margin-left: 121%;
  margin-top: 4px;
}

.line-1 {
  width: 23%;
  background: #66a01d;
}

.line-2 {
  width: 47%;
  background: #66a01d;
}

.line-3 {
  width: 8%;
  background: #66a01d;
}

.line-4 {
  width: 17%;
  background: #939598;
}

.line-5 {
  width: 5%;
  background: #939598;
}

.line-1 h6 {
  color: #66a01d;
}

.line-2 h6 {
  color: #66a01d;
  margin-left: 108%;
}

.line-3 h6 {
  color: #66a01d;
}

.line-4 h6 {
  color: #939598;
}

.line-5 h6 {
  color: #939598;
}

button:disabled,
button:disabled:hover,
button:disabled:focus {
  opacity: 0.3;
}

.tb-img {
  max-width: 250px;
  width: 100%;
}

.tb-an-img {
  max-width: 220px;
  width: 100%;
}

.img-center {
  display: block;
  margin: 0 auto;
}

.x_country_select{
  display: none !important
}
.comm__img{
  max-width: 350px;
  width: 100%;
}

.inL_900865 { height: 100%; }
.zhanna_86_o5IKudBv h2.inL_143723 { line-height: 1.4; }
.inL_588790 { display: block; clear: both; }
.inL_815275 { text-align: center; }
.inL_202402 { text-align: center; }
.inL_629392 { font-weight: bold; }
.inL_39568 { font-weight: bold; }
.inL_571264 { font-weight: bold; }
.inL_954487 { font-weight: bold; }
.inL_673366 { font-weight: bold; }
.inL_258328 { font-weight: bold; }
.inL_419423 { color: green; }
.inL_670524 { color: red; }
.renul_seDwyoGn57 .Genrik91_k2XdOzZlq1 p.inL_341917 { margin: 0px auto; width: 100%; max-width: 659px; text-align: right ! important; font-style: italic; font-size: 14px; }
.vk-avatar img.inL_206105 { width: 47px; height: 45px; }
.vk-avatar img.inL_480969 { width: 50px; height: 47px; }
.inL_504680 { display: block; width: 260px; margin: 0 auto;padding-top: 20px; }
.inL_616880 { width: 95%;margin: 0 auto; }