/*
LESS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: @icon-home-width;
}

The large array-like variables contain all information about a single icon
@icon-home: x y offset_x offset_y width height total_width total_height image_path name;

At the bottom of this section, we provide information about the spritesheet itself
@spritesheet: width height image @spritesheet-sprites;
*/
/*
The provided classes are intended to be used with the array-like variables

.icon-home {
  .sprite-width(@icon-home);
}
.icon-email {
  .sprite(@icon-email);
}
*/
/*
The `.sprites` mixin generates identical output to the CSS template
  but can be overridden inside of LESS

This must be run when you have at least 2 sprites.
  If run with a single sprite, then there will be reference errors.

.sprites(@spritesheet-sprites);
*/
/* font-family: "RobotoRegular"; */
@font-face {
  font-family: "RobotoRegular";
  src: local("RobotRegular");
  src: url("../fonts/RobotoRegular/RobotoRegular.eot");
  src: url("../fonts/RobotoRegular/RobotoRegular.eot?#iefix") format("embedded-opentype"), url("../fonts/RobotoRegular/RobotoRegular.woff") format("woff"), url("../fonts/RobotoRegular/RobotoRegular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
/* font-family: "RobotoLight"; */
@font-face {
  font-family: "RobotoLight";
  src: url("../fonts/RobotoLight/RobotoLight.eot");
  src: url("../fonts/RobotoLight/RobotoLight.eot?#iefix") format("embedded-opentype"), url("../fonts/RobotoLight/RobotoLight.woff") format("woff"), url("../fonts/RobotoLight/RobotoLight.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
/* font-family: "RobotoMedium"; */
@font-face {
  font-family: "RobotoMedium";
  src: url("../fonts/RobotoMedium/RobotoMedium.eot");
  src: url("../fonts/RobotoMedium/RobotoMedium.eot?#iefix") format("embedded-opentype"), url("../fonts/RobotoMedium/RobotoMedium.woff") format("woff"), url("../fonts/RobotoMedium/RobotoMedium.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
/* font-family: "RobotoBold"; */
@font-face {
  font-family: "RobotoBold";
  src: url("../fonts/RobotoBold/RobotoBold.eot");
  src: url("../fonts/RobotoBold/RobotoBold.eot?#iefix") format("embedded-opentype"), url("../fonts/RobotoBold/RobotoBold.woff") format("woff"), url("../fonts/RobotoBold/RobotoBold.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "PTSerifRegular";
  src: url("../fonts/PTSerifRegular/PTSerifRegular.eot");
  src: url("../fonts/PTSerifRegular/PTSerifRegular.eot?#iefix") format("embedded-opentype"), url("../fonts/PTSerifRegular/PTSerifRegular.woff") format("woff"), url("../fonts/PTSerifRegular/PTSerifRegular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
/* font-family: "PTSerifBoldItalic"; */
@font-face {
  font-family: "PTSerifBoldItalic";
  src: url("../fonts/PTSerifBoldItalic/PTSerifBoldItalic.eot");
  src: url("../fonts/PTSerifBoldItalic/PTSerifBoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/PTSerifBoldItalic/PTSerifBoldItalic.woff") format("woff"), url("../fonts/PTSerifBoldItalic/PTSerifBoldItalic.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
/* font-family: "PTSerifItalic"; */
@font-face {
  font-family: "PTSerifItalic";
  src: url("../fonts/PTSerifItalic/PTSerifItalic.eot");
  src: url("../fonts/PTSerifItalic/PTSerifItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/PTSerifItalic/PTSerifItalic.woff") format("woff"), url("../fonts/PTSerifItalic/PTSerifItalic.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
/* font-family: "PTSerifBold"; */
@font-face {
  font-family: "PTSerifBold";
  src: url("../fonts/PTSerifBold/PTSerifBold.eot");
  src: url("../fonts/PTSerifBold/PTSerifBold.eot?#iefix") format("embedded-opentype"), url("../fonts/PTSerifBold/PTSerifBold.woff") format("woff"), url("../fonts/PTSerifBold/PTSerifBold.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
body {
  font-family: RobotoLight, Helvetica, Arial, Sans-Serif;
}
a {
  text-decoration: none;
}
a.active {
  border-bottom: 1px dashed #6aa472;
}
a:hover {
  color: #39b54a;
  text-decoration: underline;
}
.h4 {
  font-family: RobotoBold, Helvetica, Arial, san-serif;
  color: #252525;
}
.icon {
  display: inline-block;
}
.icon:before {
  margin: 0px;
  display: inline-block;
}
#arrow-up {
  display: none;
  position: fixed;
  z-index: 20;
  bottom: 100px;
  right: 50px;
  background-image: url(../images/sprites.png);
  background-position: -50px 0px;
  width: 40px;
  height: 40px;
}
#arrow-up:hover {
  background-image: url(../images/sprites.png);
  background-position: 0px -50px;
  width: 40px;
  height: 40px;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.date {
  color: #898989;
  font-size: 80%;
}
.btn.special {
  width: 100%;
  padding: 10px;
  margin: 10px;
}
header a {
  color: #ffffff;
}
header a:hover {
  color: #252525;
  text-decoration: none;
}
header > div:last-child {
  background: url("../images/map.png") no-repeat right;
}
header > div:last-child > div {
  background-color: rgba(57, 181, 74, 0.9);
}
header .banner {
  background-color: #252525;
  text-align: center;
}
header #fixed-header {
  background-color: #297d35;
}
header #fixed-header #search-form {
  display: block;
  margin-top: 60px;
  right: 0px;
  position: absolute;
  z-index: 10;
  padding: 2px;
}
header #fixed-header #search-form div {
  float: right;
}
header #fixed-header #search-form button {
  background-image: url(../images/sprites.png);
  background-position: -102px -92px;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 0px;
  display: block;
  margin: 6px;
}
header #fixed-header #search-form input {
  width: 180px;
  display: none;
  height: 32px;
  background-color: #f3f3f3;
  border: 0px;
}
header #fixed-header #search-form.opened {
  background-color: #297d35;
}
header #fixed-header #search-form.opened input {
  display: block;
}
header #fixed-header #search-form.focused input {
  background-color: #fff;
}
header #fixed-header.activate-fixed {
  width: 100%;
  box-shadow: 1px 1px 5px #000;
  z-index: 100;
  top: 0px;
}
header #fixed-header.activate-fixed #search-form {
  margin: 5px;
}
header .top-header #acc-button:before,
header .top-header #acc-button-mobile:before {
  display: inline-block;
  background-image: url(../images/sprites.png);
  background-position: -146px -50px;
  width: 13px;
  height: 13px;
}
header .top-header #acc-button:hover:before,
header .top-header #acc-button-mobile:hover:before {
  background-image: url(../images/sprites.png);
  background-position: -146px -65px;
  width: 12px;
  height: 13px;
}
header .top-header .send-new-material {
  padding: 13px 10px 10px;
  position: relative;
  display: block;
  width: 100px;
  overflow: hidden;
}
header .top-header .send-new-material.send-new-material.hidden-md.hidden-lg {
  width: inherit;
}
header .top-header .send-new-material span {
  position: absolute;
  left: 0px;
  top: 15px;
  margin-left: 28px;
}
header .top-header .send-new-material:before {
  background-image: url(../images/sprites.png);
  background-position: -126px -20px;
  width: 18px;
  height: 18px;
}
header .top-header .send-new-material:hover:before {
  background-image: url(../images/sprites.png);
  background-position: -126px 0px;
  width: 18px;
  height: 18px;
}
header .top-header .print:before {
  background-image: url(../images/sprites.png);
  background-position: -34px -126px;
  width: 15px;
  height: 15px;
}
header .top-header .print:hover:before {
  background-image: url(../images/sprites.png);
  background-position: -17px -126px;
  width: 15px;
  height: 15px;
}
header .top-header ul {
  font-family: RobotoRegular, Helvetica, Arial, Sans-serif;
  margin: 0px;
  padding: 0px;
  background-color: #297d35;
  float: none;
}
header ul.top-nav li,
header ul.top-nav li.dropdown.open {
  float: left;
}
header ul.top-nav li a,
header ul.top-nav li.dropdown.open a {
  color: #fff;
  display: block;
  transition: background-color 0.5s;
}
header ul.top-nav li a:hover,
header ul.top-nav li.dropdown.open a:hover {
  color: #252525;
  background-color: #39b54a;
}
header ul.top-nav li a:focus,
header ul.top-nav li.dropdown.open a:focus {
  color: #eee;
  background-color: #39b54a;
}
header ul.top-nav > li {
  list-style: none;
  display: block;
}
header ul.top-nav > li a {
  padding: 12px;
  padding-top: 14px;
}
header ul.top-nav > li a:before {
  content: '';
  margin-right: 3px;
}
header ul.top-nav.languages > li span {
  display: block;
  padding: 12px;
  background-color: #39b54a;
}
header ul.top-nav.service-links a:before {
  margin-right: 0px;
}
header ul.top-nav.service-links .video:before {
  background-image: url(../images/sprites.png);
  background-position: -126px -76px;
  width: 18px;
  height: 14px;
  display: inline-block;
}
header ul.top-nav.service-links .video:hover:before {
  background-image: url(../images/sprites.png);
  background-position: -126px -92px;
  width: 18px;
  height: 14px;
}
header ul.top-nav.service-links .photo:before {
  background-image: url(../images/sprites.png);
  background-position: -87px -126px;
  width: 16px;
  height: 14px;
  display: inline-block;
}
header ul.top-nav.service-links .photo:hover:before {
  background-image: url(../images/sprites.png);
  background-position: -69px -126px;
  width: 16px;
  height: 14px;
}
header ul.top-nav.service-links .program:before {
  background-image: url(../images/sprites.png);
  background-position: -146px 0px;
  width: 16px;
  height: 14px;
  display: inline-block;
}
header ul.top-nav.service-links .program:hover:before {
  background-image: url(../images/sprites.png);
  background-position: -51px -126px;
  width: 16px;
  height: 14px;
}
header ul.top-nav.service-links .rss-small:before {
  background-image: url(../images/sprites.png);
  background-position: -146px -16px;
  width: 14px;
  height: 15px;
  display: inline-block;
}
header ul.top-nav.service-links .rss-small:hover:before {
  background-image: url(../images/sprites.png);
  background-position: -146px -33px;
  width: 14px;
  height: 15px;
}
header ul.top-nav ul.dropdown-menu {
  background-color: #2d8e3a;
  border: 0px;
}
header ul.top-nav ul.dropdown-menu li {
  display: block;
  float: none;
}
header ul.top-nav ul.dropdown-menu li a {
  display: block;
  padding: 12px;
}
header ul.top-nav .top-nav__mobile-btn {
  border: none;
  background-color: inherit;
  display: inline-block;
}
header ul.top-nav .top-nav__mobile-btn i {
  margin: 12px 0;
  font-size: 1.5em;
  color: #3fc351;
}
header .main-header a#logo {
  line-height: 1;
  padding: 10px;
  display: block;
  padding-left: 0px;
}
header .main-header a#logo:before {
  background-image: url(../images/sprites.png);
  background-position: 0px 0px;
  width: 48px;
  height: 48px;
  margin-right: 3px;
  display: block;
  float: left;
  content: "";
}
header .main-header a#logo:hover:before {
  animation-name: rotation;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
