* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
}

.clr {
  clear: both;
  float: none;
}

body {
  color: black;
  font-size: 36px;
  font-family: "Ubuntu-Regular";
}

/* === HEADER === */
header {
  width: 100%;
  height: 866px;
  background-image: url("../img/header.png"), linear-gradient(194.01deg, #D9E8EF 9.6%, #EAF2F5 89.64%);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: initial, contain;
}

@media only screen and (max-width: 1700px) {
  header {
    background-position: 120% 100%;
  }
}

@media only screen and (max-width: 1500px) {
  header {
    background-position: 140% 140%;
  }
}

@media only screen and (max-width: 1350px) {
  header {
    background-position: 200% 220%;
  }
}

@media only screen and (max-width: 1100px) {
  header {
    background-position: 380% 100%;
  }
}

@media only screen and (max-width: 1024px) {
  header {
    background-image: linear-gradient(194.01deg, #D9E8EF 9.6%, #EAF2F5 89.64%);
    height: 366px;
  }
}

@media only screen and (max-width: 560px) {
  header {
    height: 416px;
  }
}

@media only screen and (max-width: 500px) {
  header {
    height: 436px;
  }
}

header #top {
  max-width: 1100px;
  width: 95%;
  margin: 0px auto;
  padding: 31px 0px;
}

header #top #logo {
  width: 174px;
  height: 30px;
  color: black;
  text-decoration: none;
}

header #top #logo span {
  font-family: "Ubuntu-Bold";
  font-size: 18px;
  line-height: 30px;
  float: left;
  margin-left: 10px;
}

header #top #logo i {
  display: block;
  float: left;
  width: 32px;
  height: 30px;
  background-image: url("../img/logo.png");
}

@media only screen and (max-width: 920px) {
  header #top #nav {
    width: 60%;
    display: block;
    position: absolute;
    right: 50px;
  }
  header #top #nav #hamburger {
    display: block;
    width: 60px;
    height: 60px;
    position: relative;
    margin: 0 auto;
    cursor: pointer;
  }
  header #top #nav #hamburger span {
    display: block;
    height: 8px;
    width: 100%;
    position: absolute;
    background-color: black;
    -webkit-transition: 500ms;
    transition: 500ms;
  }
  header #top #nav #hamburger span:nth-child(1) {
    top: 0px;
  }
  header #top #nav #hamburger span:nth-child(2) {
    top: 18px;
  }
  header #top #nav #hamburger span:nth-child(3) {
    top: 36px;
  }
  header #top #nav #hamburger:hover span:nth-child(1), header #top #nav #hamburger.open span:nth-child(1) {
    top: 20px;
    -webkit-transform: rotateZ(135deg);
    transform: rotateZ(135deg);
    background-color: #f03fb7;
  }
  header #top #nav #hamburger:hover span:nth-child(2), header #top #nav #hamburger.open span:nth-child(2) {
    top: 20px;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
    background-color: #f03fb7;
  }
  header #top #nav #hamburger:hover span:nth-child(3), header #top #nav #hamburger.open span:nth-child(3) {
    display: none;
    background-color: #f03fb7;
  }
  header #top #nav ul li a {
    display: inline-block!important;
    width: 100%!important;
    line-height: 43px!important;
    margin-bottom: 0px!important;
    padding-top: 10px!important;
  }
}

@media only screen and (max-width: 500px) {
  header #top #nav {
    width: 100%;
    right: 0px;
  }
  header #top #nav #hamburger {
    margin-left: 80%;
  }
}

header #top #nav ul {
  width: 432px;
  text-align: right;
  list-style: none;
  float: right;
}

header #top #nav ul li {
  display: inline;
  padding: 5px 13px;
}

header #top #nav ul li:first-child {
  padding-left: 0px;
}

header #top #nav ul li:last-child {
  padding-right: 0px;
}

header #top #nav ul li a {
  font-size: 15px;
  line-height: 17px;
  padding-bottom: 5px;
  color: #000000;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

header #top #nav ul li a::before {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  display: block;
  background: black;
  bottom: 0px;
  left: -100%;
  -webkit-transition: ease-in-out 500ms;
  transition: ease-in-out 500ms;
}

header #top #nav ul li a:hover::before {
  left: 0%;
}

header #top #nav ul li a.active {
  color: #F03FB7;
}

@media only screen and (max-width: 920px) {
  header #top #nav ul {
    background: #cae5f3;
    margin: 0 auto;
    float: none;
    z-index: 999;
    width: 100%;
    display: none;
  }
  header #top #nav ul li {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0px;
    border-bottom: solid 1px white;
  }
}

header #header_content {
  max-width: 1100px;
  width: 95%;
  margin: 233px auto 0px auto;
  padding: 0px 0px;
}

@media only screen and (max-width: 1024px) {
  header #header_content {
    margin-top: 25px;
    text-align: center;
  }
  header #header_content a {
    margin: 0 auto;
  }
}

header #header_content h1 {
  font-family: "Ubuntu-Bold";
  font-weight: bold;
  font-size: 72px;
  line-height: 98px;
  color: #18191F;
}

@media only screen and (max-width: 720px) {
  header #header_content h1 {
    font-size: 56px;
    line-height: 80px;
  }
}

header #header_content p {
  font-family: "Manrope-regular";
  font-size: 18px;
  line-height: 32px;
  margin-top: 16px;
}

@media only screen and (max-width: 720px) {
  header #header_content p {
    font-size: 14px;
    line-height: 24px;
  }
}

header #header_content a {
  margin-top: 31px;
  display: block;
  width: 239px;
  height: 51px;
  line-height: 51px;
  color: white;
  text-decoration: none;
  background-color: #F03FB7;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-transition: ease-in-out 500ms;
  transition: ease-in-out 500ms;
}

header #header_content a:hover {
  background-color: #FBA237;
}

.podstrana header {
  height: 104px;
  background-image: url("../img/header_podstrana.png"), linear-gradient(194.01deg, #D9E8EF 9.6%, #EAF2F5 89.64%);
}

.podstrana header #header_content {
  display: none;
}

@media only screen and (max-width: 1500px) {
  .podstrana header {
    background-position: 120% 120%;
  }
}

@media only screen and (max-width: 1300px) {
  .podstrana header #top #nav ul {
    margin-right: 150px;
  }
}

@media only screen and (max-width: 920px) {
  .podstrana header {
    background-position: 100% 100%;
  }
}

@media only screen and (max-width: 720px) {
  .podstrana header {
    background-position: -50% 100%;
  }
}

@media only screen and (max-width: 720px) {
  .podstrana header {
    background-position: 0% 100%;
  }
}

/* === CONTENT === */
main {
  /* USP */
  /* ! USP */
  /* CALCULATOR */
  /* ! CALCULATOR */
  /* CATEGORIES */
  /* ! CATEGORIES */
  /* PRODUCT */
  /* ! PRODUCT */
  /* PARAMETERS */
  /* ! PARAMETERS */
  /* CONTACT */
  /* ! CONTACT */
  /* BLOG */
  /* ! BLOG */
}

main .cesta {
  font-family: "Ubuntu-Light";
  font-weight: 300;
  font-size: 13px;
  line-height: 15px;
  color: #9C9C9C;
  text-align: right;
  padding: 15px 25px;
}

main .cesta a {
  color: #9C9C9C;
  text-decoration: none;
}

main .cesta a:hover {
  text-decoration: underline;
}

main #usp {
  max-width: 1234px;
  width: 95%;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 182px;
}

main #usp h2 {
  padding-top: 110px;
  font-family: "Ubuntu-Bold";
  font-size: 48px;
  line-height: 64px;
  color: #F03FB7;
}

main #usp p {
  font-family: "Ubuntu-Regular";
  font-size: 18px;
  line-height: 32px;
  color: #18191F;
  padding-top: 8px;
}

