@font-face {
  font-family: "AvenirBlack";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/AvenirLTStd-Heavy.woff2") format("woff2"), url("../fonts/AvenirLTStd-Heavy.woff") format("woff");
}
@font-face {
  font-family: "Avenir";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/AvenirLTStd-Book.woff2") format("woff2"), url("../fonts/AvenirLTStd-Book.woff") format("woff");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Avenir", sans-serif;
  background-color: #002c64;
  color: #000;
  margin: 0;
  padding: 0;
  font-size: 14pt;
  line-height: 1.6em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "AvenirBlack", sans-serif;
  font-weight: normal;
  margin: 0 0 20px;
  padding: 0;
  color: #1b8ca7;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

p {
  margin: 0 0 15px;
  padding: 0;
}

h3.subtitle {
  color: #888;
  margin-top: -10px;
  margin-bottom: 30px;
  font-weight: normal;
}

a {
  color: #1b8ca7;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a img {
  border: none;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 0;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 16px;
  border: 0;
}
.btn.btn-primary {
  background: #1b8ca7;
  color: white;
}
.btn.btn-primary:hover {
  background: #166e83;
}
.btn.btn-secondary {
  background: #00215C;
  color: white;
}
.btn.btn-secondary:hover {
  background: #545b62;
}
.btn.btn-danger {
  background: #dc3545;
  color: white;
}
.btn.btn-danger:hover {
  background: #c82333;
}
.btn.btn-outline {
  border: 2px solid #1b8ca7;
  color: #1b8ca7;
  background: transparent;
}
.btn.btn-outline:hover {
  background: #1b8ca7;
  color: white;
}
.btn.btn-action {
  padding: 5px;
  font-size: 12px;
  line-height: 1;
}
.btn .material-symbols-outlined {
  vertical-align: middle;
}

.container {
  width: 1200px;
  margin: 20px auto;
  padding: 25px;
  background: rgba(255, 255, 255, 0.95);
  overflow-x: scroll;
}
@media screen and (max-width: 1200px) {
  .container {
    width: 95vw;
  }
}

.hidden {
  display: none !important;
}

#login {
  width: 400px;
  position: absolute;
  margin: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.login-logo {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 150px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  width: 1200px;
  margin: 20px auto;
  position: relative;
}
header .main-logo {
  width: 150px;
  display: block;
}
header nav {
  background: #1b8ca7;
  padding: 10px 0;
  color: #fff;
}
header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
header nav ul li {
  display: inline-block;
  margin: 0 15px;
}
header nav ul li a {
  color: #fff;
  font-family: "AvenirBlack", sans-serif;
  font-size: 16px;
  position: relative;
}
header nav ul li a .material-symbols-outlined {
  vertical-align: middle;
  line-height: 1.6rem;
}
header nav ul li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1200px) {
  header nav ul {
    display: none;
    position: absolute;
    top: 115px;
    left: 0;
    margin: 0 auto;
    width: 95vw;
  }
  header nav ul.active {
    display: block;
  }
  header nav ul li {
    display: block;
    background: #1b8ca7;
    margin: 0;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
header nav span#menuIcon {
  vertical-align: middle;
  margin: 0 20px;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  header {
    width: 95vw;
  }
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99;
  display: none;
}
#overlay.active {
  display: block;
}

.popup {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 600px;
  background: #fff;
  display: none;
  padding: 20px;
  min-height: 300px;
  max-height: 80vh;
  overflow-y: scroll;
}
.popup.active {
  display: block;
}
.popup .closeBtn {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.popup h2 {
  max-width: calc(100% - 20px);
}
.popup p:last-of-type {
  margin: 0;
}
@media screen and (max-width: 600px) {
  .popup {
    width: 90vw;
  }
}

ul {
  list-style-type: circle;
  padding: 0 0 0 20px;
  margin: 0 0 20px;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 0 15px;
}
@media screen and (max-width: 660px) {
  .two-columns {
    grid-template-columns: 1fr;
  }
}

strong {
  font-family: "AvenirBlack", sans-serif;
  font-weight: normal;
}

.mobile {
  display: none;
}
@media screen and (max-width: 1200px) {
  .mobile {
    display: inline-block;
  }
}

#standInfoBlock {
  max-width: 400px;
  margin: 0 auto 40px auto;
  text-align: center;
  border: 1px solid #1b8ca7;
}
#standInfoBlock strong {
  display: block;
  margin: 0;
  background: #1b8ca7;
  color: white;
  padding: 5px;
}
#standInfoBlock .stand-name {
  display: block;
  padding: 40px;
  font-size: 40px;
  line-height: 50px;
  font-weight: bold;
}

