@font-face {
    font-family: 'Poppins';
    src: url('/static/korelis.cz/fonts/Poppins-Light.woff2?41fb968643b7') format('woff2'),
        url('/static/korelis.cz/fonts/Poppins-Light.woff?41fb968643b7') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/korelis.cz/fonts/Poppins-Thin.woff2?41fb968643b7') format('woff2'),
        url('/static/korelis.cz/fonts/Poppins-Thin.woff?41fb968643b7') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/korelis.cz/fonts/Poppins-Medium.woff2?41fb968643b7') format('woff2'),
        url('/static/korelis.cz/fonts/Poppins-Medium.woff?41fb968643b7') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/korelis.cz/fonts/Poppins-Regular.woff2?41fb968643b7') format('woff2'),
        url('/static/korelis.cz/fonts/Poppins-Regular.woff?41fb968643b7') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/korelis.cz/fonts/Poppins-SemiBold.woff2?41fb968643b7') format('woff2'),
        url('/static/korelis.cz/fonts/Poppins-SemiBold.woff?41fb968643b7') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/korelis.cz/fonts/Poppins-Bold.woff2?41fb968643b7') format('woff2'),
        url('/static/korelis.cz/fonts/Poppins-Bold.woff?41fb968643b7') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;

  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;

  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(/static/korelis.cz/images/loading.gif?41fb968643b7) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(/static/korelis.cz/images/prev.png?41fb968643b7) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(/static/korelis.cz/images/next.png?41fb968643b7) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(/static/korelis.cz/images/close.png?41fb968643b7) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

@charset "UTF-8";
/* line 1, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
* {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  box-sizing: border-box; }

/* line 2, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
body {
  line-height: normal; }

/* line 3, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal; }

/* line 4, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
ol, ul {
  list-style: none; }

/* line 5, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
blockquote {
  quotes: none; }

/* line 6, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
blockquote:before, blockquote:after {
  content: '';
  content: none; }

/* line 7, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
del {
  text-decoration: line-through; }

/* line 8, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/* line 9, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
a img {
  border: none;
  text-decoration: none; }

/* line 10, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
p {
  line-height: normal; }

/* line 11, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
p::after, ol::after, ul::after, dl::after, table::after, .P::after, h1::after, h2::after, h3::after, h4::after, h5::after, h6::after, .H1::after, .H2::after, .H3::after, .H4::after, .H5::after, .H6::after, p::before, ol::before, ul::before, dl::before, table::before, .P::before, h1::before, h2::before, h3::before, h4::before, h5::before, h6::before, .H1::before, .H2::before, .H3::before, .H4::before, .H5::before, .H6::before {
  display: block;
  content: ''; }

/* line 13, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
button, input, optgroup, option, select, textarea {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  -webkit-appearance: none;
  -webkit-border-radius: 0px; }

/* line 14, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
textarea {
  overflow: auto; }

/* line 15, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

/* line 16, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
caption, th {
  text-align: left; }

/* line 17, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
q:before, q:after {
  content: ''; }

/* line 18, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
fieldset, img {
  border: 0; }

/* line 19, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
ol, ul {
  list-style: none; }

/* line 20, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
dl::after {
  clear: both; }

/* line 21, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
dl dt {
  float: left; }

/* line 22, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
img, input, th, td {
  vertical-align: middle; }

/* line 23, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
.Clear::after {
  display: block;
  content: "";
  clear: both; }

/* line 24, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
.FloatLeft {
  float: left; }

/* line 25, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
.FloatRight {
  float: right; }

/* line 26, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
.TextLeft {
  text-align: left !important; }

/* line 27, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
.TextCenter {
  text-align: center !important; }

/* line 28, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
.TextRight {
  text-align: right !important; }

/* line 29, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
.TextJustify {
  text-align: justify !important; }

/* line 30, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
.Image {
  overflow: hidden;
  text-align: center; }

/* line 31, themes/korelis.cz/static/korelis.cz/scss/_universal.scss */
.Image img {
  max-width: 100%; }

/* line 3, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
.page-homepage h1 {
  font-size: 44px; }

/* line 7, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
.page-homepage::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='343' height='339.631' viewBox='0 0 343 339.631'%3E%3Cdefs%3E%3Cstyle%3E.a,.c%7Bfill:none;%7D.a%7Bstroke:%2379b51c;stroke-width:25px;%7D.b%7Bstroke:none;%7D%3C/style%3E%3C/defs%3E%3Cg transform='translate(-76.62 -302.8)'%3E%3Cg class='a' transform='translate(76.62 413.431)'%3E%3Ccircle class='b' cx='61' cy='61' r='61'/%3E%3Ccircle class='c' cx='61' cy='61' r='48.5'/%3E%3C/g%3E%3Cg class='a' transform='translate(297.621 413.431)'%3E%3Ccircle class='b' cx='61' cy='61' r='61'/%3E%3Ccircle class='c' cx='61' cy='61' r='48.5'/%3E%3C/g%3E%3Cg class='a' transform='translate(305.707 302.8) rotate(90)'%3E%3Ccircle class='b' cx='59.284' cy='59.284' r='59.284'/%3E%3Ccircle class='c' cx='59.284' cy='59.284' r='46.784'/%3E%3C/g%3E%3Cg class='a' transform='translate(305.707 523.863) rotate(90)'%3E%3Ccircle class='b' cx='59.284' cy='59.284' r='59.284'/%3E%3Ccircle class='c' cx='59.284' cy='59.284' r='46.784'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  width: 343px;
  height: 340px;
  background-repeat: no-repeat;
  position: absolute;
  top: 120%;
  left: -175px; }

/* line 18, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
.page-homepage::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='343' height='339.631' viewBox='0 0 343 339.631'%3E%3Cdefs%3E%3Cstyle%3E.a,.c%7Bfill:none;%7D.a%7Bstroke:%2379b51c;stroke-width:25px;%7D.b%7Bstroke:none;%7D%3C/style%3E%3C/defs%3E%3Cg transform='translate(-76.62 -302.8)'%3E%3Cg class='a' transform='translate(76.62 413.431)'%3E%3Ccircle class='b' cx='61' cy='61' r='61'/%3E%3Ccircle class='c' cx='61' cy='61' r='48.5'/%3E%3C/g%3E%3Cg class='a' transform='translate(297.621 413.431)'%3E%3Ccircle class='b' cx='61' cy='61' r='61'/%3E%3Ccircle class='c' cx='61' cy='61' r='48.5'/%3E%3C/g%3E%3Cg class='a' transform='translate(305.707 302.8) rotate(90)'%3E%3Ccircle class='b' cx='59.284' cy='59.284' r='59.284'/%3E%3Ccircle class='c' cx='59.284' cy='59.284' r='46.784'/%3E%3C/g%3E%3Cg class='a' transform='translate(305.707 523.863) rotate(90)'%3E%3Ccircle class='b' cx='59.284' cy='59.284' r='59.284'/%3E%3Ccircle class='c' cx='59.284' cy='59.284' r='46.784'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  width: 175px;
  height: 340px;
  background-repeat: no-repeat;
  position: absolute;
  top: 155%;
  right: 0px; }

/* line 30, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
.Menu {
  text-align: center; }
  /* line 33, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
  .Menu h2 {
    margin-bottom: 25px; }
  /* line 37, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
  .Menu .Items {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-bottom: 30px; }
    /* line 43, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
    .Menu .Items .Item {
      width: 32%;
      border-radius: 4px;
      padding: 30px;
      position: relative;
      text-align: left;
      margin-bottom: 23px;
      overflow: hidden; }
      /* line 52, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu .Items .Item .Inn {
        max-width: 178px;
        width: 100%;
        float: right; }
        /* line 57, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
        .Menu .Items .Item .Inn h3 {
          font-size: 25px;
          margin-bottom: 15px; }
          /* line 61, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
          .Menu .Items .Item .Inn h3 strong {
            font-weight: 600; }
      /* line 65, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu .Items .Item.Item_3 {
        background-color: #E2E2E2;
        background-image: url(/static/korelis.cz/images/_bg_designove-osvetleni.png?41fb968643b7);
        background-position: left top;
        background-repeat: no-repeat; }
      /* line 72, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu .Items .Item.Item_2 {
        background-color: #B5B5B5;
        background-image: url(/static/korelis.cz/images/_bg_prumyslove-osvetleni.png?41fb968643b7);
        background-position: left top;
        background-repeat: no-repeat; }
      /* line 79, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu .Items .Item.Item_1 {
        background-color: #C7E8FA;
        background-image: url(/static/korelis.cz/images/_bg_kancelarske-osvetleni.png?41fb968643b7);
        background-position: left top;
        background-repeat: no-repeat; }
      /* line 86, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu .Items .Item.Item_4 {
        background-color: #E8E1D0;
        background-image: url(/static/korelis.cz/images/_bg_verejne-osvetleni.png?d49ca6bbd14c);
        background-position: left bottom;
        background-repeat: no-repeat; }
      /* line 93, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu .Items .Item.Item_5 {
        background-color: #C7DAE1;
        background-image: url(/static/korelis.cz/images/_bg_projekce-a-poradenstvi.png?41fb968643b7);
        background-position: left 15px;
        background-repeat: no-repeat; }
      /* line 100, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu .Items .Item.Item_6 {
        background-color: #FFE4CE;
        background-image: url(/static/korelis.cz/images/_bg_elektromontaze-svitidel.png?41fb968643b7);
        background-position: left top;
        background-repeat: no-repeat; }
      /* line 107, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu .Items .Item.Item_7 {
        background-color: #ceffce;
        background-image: url(/static/korelis.cz/images/_bg_fve.png?0d9e6a848cad);
        background-position: left top;
        background-repeat: no-repeat; }
      /* line 113, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu .Items .Item.Item_8 {
        background-color: #cefff0; }
      /* line 116, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu .Items .Item.Item_9 {
        background-color: #ced3ff; }
      /* line 119, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu .Items .Item.Item_10 {
        background-color: #d4c6c6; }
      /* line 122, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu .Items .Item.Item_11 {
        background-color: #cee2ff; }
      /* line 125, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu .Items .Item.Item_12 {
        background-color: #a7a5bb; }
      /* line 128, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu .Items .Item.Item_13 {
        background-color: #cee9ff; }

/* line 136, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
.Menu_v2 {
  text-align: center; }
  /* line 139, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
  .Menu_v2 h2 {
    margin-bottom: 25px; }
  /* line 143, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
  .Menu_v2 .Items {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-bottom: 30px; }
    /* line 149, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
    .Menu_v2 .Items .Item {
      width: 32%;
      border-radius: 4px;
      padding: 30px 10px;
      position: relative;
      text-align: left;
      margin-bottom: 23px;
      overflow: hidden;
      background-image: none !important; }
      /* line 159, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v2 .Items .Item .Button.Black {
        background-color: #000;
        color: white; }
        /* line 162, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
        .Menu_v2 .Items .Item .Button.Black:hover {
          background-color: #79B51C; }
      @media (max-width: 451px) {
        /* line 168, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
        .Menu_v2 .Items .Item .Icon {
          width: 100%;
          float: none;
          text-align: center;
          margin-bottom: 15px; }
          /* line 173, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
          .Menu_v2 .Items .Item .Icon svg {
            margin-top: 25px;
            width: auto;
            height: 100px; }
        /* line 180, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
        .Menu_v2 .Items .Item .Inn {
          width: 100%;
          max-width: none !important;
          float: none;
          text-align: center; } }
      @media (min-width: 452px) {
        /* line 189, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
        .Menu_v2 .Items .Item .Icon {
          width: 45%;
          float: left;
          text-align: center; }
          /* line 193, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
          .Menu_v2 .Items .Item .Icon svg {
            margin-top: 25px;
            width: auto;
            height: 100px; }
        /* line 200, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
        .Menu_v2 .Items .Item .Inn {
          width: 55%;
          max-width: none;
          float: right; } }
      /* line 207, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v2 .Items .Item h3 {
        font-size: 25px;
        margin-bottom: 15px; }
        /* line 211, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
        .Menu_v2 .Items .Item h3 strong {
          font-weight: 600; }
      /* line 216, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v2 .Items .Item.Item:nth-child(odd) {
        background-color: #c9e1a4;
        /* Barva pro liché položky */ }
      /* line 220, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v2 .Items .Item.Item:nth-child(even) {
        background-color: #e4f0d2;
        /* Barva pro sudé položky */ }

