/*
 SCSS - How to apply the style in configurator
 1. Convert scss to css (online compiler, ...)
 2. Add style properties (from scss), which starts with //del comment to your compiled css
 for example: 
 2.1   //del background: url('https://s3b.esitex.com/img/l/logo_1000000402.jpeg') center / cover no-repeat;
 - remove the //del comment 
 2.2   background: url('https://s3b.esitex.com/img/l/logo_1000000402.jpeg') center / cover no-repeat;
 - add this to compiled css
 3. Save and export
 */
.hidden h1{
    display: none !important;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html, body, #whole-page, #document, #content {
  height: 100%;
}
img {
  max-width: 100%;
  height: auto;
}
body {
  background-color: #fff;
}
#document {
  position: relative;
}
input:focus {
  outline: 0;
}
body {
  font-size: 16px;
  font-family: "Helvetica";
  line-height: 1.3;
}
h1 {
  font-size: 1.6em;
}
h2 {
  font-size: 1.4em;
}
h3 {
  font-size: 1.3em;
}
h4 {
  font-size: 1.2em;
}
h5 {
  font-size: 1.1em;
}
.p-0 {
  padding: 0;
}
.p-1 {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}
@media screen and (min-width: 991px) {
  .p-1 {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (min-width: 1199px) {
  .p-1 {
    padding-left: 8%;
    padding-right: 8%;
  }
}
@media screen and (min-width: 1500px) {
  .p-1 {
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media screen and (min-width: 1800px) {
  .p-1 {
    padding-left: 15%;
    padding-right: 15%;
  }
}
.accessibility-links {
  display: none;
}
.hide {
  display: none;
}
.header {
  position: absolute;
  position: fixed;
  top: 0;
  display: table;
  width: 100%;
  min-height: 80px;
  background-color: #fff;
  -webkit-box-shadow: 0px 15px 54px -18px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0px 15px 54px -18px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 15px 54px -18px rgba(0, 0, 0, 0.7);
  z-index: 999;
}
.header .header-inner #languages {
  text-align: right;
}
.header .header-inner #languages h2 {
  display: none;
}
.header .header-inner #languages .inner_frame img {
  margin: 5px 5px 0 5px;
}
@media screen and (max-width: 991px) {
  .header .header-inner #languages {
    position: absolute;
    right: 0;
  }
}
.header .header-inner #navigation {
  width: calc(100% - 280px);
  float: left;
}
.header .header-inner #navigation .inner_frame nav {
  width: 100%;
  min-height: 80px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}
