.popup-dialog .popup-background, .popup-dialog .popup-background-50, .popup-dialog-overlay .popup-background, .popup-dialog-overlay .popup-background-50, .popup-dialog-epass .popup-background, .popup-dialog-epass .popup-background-50 {
  transition: 1s opacity; /* Makes animation on the fade down */
  opacity: 0;
}
.popup-dialog .popup-content, .popup-dialog-overlay .popup-content, .popup-dialog-epass .popup-content {
  display: none;
}

.popup-active .popup-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh; /* Ensures full hight of the viewport, even if the page is smaller than the screen resolution*/
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1000; /* Ensures breakout of depth. If you have higher Z-indexes set, you need to raise this number*/
}
.popup-active .popup-dialog .popup-background {
  opacity: 0.8; /* Controls the opacity of the backdrop */
  background: black;
  width: 100%;
  height: 100%;
  position: absolute;
}
.popup-active .popup-dialog .popup-background-50 {
  opacity: 0.5; /* Controls the opacity of the backdrop */
  background: black;
  width: 100%;
  height: 100%;
  position: absolute;
}
.popup-active .popup-dialog .popup-content {
  display: flex;
  flex-direction: column;
  width: 400px; /* minimum width of MidID, to ensure the popover hides the content*/
  height: 588px;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 1100;
  text-align: center;
}
.popup-active .popup-dialog .popup-content .btn-main {
  margin: 1rem;
}
.popup-active .popup-dialog .popup-content h3 {
  color: white;
}

.popup-active-overlay .popup-dialog-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh; /* Ensures full hight of the viewport, even if the page is smaller than the screen resolution*/
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1001; /* Ensures breakout of depth. If you have higher Z-indexes set, you need to raise this number*/
}
.popup-active-overlay .popup-dialog-overlay .popup-background {
  opacity: 0.8; /* Controls the opacity of the backdrop */
  background: black;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
}
.popup-active-overlay .popup-dialog-overlay .popup-background-50 {
  opacity: 0.5; /* Controls the opacity of the backdrop */
  background: black;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
}
.popup-active-overlay .popup-dialog-overlay .popup-content {
  display: flex;
  flex-direction: column;
  height: 588px;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 1100;
  text-align: center;
}
.popup-active-overlay .popup-dialog-overlay .popup-content .btn-main {
  margin: 1rem;
}
.popup-active-overlay .popup-dialog-overlay .popup-content h3 {
  color: white;
}

.popup-active-epass .popup-dialog-epass {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh; /* Ensures full hight of the viewport, even if the page is smaller than the screen resolution*/
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1000; /* Ensures breakout of depth. If you have higher Z-indexes set, you need to raise this number*/
}
.popup-active-epass .popup-dialog-epass .popup-background {
  opacity: 0.8; /* Controls the opacity of the backdrop */
  background: black;
  width: 100%;
  height: 100%;
  position: absolute;
}
.popup-active-epass .popup-dialog-epass .popup-content {
  display: flex;
  flex-direction: column;
  width: 400px; /* minimum width of MidID, to ensure the popover hides the content*/
  height: 588px;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 1100;
  text-align: center;
}
.popup-active-epass .popup-dialog-epass .popup-content .btn-main {
  margin: 1rem;
}
.popup-active-epass .popup-dialog-epass .popup-content h3 {
  color: white;
}

.mitidbtn {
  background-color: #0060E6;
  height: 48px;
  padding-left: 24px;
  padding-right: 24px;
  border: 0;
  border-radius: 4px;
  color: #ffffff;
  font-family: "IBM-Plex-Sans";
  font-size: 14px;
  min-width: 240px;
}
.mitidbtn:hover {
  background-color: #004CB8;
}
.mitidbtn:before {
  content: url("assets/MitID_logo.svg");
  width: 4em;
  float: left;
  margin-right: 16px;
  margin-top: 2px;
}

.nemidbtn {
  height: 48px;
  padding-left: 24px;
  padding-right: 24px;
  border: 0;
  border-radius: 4px;
  color: black;
  font-family: "IBM-Plex-Sans";
  font-size: 14px;
  min-width: 240px;
  border: 1px black solid;
}
.nemidbtn:hover {
  background-color: lightgray;
}
.nemidbtn img {
  height: 30px;
  margin-right: 10px;
}

.air {
  height: 20px;
}

.mitidpopupclosebtn {
  color: gray;
}

@font-face {
  font-family: "IBM-Plex-Sans";
  src: url("../fonts/IBMPlexSans-SemiBold.ttf") format("truetype");
}

/*# sourceMappingURL=mitid.css.map */
