@charset "UTF-8";
/**
@author: Ján Priskin
@copyright www.priskin.sk
**/
/* CEI font */
@font-face {
  font-family: 'Coolvetica Rg';
  src: url("../fonts/CoolveticaRg-Regular.woff2") format("woff2"), url("../fonts/CoolveticaRg-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ----------- */
html,
body {
  height: 100%;
  width: 100%;
  font: normal 300 20px "Poppins", sans-serif;
  color: #FFF;
}

body {
  margin: 0;
  overflow-x: hidden;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
}

@media screen and (min-width: 3000px) {
  body {
    zoom: calc((100% / 15) * 30);
  }
}

/* ----------- */
b, strong {
  font-family: "Coolvetica Rg", sans-serif;
  font-weight: normal;
  font-size: 22px;
  font-size: 1.1rem;
}

p {
  margin-bottom: 2.25rem;
  line-height: 1.525;
}

/* ----------- */
a, a:hover, a:focus,
button, button:hover, button:focus,
input[type=submit], input[type=submit]:hover, input[type=submit]:focus {
  text-decoration: none;
  outline: 0;
}

a, [type=submit] {
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}

[href^="mailto:"] {
  white-space: nowrap;
}

a {
  color: inherit;
  text-decoration: underline;
}

a:hover, a:focus {
  text-decoration: none;
  color: inherit;
}

/* ----------- */
/* HEADINGS */
h1, .h1, h2, h3, h4, h5 {
  font-family: "Coolvetica Rg", sans-serif;
  font-weight: normal;
  line-height: 1.3;
}

h1, .h1,
h2 {
  margin-bottom: 1rem;
  font-size: 30px;
  font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
  h1, .h1,
  h2 {
    margin-bottom: 2.5rem;
    font-size: 50px;
    font-size: 2.5rem;
  }
}

/* ----------- */
/* BOOTSTRAP GRID */
.container {
  max-width: none;
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (min-width: 600px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    padding-left: 69px;
    padding-right: 69px;
  }
}

/* ----------- */
/* FORM ELEMENTS */
.btn {
  border-radius: 0;
  border: 0;
  padding-left: 2.75rem;
  padding-right: 2.75rem;
  font-family: "Coolvetica Rg", sans-serif;
  font-size: 22px;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  overflow: hidden;
}

.btn-default {
  background: #9e3387;
  color: #FFF;
}

.btn-default:hover, .btn-default:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #452b64;
  color: #FFF;
}

label, input {
  height: 40px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  place-items: center;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.form-control {
  border-radius: 0;
  border: 0;
  border-bottom: 3px solid #9e3387;
  background: none;
  height: 40px;
  padding-left: 0;
  font-family: "Poppins", sans-serif;
  color: #FFF;
}

.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #9e3387;
  background: inherit;
  color: inherit;
}

.form-control::-webkit-input-placeholder {
  color: #052e5c;
}

.form-control:-moz-placeholder {
  color: #052e5c;
}

.form-control::-moz-placeholder {
  color: #052e5c;
}

.form-control:-ms-input-placeholder {
  color: #052e5c;
}

/* ----------- */
/* custom checkbox */
.ccheck {
  height: auto;
  display: block;
  position: relative;
  margin-bottom: 5px;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  /* Hide the browser's default checkbox */
}

.ccheck input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.ccheck:hover input ~ .checkmark {
  -webkit-box-shadow: inset 0 0 0 10px #9e3387;
          box-shadow: inset 0 0 0 10px #9e3387;
}

.ccheck input:checked ~ .checkmark {
  background: #9e3387;
}

/* Create a custom checkbox */
.checkmark {
  -webkit-box-shadow: inset 0 0 0 3px #9e3387;
          box-shadow: inset 0 0 0 3px #9e3387;
  border-radius: 50%;
  height: 19px;
  width: 19px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

/* ----------- */
/* MENU - TOGGLE */
#menu-toggle {
  width: 40px;
  height: 40px;
  padding: 7px;
  position: absolute;
  top: 15px;
  right: 10px;
  z-index: 9;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: pointer;
}

#menu-toggle .nav-icon {
  position: relative;
}

#menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #cd4096;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#menu-toggle span:nth-child(1) {
  top: 0;
}

#menu-toggle.open span:nth-child(1),
#menu-toggle.open span:nth-child(4),
#menu-toggle span:nth-child(2),
#menu-toggle span:nth-child(3) {
  top: 11px;
}

#menu-toggle span:nth-child(4) {
  top: 22px;
}