main #usp span.visibling {
  width: 1px;
  height: 1px;
  display: inline;
  margin: auto;
  background-color: white;
}

main #usp div.hero {
  display: inline-block;
  width: 32.5%;
  margin-top: 66px;
  opacity: 0;
  -webkit-transform: translateY(-200px);
          transform: translateY(-200px);
  -webkit-transition: ease-in-out 700ms;
  transition: ease-in-out 700ms;
}

@media only screen and (max-width: 715px) {
  main #usp div.hero {
    width: 240px;
  }
}

main #usp div.hero h3 {
  font-family: "Ubuntu-Bold";
  font-size: 24px;
  line-height: 32px;
}

main #usp div.hero h3 a {
  color: #18191F;
  text-decoration: none;
}

main #usp div.hero p {
  font-family: "Ubuntu-Regular";
  font-size: 14px;
  line-height: 24px;
  color: #18191F;
}

main div#calculator {
  width: 100%;
  background-color: #DEDEDE;
  padding-bottom: 117px;
}

main div#calculator div.row {
  text-align: center;
  max-width: 800px;
  width: 95%;
  margin: 0 auto;
}

main div#calculator div.row h2 {
  padding-top: 110px;
  font-family: "Ubuntu-Bold";
  font-size: 48px;
  line-height: 64px;
  color: #F03FB7;
}

main div#calculator div.row .rocni_uspora {
  padding-top: 120px;
}

main div#calculator div.row .rocni_uspora h2 {
  padding-top: 0px;
  padding-right: 29px;
  text-align: left;
  font-family: "Ubuntu-Bold";
  font-size: 27px;
  line-height: 45px;
  color: #000000;
  display: block;
  float: left;
  width: auto;
}

main div#calculator div.row .rocni_uspora span {
  font-family: "Ubuntu-Bold";
  font-weight: bold;
  font-size: 48px;
  line-height: 45px;
  padding: 0px 10px 32px 10px;
  color: #FBA237;
  display: block;
  float: left;
  background-image: url("../img/line.png");
  background-repeat: repeat-x;
  background-position: center bottom;
}

@media only screen and (max-width: 750px) {
  main div#calculator div.row .rocni_uspora h2 {
    margin-bottom: 25px;
  }
  main div#calculator div.row .rocni_uspora h2, main div#calculator div.row .rocni_uspora span {
    text-align: center;
    float: none;
  }
  main div#calculator div.row .rocni_uspora span {
    width: auto;
    display: inline;
  }
}

main div#calculator div.row p.under_uspora {
  font-size: 18px;
  margin: 0px 0px;
}

main div#calculator div.row p.under_uspora .just_link {
  display: inline-block;
  width: auto;
  height: auto;
  line-height: 18px;
  color: #F03FB7;
  background: transparent;
  text-decoration: underline;
}

main div#calculator div.row p.under_uspora .just_link:hover {
  color: #FBA237;
}

main div#calculator div.row h3 {
  font-family: "Ubuntu-Bold";
  font-size: 27px;
  line-height: 45px;
  margin-top: 65px;
  color: #000000;
}

main div#calculator div.row h4 {
  font-family: "Ubuntu-Bold";
  font-size: 14px;
  line-height: 45px;
  padding-bottom: 17px;
}

main div#calculator div.row h4 input {
  background-color: #DEDEDE;
  border: none;
  outline: none;
  display: inline;
  font-family: "Ubuntu-Bold";
  font-size: 14px;
  line-height: 45px;
}

main div#calculator div.row div.jq-ui-slider {
  float: left;
  width: 48%;
  margin-left: 2%;
  margin-right: 2%;
  max-width: 360px;
  margin-top: 21px;
}

main div#calculator div.row div.jq-ui-slider.cernobilych {
  margin-left: 0px;
}

main div#calculator div.row div.jq-ui-slider.barevnych {
  margin-right: 0px;
  float: right;
}

main div#calculator .checkboxes {
  display: inline-block;
  width: auto;
  margin: 0px 36px;
}

main div#calculator .checkboxes input[type=checkbox] {
  display: none;
}

main div#calculator .checkboxes input[type=checkbox]:checked + label::before {
  content: '';
  background-color: #F03FB7;
  background-image: url("../img/checked.png");
  background-repeat: no-repeat;
  background-position: center center;
}

main div#calculator .checkboxes label::before {
  content: '';
  width: 28px;
  height: 28px;
  display: block;
  float: left;
  margin-right: 15px;
  background: #888888;
  border-radius: 5px;
  -webkit-transition: 100ms;
  transition: 100ms;
}

main div#calculator .checkboxes label span {
  font-family: "Ubuntu-Bold";
  font-size: 14px;
  line-height: 28px;
  float: left;
}

main div#calculator a {
  display: block;
  width: 239px;
  height: 51px;
  line-height: 51px;
  color: white;
  text-decoration: none;
  background-color: #FBA237;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-transition: ease-in-out 500ms;
  transition: ease-in-out 500ms;
  margin: 53px auto 0px auto;
}

main div#calculator a:hover {
  background-color: #F03FB7;
}

main #category {
  max-width: 1780px;
  width: 95%;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 125px;
}

main #category h1 {
  font-family: "Ubuntu-Regular";
  font-weight: normal;
  font-size: 64px;
  line-height: 64px;
  text-align: center;
  color: #000000;
  margin-top: 66px;
  margin-bottom: 14px;
}

main #category p.under_headline {
  font-family: "Ubuntu-Light";
  font-weight: 300;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  color: #000000;
  margin-bottom: 87px;
}

main #category h2 {
  font-family: "Ubuntu-Bold";
  font-size: 34px;
  line-height: 90px;
  color: black;
  padding-top: 104px;
}

main #category h3 {
  float: left;
  max-width: 325px;
  width: calc(33% - 67px);
  font-family: "Ubuntu-Bold";
  font-size: 27px;
  line-height: 45px;
  margin-right: 67px;
  margin-top: 20px;
  text-align: right;
}

main #category h4 input {
  background-color: white;
  border: none;
  outline: none;
  display: inline;
  font-family: "Ubuntu-Bold";
  font-size: 14px;
  line-height: 45px;
  padding-bottom: 20px;
}

main #category div.jq-ui-slider {
  float: left;
  width: calc(33% - 67px);
  margin-right: 67px;
  max-width: 360px;
  margin-top: 10px;
}

main #category div.jq-ui-slider .ui-slider-horizontal {
  background-color: #888888;
}

main #category div.jq-ui-slider .ui-widget-header {
  background-color: #888888;
}

main #category div.jq-ui-slider .ui-state-default, main #category div.jq-ui-slider .ui-widget-content .ui-state-default, main #category div.jq-ui-slider .ui-widget-header .ui-state-default, main #category div.jq-ui-slider .ui-button, main #category div.jq-ui-slider html .ui-button.ui-state-disabled:hover, main #category div.jq-ui-slider html .ui-button.ui-state-disabled:active {
  background: #F03FB7;
}

main #category .checkboxes {
  display: inline-block;
  width: auto;
  margin: 0px 36px;
  padding-top: 30px;
}

main #category .checkboxes input[type=checkbox] {
  display: none;
}

main #category .checkboxes input[type=checkbox]:checked + label::before {
  content: '';
  background-color: #F03FB7;
  background-image: url("../img/checked.png");
  background-repeat: no-repeat;
  background-position: center center;
}

main #category .checkboxes label::before {
  content: '';
  width: 28px;
  height: 28px;
  display: block;
  float: left;
  margin-right: 15px;
  background: #888888;
  border-radius: 5px;
  -webkit-transition: 100ms;
  transition: 100ms;
}

main #category .checkboxes label span {
  font-family: "Ubuntu-Bold";
  font-size: 14px;
  line-height: 28px;
  float: left;
}

