/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
figure,
blockquote {
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  /* min-height: 100vh; */
  text-rendering: optimizeSpeed;
  line-height: 1.6;
  text-decoration-skip-ink: auto;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Natural flow and rhythm in articles by default */
section > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
}
/* IMPORT FONTU */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/kalkulacka/assets/Fonts/pxiByp8kv8JHgFVrLFj_Z1xlFQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/kalkulacka/assets/Fonts/pxiEyp8kv8JHgFVrJJfecg.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/kalkulacka/assets/Fonts/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  /* font */
  font-family: "Poppins", sans-serif;
  /* velikost */
  --fs-l: 2.5rem;
  --fs-m: 1.25rem;
  --fs-s: 1rem;
  /* barva */
  --orange: #cf8c20;
  --clr-text: #222b4c;
  --clr-text-m: #303a54;
  --clr-text-svetle: #6d7587;
  --clr-pozadi: #f1f3f6;
  --clr-pozadi-dark: #f3f5f8;
  --clr-red: rgb(204, 49, 49);
  /* Mezera&Padding&Margin */
  --gap: 1rem;
  --okraj: 1.5rem;
  --okraj-nd: 3rem;
  --text-cechy-color: #222b4c;
  --text-morava-color: #222b4c;
}

body {
  background-color: white;
  /* min-height: 100vh; */
}
body h1 {
  font-size: var(--fs-l);
  font-weight: 600;
  color: var(--clr-text);
}
body h2 {
  font-size: var(--fs-m);
  font-weight: 400;
  color: var(--clr-text);
}
body p {
  font-size: var(--fs-s);
  font-weight: 200;
  color: var(--clr-text-m);
}

section {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
}

@media only screen and (min-width: 890px) {
  section {
    width: calc(100% - 1rem);
    /* min-height: 100vh; */
    margin-left: 1rem;
    padding-right: 1rem;
  }
}
.form {
  width: 100%;
  min-height: 92vh;
  background: linear-gradient(0deg, rgb(244, 245, 248) 0%, rgb(252, 253, 254) 50%, rgb(244, 245, 248) 100%);
}
.form h2 {
  font-weight: 400;
  color: var(--clr-text-svetle);
}

@media only screen and (min-width: 890px) {
  .form {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    max-width: 1020px;
    min-height: 775px;
    box-shadow: 0.5rem 0.2rem 2rem 0.5rem rgba(109, 117, 135, 0.15);
    border-radius: 2.5rem;
    margin: 2.5rem;
    justify-items: center;
  }
}
form {
  margin-left: var(--gap);
  margin-right: var(--gap);
  margin-top: calc(var(--okraj-nd) * 0.5);
  margin-bottom: calc(var(--okraj-nd) * 0.5);
}

@media only screen and (min-width: 890px) {
  form {
    width: calc(100% - 2rem);
  }
}
.nadpis-form {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-l);
  font-weight: 600;
  color: var(--clr-text);
  margin-top: 2rem;
  text-align: center;
}
.nadpis-form img {
  width: auto;
  height: 65px;
  padding-bottom: 0.3rem;
}

@media only screen and (min-width: 890px) {
  .nadpis-form {
    margin-top: 0;
    flex-direction: row;
  }
  .nadpis-form img {
    margin-left: 1rem;
  }
}
.header-box {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  min-height: 17rem;
  background: linear-gradient(18deg, rgb(243, 245, 248) 0%, rgb(243, 245, 248) 20%, rgb(250, 250, 250) 23%, rgb(250, 250, 250) 73%, rgb(242, 244, 246) 75%, rgb(242, 244, 246) 100%);
  border-radius: 0rem 0rem 2.5rem 2.5rem;
  box-shadow: 0rem 0 2rem 2rem rgba(109, 117, 135, 0.15);
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 890px) {
  .header-box {
    box-shadow: 0rem 0rem 2rem 0.5rem rgba(109, 117, 135, 0.15);
    border-radius: 2.5rem;
    height: 100%;
    justify-content: flex-end;
  }
}
.logo {
  display: block;
  max-width: 16rem;
  position: absolute;
  top: var(--okraj);
}