#menu-toggle.open span:nth-child(1),
#menu-toggle.open span:nth-child(4) {
  width: 0%;
  left: 50%;
}

#menu-toggle.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

#menu-toggle.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#navbar.fixed #menu-toggle {
  top: 5px;
}

@media screen and (min-width: 1024px) {
  #menu-toggle {
    display: none;
  }
}

/* ----------- */
/* NAVBAR */
#navbar {
  background: #452b64;
  width: 100%;
  height: 70px;
  padding: 0;
  font-size: 24px;
  font-size: 1.2rem;
  color: #cd4096;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
  place-content: center;
}

#navbar.open nav {
  display: block;
}

#navbar.fixed {
  height: 50px;
}

#navbar.fixed .logo {
  height: 30px;
}

#navbar .col:first-child {
  place-self: center;
}

#navbar nav {
  height: auto;
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: none;
  position: relative;
}

#navbar .logo {
  height: 48px;
  text-decoration: none;
  color: #cd4096;
}

#navbar .logo .claim {
  margin-left: 10px;
}

#navbar .logo:hover {
  color: #fee6c6;
}

@media screen and (min-width: 1024px) {
  #navbar {
    height: 86px;
  }
  #navbar.fixed {
    height: 66px;
  }
  #navbar nav {
    height: 100%;
    display: inherit;
    -webkit-box-flex: 0;
       -moz-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-ordinal-group: 3;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #navbar nav:before {
    display: none;
  }
  #navbar .logo {
    margin: 0;
  }
}

@media screen and (min-width: 1200px) {
  #navbar {
    height: 86px;
  }
  #navbar.fixed {
    height: 66px;
  }
  #navbar.fixed .logo {
    height: 38px;
  }
  #navbar .logo {
    height: 48px;
  }
}

/* ----------- */
/* MAIN MENU */
#main-menu {
  border-bottom: 1px solid rgba(205, 64, 150, 0.5);
  background: rgba(69, 43, 100, 0.95);
  width: 100vw;
  max-height: calc(100vh - 70px);
  list-style: none;
  margin: 10px -15px 0;
  padding: 0;
  font-family: "Coolvetica Rg", sans-serif;
  position: absolute;
  overflow-y: auto;
  display: none;
}

#main-menu > li {
  border-top: 1px solid rgba(205, 64, 150, 0.5);
  padding: 5px 0;
  position: relative;
}

#main-menu > li:last-child {
  padding-right: 0;
}

#main-menu > li img {
  margin-top: -3px;
}

#main-menu a {
  padding: 5px 15px;
  display: block;
  text-decoration: none;
  color: #fee6c6;
  position: relative;
  -webkit-transition: none;
  transition: none;
  word-break: normal;
}

#main-menu a:hover, #main-menu a.active {
  color: #cd4096;
}

@media screen and (min-width: 768px) {
  #main-menu {
    margin: 10px -30px 0;
  }
  #main-menu a {
    padding: 5px 30px;
  }
}

@media screen and (min-width: 1024px) {
  #main-menu {
    border: 0;
    background: none;
    width: 100%;
    height: 66px;
    margin: 0;
    padding: 0;
    display: -webkit-box !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: static;
    overflow: visible;
  }
  #main-menu:before {
    display: none;
  }
  #main-menu > li {
    border: 0;
    height: 100%;
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 15px;
    position: relative;
  }
  #main-menu > li a {
    display: block;
    padding: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
}

@media screen and (min-width: 1200px) {
  #main-menu > li {
    padding: 0 20px;
  }
}

@media screen and (min-width: 1300px) {
  #main-menu > li {
    padding: 0 32px;
  }
}

/* ----------- */
/* FOOTER */
#footer {
  background: #052e5c;
  padding-top: 25px;
  padding-bottom: 15px;
  text-align: center;
  font-weight: 200;
  font-size: 15px;
  font-size: 0.75rem;
  color: #FFF;
  position: relative;
  z-index: 1;
}

#footer .col-sm-auto {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

#footer .logo {
  height: 57px;
  margin: 0 auto 10px;
  place-self: center;
}

#footer .logo g {
  fill: #FFF;
}

#footer p {
  margin: 10px 0 0;
  line-height: 1.6;
}

#footer a {
  color: inherit;
}

@media screen and (min-width: 576px) {
  #footer {
    text-align: inherit;
  }
  #footer p {
    margin: 0;
  }
}

@media screen and (min-width: 768px) {
  #footer {
    font-size: 17px;
    font-size: 0.85rem;
  }
  #footer .logo {
    opacity: .25;
  }
}