main #category .funkce {
  max-width: 1400px;
  margin-top: 117px;
  text-align: left;
}

main #category .funkce #boxes_wrap {
  float: left;
  width: calc(100% - 325px - 67px);
}

.no_products {
    margin-top: 50px;
}
.no_products p {
    padding: 20px 0px;
}
.no_products p strong {
}
.no_products p span {
  color: #F03FB7;
}
.no_products p a {
    color: black;
    white-space: nowrap;
}
.no_products p a:hover {
    text-decoration: none;
}

@media only screen and (max-width: 500px) { 
    .no_products {font-size: 16px;} 
}

@media only screen and (max-width: 920px) {
  main #category h3 {
    float: none;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
  main #category div.jq-ui-slider {
    width: calc(50% - 50px);
    margin-right: 50px;
  }
  main #category .funkce #boxes_wrap {
    width: 100%;
  }
}

main #category .list {
  text-align: center;
}

main #category .list h2 {
  font-family: "Ubuntu-Regular";
  font-size: 34px;
  line-height: 45px;
  color: #F03FB7;
  font-weight: 300;
}

main #category .list .item {
  display: inline-block;
  width: 294px;
  height: 435px;
  overflow: hidden;
  margin-top: 84px;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
}

main #category .list .item h3 {
  font-family: "Ubuntu-Regular";
  font-weight: 500;
  font-size: 22px;
  line-height: 22px;
  height: 44px;
  overflow: hidden;
  text-align: center;
  float: none;
  width: auto;
  max-width: auto;
  margin: 0 auto;
}

main #category .list .item h3 a {
  color: black;
  text-decoration: none;
  -webkit-transition: 500ms;
  transition: 500ms;
}

main #category .list .item h3 a:hover {
  color: gray;
}

main #category .list .item .price {
  font-family: "Ubuntu-Bold";
  font-size: 14px;
  line-height: 45px;
  text-align: center;
  color: #F03FB7;
  margin-top: 7px;
}

main #category .list .item .obr {
    display: block;
    width: 80%;
    margin: 20px auto;
    height: 260px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

main #category .list .item .obr img {
  display: none;
}

main #category .list .item .detail {
  width: 126px;
  height: 32px;
  margin-left: 10px;
  border: 1px solid #000000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  float: left;
  display: block;
  color: black;
  text-align: center;
  line-height: 32px;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: ease-in-out 500ms;
  transition: ease-in-out 500ms;
}

main #category .list .item .detail:hover {
  background-color: black;
  color: white;
}

main #category .list .item .rent {
  width: 126px;
  height: 32px;
  margin-right: 10px;
  border: 1px solid #F03FB7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  float: right;
  display: block;
  color: white;
  background-color: #F03FB7;
  text-align: center;
  line-height: 32px;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: ease-in-out 500ms;
  transition: ease-in-out 500ms;
  cursor: pointer;
}

main #category .list .item .rent:hover {
  background-color: white;
  border-color: black;
  color: black;
}

main #category h2.bottom {
  font-family: "Ubuntu-Regular";
  font-size: 64px;
  line-height: 74px;
  text-align: center;
  color: black;
}

main #category h2.bottom strong {
  font-family: "Ubuntu-Bold";
  color: #F03FB7;
}

@media only screen and (max-width: 980px) {
  main #category h2.bottom {
    font-size: 52px;
    line-height: 62px;
  }
}

main #category h3.bottom {
  font-family: "Ubuntu-Regular";
  font-weight: 300;
  font-size: 48px;
  line-height: 55px;
  text-align: center;
  color: #000000;
  width: auto;
  max-width: 100%;
  float: none;
  margin: 0;
  padding-top: 20px;
}

@media only screen and (max-width: 980px) {
  main #category h3.bottom {
    font-size: 36px;
    line-height: 42px;
  }
}

main #product {
  max-width: 1360px;
  width: 95%;
  margin: 0 auto;
}

main #product h1 {
  margin-top: 41px;
  margin-bottom: 24px;
  font-family: "Ubuntu-Regular";
  font-weight: normal;
  font-size: 64px;
  line-height: 64px;
  text-align: center;
  color: #000000;
}

main #product p.under_headline {
  font-family: "Ubuntu-Light";
  font-weight: 300;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.015em;
  color: #000000;
}

main #product #detail_of_product {
  width: 100%;
}

main #product #detail_of_product #gallery {
  float: left;
  width: 40%;
  max-width: 520px;
  text-align: center;
  margin-top: 27px;
}

main #product #detail_of_product #gallery .obr {
  width: 87px;
  height: 107px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
}

main #product #detail_of_product #gallery .obr:first-child {
  width: 100%;
  height: 642px;
}

main #product #detail_of_product #gallery .obr img {
  display: none;
}

@media only screen and (max-width: 980px) {
  main #product #detail_of_product #gallery {
    width: 100%;
    float: none;
    clear: both;
    margin: 0 auto;
  }
}

main #product #detail_of_product #info {
  float: right;
  width: 55%;
  margin-top: 27px;
  font-family: "Ubuntu-Regular";
  font-size: 14px;
  line-height: 22px;
}
main #product #detail_of_product #info p {
    line-height: 180%;
}

main #product #detail_of_product #info .rent_this {
  margin-top: 92px;
  margin-bottom: 57px;
  max-width: 350px;
  width: 100%;
  height: 50px;
  background-color: #F03FB7;
  text-decoration: none;
  display: block;
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
  font-family: "Ubuntu-Bold";
  font-size: 14px;
  line-height: 50px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
}

main #product #detail_of_product #info .rent_this:hover {
  background-color: #942c73;
}

main #product #detail_of_product #info ul {
  margin-left: 0px;
  list-style: none;
}

main #product #detail_of_product #info ul li {
  font-family: "Ubuntu-Regular";
  font-size: 14px;
  line-height: 30px;
  color: #000000;
  background-image: url("../img/ul_li.png");
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 20px;
}

main #product #detail_of_product #info ul li a {
  color: #F03FB7;
}

main #product #detail_of_product #info ul li a:hover {
  text-decoration: none;
}

main #product #detail_of_product #info .claims {
  text-align: center;
  margin-top: 26px;
}

main #product #detail_of_product #info .claims .hero {
  width: 32%;
  display: inline-block;
  margin-top: 34px;
}

@media only screen and (max-width: 600px) {
  main #product #detail_of_product #info .claims .hero {
    width: 49%;
  }
}

main #product #detail_of_product #info .claims .hero h2 {
  font-family: "Ubuntu-Bold";
  font-size: 24px;
  line-height: 32px;
  text-align: center;
}

main #product #detail_of_product #info .claims .hero h2 a {
  color: #18191F;
  text-decoration: none;
}

@media only screen and (max-width: 1366px) {
  main #product #detail_of_product #info .claims .hero h2 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1200px) {
  main #product #detail_of_product #info .claims .hero h2 {
    font-size: 16px;
    line-height: 20px;
  }
}

main #product #detail_of_product #info .claims .hero p {
  font-family: "Ubuntu-Regular";
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: #18191F;
}

@media only screen and (max-width: 1366px) {
  main #product #detail_of_product #info .claims .hero p {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1200px) {
  main #product #detail_of_product #info .claims .hero p {
    font-size: 10px;
    line-height: 15px;
  }
}

@media only screen and (max-width: 980px) {
  main #product #detail_of_product #info {
    width: 100%;
    float: none;
    clear: both;
  }
  main #product #detail_of_product #info .rent_this {
    margin: 0 auto;
  }
  main #product #detail_of_product #info ul {
    max-width: 600px;
    margin: 30px auto;
  }
}

main #product_price {
  text-align: center;
  width: 90%;
  max-width: 1450px;
  margin: 0 auto;
}

main #product_price h2 {
  margin-top: 100px;
  font-family: "Ubuntu-Light";
  font-weight: 300;
  font-size: 34px;
  line-height: 45px;
  color: #F03FB7;
}