/* line 227, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
.Menu_v3 {
  text-align: center; }
  /* line 230, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
  .Menu_v3 h2 {
    margin-bottom: 25px; }
  /* line 234, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
  .Menu_v3 .Items {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-bottom: 30px; }
    /* line 240, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
    .Menu_v3 .Items .Item {
      width: 32%;
      border-radius: 4px;
      padding: 30px 10px;
      position: relative;
      text-align: left;
      margin-bottom: 23px;
      overflow: hidden;
      background-image: none !important;
      display: flex;
      justify-content: center;
      /* Horizontální zarovnání na střed */
      align-items: center;
      /* Vertikální zarovnání na střed */
      text-decoration: none;
      color: black; }
      /* line 255, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v3 .Items .Item .Button.Black {
        background-color: #000;
        color: white; }
        /* line 258, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
        .Menu_v3 .Items .Item .Button.Black:hover {
          background-color: #f4f5f2; }
      /* line 263, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v3 .Items .Item .Icon {
        width: 45%;
        float: left;
        text-align: center; }
        /* line 267, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
        .Menu_v3 .Items .Item .Icon svg {
          width: auto;
          height: 100px; }
      /* line 273, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v3 .Items .Item .Inn {
        width: 55%;
        max-width: none;
        float: right; }
        /* line 278, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
        .Menu_v3 .Items .Item .Inn h3 {
          font-size: 25px;
          margin-bottom: 15px; }
          /* line 282, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
          .Menu_v3 .Items .Item .Inn h3 strong {
            font-weight: 600; }
      /* line 286, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v3 .Items .Item.Item:nth-child(odd) {
        background-color: #c9e1a4;
        /* Barva pro liché položky */ }
      /* line 290, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v3 .Items .Item.Item:nth-child(even) {
        background-color: #e4f0d2;
        /* Barva pro sudé položky */ }
      /* line 294, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v3 .Items .Item.Item:hover {
        background-color: #f4f5f2;
        text-decoration: underline; }

/* line 304, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
.Menu_v4 {
  text-align: center; }
  /* line 307, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
  .Menu_v4 h2 {
    margin-bottom: 25px; }
  /* line 311, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
  .Menu_v4 .Items {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-bottom: 30px; }
    /* line 317, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
    .Menu_v4 .Items .Item {
      width: 32%;
      border-radius: 4px;
      padding: 30px 10px;
      position: relative;
      text-align: left;
      margin-bottom: 23px;
      overflow: hidden;
      background-image: none !important; }
      /* line 327, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v4 .Items .Item .Button.Black {
        background-color: #000;
        color: white; }
        /* line 330, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
        .Menu_v4 .Items .Item .Button.Black:hover {
          background-color: #79B51C; }
      /* line 335, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v4 .Items .Item .Icon {
        width: 45%;
        float: left;
        text-align: center; }
        /* line 339, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
        .Menu_v4 .Items .Item .Icon svg {
          margin-top: 25px;
          width: auto;
          height: 100px; }
          /* line 343, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
          .Menu_v4 .Items .Item .Icon svg path {
            fill: rgba(0, 0, 0, 0.4) !important; }
      /* line 349, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v4 .Items .Item .Inn {
        width: 55%;
        max-width: none;
        float: right; }
        /* line 354, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
        .Menu_v4 .Items .Item .Inn h3 {
          font-size: 25px;
          margin-bottom: 15px; }
          /* line 358, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
          .Menu_v4 .Items .Item .Inn h3 strong {
            font-weight: 600; }
      /* line 363, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v4 .Items .Item.Item_3 {
        background-color: #E2E2E2;
        background-image: url(/static/korelis.cz/images/_bg_designove-osvetleni.png?41fb968643b7);
        background-position: left top;
        background-repeat: no-repeat; }
      /* line 370, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v4 .Items .Item.Item_2 {
        background-color: #B5B5B5;
        background-image: url(/static/korelis.cz/images/_bg_prumyslove-osvetleni.png?41fb968643b7);
        background-position: left top;
        background-repeat: no-repeat; }
      /* line 377, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v4 .Items .Item.Item_1 {
        background-color: #C7E8FA;
        background-image: url(/static/korelis.cz/images/_bg_kancelarske-osvetleni.png?41fb968643b7);
        background-position: left top;
        background-repeat: no-repeat; }
      /* line 384, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v4 .Items .Item.Item_4 {
        background-color: #E8E1D0;
        background-image: url(/static/korelis.cz/images/_bg_verejne-osvetleni.png?d49ca6bbd14c);
        background-position: left bottom;
        background-repeat: no-repeat; }
      /* line 391, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v4 .Items .Item.Item_5 {
        background-color: #C7DAE1;
        background-image: url(/static/korelis.cz/images/_bg_projekce-a-poradenstvi.png?41fb968643b7);
        background-position: left 15px;
        background-repeat: no-repeat; }
      /* line 398, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v4 .Items .Item.Item_6 {
        background-color: #FFE4CE;
        background-image: url(/static/korelis.cz/images/_bg_elektromontaze-svitidel.png?41fb968643b7);
        background-position: left top;
        background-repeat: no-repeat; }
      /* line 405, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v4 .Items .Item.Item_7 {
        background-color: #ceffce;
        background-image: url(/static/korelis.cz/images/_bg_fve.png?0d9e6a848cad);
        background-position: left top;
        background-repeat: no-repeat; }
      /* line 411, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v4 .Items .Item.Item_8 {
        background-color: #cefff0; }
      /* line 414, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v4 .Items .Item.Item_9 {
        background-color: #ced3ff; }
      /* line 417, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v4 .Items .Item.Item_10 {
        background-color: #d4c6c6; }
      /* line 420, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v4 .Items .Item.Item_11 {
        background-color: #cee2ff; }
      /* line 423, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v4 .Items .Item.Item_12 {
        background-color: #a7a5bb; }
      /* line 426, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
      .Menu_v4 .Items .Item.Item_13 {
        background-color: #cee9ff; }

/* line 436, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
.CustomerLogos .Slide {
  padding: 20px; }
  /* line 438, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
  .CustomerLogos .Slide img {
    height: auto;
    min-width: 100%;
    width: 100%;
    filter: gray;
    /* IE6-9 */
    -webkit-filter: grayscale(1);
    /* Google Chrome, Safari 6+ & Opera 15+ */
    filter: grayscale(1);
    /* Microsoft Edge and Firefox 35+ */
    opacity: 0.6;
    /* Disable grayscale on hover */ }
    /* line 448, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
    .CustomerLogos .Slide img:hover {
      -webkit-filter: grayscale(0);
      filter: none;
      opacity: 1; }

@media (max-width: 1850px) {
  /* line 458, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
  .page-homepage::after {
    display: none; }
  /* line 459, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
  .page-homepage::before {
    display: none; } }

@media (max-width: 1300px) {
  /* line 463, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
  .Menu .Items .Item.First {
    background-position: -75px top; }
  /* line 464, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
  .Menu .Items .Item.Second {
    background-position: -100px top; }
  /* line 465, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
  .Menu .Items .Item.Third {
    background-position: -75px top; }
  /* line 466, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
  .Menu .Items .Item.Fourth {
    background-position: -80px top; }
  /* line 467, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
  .Menu .Items .Item.Fifth {
    background-position: -85px 15px; }
  /* line 468, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
  .Menu .Items .Item.Sixth {
    background-position: -85px top; } }

@media (max-width: 999px) {
  /* line 472, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
  .Menu .Items .Item {
    width: 49%; } }

@media (max-width: 700px) {
  /* line 476, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
  .Menu .Items .Item {
    width: 100%; } }

@media (max-width: 450px) {
  /* line 480, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
  .Menu .Items .Item .Inn {
    max-width: 150px; } }

/* line 483, themes/korelis.cz/static/korelis.cz/scss/_homepage.scss */
.slick-initialized .slick-track {
  display: flex;
  align-items: center; }

