@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

.wrap {
  width: 100%;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  max-width: 820px;
}

@media screen and (max-width: 860px) {
  .wrap {
    max-width: 400px;
  }
}

.grid-item {
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
}

.block_post,
.block_post_ad {
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
  line-height: 1.6;
  border-radius: 2px;
}

.block_post_header,
.block_post_ad_header {
  width: 100%;
  height: 60px;
  background-color: rgba(226, 242, 255, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid #F0F0F0;
}

.block_post_header_logo,
.block_post_ad_header_logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-right: 10px;
  overflow: hidden;
}

.block_post_header_logo img,
.block_post_ad_header_logo img {
  width: 100%;
  height: 100%;
}

.block_post_header_meta_name,
.block_post_ad_header_meta_name {
  text-decoration: none;
  color: #333;
  line-height: 25px;
  font-size: 16px;
  font-weight: 500;
}

.block_post_header_meta_date,
.block_post_ad_header_meta_date {
  font-size: 12px;
  color: #9e9e9e;
  line-height: 15px;
}

.block_post_header_meta_author,
.block_post_ad_header_meta_author {
  display: none;
}

.block_post_header_button,
.block_post_ad_header_button {
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #5097e5;
  border: 1px solid #5097e5;
  border-radius: 8px;
  color: #fff;
  padding: 5px 12px;
  font-weight: 500;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.block_post_header_button .fa-icon,
.block_post_ad_header_button .fa-icon {
  fill: #fff;
  margin-left: 6px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.block_post_header_button:hover,
.block_post_ad_header_button:hover {
  background-color: #fff;
  color: #5097e5;
}

.block_post_header_button:hover .fa-icon,
.block_post_ad_header_button:hover .fa-icon {
  fill: #5097e5;
}

.block_post_body, .block_post_body_modal,
.block_post_ad_body,
.block_post_ad_body_modal,.pr_1 {
  padding: 10px 16px;
  border-bottom: 1px solid #F0F0F0;
  cursor: pointer;
}

.block_post_body p, .block_post_body_modal p,
.block_post_ad_body p,
.block_post_ad_body_modal p {
  margin: 0;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.8;
}

.block_post_body p:last-child, .block_post_body_modal p:last-child,
.block_post_ad_body p:last-child,
.block_post_ad_body_modal p:last-child {
  margin-bottom: 0;
}

.block_post_body img, .block_post_body_modal img,
.block_post_ad_body img,
.block_post_ad_body_modal img {
  max-width: 100%;
  display: block;
  margin: auto;
}

.block_post_body_modal,
.block_post_ad_body_modal {
  cursor: default;
}

.block_post_footer,
.block_post_ad_footer {
  padding: 10px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.block_post_footer_link,
.block_post_ad_footer_link {
  width: 28px;
  height: 28px;
  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;
  border-radius: 2px;
}

.block_post_footer_link:last-child,
.block_post_ad_footer_link:last-child {
  margin-left: 5px;
}

.block_post_footer_link img,
.block_post_ad_footer_link img {
  opacity: 0.5;
}

.block_post_footer_link:hover,
.block_post_ad_footer_link:hover {
  background-color: #eee;
}

.block_post_footer_link:hover img,
.block_post_ad_footer_link:hover img {
  opacity: 1;
}

.block_post_ad {
  height: 380px;
  width: 100%;
}

.block_post_ad_header {
  background-color: #fff;
}

.block_post_ad_header_logo {
  background-color: #eee;
  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;
}

.block_post_ad_header_logo img {
  width: 60%;
  height: 60%;
}

.block_post_ad_body {
  width: 100%;
  height: calc(100% - 60px);
  border-bottom: 0;
  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;
}

.block_post_ad_body_ad-title {
  color: #666;
  font-size: 34px;
  text-align: center;
  font-weight: 500;
}

.wrap_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wrap_button .button_post-all {
  background-color: #5097e5;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #5097e5;
  padding: 10px 24px;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 40px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.wrap_button .button_post-all:hover {
  background-color: #fff;
  color: #5097e5;
}

.modal_wrap {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.modal_wrap .block_post_header_meta_author {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  color: #9e9e9e;
  line-height: 15px;
}

.modal_wrap .block_post_header_meta_author:before {
  content: '@';
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}

.modal_wrap .block_post_header_meta_author:after {
  content: '•';
  font-family: 'Roboto', sans-serif;
  margin: 0 4px;
}

.modal_wrap .modal_post {
  margin: 115px auto 50px auto;
  margin-bottom: 50px;
  margin-top: 100px;
  background-color: #fff;
  max-width: 640px;
  border-radius: 8px;
  overflow: hidden;
}

.modal_wrap .block_post_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.player__video{
  max-width: 100%;
  height: auto !important;
  display: inline-block;
}
.lenta_title{
  margin-top:0;
  margin-bottom:-35px;
}
/*# sourceMappingURL=style.css.map */