:root {
  --white-clr: #ffffff;
  --black-clr: #000;
  --grey-text: #6c6c6c;
  --light-grey: #2a2a2a;
  --light-bg: #f3f3f3;
  --brown-clr: #080500;
  --border-radius: 15px;
}

.cover-web-page {
  position: fixed;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2147483647;
  background: var(--black-clr) url("images/floating-header.jpg") center center no-repeat;
  background-size: cover;
  display: none;
}

.cover-web-page img {
  max-width: 350px;
  width: 100%;
  margin-bottom: 2rem;
}

/* Lightbox Kustomizace*/
.lb-outerContainer {
  background-color: var(--dark-grey) !important;
}

.lightbox .lb-image {
  border: none !important;
}

* {
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
  font-weight: 300;
}

body {
  background: var(--white-clr);
  color: var(--white-clr);
}

.project-cont {
  padding-top: 50px;
}

a,
span,
button,
input,
textarea {
  font-size: 1.15rem;
}

b {
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  margin-bottom: 1.25rem;
  line-height: 1;
}

h1 {
  font-size: 2.95rem;
  margin-bottom: 2.25rem;
}

.btns {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-clr);
  padding: 2rem 0 5rem 0;
}

.btn {
  margin: 2rem 0;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  -webkit-box-shadow: 0px 0px 23px -11px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 23px -11px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 23px -11px rgba(0, 0, 0, 0.75);
  background-color: var(--white-clr);
  cursor: pointer;
  display: block;
}

.pagetitle {
  color: var(--black-clr);
  font-size: 2.95rem;
  text-align: center;
  max-width: 680px;
  width: 100%;
  line-height: 1.25;
}

#ano .pagetitle,
#ne .pagetitle {
  position: relative;
  font-size: 1.55rem;
  padding-top: 1rem;
}

#ano .pagetitle::before,
#ano .pagetitle::after,
#ne .pagetitle::before,
#ne .pagetitle::after {
  content: "";
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translate(calc(-50% - 2px), 0) rotate(-45deg);
  width: 10px;
  height: 10px;
  border-bottom: 1px var(--black-clr) solid;
  border-left: 1px var(--black-clr) solid;
}

#ano .pagetitle::before,
#ne .pagetitle::before {
  top: -12px;
}

#ne .pagetitle::before,
#ne .pagetitle::after {
  transform: translate(calc(-100% + 6px), 0) rotate(-45deg);
}

[data-switch="ne"] > .btn {
  background-color: var(--white-clr);
  padding: 1rem 80px 1rem 1rem;
  transition: 1s;
}

.unable {
  pointer-events: none;
  opacity: 0.55;
}

h3 {
  font-size: 1.75rem;
}

h1 *,
h2 *,
h3 *,
h4 *,
h5 *,
h6 * {
  font-family: inherit;
  text-decoration: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  cursor: pointer;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
  width: 100%;
  padding: 0.5rem;
  box-shadow: none;
  border: none;
  background-color: var(--light-bg);
}
form.form input[type="text"],
form.form input[type="email"],
form.form input[type="number"],
form.form textarea {
  border-radius: 10px;
}

p,
li {
  line-height: 1.5;
  font-size: 1.15rem;
}

.loading_animation figcaption {
  font-size: 1.25rem;
}

.loading_animation img {
  opacity: 0.25;
  animation: pulse 5s ease infinite;
  transform: scale(0.5);
  max-width: 300px;
}

@keyframes pulse {
  0% {
    opacity: 0.25;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(0.8);
  }
  100% {
    opacity: 0.25;
    transform: scale(0.5);
  }
}

.content_width {
  width: 95%;
  max-width: 1900px;
}

.textbtn {
  position: relative;
  display: inline-flex;
  padding: 0.5rem 80px 0.5rem 0.5rem;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

.textbtn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  height: 1px;
  width: 60px;
  background: var(--white-clr);
}

.point-cont .textbtn::before {
  width: 25px;
}

.textbtn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translate(0, -50%) rotate(90deg);
  border-bottom: 5px var(--white-clr) solid;
  border-left: 5px transparent solid;
  border-right: 5px transparent solid;
}

.textbtn.black {
  color: var(--black-clr);
}

.textbtn.black::after {
  border-bottom: 5px var(--black-clr) solid;
}

.textbtn.black::before {
  background: var(--black-clr);
}

.btn.textbtn.black::before {
  right: 10px;
}

.btn.textbtn.black::after {
  right: 5px;
}

.backbtn {
  display: none;
}

.floating-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85%;
  min-height: 992px;
  z-index: -1;
}

.floating-header.nobanner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(15, 15, 15);
  background: -moz-linear-gradient(0deg, rgba(15, 15, 15, 0) 0%, rgba(12, 12, 12, 0.267927239255077) 30%, rgba(3, 3, 3, 0.6432773793110995) 100%);
  background: -webkit-linear-gradient(0deg, rgba(15, 15, 15, 0) 0%, rgba(12, 12, 12, 0.267927239255077) 30%, rgba(3, 3, 3, 0.6432773793110995) 100%);
  background: linear-gradient(0deg, rgba(15, 15, 15, 0) 0%, rgba(12, 12, 12, 0.267927239255077) 30%, rgba(3, 3, 3, 0.6432773793110995) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0f0f0f", endColorstr="#030303", GradientType=1);
}

.cont-cnt .floating-header {
  z-index: 1;
  height: 100%;
}

.floating-header.fx {
  position: fixed;
}

.floating-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-header .cont {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* doc header */

#document-header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  width: 100%;
  font-weight: 300;
  z-index: 3;
}

#document-header .hdr {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0 0 0;
}

#document-header .menubtn {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

#document-header .hdr .menubtn {
  margin: 0 0 0 auto;
}

#document-header .hdr > button {
  margin: 0 auto 0 0;
  padding-left: 0;
}

.textbtn.back,
#document-header .hdr > .textbtn {
  padding: 0.5rem 0.5rem 0.5rem 80px;
}

.textbtn.back::before,
#document-header .hdr > .textbtn::before {
  transform: translate(-100%, -50%);
}

.textbtn.back::after,
#document-header .hdr > .textbtn::after {
  right: unset;
  left: 0;
  transform: translate(0, -50%) rotate(-90deg);
}

#document-header .menubtn span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 2px;
  background: var(--white-clr);
  border-radius: 3px;
}

#document-header .main-nav .hdr {
  color: var(--black-clr);
}

#document-header .main-nav .hdr > .textbtn::before {
  background: var(--black-clr);
}

#document-header .main-nav .hdr > .textbtn::after {
  border-bottom: 5px var(--black-clr) solid;
}

#document-header .main-nav .hdr .menubtn span {
  background: var(--black-clr);
}

#document-header .menubtn span:first-of-type {
  top: 20%;
}

#document-header .menubtn span:last-of-type {
  top: 80%;
}

#document-header .main-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  min-width: 100vw;
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: scroll;
  pointer-events: none;
  opacity: 0;
  background: url("../images/menu.jpg") center center no-repeat;
  background-size: cover;
  z-index: 2;
  transition: 0.25s;
}

#document-header .main-nav.active {
  pointer-events: all;
  opacity: 1;
}

#document-header .main-nav .logo {
  padding: 4.65rem 0;
}

#document-header .main-nav .logo img {
  max-width: 300px;
  width: 100%;
  min-width: 80px;
}

#document-header .main-nav .grid {
  display: flex;
  padding-bottom: 5rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

#document-header .main-nav .grid article:first-of-type {
  -webkit-box-shadow: 0px 10px 33px 0px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0px 10px 33px 0px rgba(0, 0, 0, 0.23);
  box-shadow: 0px 10px 33px 0px rgba(0, 0, 0, 0.23);
}

#document-header .main-nav .grid article {
  padding: 1rem;
  transition: 0.25s;
  border-radius: var(--border-radius);
  max-width: 40%;
}

#document-header .main-nav .grid article:hover {
  -webkit-box-shadow: 0px 10px 33px 0px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0px 10px 33px 0px rgba(0, 0, 0, 0.23);
  box-shadow: 0px 10px 33px 0px rgba(0, 0, 0, 0.23);
}

#document-header .main-nav .grid > h1,
#document-header .main-nav .grid .title {
  width: 100%;
  grid-column: 1/-1;
  margin-bottom: 2rem;
  display: block;
  font-weight: 300;
}

#document-header .main-nav .grid > * {
  margin: 0 4rem 0 0;
  width: 370px;
}

#document-header .main-nav .grid .textbtn {
  padding-left: 0;
  margin-top: 1rem;
}

#document-header .main-nav .grid > article h1 {
  font-size: 1.65rem;
  font-weight: 300;
  margin-bottom: 1.15rem;
}

#document-header .main-nav .grid .title {
  font-size: 2.5rem;
  font-weight: 300;
}

/* web conent */

.header-content {
  padding: 0 0 12rem 4rem !important;
  max-width: 680px;
  width: 90%;
  margin-left: 0;
  opacity: 0;
  transform: translate(0, 15%);
}

