body {
  margin: 0;
  height: 100vh;
  width: 100%;
  font-family: 'INGMe';
  overflow: hidden;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  background-color: #f5f5f5;
}

body::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  border-radius: 4px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: rgb(170, 170, 170);
}

#tr-app:not(.loaded) {
  display: none;
}
#tr-app {
  display: flex;
  height: 100%;
}

.background-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: fixed;
  background-color: #d9d9d9;
}

.background-logo > img {
  height: 30%;
}

#browserOutdatedContainer {
  position: fixed;
  z-index: 200;
  display: none;
}
