@charset "UTF-8";
::-moz-selection:not(input) {
  color: inherit;
  background: rgba(255, 255, 255, 0);
}
::selection:not(input) {
  color: inherit;
  background: rgba(255, 255, 255, 0);
}

.glow:hover:not(:disabled), a:hover:not(:disabled):link,
.link:hover:not(:disabled),
select:hover:not(:disabled),
button:hover:not(:disabled),
input[type=file]:hover:not(:disabled) {
  cursor: pointer;
  filter: drop-shadow(0 0 0.5rem #bc8f8f);
  transition: 0.2s;
}
.glow:active:not(:disabled), a:active:not(:disabled):link,
.link:active:not(:disabled),
select:active:not(:disabled),
button:active:not(:disabled),
input[type=file]:active:not(:disabled) {
  filter: drop-shadow(0 0 0.5rem white);
  transition: 0.2s;
}
.glow.hide, a.hide:link,
.hide.link,
select.hide,
button.hide,
input.hide[type=file] {
  cursor: default;
}

div {
  cursor: default;
}

html {
  background: dimgray;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: min(2vw, 24px);
  font-weight: bold;
}

body {
  height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: min-content min-content auto;
}

footer {
  color: black;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 1.6em;
  display: flex;
  justify-content: space-between;
}
footer * {
  margin: 0 0.5rem;
  display: inherit;
  align-items: center;
  height: inherit;
}
footer #copyright {
  font-weight: 900;
  font-size: 1.8em;
  margin-top: -0.08em;
}
footer #mail > svg > path {
  fill-rule: evenodd;
  fill: none;
  stroke: black;
  stroke-opacity: 1;
  stroke-width: 40;
  stroke-miterlimit: 4;
  stroke-dasharray: none;
}
footer #info {
  font-weight: 600;
  font-size: 1.2em;
}

nav {
  border-color: #bc8f8f;
  border-style: solid;
  border-width: 0 0 0.39rem 0;
  margin-bottom: 0;
}
nav > header {
  display: flex;
  justify-content: space-between;
  height: 2em;
  margin: 0 0.5rem;
}
nav > header * {
  display: inherit;
  align-items: center;
  height: inherit;
}
nav > header > * {
  margin-top: 0.8rem;
}
nav > header > * > * {
  margin: 0 0.25rem;
}
nav > header #language {
  width: 1.4em;
  height: 1em;
  -o-object-fit: cover;
     object-fit: cover;
  border-color: #715656;
  border-style: solid;
  border-radius: 1rem;
  border-width: 0.3rem;
}
nav > header #language > img {
  height: 1.4em;
  width: auto;
}
nav #path {
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}
nav #navBut > div {
  display: grid;
  grid-template-columns: min-content auto min-content;
}

main {
  overflow: hidden auto;
  grid-row: 3;
  position: center;
  padding: 0.5rem;
}
main > img {
  height: 90%;
  width: 90%;
}

h1 {
  margin: 0;
  color: #bc8f8f;
  cursor: default;
}

input,
select {
  font-weight: bold;
  color: #715656;
  margin: 0.5rem;
  font-size: 1.2em;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  border-color: #bc8f8f;
  border-style: solid;
  border-radius: 1rem;
  border-width: 0.3rem;
}
input:disabled,
select:disabled {
  border-color: rgba(188, 143, 143, 0.5);
  color: rgba(188, 143, 143, 0.5);
  box-shadow: none;
  background: rgba(128, 128, 128, 0.5);
}
input:focus:enabled,
select:focus:enabled {
  outline: none;
  border-radius: 1rem;
}
input:invalid,
select:invalid {
  background: #fdcfc9;
}
input:valid,
select:valid {
  color: black;
}
input[type=file]::file-selector-button,
select[type=file]::file-selector-button {
  font-weight: bold;
  background-color: #715656;
  color: #bc8f8f;
  margin-left: -0.5rem;
  border-width: 0;
  padding: 0.0833333333rem 0.5rem;
  border-radius: 1rem;
}
input[type=checkbox],
select[type=checkbox] {
  cursor: pointer;
  padding: 0;
  margin: auto 0.5rem;
  width: 1.4em;
  height: 1.4em;
  border: 0.3rem solid #bc8f8f;
  border-radius: 1em;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type=checkbox]:checked,
select[type=checkbox]:checked {
  background-color: white;
  filter: drop-shadow(0 0 0.5rem white);
  transition: 0.2s;
}
input[type=checkbox]:disabled,
select[type=checkbox]:disabled {
  background-color: darkgray;
}

option {
  background-color: #d9bfbf;
}
option:checked {
  background-color: white;
}