.animation .header-content {
  animation: popshow 1s ease;
  animation-fill-mode: forwards;
}

@keyframes popshow {
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.header-content > .textbtn {
  padding-left: 0;
}

.banner.center .header-content {
  padding: 2rem 2rem 8rem 2rem !important;
  max-width: 100%;
  margin-left: auto;
  text-align: center;
}

.header-content h1 {
  line-height: 1.25;
}

.header-content h2 {
  font-size: 2.25rem;
  margin: 4rem auto 2.25rem 0;
}

.header-content ul li {
  margin-bottom: 1.25rem;
  padding-left: 20px;
  list-style-type: none;
  position: relative;
}

.header-content ul li::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  transform: translate(0, 0);
  width: 7px;
  height: 7px;
  background: var(--white-clr);
  border-radius: 50%;
}

.header-content p {
  max-width: 680px;
  margin-left: 0;
  margin-bottom: 1rem;
  width: 95%;
}

.header-content p:last-of-type {
  margin-bottom: 0;
}

.header-content.center {
  padding: 0 0 12rem 0 !important;
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  text-align: center;
}

.header-content.center .logo {
  transform: translate(0, 0);
  text-align: left;
}

.header-content.center p {
  max-width: 360px;
  margin-left: auto;
}

.banner .header-content p {
  max-width: 370px;
}

.banner.center .header-content p {
  margin-left: auto;
}

.header-content .logo {
  display: block;
  transform: translate(-4rem, 0);
  padding: 5rem 0 4rem 0;
  pointer-events: none;
  opacity: 0;
}

.animation .header-content .logo {
  animation: show 1s ease;
  animation-fill-mode: forwards;
  animation-delay: 0.75s;
}

@keyframes show {
  to {
    opacity: 1;
  }
}

.banner.center .header-content .logo {
  transform: translate(0, 0);
  text-align: center;
}

.header-content .logo img {
  max-width: 300px;
}

/* Lotus cards */

.lotus-cards {
  display: flex;
}

.lotus-cards .scr {
  position: relative;
  width: 70%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
  gap: 2rem;
}

.banner .lotus-cards .scr {
  position: absolute;
  bottom: 0;
  transform: translate(0, 40%);
  margin-right: 0;
  right: 0;
  padding-right: 2rem;
  justify-content: flex-end;
}

.lotus-page {
  padding-bottom: 2rem;
}

.lotus-page .lotus-cards .card:last-of-type {
  transform: translate(0, 0);
}

.lotus-cards .card {
  max-width: 390px;
  width: 90%;
  margin: 0;
  position: relative;
  user-select: none;
}

.lotus-cards .card.unable {
  pointer-events: all;
  opacity: 1;
}

.lotus-cards .card.unable > * {
  opacity: 0.55;
}

.lotus-cards .card.unable .info {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-weight: 500;
  opacity: 1;
  padding: 1rem;
  text-shadow: -1px -1px 10px rgb(255, 0, 0);
  max-width: 100%;
  letter-spacing: 1px;
  text-transform: up;
}

.lotus-cards .card:last-of-type {
  transform: translate(0, -15%);
}

.lotus-cards .card h2 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.35rem;
  transition: 0.75s;
}

.lotus-cards .card .textbtn {
  transition: 0.5s;
}

.lotus-cards .card figure {
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 0;
  background: url("../images/male.jpg");
  border-top-right-radius: 150px;
  border-bottom-left-radius: 150px;
  display: flex;
  position: relative;
  transition: 0.25s;
}

.lotus-cards .card:last-of-type figure {
  background: url("../images/female.jpg");
}

.lotus-cards .card:hover figure {
  transform: translate(0, -10px);
}

.lotus-cards .card figure img {
  height: auto;
  width: 80%;
  object-fit: cover;
  transform: translate(0, 30%);
  object-position: top;
  transition: 0.25s;
}

.lotus-cards .card.active figure,
.lotus-cards .card:hover figure {
  -webkit-box-shadow: -3px 6px 64px -9px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: -3px 6px 64px -9px rgba(0, 0, 0, 0.35);
  box-shadow: -3px 6px 64px -9px rgba(0, 0, 0, 0.35);
}

.lotus-cards .card:hover .textbtn,
.lotus-cards .card.active .textbtn,
.lotus-cards .card:hover h2,
.lotus-cards .card.active h2 {
  transform: translate(0, -25%);
}

.lotus-cards .card:hover figure img {
  transform: translate(0, 25%) scale(1.05);
}

/* headings */
.heading-text {
  color: var(--black-clr);
  padding: 400px 0 4rem 0;
}

.heading-text.right {
  text-align: right;
}

.heading-text .cnt {
  max-width: 420px;
  width: 95%;
}

/* banner */

.banner {
  position: relative;
  margin: 4rem auto;
  -webkit-box-shadow: 0px 10px 33px 0px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0px 10px 33px 0px rgba(0, 0, 0, 0.23);
  box-shadow: 0px 10px 33px 0px rgba(0, 0, 0, 0.23);
  border-radius: var(--border-radius);
  background-color: #00000045;
}

.banner.lotus-cont {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
}

.banner.lotus-cont.index {
  margin-bottom: 275px;
}

.banner.center {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin: 4rem auto;
}

.banner.header {
  padding: 0 2rem;
  border-radius: var(--border-radius);
}

.banner > figure {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.banner > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner.iframe h2 {
  margin: 2rem 0;
}

.banner.iframe > figure img {
  width: 150%;
  height: 150%;
  object-fit: cover;
}

.banner .cnt {
  position: relative;
  z-index: 2;
  border-radius: inherit;
}

.banner.iframe .cnt {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.banner .cnt iframe {
  width: 100%;
  height: 100%;
  border: none;
  margin-right: 0;
  position: relative;
  z-index: 1;
}

img.lotus {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  opacity: 1.05;
  pointer-events: none;
  z-index: 3;
  height: 95%;
}

.banner.iframe .cnt .text {
  padding: 3rem;
  width: 100%;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.banner.iframe .cnt .text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--black-clr);
  opacity: 0.25;
  z-index: -1;
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
}

.banner.iframe iframe:hover ~ img.lotus {
  opacity: 0.25;
}

.banner .cnt .text > p {
  margin-top: 2rem;
  margin-left: 0;
  max-width: 80%;
}

.banner .cnt .text span.icon img {
  display: inline-block;
  max-width: 20px;
  margin: 0 0.5rem 0 0;
}

.banner .cnt .text span.icon {
  display: flex;
}

.banner .cnt .text figure img {
  max-width: 270px;
}

.banner .cont h2 {
}

.banner .cont p {
}

/* Not found page 404 */
.error {
  color: red;
  font-size: 0.95rem;
}

.err-404 .banner > figure {
  display: none;
}

.err-404 .banner .header-content p {
  margin-bottom: 2rem;
}

.err-404 .banner .header-content a.textbtn {
  margin: 0 auto 0 0;
  min-width: 210px;
}

.err-404 .banner .header-content h1 {
  color: red;
}

.err-404 .banner .header-content .erbtn {
  display: block;
  width: 100%;
  text-align: left;
}

.resp-slider header {
  display: none;
}

/* masaze pro muze i zeny */

.switch {
  display: flex;
  justify-content: center;
  color: var(--black-clr);
  gap: 60px;
  margin: 2rem auto;
}

.switch [data-switch] {
  margin: 0 0 0 auto;
  text-align: right;
  max-width: 380px;
  width: 90%;
  position: relative;
  cursor: pointer;
}

.switch [data-switch] .pagetitle {
  transition: 0.75s;
  user-select: none;
  position: relative;
}

.switch [data-switch].active .pagetitle {
  color: red;
}

.switch [data-switch].active .pagetitle::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -5px;
  right: -5px;
  bottom: -3px;
  border: 1px red dashed;
  border-radius: 50%;
}

.switch [data-switch] p {
  transition: 0.25s;
}

.switch [data-switch]:hover span,
.switch [data-switch]:hover p {
  transform: translate(-20px, 0);
}

.switch [data-switch="ne"]:hover span,
.switch [data-switch="ne"]:hover p {
  transform: translate(20px, 0);
}

.switch [data-switch="ano"].active::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  right: -30px;
  width: 20px;
  border-top-right-radius: 30px;
  border-top: 2px var(--grey-text) dotted;
  border-right: 2px var(--grey-text) dotted;
  height: 30px;
}

.switch [data-switch="ano"].active::after {
  content: "";
  position: absolute;
  top: calc(1.25rem + 30px);
  right: -30px;
  width: 20px;
  height: calc(100% - 30px);
  border-right: 2px var(--grey-text) dotted;
}

.switch [data-switch="ne"].active::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: -30px;
  width: 20px;
  border-top-left-radius: 30px;
  border-top: 2px var(--grey-text) dotted;
  border-left: 2px var(--grey-text) dotted;
  height: 30px;
}