@media only screen and (min-width: 890px) {
  .logo {
    top: 2rem;
  }
}
.vysledek-box {
  display: flex;
  flex-direction: column;
  text-align: right;
  line-height: 2.8rem;
  margin-top: 3rem;
}
.vysledek-box p {
  font-size: calc(var(--fs-l) * 1.3);
  font-weight: 550;
  white-space: nowrap;
  /* margin-top: 7rem; */
  color: var(--clr-text);
}
.vysledek-box em {
  font-size: calc(var(--fs-m) * 0.9);
  font-weight: 400;
  color: var(--clr-text-svetle);
  white-space: nowrap;
  text-align: right;
  line-height: 1.3rem;
}

@media only screen and (min-width: 890px) {
  .vysledek-box {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -55%);
  }
  .vysledek-box em {
    margin-top: 0.4rem;
    line-height: 1rem;
  }
  .vysledek-box h2 {
    white-space: nowrap;
  }
}
.nadpis {
  display: block;
  position: absolute;
  top: 15.2rem;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
  background-color: var(--clr-text);
  color: var(--clr-pozadi);
  max-width: 19rem;
  border-radius: var(--gap);
  font-size: calc(var(--fs-l) * 0.9);
}

.nadpis-reg {
  display: block;
  position: absolute;
  top: 3.5rem;
  left: 4.1rem;
  right: 0;
  text-align: center;
  color: #000000;
  font-size: calc(var(--fs-l) * 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.nadpis-reg-m {
  display: block;
  position: absolute;
  top: 3.5rem;
  left: 4.1rem;
  right: 0;
  text-align: center;
  color: #000000;
  font-size: calc(var(--fs-l) * 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.nadpis-pc {
  display: none;
}

.nadpis-pc-reg {
  display: none;
}

@media only screen and (min-width: 890px) {
  .nadpis {
    display: none;
  }
  .nadpis-reg {
    display: none;
  }
  .nadpis-reg-m {
    display: none;
  }
  .nadpis-pc {
    display: block;
    position: absolute;
    top: 8rem;
    text-align: center;
    background-color: var(--clr-text);
    color: var(--clr-pozadi);
    padding: 0.25rem 1.6rem;
    margin: 0.2rem;
    border-radius: var(--gap);
    font-size: calc(var(--fs-l) * 0.9);
  }
  .nadpis-pc-reg {
    display: block;
    position: absolute;
    top: 3.8rem;
    right: 2.7rem;
    color: black;
    font-size: calc(var(--fs-l) * 0.55);
    font-weight: bold;
    text-transform: uppercase;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }
}
.radek {
  display: flex;
  flex-direction: column;
  gap: calc(var(--gap) * 0.7);
}
.radek label {
  color: var(--clr-text-svetle);
  font-weight: 400;
  font-size: var(--fs-s);
  position: relative;
}
.radek input,
.radek select {
  background: none;
  border: none;
  color: var(--clr-text-m);
  font-weight: 600;
  font-size: calc(var(--fs-m) * 0.8);
  outline: none;
}
.radek select {
  cursor: pointer;
}
.radek input:focus,
.radek select:focus {
  outline: solid var(--clr-text) 2px !important;
  outline-offset: 0.2rem;
  border-radius: 0.2rem;
}

.napoveda-icon {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: var(--clr-text-svetle);
  color: var(--clr-pozadi);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  margin-left: 2px;
  padding-bottom: 5px;
}

.napoveda-box {
  display: none;
  position: absolute;
  bottom: 1rem;
  left: 7rem;
  width: auto;
  padding: 0.5rem;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: calc(var(--fs-s) * 0.8);
  line-height: 1.4;
  z-index: 999;
  margin-right: var(--gap);
}

.spacer {
  display: flex;
  margin-top: calc(var(--gap) * 0.7);
  margin-bottom: calc(var(--gap) * 0.7);
  background: linear-gradient(90deg, rgb(242, 244, 246) 0%, rgba(190, 192, 196, 0.25) 50%, rgba(242, 244, 246, 0.599078341) 100%);
  width: 100%;
  height: 1px;
}

.checkbox {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  min-height: 2rem;
}
.checkbox label {
  font-size: var(--fs-s);
  color: var(--clr-text-m);
  font-weight: 600;
  margin-top: var(--gap);
}
.checkbox input {
  display: block;
  width: 1.5rem;
  height: auto;
  margin: inherit;
  accent-color: var(--clr-text);
  cursor: pointer;
}

.submit {
  margin-top: var(--okraj);
}
.submit input {
  display: block;
  border-radius: var(--gap);
  border: none;
  background-color: var(--clr-text);
  color: var(--clr-pozadi);
  text-transform: uppercase;
  font-weight: 600;
  font-size: var(--fs-m);
  margin: 0 auto;
  padding: 1rem 3rem;
  transition: transform 300ms ease-in-out;
  cursor: pointer;
}
.submit input:hover {
  transform: scale(1.05);
  background-color: var(--clr-text-m);
  color: var(--clr-pozadi);
}

.dodatek {
  display: none;
  flex-direction: column;
  margin-top: var(--gap);
}
.dodatek em {
  font-weight: 400;
}

@media only screen and (min-width: 890px) {
  .dodatek {
    display: block;
  }
}
.footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: var(--clr-text);
  align-items: center;
  justify-content: center;
  height: auto;
}

.menu {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: 100%;
  justify-items: center;
  align-items: center;
}
.menu button {
  text-decoration: none;
  font-size: var(--fs-m);
  font-weight: 600;
  border: none;
  background-color: var(--clr-text);
  cursor: pointer;
}

.nadpis-h3 {
  line-height: 2.8rem;
  margin-bottom: 1rem;
}

@media only screen and (min-width: 890px) {
  .nadpis-h3 {
    margin-bottom: 0;
  }
}
#mixpumpa-button-footer {
  line-height: 1.5rem;
}

.menu-pc {
  display: none;
}

.singleBtn {
  grid-template-columns: 1fr;
  min-height: 3.9rem;
}

@media only screen and (min-width: 890px) {
  .footer {
    display: none;
  }
  .menu {
    display: none;
  }
  .menuAllPC {
    width: 100%;
  }
  .menu-pc {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    width: 100%;
    justify-items: center;
    align-items: center;
    background-color: var(--clr-text);
    border-radius: 0 0 2.5rem 2.5rem;
  }
  .menu-pc button {
    text-decoration: none;
    background-color: var(--clr-text);
    border: none;
    font-size: var(--fs-m);
    font-weight: 600;
    cursor: pointer;
  }
  .menu-pc button:hover {
    color: #cf8c20 !important;
  }
  #mixpumpa-button {
    border-radius: 0 0 0 2.5rem;
    line-height: 1.4rem;
  }
  .singleBtn {
    grid-template-columns: 1fr;
    min-height: 3.9rem;
  }
}
.border-reset {
  border-radius: 0;
  position: relative;
}

.vybrat {
  font-size: calc(var(--fs-l) * 0.7);
  font-weight: 600;
  color: var(--clr-text-m);
}

.flex-column {
  display: none;
}

.flex-column2 {
  display: flex;
  flex-direction: row;
  gap: var(--gap);
  align-items: center;
}

@media only screen and (min-width: 890px) {
  .flex-column2 {
    display: none;
  }
  .flex-column {
    display: flex;
    flex-direction: row;
    gap: var(--gap);
    align-items: center;
  }
}
.v-spacer {
  display: flex;
  margin-top: calc(var(--gap) * 0.7);
  margin-bottom: calc(var(--gap) * 0.7);
  background: var(--clr-pozadi-dark);
  width: 2px;
  height: 2.5rem;
}

.v-spacer-hor {
  display: none;
}

.v-spacer-hor2 {
  display: flex;
  justify-self: center;
  margin-top: calc(var(--gap) * 0.7);
  margin-bottom: calc(var(--gap) * 0.7);
  background: var(--clr-pozadi-dark);
  height: 2px;
  width: 98%;
  position: absolute;
  bottom: 3.2rem;
}

@media only screen and (min-width: 890px) {
  .v-spacer-hor2 {
    display: none;
  }
  .v-spacer-hor {
    display: flex;
    margin-top: calc(var(--gap) * 0.7);
    margin-bottom: calc(var(--gap) * 0.7);
    background: var(--clr-pozadi-dark);
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: 3.2rem;
  }
}
.arrow {
  transform: translate(-50%, -50%);
  transform: rotate(0deg);
  right: 5.5rem;
  bottom: 8.9rem;
  margin-bottom: 0.2rem;
}

.arrow span {
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  border-bottom: 4px solid var(--clr-text-m);
  border-right: 4px solid var(--clr-text-m);
  transform: rotate(45deg);
  margin-bottom: 0px;
}

.menu-footer {
  display: grid;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  position: relative;
}

.check-popup {
  display: none !important;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.error {
  border: solid !important;
  border: 0.17em solid var(--clr-red) !important;
  border-radius: calc(var(--okraj) * 0.2);
}

.error-message {
  display: block !important;
  color: var(--clr-red);
  margin: 0;
  padding: 0;
  line-height: 1rem;
  font-weight: 500;
}

.spacer-checkAlert {
  margin-top: 0;
}

.verze {
  display: none;
}

@media only screen and (min-width: 890px) {
  .verze {
    display: block;
    width: auto;
    font-size: 11px;
    font-weight: 600;
    margin: 0;
  }
}
.sekce-vyberte {
  display: flex;
  min-height: 50vh;
  width: 100%;
  justify-content: center;
  align-content: center;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nadpis-vyberte {
  padding-left: 1rem;
  padding-right: 1rem;
}
.nadpis-vyberte p {
  text-align: left;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 2rem;
  text-transform: uppercase;
}
.nadpis-vyberte h1 {
  font-size: 2rem;
  line-height: 2rem;
}

@media only screen and (min-width: 522px) {
  .nadpis-vyberte p {
    text-align: right;
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
  }
  .nadpis-vyberte h1 {
    font-size: 2.5rem;
    line-height: 2rem;
  }
}
.mapa {
  display: flex;
  flex-direction: row;
  padding: 0rem 1rem 0rem 1rem;
  max-width: 100%;
}
.mapa svg {
  display: inline-block;
  max-width: 100%;
  max-height: 15rem;
}

#Cechy path {
  fill: var(--clr-pozadi-dark) !important;
  -webkit-fill: var(--clr-pozadi-dark) !important; /* WebKit (Safari, Chrome) */
  -moz-fill: var(--clr-pozadi-dark) !important; /* Firefox */
  -ms-fill: var(--clr-pozadi-dark) !important; /* Microsoft Edge */
  stroke: var(--clr-text);
  stroke-width: 5;
  transition: fill 150ms ease-in-out;
}

#Cechy path:hover {
  cursor: pointer;
  fill: var(--clr-text) !important;
  -webkit-fill: var(--clr-text) !important; /* WebKit (Safari, Chrome) */
  -moz-fill: var(--clr-text) !important; /* Firefox */
  -ms-fill: var(--clr-text) !important; /* Microsoft Edge */
}

#Morava path {
  fill: var(--clr-pozadi-dark) !important;
  -webkit-fill: var(--clr-pozadi-dark) !important; /* WebKit (Safari, Chrome) */
  -moz-fill: var(--clr-pozadi-dark) !important; /* Firefox */
  -ms-fill: var(--clr-pozadi-dark) !important; /* Microsoft Edge */
  stroke: var(--clr-text);
  stroke-width: 5;
  transition: fill 150ms ease-in-out;
}

#Morava path:hover {
  cursor: pointer;
  fill: var(--clr-text) !important;
  -webkit-fill: var(--clr-text) !important; /* WebKit (Safari, Chrome) */
  -moz-fill: var(--clr-text) !important; /* Firefox */
  -ms-fill: var(--clr-text) !important; /* Microsoft Edge */
}

#TextCechy text {
  fill: var(--clr-text);
  font-size: 32px;
  font-weight: 600;
  font-family: sans-serif;
  pointer-events: none;
}

#TextMorava text {
  fill: var(--clr-text);
  font-size: 32px;
  font-weight: 600;
  font-family: sans-serif;
  pointer-events: none;
}

#Text_cechy.hover {
  fill: var(--clr-pozadi-dark);
}

#Text_morava.hover {
  fill: var(--clr-pozadi-dark);
}

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