@font-face {
  font-family: "GillSansWGL";
  src: url("/fonts/GillSansWGL.eot");
  src: url("/fonts/GillSansWGL.eot?#iefix") format("embedded-opentype"), url("/fonts/GillSansWGL.woff2") format("woff2"), url("/fonts/GillSansWGL.woff") format("woff"), url("/fonts/GillSansWGL.ttf") format("truetype"), url("/fonts/GillSansWGL.svg#GillSansWGL") format("svg");
}

body {
  margin: 0;
  font-family: 'GillSansWGL', sans-serif;
}

.room-table {
  margin-left: 5%;
  margin-right: 5%;
  width: 90%;
  /* makes the table as wide as the browser window */
  border-collapse: collapse;
  /* removes the space between cells */
  border-spacing: 10;
  /* removes the space between cells */
}

td {
  padding-top: 45px;
  padding-bottom: 45px;
  padding-left: 10px;
  padding-right: 10px;
}

tr {
  border-bottom: 1px solid black;

}

.title {
  text-align: center;
  font-weight: bold;
  margin: 50px;
}

.slide {
  display: none;
}

.active {
  display: block;
}

.generalInfo {
  text-align: center;
  margin: 0;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90vh;
}

#progress-bar {
  width: 100%;
  height: 5px;
  position: fixed;
  bottom: 0;
  background-color: #ddd;
}

#progress-indicator {
  height: 100%;
  background-color: #677db9;
  width: 100%;
}

@keyframes progress-animation {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

;