@charset "UTF-8";
/* beetween 1280 to 1440 */
/* beetween 1440 to 1600 */
/* from 1600 */
/* beetween 768 to 1280 */
/* beetween 375 to 768 */
/* beetween 320 to 375 */
/* beetween 320 to 375 */
/*
@media (max-width: @mediaTablet) {
		width:100%;
		margin: 0;
	}
*/
/* ---- DOCUMENT ---- */
* {
  margin: 0;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
* {
  -webkit-text-size-adjust: none;
}
html,
body {
  height: 100%;
}
html {
  overflow-y: scroll;
  font-size: 100.1%;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background-color: white;
  font-size: 16px;
  color: #000;
}
body {
  color: #000;
  background-color: #fff;
}
/*-------------
	Layout
--------------*/
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
header {
  /* We want the header to have a static height - it will always take up just as much space as it needs.  */
  /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.main-content {
  /* By setting flex-grow to 1, the main content will take up 
	all of the remaining space on the page (the other elements have flex-grow: 0 and won't contest the free space). */
  /* 1 flex-grow, 0 flex-shrink, auto flex-basis */
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
footer {
  /* Just like the header, the footer will have a static height - it shouldn't grow or shrink.  */
  /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/* ---- COMMON STYLES ---- */
p,
a {
  font-size: 1em;
}
.content p,
.content a {
  margin-bottom: 0.4em;
}
a img {
  border: none;
}
a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}
ul li {
  list-style-type: none;
}
input,
select {
  vertical-align: middle;
}
main,
header,
nav,
section,
article,
aside,
footer {
  display: block;
}
.autoclear:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
body {
  font-size: 16px;
}
@media (min-width: 701px) and (max-width: 800px) {
  body {
    font-size: 16px;
  }
}
@media (max-width: 700px) {
  body {
    font-size: 16px;
  }
}
h4 {
  text-align: center;
  margin: 1.5em 0 1em 0;
  color: #ff6435;
}
blockquote,
cite,
.quote {
  display: block;
  background-color: #f8f8f8;
  background-image: url('/files/ico/blockquote.svg');
  background-repeat: no-repeat;
  margin: 1em 3em 1.2em 0em;
  padding: 1em 1em 0.6em 4em;
  border-radius: 0.4em 1.6em 0.4em 0.4em;
  background-size: 3em;
  background-position: 0.2em 0.4em;
  border: 1px solid #f18f1557;
}
@media (max-width: 700px) {
  blockquote,
  cite,
  .quote {
    margin-right: 1em;
    background-size: 1em;
    padding: 1em 1em 0.6em 1em;
  }
}
.imp {
  color: red;
}
.posts-layout {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 0 auto;
}
.posts-layout .post-layout {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #82807f;
  margin: 0.5em 0 0.5em 0;
  border-radius: 0.4em;
}
@media (max-width: 700px) {
  .posts-layout .post-layout {
    display: block;
  }
}
.posts-layout .post-layout .post-info {
  width: 25%;
  /* border-right: 1px solid #cecece; */
  padding: 1em;
  background-color: #fff5f5;
  border-top-left-radius: 0.4em;
}
@media (min-width: 701px) {
  .posts-layout .post-layout .post-info {
    border-bottom-left-radius: 0.4em;
  }
}
@media (max-width: 700px) {
  .posts-layout .post-layout .post-info {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top-right-radius: 0.4em;
  }
}
.posts-layout .post-layout .post-info p {
  font-size: 0.9em;
  background-color: transparent;
}
@media (max-width: 700px) {
  .posts-layout .post-layout .post-info p {
    padding-right: 2em;
  }
}
.posts-layout .post-layout .post-container {
  width: 75%;
  padding: 1em;
  position: relative;
}
@media (max-width: 700px) {
  .posts-layout .post-layout .post-container {
    width: 100%;
  }
}
.posts-layout .post-layout .post-container .post-content {
  margin-bottom: 2em;
  overflow-wrap: break-word;
}
.posts-layout .post-layout .post-container .post-content ul {
  margin-left: 3em;
  margin-bottom: 2em;
}
.posts-layout .post-layout .post-container .post-content ul li {
  list-style-type: disc;
}
.posts-layout .post-layout .post-container .post-content iframe {
  max-width: 100%;
  /* aspect-ratio: 16/9; */
  height: 100%;
}
.post-layout-hidden {
  opacity: 0.5;
}
.topics-layout {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  margin-top: 1em;
  margin-bottom: 1em;
}
.topics-layout .topic-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #ffe3db;
  margin: 0;
}
.topics-layout .topic-layout:hover {
  background-color: #fff5f5;
}
@media (max-width: 480px) {
  .topics-layout .topic-layout {
    display: block;
  }
}
.topics-layout .topic-layout .topic-name {
  width: 40%;
  padding: 0.8em;
  border-right: 1px solid #ffe3db;
}
.topics-layout .topic-layout .topic-name a:hover {
  text-decoration: underline;
}
@media (max-width: 1000px) {
  .topics-layout .topic-layout .topic-name {
    width: 70%;
  }
}
@media (max-width: 700px) {
  .topics-layout .topic-layout .topic-name {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .topics-layout .topic-layout .topic-name {
    width: 100%;
    padding-bottom: 0em;
  }
}
.topics-layout .topic-layout .topic-author {
  width: 15%;
  padding: 0.8em;
  border-right: 1px solid #ffe3db;
}
@media (max-width: 1000px) {
  .topics-layout .topic-layout .topic-author {
    width: 25%;
  }
}
@media (max-width: 700px) {
  .topics-layout .topic-layout .topic-author {
    width: 30%;
  }
}
@media (max-width: 480px) {
  .topics-layout .topic-layout .topic-author {
    width: 100%;
    padding-top: 0em;
  }
}
.topics-layout .topic-layout .topic-stat {
  width: 11%;
  padding: 0.8em;
  text-align: right;
  border-right: 1px solid #ffe3db;
}
@media (max-width: 1000px) {
  .topics-layout .topic-layout .topic-stat {
    display: none;
  }
}
@media (max-width: 480px) {
  .topics-layout .topic-layout .topic-stat.admin-mode {
    width: 100%;
    padding-top: 0em;
  }
  .topics-layout .topic-layout .topic-stat:not(.admin-mode) {
    display: none;
  }
}
.topics-layout .topic-layout .topic-viewes {
  width: 14%;
  padding: 0.8em;
  text-align: right;
}
@media (max-width: 480px) {
  .topics-layout .topic-layout .topic-viewes.admin-mode {
    width: 100%;
    padding-top: 0em;
  }
  .topics-layout .topic-layout .topic-viewes:not(.admin-mode) {
    display: none;
  }
}
.topics-layout .topic-layout .topic-last-date {
  width: 20%;
  padding: 0.8em;
  border-right: 1px solid #ffe3db;
  overflow: hidden;
}
@media (max-width: 700px) {
  .topics-layout .topic-layout .topic-last-date {
    width: 25%;
  }
}
@media (max-width: 480px) {
  .topics-layout .topic-layout .topic-last-date.admin-mode {
    width: 100%;
    padding-top: 0em;
  }
  .topics-layout .topic-layout .topic-last-date:not(.admin-mode) {
    width: 100%;
    padding-top: 0em;
    font-size: 0.9em;
  }
  .topics-layout .topic-layout .topic-last-date:not(.admin-mode):before {
    content: 'Последний ответ: ';
    display: block;
    font-style: italic;
  }
}
.topics-layout .topic-layout-header {
  font-weight: bold;
}
@media (max-width: 480px) {
  .topics-layout .topic-layout-header {
    display: none;
  }
}
.titlebar {
  background-color: #ff6600;
}
.titlebar ul {
  max-width: 1400px;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2em 0 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 480px) {
  .titlebar ul {
    padding: 0;
  }
}
.titlebar ul li {
  padding: 0.6em 1em;
  margin: 0 1em;
}
@media (max-width: 480px) {
  .titlebar ul li {
    padding: 0;
  }
}
.titlebar ul li a {
  color: white;
  /*font-size: 0.8em;
				line-height: 1;
				*/
  display: inline-block;
  padding: 0;
  width: 2em;
  margin: 0;
}
.titlebar ul li a:hover {
  text-decoration: underline;
}
.titlebar ul li a img {
  width: 100%;
}
.cookieCompliance.opened {
  display: none;
}
input[type='submit'],
.send-button {
  padding: 1em 2em;
  background-color: #2c54f4;
  color: white;
  font-weight: bold;
  border: none;
  margin-top: 1em;
  margin-bottom: 2em;
}
.message-send-form {
  max-width: 1400px;
  margin: auto;
}
.message-send-form .warning {
  font-weight: bold;
  margin-bottom: 1.4em;
}
.message-send-form .source-message {
  background-color: #fff5f5;
  padding: 1em;
  color: #18233d;
  margin-bottom: 1.4em;
}
.message-send-form .source-message > p {
  border-bottom: 1px solid #db7f3b;
}
.message-send-form .input-row {
  margin-bottom: 1em;
}
.message-send-form .input-row label {
  margin-right: 1em;
  display: inline-block;
  width: 10ex;
}
.message-send-form .input-row input[type='text'] {
  width: 100%;
  max-width: 400px;
}
.message-send-form .input-row .input-tip {
  margin-left: 1em;
  display: inline-block;
  font-size: 0.9em;
}
@media (max-width: 320px) {
  .g-recaptcha {
    position: relative;
    left: -10px;
  }
}
.admin-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 480px) {
  .admin-toolbar {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.admin-toolbar.in-message {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.admin-toolbar u {
  display: inline-block;
  margin-right: 2em;
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 0;
}
.admin-toolbar a,
.admin-toolbar p {
  display: inline-block;
  margin: 1em;
  padding: 0;
}
@media (max-width: 480px) {
  .admin-toolbar a,
  .admin-toolbar p {
    margin: 1em;
  }
}
.admin-toolbar a img,
.admin-toolbar p img {
  width: 2em;
}
.mess.admin-area {
  /*margin-bottom: 6em;*/
}
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.nav a,
.nav b {
  display: inline-block;
  margin: 0;
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 1em;
}
.nav a img,
.nav b img {
  width: 0.6em;
}
.admin-theme-list-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 480px) {
  .admin-theme-list-info {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.admin-theme-list-info img {
  width: 1em;
  margin-left: 0.4em;
}
.delete-control.initial-state {
  display: none !important;
}
.youtube-inline {
  border: 1px solid #ccc;
  background-color: #cecece;
  display: block;
  margin-top: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 560px;
  aspect-ratio: 1.77777778;
}
.youtube-inline iframe {
  border: none;
}


/*# sourceMappingURL=main.c51f92206f67bc86e666.css.map*/