#container.hidden {
  display: none;
}

.hidden {
  display: none;
}

#footer.darkened {
  background-color: rgba(0, 0, 0, 0.6);
}

.darkened {
  background-color: rgba(0, 0, 0, 0.6);
}

#container {
  display: flex;
  justify-content: center;
  z-index: 1000;
  position: fixed;
  height: 100%;
  top: 5%;
  left: 0;
  width: 100%;
}

#button-container {
  display: flex;
  justify-content: center;
  height: 100px !important;
}

#close-button {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  transition: all 200ms ease-in-out;
  align-items: center;
  justify-content: center;
  color: #3549ff;
  background-color: white;
  width: 100%;
  border: none;
  padding-top: 10px;
  padding-bottom: 10px;
}

#close-button img {
  height: 30px;
}

#close-button:hover {
  cursor: pointer;
  color: white;
  background-color: #3549ff;
}

#feedback-iframe {
  width: 100%;
  height: 100%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  bottom: 0;
}

.iframe-wrapper {
  min-height: calc(100% + 100px);
}

#footer {
  background-color: gray;
  color: white;
  font-weight: bold;
  position: static;
  bottom: 0;
  width: 100%;
  text-align: center;
}

#elements-container {
  width: 100%;
  height: 100%;
  background-color: white;
}

#elements-container div {
  height: 100%;
}

@media (min-width: 768px) {
  #elements-container {
    width: 83%;
  }
}

@media (min-width: 992px) {
  #elements-container {
    width: 67%;
    height: 617px;
  }
}