button {
  font-weight: bold;
  background: #715656;
  color: #bc8f8f;
  margin: 0.5rem;
  font-size: 1.2em;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  border-color: #bc8f8f;
  border-style: solid;
  border-radius: 1rem;
  border-width: 0.3rem;
}
button:disabled {
  border-color: rgba(188, 143, 143, 0.5);
  color: rgba(188, 143, 143, 0.5);
  box-shadow: none;
  background-color: #715656;
}
button:focus:enabled {
  outline: none;
  border-radius: 1rem;
}

::-webkit-scrollbar {
  width: 0.8rem;
}
::-webkit-scrollbar-thumb {
  background: rgba(113, 86, 86, 0.75);
  border-radius: 0.5em;
}
::-webkit-scrollbar-thumb:hover {
  background: #544040;
}

#selTours {
  min-width: 8em;
}

#seldel {
  display: grid;
  grid-template-columns: auto min-content;
}

#addZip {
  height: 90%;
  display: grid;
  grid-template-rows: min-content 6em min-content;
}
#addZip > div {
  margin: auto;
}

#picture > img {
  width: 6rem;
}

.row {
  display: flex;
  flex-direction: row;
}

.left {
  text-align: left;
}

.e_e_e {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

._ee_ {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.bar {
  opacity: 0;
  background-color: transparent;
  position: relative;
  width: 20em;
  height: 1em;
  margin: 0.5rem auto;
  border-color: #bc8f8f;
  border-style: solid;
  border-radius: 1rem;
  border-width: 0.3rem;
}
.bar > div {
  position: absolute;
  width: 0%;
  height: inherit;
  border-radius: 0.5rem;
  z-index: 12;
}
.bar > div:nth-of-type(1) {
  z-index: 15;
  background-color: #715656;
}
.bar > div:nth-of-type(2) {
  z-index: 14;
  background-color: #cfafaf;
}
.bar > div:nth-of-type(3) {
  z-index: 13;
  background-color: white;
}

#ntc-fog {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 50;
  background-color: rgba(77, 77, 77, 0.8235294118);
}
#ntc-fog.hiden {
  display: none;
}

#ntc {
  display: flex;
  flex-direction: column;
  font-size: inherit;
  min-height: 6em;
  max-height: 90vh;
  min-width: 20em;
  max-width: 90vw;
  z-index: 55;
  overflow: auto;
  position: fixed;
  color: black;
  text-align: center;
  box-shadow: 0.06rem 0.18rem 0.3rem rgba(0, 0, 0, 0.4);
  transition: 0.2s;
  background: dimgray;
  border-color: #715656;
  border-style: solid;
  border-radius: 1rem;
  border-width: 0.3rem;
  padding: 0.5rem;
}
#ntc input:not([type=checkbox]),
#ntc select,
#ntc .help {
  margin-top: 0.4rem;
}
#ntc.hiden {
  display: none;
}
#ntc #ntc-text {
  font-size: inherit;
  padding: 1rem 0.25rem;
  overflow: hidden auto;
}
#ntc #ntc-text *:not(.x, .help°) {
  font-size: inherit;
}
#ntc #ntc-title {
  font-size: 1.4em;
  font-weight: bold;
  overflow: hidden auto;
}
#ntc #ntc-btn {
  font-size: 1em;
}
#ntc #ntc-close {
  font-size: inherit;
  display: flex;
  justify-content: right;
  width: 100%;
  height: 0.8em;
}
#ntc #ntc-close img {
  font-size: inherit;
  height: 1.2em;
  width: auto;
  margin-top: -0.2em;
  margin-right: -0.2em;
}

.spin::before {
  position: absolute;
  z-index: 100;
  animation: 1.5s linear infinite spinner;
  animation-play-state: inherit;
  border: solid 2rem #715656;
  border-bottom-color: #bc8f8f;
  border-radius: 8rem;
  content: "";
  height: 8rem;
  width: 8rem;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}

@keyframes spinner {
  0% {
    transform: translate3d(-50%, -50%, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(-50%, -50%, 0) rotate(360deg);
  }
}
.help {
  position: relative;
  display: inline-block;
  border-style: none;
  background: none;
  margin-right: 0;
  margin-left: -0.9em;
  padding: 0;
  box-shadow: none;
  z-index: 1;
}
.help .help° {
  font-size: 0.8em;
  display: none;
  cursor: default;
  width: 15em;
  background-color: #715656;
  color: #bc8f8f;
  text-align: center;
  border-radius: 1rem;
  padding: 0.4em 0;
  position: absolute;
  top: 2.5em;
  right: -1.3em;
}
.help .help°::after {
  content: "";
  position: absolute;
  top: -0.1em;
  left: 12.5em;
  margin-top: -1.4em;
  border-width: 0.8em;
  border-style: solid;
  border-color: transparent transparent #715656 transparent;
}
.help:hover:enabled {
  outline: none;
  box-shadow: none;
}
.help:hover .help° {
  display: block;
}/*# sourceMappingURL=style.css.map */