.switch [data-switch="ne"].active::after {
  content: "";
  position: absolute;
  top: calc(1.25rem + 30px);
  left: -30px;
  width: 20px;
  height: calc(100% - 30px);
  border-left: 2px var(--grey-text) dotted;
}

.switch [data-switch="ne"] {
  margin: 0 auto 0 0;
  text-align: left;
}

.switch article p {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.switch-cnt {
  position: absolute;
  width: 100%;
  pointer-events: none;
  z-index: -5;
  opacity: 0;
  left: 0;
  bottom: 0;
  transition: 0.25s;
}

.switch-cnt.active {
  animation: showcont 0.5s ease;
  animation-fill-mode: forwards;
}

.slider-header {
  text-align: center;
  display: none;
}

@keyframes showcont {
  from {
    position: relative;
    pointer-events: all;
    opacity: 0;
    transform: translate(0, 20px);
  }

  to {
    position: relative;
    pointer-events: all;
    opacity: 1;
    transform: translate(0, 0);
    z-index: 1;
  }
}

.cont-cnt {
  position: relative;
  padding: 120px 2rem;
  background-color: var(--white-clr);
}

.index-cnt .cont-cnt {
  padding: 120px 2rem 2rem 2rem;
}

.cont-cnt .cnt {
  color: var(--black-clr);
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 480px;
}

.cont-cnt .cnt p {
  margin: 2rem auto 2rem auto;
}

/* cards vypis masazi */

.block-href {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 4;
  cursor: pointer;
  border: none;
  background: transparent;
}

.cards {
  display: flex;
  padding-bottom: 5rem;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.cards .title-fg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 380px;
  z-index: 1;
}

.cards .title-fg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
}

.cards .card {
  position: relative;
  overflow: hidden;
  padding-top: 2.5rem;
  background: var(--white-clr);
  color: var(--black-clr) !important;
  -webkit-box-shadow: -3px 6px 64px -9px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: -3px 6px 64px -9px rgba(0, 0, 0, 0.35);
  box-shadow: -3px 6px 64px -9px rgba(0, 0, 0, 0.35);
  border-radius: var(--border-radius);
  max-width: 340px;
  width: 90%;
  padding-top: 210px;
  transform: translate(0, 0);
  transition: 0.45s;
  margin: 0;
}

.cards .card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: url("../images/card-affter.png") center center no-repeat;
  z-index: 2;
}

.cards .card:hover {
  transform: translate(0, -20px);
  -webkit-box-shadow: -3px 33px 64px -9px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: -3px 33px 64px -9px rgba(0, 0, 0, 0.35);
  box-shadow: -3px 33px 64px -9px rgba(0, 0, 0, 0.35);
}

.cards .card .cnt {
  position: relative;
  z-index: 3;
  padding: 2.5rem;
}

.cards .card h2 {
  font-weight: 400;
  font-size: 2rem;
}

.cards .card p {
  margin: 2rem auto;
}

.masaze-pro-muze [data-terapie] {
  pointer-events: none;
  opacity: 0.55;
}

.masaze-pro-muze [data-terapie] .textbtn {
  opacity: 0;
}

.masaze-pro-muze [data-terapie="sportovni-masaz"],
.masaze-pro-muze [data-terapie="relaxacni-masaz"],
.masaze-pro-muze [data-terapie="mekkych-tkani"],
.masaze-pro-muze [data-terapie="bankovani"] {
  pointer-events: all;
  opacity: 1;
}

.masaze-pro-muze [data-terapie="sportovni-masaz"] .textbtn,
.masaze-pro-muze [data-terapie="relaxacni-masaz"] .textbtn,
.masaze-pro-muze [data-terapie="mekkych-tkani"] .textbtn,
.masaze-pro-muze [data-terapie="bankovani"] .textbtn {
  opacity: 1;
}

/* points */

#vyber-bolesti {
  width: 100%;
}

#vyber-bolesti .scroll {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  width: 780px;
  padding: 2rem 0;
  gap: 2rem;
}

#vyber-bolesti .scroll > .textbtn {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 140px;
  font-size: 0.75rem;
  z-index: 5;
  font-weight: 400;
  text-align: initial;
  text-transform: uppercase;
  opacity: 0.75;
  display: none;
}

.switch-cnt#ano h3 {
  grid-column: 1/-1;
  width: 100%;
}

.switch strong {
  color: red;
  font-weight: bold;
}

.bodycont {
  position: relative;
}

.index-cnt > .cont-cnt {
  background-color: transparent;
}

.index-cnt > .cont-cnt .floating-header {
  display: none;
}

#kontraindikace .bodycont {
  position: relative;
  transform: translate(0, -10%);
}

.bodycont .point {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.2s;
}

.bodycont .point::before,
.bodycont .point::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background: var(--grey-text);
  border-radius: inherit;
  transition: 0.25s;
}

.bodycont .point::after {
  width: 16px;
  height: 16px;
  background: transparent;
  border: 1px transparent solid;
}

.bodycont .point:hover::before,
.bodycont .point.hgl::before {
  background: red;
}

.bodycont .point:hover::after,
.bodycont .point.hgl::after {
  border-color: red;
}

.point[data-body="ruce"] {
  top: 29%;
  right: 7%;
}

.female .point[data-body="ruce"] {
  right: 10%;
}

.point[data-body="ruce"]:nth-of-type(2) {
  right: unset;
  left: 7%;
}

.female .point[data-body="ruce"]:nth-of-type(2) {
  left: 10%;
}

.point[data-body="hrudnik"] {
  top: 21%;
  left: 50%;
  transform: translate(-50%, 0);
}

.point[data-body="bricho"] {
  top: 36%;
  left: 50%;
  transform: translate(-50%, 0);
}

.point[data-body="zada"] {
  top: 23%;
  left: 50%;
  transform: translate(-50%, 0);
}

.acnt.hgl {
  z-index: 3;
}

.acnt.hgl::after {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.acnt.hgl h2,
.acnt.hgl p,
.acnt.hgl .rel span,
.acnt.hgl .rel p {
  color: red !important;
  transform: translate(0, -10px);
}

.point-cont.hgl .point::after {
  border-color: red;
}

.point-cont.hgl .point::before {
  background-color: red;
}

.point[data-body="nohy"] {
  bottom: 32%;
  left: 27%;
}

.female .point[data-body="nohy"] {
  left: 30.5%;
}

.point[data-body="nohy"]:nth-last-of-type(2) {
  left: unset;
  right: 27%;
}

.female .point[data-body="nohy"]:nth-last-of-type(2) {
  right: 30.5%;
}

/* gdpr sránka */

/* GDPR */

article.gdpr_article {
  color: var(--grey-clr);
  line-height: 1.5;
  width: 75%;
  position: relative;
  z-index: 2;
  padding-top: 140px;
  text-align: justify;
  min-width: 350px;
  max-width: 780px;
}

article.gdpr_article * {
  font-size: 1rem;
}

article.gdpr_article h1 {
  font-size: 2.75rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

article.gdpr_article ol,
article.gdpr_article ul {
  padding-left: 20px;
  margin: 1rem 0;
}

article.gdpr_article li {
  margin: 1rem 0;
}

article.gdpr_article ul li {
  margin: 0.25rem 0;
  position: relative;
  list-style-type: none;
}

article.gdpr_article ul li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  transform: translate(-150%, 0) rotate(100grad);
  border-bottom: 5px var(--green-clr) solid;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

article.gdpr_article .button-cont {
  display: block;
  text-align: center;
  margin: 4rem auto;
}

.resp-slider {
  width: 90%;
  max-width: 1900px;
}

/* doc footer */

#document-footer {
  background: var(--brown-clr);
  padding-bottom: 2rem;
  z-index: 2;
}

#document-footer ul li {
  list-style-type: none;
}

#document-footer a {
  text-decoration: none;
}

#document-footer .cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

#document-footer .col li,
#document-footer .col li * {
  text-decoration: none;
  color: var(--white-clr);
}

#document-footer .footer-logo {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 0;
}

#document-footer .footer-logo img {
  width: 250px;
}

ul.kontakt li {
  list-style-type: none;
  margin-bottom: 2rem;
}

ul.kontakt li:last-of-type {
  list-style-type: none;
  margin-bottom: 0 !important;
}

ul.kontakt li a,
ul.kontakt li span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--white-clr);
  text-decoration: none;
}

ul.kontakt li span:last-of-type {
  margin-bottom: 0;
}

ul.kontakt .textbtn {
  padding: 0.5rem 80px 0.5rem 0;
}

.btncnt {
  display: none;
}

/* Ceník služeb */

.cenik {
  padding: 3rem 1.5rem 0 1.5rem;
  background-color: var(--white-clr);
  border-radius: var(--border-radius);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translate(0, 10vh);
  display: grid;
  grid-template-areas:
    "sportovni relaxacni"
    "tlakova bankovani";
  align-items: self-start;
}

.animation .cenik {
  animation: popshow 1.15s ease;
  animation-fill-mode: forwards;
}

.cenik .masaz {
  color: var(--black-clr);
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  text-align: center;
}

