html,
body {
  width: 100%;
  height: 100%;
  margin: 0px;
}
canvas {
  outline: none;
}

#loadingPanel, #orientationPanel {
  height: 95px
}

.loadingLogo {
  background-image: url("../img/logo.svg");
  width: 334px; 
  height: 85px;
}

#mainMenuButton {
  background-image: url("../img/menu.svg");
  width: 50px;
  height:50px;
}

#view, #root {
  position: absolute;
  width: 100%;
  height: 100%;
}
#fps {
  position: absolute;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    1px 1px 0 #000;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: white;
  top: 50px;
  right: 10px;
  width: 60px;
  height: 20px;
  z-index: 1000;
}

#loadingScreen {
  position: absolute;
  color: white;
  background-color: white;

  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 100;
  opacity: 1;
  pointer-events: none;

  -webkit-transition: opacity 1s ease;
  -moz-transition: opacity 1s ease;
  transition: opacity 1s ease;

  display: flex;
  justify-content: center;
  align-items: center;
}

#teleportScreen {
  position: absolute;
  color: white;
  background-color: white;

  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  margin: auto;

  z-index: 90;
  opacity: 1;
  pointer-events: none;

  display: flex;
  justify-content: center;
  align-items: center;
}

#loadingTexture {
  position: absolute;
  color: white;
  background-color: rgba(255, 255, 255, 0.499);

  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 100;
  opacity: 1;
  pointer-events: none;

  -webkit-transition: opacity 1s ease;
  -moz-transition: opacity 1s ease;
  transition: opacity 1s ease;

  display: flex;
  justify-content: center;
  align-items: center;
}

.screen {
  position: absolute;
  color: white;
  background-color: white;

  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  opacity: 1;

  -webkit-transition: opacity 1s ease;
  -moz-transition: opacity 1s ease;
  transition: opacity 1s ease;

  display: flex;
  justify-content: center;
  align-items: center;
}

.progressBar {
  background: linear-gradient(
    -45deg,
    #006e89 25%,
    transparent 0,
    transparent 50%,
    #006e89 0,
    #006e89 75%,
    transparent 0
  );
  background-color: #006e89;
  background-size: auto;
  background-color: #00afcb;
  background-size: 30px 30px;
  border-radius: 40px;
  height: 100%;
  position: absolute;
  -webkit-transition: width 0.2s cubic-bezier(0.4, 1, 0.75, 0.9);
  transition: width 0.2s cubic-bezier(0.4, 1, 0.75, 0.9);
  width: 100%;

  animation: linear-progress-bar-stripes 0.3s linear infinite reverse;
}


@keyframes linear-progress-bar-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 0;
  }
}

.spinner-border {
  display: inline-block;
  width: 50px;
  height: 50px;
  vertical-align: text-bottom;
  border: 5px solid #00afcb;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border .75s linear infinite;
}

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

.iconMenu {
  position: absolute;
  height: 50px;
  width: 80px;
  color: #78849B;
  padding: 0px;
  border: none;
  outline: none;
  transition: transform 0.125s ease-out;
  border-radius: 3px;
  z-index: 1;
}

.iconButton {
  position: absolute;
  height: 50px;
  width: 80px;
  background-color: #0e94b0;
  color: white; /* #78849B; */
  padding: 0px;
  border: none;
  outline: none;
  transition: transform 0.125s ease-out;
  border-radius: 3px;
  z-index: 1;
}

.iconImage {
  filter: invert(100%);
}

.iconButton:hover {
  background-color: rgb(31, 185, 209);
}

.iconButton.enabled {
  background-color: #04708b;
}

.iconButton.enabled .iconImage{
  filter: invert(46%) sepia(89%) saturate(416%) hue-rotate(140deg) brightness(108%) contrast(95%);
}

#layers .iconButton {
  background-color: white;
}

#layers .iconButton:hover {
  background-color: #1fb9d1;
}

#layers .iconButton.enabled  {
  background-color: #04708b;
  color: white;
}

#moviePanel {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
}

#movieFrame {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}

#main-menu-title-bar {
  display: flex;
}
#main-menu-title-container {
  margin: 15px;
  text-align: right;
}
#main-menu-title-logo {
  margin: 15px;
}
#main-menu-title {
  font-size: 24px
}

#mainTitle {
  position: absolute;
  top: 20px;
  left: 80px;
  height: 50px;
  display: flex;
  align-items: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 1px 1px 2px black;
}

@media (max-width: 992px) {
  #main-menu-title-bar {
    display: block;
    width: 100%;
  }
  #main-menu-title {
    font-size: 20px
  }
  #main-menu-title-container {
    margin: 0px 15px;
    padding: 5px 0px;
    text-align: left;
  }
  #main-menu-title-logo {
    margin: 15px 15px 0px 15px;
  }
  #mainTitle {
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .carousel-inner {
    display: flex;
    column-gap: 5px;
    justify-content: space-around;
  }
  .carousel-inner::after, .carousel-inner::before {
    content: "";
  }
  .carousel-item {
    margin-right: 0;
    flex: 0 0 300px;
    display: block;
  }
  .carousel-control-prev, .carousel-control-next{
    display: none;
  }
}


#main-menu {
  position:absolute; 
  width: 100%; 
  height: 100%; 
  top: 0px; 
  left: 0px; 
  right: 0px;
  bottom: 0px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2;
}



.carousel-item {
  
}

.card-body {
  padding: 2px;
}
.card{
  width: 300px;
  margin: 0 .5em;
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
  border: 2px solid white;
  border-radius: 0px;
  background-color: rgba(31, 185, 209, 0.75);
  display: inline-block;
}
.card-title {
  background-color: #04708b;
  width: 100%;
  color: white;
  padding: 8px;
  margin-bottom: 2px;
  text-align: center;
}
.card-text {
  padding: 8px;
}
.card-img-top {
  border-radius: 0px;
}
.card .btn {
  background-color: #04708b;
  width: 100%;
  color: white;
  padding: 5px;
  text-align: center;
  border: none;
  border-radius:0px;
  margin-top: 2px;
}
.carousel-control-prev, .carousel-control-next{
  background-color: #e1e1e1;
  width: 6vh;
  height: 6vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}