main #product_price .price {
  display: inline-block;
  width: calc(24% - 60px);
  max-width: 300px;
  height: 485px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 53px 30px;
  background: #EBF8FF;
  border-radius: 3px;
  padding-top: 30px;
  overflow: hidden;
}

@media only screen and (max-width: 1400px) {
  main #product_price .price {
    margin: 53px 15px;
    width: calc(24% - 30px);
  }
}

@media only screen and (max-width: 1250px) {
  main #product_price .price {
    height: 450px;
  }
}

@media only screen and (max-width: 1100px) {
  main #product_price .price {
    margin: 53px 30px;
    width: calc(48% - 60px);
  }
}

@media only screen and (max-width: 720px) {
  main #product_price .price {
    margin: 53px 0px;
    width: 100%;
    max-width: 400px;
  }
}

main #product_price .price h3 {
  font-family: "Ubuntu-Bold";
  font-size: 36px;
  line-height: 48px;
  overflow: hidden;
  height: 48px;
}

main #product_price .price h3 a {
  color: #0B162B;
  text-decoration: none;
}

@media only screen and (max-width: 1250px) {
  main #product_price .price h3 {
    font-size: 30px;
    line-height: 40px;
  }
}

main #product_price .price .stamp {
  display: block;
  width: 53px;
  height: 53px;
  border-radius: 26px;
  margin: 11px auto;
  background: #697487;
}

main #product_price .price .stamp .obr {
  display: block;
  height: 53px;
  height: 53px;
  background-repeat: no-repeat;
  background-position: center center;
}

main #product_price .price .price_headline {
  font-family: "Ubuntu-Bold";
  font-size: 50px;
  line-height: 50px;
  overflow: hidden;
  height: 60px;
  color: #0B162B;
  padding-top: 10px;
}

@media only screen and (max-width: 1250px) {
  main #product_price .price .price_headline {
    font-size: 40px;
    line-height: 40px;
    height: 50px;
  }
}

main #product_price .price .monthly {
  font-family: "Ubuntu-Regular";
  font-size: 18px;
  line-height: 18px;
  color: #0B162B;
  opacity: 0.5;
  padding-top: 10px;
}

@media only screen and (max-width: 1250px) {
  main #product_price .price .monthly {
    font-size: 16px;
    line-height: 16px;
  }
}

main #product_price .price .information {
  font-family: "Ubuntu-Bold";
  font-size: 18px;
  line-height: 25px;
  color: #000000;
  opacity: 0.5;
  overflow: hidden;
  height: 75px;
}

@media only screen and (max-width: 1250px) {
  main #product_price .price .information {
    font-size: 16px;
    line-height: 22px;
    height: 66px;
  }
}

main #product_price .price .describe {
  font-family: "Ubuntu-Bold";
  font-size: 18px;
  line-height: 25px;
  color: #FF00AD;
  opacity: 0.5;
  margin-top: 6px;
  overflow: hidden;
  height: 50px;
}

@media only screen and (max-width: 1250px) {
  main #product_price .price .describe {
    font-size: 16px;
    line-height: 22px;
    height: 44px;
  }
}

main #product_price .price .choose {
  height: 60px;
  max-width: 209px;
  width: 95%;
  display: inline-block;
  background: #F03FB7;
  font-family: "Ubuntu-Bold";
  font-size: 14px;
  line-height: 60px;
  text-decoration: none;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
  margin-top: 19px;
}

main #product_price .price .choose:hover {
  background-color: #FBA237;
}

main #product_price .under_content {
  font-family: "Ubuntu-Regular";
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: #000000;
}

main #product_price h4 {
  font-family: "Ubuntu-Light";
  font-weight: 300;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: -0.015em;
  color: #000000;
  margin-top: 41px;
}

main #product_price .with_rent {
  text-align: center;
  margin-top: 45px;
}

main #product_price .with_rent .item {
  width: 32%;
  display: inline-block;
  vertical-align: top;
}

@media only screen and (max-width: 980px) {
  main #product_price .with_rent .item {
    width: 100%;
    margin-top: 30px;
  }
}

main #product_price .with_rent .item h5 {
  font-family: "Ubuntu-Bold";
  font-weight: bold;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #18191F;
  margin-top: 10px;
}

@media only screen and (max-width: 1300px) {
  main #product_price .with_rent .item h5 {
    font-size: 20px;
    line-height: 26px;
  }
}

main #product_price .with_rent .item p {
  max-width: 350px;
  margin: 0 auto;
  font-family: "Ubuntu-Regular";
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: #18191F;
  margin-top: 8px;
}

@media only screen and (max-width: 1300px) {
  main #product_price .with_rent .item p {
    font-size: 12px;
    line-height: 20px;
  }
}

main #parameters {
  max-width: 650px;
  width: 90%;
  margin: 83px auto;
  text-align: center;
}

main #parameters h2 {
  font-family: "Ubuntu-Light";
  font-weight: 300;
  font-size: 34px;
  line-height: 45px;
  color: #F03FB7;
}

main #parameters table {
  border: 0;
  border-collapse: collapse;
  margin-top: 48px;
  width: 100%;
}

main #parameters table tr {
  border-top: solid 1px #c0c0c0;
}

main #parameters table tr:last-of-type {
  border-bottom: solid 1px #c0c0c0;
}

main #parameters table tr td {
  padding: 15px 10px;
  font-family: Arial;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
  text-align: left;
}

main #contact {
  width: 100%;
  background: #EDF5F7;
  padding: 117px 0px 94px 0px;
}

main #contact .row {
  max-width: 1465px;
  width: 95%;
  margin: 0 auto;
}

main #contact .row .content {
  width: 48%;
  max-width: 593px;
  float: left;
}

main #contact .row .content h2 {
  font-family: "Ubuntu-Regular";
  font-size: 34px;
  line-height: 39px;
  color: #000000;
  margin-bottom: 21px;
}

main #contact .row .content p {
  font-size: 14px;
  line-height: 22px;
}

@media only screen and (max-width: 920px) {
  main #contact .row .content {
    clear: both;
    width: 100%;
    padding-bottom: 50px;
    float: none;
    margin: 0 auto;
    text-align: center;
  }
}

main #contact .row form {
  max-width: 720px;
  width: 48%;
  float: right;
}

main #contact .row form input {
  width: 100%;
  height: 60px;
  border: 1px solid #000000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #EDF5F7;
  outline: none;
  line-height: 60px;
  font-size: 14px;
  color: black;
  box-sizing: border-box;
  padding-left: 40px;
  margin-bottom: 12px;
}

main #contact .row form input::-webkit-input-placeholder {
  color: black;
}

main #contact .row form input:-ms-input-placeholder {
  color: black;
}

main #contact .row form input::-ms-input-placeholder {
  color: black;
}

main #contact .row form input::placeholder {
  color: black;
}

main #contact .row form input.half {
  max-width: 340px;
  width: 48%;
}

main #contact .row form input.half:nth-child(odd) {
  float: left;
}

main #contact .row form input.half:nth-child(even) {
  float: right;
}

main #contact .row form textarea {
  width: 100%;
  height: 90px;
  border: 1px solid #000000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #EDF5F7;
  outline: none;
  line-height: 16px;
  padding-top: 22px;
  font-size: 14px;
  color: black;
  box-sizing: border-box;
  padding-left: 40px;
  margin-bottom: 12px;
  font-family: "Ubuntu-Regular";
  font-weight: 0;
}

main #contact .row form textarea::-webkit-input-placeholder {
  color: black;
}

main #contact .row form textarea:-ms-input-placeholder {
  color: black;
}

main #contact .row form textarea::-ms-input-placeholder {
  color: black;
}

main #contact .row form textarea::placeholder {
  color: black;
}