.cenik .masaz.sportovni {
  grid-area: sportovni;
}

.cenik .masaz.relaxacni {
  grid-area: relaxacni;
}

.cenik .masaz.bankovani {
  grid-area: bankovani;
}

.cenik .masaz.tlakova {
  grid-area: tlakova;
}

.cenik .masaz h1 {
  width: 100%;
  text-align: center;
  font-size: 2.55rem;
}

.cenik .masaz h2 {
  font-weight: 400;
}

.cenik .masaz .cnt {
  text-align: left;
  background-color: var(--view-port-light-mode);
  padding: 1rem;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 1rem;
}

.cenik .masaz ul li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
}

.cenik .masaz ul li:last-of-type {
  margin-bottom: 0;
}

.cenik .masaz ul li:last-of-type::after {
  display: none;
}

.cenik .masaz ul li::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(0, 50%);
  border-bottom: 1px dotted var(--grey-text);
}

.cenik .masaz ul li > * {
  margin: 0 0 0 0.55rem;
}

.cenik .masaz ul li .title {
  margin-left: 0;
  margin-right: auto;
}

.cenik .masaz ul li .cena {
  font-weight: 400;
}

.cenik .masaz ul li .rezbtn {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.85rem;
  color: inherit;
  transition: 0.25s;
  padding: 0.5rem;
}

.cenik .masaz ul li .rezbtn:hover {
  color: red;
}

/* formulare */

form.form {
  max-width: 840px;
  width: 100%;
  color: var(--black-clr);
  text-align: center;
}

form.form fieldset {
  border: none;
}

form.form fieldset.terminy-masaze > fieldset {
  width: 100%;
}

form.form fieldset a {
  color: red;
  text-decoration: none;
  cursor: pointer;
}

form.form fieldset .fc a {
  color: inherit;
  text-decoration: none;
}
.fc-timegrid-event-harness > .fc-timegrid-event.disabled,
form.form fieldset a.disabled {
  pointer-events: none;
}
/* Zmenší buňky kalendáře */
.fc-daygrid-day {
  height: 60px;
  padding: 0;
  text-align: center;
  vertical-align: top;
  font-size: 0.9em;
}

/* Odstraní vnitřní obsah, ponechá jen číslo dne */
.fc-daygrid-day-frame {
  padding: 0 !important;
}

.fc-daygrid-day-number {
  display: block;
  font-weight: bold;
  margin: 4px auto;
}

/* Skryje eventy v náhledu dne (zůstane jen číslo) */
.fc-daygrid-event {
}

form.form fieldset a:hover {
  text-decoration: underline;
}

form.form fieldset.input label,
form.form fieldset.input input {
  width: 100%;
}

form.form fieldset.input input {
  padding: 1rem;
}

form.form fieldset.input input:focus,
form.form fieldset.input textarea:focus {
  -webkit-box-shadow: 0px 0px 44px -11px rgb(0, 0, 0);
  -moz-box-shadow: 0px 0px 44px -11px rgb(0, 0, 0);
  box-shadow: 0px 0px 44px -11px rgb(0, 0, 0);
  outline: none;
}

form.form fieldset.input input.err {
  box-shadow: 0px 0px 44px -11px rgba(255, 0, 0, 0.75);
  -webkit-box-shadow: 0px 0px 44px -11px rgba(255, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 44px -11px rgba(255, 0, 0, 0.75);
}

form.form label {
  position: relative;
  display: inline-block;
  text-align: left;
}

form.form label {
  margin-bottom: 1rem;
}

form.form label.check {
  display: flex;
  align-items: center;
  justify-content: center;
}

.point-cont form.form label.check {
  margin-bottom: 0;
}

form.form .input label span {
  display: block;
  padding: 0.25rem;
  color: var(--black-clr);
}

form.form label.check input {
  position: absolute;
  opacity: 0;
}

form.form textarea#poznamka {
  margin-bottom: 1rem;
  max-width: 100%;
  min-width: 100%;
}

form.form label.check span.check {
  display: inline-block;
  width: 40px;
  min-width: 40px;
  height: 15px;
  background: var(--gray-clr);
  border-radius: 20px;
  margin-right: 1rem;
  position: relative;
  overflow: hidden;
  margin: 0 1rem 0 0;
}

form.form label.check span.text {
  margin: 0;
  text-align: left;
}

form.form label.check span.check::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: var(--white-clr);
  transition: 0.2s;
  -webkit-box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.55);
  -moz-box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.55);
  box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.55);
}

.point-cont form.form label.check span.check::after {
  background-color: red;
}

form.form label.check span.check::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1100%;
  height: 100%;
  background-color: var(--light-bg);
  transition: 0.2s;
}

form.form label.check input:checked + span.check::before {
  background-color: red;
}

form.form label.check input:checked + span.check::after {
  left: 100%;
  transform: translate(-100%, -50%);
}

.point-cont form.form label.check input:checked + span.check::after {
  background-color: var(--white-clr);
}

form.form button.submit {
  margin: 2rem 0;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  -webkit-box-shadow: 0px 0px 23px -11px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 23px -11px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 23px -11px rgba(0, 0, 0, 0.75);
  background-color: var(--white-clr);
  cursor: pointer;
}

form.form .err-cnt {
  color: red;
  padding: 1.5rem;
}

form.form .nodatacont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: inherit;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: red;
  font-weight: 500;
}

form.form .nodatacont * {
  font-weight: inherit;
}

.auto-fieldset {
  margin: 2rem 0;
  -webkit-box-shadow: 0px 10px 33px 0px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0px 10px 33px 0px rgba(0, 0, 0, 0.23);
  box-shadow: 0px 10px 33px 0px rgba(0, 0, 0, 0.23);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: left;
  position: relative;
}

.auto-fieldset legend,
.terminy-masaze legend {
  margin-left: 0;
  font-size: 1.25rem;
  color: var(--black-clr);
}

.auto-fieldset ul {
  padding-left: 0.5rem;
}

/* Bolesti */
.pointcont {
  padding: 0.25rem 0.25rem 0.25rem 1rem;
  color: var(--black-clr);
  display: block;
  margin: 0.5rem auto;
  width: 100%;
  position: relative;
}

.pointcont::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 0;
  width: 8px;
  height: 8px;
  background: red;
  border-radius: 50%;
}

.point-cont {
  overflow: visible;
  position: absolute;
  z-index: 3;
}

.point-cont .textbtn {
  font-weight: 400;
}
#terminyContainerForm {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

#terminyContainerForm .termin-den {
  font-weight: bold;
  margin-top: 10px;
}

#terminyContainerForm .termin-sloty {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.5em;
}

#terminyContainerForm .termin-slot {
  border: 1px solid #ccc;
  padding: 0.5em;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  background-color: #f8f8f8;
}

#terminyContainerForm .termin-slot input {
  display: none;
}

#terminyContainerForm .termin-slot input:checked + span {
  background-color: #198754;
  color: white;
  border-radius: 4px;
  padding: 0.2em 0.4em;
}

[data-errorcontrezervace] span.err {
  color: red;
  font-size: 90%;
  width: 100%;
  text-align: center;
  display: block;
  transform: translate(0, -200%);
}

z .point-cont .btn {
  margin: 0;
  display: inline-block;
  text-align: center;
  padding: 1rem;
  position: absolute;
  width: fit-content;
  transform: translate(0, 100%);
  bottom: -2rem;
  color: var(--white-clr);
  background-color: red;
  -webkit-box-shadow: 0px 0px 107px -11px rgba(0, 0, 0, 1);
  -moz-box-shadow: 0px 0px 107px -11px rgba(0, 0, 0, 1);
  box-shadow: 0px 0px 107px -11px rgba(0, 0, 0, 1);
}

.point-cont .lbl {
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  -webkit-box-shadow: 0px 0px 23px -11px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 23px -11px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 23px -11px rgba(0, 0, 0, 0.75);
  background-color: var(--white-clr);
  cursor: pointer;
  display: block;
}

.point-cont .textbtn::before {
  right: 20px;
}

.point-cont .textbtn::after {
  right: 15px;
}

.point-cont.hgl {
  z-index: 4;
}

.point-cont:hover {
  z-index: 5;
}

.point-cont[data-body="p-prsni-sval"] {
  top: 17%;
  left: 32%;
}

.point-cont[data-body="l-prsni-sval"] {
  top: 17%;
  right: 32%;
}

.female .point-cont[data-body="p-prsni-sval"] {
  top: 19%;
}

.female .point-cont[data-body="l-prsni-sval"] {
  top: 19%;
}

.point-cont[data-body="l-rameno"] {
  top: 17.5%;
  right: 11%;
}

.point-cont[data-body="p-rameno"] {
  top: 17.5%;
  left: 11%;
}

.female .point-cont[data-body="l-rameno"] {
  top: 19%;
}

.female .point-cont[data-body="p-rameno"] {
  top: 19%;
}

.point-cont[data-body="l-biceps"] {
  top: 29%;
  right: 9%;
}

.point-cont[data-body="p-biceps"] {
  top: 29%;
  left: 9%;
}