.header .header-inner #navigation .inner_frame nav menu {
  padding-right: 20px;
}
.header .header-inner #navigation .inner_frame nav menu li {
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  box-sizing: border-box;
  overflow: unset !important;
  padding: 5px;
  transition: 0.4s all;
  border-bottom: 2px solid transparent;
  color: transparent;
  max-height: 80px;
}
.header .header-inner #navigation .inner_frame nav menu li:hover > a {
  color: #ef7285;
}
.header .header-inner #navigation .inner_frame nav menu li ul {
  position: absolute;
  left: 0px;
  top: 50px;
  min-width: 200px;
  background-color: rgba(255, 255, 255, 0.8);
}
.header .header-inner #navigation .inner_frame nav menu li ul li {
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.header .header-inner #navigation .inner_frame nav menu li ul li:hover {
  padding: 5px;
}
.header .header-inner #navigation .inner_frame nav menu li a {
  color: transparent;
  text-decoration: none;
  display: block;
  padding: 10px;
}
@media screen and (max-width: 991px) {
  .header .header-inner #navigation .inner_frame nav menu li a {
    font-size: 1.3em;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .header .header-inner #navigation .inner_frame nav menu li, .header .header-inner #navigation .inner_frame nav menu li a {
    color: #4b4b4b \9;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .header .header-inner #navigation .inner_frame nav {
    height: 80px;
  }
}
@media screen and (max-width: 991px) {
  .header .header-inner #navigation {
    width: 100%;
    display: none;
  }
  .header .header-inner #navigation.menu-active {
    display: block;
  }
  .header .header-inner #navigation .inner_frame nav menu {
    width: 100%;
    height: calc(100vh - 160px);
    overflow: auto;
    padding-right: 0;
  }
  .header .header-inner #navigation .inner_frame nav menu li {
    display: block;
    width: 100%;
    text-align: center;
  }
  .header .header-inner #navigation .inner_frame nav menu li ul {
    display: none !important;
  }
}
.header .header-inner #search {
  float: right;
  min-height: 80px;
  width: 180px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.header .header-inner #search form {
  margin-top: -4px;
}
.header .header-inner #search fieldset #key {
  width: 125px;
  background-color: #f4f4f4;
  color: #000;
  padding: 10px;
  border: 0;
  border-radius: 4px;
}
.header .header-inner #search fieldset #key:focus {
  outline: none;
}
@media screen and (max-width: 991px) {
  .header .header-inner #search fieldset #key {
    width: 65px;
  }
}
.header .header-inner #search fieldset .clButton {
  position: relative;
}
.header .header-inner #search fieldset .clButton .magGlass {
  width: 30px;
  height: 30px;
  position: absolute;
  top: -3px;
  right: 0;
  color: #ef7285;
}
.header .header-inner #search fieldset .clButton .magGlass span:nth-of-type(1) {
  width: 10px;
  height: 10px;
  border: 4px solid;
  display: block;
  border-radius: 50%;
}
.header .header-inner #search fieldset .clButton .magGlass span:nth-of-type(2) {
  width: 4px;
  height: 14px;
  background: #ef7285;
  display: block;
  transform: rotate(-45deg);
  margin-top: -6px;
  margin-left: 17px;
  border-radius: 0 0 20px 20px;
}
.header .header-inner #search fieldset .clButton #sendsearch {
  height: 30px;
  width: 30px;
  background: none;
  border: none;
  opacity: 0;
  position: relative;
  z-index: 9;
  cursor: pointer;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .header .header-inner #search {
    height: 80px;
  }
}
@media screen and (max-width: 991px) {
  .header .header-inner #search {
    width: auto;
    float: left;
  }
}
#menu-toggle {
  position: absolute;
  top: 25px;
  right: 17px;
  border: 0;
  outline: 0;
  padding: 0;
  padding-bottom: 6px;
  cursor: pointer;
  min-height: 35px;
  display: none;
  background: transparent;
  z-index: 99999;
}
#menu-toggle.menu-active {
  top: 23px;
}
#menu-toggle.menu-active span:nth-of-type(1) {
  opacity: 0;
}
#menu-toggle.menu-active span:nth-of-type(2) {
  transform: rotate(45deg);
}
#menu-toggle.menu-active span:nth-of-type(3) {
  transform: rotate(-45deg);
  margin-top: -7px;
}
#menu-toggle span {
  border-top: 5px #000 solid;
  width: 30px;
  margin: 2px 0;
  display: block;
  transition: 0.3s all linear;
}
@media screen and (max-width: 991px) {
  #menu-toggle {
    display: block;
  }
}
#content {
  padding-top: 80px;
  display: block;
  box-sizing: border-box;
}
#content #content-wrapper {
  height: 100%;
  display: inline;
}
#content #content-wrapper.content-wrapper {
  width: 100%;
  height: auto;
  float: left;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 991px) {
  #content #content-wrapper.content-wrapper {
    width: calc(100% - 320px);
    padding-right: 30px;
  }
  #content #content-wrapper .modules {
    width: 320px;
    padding-left: 0;
  }
}
@media screen and (min-width: 1199px) {
  #content #content-wrapper.content-wrapper {
    width: calc(100% - 380px);
  }
  #content #content-wrapper .modules {
    width: 380px;
  }
}
@media screen and (min-width: 1500px) {
  #content #content-wrapper.content-wrapper {
    width: calc(100% - 430px);
  }
  #content #content-wrapper .modules {
    width: 430px;
  }
}
@media screen and (min-width: 1800px) {
  #content #content-wrapper.content-wrapper {
    width: calc(100% - 550px);
  }
  #content #content-wrapper .modules {
    width: 550px;
  }
}
#content #content-wrapper #eshop {
  padding-top: 30px;
  padding-bottom: 30px;
}
#content #content-wrapper #eshop a {
  color: #000;
}
#content #content-wrapper #eshop #panel {
  width: 100%;
}
#content #content-wrapper #eshop .products .article {
  border: 2px solid #4b4b4b;
  padding: 10px 30px;
  border-radius: 20px;
  margin: 10px;
  background-color: #fff;
  text-align: center;
  width: 170px;
}
#content #content-wrapper #eshop .products .article .photo-wrap {
  width: 180px;
}
#content #content-wrapper #eshop .products .article h3 a {
  color: #000;
}
#content #content-wrapper #eshop #articles {
  background: #f4f4f4;
  padding: 20px;
  color: #000;
}
#content #content-wrapper #eshop #articles .wrap #baskettransport, #content #content-wrapper #eshop #articles .wrap #basketpayments {
  padding: 20px 0;
  width: 100%;
}
@media screen and (min-width: 991px) {
  #content #content-wrapper #eshop #articles .wrap #baskettransport, #content #content-wrapper #eshop #articles .wrap #basketpayments {
    width: 50%;
  }
}
#content #content-wrapper #eshop #articles .clButton input[type=submit] {
  padding: 10px;
  border-radius: 5px;
  color: #000;
  font-size: 14px;
  margin: 10px 5px;
}
#content #content-wrapper #eshop #articles #steps ul li {
  border-radius: 20px;
  padding: 10px;
  margin: 10px 5px;
}
#content #content-wrapper #eshop #articles #steps ul li.active {
  font-weight: bold;
  background: #fff;
}
#content #content-wrapper #eshop #articles input[type="text"], #content #content-wrapper #eshop #articles input[type="password"] {
  padding: 10px;
  float: right;
  margin: 10px 0;
  width: 100%;
  box-sizing: border-box;
}
#content #content-wrapper #eshop #articles .login-info, #content #content-wrapper #eshop #articles #account_info table, #content #content-wrapper #eshop #articles #delivery_address table, #content #content-wrapper #eshop #articles #account_firm table {
  max-width: 300px;
  width: 100%;
}
#content #content-wrapper #eshop #articles #basket input[type="text"] {
  width: auto;
  float: left;
  padding: 7px;
}
#content #content-wrapper #eshop #articles #basket_preview_form tr td {
  padding: 10px 0;
}
#content #content-wrapper #eshop #articles #basket_preview_form input[type="text"] {
  width: auto;
  float: left;
  padding: 7px;
}
#content #content-wrapper #breadcrumb-nav {
  color: #4b4b4b;
  background: rgba(0, 0, 0, 0.1);
  padding-top: 10px;
  padding-bottom: 10px;
}
#content #content-wrapper #breadcrumb-nav a {
  color: #000;
  margin-right: 5px;
  text-decoration: none;
}
#content .hero {
  width: 100%;
  height: calc(100% - 40px);
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
  background: url('https://s3b.esitex.com/img/l/logo_1000000402.jpeg') center / cover no-repeat;
}
#content .hero .hero-inner {
  position: absolute;
  bottom: 0;
  height: 53px;
  height: auto;
  width: 100%;
  box-sizing: border-box;
  word-break: break-word;
}
#content .hero .hero-inner h1 {
  font-weight: bold;
  background: rgba(255, 255, 255, 0.8);
  padding-top: 20px;
  padding-bottom: 20px;
  min-width: 200px;
}
#content .hero.head-left {
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
}
#content .hero.head-left .hero-inner {
  text-align: left;
  left: 0;
}
#content .hero.head-center {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
#content .hero.head-center .hero-inner {
  text-align: center;
  left: 50%;
  transform: translate(-50%, 0);
}
#content .hero.head-right {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}
#content .hero.head-right .hero-inner {
  text-align: right;
  right: 0;
}
@media screen and (max-width: 991px) {
  #content .hero {
    height: calc(60% - 80px);
  }
}
#content #articles > h1, #content #archive > h1, #content #articles > h2, #content #archive > h2, #content #articles > h3, #content #archive > h3 {
  color: #000;
  padding: 10px 0;
}
#content #articles #section_subsections, #content #archive #section_subsections {
  background: rgba(255, 255, 255, 0.4);
  padding: 10px;
}
#content #articles #section_subsections a, #content #archive #section_subsections a {
  color: #4b4b4b;
  text-decoration: none;
}
#content #articles #section_subsections a:hover, #content #archive #section_subsections a:hover {
  text-decoration: underline;
}
#content #articles .article, #content #archive .article {
  width: calc(50% - 40px);
  float: left;
  margin: 20px;
  -webkit-box-shadow: 0px 15px 54px -18px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 15px 54px -18px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 15px 54px -18px rgba(0, 0, 0, 0.4);
  border: 2px solid #f4f4f4;
  box-sizing: border-box;
}
#content #articles .article .editor-area, #content #archive .article .editor-area {
  position: relative;
  padding: 0;
  padding-bottom: 80px;
  overflow: hidden;
}
#content #articles .article .editor-area .a-whole-article, #content #archive .article .editor-area .a-whole-article {
  position: absolute;
  bottom: 20px;
  z-index: 3;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 10px 30px;
  background: #ef7285;
  border-radius: 20px;
  text-decoration: none;
  text-transform: uppercase;
  width: 150px;
  font-weight: bold;
  transition: 0.5s all;
  color: #fff;
}
#content #articles .article .editor-area .a-whole-article:hover, #content #archive .article .editor-area .a-whole-article:hover {
  background: #4b4b4b;
  color: #fff;
}
#content #articles .article .editor-area .preview, #content #archive .article .editor-area .preview {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  background: #fff;
  opacity: 0.1;
}
#content #articles .article .editor-area .preview img, #content #archive .article .editor-area .preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  float: right;
}
#content #articles .article .editor-area .article-content, #content #archive .article .editor-area .article-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 289px;
  float: left;
  color: #4b4b4b;
  overflow: hidden;
  box-sizing: border-box;
  padding: 10px 30px;
}
#content #articles .article .editor-area .article-content h3 a, #content #archive .article .editor-area .article-content h3 a {
  color: #4b4b4b;
  display: block;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  transition: 0.5s all;
}
#content #articles .article .editor-area .article-content h3 a:hover, #content #archive .article .editor-area .article-content h3 a:hover {
  text-decoration: underline;
}
#content #articles .article .editor-area .article-content .ifo-article, #content #archive .article .editor-area .article-content .ifo-article {
  margin: 5px 0;
}
#content #articles .article .editor-area .article-content .ifo-article .first, #content #archive .article .editor-area .article-content .ifo-article .first {
  margin-right: 10px;
}
#content #articles .article .editor-area .article-content .ifo-article a, #content #archive .article .editor-area .article-content .ifo-article a {
  color: #000;
  text-decoration: none;
}
#content #articles .article .editor-area .article-content .ifo-article a:hover, #content #archive .article .editor-area .article-content .ifo-article a:hover {
  text-decoration: underline;
}
#content #articles .article .editor-area .article-content .article-preview-text p, #content #archive .article .editor-area .article-content .article-preview-text p {
  padding: 0;
  text-align: justify;
  line-height: 1.5;
}
#content #articles .article .editor-area .article-content .article-preview-text a, #content #archive .article .editor-area .article-content .article-preview-text a {
  text-decoration: underline;
}
@media screen and (max-width: 480px) {
  #content #articles .article, #content #archive .article {
    width: 100%;
    margin: 20px 0;
  }
}
#content #articles {
  padding-top: 30px;
}
#content #articles .list-of-pages {
  margin: 10px 0;
  float: left;
  width: 100%;
  box-sizing: border-box;
}
#content #articles .list-of-pages hr {
  display: none;
}
#content #articles .list-of-pages .numbers {
  text-align: center;
}
#content #articles .list-of-pages a {
  color: #000;
}
#content .article .editor-area p, #content .detail_article .editor-area p {
  padding: 15px 0;
}
#content .article .editor-area a, #content .detail_article .editor-area a {
  color: #000;
}
#content .article .editor-area blockquote, #content .detail_article .editor-area blockquote {
  border: 1px solid #000;
  padding: 10px;
  border-radius: 5px;
  margin: 15px;
  position: relative;
}
#content .article .editor-area blockquote:after, #content .detail_article .editor-area blockquote:after {
  content: "''";
  font-size: 60px;
  position: absolute;
  top: -25px;
  left: 0;
}
#content .article .editor-area dl, #content .detail_article .editor-area dl {
  border: 1px solid #000;
}
#content .article .editor-area dl dt, #content .detail_article .editor-area dl dt {
  background: #ef7285;
  color: #fff;
  padding: 10px;
  text-align: center;
}
#content .article .editor-area dl dd, #content .detail_article .editor-area dl dd {
  padding: 10px;
}
#content .article .editor-area table, #content .detail_article .editor-area table {
  width: 100%;
  text-align: left;
  overflow: auto;
  display: block;
}
#content .article .editor-area table th, #content .detail_article .editor-area table th {
  background-color: #ef7285;
  color: #fff;
}
#content .article .editor-area table th, #content .detail_article .editor-area table th, #content .article .editor-area table td, #content .detail_article .editor-area table td {
  border: 1px solid #ef7285;
  padding: 5px;
}
#content .article .editor-area ol, #content .detail_article .editor-area ol {
  list-style: decimal;
  margin-left: 20px;
}
#content .article .editor-area ul, #content .detail_article .editor-area ul {
  list-style: disc;
  margin-left: 20px;
}
#content .article .editor-area kbd, #content .detail_article .editor-area kbd {
  border: 2px solid #9c9b9b;
  border-radius: 5px;
  padding: 2px;
  background: #ccc;
}
#content .article .editor-area code, #content .detail_article .editor-area code {
  width: 100%;
  background: #ef7285;
  padding: 10px;
  border-radius: 5px;
  display: block;
  color: #fff;
  font-family: monospace;
  box-sizing: border-box;
}
#content .article .editor-area pre, #content .detail_article .editor-area pre {
  overflow: auto;
}
#content .content-inner {
  width: 100%;
  float: left;
}
#content .content-inner h2 {
  background-color: #ef7285;
  color: #fff;
  padding: 10px;
}
#content .content-inner .uvod {
  background: url("https://s3b.esitex.com/img/d/1000000402/onas.png") center / cover no-repeat;
  min-height: 300px;
  width: 100%;
  display: table;
}
#content .content-inner .uvod > div > h2 {
  color: #fff;
  background: transparent;
  padding: 50px 0;
  padding-right: 50px;
  width: 30%;
  float: left;
  box-sizing: border-box;
  font-size: 2.5em;
  text-align: right;
  text-transform: uppercase;
}
#content .content-inner .uvod h2 {
  background: transparent;
}
#content .content-inner .uvod .uvod-in {
  padding: 30px;
  float: left;
  width: 70%;
  box-sizing: border-box;
  color: #fff;
}
#content .content-inner .uvod .uvod-in h1, #content .content-inner .uvod .uvod-in h2, #content .content-inner .uvod .uvod-in h3, #content .content-inner .uvod .uvod-in h4, #content .content-inner .uvod .uvod-in h5, #content .content-inner .uvod .uvod-in h6 {
  color: #fff;
  padding: 10px 0;
  margin: 5px 0;
}
#content .content-inner .uvod .uvod-in p {
  padding: 15px 0;
}
#content .content-inner .uvod .uvod-in a {
  color: #fff;
  text-decoration: underline;
}
#content .content-inner .uvod .uvod-in blockquote {
  border: 1px solid #000;
  padding: 10px;
  border-radius: 5px;
  margin: 15px;
  position: relative;
}
#content .content-inner .uvod .uvod-in blockquote:after {
  content: "''";
  font-size: 60px;
  position: absolute;
  top: -25px;
  left: 0;
}
#content .content-inner .uvod .uvod-in dl {
  border: 1px solid #000;
}
#content .content-inner .uvod .uvod-in dl dt {
  background: #ef7285;
  color: #fff;
  padding: 10px;
  text-align: center;
}
#content .content-inner .uvod .uvod-in dl dd {
  padding: 10px;
}
#content .content-inner .uvod .uvod-in table {
  width: 100%;
  text-align: left;
  overflow: auto;
  display: block;
}
#content .content-inner .uvod .uvod-in table th {
  background-color: #ef7285;
  color: #fff;
}
#content .content-inner .uvod .uvod-in table th, #content .content-inner .uvod .uvod-in table td {
  border: 1px solid #ef7285;
  padding: 5px;
}
#content .content-inner .uvod .uvod-in ol {
  list-style: decimal;
  margin-left: 20px;
}
#content .content-inner .uvod .uvod-in ul {
  list-style: disc;
  margin-left: 20px;
}
#content .content-inner .uvod .uvod-in kbd {
  border: 2px solid #9c9b9b;
  border-radius: 5px;
  padding: 2px;
  background: #ccc;
}
#content .content-inner .uvod .uvod-in code {
  width: 100%;
  background: #ef7285;
  padding: 10px;
  border-radius: 5px;
  display: block;
  color: #fff;
  font-family: monospace;
  box-sizing: border-box;
}
#content .content-inner .uvod .uvod-in pre {
  overflow: auto;
}
@media screen and (max-width: 991px) {
  #content .content-inner .uvod > div > h2 {
    padding: 30px 0 0 0;
    width: 100%;
    text-align: center;
    font-size: 2em;
  }
  #content .content-inner .uvod .uvod-in {
    width: 100%;
  }
}
#content .content-inner #articles-container > div > h2 {
  color: #000;
  background: transparent;
  padding: 50px 0;
  padding-right: 50px;
  width: 30%;
  float: left;
  box-sizing: border-box;
  font-size: 2.5em;
  text-align: right;
  text-transform: uppercase;
}
#content .content-inner #articles-container #articles {
  float: left;
  width: 70%;
  border-left: 2px solid #000;
  box-sizing: border-box;
  padding: 30px;
}
#content .content-inner #articles-container #articles .list-of-pages {
  margin: 10px 0;
}
#content .content-inner #articles-container #articles .list-of-pages hr {
  display: none;
}
#content .content-inner #articles-container #articles .list-of-pages .numbers {
  text-align: center;
}
#content .content-inner #articles-container #articles .list-of-pages a {
  color: #000;
}
@media screen and (max-width: 991px) {
  #content .content-inner #articles-container #articles {
    border-left: 0;
    width: 100%;
    padding: 30px 0;
  }
}
@media screen and (max-width: 991px) {
  #content .content-inner #articles-container > div > h2 {
    padding: 30px 0 0 0;
    width: 100%;
    text-align: center;
    font-size: 2em;
  }
}
#content #photos-container {
  display: table;
  width: 100%;
  background: #000;
  overflow: hidden;
}
#content #photos-container #photo-album h2 {
  display: none;
}
#content #photos-container #photo-album #folders {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#content #photos-container #photo-album #folders .folder {
  width: calc(50% - 20px);
  margin: 10px;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 5px;
  float: left;
  color: #fff;
}
#content #photos-container #photo-album #folders .folder:nth-of-type(1) {
  width: 100%;
}
#content #photos-container #photo-album #folders .folder:nth-of-type(1) .folder-info h3 {
  background: transparent !important;
  text-align: right;
  padding-right: 30px;
  font-size: 2.5em;
  padding: 30px 30px 0 0;
  text-transform: uppercase;
}
#content #photos-container #photo-album #folders .folder:nth-of-type(1) .folder-info h3 a {
  color: #fff;
}
#content #photos-container #photo-album #folders .folder:nth-of-type(1) .folder-info > div {
  text-align: right;
  padding-right: 30px;
}
#content #photos-container #photo-album #folders .folder .photo-wrap {
  display: none;
}
#content #photos-container #photo-album #folders .folder .folder-info h3 {
  background-color: #ef7285;
  padding: 5px;
  margin: 5px 0;
  border-radius: 20px;
  font-size: 1.2em;
}
#content #photos-container #photo-album #folders .folder .folder-info a {
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 991px) {
  #content #photos-container #photo-album #folders .folder:nth-of-type(1) .folder-info h3 {
    text-align: center;
    font-size: 2em;
    padding-right: 0;
  }
  #content #photos-container #photo-album #folders .folder:nth-of-type(1) .folder-info > div {
    text-align: center;
    padding-right: 0;
  }
}
@media screen and (min-width: 1199px) {
  #content #photos-container #photo-album #folders {
    width: 30%;
  }
}
#content #photos-container #photo-album #photos {
  width: 100%;
  float: right;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#content #photos-container #photo-album #photos > h2 {
  width: 100%;
}
#content #photos-container #photo-album #photos #clear_photos {
  display: none;
}
#content #photos-container #photo-album #photos .photo-wrap {
  width: calc(100% / 3);
  height: 150px;
  text-align: center;
  box-sizing: border-box;
  float: left;
  overflow: hidden;
  transition: 0.5s all;
  position: relative;
}
#content #photos-container #photo-album #photos .photo-wrap:nth-of-type(1), #content #photos-container #photo-album #photos .photo-wrap:nth-of-type(2) {
  width: 50%;
  height: 300px;
}
#content #photos-container #photo-album #photos .photo-wrap:nth-of-type(1) img, #content #photos-container #photo-album #photos .photo-wrap:nth-of-type(2) img {
  height: 300px;
}
#content #photos-container #photo-album #photos .photo-wrap img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: 0.5s all;
}
#content #photos-container #photo-album #photos .photo-wrap:hover {
  transform: scale(1.1);
  z-index: 33;
}
#content #photos-container #photo-album #photos .photo-wrap:hover img {
  opacity: 1;
}
@media screen and (min-width: 1199px) {
  #content #photos-container #photo-album #photos {
    width: 70%;
  }
}
#content .slide-container {
  background-color: #000;
  width: 100%;
  float: left;
}
#content .slide-container #slide h2 {
  color: #fff;
  width: 100%;
  float: left;
  box-sizing: border-box;
  background: transparent;
  text-align: right;
  padding-right: 30px;
  font-size: 2.5em;
  padding: 30px 50px 0 0;
  text-transform: uppercase;
}
#content .slide-container #slide .slide-inner {
  float: left;
  width: 100%;
}
#content .slide-container #slide .slide-inner h3 {
  background-color: #ef7285;
  color: #fff;
  padding: 10px;
}
#content .slide-container #slide .slide-inner .slide-img {
  background: #fff;
  padding: 10px;
  text-align: center;
}
#content .slide-container #slide .slide-inner .slide-img #slide-img-width, #content .slide-container #slide .slide-inner .slide-img .slide.img.width {
  width: 100% !important;
  height: auto !important;
}
#content .slide-container #slide .slide-inner .slidenav, #content .slide-container #slide .slide-inner #timenav {
  background-color: #ef7285;
  color: #4b4b4b;
  padding: 10px;
}
#content .slide-container #slide .slide-inner .slidenav a, #content .slide-container #slide .slide-inner #timenav a {
  color: #fff;
  text-decoration: none;
}
#content .slide-container #slide .slide-inner .slidenav .back, #content .slide-container #slide .slide-inner #timenav .back, #content .slide-container #slide .slide-inner .slidenav .forward, #content .slide-container #slide .slide-inner #timenav .forward {
  display: inline-block;
}
#content .slide-container #slide .slide-inner .slidenav .back a, #content .slide-container #slide .slide-inner #timenav .back a, #content .slide-container #slide .slide-inner .slidenav .forward a, #content .slide-container #slide .slide-inner #timenav .forward a {
  margin-right: 10px;
}
#content .slide-container #slide .slide-inner #timenav {
  background-color: #fff;
}
#content .slide-container #slide .slide-inner #timenav a {
  color: #000;
}
#content .slide-container #slide .slide-inner #thumbnav {
  background: #fff;
  padding: 10px;
}
#content .slide-container #slide .slide-inner #thumbnav .wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#content .slide-container #slide .slide-inner #thumbnav .wrap .box {
  float: left;
}
#content .slide-container #slide .slide-inner .slidebar {
  background: rgba(255, 255, 255, 0.2);
  margin: 10px 0;
  padding: 10px;
  border-top: 5px solid #fff;
  border-bottom: 5px solid #fff;
}
#content .slide-container #slide .slide-inner div#fblikesend.facebook-send-empty {
  display: none;
}
@media screen and (min-width: 1199px) {
  #content .slide-container #slide h2 {
    width: 30%;
  }
  #content .slide-container #slide .slide-inner {
    width: 70%;
  }
}
#content #events, #content #event_archive {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 30px;
}
#content #events > h1, #content #event_archive > h1, #content #events > h2, #content #event_archive > h2, #content #events > h3, #content #event_archive > h3 {
  color: #000;
  padding: 10px 0;
  width: 100%;
}
#content #events .event-box, #content #event_archive .event-box {
  width: 100%;
  float: left;
}
#content #events .event-box .event-perex, #content #event_archive .event-box .event-perex {
  margin: 10px;
  background-color: #fff;
  padding-bottom: 10px;
}
#content #events .event-box .event-perex .event-perex-text h3, #content #event_archive .event-box .event-perex .event-perex-text h3 {
  background-color: #ef7285;
}
#content #events .event-box .event-perex .event-perex-text h3 a, #content #event_archive .event-box .event-perex .event-perex-text h3 a {
  color: #fff;
  padding: 5px 10px;
  display: block;
  text-decoration: none;
  transition: 0.3s all linear;
}
#content #events .event-box .event-perex .event-perex-text h3 a:hover, #content #event_archive .event-box .event-perex .event-perex-text h3 a:hover {
  background: #4b4b4b;
  padding: 5px 15px;
}
#content #events .event-box .event-perex .event-perex-text h3 a:after, #content #event_archive .event-box .event-perex .event-perex-text h3 a:after {
  content: ">";
  float: right;
}
#content #events .event-box .event-perex .event-perex-text .event-perex-info, #content #event_archive .event-box .event-perex .event-perex-text .event-perex-info {
  padding: 10px;
  color: #000;
}
#content #events .event-box .event-perex .event-perex-text .event-perex-info .event-perex-info-text, #content #event_archive .event-box .event-perex .event-perex-text .event-perex-info .event-perex-info-text {
  height: 52px;
  overflow-y: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px 5px;
}
#content #events .event-box .event-perex .event-perex-img, #content #event_archive .event-box .event-perex .event-perex-img {
  text-align: center;
  height: 200px;
  width: calc(100% - 20px);
  object-fit: contain;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin: 10px;
  box-sizing: border-box;
}
#content #events .event-box .event-perex .event-perex-img img, #content #event_archive .event-box .event-perex .event-perex-img img {
  height: 180px;
  width: auto;
  object-fit: contain;
  border-radius: 5px;
  box-sizing: border-box;
}
@media screen and (min-width: 480px) {
  #content #events .event-box, #content #event_archive .event-box {
    width: 50%;
  }
}
#content #event-detail {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 30px;
  padding-bottom: 30px;
}
#content #event-detail .image-container {
  height: 150px;
  width: 100%;
  text-align: center;
  background-color: #ef7285;
}
#content #event-detail .image-container .article_img {
  height: 150px;
  text-align: center;
  background-color: #ef7285;
}
#content #event-detail .image-container .article_img img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}
@media screen and (min-width: 991px) {
  #content #event-detail .image-container {
    height: 350px;
    width: 30%;
    float: left;
  }
  #content #event-detail .image-container .article_img {
    height: 350px;
  }
  #content #event-detail .image-container .article_img img {
    height: 350px;
  }
}
#content #event-detail .e-d-container {
  width: 100%;
  float: right;
}
#content #event-detail .e-d-container h2 {
  padding: 10px 0;
  width: 100%;
  box-sizing: border-box;
}
#content #event-detail .e-d-container .event-detail-info {
  width: 100%;
  float: left;
  background-color: #ef7285;
  color: #fff;
  padding: 10px;
  box-sizing: border-box;
}
#content #event-detail .e-d-container .event-detail-info span {
  display: inline-block;
}
#content #event-detail .e-d-container .event-detail-text {
  width: 100%;
  float: left;
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
}
@media screen and (min-width: 991px) {
  #content #event-detail .e-d-container {
    width: 70%;
  }
}
#content .modules {
  width: 100%;
  float: right;
}
#content .modules .modules-in {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
}
#content .modules .modules-in #languages .inner_frame img {
  margin: 5px;
}
#content .modules .modules-in hr {
  display: none;
}
#content .modules .modules-in .section {
  display: table;
  width: 100%;
  background: #ef7285;
}
#content .modules .modules-in .section h2 {
  float: left;
  width: 30%;
  background: transparent;
  text-align: right;
  font-size: 2.5em;
  padding: 30px 50px 0 0;
  text-transform: uppercase;
  box-sizing: border-box;
  position: relative;
  left: auto;
  top: auto;
  color: #fff;
}
#content .modules .modules-in .section .inner_frame {
  float: left;
  width: 70%;
  min-height: 170px;
  background: #fff;
  padding: 30px;
  box-sizing: border-box;
}
#content .modules .modules-in .section .inner_frame p {
  margin: 10px 0;
}
#content .modules .modules-in .section .inner_frame a {
  color: #000;
  font-weight: bold;
}
#content .modules .modules-in .section#stats .inner_frame {
  text-align: left;
}
#content .modules .modules-in .section#stats .inner_frame table {
  width: 100%;
  text-align: left;
  line-height: 1.7;
}
#content .modules .modules-in .section#stats .inner_frame table tfoot {
  color: #00c300;
}
#content .modules .modules-in .section#photo-album-nav a, #content .modules .modules-in .section#rss-nav a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #000;
  transition: 0.5s all;
}
#content .modules .modules-in .section#photo-album-nav a:hover, #content .modules .modules-in .section#rss-nav a:hover {
  text-decoration: none;
  background: #fff;
  color: #000;
  padding: 10px;
}
#content .modules .modules-in .section#photo-album-nav a:after, #content .modules .modules-in .section#rss-nav a:after {
  content: ">";
  float: right;
}
#content .modules .modules-in .section#calendar table {
  width: 100%;
  text-align: center;
}
#content .modules .modules-in .section#calendar table caption {
  display: none;
}
#content .modules .modules-in .section#calendar table tr#archive-month, #content .modules .modules-in .section#calendar table tr#archive-year {
  border: 1px solid #4b4b4b;
}
#content .modules .modules-in .section#calendar table tr#archive-month td, #content .modules .modules-in .section#calendar table tr#archive-year td {
  border: 0;
  text-transform: capitalize;
  font-size: 1.4em;
}
#content .modules .modules-in .section#calendar table tr td {
  border: 1px solid #4b4b4b;
}
#content .modules .modules-in .section#mail-list .inner_frame {
  text-align: center;
  background-color: #ef7285;
  border: 0;
}
#content .modules .modules-in .section#mail-list .inner_frame #mail-list-decoration {
  display: none;
}
#content .modules .modules-in .section#mail-list .inner_frame #mail-list-key {
  width: 100%;
  padding: 20px 5px;
  box-sizing: border-box;
  border: 0;
  border-radius: 20px;
}
#content .modules .modules-in .section#mail-list .inner_frame #mail-list-key:focus {
  outline: 0;
}
#content .modules .modules-in .section#mail-list .inner_frame #send-mail-list {
  padding: 10px 30px;
  border: 1px solid transparent;
  border-radius: 5px;
  margin: 20px 0 0 0;
  font-size: 16px;
  background-color: #fff;
  color: #000;
  cursor: pointer;
  transition: 0.5s all;
  border-bottom: 2px solid #f4f4f4;
}
#content .modules .modules-in .section#mail-list .inner_frame #send-mail-list:hover {
  color: #000;
}
#content .modules .modules-in .section#login form label {
  width: 50px;
  float: left;
}
#content .modules .modules-in .section#login form input {
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  margin: 5px 0;
  border: 1px solid #4b4b4b;
  border-radius: 5px;
}
#content .modules .modules-in .section#login form input.submit {
  float: right;
  padding: 10px;
  display: block;
  border: 0;
  background-color: #ccc;
  border-radius: 5px;
  font-weight: bold;
}
@media screen and (max-width: 991px) {
  #content .modules .modules-in .section h2 {
    padding: 30px 0;
    width: 100%;
    text-align: center;
    font-size: 2em;
  }
  #content .modules .modules-in .section .inner_frame {
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 10px;
  }
}
#content .detail_article {
  padding-top: 30px;
  padding-bottom: 30px;
}
#content .detail_article .image-container {
  height: 150px;
  width: 100%;
  text-align: center;
  background-color: #fff;
  background: url('https://s3b.esitex.com/img/d/1000000402/img1.png') center / cover no-repeat;
}
#content .detail_article .image-container .article_img {
  height: 150px;
  text-align: center;
  background-color: #ef7285;
}
#content .detail_article .image-container .article_img img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}
@media screen and (min-width: 991px) {
  #content .detail_article .image-container {
    height: 350px;
    width: 30%;
    float: left;
  }
  #content .detail_article .image-container .article_img {
    height: 350px;
  }
  #content .detail_article .image-container .article_img img {
    height: 350px;
  }
}
#content .detail_article .col-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#content .detail_article .col-container .col {
  float: left;
  padding: 20px;
  box-sizing: border-box;
}
#content .detail_article .col-container .col.col_lft {
  width: 100%;
  background-color: #ef7285;
  color: #fff;
}
#content .detail_article .col-container .col.col_lft span.article-date {
  display: block;
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  background-color: #fff;
  color: #000;
}
#content .detail_article .col-container .col.col_lft p {
  line-height: 1.4;
  font-weight: 100;
}
#content .detail_article .col-container .col.col_rgt {
  width: 100%;
  background-color: #fff;
  position: relative;
  top: 40px;
  padding-top: 10px;
}
#content #rss-channels {
  background: rgba(255, 255, 255, 0.8);
  padding-top: 30px;
}
#content #rss-channels h2 {
  margin: 10px 0;
}
#content #rss-channels h3 {
  margin: 10px 0;
}
#content #rss-channels a {
  color: #000;
  font-weight: bold;
  word-break: break-all;
}
#content #archive #folders {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#content #archive #folders #clear_folders {
  display: none;
}
#content #archive #folders .folder {
  width: 150px;
  margin: 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.4);
  padding: 10px;
  box-sizing: border-box;
  border-radius: 5px;
  float: left;
}
#content #archive #folders .folder .photo-wrap img {
  height: 100px;
  width: 128px;
  object-fit: contain;
}
#content #archive #folders .folder .folder-info h3 {
  background-color: #ef7285;
  padding: 5px;
  margin: 5px 0;
  border-radius: 5px;
  font-size: 1.2em;
}
#content #archive #folders .folder .folder-info a {
  color: #fff;
  text-decoration: none;
}
#contact-nav {
  display: table;
  width: 100%;
  background: #ef7285;
}
#contact-nav h2 {
  float: left;
  width: 30%;
  background: transparent;
  text-align: right;
  font-size: 2.5em;
  padding: 30px 50px 0 0;
  text-transform: uppercase;
  box-sizing: border-box;
  color: #fff;
}
#contact-nav .inner_frame {
  float: left;
  width: calc(70% - 60px);
  background: #fff;
  padding: 30px;
  border-radius: 0 0 10px 10px;
}
#contact-nav .inner_frame p {
  margin: 10px 0;
}
#contact-nav .inner_frame a {
  color: #000;
  font-weight: bold;
}
@media screen and (max-width: 991px) {
  #contact-nav h2 {
    padding: 30px 0;
    width: 100%;
    text-align: center;
    font-size: 2em;
  }
  #contact-nav .inner_frame {
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 10px;
  }
}
.footer {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  background-color: #ef7285;
  float: left;
  width: 100%;
}
.footer span {
  display: inline !important;
  margin-left: 5px;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  color: #000;
}
/* Comments */
#block-comments {
  border-top: 1px solid #E5E5E5;
  margin-top: 15px;
  padding-top: 30px;
}
#block-comments * {
    box-sizing: border-box;
}
#block-comments h2,
#block-comments &gt; h3 {
    margin-bottom: 40px;
}
#block-comments legend, #block-comments label {
  display: none;
}
#block-comments label {
  _display: block;
}
.ie9 #block-comments label, .ie8 #block-comments label {
  display: block;
}
#block-comments dl {
  margin: 0;
}
#block-comments dd {
  margin-left: 0;
}
#block-comments #validation-dt label {
  display: inline-block;
}
#block-comments #c_validation_div, #block-comments #c_validation {
  width: 240px;
}
#block-comments .sound-captcha {
  display: inline-block;
  margin-top: 3px;
}
#block-comments dd input, #block-comments dd textarea {
  width: 100%;
  padding: 10px 8px;
  margin: 3px 0;
  font-size: 0.929em;
  border: 1px solid #E5E5E5;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  outline: none;
}
#block-comments dd input:hover, #block-comments dd textarea:hover {
  border-color: #ef7285;
  outline: none;
}
#block-comments textarea {
  margin-bottom: 20px;
}
#block-comments .submit {
  padding: 10px 20px;
  background: #ef7285;
  border: 1px solid #ef7285;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