main #contact .row form input[type="submit"] {
  background: #2CB684;
  width: 220px;
  height: 43px;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  line-height: 43px;
  font-size: 14px;
  color: white;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  padding-left: 0px;
  -webkit-transition: 500ms;
  transition: 500ms;
  font-family: "Ubuntu-Bold";
}

main #contact .row form input[type="submit"]:hover {
  background-color: #F03FB7;
}

@media only screen and (max-width: 920px) {
  main #contact .row form {
    clear: both;
    margin-top: 50px;
    width: 100%;
    float: none;
    margin: 0 auto;
    text-align: center;
  }
}

main #price_list {
  max-width: 1630px;
  text-align: center;
  width: 95%;
  margin: 0 auto;
}

main #price_list h1 {
  margin-top: 66px;
  font-family: "Ubuntu-Regular";
  font-weight: normal;
  font-size: 64px;
  line-height: 64px;
  color: #000000;
}

main #price_list p.under_headline {
  margin-top: 44px;
  font-family: "Ubuntu-Light";
  font-size: 24px;
  line-height: 24px;
  letter-spacing: -0.015em;
  margin-bottom: 50px;
}

main #price_list .price {
  width: 440px;
  height: 652px;
  display: none;
  background: #EBF8FF;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  overflow: hidden;
  margin: 36px 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(32% - 100px);
  -webkit-transition: 300ms;
  transition: 300ms;
}

main #price_list .price.p_1, main #price_list .price.p_2, main #price_list .price.p_3, main #price_list .price.p_4, main #price_list .price.p_5, main #price_list .price.p_6 {
  display: inline-block;
}

@media only screen and (max-width: 1366px) {
  main #price_list .price {
    height: 600px;
    margin: 36px 30px;
    width: calc(32% - 60px);
  }
}

@media only screen and (max-width: 1024px) {
  main #price_list .price {
    margin: 36px 50px;
    width: calc(49% - 100px);
  }
}

@media only screen and (max-width: 800px) {
  main #price_list .price {
    margin: 36px 20px;
    width: calc(49% - 40px);
  }
}

@media only screen and (max-width: 650px) {
  main #price_list .price {
    margin: 36px 0px;
    width: 100%;
  }
}

main #price_list .price h2 {
  font-family: "Ubuntu-Bold";
  font-weight: bold;
  font-size: 36px;
  line-height: 48px;
  text-align: center;
  color: #0B162B;
  margin-top: 50px;
  height: 48px;
  overflow: hidden;
}

main #price_list .price h2.smaller_font {
  font-size: 24px;
  line-height: 24px;
}

main #price_list .price h2 a {
  color: #0B162B;
  text-decoration: none;
}

@media only screen and (max-width: 1366px) {
  main #price_list .price h2 {
    font-size: 30px;
    line-height: 36px;
    height: 36px;
  }
  main #price_list .price h2.smaller_font {
    font-size: 20px;
    line-height: 20px;
    height: 40px;
  }
}

main #price_list .price .obr {
  display: block;
  width: 103px;
  height: 103px;
  border-radius: 51px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 14px auto;
}

main #price_list .price .obr img {
  display: none;
}

main #price_list .price .price_headline {
  font-family: "Ubuntu-Bold";
  font-size: 72px;
  line-height: 90px;
  text-align: center;
  color: #0B162B;
  margin-top: 0px;
}

@media only screen and (max-width: 1366px) {
  main #price_list .price .price_headline {
    font-size: 60px;
    line-height: 80px;
  }
}

main #price_list .price .monthly {
  font-family: "Ubuntu-Light";
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #0B162B;
  margin-top: 0px;
}

@media only screen and (max-width: 1366px) {
  main #price_list .price .monthly {
    font-size: 16px;
    line-height: 24px;
  }
}

main #price_list .price .information {
  font-family: "Ubuntu-Bold";
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #000000;
  opacity: 0.5;
  margin-top: 9px;
  height: 60px;
  overflow: hidden;
}

main #price_list .price .information.taller {
  height: 90px;
}

@media only screen and (max-width: 1366px) {
  main #price_list .price .information {
    font-size: 16px;
    line-height: 24px;
    height: 48px;
  }
}

main #price_list .price .describe {
  font-family: "Ubuntu-Regular";
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #0B162B;
  max-width: 350px;
  margin: 26px auto;
  opacity: 0.5;
}

@media only screen and (max-width: 1366px) {
  main #price_list .price .describe {
    font-size: 16px;
    line-height: 24px;
  }
}

main #price_list .price .take_this {
  text-decoration: none;
  height: 60px;
  max-width: 350px;
  width: 95%;
  display: inline-block;
  background: #F03FB7;
  font-family: "Ubuntu-Bold";
  font-size: 14px;
  line-height: 60px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

main #price_list .price .take_this:hover {
  background-color: #FBA237;
}

main #price_list .show_all_var {
  display: inline-block;
  max-width: 478px;
  height: 82px;
  width: 100%;
  background-color: black;
  font-family: "Ubuntu-Bold";
  font-size: 14px;
  line-height: 82px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
  margin-top: 130px;
}

main #price_list .show_all_var:hover {
  background-color: #F03FB7;
}

main #price_list p.price_hl {
  margin-top: 171px;
  margin-bottom: 114px;
  font-family: "Ubuntu-Bold";
  font-style: normal;
  font-weight: 300;
  font-size: 64px;
  line-height: 74px;
  text-align: center;
  color: #000000;
  font-family: "Ubuntu-Light";
}

@media only screen and (max-width: 980px) {
  main #price_list p.price_hl {
    font-size: 50px;
    line-height: 56px;
  }
}

@media only screen and (max-width: 800px) {
  main #price_list p.price_hl {
    font-size: 36px;
    line-height: 42px;
  }
}

main #price_list p.price_hl strong {
  color: #F03FB7;
  font-family: "Ubuntu-Bold";
}

main #price_list p.price_hl span {
  font-size: 48px;
  line-height: 55px;
}

@media only screen and (max-width: 980px) {
  main #price_list p.price_hl span {
    font-size: 40px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 800px) {
  main #price_list p.price_hl span {
    font-size: 24px;
    line-height: 32px;
  }
}

main #blog {
  max-width: 1600px;
  width: 95%;
  margin: 0 auto;
  text-align: center;
}

main #blog h1 {
  font-family: "Ubuntu-Regular";
  font-weight: normal;
  font-size: 45px;
  line-height: 65px;
  color: #000000;
  margin-top: 73px;
}

main #blog #categories {
  font-family: "Ubuntu-Light";
  font-size: 14px;
  line-height: 40px;
  color: #181818;
  margin-top: 67px;
  margin-bottom: 83px;
}

main #blog #categories a {
  border-radius: 4px;
  background-color: #7688A1;
  line-height: 40px;
  color: white;
  text-decoration: none;
  display: inline-block;
  padding: 0px 25px;
  margin: 17px 17px;
  -webkit-transition: ease-in-out 500ms;
  transition: ease-in-out 500ms;
  text-transform: uppercase;
}

main #blog #categories a.active, main #blog #categories a:hover {
  background-color: #F03FB7;
}

main #blog .post {
  margin: 0px 20px 60px 20px;
  width: calc(32% - 40px);
  max-width: 500px;
  height: 534px;
  display: inline-block;
}

@media only screen and (max-width: 1366px) {
  main #blog .post {
    height: 494px;
  }
}

@media only screen and (max-width: 1200px) {
  main #blog .post {
    height: 434px;
  }
}

@media only screen and (max-width: 980px) {
  main #blog .post {
    width: calc(49% - 40px);
    max-width: 49% !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
}

@media only screen and (max-width: 720px) {
  main #blog .post {
    width: 100%;
    max-width: 100% !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
    height: 504px;
  }
}

main #blog .post.left {
  margin-left: 0px;
}

main #blog .post.right {
  margin-right: 0px;
}