/* line 3, themes/korelis.cz/static/korelis.cz/scss/_categorypage.scss */
.page-category::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='343' height='339.631' viewBox='0 0 343 339.631'%3E%3Cdefs%3E%3Cstyle%3E.a,.c%7Bfill:none;%7D.a%7Bstroke:%2379b51c;stroke-width:25px;%7D.b%7Bstroke:none;%7D%3C/style%3E%3C/defs%3E%3Cg transform='translate(-76.62 -302.8)'%3E%3Cg class='a' transform='translate(76.62 413.431)'%3E%3Ccircle class='b' cx='61' cy='61' r='61'/%3E%3Ccircle class='c' cx='61' cy='61' r='48.5'/%3E%3C/g%3E%3Cg class='a' transform='translate(297.621 413.431)'%3E%3Ccircle class='b' cx='61' cy='61' r='61'/%3E%3Ccircle class='c' cx='61' cy='61' r='48.5'/%3E%3C/g%3E%3Cg class='a' transform='translate(305.707 302.8) rotate(90)'%3E%3Ccircle class='b' cx='59.284' cy='59.284' r='59.284'/%3E%3Ccircle class='c' cx='59.284' cy='59.284' r='46.784'/%3E%3C/g%3E%3Cg class='a' transform='translate(305.707 523.863) rotate(90)'%3E%3Ccircle class='b' cx='59.284' cy='59.284' r='59.284'/%3E%3Ccircle class='c' cx='59.284' cy='59.284' r='46.784'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  width: 343px;
  height: 340px;
  background-repeat: no-repeat;
  position: absolute;
  top: 150%;
  left: -175px; }

/* line 14, themes/korelis.cz/static/korelis.cz/scss/_categorypage.scss */
.page-category::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='343' height='339.631' viewBox='0 0 343 339.631'%3E%3Cdefs%3E%3Cstyle%3E.a,.c%7Bfill:none;%7D.a%7Bstroke:%2379b51c;stroke-width:25px;%7D.b%7Bstroke:none;%7D%3C/style%3E%3C/defs%3E%3Cg transform='translate(-76.62 -302.8)'%3E%3Cg class='a' transform='translate(76.62 413.431)'%3E%3Ccircle class='b' cx='61' cy='61' r='61'/%3E%3Ccircle class='c' cx='61' cy='61' r='48.5'/%3E%3C/g%3E%3Cg class='a' transform='translate(297.621 413.431)'%3E%3Ccircle class='b' cx='61' cy='61' r='61'/%3E%3Ccircle class='c' cx='61' cy='61' r='48.5'/%3E%3C/g%3E%3Cg class='a' transform='translate(305.707 302.8) rotate(90)'%3E%3Ccircle class='b' cx='59.284' cy='59.284' r='59.284'/%3E%3Ccircle class='c' cx='59.284' cy='59.284' r='46.784'/%3E%3C/g%3E%3Cg class='a' transform='translate(305.707 523.863) rotate(90)'%3E%3Ccircle class='b' cx='59.284' cy='59.284' r='59.284'/%3E%3Ccircle class='c' cx='59.284' cy='59.284' r='46.784'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  width: 175px;
  height: 340px;
  background-repeat: no-repeat;
  position: absolute;
  top: 175%;
  right: 0px; }

/* line 26, themes/korelis.cz/static/korelis.cz/scss/_categorypage.scss */
.page-category .CategoryIcons .Items {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px; }
  /* line 31, themes/korelis.cz/static/korelis.cz/scss/_categorypage.scss */
  .page-category .CategoryIcons .Items .Item {
    width: 24.5%; }
    /* line 34, themes/korelis.cz/static/korelis.cz/scss/_categorypage.scss */
    .page-category .CategoryIcons .Items .Item .Icon {
      margin-bottom: 30px; }
    /* line 36, themes/korelis.cz/static/korelis.cz/scss/_categorypage.scss */
    .page-category .CategoryIcons .Items .Item .Title {
      font-size: 25px;
      font-weight: 500;
      max-width: 250px;
      margin-bottom: 15px; }
    /* line 43, themes/korelis.cz/static/korelis.cz/scss/_categorypage.scss */
    .page-category .CategoryIcons .Items .Item p {
      color: #919191;
      font-size: 16px; }

/* line 52, themes/korelis.cz/static/korelis.cz/scss/_categorypage.scss */
.Columns {
  margin-bottom: 80px; }
  /* line 55, themes/korelis.cz/static/korelis.cz/scss/_categorypage.scss */
  .Columns .Col-45 {
    font-size: 16px;
    font-weight: normal; }
    /* line 59, themes/korelis.cz/static/korelis.cz/scss/_categorypage.scss */
    .Columns .Col-45:first-of-type {
      font-weight: 500;
      font-size: 25px; }

@media (max-width: 1550px) {
  /* line 67, themes/korelis.cz/static/korelis.cz/scss/_categorypage.scss */
  .page-category::after {
    display: none; }
  /* line 68, themes/korelis.cz/static/korelis.cz/scss/_categorypage.scss */
  .page-category::before {
    display: none; } }

@media (max-width: 999px) {
  /* line 72, themes/korelis.cz/static/korelis.cz/scss/_categorypage.scss */
  .page-category .CategoryIcons .Items {
    flex-flow: row wrap; }
  /* line 73, themes/korelis.cz/static/korelis.cz/scss/_categorypage.scss */
  .page-category .CategoryIcons .Items .Item {
    width: 48%;
    padding: 0 10px;
    margin-bottom: 20px; }
  /* line 74, themes/korelis.cz/static/korelis.cz/scss/_categorypage.scss */
  .page-category .CategoryIcons .Items .Item .Title {
    font-size: 20px; }
  /* line 75, themes/korelis.cz/static/korelis.cz/scss/_categorypage.scss */
  .page-category .CategoryIcons .Items .Item .Icon {
    margin-bottom: 15px; } }

@media (max-width: 400px) {
  /* line 79, themes/korelis.cz/static/korelis.cz/scss/_categorypage.scss */
  .page-category .CategoryIcons .Items .Item {
    width: 100%; } }

/* line 3, themes/korelis.cz/static/korelis.cz/scss/_content.scss */
.TextContent a {
  color: #79B51C;
  font-weight: 500; }
  /* line 7, themes/korelis.cz/static/korelis.cz/scss/_content.scss */
  .TextContent a:hover {
    text-decoration: underline; }

