﻿@charset "UTF-8";
:root {
  --black: #000;
  --white: #fff;
  --grey: #74806c;
  --grey-light: #e8e8e8;
  --red: #d0043c;
  --green: #8beb4b;
  --blue: #0055cc;
  --border-radius: 20px;
}

.es-loader {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background-color: black;
  opacity: 0.7;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lds-roller {
  color: white;
}

.lds-roller,
.lds-roller div,
.lds-roller div:after {
  box-sizing: border-box;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 160px; /* Zvětšení na dvojnásobek */
  height: 160px; /* Zvětšení na dvojnásobek */
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 80px 80px; /* Úprava středu rotace */
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 14.4px; /* Zvětšení na dvojnásobek */
  height: 14.4px; /* Zvětšení na dvojnásobek */
  border-radius: 50%;
  background: currentColor;
  margin: -7.2px 0 0 -7.2px; /* Upravení polohy */
}

.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 125.25484px;
  left: 125.25484px;
}

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 135.42562px;
  left: 112px;
}

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 141.81925px;
  left: 96.56442px;
}

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 144px;
  left: 80px;
}

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 141.81925px;
  left: 63.43558px;
}

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 135.42562px;
  left: 48px;
}

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 125.25484px;
  left: 34.74516px;
}

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 112px;
  left: 24.57438px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  background-color: var(--white);
  min-height: 100%;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 24px;
  background: linear-gradient(315deg, #b3b6bb 5%, #fff 10%, #ccc 30%, #ddd 50%, #e7e7e7 60%, #fff 75%, #b3b6bb 95%);
}

body.loading {
  overflow: hidden;
}
body.loading .es-loader {
  display: flex;
}

body.modal-is-open {
  overflow: hidden;
}
body.modal-is-open::after {
  content: "";
  position: absolute;
  background-color: black;
  opacity: 0.7;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
}

a {
  text-decoration: none;
}

main {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 150px 1fr;
  height: 100%;
  padding: 50px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.topSection {
  text-align: center;
  z-index: 2;
}
.topSection img {
  width: 200px;
}
.topSection h1 {
  font-size: 24px;
  margin-top: 15px;
  color: var(--black);
}

.mainSection {
  background-color: var(--white);
  box-shadow: 10px 10px 31px -11px rgba(0, 0, 0, 0.75);
  border-radius: var(--border-radius);
  z-index: 2;
}
.mainSection .sectionTitle {
  padding: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}
.mainSection .sectionTitle h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 34px;
}
.mainSection .mainContent {
  padding: 30px;
}
.mainSection .bottomButtons {
  margin-top: 50px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.mainSection .bottomButtons .mainButton {
  font-size: 30px;
  line-height: 30px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  color: var(--black);
  border: 2px solid var(--grey);
  padding: 30px;
  background-color: var(--grey-light);
  border-radius: var(--border-radius);
}
.mainSection .bottomButtons .minorButton {
  font-size: 30px;
  line-height: 30px;
  text-transform: uppercase;
  background-color: var(--grey-light);
  font-weight: 700;
  text-decoration: none;
  color: var(--black);
  border: 2px solid var(--grey);
  padding: 30px;
  border-radius: var(--border-radius);
}

@media (min-width: 1081px) {
  body {
    height: fit-content;
  }
  .mainSection {
    max-width: 1920px;
    margin: 0 auto;
    margin-top: 50px;
  }
}
.languageGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.languageGrid a,
.languageGrid button {
  background-color: transparent;
  border: 2px solid var(--grey);
  border-radius: var(--border-radius);
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}
.languageGrid a img,
.languageGrid button img {
  width: 100%;
  height: auto;
}

.phoneNumbers {
  margin-top: 50px;
}
.phoneNumbers h3 {
  text-align: center;
}
.phoneNumbers .phonesGrid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.phoneNumbers .phonesGrid .phonesItem {
  border-radius: var(--border-radius);
  border: 1px solid var(--grey);
  padding: 20px;
  position: relative;
  overflow: hidden;
  font-weight: 700;
}
.phoneNumbers .phonesGrid .phonesItem .icon {
  position: absolute;
  right: -20px;
  transform: translateY(-50%);
  top: 50%;
  opacity: 0.2;
}
.phoneNumbers .phonesGrid .phonesItem .icon img {
  width: 150px;
}
.phoneNumbers .phonesGrid .phonesItem .icon.brose {
  right: -5px;
}
.phoneNumbers .phonesGrid .phonesItem .number {
  font-weight: 700;
  color: var(--red);
  font-size: 48px;
  line-height: 50px;
  margin-top: 15px;
}

.safetyInfo {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 30px;
  height: auto;
}
.safetyInfo ul {
  padding-left: 30px;
}
.safetyInfo ul li {
  padding: 10px 0;
  font-size: 18px;
}
.safetyInfo .safetyImages .safetyImagesGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.safetyInfo .safetyImages img {
  width: 100%;
}

.visitorSelect {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 100px 0;
}
.visitorSelect a {
  display: flex;
  align-items: center;
  flex-direction: column;
  border: 2px solid var(--grey);
  padding: 30px;
  gap: 20px;
  font-weight: 700;
  font-size: 30px;
  color: var(--red);
  border-radius: var(--border-radius);
}
.visitorSelect a img {
  height: 80px;
}

.formRow {
  margin-bottom: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.formRow.fullWidth {
  grid-template-columns: 1fr;
}
.formRow .inputWrapper {
  display: flex;
  gap: 3px;
  flex-direction: column;
}
.formRow .inputWrapper label {
  color: var(--grey);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
}
.formRow .inputWrapper input[type=text],
.formRow .inputWrapper input[type=number],
.formRow .inputWrapper textarea {
  height: 50px;
  font-size: 24px;
  border: 2px solid var(--grey);
  border-radius: 10px;
  outline: none;
  padding: 10px;
  width: 100%;
}
.formRow .inputWrapper input[type=text]:focus,
.formRow .inputWrapper input[type=number]:focus,
.formRow .inputWrapper textarea:focus {
  border: 2px solid var(--blue);
}
.formRow .inputWrapper textarea {
  height: 100px;
  resize: none;
  font-family: Arial, Helvetica, sans-serif;
}

.radiosRow {
  margin-bottom: 25px;
}
.radiosRow .radiosTitle {
  color: var(--grey);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
  margin-bottom: 10px;
}
.radiosRow .radiosItems {
  display: flex;
  align-items: center;
  gap: 50px;
}
.radiosRow .radiosItems .radioItem input {
  display: none;
}
.radiosRow .radiosItems .radioItem label {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--grey);
  padding: 20px;
  border-radius: var(--border-radius);
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.radiosRow .radiosItems .radioItem label img {
  height: 40px;
  width: auto;
}
.radiosRow .radiosItems .radioItem input:checked ~ label {
  background: #c4c4c4;
  -webkit-box-shadow: inset 0px 0px 5px #c1c1c1;
  -moz-box-shadow: inset 0px 0px 5px #c1c1c1;
  box-shadow: inset 0px 0px 5px #c1c1c1;
  outline: none;
}

.inputGroup {
  display: flex;
  gap: 8px;
}

.customSelect select {
  font-size: 24px;
  height: 50px;
  border: 2px solid var(--grey);
  border-radius: 10px;
}
.customSelect select.fullWidth {
  width: 100%;
}

.mapContainer {
  margin-top: 30px;
  position: relative;
}
.mapContainer img.map {
  width: 100%;
  height: auto;
}
.mapContainer .poi {
  position: absolute;
}
.mapContainer .poi svg {
  height: 50px;
}
.mapContainer .poi svg path {
  fill: var(--red);
}
.mapContainer .poi .label {
  position: absolute;
  background-color: white;
  font-size: 12px;
  white-space: nowrap;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--red);
  left: 40px;
  padding: 4px 8px;
  font-weight: 700;
  line-height: 14px;
  border-radius: 8px;
  text-align: left;
}
.mapContainer .poi.currentPosition {
  top: 61%;
  left: 7%;
}
.mapContainer .poi.positionNakladka {
  top: 6%;
  left: 64%;
}
.mapContainer .poi.positionVykladka {
  top: 60%;
  left: 65%;
}

.finalText {
  text-align: center;
}

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  background-color: white;
  width: 80%;
  display: none;
  flex-direction: column;
  border-radius: var(--border-radius);
}
.modal.open {
  display: flex;
}
.modal .title {
  font-size: 32px;
  border-bottom: 1px solid var(--red);
  padding: 32px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}