@media screen and (max-width: 1200px) {
  .nonmobile {
    display: none;
  }
}

#registerBtn {
  padding: 7px 20px;
}

.color-red {
  color: #d52525;
}

.form-group {
  margin-bottom: 10px;
}

.form-group .col-30 {
  width: 30%;
  float: left;
  padding-right: 10px;
}

.form-group .col-70 {
  width: 70%;
  float: left;
}

.form-group.combined::after {
  content: "";
  display: table;
  clear: both;
}

.form-check label {
  display: inline-block;
  margin-left: 5px;
}

input[type=text], input[type=password], input[type=number], input[type=datetime-local], input[type=tel], input[type=email], textarea, select {
  padding: 2px 10px 0 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: "Avenir", sans-serif;
  font-size: 16px;
  line-height: 2;
  width: 100%;
  margin: 5px 0;
  display: block;
}
input[type=text]:focus, input[type=password]:focus, input[type=number]:focus, input[type=datetime-local]:focus, input[type=tel]:focus, input[type=email]:focus, textarea:focus, select:focus {
  border-color: #1b8ca7;
  outline: none;
}
input[type=text]::placeholder, input[type=password]::placeholder, input[type=number]::placeholder, input[type=datetime-local]::placeholder, input[type=tel]::placeholder, input[type=email]::placeholder, textarea::placeholder, select::placeholder {
  color: #888;
}

select {
  height: 34px;
}

input[type=submit], button {
  background-color: #1b8ca7;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 30px;
  font-family: "AvenirBlack", sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Avenir", sans-serif;
}
input[type=submit]:hover, button:hover {
  background-color: #1b8ca7;
}

.alert {
  display: block;
  margin: 20px 0;
  padding: 10px 15px;
  border-radius: 5px;
}
.alert.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.alert.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#fileUploadProgress {
  position: fixed;
  top: 50%;
  left: 50%;
  text-align: center;
  padding: 5cqi;
  transform: translate(-50%, -50%);
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #f9f9f9;
  font-family: "Avenir", sans-serif;
  font-size: 16px;
  box-sizing: border-box;
}
#fileUploadProgress .progress-bar {
  margin: 20px 0;
  height: 20px;
  background: #1b8ca7;
  width: 0%;
  border-radius: 5px;
  transition: width 0.3s ease;
}
#fileUploadProgress .progress-text {
  margin-top: 5px;
  font-size: 12px;
  color: #333;
}

hr {
  border: none;
  border-top: 1px solid #1b8ca7;
  margin: 0 0 20px;
}

.checkbox-wrapper input[type=checkbox] {
  appearance: none;
  background-color: #cecece;
  border-radius: 72px;
  border-style: none;
  flex-shrink: 0;
  height: 20px;
  margin: 0;
  position: relative;
  top: 4px;
  width: 30px;
}

.checkbox-wrapper input[type=checkbox]::before {
  bottom: -6px;
  content: "";
  left: -6px;
  position: absolute;
  right: -6px;
  top: -6px;
}

.checkbox-wrapper input[type=checkbox],
.checkbox-wrapper input[type=checkbox]::after {
  transition: all 100ms ease-out;
}

.checkbox-wrapper input[type=checkbox]::after {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  height: 14px;
  left: 3px;
  position: absolute;
  top: 3px;
  width: 14px;
}

.checkbox-wrapper input[type=checkbox] {
  cursor: default;
}

.checkbox-wrapper input[type=checkbox]:hover {
  background-color: #1b8ca7;
  transition-duration: 0s;
}

.checkbox-wrapper input[type=checkbox]:checked {
  background-color: #00215C;
}