/* line 3, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
.page-showroom.page-showroom-detail::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='343' height='339.631' viewBox='0 0 343 339.631'%3E%3Cdefs%3E%3Cstyle%3E.a,.c%7Bfill:none;%7D.a%7Bstroke:%23f5f5f5;stroke-width:25px;%7D.b%7Bstroke:none;%7D%3C/style%3E%3C/defs%3E%3Cg transform='translate(-76.62 -302.8)'%3E%3Cg class='a' transform='translate(76.62 413.431)'%3E%3Ccircle class='b' cx='61' cy='61' r='61'/%3E%3Ccircle class='c' cx='61' cy='61' r='48.5'/%3E%3C/g%3E%3Cg class='a' transform='translate(297.621 413.431)'%3E%3Ccircle class='b' cx='61' cy='61' r='61'/%3E%3Ccircle class='c' cx='61' cy='61' r='48.5'/%3E%3C/g%3E%3Cg class='a' transform='translate(305.707 302.8) rotate(90)'%3E%3Ccircle class='b' cx='59.284' cy='59.284' r='59.284'/%3E%3Ccircle class='c' cx='59.284' cy='59.284' r='46.784'/%3E%3C/g%3E%3Cg class='a' transform='translate(305.707 523.863) rotate(90)'%3E%3Ccircle class='b' cx='59.284' cy='59.284' r='59.284'/%3E%3Ccircle class='c' cx='59.284' cy='59.284' r='46.784'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  width: 343px;
  height: 340px;
  background-repeat: no-repeat;
  position: absolute;
  top: 90%;
  left: -175px; }

/* line 17, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
.page-showroom::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='343' height='339.631' viewBox='0 0 343 339.631'%3E%3Cdefs%3E%3Cstyle%3E.a,.c%7Bfill:none;%7D.a%7Bstroke:%2379b51c;stroke-width:25px;%7D.b%7Bstroke:none;%7D%3C/style%3E%3C/defs%3E%3Cg transform='translate(-76.62 -302.8)'%3E%3Cg class='a' transform='translate(76.62 413.431)'%3E%3Ccircle class='b' cx='61' cy='61' r='61'/%3E%3Ccircle class='c' cx='61' cy='61' r='48.5'/%3E%3C/g%3E%3Cg class='a' transform='translate(297.621 413.431)'%3E%3Ccircle class='b' cx='61' cy='61' r='61'/%3E%3Ccircle class='c' cx='61' cy='61' r='48.5'/%3E%3C/g%3E%3Cg class='a' transform='translate(305.707 302.8) rotate(90)'%3E%3Ccircle class='b' cx='59.284' cy='59.284' r='59.284'/%3E%3Ccircle class='c' cx='59.284' cy='59.284' r='46.784'/%3E%3C/g%3E%3Cg class='a' transform='translate(305.707 523.863) rotate(90)'%3E%3Ccircle class='b' cx='59.284' cy='59.284' r='59.284'/%3E%3Ccircle class='c' cx='59.284' cy='59.284' r='46.784'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  width: 343px;
  height: 340px;
  background-repeat: no-repeat;
  position: absolute;
  top: 150%;
  left: -175px; }

/* line 28, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
.page-showroom .Demand {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 15px; }

/* line 34, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
.page-showroom .Columns {
  margin-bottom: 80px; }
  /* line 37, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
  .page-showroom .Columns .Col-45 {
    font-size: 16px;
    font-weight: normal; }
    /* line 41, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
    .page-showroom .Columns .Col-45:first-of-type {
      font-weight: 500;
      font-size: 25px; }

/* line 49, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
.page-showroom .CategoryIcons .Items {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px; }
  /* line 54, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
  .page-showroom .CategoryIcons .Items .Item {
    width: 24.5%; }
    /* line 57, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
    .page-showroom .CategoryIcons .Items .Item .Icon {
      margin-bottom: 30px; }
    /* line 59, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
    .page-showroom .CategoryIcons .Items .Item .Title {
      font-size: 25px;
      font-weight: 500;
      max-width: 250px;
      margin-bottom: 15px; }
    /* line 66, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
    .page-showroom .CategoryIcons .Items .Item p {
      color: #919191;
      font-size: 16px; }

/* line 75, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
.page-showroom .Showrooms .Items {
  display: flex;
  justify-content: center; }
  /* line 79, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
  .page-showroom .Showrooms .Items .Item {
    max-width: 480px;
    width: 100%;
    margin: 0 15px 15px 15px;
    border: 1px solid #DFDFDF; }
    /* line 85, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
    .page-showroom .Showrooms .Items .Item .Name {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 20px; }
    /* line 91, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
    .page-showroom .Showrooms .Items .Item p {
      font-size: 16px;
      margin-bottom: 20px; }
    /* line 96, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
    .page-showroom .Showrooms .Items .Item .Opening {
      font-size: 16px;
      margin-bottom: 20px; }
    /* line 101, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
    .page-showroom .Showrooms .Items .Item .Button {
      max-width: 260px;
      width: 100%;
      text-align: center; }
    /* line 107, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
    .page-showroom .Showrooms .Items .Item .Inn {
      margin: 50px; }

/* line 116, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
.ShowroomHeader h2 {
  font-size: 41px;
  font-weight: 500;
  margin-bottom: 20px; }

/* line 122, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
.ShowroomHeader p {
  font-size: 16px;
  margin-bottom: 35px;
  color: #505050; }

/* line 129, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
.QuickInfo {
  display: flex;
  justify-content: space-between;
  margin-top: 65px;
  border-bottom: 1px solid #E2E2E2;
  padding-bottom: 25px;
  margin-bottom: 20px; }
  /* line 137, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
  .QuickInfo .Item {
    width: 32%;
    display: flex;
    align-items: flex-start;
    font-size: 16px; }
    /* line 143, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
    .QuickInfo .Item .Heading {
      font-weight: 600;
      font-size: 13px;
      text-transform: uppercase;
      margin-bottom: 8px; }
    /* line 151, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
    .QuickInfo .Item p strong {
      font-weight: 500; }
    /* line 154, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
    .QuickInfo .Item a {
      color: #79B51C;
      text-decoration: none;
      display: block; }
      /* line 159, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
      .QuickInfo .Item a:hover {
        text-decoration: underline; }
    /* line 164, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
    .QuickInfo .Item .Icon {
      margin-right: 25px; }

@media (max-width: 1570px) {
  /* line 172, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
  .page-showroom.page-showroom-detail::after {
    display: none; } }

@media (max-width: 1320px) {
  /* line 176, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
  .page-showroom::after {
    display: none; } }

@media (max-width: 700px) {
  /* line 180, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
  .QuickInfo {
    flex-flow: row wrap; }
  /* line 181, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
  .QuickInfo .Item {
    width: 49%;
    margin-bottom: 30px; }
  /* line 183, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
  .page-showroom .Showrooms .Items .Item .Inn {
    margin: 25px; } }

@media (max-width: 540px) {
  /* line 188, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
  .page-showroom .Showrooms .Items .Item {
    max-width: 100%;
    margin: 0 0 25px 0; }
  /* line 189, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
  .page-showroom .Showrooms .Items {
    flex-flow: row wrap; } }

@media (max-width: 500px) {
  /* line 193, themes/korelis.cz/static/korelis.cz/scss/_showroompage.scss */
  .QuickInfo .Item {
    width: 100%; } }

/* line 2, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
.page-contact::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='343' height='339.631' viewBox='0 0 343 339.631'%3E%3Cdefs%3E%3Cstyle%3E.a,.c%7Bfill:none;%7D.a%7Bstroke:%23f5f5f5;stroke-width:25px;%7D.b%7Bstroke:none;%7D%3C/style%3E%3C/defs%3E%3Cg transform='translate(-76.62 -302.8)'%3E%3Cg class='a' transform='translate(76.62 413.431)'%3E%3Ccircle class='b' cx='61' cy='61' r='61'/%3E%3Ccircle class='c' cx='61' cy='61' r='48.5'/%3E%3C/g%3E%3Cg class='a' transform='translate(297.621 413.431)'%3E%3Ccircle class='b' cx='61' cy='61' r='61'/%3E%3Ccircle class='c' cx='61' cy='61' r='48.5'/%3E%3C/g%3E%3Cg class='a' transform='translate(305.707 302.8) rotate(90)'%3E%3Ccircle class='b' cx='59.284' cy='59.284' r='59.284'/%3E%3Ccircle class='c' cx='59.284' cy='59.284' r='46.784'/%3E%3C/g%3E%3Cg class='a' transform='translate(305.707 523.863) rotate(90)'%3E%3Ccircle class='b' cx='59.284' cy='59.284' r='59.284'/%3E%3Ccircle class='c' cx='59.284' cy='59.284' r='46.784'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  width: 343px;
  height: 340px;
  background-repeat: no-repeat;
  position: absolute;
  top: 90%;
  left: -175px; }

/* line 13, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
.page-contact .QuickInfo {
  margin-top: 40px; }

/* line 17, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
.page-contact .Demand {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 15px; }

/* line 24, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
.MainContacts {
  border-bottom: 1px solid #E2E2E2; }
  /* line 27, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
  .MainContacts .Items {
    display: flex;
    flex-flow: row wrap;
    padding: 40px 0 30px 0; }
    /* line 32, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
    .MainContacts .Items .Item {
      width: 33%;
      margin-bottom: 52px; }
      /* line 36, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
      .MainContacts .Items .Item .Post {
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 5px; }
      /* line 43, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
      .MainContacts .Items .Item .SubPost {
        font-size: 16px;
        color: #888888;
        margin-bottom: 25px; }
      /* line 49, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
      .MainContacts .Items .Item .Info {
        font-size: 16px; }
        /* line 52, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
        .MainContacts .Items .Item .Info strong {
          font-weight: 600; }
        /* line 54, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
        .MainContacts .Items .Item .Info a {
          display: block;
          color: #79B51C;
          text-decoration: none; }
          /* line 59, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
          .MainContacts .Items .Item .Info a:hover {
            text-decoration: underline; }
      /* line 65, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
      .MainContacts .Items .Item .Image {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        margin-bottom: 20px; }
        /* line 71, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
        .MainContacts .Items .Item .Image img {
          object-fit: cover;
          height: 100%;
          width: 100%; }

/* line 81, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
.Showroom-pick {
  padding: 35px 0 20px 0; }
  /* line 84, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
  .Showroom-pick h2 {
    margin-bottom: 25px; }
  /* line 88, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
  .Showroom-pick .Items {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between; }
    /* line 93, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
    .Showroom-pick .Items .Item {
      width: 48.5%;
      text-align: center;
      min-height: 215px;
      text-decoration: none;
      border-radius: 4px;
      background-size: cover;
      position: relative;
      padding: 0 10px; }
      /* line 104, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
      .Showroom-pick .Items .Item:hover::after {
        background: rgba(0, 0, 0, 0.5); }
      /* line 109, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
      .Showroom-pick .Items .Item::after {
        content: "";
        background: rgba(0, 0, 0, 0.4);
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        position: absolute;
        z-index: 0;
        border-radius: 4px;
        transition: background 0.3s; }
      /* line 122, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
      .Showroom-pick .Items .Item .Icon {
        background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54'%3E%3Cg transform='translate(-365 -1024)'%3E%3Crect fill='%2379B51C' width='54' height='54' rx='16' transform='translate(365 1024)'/%3E%3Cpath fill='none' stroke='%23fff' stroke-linejoin='round' stroke-width='2px' d='M507.762,692.39v12.89a.417.417,0,0,1-.465.394h-5.911v-6.908H495.01v6.908H489.1a.418.418,0,0,1-.467-.394V692.088l9.564-8.731,9.566,8.971Z' transform='translate(-105.678 355.654)'/%3E%3C/g%3E%3C/svg%3E");
        width: 54px;
        height: 54px;
        margin: 45px auto 10px auto;
        position: relative;
        z-index: 1; }
      /* line 131, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
      .Showroom-pick .Items .Item .Title {
        color: #fff;
        font-weight: 600;
        font-size: 24px;
        position: relative;
        z-index: 1; }

@media (max-width: 1550px) {
  /* line 144, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
  .page-contact::after {
    display: none; } }

@media (max-width: 1500px) {
  /* line 148, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
  .ContactForm::after {
    display: none; } }

@media (max-width: 750px) {
  /* line 153, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
  .MainContacts .Items .Item {
    width: 49%;
    padding: 0 10px; } }

@media (max-width: 450px) {
  /* line 157, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
  .MainContacts .Items .Item {
    width: 100%;
    text-align: center; }
  /* line 158, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
  .MainContacts .Items .Item .Image {
    margin: 0 auto 20px auto; }
  /* line 160, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
  .MainContacts h2 {
    text-align: center; }
  /* line 162, themes/korelis.cz/static/korelis.cz/scss/_contact.scss */
  .Showroom-pick .Items .Item {
    width: 100%;
    margin-bottom: 20px; } }