.female .point-cont[data-body="l-biceps"] {
  right: 9%;
}

.femlale .point-cont[data-body="p-biceps"] {
  left: 8%;
}

.point-cont[data-body="p-predlokti"] {
  top: 37.5%;
  left: 6%;
}

.point-cont[data-body="l-predlokti"] {
  top: 37.5%;
  right: 6%;
}

.female .point-cont[data-body="p-predlokti"] {
  left: 3%;
}

.female .point-cont[data-body="l-predlokti"] {
  right: 4%;
}

.point-cont[data-body="l-ruka"] {
  top: 47.5%;
  right: 2%;
}

.point-cont[data-body="p-ruka"] {
  top: 47.5%;
  left: 1%;
}

.female .point-cont[data-body="l-ruka"] {
  top: 48.5%;
  right: -1.5%;
}

.female .point-cont[data-body="p-ruka"] {
  top: 48.5%;
  left: -1%;
}

.point-cont[data-body="bricho"] {
  top: 35.5%;
  left: calc(50% - 20px);
}

.female .point-cont[data-body="bricho"] {
  top: 39.5%;
}

.point-cont[data-body="l-stehno"] {
  top: 57%;
  right: 28%;
}

.point-cont[data-body="p-stehno"] {
  top: 57%;
  left: 28%;
}

.point-cont[data-body="l-koleno"] {
  top: 70%;
  right: 27%;
}

.point-cont[data-body="p-koleno"] {
  top: 70%;
  left: 27%;
}

.female .point-cont[data-body="l-koleno"] {
  top: 68%;
  right: 29.5%;
}

.female .point-cont[data-body="p-koleno"] {
  top: 68%;
  left: 29.5%;
}

.point-cont[data-body="p-berec"] {
  top: 77%;
  left: 25%;
}

.point-cont[data-body="l-berec"] {
  top: 77%;
  right: 25%;
}

.female .point-cont[data-body="p-berec"] {
  top: 75%;
  left: 24%;
}

.female .point-cont[data-body="l-berec"] {
  top: 75%;
  right: 24%;
}

.point-cont[data-body="l-noha"] {
  bottom: 5%;
  right: 30%;
}

.point-cont[data-body="p-noha"] {
  bottom: 5%;
  left: 30%;
}

.female .point-cont[data-body="l-noha"] {
  bottom: 3%;
  right: 34%;
}

.female .point-cont[data-body="p-noha"] {
  bottom: 3%;
  left: 33%;
}

/* Zadní strana */
.point-cont[data-body="sije"] {
  top: 6.5%;
  left: calc(50% - 20px);
}

.female .point-cont[data-body="sije"] {
  top: 10.5%;
  left: calc(50% - 20px);
}

.point-cont[data-body="p-trapez"] {
  top: 12.5%;
  right: 29%;
}

.point-cont[data-body="l-trapez"] {
  top: 12.5%;
  left: 29%;
}

.female .point-cont[data-body="p-trapez"] {
  top: 15.5%;
  right: 25%;
}

.female .point-cont[data-body="l-trapez"] {
  top: 15.5%;
  left: 28%;
}

.point-cont[data-body="l-lopatka"] {
  top: 20%;
  left: 29.75%;
}

.point-cont[data-body="p-lopatka"] {
  top: 20%;
  right: 29.75%;
}

.female .point-cont[data-body="l-lopatka"] {
  top: 22.5%;
  left: 29.75%;
}

.female .point-cont[data-body="p-lopatka"] {
  top: 22.5%;
  right: 26.75%;
}

.point-cont[data-body="mezilopatkovy"] {
  top: 19%;
  left: calc(50% - 20px);
}

.female .point-cont[data-body="mezilopatkovy"] {
  left: calc(50% - 20px);
}

.point-cont[data-body="l-triceps"] {
  top: 26%;
  left: 10%;
}

.point-cont[data-body="p-triceps"] {
  top: 26%;
  right: 7%;
}

.point-cont[data-body="l-loket"] {
  top: 34%;
  left: 6%;
}

.point-cont[data-body="p-loket"] {
  top: 34%;
  right: 2.5%;
}

.female .point-cont[data-body="l-loket"] {
  top: 34%;
  left: 6%;
}

.female .point-cont[data-body="p-loket"] {
  top: 34%;
}

.point-cont[data-body="l-zapesti"] {
  top: 44.5%;
  left: 3%;
}

.point-cont[data-body="p-zapesti"] {
  top: 44.5%;
  right: 4.5%;
}

.female .point-cont[data-body="l-zapesti"] {
  top: 45.5%;
  left: 1.5%;
}

.female .point-cont[data-body="p-zapesti"] {
  top: 45.5%;
  right: -2%;
}

.point-cont[data-body="l-vzprimovac"] {
  top: 32%;
  left: 36%;
}

.point-cont[data-body="p-vzprimovac"] {
  top: 32%;
  right: 38%;
}

.female .point-cont[data-body="l-vzprimovac"] {
  top: 32%;
  left: 38%;
}

.female .point-cont[data-body="p-vzprimovac"] {
  top: 32%;
  right: 34%;
}

.point-cont[data-body="kriz"] {
  top: 40%;
  left: calc(50% - 20px);
}

.female .point-cont[data-body="kriz"] {
  left: calc(50% - 20px);
}

.point-cont[data-body="l-kycel"] {
  top: 45%;
  left: 20%;
}

.point-cont[data-body="p-kycel"] {
  top: 45%;
  right: 20%;
}

.female .point-cont[data-body="l-kycel"] {
  top: 44%;
  left: 15%;
}

.female .point-cont[data-body="p-kycel"] {
  top: 44%;
  right: 15%;
}

.point-cont[data-body="l-hyzde"] {
  top: 46.5%;
  left: 32%;
}

.point-cont[data-body="p-hyzde"] {
  top: 46.5%;
  right: 32%;
}

.point-cont[data-body="l-zadni-hamstring"] {
  top: 60%;
  left: 31%;
}

.point-cont[data-body="p-zadni-hamstring"] {
  top: 60%;
  right: 27%;
}

.point-cont[data-body="l-lytko"] {
  top: 77%;
  left: 29%;
}

.point-cont[data-body="p-lytko"] {
  top: 77%;
  right: 29%;
}

.female .point-cont[data-body="l-lytko"] {
  top: 76%;
  left: 31%;
}

.female .point-cont[data-body="p-lytko"] {
  top: 76%;
  right: 28%;
}

.point-cont[data-body="l-pata"] {
  bottom: 0;
  left: 28.5%;
}

.point-cont[data-body="p-pata"] {
  bottom: 0;
  right: 28.5%;
}

.female .point-cont[data-body="l-pata"] {
  bottom: 0.85%;
  left: 33%;
}

.female .point-cont[data-body="p-pata"] {
  bottom: 0.85%;
  right: 28%;
}

.point-cont .point {
  position: relative;
}

.point-cont .comment {
  color: var(--black-clr);
  padding: 4rem 1rem 1rem 1rem;
  border-radius: var(--border-radius);
  -webkit-box-shadow: 0px 10px 33px 0px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0px 10px 33px 0px rgba(0, 0, 0, 0.23);
  box-shadow: 0px 10px 33px 0px rgba(0, 0, 0, 0.23);
  background-color: var(--white-clr);
  pointer-events: none;
  position: absolute;
  opacity: 0;
  transform: translate(0, -10%);
  z-index: 3;
  border: none;
  min-width: 340px;
  width: 100%;
  transition: 0.25s;
}

.point-cont .comment legend {
  position: absolute;
  text-align: left;
  display: block;
  width: 100%;
  background-color: var(--white-clr);
  top: 0;
  left: 0;
  padding: 1rem;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  font-weight: 400;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.point-cont .comment .info {
  color: red;
  font-size: 90%;
}

.point-cont .comment label {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}

.point-cont .comment label.rzv {
  display: none;
}

[data-closecont].overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

[data-closecont].overlay.hgl {
  pointer-events: all;
}

.point-cont .comment.hgl {
  pointer-events: all;
  opacity: 1;
  transform: translate(0, 0);
}

.point-cont form input[type="button"] {
  border: none;
  box-shadow: none;
  cursor: pointer;
  font-weight: 500;
  margin-left: 0.5rem;
}

.point-cont .comment .flex-cnt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.point-cont .comment .flex-cnt label {
  margin-left: 0;
  margin-right: 0;
}

.point-cont .comment textarea {
  margin-bottom: 1rem;
  border-radius: 5px;
}

.point-cont .comment label.chck {
  margin-bottom: 1rem;
}

.point-cont[data-body="l-berec"] .comment,
.point-cont[data-body="p-berec"] .comment,
.point-cont[data-body="l-noha"] .comment,
.point-cont[data-body="p-noha"] .comment,
.point-cont[data-body="l-pata"] .comment,
.point-cont[data-body="p-pata"] .comment,
.point-cont[data-body="l-lytko"] .comment,
.point-cont[data-body="p-lytko"] .comment,
.point-cont[data-body="l-koleno"] .comment,
.point-cont[data-body="p-koleno"] .comment {
  transform: translate(0, -25%);
  bottom: 0;
  z-index: 3;
  border: none;
}

.point-cont[data-body="l-berec"] .comment.hgl,
.point-cont[data-body="p-berec"] .comment.hgl,
.point-cont[data-body="l-noha"] .comment.hgl,
.point-cont[data-body="p-noha"] .comment.hgl,
.point-cont[data-body="l-pata"] .comment.hgl,
.point-cont[data-body="p-pata"] .comment.hgl,
.point-cont[data-body="l-lytko"] .comment.hgl,
.point-cont[data-body="p-lytko"] .comment.hgl,
.point-cont[data-body="l-koleno"] .comment.hgl,
.point-cont[data-body="p-koleno"] .comment.hgl {
  transform: translate(0, -15%);
}

/* Kontraindikace */

#kontraindikace {
  color: var(--black-clr);
  text-align: left;
  position: relative;
  z-index: 2;
}

