@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
:root {
  --underline-height: .5em;
  --transition-duration: .3s;
}

body {
  font-family: "Poppins", sans-serif;
  background: white;
  min-height: 100vh;
  overflow: hidden;
}

nav {
  position: relative;
  white-space: nowrap;
  background: white;
  padding: var(--underline-height) 0;
  margin: 0.5em 0;
  box-shadow: 0 1em 2em rgba(68, 71, 70, 0.09);
}

.underline {
  display: block;
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  height: var(--underline-height);
  width: 20%;
  background: #444746;
  pointer-events: none;
  mix-blend-mode: multiply;
  transition: transform var(--transition-duration) ease-in-out;
}

a {
  display: inline-block;
  z-index: 10;
  width: 20%;
  padding: 0.01em 0;
  text-align: center;
  cursor: pointer;
  color: #444746;
}

a:hover {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
}

/*nav.retro {
    .underline  {
        border-radius: 100% 100% 0 0;

        &:nth-child(1){
            background: gold;
        }
        &:nth-child(2){
            background: dodgerblue;
        }
        &:nth-child(3){
            background: tomato;
        }
    }
}*/
nav.black .underline {
  background: #dc1c33;
  border-radius: 0.25em;
  height: calc(var(--underline-height) / 2);
  mix-blend-mode: initial;
}

#interfaces, #interfaces-controls {
  position: absolute;
}

#interface-controls {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  bottom: 10px;
  z-index: 100;
}

#floorplanner, #viewer {
  position: absolute;
  width: 100vw;
  height: 100vh;
}

.menu-bar {
  position: absolute;
  border-radius: 7px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: inline-flex;
  background-color: rgba(68, 71, 70, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  padding: 0 5px;
  margin: 1px 0 0 0;
  margin-left: -1em;
  margin-top: -0.5em;
}
.menu-bar li {
  list-style: none;
  color: white;
  padding: 12px 16px;
  margin: 0 8px;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}
.menu-bar li::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  transition: 0.1s;
  border-radius: 10px;
}
.menu-bar li:hover {
  color: black;
}
.menu-bar li:hover::before {
  background: linear-gradient(to bottom, #e8edec, #d2d1d3);
  box-shadow: 0px 3px 20px 0px black;
  transform: scale(1);
}
.menu-bar li i {
  font-size: 1.3em;
  font-weight: bold;
  display: block;
  text-align: center;
  margin-bottom: 5px;
}
.menu-bar span {
  font-size: 0.7em;
  display: flex;
  align-items: center;
}

.menu-bar-agencer {
  position: fixed;
  border-radius: 7px;
  height: -webkit-fit-content;
  width: 350px;
  height: -moz-fit-content;
  height: fit-content;
  display: inline-block;
  cursor: pointer;
  align-items: center;
  padding: 0 15px;
  margin: 5px 0 0 0;
  margin-left: -0.5em;
  margin-top: -38.9em;
  background-color: #444746;
  z-index: 1;
  transition: 0.3s;
}

.menu-bar-agencer div {
  width: 35px;
  height: 5px;
  margin: 7px 0;
  color: white;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}

.bar1, .bar2, .bar3 {
  align-items: center;
  width: 35px;
  height: 5px;
  margin: 6px 0;
  transition: 0.4s;
}

.menu-bar-agencer div::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  transition: 0.1s;
  border-radius: 10px;
}

.menu-bar-agencer div:hover {
  color: black;
}

.menu-bar-agencer img {
  width: 1.3em;
  color: white;
  font-size: 1.3em;
  display: inline-flex;
  text-align: center;
}

.menu-bar-agencer div:hover::before {
  background: linear-gradient(to bottom, #e8edec, #d2d1d3);
  box-shadow: 0px 3px 20px 0px black;
  transform: scale(1);
}

.menu-bar-agencer span {
  font-size: 0.7em;
  display: flex;
  align-items: center;
}

.change .bar1 {
  transform: translate(0, 12px) rotate(-45deg);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
  transform: translate(0, -12px) rotate(45deg);
}


.sidenav {
  height: 100%;
  width: 340px;
  position: fixed;
  margin-top: 84px;
  z-index: 0;
  top: 0;
  left: 0;
  background-color: rgba(68, 71, 70, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: 0.3s;
  overflow-x: hidden;
}

.sidenav .panel-heading{
  background-color: rgba(26, 27, 27, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: #444746;
}

.sidenav #floor-items-body{
  background-color: rgba(86, 90, 90, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: #444746;
}

.sidenav #wall-items-body{
  background-color: rgba(86, 90, 90, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: #444746;
}

.sidenav #on-floor-items-body{
  background-color: rgba(86, 90, 90, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: #444746;
}

.sidenav a {
  padding: 10px 9em 10px 5px;
  margin-block: -3px;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  color: white;
  display: block;
  transition: 0.5s;
}

.sidenav a:hover {
  color: #dc1c33;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.sidenav::-webkit-scrollbar {
  width: 9px;
  border: 3px solid #444746;
}

.sidenav::-webkit-scrollbar-track {
  background-color: rgba(92, 95, 94, 0.6);
}

.sidenav::-webkit-scrollbar-thumb {
  background-color: #a9acaa; /* color of the scroll thumb */
  border-radius: 5px; /* roundness of the scroll thumb */ /* creates padding around scroll thumb */
  -webkit-transition: 0.9s;
  transition: 0.9s;
}

.sidenav::-webkit-scrollbar-thumb:hover {
  background-color: #cdd2cf; /* color of the scroll thumb */ /* roundness of the scroll thumb */ /* creates padding around scroll thumb */
}



@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}
#add-items .col-sm-4 {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: left;
  padding: 3px;
}
#add-items .thumbnail {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  box-shadow: 0px 3px 20px 0px #444746;
}
#add-items img {
  width: 100px;
  text-align: center;
  display: block;
  float: left;
}

.button-box {
  position: relative;
  width: 220px;
  margin: -3.2em auto;
  border-radius: 30px;
  background: whitesmoke;
  border: 1px solid #dc1c33;
}

.toggle-btn {
  position: absolute;
  padding: 5px 40px;
  cursor: pointer;
  background: transparent;
  border: 0;
  outline: none;
  position: relative;
  text-align: center;
}

#btn {
  left: 0;
  top: 0;
  position: absolute;
  width: 110px;
  height: 100%;
  background: #dc1c33;
  border-radius: 30px;
  transition: 0.2s;
}

button {
  font-family: "Poppins", sans-serif;
  font-size: 1.2em;
  font-weight: bolder;
  color: #444746;
  transition: 0.1s;
}

button:focus {
  color: white;
}

#description {
  position: fixed;
  width: 70px;
  height: 70px;
  margin: 0.5em 114em;
  padding: 0.5rem;
  display: hidden;
  flex-direction: column;
  font-weight: bold;
  border-radius: 30px;
}

#remove-items {
  width: 100%;
  height: 100%;
  background-color: #494b4a;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 30px;
  border-color: #a9acaa;
}

#remove-items:hover {
  height: 100%;
  background-color: rgba(117, 121, 119, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 30px;
  transition: 0.2s;
}

#remove-items i {
  color: white;
}/*# sourceMappingURL=app.css.map */