@media screen and (min-width: 1024px) {
  #footer {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  #footer .container-fluid {
    padding: 0 74px !important;
  }
  #footer [class*=col] {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 1280px) {
  #footer {
    padding-top: 58px;
    padding-bottom: 59px;
  }
  #footer [class*=col] {
    padding-left: 26px;
    padding-right: 26px;
  }
}

@media screen and (min-width: 1600px) {
  #footer {
    min-height: 219px;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    place-items: center;
  }
}

/* ----------- */
/* ----------- */
.logo {
  display: block;
}

.logo .svg,
.logo img {
  width: auto;
  height: 100%;
}

/* ----------- */
#wrapper {
  background: #e34483;
  background: -webkit-gradient(linear, left top, right top, from(#e34483), color-stop(26%, #a33489), color-stop(67%, #612e72), to(#272854));
  background: linear-gradient(to right, #e34483 0%, #a33489 26%, #612e72 67%, #272854 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e34483', endColorstr='#272854',GradientType=1 );
  min-height: 100vh;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow: hidden;
}

#content {
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* ----------- */
section {
  position: relative;
  z-index: 5;
}

section .container {
  position: relative;
  z-index: 4;
}

/* ----------- */
/* UVOD */
#uvod {
  padding-top: 100px;
  padding-bottom: 140px;
}

#uvod .holder {
  padding-bottom: 100px;
}

#uvod h1 {
  margin-bottom: 50px;
}

#uvod #panak {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 30px;
  display: block;
}

@media screen and (min-width: 500px) {
  #uvod {
    padding-bottom: 200px;
  }
}

@media screen and (min-width: 768px) {
  #uvod {
    padding-bottom: 400px;
  }
  #uvod #panak {
    max-width: 500px;
  }
}

@media screen and (min-width: 1024px) {
  #uvod {
    padding-top: 216px;
  }
  #uvod h1 {
    max-width: 50%;
  }
  #uvod #panak {
    position: absolute;
    top: -74px;
    right: 0;
  }
}

@media screen and (min-width: 1200px) {
  #uvod {
    padding-top: 216px;
    padding-bottom: 200px;
  }
  #uvod .holder {
    max-width: 580px;
  }
  #uvod h1 {
    max-width: none;
    margin-bottom: 196px;
  }
  #uvod #panak {
    width: 700px;
    max-width: none;
    margin: 0;
    top: -56px;
    right: 30px;
  }
}

@media screen and (min-width: 1600px) {
  #uvod {
    padding-top: 216px;
    padding-bottom: 0;
  }
  #uvod #panak {
    width: 900px;
    top: -74px;
    right: 39px;
  }
}

/* ----------- */
/* KDO JSEM */
#section-2 {
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
  z-index: 6;
}

#section-2:before {
  content: "";
  background: #F2A475 url("../img/backgrounds/bg-5b.png") 100% 0 repeat;
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: -15%;
  left: 0;
}

#section-2 .fotka {
  max-width: 260px;
  margin: 60px auto;
  display: block;
}

@media screen and (min-width: 768px) {
  #section-2 {
    padding-top: 115px;
  }
}

@media screen and (min-width: 1024px) {
  #section-2 {
    padding-top: 178px;
    padding-bottom: 0;
  }
  #section-2 .fotka {
    max-width: 100%;
    margin: 106px auto 0;
    position: relative;
    left: 10px;
  }
}

#kdo-jsem {
  padding-bottom: 40px;
  position: relative;
  z-index: 6;
}

#vyzkum {
  position: relative;
  margin-top: -300px;
}

#vyzkum .media {
  place-items: center;
  margin-bottom: 30px;
}

#vyzkum .media-body {
  max-width: 70%;
  margin-left: 15px;
}

#vyzkum img {
  width: 50px;
}

@media screen and (min-width: 500px) {
  #vyzkum {
    margin-top: -360px;
  }
  #vyzkum .media {
    width: 49.4%;
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

@media screen and (min-width: 600px) {
  #vyzkum {
    color: #da67a2;
  }
  #vyzkum .media-body {
    max-width: 50%;
  }
}

