@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Ubuntu", sans-serif;
}

html,
body {
  overflow-x: hidden;
  height: 100%;
}

.loader-wrapper {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /*   background-color: cadetblue; */
  background-color: #35455f;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  border: 4px solid #35bcb6;
  animation: loader 2s infinite ease;
}
.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loader-inner {
  0% {
    height: 0%;
  }
  25% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}

@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  opacity: 0;
  -moz-animation: fadeout 1s linear;
  -webkit-animation: fadeout 1s linear;
  animation: fadeout 1s linear;
}

.hidden {
  visibility: hidden;
}

.none {
  display: none;
}

.videoBackground video {
  right: 0;
  bottom: 0;
  height: 100vh;
  position: fixed;
  min-width: 100%;
  transform: translateX(calc((100% - 100vw) / 2));
  min-height: 100%;
  object-fit: fill;
}

.userDetailsOuter {
  position: absolute;
  z-index: 1;

  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.userDetails {
  position: absolute;
  display: inline-flex;
  justify-content: center;
  width: 50%;
  height: 50%;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 1rem 0 #35bcb6;
  border-radius: 20px;
  background-color: #35455f99;
  backdrop-filter: blur(5px);
}

.userDetails.off {
  backdrop-filter: none;
}

.userDetails .logo {
  max-width: 180px; /* Adjust this value to your desired size */
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.logo {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.logo img {
  max-width: 100%;
  height: auto;
}

.welcome {
  font-size: 40px;
  text-align: center;
  color: white;
  margin-bottom: 30px;
}

#wrapper {
  width: 8vw;
  height: 8vw;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.my-super-cool-btn {
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  color: #fff;
  letter-spacing: 1px;
  font-size: 1.5vw;
  box-sizing: border-box;
}
.my-super-cool-btn span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

:root {
  --transition: all 0.85s cubic-bezier(0.25, 1, 0.33, 1), opacity 0s;
}

.my-super-cool-btn span:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  border-radius: 100%;
  border: 7px solid #fff;
  box-sizing: border-box;
  background: #35bcb6;
  transition: var(--transition);
  /*  transition: all 0.85s cubic-bezier(0.25, 1, 0.33, 1), opacity 0s; */
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.14), 0 15px 35px rgba(0, 0, 0, 0.14);
}
.my-super-cool-btn:hover span:before {
  transform: scale(0.8);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.14), 0 15px 35px rgba(0, 0, 0, 0.14);
}

.my-super-cool-btn span i {
  z-index: 1;
}

.my-super-cool-btn span p {
  z-index: 1;
}