main #blog .post .obr {
  display: block;
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media only screen and (max-width: 1366px) {
  main #blog .post .obr {
    height: 260px;
  }
}

@media only screen and (max-width: 1200px) {
  main #blog .post .obr {
    height: 200px;
  }
}

@media only screen and (max-width: 720px) {
  main #blog .post .obr {
    height: 250px;
  }
}

main #blog .post h2 {
  font-family: "Ubuntu-Light";
  font-weight: 300;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: -0.015em;
  margin-top: 20px;
  height: 48px;
  overflow: hidden;
  text-align: left;
}

main #blog .post h2 a {
  color: black;
  text-decoration: none;
}

main #blog .post p {
  margin-top: 14px;
  height: 88px;
  overflow: hidden;
  font-family: "Ubuntu-Regular";
  font-size: 14px;
  line-height: 22px;
  color: #555555;
  text-align: left;
}

main #blog .post .read {
  margin-top: 20px;
  display: block;
  cursor: pointer;
  background: #7688A1;
  border-radius: 4px;
  color: white;
  text-decoration: none;
  line-height: 40px;
  height: 40px;
  width: 154px;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Ubuntu-Light";
  -webkit-transition: ease-in-out 500ms;
  transition: ease-in-out 500ms;
}

main #blog .post .read:hover {
  background-color: black;
}

main .paginator {
  text-align: center;
  margin: 50px auto 120px auto;
}

main .paginator a {
  display: inline-block;
  width: 42px;
  height: 42px;
  border-radius: 21px;
  background-color: white;
  text-decoration: none;
  line-height: 42px;
  font-family: "Ubuntu-Light";
  font-size: 15px;
  color: black;
  -webkit-transition: ease-in-out 500ms;
  transition: ease-in-out 500ms;
  margin: 5px;
}

main .paginator a:hover, main .paginator a.active {
  background-color: #FF00AD;
  color: white;
}

main #kontakt_wrap_right {
  float: right;
  max-width: 720px;
  width: calc(100% - 370px);
}

@media only screen and (max-width: 1030px) {
  main #kontakt_wrap_right {
    max-width: 600px;
  }
}

@media only screen and (max-width: 920px) {
  main #kontakt_wrap_right {
    max-width: 400px;
  }
}

@media only screen and (max-width: 720px) {
  main #kontakt_wrap_right {
    float: none;
    width: 100%;
    max-width: 100%;
    padding-bottom: 50px;
  }
}

main #kontakt_wrap_right input {
  width: 47%;
  float: left;
  border: 1px solid #000000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 58px;
  font-size: 14px;
  padding-left: 40px;
  margin-bottom: 12px;
  outline: none;
}

@media only screen and (max-width: 920px) {
  main #kontakt_wrap_right input {
    padding-left: 15px;
  }
}

main #kontakt_wrap_right input:nth-child(even) {
  float: right;
}

main #kontakt_wrap_right input::-webkit-input-placeholder {
  color: black;
}

main #kontakt_wrap_right input:-ms-input-placeholder {
  color: black;
}

main #kontakt_wrap_right input::-ms-input-placeholder {
  color: black;
}

main #kontakt_wrap_right input::placeholder {
  color: black;
}

main #kontakt_wrap_right textarea {
  width: 100%;
  float: none;
  border: 1px solid #000000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 58px;
  font-size: 14px;
  padding-left: 40px;
  margin-bottom: 12px;
  font-family: "Ubuntu-Light";
  outline: none;
}

@media only screen and (max-width: 920px) {
  main #kontakt_wrap_right textarea {
    padding-left: 15px;
  }
}

main #kontakt_wrap_right textarea::-webkit-input-placeholder {
  color: black;
}

main #kontakt_wrap_right textarea:-ms-input-placeholder {
  color: black;
}

main #kontakt_wrap_right textarea::-ms-input-placeholder {
  color: black;
}

main #kontakt_wrap_right textarea::placeholder {
  color: black;
}

main #kontakt_wrap_right input[type="submit"] {
  width: 220px;
  float: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 43px;
  font-size: 14px;
  text-align: center;
  border: none;
  padding-left: 0px;
  outline: none;
  cursor: pointer;
  background-color: #F03FB7;
  color: white;
  font-size: 14px;
  font-family: "Ubuntu-Bold";
  -webkit-transition: 500ms;
  transition: 500ms;
}

main #kontakt_wrap_right input[type="submit"]:hover {
  background-color: black;
}

main .galerie {
  text-align: left;
  max-width: 1650px;
  width: 95%;
  margin: 0 auto;
  padding-bottom: 80px;
}

main .galerie h3 {
  margin-top: 40px;
  margin-bottom: 30px;
}

main .galerie a.obr {
  display: inline-block;
  width: 18%;
  margin-left: 0.9%;
  margin-right: 0.9%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 150px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1250px) {
  main .galerie a.obr {
    width: 23%;
  }
}

@media only screen and (max-width: 960px) {
  main .galerie a.obr {
    width: 30%;
  }
}

@media only screen and (max-width: 720px) {
  main .galerie a.obr {
    width: 48%;
  }
}

main .obsah_format {
  max-width: 1050px;
  width: 95%;
  margin: 0 auto;
  padding-bottom: 80px;
}

main .obsah_format .formatovani_textu {
    max-width: 850px;
    margin: 0px auto;
}

main .obsah_format .formatovani_textu .center {
  text-align: center;
}

main .obsah_format .formatovani_textu h1 {
  font-family: "Ubuntu-Regular";
  font-weight: normal;
  font-size: 45px;
  line-height: 65px;
  color: #000000;
  margin-top: 66px;
  margin-bottom: 14px;
}

main .obsah_format .formatovani_textu h2 {
  font-family: "Ubuntu-Regular";
  font-size: 34px;
  line-height: 50px;
  color: #F03FB7;
  padding-top: 30px;
  padding-bottom: 10px;
}

main .obsah_format .formatovani_textu h3 {
  font-size: 61%;
  font-family: "Ubuntu-Regular";
  color: black;
  padding-top: 10px;
  padding-bottom: 0px;
}

main .obsah_format .formatovani_textu h4 {
  font-family: 'Ubuntu-Regular';
  color: black;
  font-size: 55%;
  font-weight: normal;
  padding-top: 10px;
  padding-bottom: 5px;
}

main .obsah_format .formatovani_textu h5 {
  font-family: 'Ubuntu-Regular';
  color: #ededed;
  font-size: 50%;
  font-weight: normal;
  padding-top: 10px;
  padding-bottom: 5px;
}

main .obsah_format .formatovani_textu p {
  font-size: 44%;
  line-height: 160%;
  color: black;
  padding-top: 10px;
  padding-bottom: 8px;
}

main .obsah_format .formatovani_textu ul {
  margin-left: 20px;
  width: calc(100%-20px);
  margin-top: 15px;
  margin-bottom: 25px;
}

main .obsah_format .formatovani_textu ul li {
  font-size: 44%;
}

main .obsah_format .formatovani_textu a {
  color: black;
}

main .obsah_format .formatovani_textu a:hover {
  text-decoration: none;
}

main .obsah_format .formatovani_textu p.velky {
  font-size: 100%;
  line-height: 170%;
}

main .obsah_format .formatovani_textu p.vyrazny {
  background-color: #ededed;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-top: 10px;
  margin-bottom: 10px;
}

main .obsah_format .formatovani_textu p.vyrazny2 {
  background-color: #F03FB7;
  color: white;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-top: 10px;
  margin-bottom: 10px;
}

main .obsah_format .formatovani_textu p.maly_1 {
  font-size: 26%;
  padding-top: 15px;
  padding-bottom: 5px;
  margin-left: auto;
  margin-right: auto;
}

main .obsah_format .formatovani_textu p.maly_2 {
  font-size: 35%;
  padding-top: 5px;
  padding-bottom: 5px;
}