@media screen and (min-width: 768px) {
  #vyzkum {
    width: 671px;
    height: 508px;
    margin: 0;
    padding-top: 23px;
    font-size: 20px;
    font-size: 1rem;
    position: absolute;
    top: -660px;
    right: 30px;
  }
  #vyzkum .media {
    width: auto;
    margin: 0;
    place-items: inherit;
    position: absolute;
  }
  #vyzkum .media-body {
    max-width: none;
    margin: 0;
    position: absolute;
    top: 0;
  }
  #vyzkum .item-1 {
    top: 129px;
    left: 52px;
  }
  #vyzkum .item-1 img {
    width: 139px;
  }
  #vyzkum .item-1 .media-body {
    width: 120px;
    top: -11px;
    left: 114px;
  }
  #vyzkum .item-2 {
    top: 0;
    right: 19px;
  }
  #vyzkum .item-2 img {
    width: 133px;
  }
  #vyzkum .item-2 .media-body {
    position: relative;
    width: 94px;
    top: 15px;
    left: 19px;
  }
  #vyzkum .item-3 {
    place-content: flex-end;
    bottom: 0;
    right: 0;
  }
  #vyzkum .item-3 img {
    width: 139px;
    -webkit-box-ordinal-group: 3;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #vyzkum .item-3 .media-body {
    width: 150px;
    left: auto;
    right: 107px;
  }
  #vyzkum .item-4 {
    left: 272px;
    top: 280px;
  }
  #vyzkum .item-4 img {
    width: 80px;
  }
  #vyzkum .item-4 .media-body {
    width: 140px;
    top: calc(100% + 21px);
  }
}

@media screen and (min-width: 1200px) {
  #vyzkum {
    top: -530px;
  }
}

@media screen and (min-width: 1300px) {
  #vyzkum {
    top: -465px;
  }
}

/* ----------- */
/* OBJEDNANI */
#objednani {
  padding: 46px 0 34px;
  position: relative;
}

#objednani .timepicker-cf {
  height: 62px;
  width: 100%;
}

#objednani .timepicker {
  background: #fee6c6;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(15%, rgba(254, 230, 198, 0.77)), color-stop(31%, #fee6c6), color-stop(69%, #fee6c6), color-stop(85%, rgba(254, 230, 198, 0.77)), to(transparent));
  background: linear-gradient(to right, transparent 0%, rgba(254, 230, 198, 0.77) 15%, #fee6c6 31%, #fee6c6 69%, rgba(254, 230, 198, 0.77) 85%, transparent 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00fee6c6', endColorstr='#00fee6c6',GradientType=1 );
  width: 100%;
  height: 0;
  color: #9e3387;
  position: absolute;
  top: 0;
  z-index: 1;
  overflow: hidden;
}

#objednani .timepicker .slick .slick-slide {
  height: 62px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  place-content: center;
  place-items: center;
  position: relative;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

#objednani .timepicker .slick .slick-slide:focus {
  outline: 0;
}

#objednani .timepicker .slick .slick-slide:hover {
  font-weight: bold;
}

#objednani .timepicker .slick .slick-current {
  font-size: 28px;
  font-size: 1.4rem;
  font-weight: bold;
}

#objednani .timepicker .slick .slick-arrow {
  border: 0;
  background: url("../img/icons/arrow.svg") 50% 50% no-repeat;
  background-size: auto 32px;
  width: 32px;
  height: 32px;
  text-indent: -999em;
  position: absolute;
  top: 15px;
  z-index: 20;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: pointer;
}

#objednani .timepicker .slick .slick-prev {
  left: 0;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

#objednani .timepicker .slick .slick-prev:hover {
  left: 5px;
}

#objednani .timepicker .slick .slick-next {
  right: 0;
}

#objednani .timepicker .slick .slick-next:hover {
  right: 5px;
}

#calendar {
  overflow: hidden;
  position: relative;
  color: #FFF;
}

#calendar .ui-datepicker {
  display: none;
  width: 100%;
  margin: auto;
  padding: 30px 0;
  text-transform: lowercase;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#calendar .ui-datepicker .ui-datepicker-header {
  position: relative;
  margin-bottom: 54px;
  text-align: center;
  font-family: "Coolvetica Rg", sans-serif;
  font-size: 22px;
  font-size: 1.1rem;
}

#calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-title .ui-datepicker-month {
  position: relative;
  padding-right: 5px;
}

#calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
#calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  background: url("../img/icons/arrow.svg") 50% 50% no-repeat;
  background-size: auto 32px;
  width: 32px;
  height: 32px;
  position: absolute;
  top: -4px;
  cursor: pointer;
}

#calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-prev span,
#calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-next span {
  display: none;
}

#calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
  left: 0;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

#calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-prev:hover {
  left: 5px;
}

#calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  right: 0;
}

#calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-next:hover {
  right: 5px;
}

#calendar .ui-datepicker .ui-datepicker-calendar {
  border-collapse: collapse;
  width: 100%;
  margin: auto;
  text-align: center;
  font-size: 18px;
  font-size: 0.9rem;
}