/* line 1, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
.Subscribe {
  height: 470px;
  position: relative; }
  /* line 5, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .Subscribe .Right {
    background: url(/static/korelis.cz/images/_bg_subs.png?12e340201fac) center center no-repeat;
    background-size: cover;
    max-width: 850px;
    width: 100%;
    height: 470px;
    float: right; }
    /* line 13, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
    .Subscribe .Right form {
      max-width: 382px;
      width: 100%;
      margin: auto;
      position: relative;
      top: 45%;
      transform: translateY(-50%); }
      /* line 21, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
      .Subscribe .Right form .Row {
        margin-top: 25px; }
        /* line 24, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
        .Subscribe .Right form .Row button {
          max-width: 180px;
          width: 100%; }
        /* line 29, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
        .Subscribe .Right form .Row .AltCont {
          max-width: 167px;
          width: 100%;
          color: #fff;
          font-size: 16px; }
          /* line 35, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
          .Subscribe .Right form .Row .AltCont a {
            font-weight: 600;
            color: #fff;
            font-size: 24px;
            text-decoration: none;
            margin-top: 10px; }
            /* line 42, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
            .Subscribe .Right form .Row .AltCont a:hover {
              color: #79B51C; }
  /* line 51, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .Subscribe .Left {
    background: #F5FFE5;
    padding: 65px;
    width: 100%;
    max-width: 680px;
    position: absolute;
    left: 0;
    top: 45%;
    transform: translateY(-50%); }
    /* line 61, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
    .Subscribe .Left h3 {
      font-size: 34px;
      font-weight: 500;
      margin-bottom: 20px;
      line-height: 48px; }
    /* line 68, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
    .Subscribe .Left p {
      color: #858585;
      font-size: 19px; }
      /* line 72, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
      .Subscribe .Left p a {
        color: #79B51C; }
        /* line 75, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
        .Subscribe .Left p a:hover {
          text-decoration: none; }

/* line 81, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
.Demand {
  padding: 55px 15px;
  text-align: center;
  border-top: 1px solid #E2E2E2;
  border-bottom: 1px solid #E2E2E2;
  margin: 80px 0 50px 0;
  position: relative; }
  /* line 89, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .Demand::before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='59' height='58.375' viewBox='0 0 59 58.375'%3E%3Cdefs%3E%3Cstyle%3E.a,.c%7Bfill:none;%7D.a%7Bstroke:%23dfdfdf;stroke-width:5px;%7D.b%7Bstroke:none;%7D%3C/style%3E%3C/defs%3E%3Cg transform='translate(-76.544 -302.8)'%3E%3Cg class='a' transform='translate(76.543 321.803)'%3E%3Ccircle class='b' cx='10.5' cy='10.5' r='10.5'/%3E%3Ccircle class='c' cx='10.5' cy='10.5' r='8'/%3E%3C/g%3E%3Cg class='a' transform='translate(114.544 321.803)'%3E%3Ccircle class='b' cx='10.5' cy='10.5' r='10.5'/%3E%3Ccircle class='c' cx='10.5' cy='10.5' r='8'/%3E%3C/g%3E%3Cg class='a' transform='translate(115.941 302.8) rotate(90)'%3E%3Ccircle class='b' cx='10.19' cy='10.19' r='10.19'/%3E%3Ccircle class='c' cx='10.19' cy='10.19' r='7.69'/%3E%3C/g%3E%3Cg class='a' transform='translate(115.941 340.796) rotate(90)'%3E%3Ccircle class='b' cx='10.19' cy='10.19' r='10.19'/%3E%3Ccircle class='c' cx='10.19' cy='10.19' r='7.69'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    width: 110px;
    height: 60px;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -30px;
    background-color: #fff;
    padding: 0 25px; }
  /* line 106, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .Demand h3 {
    font-size: 25px;
    font-weight: 500;
    margin: 0 auto 30px auto;
    max-width: 520px; }
  /* line 113, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .Demand p {
    color: #919191;
    margin-top: 25px;
    font-size: 15px; }

/* line 120, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
.ContactForm {
  margin: 100px 0 60px 0;
  position: relative; }
  /* line 124, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .ContactForm::after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='343' height='339.631' viewBox='0 0 343 339.631'%3E%3Cdefs%3E%3Cstyle%3E.a,.c%7Bfill:none;%7D.a%7Bstroke:%2379b51c;stroke-width:25px;%7D.b%7Bstroke:none;%7D%3C/style%3E%3C/defs%3E%3Cg transform='translate(-76.62 -302.8)'%3E%3Cg class='a' transform='translate(76.62 413.431)'%3E%3Ccircle class='b' cx='61' cy='61' r='61'/%3E%3Ccircle class='c' cx='61' cy='61' r='48.5'/%3E%3C/g%3E%3Cg class='a' transform='translate(297.621 413.431)'%3E%3Ccircle class='b' cx='61' cy='61' r='61'/%3E%3Ccircle class='c' cx='61' cy='61' r='48.5'/%3E%3C/g%3E%3Cg class='a' transform='translate(305.707 302.8) rotate(90)'%3E%3Ccircle class='b' cx='59.284' cy='59.284' r='59.284'/%3E%3Ccircle class='c' cx='59.284' cy='59.284' r='46.784'/%3E%3C/g%3E%3Cg class='a' transform='translate(305.707 523.863) rotate(90)'%3E%3Ccircle class='b' cx='59.284' cy='59.284' r='59.284'/%3E%3Ccircle class='c' cx='59.284' cy='59.284' r='46.784'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    width: 175px;
    height: 340px;
    background-repeat: no-repeat;
    position: absolute;
    top: 70px;
    right: 0px; }
  /* line 135, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .ContactForm .Container {
    display: flex;
    justify-content: space-between; }
  /* line 140, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .ContactForm form {
    max-width: 584px;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between; }
    /* line 147, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
    .ContactForm form label {
      font-size: 16px;
      padding-bottom: 5px;
      display: block; }
    /* line 153, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
    .ContactForm form .Item {
      width: 100%;
      margin-bottom: 20px; }
      /* line 157, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
      .ContactForm form .Item:nth-of-type(2) {
        width: 48%; }
      /* line 161, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
      .ContactForm form .Item:nth-of-type(3) {
        width: 48%; }
      /* line 165, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
      .ContactForm form .Item textarea {
        margin-bottom: 15px; }
    /* line 168, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
    .ContactForm form .Button {
      max-width: 200px;
      text-align: center;
      width: 100%; }
  /* line 175, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .ContactForm .Right {
    max-width: 505px;
    width: 100%; }
    /* line 179, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
    .ContactForm .Right .QuickInfo {
      border-bottom: 0; }
      /* line 182, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
      .ContactForm .Right .QuickInfo .Item {
        width: 100%; }
    /* line 187, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
    .ContactForm .Right .Title {
      font-size: 41px;
      font-weight: 500;
      margin-bottom: 30px; }
    /* line 193, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
    .ContactForm .Right p {
      font-size: 16px; }

@media (max-width: 1330px) {
  /* line 200, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .Subscribe .Left {
    max-width: 530px; } }

@media (max-width: 1185px) {
  /* line 204, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .Subscribe {
    height: auto; }
  /* line 205, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .Subscribe .Left {
    position: initial;
    top: initial;
    transform: initial;
    max-width: 100%;
    padding: 30px;
    margin-bottom: 10px; }
  /* line 206, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .Subscribe .Left h3 {
    font-size: 25px;
    line-height: 38px;
    margin-bottom: 10px; }
  /* line 207, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .Subscribe .Left p {
    font-size: 16px; }
  /* line 208, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .Subscribe .Right {
    height: auto;
    max-width: 100%;
    float: none;
    padding: 30px 15px; }
  /* line 209, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .Subscribe .Right form {
    position: initial;
    top: initial;
    transform: initial; } }

@media (max-width: 1150px) {
  /* line 213, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .ContactForm .Right {
    max-width: 350px; } }

@media (max-width: 999px) {
  /* line 217, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .ContactForm .Container {
    flex-flow: row wrap; }
  /* line 218, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .ContactForm .Right {
    order: 0;
    max-width: 100%; }
  /* line 219, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .ContactForm form {
    order: 1;
    max-width: 100%; }
  /* line 220, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .ContactForm .QuickInfo .Item {
    margin-bottom: 0; }
  /* line 221, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .ContactForm .QuickInfo {
    padding-bottom: 0;
    margin-top: 25px; } }

@media (max-width: 430px) {
  /* line 225, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .Subscribe .Right form .Row .AltCont {
    max-width: 100%;
    text-align: center;
    padding-top: 10px; }
  /* line 226, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .Subscribe .Right form .Row button {
    max-width: 100%; }
  /* line 228, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .ContactForm form .Item:nth-of-type(3) {
    width: 100%; }
  /* line 229, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .ContactForm form .Item:nth-of-type(2) {
    width: 100%; }
  /* line 231, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .ContactForm .Right .Title {
    font-size: 35px; }
  /* line 233, themes/korelis.cz/static/korelis.cz/scss/_subscribe.scss */
  .ContactForm {
    margin: 50px 0; } }

