body {
    height: 100%;
    overflow:hidden;
    margin: 0;
    padding: 0;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    -webkit-overflow-scrolling: touch!important;
    touch-action: manipulation!important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@font-face {
  font-family: oswald-regular;
  src: url('./font/Oswald-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html
  {
      background-color: #D5D2E1;
      background-size: cover;
      width: 100%;
  }

  #loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#header {
    position: fixed;
    top: 50;
    width: 100%;
}

.row {
    margin-left: 2px;
    margin-right: 2px;
    display: flex;
  }
  
  .column-segment {
    width: 60%;
    margin-top: 2;
    text-align: start;
    margin-left: 35px;
  }

  .column-colors {
    width: 40%;
    margin-top: 10;
    text-align: right;
    margin-right: 20px;
  }

  .column-segment-text {
    width: 60%;
    margin-bottom: 10;
    font-size: 42;
    font-family: oswald-regular;
    letter-spacing: 4px; 
    color: #93909A;
    text-align: start;
    margin-left: 35px;
  }

  .column-colors-text {
    width: 40%;
    margin-bottom: 15;
    font-size: 42;
    font-family: oswald-regular;
    letter-spacing: 4px;
    color: #93909A;
    text-align: right;
    margin-right: 35px;
  }

  .column-segment-text-large {
    width: 50%;
    margin-bottom: 10;
    font-size: 42;
    font-family: oswald-regular;
    letter-spacing: 8px; 
    color: #93909A;
    text-align: center;
  }

  .column-colors-text-large {
    width: 50%;
    margin-bottom: 15;
    font-size: 42;
    font-family: oswald-regular;
    letter-spacing: 8px;
    color: #93909A;
    text-align: center;
  }

  .discover-more {
    max-width: 450px;
    width: 100%;
    height: 120px;
    position: relative;
    text-align: center;
    line-height: 110px; 
    font-size: 3rem;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    position: relative;
    z-index: 1;
    font-family: oswald-regular;
    letter-spacing: 3px;
    border: 3px solid #93909A;
    border-radius: 70px;
    background: #D5D2E1;
    color: #93909A;
    margin-top: 20px;
    margin-bottom: 3px;
  }

  .discover-ar {
    width: 100%;
    height: 120px;
    position: relative;
    text-align: center;
    line-height: 110px; 
    font-size: 3rem;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    position: relative;
    z-index: 1;
    font-family: oswald-regular;
    letter-spacing: 3px;
    border: 3px solid #93909A;
    border-radius: 70px;
    background: #D5D2E1;
    color: #93909A;
    margin-top: 20px;
    margin-bottom: 3px;
  }

#footer {
    position: fixed;
    bottom: 50;
    width: 100%;
}
#center {
    margin: 0 auto;
    text-align: center;
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}

#myDiv {
  display: none;
  text-align: center;
}



article.pa3.pa5-ns {
    position: absolute;
}