#kontraindikace p {
  color: var(--grey-text);
  transition: 0.55s;
  position: relative;
  z-index: 3;
}

#kontraindikace .rel {
  display: block;
  padding: 0.25rem;
  font-weight: 400;
  opacity: 0;
  transition: 0.5s;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  transform: translate(0, 100%);
  z-index: 1;
}

#kontraindikace .rel::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  bottom: -1rem;
  right: -1rem;
  background-color: var(--white-clr);
  -webkit-box-shadow: 0px 10px 33px 0px rgba(255, 0, 0, 0.23);
  -moz-box-shadow: 0px 10px 33px 0px rgba(255, 0, 0, 0.23);
  box-shadow: 0px 10px 33px 0px rgba(255, 0, 0, 0.23);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: 0.25s;
  transform: translate(0, 0);
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}

#kontraindikace .rel::after {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: -1rem;
  height: 50px;
  background-color: var(--white-clr);
  pointer-events: none;
  z-index: 0;
  transition: 0.25s;
  transform: translate(0, -90%);
}

#kontraindikace .rel span {
  display: block;
  font-size: 90%;
  transition: 0.5s;
  font-weight: normal;
}

#kontraindikace .rel p {
  list-style-type: none;
  font-size: 90%;
  margin-bottom: 0.15rem;
  display: inline-block;
}

#kontraindikace .hgl .rel::before,
#kontraindikace .hgl .rel {
  opacity: 1;
}

#kontraindikace .grid {
  display: grid;
  grid-template-areas:
    "a1 a6 a3 a7 a5"
    "a2 a6 a4 a7 .";
}

#kontraindikace .grid .acnt {
  padding: 0.25rem;
  transition: 0.25s;
  position: relative;
  z-index: 1;
}

#kontraindikace .grid .acnt p {
  z-index: 3;
  position: relative;
}

#kontraindikace .grid .acnt::after {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  bottom: -1rem;
  right: -1rem;
  background-color: var(--white-clr);
  -webkit-box-shadow: 0px 10px 33px 0px rgba(255, 0, 0, 0.23);
  -moz-box-shadow: 0px 10px 33px 0px rgba(255, 0, 0, 0.23);
  box-shadow: 0px 10px 33px 0px rgba(255, 0, 0, 0.23);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: 0.25s;
  transform: translate(0, -20px);
  border-radius: var(--border-radius);
}

#kontraindikace .grid h2 {
  transition: 0.55s;
}

.a1,
.a2,
.a3,
.a4,
.a5,
.a6,
.a7,
.a8 {
  width: 100%;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.a1 {
  grid-area: a1;
}

.a2 {
  grid-area: a2;
}

.a3 {
  grid-area: a3;
}

.a4 {
  grid-area: a4;
}

.a5 {
  grid-area: a5;
}

.a6 {
  grid-area: a6;
}

.a7 {
  grid-area: a7;
}

figure.body {
  height: 100%;
}

#vyber-bolesti figure.body img {
  min-width: 310px;
  user-select: none;
  pointer-events: none;
}

figure.body img {
  height: 100%;
  min-width: 240px;
  user-select: none;
}

#new-rezervace-btn {
  margin: 2rem auto 5rem auto;
  display: block;
  text-align: center;
  padding: 1.5rem 2rem;
  width: fit-content;
  color: var(--white-clr);
  font-weight: 400;
  background-color: red;
  -webkit-box-shadow: 0px 0px 107px -11px rgba(0, 0, 0, 1);
  -moz-box-shadow: 0px 0px 107px -11px rgba(0, 0, 0, 1);
  box-shadow: 0px 0px 107px -11px rgba(0, 0, 0, 1);
}

#new-rezervace-btn::before,
#new-rezervace-btn::after {
  display: none;
}

/* Popup */

.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: 0.5s;
  z-index: -1;
}

.popup.active {
  pointer-events: all;
  opacity: 1;
  z-index: 9999;
}

.popup > [data-closepop] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  z-index: 1;
  opacity: 0.75;
  background-color: var(--brown-clr);
}

.popup#sex > [data-closepop] {
  pointer-events: none;
}

.popup .slot {
  cursor: pointer;
  padding: 1rem;
  background: #00000045;
  margin-bottom: 0.25rem;
  font-weight: bold;
  transition: 0.25s;
}

.popup .slot.disabled {
  pointer-events: none;
  opacity: 0.25;
}

.popup .slot:hover {
  background: #00000095;
}

.popup .popup-cnt {
  background: url("../images/floating-header.jpg") top center no-repeat;
  background-size: auto;
  background-size: cover;
  color: var(--black-clr);
  position: relative;
  z-index: 2;
  width: 95%;
  height: 95vh;
  max-height: 95vh;
  padding: 2rem;
  overflow-x: hidden;
  overflow-y: scroll;
  border-radius: var(--border-radius);
  color: var(--white-clr);
}

.popup .popup-cnt {
  padding: 6rem 1rem 1rem 1rem;
}

.popup .popup-cnt > legend {
  padding: 6rem 1rem 1rem 1rem;
}

.popup .popup-cnt header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.popup .popup-cnt header.cnt {
  text-align: center;
}

.popup .popup-cnt header.cnt h3 {
  margin-left: auto;
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.5;
  margin-bottom: 3rem;
}

.popup .popup-cnt header button {
  margin: 0;
}

.popup .popup-cnt header h3 {
  margin-left: 1rem;
  margin-bottom: 0;
}

.popup .popup-cnt article.partie-masaze {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
}

.popup .popup-cnt article.partie-masaze section {
  padding: 1rem;
  width: 100%;
  margin: 0;
  -webkit-box-shadow: 0px 10px 33px 0px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0px 10px 33px 0px rgba(0, 0, 0, 0.23);
  box-shadow: 0px 10px 33px 0px rgba(0, 0, 0, 0.23);
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  transform: translate(25%, 0);
  opacity: 0;
}

.popup.active .popup-cnt article.partie-masaze section {
  transform: translate(0, 0);
  opacity: 1;
}

.popup .popup-cnt article.partie-masaze section a {
  color: var(--white-clr);
  display: block;
}

.popup .popup-cnt article.partie-masaze section > a:first-of-type {
  margin-bottom: 1rem;
}

.popup .popup-cnt article.partie-masaze section::after {
  content: "";
  background: var(--black-clr);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.25;
  transition: 0.15s;
  z-index: -1;
}

.popup .popup-cnt article.partie-masaze section:hover::after {
  opacity: 0.55;
}

.popup .popup-cnt article.partie-masaze section .tit {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 2rem;
}

.popup .popup-cnt article.partie-masaze section .time {
  display: block;
  font-size: 0.9rem;
}

.popup .popup-cnt article.partie-masaze section .time > * {
  font-size: inehrit;
}

.double-op-in.popup .popup-cnt {
  text-align: center;
  max-width: 560px;
}

.double-op-in.popup .popup-cnt .btn {
  margin: 2rem auto;
}

.double-op-in.popup .popup-cnt legend {
  font-size: 2rem;
  transform: translate(0, 4.75rem);
}

.double-op-in.popup .popup-cnt label {
  margin-top: 2rem;
}

.err-404 [data-objednanotitle] {
  color: var(--white-clr) !important;
}

.terminy-masaze {
  display: block;
  grid-gap: 1rem;
  position: relative;
  border-radius: 10px;
  margin-bottom: 2rem;
}

fieldset.terminy-masaze {
  margin: 2rem 0;
  -webkit-box-shadow: 0px 10px 33px 0px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0px 10px 33px 0px rgba(0, 0, 0, 0.23);
  box-shadow: 0px 10px 33px 0px rgba(0, 0, 0, 0.23);
  border-radius: var(--border-radius);
  padding: 0;
  text-align: left;
  position: relative;
}

fieldset.terminy-masaze .termin-block {
  width: 20%;
  position: relative;
}

fieldset.terminy-masaze .termin-block.selected {
  color: var(--white-clr);
}