/* line 1, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
.SnippetBlog {
  margin-bottom: 80px; }
  /* line 4, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
  .SnippetBlog .Items {
    display: flex;
    flex-flow: row wrap; }
    /* line 8, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
    .SnippetBlog .Items .Item {
      width: 24%;
      margin-right: auto; }
      /* line 12, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
      .SnippetBlog .Items .Item .Button {
        max-width: 232px; }
        /* line 15, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
        .SnippetBlog .Items .Item .Button:hover {
          background: #d5d5d5;
          color: #000; }
      /* line 21, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
      .SnippetBlog .Items .Item h3 {
        font-size: 25px;
        font-weight: 500;
        margin-bottom: 25px; }
      /* line 27, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
      .SnippetBlog .Items .Item p {
        font-size: 16px;
        margin-bottom: 65px; }
      /* line 32, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
      .SnippetBlog .Items .Item .Image {
        margin-bottom: 30px; }
      /* line 36, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
      .SnippetBlog .Items .Item a:not(.Button) {
        color: #000;
        font-size: 16px;
        padding-right: 20px;
        display: block; }
        /* line 42, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
        .SnippetBlog .Items .Item a:not(.Button):hover {
          text-decoration: none; }
      /* line 47, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
      .SnippetBlog .Items .Item:first-of-type {
        padding-right: 20px; }
      /* line 49, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
      .SnippetBlog .Items .Item:last-of-type {
        margin-right: 0; }

/* line 56, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
.Blog .Items {
  justify-content: center; }
  /* line 59, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
  .Blog .Items .Item {
    width: 58%;
    margin: 0 21% 120px; }
    /* line 62, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
    .Blog .Items .Item:first-of-type {
      padding-right: 0px; }
    /* line 64, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
    .Blog .Items .Item:last-of-type {
      margin-right: 21%; }
    /* line 67, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
    .Blog .Items .Item p {
      margin-bottom: 45px; }

/* line 71, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
.Blog .Perex {
  font-size: 18px;
  font-style: italic;
  color: #333;
  margin-top: 35px; }

/* line 78, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
.Blog .Content h2 {
  margin-bottom: 1.5rem;
  margin-top: 3rem; }

/* line 82, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
.Blog .Content p {
  margin-bottom: 1rem;
  margin-top: 1rem; }

/* line 86, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
.Blog .Content ul {
  margin-bottom: 1rem;
  margin-top: 1rem;
  margin-left: 2.5rem;
  list-style-type: square; }
  /* line 91, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
  .Blog .Content ul li {
    margin-bottom: 1rem;
    margin-top: 1rem; }

@media (max-width: 999px) {
  /* line 99, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
  .SnippetBlog .Items .Item:first-of-type {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px; }
  /* line 100, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
  .SnippetBlog .Items .Item p {
    margin-bottom: 30px; }
  /* line 101, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
  .SnippetBlog .Items .Item {
    width: 30%; }
  /* line 102, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
  .Blog .Items .Item {
    width: 58%; } }

@media (max-width: 600px) {
  /* line 106, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
  .SnippetBlog .Items .Item {
    width: 100%;
    margin-bottom: 25px;
    text-align: center; }
  /* line 107, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
  .SnippetBlog .Items .Item a:not(.Button) {
    padding-right: 0; }
  /* line 108, themes/korelis.cz/static/korelis.cz/scss/_blog.scss */
  .SnippetBlog {
    margin-bottom: 20px; } }

/* line 1, themes/korelis.cz/static/korelis.cz/scss/_preview.scss */
.Preview {
  padding: 70px 0;
  color: #fff;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 27px;
  overflow: hidden; }
  /* line 11, themes/korelis.cz/static/korelis.cz/scss/_preview.scss */
  .Preview.Without {
    padding: 120px 0; }
  /* line 15, themes/korelis.cz/static/korelis.cz/scss/_preview.scss */
  .page-homepage .Preview {
    padding: 120px 0; }
    /* line 18, themes/korelis.cz/static/korelis.cz/scss/_preview.scss */
    .page-homepage .Preview .Container {
      text-align: left; }
  /* line 23, themes/korelis.cz/static/korelis.cz/scss/_preview.scss */
  .Preview .Container {
    position: relative;
    z-index: 5;
    text-align: center; }
  /* line 29, themes/korelis.cz/static/korelis.cz/scss/_preview.scss */
  .Preview::after {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 0; }
  /* line 39, themes/korelis.cz/static/korelis.cz/scss/_preview.scss */
  .Preview.NoDarkOverlay::after {
    content: "";
    background: rgba(0, 0, 0, 0);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 0; }
  /* line 52, themes/korelis.cz/static/korelis.cz/scss/_preview.scss */
  .Preview .Subtitle {
    margin-bottom: 45px;
    font-size: 25px;
    font-weight: 500; }
  /* line 58, themes/korelis.cz/static/korelis.cz/scss/_preview.scss */
  .Preview .Eclipses_1 {
    background: url(/static/korelis.cz/images/_asset_eclipse1.svg?41fb968643b7);
    width: 226px;
    height: 171px;
    position: absolute;
    left: 50px;
    bottom: 0; }
  /* line 67, themes/korelis.cz/static/korelis.cz/scss/_preview.scss */
  .Preview .Eclipses_2 {
    background: url(/static/korelis.cz/images/_asset_eclipse2.svg?41fb968643b7);
    width: 210px;
    height: 420px;
    position: absolute;
    left: 0px;
    bottom: 0; }

@media (max-width: 999px) {
  /* line 78, themes/korelis.cz/static/korelis.cz/scss/_preview.scss */
  .page-homepage .Preview {
    padding: 40px 0; } }

/* line 1, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
.References {
  text-align: center; }
  /* line 4, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
  .References .Button.More {
    position: relative;
    top: -60px;
    max-width: 260px;
    text-align: center;
    width: 100%; }
  /* line 13, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
  .References .Nav ul {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    flex-flow: row wrap; }
    /* line 19, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
    .References .Nav ul li {
      margin-bottom: 10px; }
      /* line 22, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
      .References .Nav ul li a {
        margin: 0 6px; }
  /* line 29, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
  .References .Gallery {
    margin-top: 45px;
    display: flex;
    flex-flow: row wrap;
    margin-bottom: -30px; }
    /* line 35, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
    .References .Gallery.block {
      display: none; }
    /* line 39, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
    .References .Gallery .Image {
      margin-bottom: 30px;
      width: 375px;
      margin: 0 14px 25px 14px;
      height: 445px;
      border-radius: 4px; }
      /* line 46, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
      .References .Gallery .Image:nth-of-type(2) {
        margin-top: 0 !important;
        height: 335px !important; }
      /* line 53, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
      .References .Gallery .Image:nth-of-type(6n + 2) {
        height: 445px;
        margin-top: -110px; }
      /* line 58, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
      .References .Gallery .Image:nth-of-type(6n + 5) {
        margin-top: -110px; }
  /* line 64, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
  .References .GalleryLinks {
    display: flex;
    flex-flow: row wrap;
    margin-top: 45px; }
    /* line 68, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
    .References .GalleryLinks .Item {
      border-radius: 4px;
      width: 47.6%;
      margin: 0 1.2% 25px 1.2%;
      position: relative;
      color: white;
      text-decoration: none;
      font-size: 18px;
      /*
      &:nth-child(3n) {
        width:97.6%;

        img {
          width:100%;
          height:340px;
          overflow:hidden;
        }
      }
      */ }
      /* line 76, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
      .References .GalleryLinks .Item img {
        max-width: 100%;
        display: block;
        height: auto;
        border-radius: 4px; }
      /* line 82, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
      .References .GalleryLinks .Item .Fill {
        position: absolute;
        width: 100%;
        left: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.45);
        vertical-align: middle;
        text-align: center;
        padding: 25px;
        border-radius: 0 0 4px 4px; }
      /* line 94, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
      .References .GalleryLinks .Item:hover .Fill {
        background: #79B51C; }

/* line 115, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
.SmallerGallery {
  margin-bottom: 40px; }
  /* line 118, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
  .SmallerGallery h2 {
    margin-bottom: 20px; }
  /* line 122, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
  .SmallerGallery .Items {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    margin-bottom: 35px; }
    /* line 129, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
    .SmallerGallery .Items .Image {
      width: 32%;
      padding-bottom: 20px; }
      /* line 132, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
      .SmallerGallery .Items .Image img {
        border-radius: 4px; }

/* line 141, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
.Places .Nav ul {
  margin-top: 25px;
  display: flex;
  justify-content: left;
  flex-flow: row wrap; }
  /* line 147, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
  .Places .Nav ul li {
    margin-bottom: 10px; }
    /* line 150, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
    .Places .Nav ul li a {
      margin: 0 6px;
      color: black;
      text-decoration: uderline; }

/* line 164, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
.GalleryMixer .Image:nth-of-type(3n + 2) {
  margin-top: 0 !important;
  height: 335px !important; }

/* line 171, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
.GalleryMixer .Image:nth-of-type(6n + 2) {
  height: 445px;
  margin-top: 0px; }

/* line 176, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
.GalleryMixer .Image:nth-of-type(6n + 5) {
  margin-top: 0px; }

@media (max-width: 1240px) {
  /* line 183, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
  .References .Gallery .Image {
    width: 48%;
    margin: 25px auto;
    height: 335px !important;
    margin-top: 0 !important; }
  /* line 184, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
  .References .Button.More {
    top: initial;
    margin-top: 50px; } }

@media (max-width: 999px) {
  /* line 188, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
  .ShowroomHeader h2 {
    font-size: 30px; }
  /* line 189, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
  .References .Gallery .Image {
    height: 200px !important; }
  /* line 190, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
  .References .Gallery .Image:nth-of-type(2) {
    height: 200px !important; } }

@media (max-width: 500px) {
  /* line 194, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
  .SmallerGallery .Items {
    flex-flow: row wrap; }
  /* line 195, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
  .SmallerGallery .Items .Image {
    width: 100%;
    margin-bottom: 15px; }
  /* line 197, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
  .References .Gallery .Image {
    width: 100%;
    height: 150px !important;
    margin: 10px auto; }
  /* line 198, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
  .References .Gallery .Image:nth-of-type(2) {
    height: 150px !important;
    margin: 10px auto; }
  /* line 199, themes/korelis.cz/static/korelis.cz/scss/_references.scss */
  .References .GalleryLinks .Item {
    width: 100%;
    margin-left: 0;
    margin-right: 0; } }

