:root {
  --font-size: 16px;
  --font-family: Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, Helvetica Neue, trebuchet MS, Arial, sans-serif;
  --theme-color: hsl(267, 90%, 51%);
  --theme-color: rgb(72 64 187);
  --page-background: hsl(206.71deg 36.65% 80.11% / 71%);
  --text-color: hsl(0deg 0% 0%);
  --input-background: hsl(0deg 0% 95%);
  --font-family: 'Roboto Condensed', sans-serif;
  --mobile-width: 450px;

  
  --success-color: #009963;
  --error-color: #ff3859;
  --warning-color: #be7106;
  --info-color: #0099ff;
}

* {
  box-sizing: border-box;
}

html {
  font-size: var(--font-size);
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  color: var(--text-color);
  background: var(--page-background) no-repeat fixed;
  font-family: var(--font-family);
  line-height: 1.69;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-variant-numeric: tabular-nums;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0.5rem 0 0;
  font-weight: 500;
}

input:disabled {
  background-color: #fff;
  color: #999;
  border: none;
}

.padding-top {
  padding-top: 1rem;
}

.padding-bottom {
  padding-bottom: 1rem;
}

.padding {
  padding: 1rem;
}

.app {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  min-height: calc(100vh - 100px);
}

.wrap {
  margin: 1rem auto;
  padding: 1rem;
  max-width: 800px;
  background-color: #ffffffee;
}

.app-footer {
  display: grid;
  margin: 1rem auto;
  padding-bottom: 2rem;
  max-width: 800px;
  grid-template-columns: auto 1fr;
  color: rgb(25 67 102);
}

.app-footer a {
  color: inherit;
  text-decoration: none;
}

.app-footer .innblocks-logo {
  width: 36px;
  height: 36px;
  margin-right: 0.5rem;
  background-color: rgb(45 158 255);
}

.app-footer .innblocks {
  display: grid;
  font-size: 1.1rem;
  vertical-align: middle;
  grid-template-columns: auto 1fr;
  line-height: 1;
}

@media print  {
  .app-footer {
    display: none;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.grid-cols-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
}

.grid-gap {
  grid-gap: 1rem;
}

.grid-no-gap {
  grid-gap: 0;
}

small, 
.small {
  font-size: 0.75rem;
}

.header {
  margin: 0 0 1rem;
  text-align: center;
  border-bottom: 2px solid;
  padding-bottom: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
}

.header img.qr {
  aspect-ratio: 1/1;
  max-height: 4.5rem;
}

.header .qr svg {
  aspect-ratio: 1/1;
  max-height: 4.5rem;
  height: 5rem;
}

.header img {
  max-width: min(150px, 22cqi);
  max-height: 4.5rem;
}

.header .hotel {
  display: block;
  font-size: min(0.85rem, 3cqi);
  text-align: right;
}

@media (width < 450px) {
  .header {
    xdisplay: block;
  }
  .header .hotel {
    xmargin-top: 1rem;
    xtext-align: center;
  }
}

.options {
  list-style: none;
  margin: 5rem 0;
  padding: 0;
  text-align: center;
}

label {
  display: block;
  padding: 0.5rem 0;
}

label .label {
  color: rgba(0,0,0,0.8);
  font-family: Roboto Condensed;
}

label input {
  display: block;
  width: 100%;
  padding: 0.5rem;
  border: none;
  border-bottom: 0.5px solid #ccc;
  font-size: inherit;
  font-family: inherit;
  background: var(--input-background);
}

.checkbox-label input {
  display: inline-block !important;
  width: auto;
}

.button,
button {
  display: inline-block;
  padding: 0.5rem 2rem;
  border: 0px solid #ccc;
  border-radius: 4rem;
  font-size: inherit;
  cursor: pointer;
  background-image: linear-gradient(to right, rgba(255, 255, 255,0.3) 0%, rgba(0,0,0,0.1) 51%, rgba(255,255,255,0.3) 100%), linear-gradient(45deg, var(--theme-color), var(--theme-color));
  color: white;
  
  border-radius: 5rem;
  transition: 0.5s;
  background-size: 200% auto;
  text-decoration: none;
}

.button:hover,
button:hover {
  background-position: center center;
  text-decoration: none;
}

.print-only {
  display: none;
}

.innblocks-logo {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(https://innblocks.com/media/innblocks.svg) no-repeat center center;
  background-size: contain;
}

.innblocks-logo.invert {
  filter: invert(0.5);
}

.alert-danger {
  color: var(--error-color);
  background-color: rgba(255, 56, 89, 0.1);
  border: 1px solid var(--error-color);
  padding: 0.5rem;
  border-radius: 4px;
}

.alert-success {
  color: var(--success-color);
  background-color: rgba(0, 153, 102, 0.1);
  border: 1px solid var(--success-color);
  padding: 0.5rem;
  border-radius: 4px;
}

.alert-warning {
  color: var(--warning-color);
  background-color: rgba(190, 113, 6, 0.1);
  border: 1px solid var(--warning-color);
  padding: 0.5rem;
  border-radius: 4px;
}

.alert-info {
  color: var(--info-color);
  background-color: rgba(0, 153, 255, 0.1);
  border: 1px solid var(--info-color);
  padding: 0.5rem;
  border-radius: 4px;
}