fieldset.terminy-masaze .termin-block::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-color: var(--brown-clr);
}

fieldset.terminy-masaze .termin-block.selected::after {
  opacity: 0.45;
}

.termin-block span {
  display: block;
  color: var(--light-grey);
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.termin-block .datum-orig {
  display: none;
}

fieldset .termin-block.selected span {
  color: var(--white-clr);
}

.termin-block .cnt span {
  display: inline-block;
}

.termin-block label {
  margin-bottom: 0;
}

.termin-block span.id,
.termin-block input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.termin-block::after {
  content: "";
  background: var(--black-clr);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.25;
  transition: 0.15s;
  z-index: -1;
}

.termin-block:hover::after {
  opacity: 0.75;
  pointer-events: none;
}

p.title {
  text-align: center;
  color: var(--black-clr);
  font-weight: 600;
}

#terminyContainerForm {
  display: flex;
  flex-direction: column;
  gap: 2em;
  text-align: center;
  padding-top: 2rem;
}

#terminyContainerForm .termin-cont {
  width: 100%;
}

#terminyContainerForm .termin-blok {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

#terminyContainerForm .termin-den {
  font-weight: bold;
  font-size: 1.1em;
}

#terminyContainerForm .termin-sloty {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.5em;
}

#terminyContainerForm .termin-slot {
  border: 1px solid #ccc;
  padding: 0.5em;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  background-color: #f8f8f8;
  position: relative;
}

#terminyContainerForm .termin-slot input {
  position: absolute;
  left: 0;
  top: 0;
}

#terminyContainerForm .termin-slot input:checked + span {
  background-color: #198754;
  color: white;
  border-radius: 4px;
  padding: 0.2em 0.4em;
}

.calendar-cont.fc .fc-daygrid-body-natural .fc-daygrid-day-events {
  margin-bottom: 0;
}

.calendar-cont.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
  min-height: 1em;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.calendar-cont.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events .fc-daygrid-event-harness,
.calendar-cont.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events .fc-daygrid-event-harness > a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 5;
  user-select: none;
  color: transparent;
  cursor: pointer;
}
.fc-daygrid-event-dot {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  box-sizing: border-box;
  border: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  background: red;
  border-radius: 50%;
  max-width: 40px;
  max-height: 40px;
  transform: translate(-50%, -50%);
}

.fc .fc-daygrid-day-number {
  opacity: 0.25;
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-radius: 50%;
  justify-content: center;
  font-weight: normal;
  font-size: 0.9rem;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.11);
}

.fc-daygrid-day.volny-den .fc-daygrid-day-number {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
  border: 1px solid rgb(165, 165, 165);
}
.fc .fc-daygrid-day.fc-day-today {
  background-color: transparent;
}
.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-number {
  background-color: var(--brown-clr);
  color: var(--white-clr);
}

.fc-theme-standard td,
.fc-theme-standard th {
  border: none;
}
.calendar-cont.fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 0px;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.fc-daygrid-dot-event.fc-event-mirror,
.fc-daygrid-dot-event:hover {
  background: transparent;
}
.fc-daygrid-dot-event.fc-event-mirror,
.fc-daygrid-dot-event:hover .fc-daygrid-day-number {
  background: rgba(0, 0, 0, 0.1);
}
.fc .fc-col-header-cell-cushion {
  display: inline-block;
  padding: 2px 4px;
  text-transform: uppercase;
  font-weight: 500;
}

.fc-toolbar-chunk {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0.5rem 1rem;
}
.fc-direction-ltr .fc-toolbar > * > :not(:first-child) {
  margin-left: 0;
}

.fc-toolbar-chunk .fc-button {
  background-color: transparent;
  color: var(--black-clr);
  border: none;
  padding: 0.4rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.9rem;
  transition: background-color 0.2s ease;
  -webkit-box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.23);
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.23);
}
.fc-icon-chevron-left::before {
  color: black;
}
.fc-icon-chevron-right::before {
  color: black;
}
.fc-toolbar-chunk .fc-button:hover:not(:disabled) {
  background-color: transparent;
}

.fc-toolbar-chunk .fc-button:disabled {
  background-color: #c3c3c3;
  cursor: default;
}

.fc-toolbar-chunk .fc-button-group {
  display: flex;
  gap: 0.25rem;
}

.fc-toolbar-chunk .fc-icon {
  font-size: 1.1rem;
}

@media screen and (max-width: 1720px) {
  .banner .lotus-cards .scr {
    transform: translate(0, 60%);
  }
}
@media screen and (max-width: 1360px) {
  figure.body img {
    min-width: 200px;
  }

  .point[data-body="ruce"]:nth-of-type(2) {
    left: 5%;
  }

  .point[data-body="ruce"] {
    right: 5%;
  }

  .point[data-body="nohy"] {
    left: 25%;
  }

  .point[data-body="nohy"]:nth-last-of-type(2) {
    right: 25%;
  }

  img.lotus {
    top: 15%;
    left: 22%;
    height: 104%;
    z-index: 1;
  }
}

@media screen and (max-width: 1320px) {
  .lotus-cards {
    width: 100%;
    padding-left: 6rem;
  }
}

@media screen and (max-width: 1300px) {
  #kontraindikace .grid {
    gap: 1rem;
  }

  .a1,
  .a2,
  .a3,
  .a4,
  .a5,
  .a6,
  .a7,
  .a8 {
    align-items: flex-start;
  }
}

@media screen and (max-width: 1280px) {
  #vyber-bolesti figure.body img {
    min-width: 260px;
  }
}

@media screen and (max-width: 1240px) {
  .resp-slider {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 3rem;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-align: start;
  }

  .slider-header {
    display: block;
  }

  #vyber-bolesti .resp-slider {
    overflow-x: visible;
    overflow-y: visible;
  }

  .resp-slider header {
    display: flex;
    color: var(--black-clr);
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 2rem;
  }

  .resp-slider header span {
    margin-left: 0;
    font-size: 1.25rem;
    max-width: 260px;
  }

  .resp-slider .cards {
    display: grid;
    gap: 0;
    grid-gap: 2rem;
  }

  .resp-slider .cards .card {
    min-width: 340px;
  }
}

@media screen and (max-width: 1180px) {
  .lotus-cards {
    justify-content: center;
  }

  .lotus-cards .card:last-of-type {
    transform: translate(0, -5%);
  }

  .lotus-cards .scr {
    width: 80%;
  }

  #kontraindikace .grid {
    grid-template-areas:
      "a6 a6 a7 a7"
      "a1 a3 a5 ."
      "a2 a4 . .";
  }

  #kontraindikace .bodycont {
    transform: translate(0, 0);
  }

  #kontraindikace .hgl .rel {
    position: relative;
    transform: translate(0, 0);
    padding: 1rem 0.25rem 0.25rem 0.25rem;
  }

  #kontraindikace .hgl .rel::before,
  #kontraindikace .hgl .rel::after {
    display: none;
  }

  .popup .popup-cnt article.partie-masaze {
    grid-template-columns: repeat(3, 1fr);
  }

  [data-bodycont="back"] .point-cont .comment {
    transform: translate(calc(-100% + 40px), -10%);
  }

  [data-bodycont="back"] .point-cont .comment.hgl {
    transform: translate(calc(-100% + 40px), 0);
  }
}

@media screen and (max-width: 1080px) {
  .popup .popup-cnt article.partie-masaze {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 980px) {
  .lotus-cards .scr {
    width: 89%;
  }
}

@media screen and (max-width: 860px) {
  #document-header .main-nav .grid > * {
    margin: 0;
    width: 50%;
  }

  .banner .cnt .text > p {
    max-width: 100%;
  }

  .banner.clr figure::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--black-clr);
    opacity: 0.6;
  }

  .banner.iframe .cnt .text {
    width: 100%;
  }

  .banner.iframe {
    padding: 0;
    display: block;
  }

  .banner.iframe iframe {
    min-height: 50vh;
    width: 100%;
  }

  .banner.iframe figure::after {
    display: none;
  }

  img.lotus {
    left: 50%;
    height: 50%;
  }

  .banner.clr .cnt {
    padding: 5rem;
  }

  .banner.iframe .cnt {
    padding: 0;
    display: block;
  }

  #document-footer .cont .col {
    width: 100%;
    margin-bottom: 2rem;
  }

  #document-footer .cont .col.footer-logo {
    margin-bottom: 0;
  }

  #document-footer .cont {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    max-width: 480px;
    width: 90%;
  }

  #document-footer ul.kontakt {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
  }

  #document-footer ul.kontakt li {
    margin: 0 1rem 0 0;
  }

  .cenik .masaz ul li {
    flex-wrap: wrap;
  }

  .cenik .masaz ul li .title {
    width: 100%;
  }

  .cenik .masaz ul li .cena {
    margin-left: 0;
  }

  .cenik .masaz ul li .rezbtn {
    margin-right: 0;
    margin-left: auto;
  }
}