main .obsah_format .formatovani_textu p.maly_3 {
  font-size: 38%;
  padding-top: 5px;
  padding-bottom: 5px;
}

main .obsah_format .formatovani_textu p.velky_1 {
  font-size: 90%;
  padding-top: 5px;
  padding-bottom: 5px;
}

main .obsah_format .formatovani_textu p.velky_2 {
  font-size: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
}

main .obsah_format .formatovani_textu p.velky_3 {
  font-size: 120%;
  padding-top: 5px;
  padding-bottom: 5px;
}

main .obsah_format .formatovani_textu p.nejvetsi {
  font-size: 150%;
  padding-top: 5px;
  padding-bottom: 5px;
}

main .obsah_format .formatovani_textu span.vyrazny {
  color: #F03FB7;
}

main .obsah_format .formatovani_textu strong {
  font-family: 'Ubuntu-Bold';
  font-size: 110%;
}

main .obsah_format .formatovani_textu strong.nejvetsi {
  font-size: 150%;
}

main .obsah_format .formatovani_textu a.a_vyrazny {
  color: #F03FB7;
}

main .obsah_format .formatovani_textu a.a_nevyrazny {
  color: gray;
}

main .obsah_format .formatovani_textu a.a_cta {
  display: inline-block;
  width: 210px;
  background-color: #F03FB7;
  text-decoration: none;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
  color: white;
  cursor: pointer;
  font-size: 75%;
}

main .obsah_format .formatovani_textu a.a_cta:hover {
  background-color: black;
}

main .obsah_format .formatovani_textu a.a_cta2 {
  display: inline-block;
  width: 210px;
  background-color: black;
  text-decoration: none;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
  color: white;
  cursor: pointer;
  font-size: 75%;
  font-weight: bold;
}

main .obsah_format .formatovani_textu a.a_cta2:hover {
  background-color: #F03FB7;
}

main .obsah_format .formatovani_textu a.a_cta3 {
  display: inline-block;
  width: 210px;
  background-color: white;
  border: solid 1px black;
  text-decoration: none;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
  color: black;
  cursor: pointer;
  font-size: 75%;
}

main .obsah_format .formatovani_textu a.a_cta3:hover {
  background-color: lightgray;
}

main .obsah_format .formatovani_textu table.table_svetla {
  margin-top: 15px;
  margin-bottom: 15px;
  border-spacing: 4px;
  max-width: 100%;
  width: 100%;
}

main .obsah_format .formatovani_textu table.table_svetla td {
  border: solid 1px black;
  text-align: center;
  padding: 7px 15px;
  margin: 3px;
  font-size: 44%;
}

main .obsah_format .formatovani_textu table td p {
  font-size: 16px;
}

main .obsah_format .formatovani_textu table.table_tmava {
  margin-top: 15px;
  margin-bottom: 15px;
  border-spacing: 4px;
  max-width: 700px;
  width: 100%;
}

main .obsah_format .formatovani_textu table.table_tmava td {
  text-align: center;
  padding: 7px 15px;
  color: white;
  background-color: #F03FB7;
  font-size: 44%;
}

main .obsah_format .formatovani_textu table td img {
  width: 100%;
}

main .obsah_format .formatovani_textu table.kontakt td img {
  width: auto;
}

main .obsah_format .formatovani_textu table td ul li, main .obsah_format .formatovani_textu table td ol li {
  font-size: 16px;
}

main .obsah_format .formatovani_textu table td ol {
  margin-left: 20px;
  text-align: left;
}

main .obsah_format .formatovani_textu table td a {
  font-size: 16px;
}

main .obsah_format .formatovani_textu img.img_vpravo {
  float: right;
  margin: 5px;
}

main .obsah_format .formatovani_textu img.img_vlevo {
  float: left;
  margin: 5px;
}

main .obsah_format .formatovani_textu img.img_100 {
  width: 100%;
  display: block;
}

main .obsah_format .formatovani_textu ul {
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}

main .obsah_format .formatovani_textu ul li {
  font-size: 44%;
  margin-bottom: 20px;
  text-align: left;
}

main .obsah_format .formatovani_textu ul.none {
  list-style: none;
}

main .obsah_format .formatovani_textu .submit {
  background-color: #F03FB7;
  border: none;
  cursor: pointer;
  font-size: 44%;
  width: 200px;
  height: 40px;
  margin-top: 35px;
}

main .obsah_format .formatovani_textu .galerie {
  text-align: left;
}

main .obsah_format .formatovani_textu .galerie h3 {
  margin-top: 40px;
  margin-bottom: 30px;
}

main .obsah_format .formatovani_textu .galerie a.obr {
  display: inline-block;
  width: 18%;
  margin-left: 0.9%;
  margin-right: 0.9%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 150px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1250px) {
  main .obsah_format .formatovani_textu .galerie a.obr {
    width: 23%;
  }
}

@media only screen and (max-width: 960px) {
  main .obsah_format .formatovani_textu .galerie a.obr {
    width: 30%;
  }
}

@media only screen and (max-width: 720px) {
  main .obsah_format .formatovani_textu .galerie a.obr {
    width: 48%;
  }
}

main .obsah_format .formatovani_textu .galerie a.obr img {
  display: none;
}

main .obsah_format .formatovani_textu iframe {
  border: 0;
  width: 33%;
}

main .obsah_format .formatovani_textu iframe {
  width: 100%;
  height: 400px;
}

main .obsah_format .formatovani_textu .obrazek {
  width: 31%;
  margin: 1%;
  height: auto;
}

main .obsah_format .formatovani_textu .strankovani {
  text-align: center;
  font-size: 44%;
  margin-top: 20px;
}

main .obsah_format .formatovani_textu .strankovani a {
  padding: 5px 10px;
  background-color: #ededed;
  text-decoration: none;
}

main .obsah_format .formatovani_textu .strankovani a:hover, main .obsah_format .formatovani_textu .strankovani a.active {
  background-color: #dfdfdf;
}

main .obsah_format .formatovani_textu .fotogalerie_nahled {
  float: left;
  width: 18%;
  margin: 0.8%;
}

main .obsah_format .formatovani_textu .fotogalerie_nahled a.obr {
  display: block;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 220px;
  margin-bottom: 20px;
}

main .obsah_format .formatovani_textu .fotogalerie_nahled a.obr img {
  display: none;
}

main .obsah_format .formatovani_textu .fotogalerie_nahled a.foto_odkaz {
  text-align: center;
  display: block;
  width: 100%;
  height: 18px;
  overflow: hidden;
  font-size: 44%;
  text-decoration: none;
}

main .obsah_format .formatovani_textu .fotogalerie_nahled p {
  text-align: center;
}

main .obsah_format .formatovani_textu .obrazek_obal {
  float: left;
  width: 18%;
  margin: 0.8%;
}

main .obsah_format .formatovani_textu .clanek_detail_galerie .obrazek_obal a.obrazek {
  display: inline-block;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 200px;
  margin-bottom: 0px;
}

main .obsah_format .formatovani_textu .clanek_detail_galerie .obrazek_obal p {
  height: 18px;
  overflow: hidden;
  text-align: center;
}

main #mapa_kontakt {
  width: 100%;
  height: 293px;
  display: block;
  background-image: url("../img/mapa.jpg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position: 50% 50%;
}

@media only screen and (max-width: 980px) {
  main #mapa_kontakt {
    height: 193px;
    background-position: 50% 0%;
  }
}

@media only screen and (max-width: 720px) {
  main #mapa_kontakt {
    background-position: 55% 0%;
  }
}

main #kontakty {
  max-width: 1120px;
  margin: 0 auto;
}

main #poptavka {
  max-width: 600px;
  width: 90%;
  margin: 0 auto 80px auto;
}