#calendar .ui-datepicker .ui-datepicker-calendar tr {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

#calendar .ui-datepicker .ui-datepicker-calendar tr > td {
  border-left-width: 15px;
}

#calendar .ui-datepicker .ui-datepicker-calendar tr + tr > td {
  border-top-width: 4px;
}

#calendar .ui-datepicker .ui-datepicker-calendar th {
  padding-bottom: 31px;
  font-family: "Coolvetica Rg", sans-serif;
  font-weight: normal;
  font-size: 22px;
  font-size: 1.1rem;
}

#calendar .ui-datepicker .ui-datepicker-calendar td {
  border: 0 solid transparent;
  background-clip: padding-box;
  padding: 0;
  font-weight: 300;
}

#calendar .ui-datepicker .ui-datepicker-calendar td a {
  height: 40px;
  line-height: 40px;
  margin: auto;
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#calendar .ui-datepicker .ui-datepicker-calendar td a:hover {
  background: rgba(158, 51, 135, 0.5);
}

#calendar .ui-datepicker .ui-datepicker-calendar td span {
  pointer-events: none;
  opacity: .25;
}

#calendar .ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day.open {
  margin-bottom: 100px;
}

#calendar .ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day a {
  background: #9e3387 !important;
}

@media screen and (min-width: 1024px) {
  #calendar .ui-datepicker .ui-datepicker-header {
    margin-bottom: 54px;
  }
  #calendar .ui-datepicker .ui-datepicker-calendar {
    width: 90%;
    font-size: 21px;
    font-size: 1.05rem;
  }
  #calendar .ui-datepicker .ui-datepicker-calendar tr {
    border-left: 26px solid transparent;
    border-right: 26px solid transparent;
  }
  #calendar .ui-datepicker .ui-datepicker-calendar tr > td {
    border-left-width: 26px;
  }
}

form {
  width: 80%;
  margin: auto;
}

form .form-row {
  margin: 0 -30px;
}

form [class^=col] {
  padding: 0 30px !important;
}

form .form-group {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  place-content: center;
}

form .form-name {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 50px;
  -webkit-box-align: end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 13px;
}

form .form-name label {
  position: absolute;
  left: 0 !important;
  top: 7px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

form .form-name input {
  /*&:not([value=""]):invalid {
				border-bottom-color: $red;
				color: $red;
			}*/
}

form .form-name input + label.focus,
form .form-name input:focus + label {
  height: 20px;
  font-size: 0.75em;
  top: -3px;
  outline: none;
}

form .form-name:last-of-type {
  margin-bottom: 30px;
}

form .request {
  cursor: pointer;
  opacity: 1;
  position: relative;
}

form .request.disabled {
  opacity: .5;
  pointer-events: none;
}

form .disabled span {
  display: none;
}

@media screen and (min-width: 601px) {
  form .request br {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  form {
    padding-top: 49px;
  }
  form .form-name:last-of-type {
    margin-bottom: 60px;
  }
  form .request {
    height: 52px;
  }
}

/* ----------- */
/* MISTO KONANI */
#kontakt {
  background: url("../img/backgrounds/bg-6.png") 0 0 no-repeat;
  margin-top: -100px;
  z-index: 6;
  overflow: hidden;
}

#kontakt .container {
  min-height: 557px;
  padding-top: 200px;
}

#kontakt #pragensis {
  margin: 30px auto;
  display: block;
}

@media screen and (min-width: 768px) {
  #kontakt {
    margin-top: 0;
  }
  #kontakt #pragensis {
    position: absolute;
    bottom: 60px;
    right: 47px;
  }
}

@media screen and (min-width: 1024px) {
  #kontakt {
    background-position: 30% 0;
  }
  #kontakt .container {
    padding-top: 265px;
  }
}

@media screen and (min-width: 1600px) {
  #kontakt {
    background-position: 0 0;
  }
}

#map {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 300px;
  color: #052e5c;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 1200px) {
  #map {
    height: 600px;
  }
}

@media screen and (min-width: 2000px) {
  #map {
    height: 800px;
  }
}

/* ----------- */
[id^=bg] {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#bg-1 {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}

#bg-2 {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
}

#bg-3,
#bg-5 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

#bg-4 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  #bg-1 {
    width: auto;
  }
}

/* TEMP */
.slick-source {
  display: none;
}

.owl-stage.message {
  margin-left: 4vw;
  margin-top: 19px;
}

#privacy-policy {
  color: #000;
}

/*# sourceMappingURL=style.css.map */