header .main-header a#logo > div:first-child {
  font-family: RobotoBold, Helvetica, Arial, san-serif;
  font-size: 36px;
  color: #fff;
}
header .main-header a#logo > div:first-child span {
  font-family: RobotoLight, Helvetica, Arial, Sans-Serif;
  color: #297d35;
}
header .main-header a#logo > div:last-child {
  color: #252525;
}
header .main-header ul.top-nav li a {
  padding: 4px;
}
div.main-themes {
  background-color: #f3f3f3;
  border-bottom: 2px solid #d7d7d7;
}
div.main-themes span.title {
  display: block;
  font-family: RobotoMedium, Helvetica, Arial, Sans-serif;
  color: #a1a1a1;
  padding: 11px;
  padding-left: 0px;
  float: left;
}
div.main-themes ul.dropdown {
  margin: 0px;
  padding: 0px;
}
div.main-themes ul.dropdown li li a {
  box-shadow: 0 1px 5px #555;
}
div.main-themes ul.dropdown li a {
  padding: 12px;
  color: #3f3f3f;
  font-family: RobotoLight, Helvetica, Arial, Sans-Serif;
  font-size: 90%;
  border-left: 1px solid #f3f3f3;
  border-right: 1px solid #f3f3f3;
  font-weight: normal;
  transition: background-color 0.5s;
  background-color: #f3f3f3;
}
div.main-themes ul.dropdown li a:hover {
  background-color: #d7d7d7;
  text-decoration: none;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
div.subheader {
  background: url("../images/ny-back.jpg");
  border-bottom: 2px solid #d7d7d7;
}
div.subheader a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
div.subheader a:hover i {
  background-color: rgba(0, 0, 0, 0);
}
div.subheader a span {
  margin: 10px;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  position: absolute;
  z-index: 2;
}
div.subheader a i {
  display: block;
  position: absolute;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 1s;
  z-index: 1;
}
div.subheader a h2 {
  font-weight: bold;
  font-size: 160%;
  position: absolute;
  z-index: 2;
  bottom: 0px;
  left: 0px;
  color: #fff;
  margin: 10px;
  text-shadow: 1px 1px 1px #000;
}
div.subheader .columns-2 > div {
  width: 50%;
  float: left;
}
div.subheader .columns-2 > div .column-big {
  width: 100%;
  position: relative;
  height: 380px;
}
div.subheader .columns-2 > div:last-child div {
  width: 50%;
  float: left;
  height: 190px;
  position: relative;
}
div.subheader .columns-2 > div:last-child div h2 {
  font-size: 120%;
}
#main-content div.node-view .image {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}
#main-content div.news-list aside {
  background-color: #f3f3f3;
  padding: 20px;
}
#main-content div.news-list aside .h4 {
  margin-top: 0px;
  margin-bottom-bottom: 20px;
  display: block;
}
#main-content div.news-list aside article {
  margin-bottom: 20px;
}
#main-content div.profile {
  margin-top: 20px;
}
#main-content table.tv-list td a {
  display: block;
  padding-left: 80px;
  background: url("/images/iptv-arrow.png") no-repeat 0px -31px;
  height: 28px;
}
#main-content table.tv-list td a:hover {
  background: url("/images/iptv-arrow.png") no-repeat 0px 0px;
}
div.list-nodes {
  margin-top: 20px;
  margin-bottom: 20px;
}
div.list-nodes article {
  width: 230px;
  float: left;
  height: 220px;
  margin: 10px;
  margin-bottom: 30px;
  position: relative;
}
div.list-nodes article > a:first-child {
  display: block;
  height: 100%;
}
div.list-nodes article > a:first-child i {
  display: block;
  width: 100%;
  height: 135px;
}
div.list-nodes article > a:first-child i.shadow {
  background-color: #000000;
  display: none;
  transition: background-color 0.5s;
  position: absolute;
  z-index: 11;
}
div.list-nodes article > a:first-child i.zoom-bg {
  display: none;
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 10;
}
div.list-nodes article > a:first-child b.search {
  display: none;
}
div.list-nodes article > a:first-child div.info {
  display: none;
  color: #fff;
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 13;
}
div.list-nodes article > a:first-child div.info span {
  color: #898989;
  font-size: 80%;
  text-shadow: 1px 1px 1px #000;
  color: #fff;
  padding-right: 10px;
}
div.list-nodes article > a:first-child div.info span:first-child {
  padding-right: 20px;
}
div.list-nodes article > a:first-child div.info span.count-comment:before {
  display: inline-block;
  background-image: url(../images/sprites.png);
  background-position: -146px -115px;
  width: 10px;
  height: 9px;
  content: "";
  margin-right: 3px;
}
div.list-nodes article > a:first-child div.info span.author:before {
  display: inline-block;
  background-image: url(../images/sprites.png);
  background-position: -146px -80px;
  width: 10px;
  height: 11px;
  content: "";
  margin-right: 3px;
}
div.list-nodes article > a:first-child div.info span.count-view:before {
  display: inline-block;
  background-image: url(../images/sprites.png);
  background-position: -146px -93px;
  width: 13px;
  height: 8px;
  content: "";
  margin-right: 3px;
}
div.list-nodes article > a:first-child:hover {
  width: 410px;
  height: 290px;
  position: absolute;
  z-index: 10;
  top: -50px;
  left: -50px;
  box-shadow: 1px 1px 5px #252525;
}
div.list-nodes article > a:first-child:hover i {
  width: 100%;
  height: 100%;
}
div.list-nodes article > a:first-child:hover i.shadow {
  background-color: rgba(0, 0, 0, 0.3);
  display: block;
  top: 0px;
  left: 0px;
}
div.list-nodes article > a:first-child:hover i.bg {
  display: none;
}
div.list-nodes article > a:first-child:hover i.zoom-bg {
  display: block;
  opacity: 1;
}
div.list-nodes article > a:first-child:hover span.date {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  z-index: 12;
}
div.list-nodes article > a:first-child:hover div.info {
  display: block;
}
div.list-nodes article > a:first-child:hover h3 {
  position: absolute;
  bottom: 30px;
  left: 10px;
  color: #fff;
  z-index: 12;
  font-weight: bold;
  text-shadow: 1px 1px 1px #000;
}
div.list-nodes article > a:first-child:hover b.search {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 12;
  background-image: url(../images/sprites.png);
  background-position: -102px -92px;
  width: 20px;
  height: 20px;
}
div.list-nodes article > a:first-child:hover b.search:hover {
  background-image: url(../images/sprites.png);
  background-position: -92px -68px;
  width: 20px;
  height: 20px;
}
div.list-nodes article > div {
  margin-top: 10px;
}
div.list-nodes article h3 {
  font-size: 110%;
  margin: 3px;
  transition: color 0.5s, left 0.5s, bottom 0.5s;
}
div.list-nodes-news article {
  margin-top: 10px;
  margin-bottom: 40px;
}
div.list-nodes-news article a.image {
  float: left;
  display: block;
  margin-right: 20px;
}
div.list-nodes-news article div.content {
  padding-left: 200px;
}
div.list-nodes-news article div.content .h4 {
  font-family: RobotoLight, Helvetica, Arial, Sans-Serif;
  margin-top: 0px;
}
div.list-nodes-news article div.content .teaser {
  color: #7c7c7c;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: justify;
}
footer {
  background-color: #252525;
  padding: 10px;
  color: #fff;
}
footer > div {
  border-bottom: 1px solid #363636;
  padding-bottom: 10px;
  padding-top: 10px;
}
footer > div:first-child {
  border: none;
}
footer > div:last-child {
  border: none;
}
footer .linkmoney div {
  display: inline-block;
}
.recent-comments {
  background-color: #252525;
}
.recent-comments > a.h4 {
  color: #fff;
  display: block;
  text-align: center;
  color: #707070;
  font-family: RobotoBold, Helvetica, Arial, san-serif;
}
.recent-comments > a.h4:hover {
  text-decoration: none;
  color: #39b54a;
}
.recent-comments > div {
  float: left;
  width: 365px;
  height: 150px;
  border-bottom: 1px solid #363636;
  margin: 5px;
  padding: 5px;
}
.recent-comments > div p {
  margin: 1px;
  padding: 1px;
}
.recent-comments > div p.title {
  color: #898989;
  font-size: 80%;
}
.recent-comments > div p.comment a {
  color: #fff;
}
.recent-comments > div p.comment a:hover {
  color: #39b54a;
}
.recent-comments > div p.author {
  color: #898989;
  font-size: 80%;
  color: #0072bc;
}
div.gaydpark div.recent-comments {
  padding: 10px;
}
div.gaydpark div.recent-comments > div {
  float: none;
  width: 100%;
  height: 100%;
  margin: 0px;
}
.social-icons span {
  display: inline-block;
  padding-top: 8px;
  vertical-align: top;
}
.social-icons a {
  display: inline-block;
  margin: 3px;
}
.social-icons a.twitter {
  background-image: url(../images/sprites.png);
  background-position: -68px -92px;
  width: 32px;
  height: 32px;
}
.social-icons a.twitter:hover {
  background-image: url(../images/sprites.png);
  background-position: -42px -50px;
  width: 32px;
  height: 32px;
}
.social-icons a.facebook {
  background-image: url(../images/sprites.png);
  background-position: -34px -92px;
  width: 32px;
  height: 32px;
}
.social-icons a.facebook:hover {
  background-image: url(../images/sprites.png);
  background-position: 0px -92px;
  width: 32px;
  height: 32px;
}
.social-icons a.livejournal {
  background-image: url(../images/sprites.png);
  background-position: -92px 0px;
  width: 32px;
  height: 32px;
}
.social-icons a.livejournal:hover {
  background-image: url(../images/sprites.png);
  background-position: -92px -34px;
  width: 32px;
  height: 32px;
}
#simplemodal-container {
  border: 3px solid #297d35;
  background-color: #f3f3f3;
  min-height: 240px;
  min-width: 320px;
}
#simplemodal-container .close-icon {
  display: block;
  width: 30px;
  height: 30px;
  background-color: #297d35;
  text-decoration: none;
  font-weight: bold;
  font-size: 21px;
  color: #fff;
  padding-left: 6px;
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 0px;
}
.modal-window {
  min-width: 300px;
  min-height: 300px;
  position: relative;
}
.activate-fixed {
  position: fixed;
}
.gallery i {
  margin-right: 15px;
}
.gallery i:before {
  display: inline-block;
  content: "";
}
.gallery i.file-count:before {
  background-image: url(../images/sprites.png);
  background-position: -146px -103px;
  width: 10px;
  height: 10px;
}
.gallery i.comment-count:before {
  background-image: url(../images/sprites.png);
  background-position: -146px -115px;
  width: 10px;
  height: 9px;
}
.gallery.list a.item {
  display: inline-block;
  position: relative;
  margin-right: 5px;
  margin-bottom: 10px;
}
.gallery.list a.item span {
  display: none;
  position: absolute;
  background-color: #2d8e3a;
  padding: 10px;
  opacity: 0.9;
  color: #fff;
  right: 0px;
  left: 0px;
}
.gallery.list a.item span.top-panel {
  top: 0px;
}
.gallery.list a.item span.bottom-panel {
  bottom: 0px;
}
.gallery.list a.item:hover span {
  display: block;
}
.popover {
  background-color: #297d35;
  color: #ffffff;
}
.popover.bottom > .arrow {
  border-bottom-color: #297d35;
}
.popover.bottom > .arrow:after {
  border-bottom-color: #297d35;
}
.mobile-menu {
  display: none;
}
@media screen and (max-width: 1024px) {
  .recent-comments > div {
    width: auto;
  }
}
@media screen and (max-width: 740px) {
  @keyframes menu-show {
    from {
      bottom: 700px;
      animation-timing-function: ease-out;
      opacity: 0;
    }
    50% {
      bottom: 300px;
      animation-timing-function: ease-out;
      opacity: 0.5;
    }
    to {
      bottom: 0;
      animation-timing-function: ease-out;
      opacity: 1;
    }
  }
  @keyframes menu-hide {
    from {
      bottom: 0;
      animation-timing-function: ease-out;
      opacity: 1;
      animation-duration: 0.5s;
    }
    50% {
      bottom: 500px;
      animation-timing-function: ease-out;
      opacity: 0.5;
      animation-duration: 0.5s;
    }
    to {
      bottom: 7000px;
      animation-timing-function: ease-out;
      opacity: 0;
    }
  }
  .content-body .image img {
    width: 100%;
  }
  .content-body p img {
    width: 100%;
    height: 100%;
  }
  .mobile-menu {
    position: fixed;
    z-index: 1000;
    top: 48px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2f903d;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
  }
  .mobile-menu__close {
    border: none;
    background-color: inherit;
    float: right;
  }
  .mobile-menu__close i {
    color: #f3f3f3;
  }
  .mobile-menu_active {
    display: block;
    animation: menu-show 0.5s;
  }
  .mobile-menu__header {
    color: #ffffff;
    margin: 20px 0;
  }
  .mobile-menu__main-themes {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-menu__main-themes li {
    padding: 5px;
    border-top: 1px solid #6aa472;
  }
  .mobile-menu__main-themes li a {
    color: #ffffff;
    font-size: 1.5em;
  }
  #CommentWidget_container div.comments-container ul,
  #CommentWidget_container div.comments-container li {
    padding: 0;
    margin: 0;
  }
  #CommentWidget_container div.comments-container ul ul,
  #CommentWidget_container div.comments-container li ul {
    margin: 0 0 0 3px;
  }
  #CommentWidget_container div.comments-container ul ul li,
  #CommentWidget_container div.comments-container li ul li {
    margin: 0;
    padding: 0;
  }
  #CommentWidget_container div.comments-container ul ul li ul,
  #CommentWidget_container div.comments-container li ul li ul {
    margin: 0;
    padding: 0;
  }
  #CommentWidget_container div.comments-container .comment {
    margin: 20px 0 0 0;
  }
}
