/* z100 booking form (extracted from home page) */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

#z100f1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.z100d1 {
  padding: 7px 10px 7px 5px;
  align-items: center;
}

.z100d2 {
  flex-direction: column;
  width: 33%;
  justify-content: space-between;
  padding: 10px 2px 5px;
}

.z100d1,
.z100d2 {
  background: #333;
  border-radius: 2px;
  display: flex;
  border: none;
  box-shadow: 0px 0px 15px 1px #0005;
  position: relative;
}

#z100d3 {
  background: transparent;
  padding: 0;
  gap: 10px;
  align-items: normal;
  border: none;
  box-shadow: none;
}

.z100d4 {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

.z100d4 > input {
  width: 35px;
  text-align: center;
  font-family: var(--font1);
  font-size: 16px;
  font-weight: bold;
  color: var(--color4);
}

.z100i1 {
  width: fit-content;
  height: 20px;
  color: var(--color1);
  filter: brightness(0) saturate(100%) invert(66%) sepia(91%) saturate(561%) hue-rotate(356deg) brightness(94%) contrast(91%);
}

.z100in1 {
  background: none;
  font-size: 16px;
  font-family: var(--font1);
  padding: 5px;
  border: 0;
  width: 100%;
  color: var(--color4);
}

.z100in1::placeholder {
  color: var(--color4);
}

#z100in2 {
  font-size: 16px;
  line-height: 16px;
  font-weight: normal;
  width: 100%;
}

.z100in1:focus {
  outline: none;
}

.z100lb1,
.z100s1 {
  display: block;
  text-align: center;
}

.z100lb1 {
  color: var(--color4);
  font-size: 14px;
  margin-bottom: 2px;
  font-family: var(--font1);
}

.z100s1 {
  color: #ccc;
  font-family: var(--font1);
  font-size: 12px;
  font-weight: normal;
}

.z100s3 {
  border-right: 1px solid #cdc1c1;
  width: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.z100s8::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 5px solid var(--color1);
  display: block;
  margin-left: 5px;
}

.z100s8 {
  padding: 5px;
}

.z100bt1,
.z100bt2 {
  width: 0;
  height: 0;
  border: 10px solid var(--color1);
  border-top-color: transparent;
  border-bottom-color: transparent;
  background: transparent;
}

.z100bt1 {
  border-left: none;
}

.z100bt2 {
  border-right: none;
}

#z100d5 {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

#z100bt3 {
  height: 50px;
  background: var(--color1);
  border-radius: 2px;
  padding: 8px 20px 6px;
  border: none;
  box-shadow: 0px 0px 15px 1px #0005;
  width: 50%;
  font-family: var(--font1);
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  transition: 1s all;
  color: var(--color4);
}

#z100bt3:hover {
  font-size: 20px;
  padding-top: 5px;
  text-shadow: 0 2px #000;
}

#z100bt3:hover #z100s4 {
  display: none;
}

#z100d6 {
  width: 50%;
  font-family: var(--font1);
  font-size: 17px;
  font-weight: bold;
}

#z100s4 {
  display: block;
  text-align: center;
  font-family: var(--font1);
  color: #111;
  font-size: 11px;
  font-weight: normal;
  word-spacing: 2px;
  letter-spacing: 1px;
}

@media screen and (max-width: 1120px) {
  .z100d2 {
    width: unset;
  }

  #z100d3 {
    flex-direction: column;
  }

  .z100d4 {
    gap: 25px;
  }
}

