.mixin-bordered-block-button {
  cursor: pointer;
  border: 2px solid #00abb6;
}
.mixin-pseudo {
  content: '';
}
body {
  font-family: 'din', arial, helvetica, sans-serif;
  font-size: 16px;
  color: #000;
  min-width: 280px;
}
body.body-forum {
  min-width: 700px;
}
h1 {
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
  padding: 7px 0 20px;
}
h1.with-top-padding {
  padding: 20px 0 10px;
}
h2,
h3 {
  font-weight: 400;
  font-size: 25px;
  line-height: 31px;
  padding: 10px 0;
}
input[type=text],
input[type=password],
input[type=number],
textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #b4d7d9;
  border-radius: 5px;
  padding: 7px;
  width: 250px;
  resize: none;
}
input[type=text].datepick,
input[type=password].datepick,
input[type=number].datepick,
textarea.datepick {
  width: 250px !important;
}
@media (max-width: 500px) {
  input[type=text],
  input[type=password],
  input[type=number],
  textarea {
    width: 100%;
  }
  input[type=text].datepick,
  input[type=password].datepick,
  input[type=number].datepick,
  textarea.datepick {
    width: 92% !important;
  }
}
input[type=button],
input[type=submit],
button {
  border: 1px solid #00abb6;
  border-radius: 5px;
  color: #00abb6;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  background-color: #fff;
  text-transform: uppercase;
  font-family: din;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1.2px;
  padding: 5px 10px;
}
input[type=button]:hover,
input[type=submit]:hover,
button:hover {
  background-color: #00abb6;
  color: #fff;
}
@media (max-width: 500px) {
  input[type=button],
  input[type=submit],
  button {
    width: 100%;
  }
}
em,
i {
  font-style: italic;
}
.input-template {
  display: none;
}
.checkbox {
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #b4d7d9;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 5px;
  padding: 0 !important;
  position: relative;
  overflow: hidden;
}
.checkbox input {
  position: absolute;
  top: -100px;
  right: 0;
  bottom: 0;
  left: 0;
}
.checkbox.checked {
  background: url(/images/layout/checkbox.png) no-repeat center center;
}
header {
  padding: 15px 0 4px;
  text-align: center;
  position: relative;
  background: url(/images/layout/bg.jpg) no-repeat center top;
}
header a,
header img {
  display: block;
}
header a {
  text-transform: uppercase;
}
header nav,
header .search {
  display: inline-block;
  vertical-align: middle;
}
header nav {
  font-weight: 900;
  font-size: 20px;
  line-height: inherit;
}
header nav a {
  padding: 20px 10px;
}
header nav.hidden {
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
  opacity: 0;
}
@media (max-width: 1020px) {
  header ul {
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: -100%;
    -webkit-transition: left 0.5s;
    -moz-transition: left 0.5s;
    -ms-transition: left 0.5s;
    -o-transition: left 0.5s;
    transition: left 0.5s;
    z-index: 3;
    text-transform: uppercase;
    text-align: left;
    top: 48px;
    width: 100%;
    max-width: 500px;
  }
  header ul li {
    display: block;
    color: #fff;
  }
  header ul li:not(:last-of-type) {
    border-bottom: 1px solid #fff;
  }
  header ul li:hover a:before {
    display: none;
  }
  header ul a {
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    -ms-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    transition: background-color 0.5s;
    background-color: #9cd6da;
  }
  header ul a:hover {
    background-color: #00838b;
  }
  header ul.opened {
    left: 0;
  }
  header ul li:last-of-type {
    display: block;
  }
  header ul a {
    color: #fff;
  }
}
header li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
header li:hover a:before {
  content: '';
  position: absolute;
  top: 8px;
  right: -10px;
  bottom: 5px;
  left: -10px;
  border: 1px solid #25dde9;
  border-radius: 20px;
  box-shadow: 0 0 2px #25dde9;
}
header li:last-of-type {
  display: none;
}
header li.only-for-mobiles {
  display: none;
}
@media (max-width: 650px) {
  header li.only-for-mobiles {
    display: block;
  }
}
header .opener {
  position: absolute;
  top: 12px;
  right: auto;
  bottom: auto;
  left: 12px;
  display: none;
  min-height: 35px;
  align-self: center;
  justify-content: right;
  background-image: url(/images/top-nav/menu-left-700.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  height: 35px;
}
@media (max-width: 1020px) {
  header .opener {
    display: flex;
    align-items: center;
    z-index: 10;
    color: #00abb6;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 15px;
    width: 129px;
    padding-left: 45px;
    height: auto;
    text-align: left;
    white-space: nowrap;
  }
}
header .opener.opened {
  background-position: 0 -68px;
}
@media (max-width: 650px) {
  header .opener {
    width: 90px;
    top: 12px;
    font-size: 12px;
    word-wrap: break-word;
    white-space: normal;
    background-image: url(/images/top-nav/menu-left-320.png);
    background-position: 0 5px;
    padding-left: 35px;
  }
  header .opener.opened {
    background-position: 0 -45px;
  }
}
header .search {
  position: relative;
}
header .search .button-opener {
  width: 41px;
  height: 39px;
  cursor: pointer;
  border: 2px solid #00abb6;
  border-left: none;
  margin-left: 15px;
  margin-right: 12px;
  background: url(/images/layout/search.png) no-repeat center center;
}
header .search .form {
  border: 2px solid #00abb6;
  -webkit-transition: width 0.5s;
  -moz-transition: width 0.5s;
  -ms-transition: width 0.5s;
  -o-transition: width 0.5s;
  transition: width 0.5s;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 43px;
  position: absolute;
  width: 0;
  right: 55px;
  border-right: none;
  overflow: hidden;
  padding: 10px 0;
}
header .search .form.opened {
  width: 670px;
}
header .search input {
  width: 95%;
  font-size: 16px;
  border: none;
  padding: 0;
}
@media (max-width: 1020px) {
  header .search {
    display: none;
  }
}
@media (max-width: 1020px) {
  header {
    padding-top: 40px;
  }
}
.logo {
  margin: 73px auto 30px;
  width: 80%;
  max-width: 501px;
}
.logo img {
  width: 100%;
}
@media (max-width: 650px) {
  .logo {
    margin-top: 30px;
  }
}
.left-menu {
  font-weight: 300;
  font-size: 18px;
  line-height: inherit;
  float: left;
  width: 50px;
  padding: 15px 10px;
  position: relative;
}
.left-menu ul {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: -450px;
  -webkit-transition: left 0.5s;
  -moz-transition: left 0.5s;
  -ms-transition: left 0.5s;
  -o-transition: left 0.5s;
  transition: left 0.5s;
  z-index: 3;
  text-transform: uppercase;
  width: 450px;
}
.left-menu ul li {
  display: block;
  color: #fff;
}
.left-menu ul li:not(:last-of-type) {
  border-bottom: 1px solid #fff;
}
.left-menu ul li:hover a:before {
  display: none;
}
.left-menu ul a {
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  -ms-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  transition: background-color 0.5s;
  background-color: #9cd6da;
}
.left-menu ul a:hover {
  background-color: #00838b;
}
.left-menu ul.opened {
  left: 70px;
}
@media (max-width: 740px) {
  .left-menu ul {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    width: 0;
    overflow: hidden;
    left: auto;
    -webkit-transition: width 0.5s;
    -moz-transition: width 0.5s;
    -ms-transition: width 0.5s;
    -o-transition: width 0.5s;
    transition: width 0.5s;
    z-index: 3;
    text-transform: uppercase;
    top: 48px;
  }
  .left-menu ul li {
    display: block;
    color: #fff;
  }
  .left-menu ul li:not(:last-of-type) {
    border-bottom: 1px solid #fff;
  }
  .left-menu ul li:hover a:before {
    display: none;
  }
  .left-menu ul a {
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    -ms-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    transition: background-color 0.5s;
    background-color: #9cd6da;
  }
  .left-menu ul a:hover {
    background-color: #00838b;
  }
  .left-menu ul.opened {
    width: 500px;
    max-width: 500px;
    left: auto;
  }
}
@media (max-width: 500px) {
  .left-menu ul {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    width: 0;
    overflow: hidden;
    left: auto;
    -webkit-transition: width 0.5s;
    -moz-transition: width 0.5s;
    -ms-transition: width 0.5s;
    -o-transition: width 0.5s;
    transition: width 0.5s;
    z-index: 3;
    text-transform: uppercase;
    top: 48px;
  }
  .left-menu ul li {
    display: block;
    color: #fff;
  }
  .left-menu ul li:not(:last-of-type) {
    border-bottom: 1px solid #fff;
  }
  .left-menu ul li:hover a:before {
    display: none;
  }
  .left-menu ul a {
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    -ms-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    transition: background-color 0.5s;
    background-color: #9cd6da;
  }
  .left-menu ul a:hover {
    background-color: #00838b;
  }
  .left-menu ul.opened {
    width: 100%;
    max-width: 500px;
    left: auto;
  }
}
.left-menu li:first-of-type a {
  font-weight: 400;
  background-color: #00abb6;
}
.left-menu li:first-of-type a:hover {
  background-color: #00838b;
}
.left-menu a {
  color: #fff;
  display: block;
  padding: 10px 20px;
  line-height: 28px;
}
.left-menu .opener {
  width: 50px;
  height: 50px;
  cursor: pointer;
  background: url(/images/layout/menu.png) no-repeat center center;
}
.left-menu .opener span {
  display: none;
}
@media (max-width: 740px) {
  .left-menu {
    position: absolute;
    top: 0;
    display: block;
    left: 0;
    padding: 0;
    width: 100%;
  }
  .left-menu .opener {
    float: right;
    background-image: none;
    margin-top: 12px;
    min-height: 30px;
    align-self: center;
    justify-content: left;
    display: flex;
    align-items: center;
    z-index: 10;
    color: #00abb6;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 15px;
    width: auto;
    padding-right: 30px;
    height: auto;
    text-align: left;
    white-space: nowrap;
  }
  .left-menu .opener:after {
    content: '+';
    background-color: #00abb6;
    color: #ffffff;
    text-align: center;
    margin-left: 10px;
    width: 23px;
    height: 24px;
    font-size: 40px;
    line-height: 0.25;
    font-weight: 100;
  }
  .left-menu .opener span {
    display: inline;
  }
  .left-menu .opened:after {
    content: '-';
  }
}
@media (max-width: 650px) {
  .left-menu .opener {
    width: 90px;
    font-size: 12px;
    word-wrap: break-word;
    white-space: normal;
  }
  .left-menu .opener:after {
    padding: 0 2px;
  }
  .left-menu .opened:after {
    padding: 0 3px;
  }
}
.content-wrapper {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 0 0 70px;
  border-left: 1px solid #00abb6;
  min-height: 1123px;
  position: relative;
}
.content-wrapper:not(.main) {
  text-align: center;
}
.content-wrapper.main {
  padding-left: 5.5%;
  padding-bottom: 10px;
  width: auto;
}
@media (max-width: 1100px) {
  .content-wrapper.main {
    padding-left: 0;
  }
  .content-wrapper.main h1 {
    padding-left: 30px;
  }
}
@media (max-width: 740px) {
  .content-wrapper.main {
    margin-left: 0;
    border: none;
    margin-bottom: 0;
  }
}
@media (max-width: 1100px) {
  .content-wrapper {
    padding-left: 0;
    width: auto;
  }
}
@media (max-width: 740px) {
  .content-wrapper {
    margin-left: 0;
    border: none;
    margin-bottom: 0;
    min-height: auto;
  }
}
.body-forum h1 {
  padding-top: 20px;
}
.body-forum .content-wrapper {
  border: none;
  margin: 0;
}
.navigation-route {
  font-weight: 300;
  font-size: 12px;
  line-height: inherit;
  color: #00abb6;
  padding: 25px 0 0;
}
.navigation-route a {
  text-decoration: underline;
}
.navigation-route a:hover {
  text-decoration: none;
}
.navigation-route a:last-of-type {
  color: #000;
  text-decoration: none;
}
.content {
  font-weight: 300;
  font-size: 15px;
  line-height: 19px;
  padding: 10px 0 20px;
  margin-bottom: 10px;
}
.content.with-border {
  border-bottom: 3px solid #9CD6DA;
}
.content p {
  padding: 10px 0;
}
.content a {
  text-decoration: underline;
}
.content strong,
.content b {
  font-weight: 700;
}
.content ul,
.content ol {
  padding: 10px 0;
  list-style-position: inside;
}
.content ul {
  list-style-type: circle;
}
.content ol {
  list-style-type: decimal;
}
.content li {
  padding: 5px 0;
}
.content th,
.content td {
  padding: 5px 10px;
  border: 1px solid #000;
}
.content sup {
  vertical-align: super;
  font-size: 10px;
}
.all-objects {
  display: block;
  margin: 30px 0 15px;
}
.site-content,
.right-menu {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
}
.site-content {
  width: 680px;
  padding-right: 30px;
  padding-bottom: 50px;
  position: relative;
}
.site-content.full-size {
  width: 1000px;
}
.site-content.forum-wrapper {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 0 20px;
  max-width: 1000px;
}
@media (max-width: 1100px) {
  .site-content {
    width: 100%;
    padding: 0 20px 50px;
  }
}
@media (max-width: 500px) {
  .site-content {
    padding: 0 10px 50px;
  }
}
.right-menu {
  width: 340px;
  padding: 40px 0 40px 20px;
}
@media (max-width: 1100px) {
  .right-menu {
    display: none;
  }
}
.right-menu__picture-block {
  padding-bottom: 20px;
}
.blog-info {
  padding: 15px 0 0;
  clear: both;
  overflow: hidden;
}
.blog-info.with-h1 {
  padding: 30px 0 10px;
  color: #00abb6;
}
.blog-info.with-h1 h1 {
  font-weight: 700;
  font-size: 10px;
  line-height: 12px;
}
.blog-info.no-padding {
  padding: 0 !important;
}
.blog-info.wo-category .date-n-comments {
  float: none;
  text-align: left;
}
.blog-info .tags,
.blog-info .date-n-comments {
  font-weight: 700;
  font-size: 10px;
  line-height: 12px;
  max-width: 49%;
  padding: 5px 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.blog-info .tags {
  border: 1px solid #00abb6;
  border-radius: 20px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  padding: 5px 20px;
  float: left;
  color: #00abb6;
}
.blog-info .tags a {
  color: inherit;
}
.blog-info .tags:hover {
  background-color: #00abb6;
  color: #fff;
}
.blog-info .date-n-comments {
  float: right;
  text-align: right;
  color: #849d9f;
}
.blog-info .date,
.blog-info .comments {
  padding-left: 15px;
  background: no-repeat;
}
.blog-info .date {
  background-position: left 2px;
  background-image: url(/images/layout/clock.png);
}
.blog-info .comments {
  color: inherit;
  margin-left: 10px;
  background-position: left 3px;
  background-image: url(/images/layout/comment.png);
}
.blog-info .comments span {
  display: inline-block;
}
.right-block-adimage {
  text-align: center;
  padding: 25px 0;
  border-bottom: 3px solid #9cd6da;
}
.other-articles,
.categories {
  font-weight: 400;
  font-size: 15px;
  line-height: 17px;
}
.categories li {
  display: block;
  padding: 6px 0;
}
.categories a {
  line-height: 25px;
}
.categories a:hover {
  color: #00838b;
}
.categories .current a {
  color: #00838b;
}
.categories ul {
  padding-top: 10px;
}
.group-by-letter:not(:last-of-type) {
  border-bottom: 3px solid #9cd6da;
}
.field-attaches {
  padding-bottom: 10px;
}
.field-attaches label {
  display: none;
}
.page-navigator {
  font-size: 0;
  border: 1px solid #25dde9;
  margin: 20px auto;
  text-align: center;
  color: #25dde9;
}
@media (max-width: 500px) {
  .page-navigator {
    margin-bottom: 0;
  }
}
.page-navigator.main {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 0;
  margin-left: 0;
  width: 92%;
}
@media (max-width: 1020px) {
  .page-navigator.main {
    margin-right: auto;
    margin-left: auto;
  }
}
.page-navigator a,
.page-navigator b,
.page-navigator span {
  font-weight: inherit;
  font-size: 16px;
  line-height: inherit;
  display: inline-block;
  vertical-align: middle;
  width: 50px;
  height: 50px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  padding: 15px 0;
  border-right: 1px solid #25dde9;
}
.page-navigator a:hover,
.page-navigator b:hover,
.page-navigator span:hover {
  background: #25dde9;
  color: #fff;
}
@media (max-width: 500px) {
  .page-navigator a,
  .page-navigator b,
  .page-navigator span {
    width: 28px;
    height: 28px;
    font-size: 12px;
    padding: 7px 0 0;
  }
}
.page-navigator a {
  color: #25dde9;
}
.page-navigator a:last-of-type {
  border: none;
}
.page-navigator b {
  color: #fff;
  background: #25dde9;
}
.grey-button {
  border: 1px solid #b0ced0;
  border-radius: 5px;
  color: #b0ced0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  background-color: #fff;
  text-transform: uppercase;
  font-family: din;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1.2px;
  padding: 5px 10px;
  background-color: #c8dada;
  color: #7d9293;
  padding: 6px 17px;
}
.grey-button:hover {
  background-color: #b0ced0;
  color: #fff;
}
.grey-button:hover {
  color: #7d9293;
  background-color: #eef4f4;
}
footer {
  font-size: 0;
  padding: 40px 0.5% 40px 5.5%;
  margin-left: 70px;
}
footer.main {
  border-left: 1px solid #00abb6;
}
@media (max-width: 740px) {
  footer.main {
    border: none;
  }
}
footer.with-top-border {
  border-top: 1px solid #CFD8D7;
}
footer.forum {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 10px 20px 20px;
  max-width: 1000px;
  margin: 0 auto;
}
footer.forum .footer-left-column {
  width: 39%;
}
footer.forum .footer-right-column {
  width: 60%;
}
footer.forum .footer-right-column p {
  width: 69%;
}
@media (max-width: 740px) {
  footer {
    padding: 40px 20px;
    margin-left: 0;
  }
}
@media (max-width: 650px) {
  footer {
    padding: 40px 10px;
  }
}
footer strong {
  font-weight: 700;
  color: #768B8C;
}
.footer-left-column,
.footer-right-column {
  display: inline-block;
  vertical-align: top;
  font-weight: 300;
  font-size: 13px;
  line-height: 16px;
  position: relative;
  letter-spacing: 1px;
  color: #585858;
}
@media (max-width: 1100px) {
  .footer-left-column,
  .footer-right-column {
    width: 100% !important;
  }
}
.footer-left-column a,
.footer-right-column a {
  text-decoration: underline;
}
.footer-left-column a:hover,
.footer-right-column a:hover {
  text-decoration: none;
}
.footer-left-column {
  width: 38%;
}
@media (max-width: 1100px) {
  .footer-left-column {
    padding-bottom: 30px;
  }
}
.footer-right-column {
  width: 61%;
}
.footer-right-column p {
  width: 60%;
}
.footer-right-column p,
.footer-right-column > div {
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 740px) {
  .footer-right-column p,
  .footer-right-column > div {
    width: 100%;
  }
}
.counters {
  text-align: right;
  width: 25%;
  padding-top: 9px;
}
.counters .rss {
  display: inline-block;
  vertical-align: top;
  width: 31px;
  height: 31px;
  background: url(/images/layout/rss.png) no-repeat center center;
  padding-right: 5px;
}
@media (max-width: 1100px) {
  .counters {
    position: absolute;
    top: -70px;
    right: 20px;
  }
}
@media (max-width: 650px) {
  .counters {
    position: relative;
    top: auto;
    right: auto;
    text-align: left;
    padding-top: 15px;
  }
}
.scroll-to-top {
  width: 50px;
  height: 50px;
  position: absolute;
  top: auto;
  right: 30px;
  bottom: 100px;
  left: auto;
  position: fixed;
  z-index: 10;
  background: url(/images/new/totop.jpg);
  display: none;
}
@media (max-width: 740px) {
  .scroll-to-top {
    display: none !important;
  }
}
.right-menu--block {
  margin: 20px 0;
  padding: 25px;
  background: #F5F7F6;
  border-radius: 10px;
}
.right-menu--block h2 {
  font-weight: 700;
  font-size: 12px;
  line-height: 17px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #585858;
  padding: 0 0 15px 0;
}
.right-menu--block label {
  font-weight: 300;
  font-size: 14px;
  line-height: inherit;
  display: block;
  text-align: left;
}
.right-menu--block textarea {
  background: transparent;
  height: 80px;
}
.right-menu--block .field {
  padding: 5px 0;
}
.right-menu--block .right {
  padding-top: 10px;
}
.right-menu--block .messages-form--description {
  font-weight: 300;
  font-size: 15px;
  line-height: 17px;
  margin: 16px 0 23px;
}
.right-menu--block .messages-form--submit-container {
  text-align: right;
}
.right-menu--block .messages-form--submit {
  background: transparent;
}
.b-header-jump-buttons {
  text-align: center;
  padding: 20px 0;
}
@media (max-width: 650px) {
  .b-header-jump-buttons {
    display: none;
  }
}
.b-header-jump-button {
  display: inline-block;
  vertical-align: middle;
  width: 280px;
  height: 60px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  box-sizing: border-box;
  border: 5px solid #00abb6;
  color: #00abb6;
  text-align: center;
  text-transform: uppercase;
}
.b-header-jump-button__site {
  padding-top: 8px;
}
.b-header-jump-button__description {
  font-size: 9px;
  letter-spacing: 1px;
  padding-top: 8px;
}
.b-header-jump-button--current,
.b-header-jump-button:hover {
  background-color: #00abb6;
  color: #fff;
}
.b-header-jump-button:first-child {
  margin-right: 20px;
}
@media (max-width: 650px) {
  .b-header-jump-button {
    display: block;
    width: auto;
    margin: 10px;
  }
  .b-header-jump-button:first-child {
    margin-right: 10px;
  }
}
.right-menu__last-comments {
  padding: 20px 0;
  border-bottom: 1px solid #00abb6;
}
.b-last-comments-material {
  padding: 17px 0;
  position: relative;
}
.b-last-comments-material__title {
  font-weight: 500;
  font-size: 17px;
  line-height: 21px;
  color: #585858;
}
.b-last-comments-material:not(:last-of-type):after {
  content: '';
  width: 25px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #00abb6;
}
.b-last-comment {
  padding: 20px 0 0;
}
.b-last-comment__header {
  font-size: 0;
  padding: 8px 0 10px;
}
.b-last-comment__name,
.b-last-comment__dates,
.b-last-comment__date,
.b-last-comment__time {
  display: inline-block;
  vertical-align: middle;
}
.b-last-comment__name {
  font-size: 14px;
  color: #00abb6;
  max-width: 40%;
  padding-right: 30px;
}
.b-last-comment__dates {
  font-weight: 700;
  font-size: 10px;
  line-height: 1;
  color: #585858;
  font-family: 'din', arial, helvetica, sans-serif;
  box-sizing: border-box;
  padding-left: 25px;
  max-width: 60%;
  letter-spacing: 0.5px;
  background: url(/images/layout/clock.png) no-repeat left 2px;
}
.b-last-comment__date {
  padding-right: 10px;
}
.b-last-comment__time {
  padding-left: 10px;
  border-left: 1px solid #585858;
}
.b-last-comment__text {
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
}
.spoiler__area {
  display: none;
}
.spoiler__btn {
  border: 1px solid #00abb6;
  border-radius: 5px;
  color: #00abb6;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  background-color: #fff;
  text-transform: uppercase;
  font-family: din;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1.2px;
  padding: 5px 10px;
  text-decoration: none !important;
}
.spoiler__btn:hover {
  background-color: #00abb6;
  color: #fff;
}
@media (max-width: 500px) {
  .spoiler__btn {
    width: 100%;
  }
}
.text-for-profile {
  margin-bottom: 10px;
  margin-top: -10px;
  font-weight: 300;
}
blockquote {
  text-align: center;
  margin: 20px 0;
  padding: 5px 10px;
  text-transform: uppercase;
  border-top: 3px solid #00abb6;
  border-bottom: 3px solid #00abb6;
}
