* {
  box-sizing: border-box;
  margin: 0px;
  font-family: 'Roboto', sans-serif;;
}
h2 {
  font-weight: 400;
  font-size: 22px;
  line-height: 25px;
  color: #181818;
}
span {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #181818;
}
.wrapper {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.header-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0px;
  left: 0px;
  width: 100%;
  min-height: 75px;
  padding: 0 10px;
  background: #32374B;
  z-index: 100;
}
.header-container {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  width: 1144px;
}
.image-logo {
  width: 120px;
  height: 44px;
}
.image-session-error {
  width: 400px;
  height: 350px;
}
.content {
  flex-grow: 1;
  background-color: #F1F1F1;
}
.hideableCard {
  max-width: 760px;
  pointer-events: auto;
  opacity: 100%;
  background: #FFFFFF;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15);
  border: 0px solid #e7e7e7;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  margin: 24px auto;
  display: flex;
  flex-direction: column;
}
.hideableCard-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px;
  width: 100%;
}