/* This keeps child nodes hidden while the element loads */
:not(:defined) > * {
    display: none;
  }

  model-viewer {
   	position: absolute;
    width:100vw;
    height:75vh;
    margin-bottom: 200px;
    margin: 0 auto;
    background-color:transparent;
  }


  @keyframes circle {
    from { transform: translateX(-50%) rotate(0deg) translateX(50px) rotate(0deg); }
    to   { transform: translateX(-50%) rotate(360deg) translateX(50px) rotate(-360deg); }
  }

  @keyframes elongate {
    from { transform: translateX(100px); }
    to   { transform: translateX(-100px); }
  }

  model-viewer#ar_content {
    --poster-color: transparent;
  }

  model-viewer > #ar-prompt {
    position: absolute;
    left: 50%;
    bottom: 175px;
    animation: elongate 2s infinite ease-in-out alternate;
    display: none;
  }

  model-viewer[ar-status="session-started"] > #ar-prompt {
    display: block;
  }

  model-viewer > #ar-prompt > img {
    animation: circle 4s linear infinite;
  }

  .slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    bottom: 16px;
  }

  .slides {
    display: inline-flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .moka {
    background-image: url("./assets/moka-filled.png");
  }

  .moka.selected {
    background-image: url("./assets/moka.png");    
  }

  .green {
    background-image: url("./assets/green-filled.png");
  }

  .green.selected {
    background-image: url("./assets/green.png");    
  }

  .purple {
    background-image: url("./assets/purple-filled.png");
  }

  .purple.selected {
    background-image: url("./assets/purple.png");    
  }

  .slide {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
    border-radius: 10px;
    border: none;
    display: flex;
    background-color: transparent;
  }

  ar-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 3rem;
    padding-right: 3rem;
    cursor: pointer;
    background-color: transparent;
    font-size: 24px;
    color: #93909A;
    font-family: oswald-regular;
    letter-spacing: 3px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
    border-radius: 100px;
  }
  
  ar-button:before {
    content: url("./assets/ar_logo.png");
    display: block;
    margin-right: 2rem;
  }

  .ba2 {
    border-style: solid;
    border-width: 3px;
  }
  
  ar-button:hover {
    background-color: #f5f5f5;
  }
  
  ar-button:active {
    background-color: #eeeeee;
  }
  
  ar-button > a,
  ar-button > a:hover {
    color: inherit;
    text-decoration: inherit;
  }

  .black {
    background-image: url("./assets/black-filled.png");
  }

  .black.selected {
    background-image: url("./assets/black.png");    
  }

  .white {
    background-image: url("./assets/white-filled.png");
  }

  .white.selected {
    background-image: url("./assets/white.png");   
  }

  .red {
    background-image: url("./assets/red-filled.png");
  }

  .red.selected {
    background-image: url("./assets/red.png"); 
  }


  .slide:focus {
    outline: none;
  }

  .slide:focus-visible {
    outline: 1px solid #ffffff;
  }


* {
    box-sizing: border-box;
}


label {
    cursor:inherit;
}



.flight-types {
  display: inline-flex;
  max-width: 150px;
  width: 100%;
  height: 60;
  position: relative;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  position: relative;
  z-index: 1;
  margin-right: 10;
  font-size: 28px;
  font-family: oswald-regular;
  color: #93909A;
  letter-spacing: 3px;
  border: 3px solid #93909A;
  border-radius: 30px;
}
.flight-types > input {
  display: none;
}
.flight-types > input:checked + label {
  color: #ffffff;
  background: #93909A;
  border-radius: 30px;
}
.flight-types > input:nth-of-type(1):checked ~ label:last-of-type:before {
  transform: translateX(calc(0% + 0px));
}
.flight-types > input:nth-of-type(2):checked ~ label:last-of-type:before {
  transform: translateX(calc(100% + 0px));
}
.flight-types > input:nth-of-type(3):checked ~ label:last-of-type:before {
  transform: translateX(calc(200% + 0px));
}
.flight-types label {
  flex: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  line-height: 41px;
}
.flight-types label:last-of-type:before {
  content: "";
  display: block;
  max-width: calc(100% - 0px);
  margin: 0px;
  position: absolute;
  border-radius: 30px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transform: translateX(0);
}
.flight-types label {
  padding: 6px 3px;
  transition: color 250ms cubic-bezier(0, 0.95, 0.38, 0.98);
}
.flight-types label:before {
 
  transition: all 250ms cubic-bezier(0, 0.95, 0.38, 0.98);
}
.flight-types label:not(:last-child) {
  border-right: 1px solid #93909A;
 
}


.progress-bar {
  display: block;
  width: 33%;
  height: 10%;
  max-height: 2%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 25px;
  box-shadow: 0px 3px 10px 3px rgba(0, 0, 0, 0.5), 0px 0px 5px 1px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.9);
  background-color: rgba(0, 0, 0, 0.5);
}

.progress-bar.hide {
  visibility: hidden;
  transition: visibility 0.3s;
}

.update-bar {
  background-color: rgba(255, 255, 255, 0.9);
  width: 0%;
  height: 100%;
  border-radius: 25px;
  float: left;
  transition: width 0.3s;
}