.checkbox-wrapper input[type=checkbox]:checked::after {
  background-color: #fff;
  left: 13px;
}

.checkbox-wrapper :focus:not(.focus-visible) {
  outline: 0;
}

.checkbox-wrapper input[type=checkbox]:checked:hover {
  background-color: #1b8ca7;
}

.help-text {
  color: #888;
  position: relative;
  top: -6px;
}

input[type=file] {
  border: none;
  padding: 0;
  height: auto;
  display: block;
  margin: 5px 0 15px;
  font-size: 16px;
  font-family: "Avenir", sans-serif;
}
input[type=file]::file-selector-button {
  border: 0;
  padding: 5px 10px;
  background-color: #1b8ca7;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

img.company-logo-preview {
  max-width: 150px;
  max-height: 150px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 10px;
}

#floorplan.container {
  overflow-x: scroll;
}
#floorplan.container svg {
  min-width: 1000px;
}
#floorplan.container svg .stand {
  cursor: pointer;
}
#floorplan.container svg .stand.available {
  fill: #7ab51d;
}
#floorplan.container svg .stand.option {
  fill: #ffb300;
}
#floorplan.container svg .stand.unavailable {
  fill: #d52525;
}

.standImage {
  width: 100%;
  margin: 0 0 20px;
}

.companyLogo {
  max-width: 150px;
  max-height: 150px;
  margin: 0 auto 20px auto;
  display: block;
}

.price {
  font-family: "AvenirBlack", sans-serif;
}

#standInfoUnavailable h2, #standInfoOption h2 {
  margin: 0;
}
#standInfoUnavailable p.standType, #standInfoOption p.standType {
  margin: 0 0 20px;
}

.legenda {
  margin: 0 0 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #cecece;
  border-radius: 10px;
  font-size: 14px;
  line-height: 20px;
}
.legenda ul {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.legenda ul li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.legenda ul li .stand {
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 3px;
  margin-top: -2px;
}
.legenda ul li .stand.available {
  background: #7ab51d;
}
.legenda ul li .stand.option {
  background: #ffb300;
}
.legenda ul li .stand.unavailable {
  background: #d52525;
}

.floorplan-wrapper {
  overflow-x: scroll;
}

.webshop-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.webshop-grid .webshop-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #cecece;
  border-radius: 10px;
  width: calc(25% - 15px);
  text-align: center;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 900px) {
  .webshop-grid .webshop-card {
    width: calc(33.3333333333% - 20px);
  }
}
@media screen and (max-width: 600px) {
  .webshop-grid .webshop-card {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 400px) {
  .webshop-grid .webshop-card {
    width: 100%;
  }
}
.webshop-grid .webshop-card:hover {
  transform: translateY(-5px);
}
.webshop-grid .webshop-card .webshop-image {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: 5px;
  margin-bottom: 10px;
}
.webshop-grid .webshop-card .webshop-name {
  font-size: 18px;
  font-weight: bold;
  color: #1b8ca7;
}

.webshop-image-large {
  max-height: 300px;
  width: 100%;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
table th, table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #cecece;
}
table th {
  background: #1b8ca7;
  color: white;
}
table .btn {
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1;
  border: none;
  border-radius: 5px;
}

.cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background: white;
  color: #1b8ca7;
  border-radius: 50%;
  padding: 3px;
  width: 18px;
  height: 18px;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  font-weight: bold;
  display: inline-block;
}
.cart-count.has-items {
  display: inline-block;
}
.cart-count:not(.has-items) {
  display: none;
}

.cart-item.canceled {
  opacity: 0.5;
  text-decoration: line-through;
}

.cancelItem {
  cursor: pointer;
}

.order-status {
  padding: 5px 10px;
  border-radius: 5px;
  color: #000;
  font-weight: bold;
  display: inline-block;
  border: 1px solid #000;
}
.order-status.success {
  background-color: #155724;
  color: #fff;
}
.order-status.warning {
  background-color: #d52525;
  color: #fff;
}
.order-status.danger {
  background-color: #d52525;
  color: #fff;
}

.buttons {
  text-align: right;
}

.orders-overview {
  overflow-x: scroll;
}

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