/* line 1, themes/korelis.cz/static/korelis.cz/scss/_download.scss */
.Download {
  margin-bottom: 150px; }
  /* line 3, themes/korelis.cz/static/korelis.cz/scss/_download.scss */
  .Download h2 {
    text-transform: uppercase;
    text-align: center;
    padding: 100px 0;
    margin: 0;
    border-bottom: 5px solid rgba(0, 0, 0, 0.1); }
    /* line 9, themes/korelis.cz/static/korelis.cz/scss/_download.scss */
    .Download h2:first-child {
      padding-top: 0; }
  /* line 13, themes/korelis.cz/static/korelis.cz/scss/_download.scss */
  .Download .Item {
    position: relative;
    background-image: url(/static/korelis.cz/images/icon_list.png?fb0633d5c99e);
    background-position: 35px center;
    background-repeat: no-repeat;
    padding: 27px 230px 27px 110px;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-out; }
    /* line 23, themes/korelis.cz/static/korelis.cz/scss/_download.scss */
    .Download .Item .Name {
      color: black;
      text-decoration: none; }
      /* line 26, themes/korelis.cz/static/korelis.cz/scss/_download.scss */
      .Download .Item .Name:hover {
        text-decoration: underline; }
    /* line 31, themes/korelis.cz/static/korelis.cz/scss/_download.scss */
    .Download .Item .Button {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%); }
      /* line 36, themes/korelis.cz/static/korelis.cz/scss/_download.scss */
      .Download .Item .Button.Arrow:after {
        transform: rotate(90deg); }
    /* line 40, themes/korelis.cz/static/korelis.cz/scss/_download.scss */
    .Download .Item:hover {
      background-color: rgba(240, 240, 240, 0.5); }
    /* line 43, themes/korelis.cz/static/korelis.cz/scss/_download.scss */
    .Download .Item span {
      font-weight: 300; }

@media (max-width: 600px) {
  /* line 53, themes/korelis.cz/static/korelis.cz/scss/_download.scss */
  .Download .Item {
    padding: 27px 0;
    background-image: none;
    text-align: center; }
  /* line 54, themes/korelis.cz/static/korelis.cz/scss/_download.scss */
  .Download .Item .Name {
    display: block;
    padding-bottom: 10px; }
  /* line 55, themes/korelis.cz/static/korelis.cz/scss/_download.scss */
  .Download .Item .Button {
    position: relative;
    transform: none; } }