#block-comments .submit:hover {
  background: #f9d2d8;
  border-color: #f9d2d8;
  outline: none;
  color: #ef7285;
}
#block-comments h3 + div {
  border-top: 1px solid #E5E5E5;
}
#block-comments #comments-form {
  margin-bottom: 50px;
}
#block-comments .message {
  position: relative;
  margin: 10px 0;
  padding: 10px 20px 10px 12px;
  border-radius: 4px;
  font-weight: bold;
  border-left: 8px solid #e81e1e;
  background: #ffdddd;
  display: inline-block;
  font-size: .8em;
}
.comment {
  border-bottom: 1px solid #E5E5E5;
  padding: 20px 0;
}
.comment .commentWrap {
  border-left: 3px solid #ef7285;
  padding-left: 25px;
  border-radius: 4px;
}
.comment .commentWrap p {
  margin: 0 0 15px;
}
.comment h3 {
  font-size: 1em;
  margin: 0 0 20px;
}
.comment .comment-footer {
  font-size: 0.786em;
}
.comment .comment-footer .date {
  background: url(&quot;&lt;!--/ img_root /--&gt;date.png&quot;) 0 1px no-repeat;
  padding-left: 18px;
  margin-right: 20px;
}
.comment .comment-footer a {
  display: inline-block;
  color: #ef7285;
  text-decoration: none;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.comment .comment-footer a:hover {
    color: #484848;
}
/* comments level */
.level0 {
  background: #f9d2d8;
  border-left: 3px solid #ef7285;
  border-radius: 4px;
}
.level0 .commentWrap {
  border: none;
}
.level1 {
  margin-left: 20px;
}

.level2 {
  margin-left: 40px;
}

.level3 {
  margin-left: 60px;
}

.level4 {
  margin-left: 80px;
}

.level5 {
  margin-left: 100px;
}

.level6 {
  margin-left: 120px;
}

.level7 {
  margin-left: 140px;
}

.level8 {
  margin-left: 160px;
}

.level9 {
  margin-left: 180px;
}
/* end comments */
/* Fix nahledu fotek */
.box
{ display: inline-block; margin: 5px; }

#preview-folder
{ display: inline-block; }

.inner_frame p
{ display: inline-block; width: 30%; vertical-align: top; padding-right: 50px; text-align: right; }

.inner_frame
{ margin-top: 15px; }

@media screen and (max-width: 480px) {
.inner_frame p
{ width: 100%; text-align: center; }

}