main #poptavka form input {
  width: 100%;
  height: 60px;
  border: 1px solid #000000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #ffffff;
  outline: none;
  line-height: 60px;
  font-size: 14px;
  color: black;
  box-sizing: border-box;
  padding-left: 40px;
  margin-bottom: 12px;
}

main #poptavka form input::-webkit-input-placeholder {
  color: black;
}

main #poptavka form input:-ms-input-placeholder {
  color: black;
}

main #poptavka form input::-ms-input-placeholder {
  color: black;
}

main #poptavka form input::placeholder {
  color: black;
}

main #poptavka form select {
  width: 100%;
  height: 60px;
  border: 1px solid #000000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #ffffff;
  outline: none;
  line-height: 60px;
  font-size: 14px;
  color: black;
  box-sizing: border-box;
  padding-left: 40px;
  margin-bottom: 12px;
}

main #poptavka form select::-webkit-input-placeholder {
  color: black;
}

main #poptavka form select:-ms-input-placeholder {
  color: black;
}

main #poptavka form select::-ms-input-placeholder {
  color: black;
}

main #poptavka form select::placeholder {
  color: black;
}

main #poptavka form textarea {
  width: 100%;
  height: 90px;
  border: 1px solid #000000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #ffffff;
  outline: none;
  line-height: 16px;
  padding-top: 22px;
  font-size: 14px;
  color: black;
  box-sizing: border-box;
  padding-left: 40px;
  margin-bottom: 12px;
  font-family: "Ubuntu-Regular";
  font-weight: 0;
}

main #poptavka form textarea::-webkit-input-placeholder {
  color: black;
}

main #poptavka form textarea:-ms-input-placeholder {
  color: black;
}

main #poptavka form textarea::-ms-input-placeholder {
  color: black;
}

main #poptavka form textarea::placeholder {
  color: black;
}

main #poptavka form input[type="submit"] {
  background: #2CB684;
  width: 220px;
  height: 43px;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  line-height: 43px;
  font-size: 14px;
  color: white;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  padding-left: 0px;
  -webkit-transition: 500ms;
  transition: 500ms;
  font-family: "Ubuntu-Bold";
}

main #poptavka form input[type="submit"]:hover {
  background-color: #F03FB7;
}

/* === FOOTER === */
footer {
  width: 100%;
  background-color: #7688A1;
  background-image: url("../img/footer.png"), url("../img/footer_background_circle.png");
  background-repeat: no-repeat, no-repeat;
  background-size: initial, initial;
  background-position: 80% 100%, 100% 50%;
  height: 244px;
}

footer .row {
  max-width: 1730px;
  width: 95%;
  margin: 0 auto;
}

footer .row .left, footer .row .center, footer .row .right {
  float: left;
  width: 33%;
}

footer .row .left {
  text-align: left;
  padding-top: 113px;
}

footer .row .left p {
  font-family: "Ubuntu-Regular";
  font-size: 14px;
  line-height: 22px;
  color: #FFFFFF;
}

footer .row .left p a {
  white-space: nowrap;
  color: white;
  text-decoration: none;
}

footer .row .left p a:hover {
  text-decoration: underline;
}

footer .row .center {
  text-align: center;
  padding-top: 113px;
}

footer .row .center p {
  font-family: "Ubuntu-Regular";
  font-size: 14px;
  line-height: 22px;
  color: #FFFFFF;
}

footer .row .center p a {
  color: white;
  text-decoration: none;
  margin: 0 7px;
}

footer .row .center p a:hover {
  text-decoration: underline;
}

footer .row .center p a:hover img.n {
  display: none;
}

footer .row .center p a:hover img.c {
  display: inline-block;
}

footer .row .center p a img {
  -webkit-transition: ease-in-out 500ms;
  transition: ease-in-out 500ms;
}

footer .row .center p a img.c {
  display: none;
}

footer .row .right {
  text-align: right;
  padding-top: 113px;
}

footer .row .right p {
  font-family: "Ubuntu-Regular";
  font-size: 14px;
  line-height: 22px;
  color: #FFFFFF;
}

footer .row .right p a {
  color: white;
  text-decoration: none;
  margin: 0 7px;
}

footer .row .right p a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 1024px) {
  footer {
    background-image: url(../img/footer_background_circle.png);
  }
}

@media only screen and (max-width: 800px) {
  footer .row .left, footer .row .center, footer .row .right {
    width: 100%;
    text-align: center;
    float: none;
    padding-top: 35px;
  }
}

/* === MIXINS === */
/* === JQUERY UI OWN STYLE ===*/
.ui-widget.ui-widget-content {
  border: none;
}

.ui-slider-horizontal {
  height: 7px;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: none;
  font-weight: normal;
  background-color: black;
  width: 29px;
  height: 29px;
  border-radius: 15px;
  outline: none;
}

.ui-widget-header {
  background-color: white;
}

/* === FONTS === */
@font-face {
  font-family: "Ubuntu-Regular";
  src: url("../font/Ubuntu-Regular.eot");
  /* IE9 Compat Modes */
  src: url("../font/Ubuntu-Regular.eot?#iefix") format("embedded-opentype"), url("../font/Ubuntu-Regular.otf") format("opentype"), url("../font/Ubuntu-Regular.svg") format("svg"), url("../font/Ubuntu-Regular.ttf") format("truetype"), url("../font/Ubuntu-Regular.woff") format("woff"), url("../font/Ubuntu-Regular.woff2") format("woff2");
  /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Ubuntu-Bold";
  src: url("../font/Ubuntu-Bold.eot");
  /* IE9 Compat Modes */
  src: url("../font/Ubuntu-Bold.eot?#iefix") format("embedded-opentype"), url("../font/Ubuntu-Bold.otf") format("opentype"), url("../font/Ubuntu-Bold.svg") format("svg"), url("../font/Ubuntu-Bold.ttf") format("truetype"), url("../font/Ubuntu-Bold.woff") format("woff"), url("../font/Ubuntu-Bold.woff2") format("woff2");
  /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Ubuntu-Light";
  src: url("../font/Ubuntu-Light.eot");
  /* IE9 Compat Modes */
  src: url("../font/Ubuntu-Light.eot?#iefix") format("embedded-opentype"), url("../font/Ubuntu-Light.otf") format("opentype"), url("../font/Ubuntu-Light.svg") format("svg"), url("../font/Ubuntu-Light.ttf") format("truetype"), url("../font/Ubuntu-Light.woff") format("woff"), url("../font/Ubuntu-Light.woff2") format("woff2");
  /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Manrope-Regular";
  src: url("../font/Manrope-Regular.eot");
  /* IE9 Compat Modes */
  src: url("../font/Manrope-Regular.eot?#iefix") format("embedded-opentype"), url("../font/Manrope-Regular.otf") format("opentype"), url("../font/Manrope-Regular.svg") format("svg"), url("../font/Manrope-Regular.ttf") format("truetype"), url("../font/Manrope-Regular.woff") format("woff"), url("../font/Manrope-Regular.woff2") format("woff2");
  /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}

/* KONTAKT FORM */
#kontakt_form_odpoved {
  padding: 0px;
  font-weight: bold;
  color: #9f131c;
  text-align: left;
  font-size: 16px;
  font-family: "Ubuntu-Light";
}

#kontakt_form_odpoved_ok {
  padding: 0px;
  font-weight: bold;
  color: #2aa95d;
  text-align: left;
}

#kontakt_form_odpoved_nacitaci {
  height: 0px;
  display: none;
  position: relative;
}

#kontakt_form_odpoved_nacitaci img {
  height: 30px;
  text-align: center;
  position: absolute;
  top: -80px;
  left: 47%;
}

@media only screen and (max-width: 820px) {
  #kontakt_form_odpoved_nacitaci img {
    height: 30px;
    text-align: center;
    position: absolute;
    top: -80px;
    left: 47%;
  }
}