/* line 1, themes/korelis.cz/static/korelis.cz/scss/_morphsearch.scss */
.ajax-search-result {
  list-style: none;
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: -8px;
  width: 100%;
  background: #F3F3F3;
  display: none;
  padding: 10px 0;
  border-radius: 0 0 8px 8px; }
  /* line 13, themes/korelis.cz/static/korelis.cz/scss/_morphsearch.scss */
  .ajax-search-result li {
    padding: 5px 20px;
    border-bottom: 1px solid #FFF;
    font-size: 13px;
    color: #333; }
    /* line 19, themes/korelis.cz/static/korelis.cz/scss/_morphsearch.scss */
    .ajax-search-result li:last-child {
      border-bottom: 0; }
    /* line 22, themes/korelis.cz/static/korelis.cz/scss/_morphsearch.scss */
    .ajax-search-result li a {
      color: #333;
      text-decoration: underline; }
      /* line 25, themes/korelis.cz/static/korelis.cz/scss/_morphsearch.scss */
      .ajax-search-result li a:hover {
        color: #000; }

/* Universally styles */
/* line 3, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
html, body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #000; }

/* line 9, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
body {
  padding-top: 108px; }

/* line 13, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
h1 {
  font-weight: 600;
  font-size: 42px; }

/* line 18, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
h2 {
  font-weight: 500;
  font-size: 25px; }

/* line 23, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
.Row {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap row; }
  /* line 28, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  .Row.Centered {
    justify-content: center; }
  /* line 32, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  .Row .Col-35 {
    width: 35%; }
  /* line 35, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  .Row .Col-45 {
    width: 44%; }
  /* line 39, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  .Row .Col-55 {
    width: 54%; }
  /* line 43, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  .Row .Col-50 {
    width: 50%; }
  /* line 47, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  .Row .Col-58 {
    width: 58%; }

/* line 52, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
.Container {
  max-width: 1240px;
  padding: 0 15px;
  margin: auto; }

/* line 58, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
.Container-xm {
  max-width: 1180px;
  padding: 0 15px;
  margin: auto; }

/* line 64, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
.Container-xl {
  max-width: 1500px;
  padding: 0 15px;
  margin: auto; }

/* line 70, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
hr {
  height: 1px;
  width: 100%;
  background: #E2E2E2;
  margin: 50px 0; }

/* line 77, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
textarea {
  background: #fff;
  border-radius: 13px;
  color: #000;
  font-weight: 300;
  display: block;
  border: 1px solid #DFDFDF;
  padding: 15px 20px;
  outline: none;
  font-size: 16px;
  width: 100%;
  min-height: 170px; }
  /* line 90, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  textarea::placeholder {
    color: #B7B7B7;
    font-weight: normal; }
  /* line 95, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  textarea:-ms-input-placeholder {
    color: #B7B7B7;
    font-weight: normal; }
  /* line 100, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  textarea::-ms-input-placeholder {
    color: #B7B7B7;
    font-weight: normal; }

/* line 106, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
input {
  background: #fff;
  border-radius: 13px;
  color: #000;
  font-weight: 300;
  display: block;
  border: 1px solid #DFDFDF;
  padding: 15px 20px;
  outline: none;
  font-size: 16px;
  width: 100%; }
  /* line 118, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  input::placeholder {
    color: #B7B7B7;
    font-weight: normal; }
  /* line 123, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  input:-ms-input-placeholder {
    color: #B7B7B7;
    font-weight: normal; }
  /* line 128, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  input::-ms-input-placeholder {
    color: #B7B7B7;
    font-weight: normal; }

/* line 134, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
.Button {
  background: #79B51C;
  border-radius: 13px;
  color: #fff;
  font-weight: 500;
  display: inline-block;
  padding: 15px 20px;
  outline: none;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: 0.5s; }
  /* line 148, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  .Button:hover {
    opacity: 0.9; }
  /* line 152, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  .Button.White {
    background: #fff;
    color: #000; }
    /* line 156, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    .Button.White:hover {
      color: #fff;
      background: #000; }
  /* line 162, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  .Button.Gray {
    background: #F3F3F3;
    color: #000; }
    /* line 166, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    .Button.Gray:hover {
      color: #fff;
      background: #000; }
    /* line 171, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    .Button.Gray.active {
      color: #fff;
      background: #000; }
    /* line 177, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    .Button.Gray.Arrow::after {
      content: "";
      position: absolute;
      right: 20px;
      width: 22px;
      height: 15px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.151' height='13.407' viewBox='0 0 17.151 13.407'%3E%3Cdefs%3E%3Cstyle%3E.a,.b%7Bfill:none;stroke:%23000;stroke-linecap:round;stroke-width:1.5px;%7D.b%7Bstroke-linejoin:round;%7D%3C/style%3E%3C/defs%3E%3Cg transform='translate(605.781 2543.812) rotate(180)'%3E%3Cpath class='a' d='M595.124,2531.466l-5.452,5.644,5.452,5.642'/%3E%3Cline class='b' x1='15.359' transform='translate(589.672 2537.109)'/%3E%3C/g%3E%3C/svg%3E");
      background-repeat: no-repeat;
      margin-top: 6px; }
  /* line 190, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  .Button.Smaller {
    font-size: 15px;
    padding: 10px 27px; }
  /* line 195, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  .Button.Arrow {
    padding: 15px 60px 15px 20px; }
    /* line 198, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    .Button.Arrow::after {
      content: "";
      position: absolute;
      right: 20px;
      width: 22px;
      height: 15px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20.277' height='14.766' viewBox='0 0 20.277 14.766'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;stroke:%23fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5px;%7D%3C/style%3E%3C/defs%3E%3Cg transform='translate(19.527 13.706) rotate(180)'%3E%3Cpath class='a' d='M6.109,0,0,6.323l6.109,6.322'/%3E%3Cline class='a' x1='18.777' transform='translate(0 6.323)'/%3E%3C/g%3E%3C/svg%3E");
      background-repeat: no-repeat;
      margin-top: 6px; }

/* line 212, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
.Crumbs {
  margin-bottom: 40px; }
  /* line 215, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  .Crumbs ul {
    display: flex; }
    /* line 218, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    .Crumbs ul li {
      font-weight: 300;
      font-size: 15px; }
      /* line 222, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
      .Crumbs ul li::after {
        content: "";
        display: inline-block;
        width: 6px;
        height: 12px;
        background-repeat: no-repeat;
        background-position: center center;
        margin: 0 15px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.08' height='11.502' viewBox='0 0 6.08 11.502'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;stroke:%23919191;stroke-linecap:round;stroke-linejoin:round;%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M594.545,2531.466l-4.873,5.044,4.873,5.044' transform='translate(595.252 2542.261) rotate(180)'/%3E%3C/svg%3E"); }
      /* line 234, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
      .Crumbs ul li:last-child::after {
        display: none; }
      /* line 239, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
      .Crumbs ul li a {
        color: #000;
        font-weight: 500; }
        /* line 243, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
        .Crumbs ul li a:hover {
          text-decoration: none; }

/* Layout */
/* line 253, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
header {
  padding: 30px 0;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  background: #fff;
  transition: padding 0.5s; }
  /* line 263, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  header.Changed {
    padding: 10px 0;
    border-bottom: 1px solid #E2E2E2; }
  /* line 268, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  header .Row {
    align-items: center; }
  /* line 271, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  header nav ul {
    margin: 0;
    display: flex; }
    /* line 275, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    header nav ul li {
      list-style: none; }
      /* line 278, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
      header nav ul li a {
        color: #000;
        font-weight: 500;
        text-decoration: none;
        font-size: 17px;
        padding: 5px 10px;
        margin: 0 10px;
        position: relative;
        overflow: hidden;
        display: block; }
        /* line 290, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
        header nav ul li a::before {
          height: 3px;
          width: 21px;
          left: -21px;
          content: "";
          background: #79B51C;
          display: block;
          position: absolute;
          top: 0;
          transition: left 0.5s; }
        /* line 302, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
        header nav ul li a:hover {
          color: #79B51C; }
          /* line 305, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
          header nav ul li a:hover::before {
            left: 10px; }
        /* line 310, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
        header nav ul li a.active {
          color: #79B51C; }
          /* line 313, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
          header nav ul li a.active::before {
            left: 10px; }
  /* line 323, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  header .SearchForm {
    width: 220px;
    background: #F3F3F3;
    border-radius: 13px;
    height: 48px;
    position: relative;
    margin-left: 25px; }
    /* line 331, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    header .SearchForm .Icon {
      position: absolute;
      padding: 15px 0 15px 20px;
      cursor: pointer; }
      /* line 336, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
      header .SearchForm .Icon:hover {
        opacity: 0.6; }
      /* line 340, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
      header .SearchForm .Icon svg {
        width: 15px; }
    /* line 345, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    header .SearchForm input {
      height: 100%;
      border: 0;
      background: none;
      width: 80%;
      float: right;
      outline: none;
      padding-left: 0; }
  /* line 356, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  header .Logo {
    display: block;
    max-width: 158px;
    height: 43px; }
  /* line 362, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  header .Right {
    display: flex;
    align-items: center; }
  /* line 367, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  header .MenuBtn {
    display: none;
    height: 25px;
    cursor: pointer;
    margin-left: 50px; }
    /* line 373, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    header .MenuBtn:hover {
      opacity: 0.8; }
    /* line 377, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    header .MenuBtn .Line {
      position: relative;
      width: 35px;
      height: 3px;
      background: #000;
      transition: all .3s ease;
      cursor: pointer;
      border-radius: 5px; }
      /* line 386, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
      header .MenuBtn .Line.One {
        top: 0; }
      /* line 390, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
      header .MenuBtn .Line.Two {
        top: 8px; }
      /* line 394, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
      header .MenuBtn .Line.Three {
        top: 16px; }
    /* line 402, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    header .MenuBtn.Open .Line.Three {
      transform: rotate(45deg);
      top: 5px; }
    /* line 407, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    header .MenuBtn.Open .Line.Two {
      display: none; }
    /* line 411, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    header .MenuBtn.Open .Line.One {
      transform: rotate(-45deg);
      top: 8px; }

/* line 420, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
footer {
  background: #F3F3F3;
  padding: 65px 0;
  position: relative;
  margin-top: 40px; }
  /* line 426, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  footer .Container {
    position: relative;
    z-index: 1; }
  /* line 431, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  footer::after {
    content: "";
    background: url(/static/korelis.cz/images/_asset_footer.svg?41fb968643b7) no-repeat;
    width: 335px;
    height: 330px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0; }
  /* line 442, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  footer .Logo {
    max-width: 128px;
    height: 34px;
    display: block; }
  /* line 448, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  footer .Row.Bottom {
    align-items: center;
    margin-top: 60px; }
  /* line 454, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  footer .Col .Heading {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px; }
  /* line 461, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  footer .Icon {
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 500; }
    /* line 466, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    footer .Icon.Tel {
      margin-bottom: 25px; }
    /* line 468, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    footer .Icon svg {
      width: 25px;
      text-align: center; }
    /* line 473, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    footer .Icon a {
      color: #000;
      text-decoration: none;
      position: relative; }
      /* line 478, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
      footer .Icon a:hover {
        color: #79B51C; }
    /* line 483, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    footer .Icon .Opening {
      color: #B3B3B3;
      font-size: 11px;
      position: relative;
      left: 32px; }
    /* line 491, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    footer .Icon.Messe a {
      top: -4px; }
    /* line 497, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    footer .Icon.Mail a {
      top: -2px; }
  /* line 504, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  footer nav ul {
    padding: 0; }
    /* line 507, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    footer nav ul li {
      list-style: none; }
      /* line 510, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
      footer nav ul li a {
        color: #5F5F5F;
        font-size: 16px;
        text-decoration: none;
        padding: 2px 0;
        display: inline-block;
        position: relative;
        overflow: hidden; }
        /* line 519, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
        footer nav ul li a::before {
          height: 1px;
          width: 100%;
          left: -100%;
          content: "";
          background: #000;
          display: block;
          position: absolute;
          bottom: 0;
          transition: left 0.5s; }
        /* line 532, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
        footer nav ul li a:hover::before {
          left: 0; }

/* line 542, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
.Socials {
  display: flex; }
  /* line 545, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  .Socials a {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    display: block;
    margin-right: 10px; }
    /* line 554, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    .Socials a:hover {
      opacity: 0.8; }
    /* line 558, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    .Socials a.Pinterest {
      background: #CD0E42; }
      /* line 561, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
      .Socials a.Pinterest svg {
        width: 18px;
        height: 23px;
        margin-top: 13px; }
    /* line 568, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    .Socials a.Instagram {
      background: #653A86; }
      /* line 571, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
      .Socials a.Instagram svg {
        width: 20px;
        height: 20px;
        margin-top: 13px; }
    /* line 578, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
    .Socials a.Facebook {
      background: #3462DD; }
      /* line 581, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
      .Socials a.Facebook svg {
        width: 11px;
        height: 19px;
        margin-top: 14px; }

@media (max-width: 1070px) {
  /* line 592, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  header .Right {
    display: none;
    width: 100%; }
  /* line 593, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  header .Right nav {
    display: block;
    margin-top: 20px; }
  /* line 594, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  header .Right nav ul {
    display: block; }
  /* line 595, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  header .Right nav ul li {
    width: 100%;
    text-align: center; }
  /* line 596, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  header .MenuBtn {
    display: block; }
  /* line 597, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  header .SearchForm {
    margin: 10px auto 0 auto; }
  /* line 599, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  header nav ul li a::before {
    display: none; } }

@media (max-width: 999px) {
  /* line 603, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  h1 {
    font-size: 64px; }
  /* line 604, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  .Preview .Subtitle {
    font-size: 20px; } }

@media (max-width: 850px) {
  /* line 608, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  footer .Col {
    width: 50%; } }

@media (max-width: 650px) {
  /* line 612, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  .Row .Col-45 {
    width: 100%;
    margin-bottom: 15px; }
  /* line 613, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  .Row .Col-50 {
    width: 100%; }
  /* line 614, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  .Row .Col-58 {
    width: 100%; } }

@media (max-width: 500px) {
  /* line 618, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  footer {
    padding: 30px 0; }
  /* line 619, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  footer .Col {
    width: 100%;
    text-align: center; }
  /* line 620, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  footer .Col.Second {
    margin-bottom: 30px; }
  /* line 621, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  footer .Col.Third {
    margin-bottom: 30px; }
  /* line 622, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  footer::after {
    width: 280px; }
  /* line 623, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  footer .Icon .Opening {
    left: initial; }
  /* line 624, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  .Socials {
    align-items: center;
    max-width: 220px;
    margin: auto; }
  /* line 625, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  .Socials a {
    margin: auto; }
  /* line 627, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  footer .Row.Bottom {
    display: block;
    text-align: center; }
  /* line 628, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  footer .Logo {
    margin: 10px auto; }
  /* line 630, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  h1 {
    font-size: 45px; }
  /* line 631, themes/korelis.cz/static/korelis.cz/scss/_layout.scss */
  .Preview .Subtitle {
    font-size: 18px; } }