.my-super-cool-btn .dots-container {
  opacity: 0;
  animation: intro 1.6s;
  animation-fill-mode: forwards;
}
.my-super-cool-btn .dot {
  width: 8px;
  height: 8px;
  display: block;
  background-color: #fff;
  border-radius: 100%;
  position: absolute;
  transition: all 0.85s cubic-bezier(0.25, 1, 0.33, 1), opacity 0s;
}
.my-super-cool-btn .dot:nth-child(1) {
  top: 50px;
  left: 50px;
  transform: rotate(-140deg);
  animation: swag1-out 0.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.my-super-cool-btn .dot:nth-child(2) {
  top: 50px;
  right: 50px;
  transform: rotate(140deg);
  animation: swag2-out 0.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.my-super-cool-btn .dot:nth-child(3) {
  bottom: 50px;
  left: 50px;
  transform: rotate(140deg);
  animation: swag3-out 0.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.my-super-cool-btn .dot:nth-child(4) {
  bottom: 50px;
  right: 50px;
  transform: rotate(-140deg);
  animation: swag4-out 0.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.my-super-cool-btn:hover .dot:nth-child(1) {
  animation: swag1 0.3s;
  animation-fill-mode: forwards;
}
.my-super-cool-btn:hover .dot:nth-child(2) {
  animation: swag2 0.3s;
  animation-fill-mode: forwards;
}
.my-super-cool-btn:hover .dot:nth-child(3) {
  animation: swag3 0.3s;
  animation-fill-mode: forwards;
}
.my-super-cool-btn:hover .dot:nth-child(4) {
  animation: swag4 0.3s;
  animation-fill-mode: forwards;
}
@keyframes intro {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes swag1 {
  0% {
    top: 50px;
    left: 50px;
    width: 8px;
  }
  50% {
    width: 30px;
    opacity: 1;
  }
  100% {
    top: 18px;
    left: 5px;
    width: 8px;
    opacity: 1;
  }
}
@keyframes swag1-out {
  0% {
    top: 20px;
    left: 20px;
    width: 8px;
  }
  50% {
    width: 30px;
    opacity: 1;
  }
  100% {
    top: 50px;
    left: 50px;
    width: 8px;
    opacity: 0;
  }
}
@keyframes swag2 {
  0% {
    top: 50px;
    right: 50px;
    width: 8px;
  }
  50% {
    width: 30px;
    opacity: 1;
  }
  100% {
    top: 18px;
    right: 5px;
    width: 8px;
    opacity: 1;
  }
}
@keyframes swag2-out {
  0% {
    top: 20px;
    right: 20px;
    width: 8px;
  }
  50% {
    width: 30px;
    opacity: 1;
  }
  100% {
    top: 50px;
    right: 50px;
    width: 8px;
    opacity: 0;
  }
}
@keyframes swag3 {
  0% {
    bottom: 50px;
    left: 50px;
    width: 8px;
  }
  50% {
    width: 30px;
    opacity: 1;
  }
  100% {
    bottom: 18px;
    left: 5px;
    width: 8px;
    opacity: 1;
  }
}
@keyframes swag3-out {
  0% {
    bottom: 20px;
    left: 20px;
    width: 8px;
  }
  50% {
    width: 30px;
    opacity: 1;
  }
  100% {
    bottom: 50px;
    left: 50px;
    width: 8px;
    opacity: 0;
  }
}
@keyframes swag4 {
  0% {
    bottom: 50px;
    right: 50px;
    width: 8px;
  }
  50% {
    width: 30px;
    opacity: 1;
  }
  100% {
    bottom: 18px;
    right: 5px;
    width: 8px;
    opacity: 1;
  }
}
@keyframes swag4-out {
  0% {
    bottom: 20px;
    right: 20px;
    width: 8px;
  }
  50% {
    width: 30px;
    opacity: 1;
  }
  100% {
    bottom: 50px;
    right: 50px;
    width: 8px;
    opacity: 0;
  }
}

#login {
  cursor: pointer;
}

.rounded {
  display: none;
}
/* 
.main {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #f7f8fb;
  transition: 0.5s;
} */

.main {
  width: 100%;
  height: 100%;
  background: #f7f8fb;
  transition: 0.5s;
  position: fixed;
  display: flex;
  flex-direction: column;
}

.main .topbarSkeleton {
  width: 3vh;
  height: 3vh;
  left: 10vh;
  /* padding: 0 10px; */
  position: absolute;
  border-radius: 0% 0% 20% 20%;
  z-index: 3;
  background: #6670b3;
  top: 0;
  cursor: pointer;
  transition: top 500ms ease 0s;
}

.main .topbarSkeleton.clicked {
  top: 6vh;
}

.main .topbarSkeleton a {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3vh;
  height: 3vh;
  font-size: 1vw;
  color: white;
}

/* .main .topbarSkeleton:hover + .topbar {
  opacity: 1;
  max-height: 100%;
} */

.main .topbar {
  width: 100%;
  background: rgb(40, 170, 196);
  background: linear-gradient(
    90deg,
    rgba(40, 170, 196, 1) 0%,
    rgba(53, 188, 182, 1) 50%,
    rgba(2, 0, 36, 1) 100%
  );
  position: absolute;
  /*   height: 6vh; */
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;

  max-height: 0;
  opacity: 0;
  -webkit-transition: all 500ms ease 0s;
  -moz-transition: all 500ms ease 0s;
  -ms-transition: all 500ms ease 0s;
  -o-transition: all 500ms ease 0s;
  transition: all 500ms ease 0s;
}

.main .topbar.clicked {
  opacity: 1;
  max-height: 100%;
}

.topButton {
  display: flex;
  height: 100%;
}

.toggle {
  position: relative;
  /*   width: 60px;
  height: 49px; */
  cursor: pointer;
  transform-style: preserve-3d;
}

.toggle a {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  border-radius: 10px;
  text-decoration: none;
  font-size: 2vw;
  transform-style: preserve-3d;
  perspective: 500px;
  overflow: hidden;
}

.toggle a:hover .fas {
  transform: scale(1.15) translateZ(20px);
}

.refresh {
  position: relative;
  /*   width: 60px;
  height: 49px; */
  cursor: pointer;
  transform-style: preserve-3d;
}

.refresh a {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  border-radius: 10px;
  text-decoration: none;
  font-size: 2vw;
  transform-style: preserve-3d;
  perspective: 500px;
  overflow: hidden;
}

.refresh a:hover .fas {
  transform: scale(1.15) translateZ(20px);
}

.userNameDiv {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 50%;
  height: 6vh;
  display: flex;
  align-items: center;
  transform: translate(-50%, 0%);
}

#username {
  font-size: 1.2vw;
}

.user {
  position: relative;
  width: 45px;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  visibility: hidden;
}

.user img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pj001Live {
  width: 100%;
  min-height: 100dvh;
  display: none;
}

.pj001Live.block {
  display: block;
}

.pj001Live iframe {
  height: 100%;
  width: 100%;
}

.pj002Map {
  width: 100%;
  min-height: 100dvh;
  display: none;
}

.pj002Map.block {
  display: block;
}

.pj002Map.mapiframe {
  position: relative;
  width: 100%;
  height: 100%;
}

.pj002MapDraw {
  width: 100%;
  min-height: 100dvh;
  display: none;
}

.pj002MapDraw.block {
  display: block;
}

.pj002MapDraw.mapiframe {
  position: relative;
  width: 100%;
  height: 100%;
}

.pj001Info {
  width: 100%;
  min-height: 100dvh;
  display: none;
}

.pj001Info.block {
  display: block;
}

.pj001Info iframe {
  height: 100%;
  width: 100%;
}

.pj003RouteRealTime {
  width: 100%;
  height: 100%;
  display: none;
}

.pj003RouteRealTime.block {
  display: block;
}

.pj003RouteDemo {
  width: 100%;
  height: 100%;
  display: none;
}

.pj003RouteDemo.block {
  display: block;
}

.pj003HistoryForOne {
  width: 100%;
  height: 100%;
  display: none;
}

.pj003HistoryForOne.block {
  display: block;
}

.prj007Map {
  width: 100%;
  height: 100%;
  display: none;
}

.prj007Map.block {
  display: block;
}

.pj005Live {
  width: 100%;
  min-height: 100dvh;
  display: none;
}

.pj005Live.block {
  display: block;
}

.pj005Live iframe {
  height: 100%;
  width: 100%;
}

.pj005NewLive {
  width: 100%;
  min-height: 100dvh;
  display: none;
}

.pj005NewLive.block {
  display: block;
}

.pj005NewLive iframe {
  height: 100%;
  width: 100%;
}

.pj005History {
  width: 100%;
  min-height: 100dvh;
  display: none;
}

.pj005History.block {
  display: block;
}

.pj005History iframe {
  height: 100%;
  width: 100%;
}

.pj005HistoryPlotly {
  width: 100%;
  min-height: 100dvh;
  display: none;
}

.pj005HistoryPlotly.block {
  display: block;
}

.pj005HistoryPlotly iframe {
  height: 100%;
  width: 100%;
}

.pj005FormTable {
  width: 100%;
  min-height: 100dvh;
  display: none;
}

.pj005FormTable.block {
  display: block;
}

.pj005FormTable iframe {
  height: 100%;
  width: 100%;
}

.pj005Form {
  width: 100%;
  min-height: 100dvh;
  display: none;
}

.pj005Form.block {
  display: block;
}

.pj005Form iframe {
  height: 100%;
  width: 100%;
}

.pj005Elevation {
  width: 100%;
  min-height: 100dvh;
  display: none;
}

.pj005Elevation.block {
  display: block;
}

.pj005Elevation iframe {
  height: 100%;
  width: 100%;
}

.pj005Usage {
  width: 100%;
  min-height: 100dvh;
  display: none;
}

.pj005Usage.block {
  display: block;
}

.pj005Usage iframe {
  height: 100%;
  width: 100%;
}

.pj009Live {
  width: 100%;
  min-height: 100dvh;
  display: none;
}

.pj009Live.block {
  display: block;
}

.pj009Live iframe {
  height: 100%;
  width: 100%;
}

.pj009History {
  width: 100%;
  min-height: 100dvh;
  display: none;
}

.pj009History.block {
  display: block;
}

.pj009History iframe {
  height: 100%;
  width: 100%;
}

.landing {
  display: block;
}

.landing.none {
  display: none;
}

.apps {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  z-index: 2;
  transition: 0.5s;
  top: 6vh;
}

.apps.show {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.slide-in-left {
  animation: slide-in-left 1.5s forwards;
  -webkit-animation: slide-in-left 1.5s forwards;
}

.slide-out-left {
  animation: slide-out-left 1.5s forwards;
  -webkit-animation: slide-out-left 1.5s forwards;
}

.slide-in-right {
  animation: slide-in-right 1.5s forwards;
  -webkit-animation: slide-in-right 1.5s forwards;
}

.slide-out-right {
  animation: slide-out-right 1.5s forwards;
  -webkit-animation: slide-out-right 1.5s forwards;
}

@keyframes slide-in-left {
  100% {
    transform: translateX(0%);
  }
}

@-webkit-keyframes slide-in-left {
  100% {
    -webkit-transform: translateX(0%);
  }
}

@keyframes slide-out-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@-webkit-keyframes slide-out-left {
  0% {
    -webkit-transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}

@keyframes slide-out-right {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}

@-webkit-keyframes slide-out-right {
  0% {
    -webkit-transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(100%);
  }
}

.rcdApps,
.kgbApps {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  top: 6vh;
  width: 100vw;
  z-index: 2;
  transition: 0.5s;
  transform: translateX(100vw);
}

.landing video {
  right: 0;
  bottom: 0;
  height: 100vh;
  position: fixed;
  min-width: 100%;
  transform: translateX(calc((100% - 100vw) / 2));
  min-height: 100%;
  object-fit: fill;
}

.background {
  /* background: cadetblue; */
  /*  background: #35455f; */
  width: 100%;
  height: 68%;
  display: flex;
  position: absolute;
  top: 0;
  /*   z-index: 1;
 */
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.1);
  justify-content: center;
  align-items: center;
}

.background .logo img {
  width: 75%;
  filter: drop-shadow(6px 4px 2px #63676e);
}

.appPreview {
  position: absolute;
  top: 7%;
  width: 78%;
  height: 61%;
  left: 11%;
}

.powered {
  position: absolute;
  right: 0;
  bottom: 1%;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
}

.powered p {
  font-size: 25px;
  color: white;
  margin-right: 1%;
}

.powered img {
  width: 25%;
}

.lower {
  width: 100%;
  height: 32%;
  position: absolute;
  top: 68%;
  z-index: 1;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  background-color: rgba(53, 69, 95, 0.6);
  backdrop-filter: blur(3px);
}

.sci {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  /*   margin-left: 3vw; */
  margin-top: 10vh;
  flex-direction: row;
  /* margin: 10px; */
  justify-content: space-evenly;
  /* flex-wrap: wrap; */
  justify-content: space-between;
}

.sci li {
  list-style: none;
  /* flex-basis: calc(100% - 20px); */
  /* padding-left: 30px; */
  margin-right: 15px;
  margin-left: 15px;
  margin-bottom: 25px;
  cursor: pointer;
}

.sci li::before {
  content: attr(data-text);
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 120px));
  font-size: 2.5vw;
  pointer-events: none;
  font-weight: 700;
  transition: 0.5s;
  opacity: 0;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  color: white;
}

.sci li:hover::before {
  opacity: 0.7;
  transform: translate(-50%, calc(-50% + 150px));
}

.sci li a {
  position: relative;
  display: inline-block;
  width: 6vw;
  height: 6vw;
  background: #35bcb6;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  border-radius: 10px;
  text-decoration: none;
  /* margin: 20px; */
  /* padding-left: 10px; */
  font-size: 3vw;
  transform-style: preserve-3d;
  perspective: 500px;
  box-shadow: -1px 0px 20px 2px #35bcb6;
}

.sci li.back a {
  background: #ffffff;
  box-shadow: -1px 0px 20px 2px #3a3d3d;
  color: #333;
}

.js-tilt-glare {
  border-radius: 10px;
}

.sci li a:hover {
  background: #000;
}

.sci li a .fas {
  transition: 0.25s;
  pointer-events: none;
  color: white;
}

.sci li.back a .fas {
  transition: 0.25s;
  pointer-events: none;
  color: black;
}

.sci li a:hover .fas {
  color: #fff;
}

.sci li a:hover .fas {
  transform: scale(1.5) translateZ(50px);
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .toggle a {
    font-size: 4vw;
  }
  .refresh a {
    font-size: 4vw;
  }

  #username {
    font-size: 4vw;
  }

  .sci li a {
    width: 8vw;
    height: 8vw;
  }

  .sci li {
    margin-right: 10px;
    margin-left: 10px;
  }

  .appPreview {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center, center;
    width: 100%;
    height: 68%;
    display: flex;
    position: absolute;
    top: 0;
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.1);
    justify-content: center;
    align-items: center;
    left: 0%;
  }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .toggle a {
    font-size: 4vw;
  }
  .refresh a {
    font-size: 4vw;
  }
  .sci li a {
    width: 8vw;
    height: 8vw;
  }

  .sci li {
    margin-right: 10px;
    margin-left: 10px;
  }
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (orientation: portrait) {
  .toggle a {
    font-size: 2vw;
  }
  .refresh a {
    font-size: 2vw;
  }
  .sci li a {
    width: 6vw;
    height: 6vw;
  }

  .sci li {
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media only screen and (min-width: 768px) and (orientation: landscape) {
  .main .topbar {
    width: 100%;
    background: rgb(40, 170, 196);
    background: linear-gradient(
      90deg,
      rgba(40, 170, 196, 1) 0%,
      rgba(53, 188, 182, 1) 50%,
      rgba(2, 0, 36, 1) 100%
    );
    position: absolute;
    height: 4.5vh;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;

    max-height: 0;
    opacity: 0;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
  }

  .pj001Live,
  .pj002Map,
  .pj002MapDraw,
  .pj001Info,
  .prj007Map,
  .pj005Live,
  .pj005History,
  .pj005HistoryPlotly,
  .pj005FormTable,
  .pj005Form,
  .pj005Elevation,
  .pj005Usage,
  .pj009Live,
  .pj009History {
    min-height: 100dvh;
  }

  .toggle a {
    font-size: 2vw;
  }
  .refresh a {
    font-size: 2vw;
  }

  .appPreview {
    position: absolute;
    top: 7%;
    width: 78%;
    height: 61%;
    left: 11%;
    background-size: 100% 100%;
  }
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .sci li a {
    width: 6vw;
    height: 6vw;
  }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .main .topbar {
    width: 100%;
    background: rgb(40, 170, 196);
    background: linear-gradient(
      90deg,
      rgba(40, 170, 196, 1) 0%,
      rgba(53, 188, 182, 1) 50%,
      rgba(2, 0, 36, 1) 100%
    );
    position: absolute;
    height: 6vh;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;

    max-height: 0;
    opacity: 0;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
  }

  .pj001Live,
  .pj002Map,
  .pj002MapDraw,
  .pj001Info,
  .prj007Map,
  .pj005Live,
  .pj005History,
  .pj005HistoryPlotly,
  .pj005FormTable,
  .pj005Form,
  .pj005Elevation,
  .pj005Usage,
  .pj009Live,
  .pj009History {
    min-height: 100dvh;
  }
}

@media only screen and (min-width: 1900px) {
}