.modal .content {
  padding: 32px;
  font-size: 24px;
  text-align: center;
}
.modal .content .mapContainer {
  margin-top: 30px;
  position: relative;
}
.modal .content .mapContainer img.map {
  width: 100%;
  height: auto;
}
.modal .content .mapContainer .poi {
  position: absolute;
}
.modal .content .mapContainer .poi svg {
  height: 50px;
}
.modal .content .mapContainer .poi svg path {
  fill: var(--red);
}
.modal .content .mapContainer .poi .label {
  position: absolute;
  background-color: white;
  font-size: 12px;
  white-space: nowrap;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--red);
  left: 40px;
  padding: 4px 8px;
  font-weight: 700;
  line-height: 14px;
  border-radius: 8px;
  text-align: left;
}
.modal .content .mapContainer .poi.currentPosition {
  top: 61%;
  left: 7%;
}
.modal .content .mapContainer .poi.positionNakladka {
  top: 6%;
  left: 64%;
}
.modal .content .mapContainer .poi.positionVykladka {
  top: 60%;
  left: 65%;
}
.modal .modalButtons {
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-bottom: 30px;
}
.modal .modalButtons button,
.modal .modalButtons a {
  cursor: pointer;
  font-size: 30px;
  line-height: 30px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  color: var(--black);
  border: 2px solid var(--grey);
  padding: 30px;
  background-color: var(--grey-light);
  border-radius: var(--border-radius);
}

.errorText {
  display: none;
  color: red;
  font-size: 12px;
  position: absolute;
}

.hasError {
  position: relative;
}
.hasError.inputWrapper input,
.hasError.inputWrapper textarea,
.hasError.inputWrapper select {
  border-color: red !important;
}
.hasError.inputWrapper .errorText {
  bottom: -20px;
  left: 0px;
}
.hasError.radiosRow label {
  border-color: red !important;
}
.hasError .errorText {
  display: block;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

@media screen and (orientation: landscape) {
  main {
    padding-top: 0;
  }
  .mainSection {
    width: 50%;
    margin-top: 20px;
  }
  .mainSection .sectionTitle h2 {
    font-size: 24px;
    line-height: 1.3em;
  }
  .mainSection .bottomButtons .mainButton,
  .mainSection .bottomButtons .minorButton {
    padding: 20px;
    font-size: 24px;
  }
}
