/* Modal Content */
.modal h1 {
  font-size: 1.25rem;
  line-height: 1.375;
  margin: 0;
  color: rgba(0, 0, 0, 0.87);
}

.modal h5 {
  font-size: 1rem;
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.87);
}

.modal h3 {
  padding-top: 1rem;
  color: rgba(0, 0, 0, 0.87);
  font-size: 1.125rem;
}

.modal p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.87);
}
.modal ul li {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.87);
}

.modal {
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding: 32px 16px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */

  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
  border-radius: 0;
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  max-width: 600px;
  height: 100%;
  border-radius: 4px;
  overflow-y: auto;
}

.modal-content div {
  padding: 16px;
}
/* The Close Button */
.close {
  opacity: 0.6;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.m-0 {
  margin: 0;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal ul {
  padding-inline-start: 32px;
}

.modal ul li {
  padding-bottom: 0.75rem;
}
.modal a {
  color: #498ee6;
}
.hide {
  display: none !important;;
}
.nodisplay {
  display: none !important;
}
.spin {
  animation-name: spin;
  animation-duration: 3000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  width: 20px;
  height: auto;
  vertical-align: middle;
}
@-moz-keyframes spin {
  from {
     -moz-transform: rotate(0deg);
  }
  to {
     -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
     -webkit-transform: rotate(0deg);
  }
  to {
     -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
     transform: rotate(0deg);
  }
  to {
     transform: rotate(360deg);
  }
}
input:autofill ~ label,
input:-webkit-autofill ~ label,
input:-webkit-autofill:hover ~ label, 
input:-webkit-autofill:focus ~ label, 
input:-webkit-autofill:active ~ label {
   top: -6px;
   font-size: 12px;
   color: rgba(0,0,0,0.87);
   -webkit-box-shadow: 0 0 0 30px white inset !important;
}

input[type="email"]:not(:placeholder-shown) ~ label,
input[type="password"]:not(:placeholder-shown) ~ label {
	top: -6px;
	font-size: 12px;
	color: rgba(0,0,0,0.87);
}