@font-face {
  font-family: "Helvetica Neue";
  font-weight: 200;
  src: url(assets/fonts/47732cd35f630c85b5d0d9a08afd3951.woff)
    format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  font-weight: 300;
  src: url(assets/fonts/17fd76a6d5801fb7ab5e0badca983b75.woff)
    format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  font-weight: 400;
  src: url(assets/fonts/cd0de6d177374d9d8e840e72b4e53887.woff)
    format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  font-weight: 500;
  src: url(assets/fonts/084a65570b1d82635bd4ed740d993f71.woff)
    format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  font-weight: 700;
  src: url(assets/fonts/11144eee554cf742c4b2abb6aaa3c53f.woff)
    format("woff");
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  width: 100%;
  height: 100%;
}
body {
  background: #f1f0e4;
  background: -moz-linear-gradient(
    top,
    #e6e4d8 0%,
    #f1f0e4 20%,
    #f1f0e4 80%,
    #dad7cb 100%
  );
  background: -webkit-linear-gradient(
    top,
    #e6e4d8 0%,
    #f1f0e4 20%,
    #f1f0e4 80%,
    #dad7cb 100%
  );
  background: linear-gradient(
    to bottom,
    #e6e4d8 0%,
    #f1f0e4 20%,
    #f1f0e4 80%,
    #dad7cb 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e4d8', endColorstr='#dad7cb',GradientType=0 );
}

.webgl {
  position: fixed;
  top: 0;
  left: 0;
  outline: none;
  cursor: move;
}

.loading-bar {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transform: scaleX(0.3);
  transform-origin: top left;
  transition: transform 0.5s;
  z-index: 500;
}

.loading-bar.ended {
  transform: scaleX(0);
  transform-origin: 100% 0;
  transition: transform 1.5s ease-in-out;
}

.point {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  /* pointer-events: none; */
}

.point .label {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 24px;
  height: 24px;
  background: #ff6b00;
  border: 1px solid #ff6b00;
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  line-height: 20px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  transform: scale(0.0001, 0.0001);
  transition: transform 0.3s;
  z-index: 5;
}
.point .title {
  position: absolute;
  width: 200px;
  left: 26px;
  top: -9px;
  color: #000000;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 5;
}
.point .title-left {
  left: -80px;
}

.text {
  position: absolute;
  display: none;
  /* top: 30px; */
  left: -15px;
  width: 480px;
  max-width: 440px;
  padding: 20px;
  border-radius: 2px;
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #000000;
  line-height: 1.4em;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  /* opacity: 0; */
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0px 1px 8px 0px rgba(156, 151, 131, 0.3);
  -webkit-box-shadow: 0px 1px 8px 0px rgba(156, 151, 131, 0.3);
  -moz-box-shadow: 0px 1px 8px 0px rgba(156, 151, 131, 0.3);
}

@media (max-width: 479px) {
  .text {
    width: calc(100% - 32px) !important;
    height: auto !important;
    position: fixed !important;
    bottom: 16px !important;
    left: 16px !important;

    /* transform: unset !important; */
    /* inset: unset !important; */
  }
  .point .title.title-sm {
    width: 120px;
  }
}

.innertext {
  display: block;
}

.exit {
  pointer-events: all;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  z-index: 50;
  cursor: pointer;
  color: #ff6b00;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.text[data-show] {
  display: block;
  z-index: 100 !important;
}

.text.clicked {
  opacity: 1;
  display: block;
  z-index: 100 !important;
}
.text.clicked .exit {
  opacity: 1;
}
.point.visible .label {
  transform: scale(1, 1);
  z-index: 5;
}
.point.visible .title {
  opacity: 1;
  z-index: 5;
}
.headline {
  color: #ff6b00;
  font-weight: 600;
}

.buttons {
  position: absolute;
  right: 12px;
  top: 12px;
  display: block;
}

.buttons img {
  width: 26px;
  height: 26px;
}

.undo {
  cursor: pointer;
}
.help {
  cursor: pointer;
}
.helptext {
  position: absolute;
  width: 210px;
  right: 0;
  background-color: #fff;
  padding: 20px;
  /* text-align: right; */
  z-index: 1000;
  font-size: 14px;
  display: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  box-shadow: 0px 1px 8px 0px rgba(156, 151, 131, 0.3);
  -webkit-box-shadow: 0px 1px 8px 0px rgba(156, 151, 131, 0.3);
  -moz-box-shadow: 0px 1px 8px 0px rgba(156, 151, 131, 0.3);
}
.help:hover .helptext {
  display: block;
}

.threesixtydeg {
  position: fixed;
  right: 32px;
  bottom: 32px;
}
@media (max-width: 1037px) {
  .threesixtydeg img {
    max-width: 90px;
  }
}
@media (max-width: 769px) {
  .threesixtydeg img {
    max-width: 64px;
  }
}
@media (max-width: 479px) {
  .threesixtydeg {
    right: 16px;
    bottom: 16px;
  }
  .threesixtydeg img {
    max-width: 48px;
  }
}

.text.text-tour {
    font-size: 16px;
    width: 380px;
    left: 80px;
    bottom: 80px;
    pointer-events: all;
    padding: 20px 30px;
    opacity: 1;
    transition: opacity 2s;
}

@media (max-width: 924px) {
    .text.text-tour {
        left: 8px;
    bottom: 8px;
    }

}

@media (max-width: 836px) {
    .text.text-tour {
        
    font-size: 14px;
    width: 320px;
    }

}

@media (max-width: 670px) {
    .text.text-tour {
       
    font-size: 14px;
    width: 259px;
    padding: 20px 16px;
    }

}

.innertext {
    margin-bottom: 38px;
}

  @media (max-width: 512px) {
    .text, .text.text-tour {
        width: calc(100% - 8px) !important;
        height: auto !important;
        position: fixed !important;
        bottom: 4px !important;
        left: 4px !important;
        max-width: none!important;
        padding-left: 16px;
        padding-right: 16px;
        transition: opacity 0s;
    }
    .innertext {
        max-height: 200px;
        overflow-y: auto;
        -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
    }
    .innertext::-webkit-scrollbar { 
        display: none;  /* Safari and Chrome */
    }
  }

  @media (min-width: 925px) {
    .text.text-tour.text-1 {
        left:auto;
        right: 130px;
        bottom: 130px;
        }
        
        .text.text-tour.text-2 {
            left:80px;
            bottom: 130px;
        }
        .text.text-tour.text-3 {
            left:120px;
            bottom: 130px;
        }
        
        .text.text-tour.text-4 {
            bottom: 130px;
        }
        
        .text.text-tour.text-5 {
            left:auto;
            right: 130px;
            bottom: 130px;
        }
        
        .text.text-tour.text-6 {
            
            bottom: 130px;
        }
        
        .text.text-tour.text-7 {
            
            bottom: 50px;
        }
  }



.text.text-tour.fade {
    opacity: 0;
    pointer-events: none;
}

.text-tour .headline {
    color: #000;
    margin-bottom: 10px;
    display: block;
}

.innertext-tour {
    display: block;
}

.more-btn {
    margin-top: 28px;
    display: flex;
}



.textlink {
    display: inline-block;
    padding-left:24px;
    color: #ff6b00;
    text-decoration: none;
    font-weight: 700;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.textlink:hover {
    text-decoration: underline;
}

.tour-btns {
    display: flex;
    justify-content: center;
    
}

.tour-btn {
    display: flex;
    align-items: center;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #ff6b00;
    padding: 10px 20px;
    margin-right: 6px;
    margin-left: 6px;
    width: auto;
    cursor: pointer;
    
}

.tour-btn img {
   display: block;
   width: 8px;
   height: 13px;
   margin-left: 8px;
}

.tour-btn.btn-left img {
    margin-left: 0;
    margin-right: 8px;
}
.tour-btn a {
    text-decoration: none;
    color: #fff;
}

.tour-btn.btn-grey {
    background-color: #5A6969;
}

.loading-bg {
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 499;
}
.loading-bg.ended {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
  }

 
  @media (max-width: 512px) {
      .threesixtydeg {
          display: none;
      }
  }

  .exit-btn {
      display: none;
  }
  @media (max-width: 512px) {
    .exit-btn {
        display: block;
        width: 24px;
        height: 24px;
        font-size: 19px;
        font-weight: 600;
        position: absolute;
        top: 2px;
        right: 0;
        cursor: pointer;
       
        color: #ff6b00;
    }
    .exit-btn::before{
        content: "x";
        display: block;
        position: absolute;
        right: 7px;
    }
 
    .exit-btn.clicked {
        padding-top: 5px;
    }
    .exit-btn.clicked::before {
        content: '^';
    }
    .innertext.clicked {
        display: none;
    }
  }


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