@media screen and (max-width: 840px) {
  .index-cnt > .cont-cnt {
    transform: translate(0, 0);
  }

  .lotus-cont {
    width: 100%;
    overflow: hidden;
  }

  .lotus-cards {
    display: block;
    padding-left: 0;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
  }

  .lotus-cards .scr,
  .banner .lotus-cards .scr {
    width: 770px;
    position: relative;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    transform: translate(0, 0);
    gap: 0;
  }

  .lotus-cards .card {
    width: 90%;
    scroll-snap-align: center;
    max-width: 385px;
    padding: 0 0 0 2rem;
  }

  .lotus-cards .card:last-of-type {
    transform: translate(0, 0);
  }

  .banner .lotus-cards .card .textbtn,
  .banner .lotus-cards .card h2 {
    color: var(--black-clr);
  }

  .banner .lotus-cards .card .textbtn::after {
    border-bottom: 5px var(--black-clr) solid;
  }

  .banner .lotus-cards .card .textbtn::before {
    background-color: var(--black-clr);
  }

  .heading-text.index {
    color: var(--black-clr);
    padding: 4rem 0;
  }

  .btncnt {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .lotus-cards .card.unable .info {
    padding: inherit;
    max-width: 80%;
  }
}

@media screen and (max-width: 820px) {
  #kontraindikace .grid {
    grid-template-areas:
      "a6 a7"
      "a1 a5"
      "a3 a4"
      "a2 .";
  }

  .resp-slider .cards {
    grid-gap: 1rem;
  }

  .resp-slider .cards .card {
    min-width: 280px;
    padding-top: 130px;
  }

  .cards .card .cnt {
    padding: 2rem;
  }
}

@media screen and (max-width: 760px) {
  .popup .popup-cnt article.partie-masaze {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 720px) {
  #document-header .main-nav .logo {
    padding: 3rem 0;
  }

  #document-header .main-nav .grid.kontakt {
    padding-bottom: 2rem;
    grid-template-columns: repeat(1, 1fr);
  }

  #document-header .main-nav .grid.kontakt > h1,
  #document-header .main-nav .grid.kontakt .title {
    margin-bottom: 1rem;
  }

  #document-header .main-nav .grid.kontakt > * {
    width: 100%;
  }

  #document-header .main-nav .grid.kontakt ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  #document-header .main-nav .grid.kontakt ul li {
    margin-left: 0;
    padding: 0 1rem 0 0;
  }

  #document-header .main-nav .grid > * {
    padding: 0 1rem 0 0;
  }

  #document-header .main-nav .grid {
    padding-bottom: 2rem;
  }

  .header-content {
    padding: 0 2rem 8rem 2rem !important;
  }

  .header-content .logo {
    transform: translate(0, 0);
  }

  #vyber-bolesti .scroll > .textbtn {
    display: inline-flex;
  }

  #vyber-bolesti .resp-slider {
    overflow-x: scroll;
    overflow-y: hidden;
  }
}

@media screen and (max-width: 680px) {
  #kontraindikace .grid {
    grid-template-areas:
      "a6"
      "a1"
      "a3"
      "a2"
      "a7"
      "a5"
      "a4";
    grid-gap: 2rem;
  }

  figure.body img {
    min-width: 240px;
  }

  .point-cont .comment {
    position: fixed;
    left: 0;
    bottom: 50vh;
    width: 100%;
    transform: translate(0, 0) !important;
  }

  [data-bodycont="back"] .point-cont .comment {
    position: fixed;
    left: unset;
    right: 0;
    bottom: 50vh;
    width: 100%;
  }

  .point-cont[data-body="l-berec"] .comment,
  .point-cont[data-body="p-berec"] .comment,
  .point-cont[data-body="l-noha"] .comment,
  .point-cont[data-body="p-noha"] .comment,
  .point-cont[data-body="l-pata"] .comment,
  .point-cont[data-body="p-pata"] .comment,
  .point-cont[data-body="l-lytko"] .comment,
  .point-cont[data-body="p-lytko"] .comment,
  .point-cont[data-body="l-zadni-hamstring"] .comment,
  .point-cont[data-body="l-zadni-hamstring"] .comment,
  .point-cont[data-body="l-koleno"] .comment,
  .point-cont[data-body="p-koleno"] .comment {
    transform: translate(0, 0);
    bottom: 25vh;
  }
}

@media screen and (max-width: 660px) {
  img.lotus {
    height: 30%;
    top: -5%;
  }
}

@media screen and (max-width: 620px) {
  .cenik {
    width: 100%;
    grid-template-areas:
      "sportovni"
      "relaxacni"
      "bankovani"
      "tlakova";
  }

  .cenik .masaz ul li .title {
    width: fit-content;
  }

  .cenik .masaz ul li .cena {
    margin-left: auto;
  }

  .cenik .masaz ul li .rezbtn {
    margin-right: 0;
    margin-left: 0.55rem;
  }
}

@media screen and (max-width: 600px) {
  #document-header .main-nav .grid article {
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 590px) {
  h1 {
    font-size: 2.25rem;
  }

  .cards .card h2 {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 580px) {
  #document-header .main-nav .grid > * {
    width: 100%;
  }

  #document-header .main-nav .grid.kontakt > * {
    margin-bottom: 2rem;
  }

  #document-footer ul.kontakt {
    display: block;
  }

  #document-footer ul.kontakt li {
    margin: 0 0 1rem 0;
  }

  #document-footer .cont {
    max-width: 250px;
  }

  .header-content {
    padding: 0 0 4rem 0 !important;
  }
}

@media screen and (max-width: 570px) {
  h1 {
    font-size: 2.25rem;
  }
}

@media screen and (max-width: 520px) {
  .pagetitle {
    font-size: 2.25rem;
  }

  .lotus-cards .scr {
    width: 740px;
    gap: 0;
  }

  .lotus-cards .card {
    max-width: 370px;
    padding: 0 2rem;
  }
}

@media screen and (max-width: 490px) {
  .pagetitle {
    font-size: 2.25rem;
  }

  .banner.iframe .cnt .text {
    padding: 2rem;
  }

  .lotus-cards .scr {
    width: 740px;
    gap: 0;
  }

  .lotus-cards .card {
    max-width: 370px;
    padding: 0 2rem;
  }
}

@media screen and (max-width: 480px) {
  .cenik .masaz ul li .title {
    width: 100%;
  }

  .cenik .masaz ul li .cena {
    margin-left: 0;
    margin-right: auto;
  }

  .cenik .masaz ul li .rezbtn {
    margin-left: auto;
  }
}

@media screen and (max-width: 460px) {
  .lotus-cards .scr {
    width: 620px;
  }

  .lotus-cards .card {
    max-width: 310px;
    padding: 1rem 0 0 2rem;
  }

  .lotus-cards .card figure {
    height: 390px;
  }

  .resp-slider {
    padding: 3rem 1rem;
  }
}

@media screen and (max-width: 430px) {
  h1 {
    font-size: 2rem;
  }

  .lotus-cards .scr,
  .banner .lotus-cards .scr {
    width: 620px;
  }
}

@media screen and (max-width: 420px) {
  .resp-slider {
    scroll-snap-type: x mandatory;
  }

  .resp-slider .cards .card {
    scroll-snap-align: center;
  }

  .switch {
    gap: 40px;
  }

  .switch [data-switch] p {
    font-size: 1rem;
  }

  .switch [data-switch="ano"].active::before {
    right: -20px;
    width: 10px;
  }

  .switch [data-switch="ano"].active::after {
    right: -20px;
  }

  .switch [data-switch="ne"].active::before {
    left: -21px;
    width: 10px;
  }

  .switch [data-switch="ne"].active::after {
    left: -21px;
    width: 20px;
  }

  [data-switch="ne"] > .btn {
    background-color: var(--white-clr);
    padding: 0.5rem 60px 0.5rem 0.75rem;
  }
}

@media screen and (max-width: 410px) {
  .lotus-cards .card {
    padding: 1rem 2rem 0 0;
  }
}

@media screen and (max-width: 390px) {
  h2 {
    font-size: 9.5vw;
    font-weight: 400;
  }

  .cenik .masaz h2 {
    font-size: 1.5em;
  }

  h3 {
    font-size: 9vw;
  }

  .pagetitle {
    font-size: 10vw;
    font-weight: 400;
  }

  .calendar-cont.fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk {
    width: 100%;
    text-align: center;
  }
  .calendar-cont.fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:first-of-type {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 370px) {
  .lotus-cards .scr {
    width: 580px;
  }

  .lotus-cards .card {
    max-width: 290px;
    padding: 1rem 2rem 0 0;
  }

  .lotus-cards .card figure {
    height: 360px;
  }
}

@media screen and (max-width: 360px) {
  .lotus-cards .scr {
    width: 580px;
  }

  .lotus-cards .card {
    max-width: 290px;
    padding: 1rem 2rem 0 0;
  }

  .lotus-cards .card figure {
    height: 360px;
  }

  .resp-slider .cards {
    grid-gap: 0;
  }
}

@media screen and (max-width: 330px) {
  figure.body img {
    min-width: 80vw;
  }
}
