#navbar {
  position: relative;
  height: 3.5rem;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  box-shadow: -2px 1px 3px rgba(0, 0, 0, 0.21);
}

.navbar-links-container {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
}
.navbar-links-container .nav-link-divider {
  width: 1.5px;
  height: 2rem;
  background-color: #0045a6;
  margin-right: 2rem;
}
.navbar-links-container .auth-link {
  margin: 0;
  text-decoration: none;
  font-family: "Poppins", "Segoe UI", Tahoma, "Geneva", Verdana, sans-serif;
  color: #f9f9f9;
  background-color: #0045a6;
  font-size: 0.9rem;
  padding: 0.3rem 1rem;
  border-radius: 0.3rem;
  border: 1px solid #0045a6;
  transition: all 0.2s ease-out;
}
.navbar-links-container .auth-link:hover {
  transform: scale(1.1);
  background-color: #f9f9f9;
  color: #0045a6;
  border: 1px solid #0045a6;
}

.navbar-links {
  display: flex;
  align-items: center;
}
.navbar-links a {
  position: relative;
  margin-right: 2rem;
  font-family: "Poppins", "Segoe UI", Tahoma, "Geneva", Verdana, sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  color: #0045a6;
  transition: 0.3s all ease-in;
}
.navbar-links a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0;
  border-radius: 1rem;
  transition: all 0.2s ease-out;
  background-color: #2c6bac;
}
.navbar-links a:hover {
  color: #2c6bac;
}
.navbar-links a:hover::after {
  background-color: #2c6bac;
  width: 100%;
}
.navbar-links a.selected {
  color: transparent;
}
.navbar-links a.selected::after {
  background-color: transparent;
  width: 100%;
}

@keyframes show-instructions {
  from {
    width: 0px;
    height: 0px;
    font-size: 0px;
    padding: 0;
    opacity: 0;
  }
  50% {
    height: auto;
    width: 10rem;
    font-size: 0.8rem;
    padding: 0.6rem;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hide-instructions {
  from {
    height: auto;
    width: 10rem;
    font-size: 0.8rem;
    padding: 0.6rem;
    opacity: 1;
  }
  50% {
    height: auto;
    width: 10rem;
    font-size: 0.8rem;
    padding: 0.6rem;
    opacity: 0;
  }
  to {
    width: 0px;
    height: 0px;
    font-size: 0px;
  }
}
.triangle-pointer-container {
  position: absolute;
  top: 2rem;
  left: -4.7rem;
  color: #f9f9f9;
  width: 0px;
  height: 0px;
  font-size: 0px;
  opacity: 0;
  padding: 0;
  border-radius: 5px;
  box-shadow: 0px 0px 2px 0px #000000;
  text-align: center;
  animation: hide-instructions 0.3s ease-in 0s 1 normal;
}
.triangle-pointer-container p {
  line-height: 1.15rem;
  margin: 0;
}

.triangle-pointer, .triangle-pointer-down {
  top: -0.6rem;
  left: 4.6rem;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 0.6rem solid transparent;
  border-right: 0.6rem solid transparent;
  z-index: 2;
  border-bottom: 0.6rem solid white;
}

.triangle-pointer-2, .triangle-pointer-2-down {
  position: absolute;
  top: -0.6rem;
  left: 4.6rem;
  border-bottom: 0.6rem solid rgba(0, 0, 0, 0.397);
  width: 0;
  height: 0;
  border-left: 0.6rem solid transparent;
  border-right: 0.6rem solid transparent;
}

.triangle-pointer-down {
  border-bottom: none;
  border-top: 0.6rem solid white;
  top: auto;
  bottom: -0.6rem;
}

.triangle-pointer-2-down {
  border-bottom: none;
  border-top: 0.6rem solid white;
  top: auto;
  bottom: -0.6rem;
}

.triangle-pointer-container-show {
  padding: 0.6rem;
  opacity: 1;
  font-size: 0.8rem;
  height: auto;
  width: 10rem;
  animation: show-instructions 0.3s ease-in 0s 1 normal;
}

#googleAuthBtn {
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0);
  outline: none;
  border: none;
}

.pop-up-full-viewport {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  height: 100vh;
  width: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.335);
}

.pop-up-fill-container {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  height: 100vh;
  width: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.335);
  position: absolute;
  height: 100%;
}

.pop-up-inner-container {
  margin: auto;
  z-index: 1;
}

.loading-icon-entire-viewport {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}

.loading-icon-container {
  position: relative;
  margin: 0 auto;
  width: 2.5rem;
}
.loading-icon-container:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.loading-icon-circle {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.loading-icon-path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke: #0045a6;
  animation: dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.user-dropdown-container {
  display: flex;
  align-items: center;
}
.user-dropdown-container .user-dropdown-btn {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
}
.user-dropdown-container .user-dropdown-arrow-down {
  font-size: 0.8rem;
  margin-left: 0.6rem;
}

.user-dropdown-modal {
  position: absolute;
  display: flex;
  width: 13rem;
  padding: 0.5rem 0;
  background-color: #f9f9f9;
  top: 3.52rem;
  right: 0;
  border: 1px solid #c7c7c7;
  border-top: none;
  flex-direction: column;
  border-radius: 0 0 0 0.3rem;
  z-index: 10;
}

.user-dropdown-modal-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 1rem;
  border: none;
  background-color: #f9f9f9;
}
.user-dropdown-modal-item:hover {
  background-color: #dddddd;
}

.user-dropdown-modal-item-icon {
  display: flex;
  width: 1.5rem;
  justify-content: center;
  align-items: center;
  color: #093552;
}

.user-dropdown-modal-content {
  word-break: break-all;
  overflow-wrap: break-word;
  display: flex;
  flex-grow: 1;
  align-items: center;
  font-size: 0.8rem;
  margin-left: 0.6rem;
  font-family: "Lato", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #535353;
}

#footer {
  display: flex;
  flex-direction: column;
  background-color: #093552;
  align-items: center;
}

#footer-container {
  background-color: #093552;
  color: #f9f9f9;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: calc(max(1.5rem, 3%)) calc(max(1rem, 4%));
}
#footer-container h2 {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 1.2rem;
}

.footer-columns-container {
  display: flex;
  flex-grow: 1;
}

.footer-column-container {
  margin-right: 10%;
}

.footer-column-link-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.footer-column-link-container a {
  position: relative;
  font-size: 0.85rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: #f9f9f9;
  text-decoration: none;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  width: fit-content;
}
.footer-column-link-container a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 0;
  border-radius: 1rem;
  transition: all 0.2s ease-out;
  background-color: #f9f9f9;
}
.footer-column-link-container a:hover {
  color: #f9f9f9;
}
.footer-column-link-container a:hover::after {
  background-color: #f9f9f9;
  width: 100%;
}
.footer-column-link-container a.selected {
  color: #f9f9f9;
}
.footer-column-link-container a.selected::after {
  background-color: #f9f9f9;
  width: 100%;
}

.footer-contact-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.footer-contact-row svg {
  width: 1.3rem;
}
.footer-contact-row:last-child {
  margin: 0;
}

.footer-contact-row-text {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-left: 0.6rem;
  font-size: 0.86rem;
}
.footer-contact-row-text a {
  color: white;
  text-decoration: none;
  font-weight: 300;
  opacity: 0.8;
  letter-spacing: 0.5px;
}
.footer-contact-row-text a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -2px;
  height: 0.5px;
  width: 0;
  border-radius: 1rem;
  transition: all 0.2s ease-out;
  background-color: #f9f9f9;
}
.footer-contact-row-text a:hover {
  color: #f9f9f9;
}
.footer-contact-row-text a:hover::after {
  background-color: #f9f9f9;
  width: 100%;
}
.footer-contact-row-text a.selected {
  color: #f9f9f9;
}
.footer-contact-row-text a.selected::after {
  background-color: #f9f9f9;
  width: 100%;
}

#footer-copyright {
  width: 100%;
  height: 3.5rem;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
#footer-copyright p {
  margin: 0;
  font-size: 0.75rem;
}

#form-err-banner {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 1.2rem 0.6rem;
  font-size: 0.9rem;
}
#form-err-banner button {
  position: absolute;
  right: 0.35rem;
  top: 0.35rem;
  background-color: rgba(255, 255, 255, 0);
  outline: none;
  border: none;
  height: 0.75rem;
  width: 0.75rem;
  display: flex;
  align-items: center;
  padding: 0;
}
#form-err-banner button .exit-icon {
  stroke: #727272;
}

.loading-icon-entire-viewport {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}

.loading-icon-container {
  position: relative;
  margin: 0 auto;
  width: 2.5rem;
}
.loading-icon-container:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.loading-icon-circle {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.loading-icon-path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke: #0045a6;
  animation: dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.form-inputs {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 1rem;
  /* Firefox */
}
.form-inputs .row-input-error {
  display: flex;
  align-items: center;
  color: darkred;
  font-size: 0.8rem;
  margin-top: 0.2rem;
}
.form-inputs label {
  margin-bottom: 0.3rem;
  font-size: 1rem;
  font-weight: 300;
}
.form-inputs label span {
  margin-left: 0.2rem;
  font-size: 1rem;
  color: darkred;
}
.form-inputs input,
.form-inputs textarea {
  width: 100%;
  border: 2px solid #dddddd;
  resize: none;
  border-radius: 0.4rem;
  min-height: 1.8rem;
  font-size: 0.8rem;
  padding: 0.3rem;
}
.form-inputs textarea {
  min-height: 9rem;
}
.form-inputs input::-webkit-outer-spin-button,
.form-inputs input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-inputs input[type=number] {
  -moz-appearance: textfield;
}
.form-inputs .form-inputs-sub-caption {
  margin-bottom: 0.3rem;
  font-size: 0.8rem;
  font-weight: 300;
}

.form-inputs-dropdown {
  width: 100%;
  padding: 0;
  border: 2px solid #dddddd;
  border-radius: 0.4rem;
}
.form-inputs-dropdown .dropdown-input__indicator {
  padding: 0.2rem 0.4rem;
}
.form-inputs-dropdown .dropdown-input__menu-list {
  max-height: 13rem;
}
.form-inputs-dropdown .dropdown-input__control {
  min-height: 2rem;
  border: none;
}
.form-inputs-dropdown .dropdown-input__value-container {
  font-size: 0.8rem;
}
.form-inputs-dropdown .dropdown-input__value-container input[type=text] {
  width: 100%;
  border: 1px solid #818181;
  min-height: 0;
}
.form-inputs-dropdown .dropdown-input__group {
  padding-top: 0;
}
.form-inputs-dropdown .dropdown-input__group-heading {
  font-size: 1.1rem;
  font-weight: 500;
  font-family: "Poppins", "Segoe UI", Tahoma, "Geneva", Verdana, sans-serif;
  background-color: #41516c;
  padding: 0.5rem 1rem;
  min-height: 2.7rem;
  color: #f9f9f9;
  display: flex;
  align-items: center;
}
.form-inputs-dropdown .dropdown-input__option {
  font-size: 0.85rem;
}

.form-inputs-dropzone {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  color: #818181;
  min-height: 8rem;
  border: 2px solid #dddddd;
  cursor: pointer;
}
.form-inputs-dropzone * {
  cursor: pointer;
}
.form-inputs-dropzone label {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.form-inputs-dropzone label span {
  color: #818181;
}
.form-inputs-dropzone.over-dropzone {
  border: 2px solid #0045a6;
  background-color: #d2e6fc;
}

.form-inputs-err-container {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.form-inputs-section-container, .address-list-container, .evidence-list-container {
  padding: 1.5rem;
  border: 2px solid #dddddd;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-inputs-dropzone-err {
  position: relative;
  padding: 1rem;
  background-color: #f8d7da;
  border: 1px solid #721c24;
  color: #721c24;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.form-inputs-dropzone-err:first-child {
  margin-top: 1rem;
}
.form-inputs-dropzone-err .dropzone-err-heading {
  font-size: 0.95rem;
}
.form-inputs-dropzone-err .dropzone-err-body h6 {
  font-size: 0.85rem;
}
.form-inputs-dropzone-err .dropzone-err-body li {
  font-size: 0.75rem;
}
.form-inputs-dropzone-err .err-exit-btn {
  background-color: transparent;
  border: none;
  outline: none;
  width: 1.2rem;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  background-color: #dc3545;
  color: #f9f9f9;
  border-radius: 0.1rem;
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
}

.form-inputs-time-inputs {
  display: flex;
}
.form-inputs-time-inputs input {
  width: 100%;
}
.form-inputs-time-inputs input.add-right-spacing {
  margin-right: 0.5rem;
}

.form-inputs-time-err {
  display: flex;
  align-items: center;
  color: darkred;
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.thumbnails-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 1rem 0;
}

.form-img-thumbnail {
  display: flex;
  width: 25%;
  aspect-ratio: 1/1;
  padding: 2%;
  position: relative;
}
.form-img-thumbnail .form-thumbnail-placeholder {
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  background-color: white;
}
.form-img-thumbnail .remove-thumbnail-btn {
  background-color: transparent;
  border: none;
  outline: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 1.1rem;
  width: 1.1rem;
  border-radius: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: lightcoral;
  color: #f9f9f9;
}
.form-img-thumbnail .form-thumbnail-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.form-img-thumbnail img,
.form-img-thumbnail video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.form-video-thumbnail {
  display: flex;
  width: 25%;
  aspect-ratio: 1/1;
  padding: 2%;
  position: relative;
}
.form-video-thumbnail .form-thumbnail-placeholder {
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  background-color: white;
}
.form-video-thumbnail .remove-thumbnail-btn {
  background-color: transparent;
  border: none;
  outline: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 1.1rem;
  width: 1.1rem;
  border-radius: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: lightcoral;
  color: #f9f9f9;
}
.form-video-thumbnail .form-thumbnail-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.form-video-thumbnail img,
.form-video-thumbnail video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.evidence-list-container .add-evidence-btn {
  background-color: transparent;
  border: none;
  outline: none;
  background-color: #0045a6;
  padding: 0.5rem;
  color: #f9f9f9;
  width: 100%;
  margin: 0.75rem 0;
  border-radius: 0.5rem;
  align-self: end;
  align-self: flex-end;
  transition: all 0.2s ease-out;
}
.evidence-list-container .add-evidence-btn:hover {
  transform: translateY(-0.2rem);
}
.evidence-list-container .add-evidence-btn span {
  margin-left: 0.5rem;
}

.evidence-list-item {
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #d2e6fc;
  border: 1.5px solid #0045a6;
  margin: 0.75rem 0;
}

.evidence-list-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
}
.evidence-list-item-header button {
  background-color: transparent;
  border: none;
  outline: none;
  border-radius: 0.3rem;
  background-color: #dc3545;
  padding: 0.2rem 0.4rem;
  color: #f9f9f9;
  transition: all 0.3s ease-out;
}
.evidence-list-item-header button:hover {
  transform: scale(1.1);
}
.evidence-list-item-header button span {
  margin-left: 0.2rem;
}
.evidence-list-item-header h5 {
  color: #0045a6;
  margin-bottom: 0;
}

.evidence-list-form-inputs label {
  color: #0045a6;
}

.evidence-list-input-error {
  display: flex;
  align-items: center;
  color: darkred;
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.page-banner-styles {
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.2rem 0.6rem;
  margin-top: 3.5rem;
  z-index: 1;
}
.page-banner-styles button {
  background-color: rgba(255, 255, 255, 0);
  outline: none;
  border: none;
  height: 0.75rem;
  width: 0.75rem;
  display: flex;
  align-items: center;
  padding: 0;
}

.page-wrapper-pg {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 3.5rem);
}

.page-wrapper-pg-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  flex-grow: 1;
}

.page-wrapper-pg-header {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #0045a6;
  font-size: 1.9rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.page-wrapper-pg-header h1 {
  margin: 0;
  margin-left: 0.7rem;
}

.particle-bg {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.particle-bg-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.action-card {
  min-height: 220px;
  width: 100%;
  background-color: white;
  box-shadow: 0px 0 1rem rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: calc(max(4%, 1.5rem));
  cursor: pointer;
  border: none;
  width: 47.5%;
  min-width: 270px;
  transition: all 0.2s ease-out;
  text-decoration: none;
}
.action-card:hover {
  transform: translateY(-5%);
}

.action-card-header {
  text-align: left;
  display: flex;
  align-items: center;
  color: #0045a6;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.action-card-header h2 {
  font-size: 1.3rem;
  margin-left: 1rem;
  margin-bottom: 0;
}

.action-card-description {
  font-family: "Lato", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #555555;
  font-size: 0.9rem;
  text-align: left;
}

.app-logo {
  height: 100%;
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.app-logo a {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
}
.app-logo img {
  height: 65%;
  object-fit: contain;
  object-position: center;
}
.app-logo span {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: "Lora", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  color: black;
  font-weight: 800;
  margin-right: 0.5rem;
  justify-content: center;
  padding: 0.5rem 0;
}
.app-logo span div:first-child {
  font-size: 2rem;
  line-height: 1.9rem;
}
.app-logo span div:last-child {
  font-size: 0.8rem;
  line-height: 1rem;
}

.copy-text-input-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: #0045a6;
  height: 1.8rem;
}

.copy-text-input {
  border-radius: 0.3rem 0 0 0.3rem;
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  font-size: 0.9rem;
  padding: 0.2rem 0.5rem;
  flex-grow: 1;
}

.copy-text-input-copy-btn {
  position: relative;
  border-radius: 0 0.3rem 0.3rem 0;
  color: #0045a6;
  background-color: transparent;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #818181;
  background-color: #f9f9f9;
}
.copy-text-input-copy-btn.copied {
  background-color: #0d4e1c !important;
  color: #f9f9f9 !important;
}

.copy-text-input-success-container {
  z-index: 1;
  background-color: #0d4e1c;
  font-size: 0.9rem;
}
.copy-text-input-success-container .triangle-pointer-2, .copy-text-input-success-container .triangle-pointer-2-down, .copy-text-input-success-container .triangle-pointer, .copy-text-input-success-container .triangle-pointer-down {
  border-bottom-color: #0d4e1c;
}

.recent-list-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-end;
  margin-bottom: 0.6rem;
  padding: 0.5rem;
}
.recent-list-header h2 {
  margin: 0;
  color: #555555;
  font-weight: 400;
  font-size: 1.4rem;
}
.recent-list-header a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0045a6;
  text-decoration: none;
}

.recent-list-row-item {
  text-decoration: none;
  width: 100%;
  padding: 1rem 1.5rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.recent-list-row-item::after {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  content: "";
  height: 1px;
  background-color: rgba(224, 224, 224, 0.692);
}
.recent-list-row-item:last-child::after {
  background-color: transparent;
}

.recent-list-item-image {
  width: 2.3rem;
  height: 2.3rem;
  aspect-ratio: 1/1;
  border-radius: 2rem;
  object-fit: cover;
  background-color: #a5a5a5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.recent-list-item-image svg {
  width: 50%;
  height: 50%;
  color: #f9f9f9;
}
.recent-list-item-image img {
  width: 100%;
  height: 100%;
  vertical-align: baseline;
  border: none;
  outline: none;
}

.recent-list-item-left {
  margin-left: 0.7rem;
}

.recent-list-item-title {
  color: #0045a6;
  font-weight: 600;
}

.recent-list-record-type {
  font-size: 0.8rem;
  font-weight: 600;
  color: #818181;
}

.recent-list-date-submitted {
  display: flex;
  flex-direction: column;
  color: #818181;
  font-weight: 400;
  font-size: 0.75rem;
}

.recent-list-banner {
  min-height: 220px;
  width: 100%;
  background-color: white;
  box-shadow: 0px 0 1rem rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  margin-bottom: 2.5rem;
  min-height: unset;
  margin: 0;
  font-family: "Lato", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.recent-list-row-placeholder {
  padding: 1.5rem;
  font-size: 1rem;
  color: #818181;
  font-weight: 500;
}
.recent-list-row-placeholder a {
  margin-left: 0.3rem;
  text-decoration: none;
}

.recent-list-banner-alert {
  display: flex;
  padding: 1rem;
}
.recent-list-banner-alert .grid-err-alert div {
  margin: 0;
}

.recent-list-loading-icon {
  display: flex;
  padding: 1rem;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.intro-image-container {
  position: relative;
  width: 100%;
}
.intro-image-container > * {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 2.5rem 4%;
}

.intro-image-header {
  font-size: 3rem;
  display: flex;
  justify-content: center;
  color: #f9f9f9;
  margin: 0;
}

.intro-image-img {
  padding-top: 1rem;
  padding-bottom: 2rem;
  position: relative;
  width: 100%;
  height: 25rem;
  display: flex;
  align-items: center;
  min-height: 10rem;
}
.intro-image-img img {
  max-width: 1050px;
  width: 100%;
  height: 100%;
  color: white;
  object-fit: cover;
  object-position: center;
  z-index: 2;
}

.intro-image-summary p {
  max-width: 1050px;
  line-height: 250%;
}

.record-form-record-item {
  padding: 1rem 1.5rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #dddddd;
}
.record-form-record-item:last-child {
  border-bottom: none;
}
.record-form-record-item .record-item-heading {
  font-size: 1.05rem;
  font-weight: 600;
  color: #3277f7;
  text-decoration: underline;
  margin-bottom: 0.5rem;
}
.record-form-record-item .record-item-body {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  line-clamp: 5;
  box-orient: vertical;
  line-height: 1.3rem;
  overflow: hidden;
  margin: 1rem 0;
  margin-top: 0.5rem;
  color: #535353;
  font-size: 0.9rem;
}
.record-form-record-item .record-item-body b {
  font-weight: 600;
  opacity: 0.9;
}
.record-form-record-item .record-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  text-align: end;
}
.record-form-record-item .record-item-footer * {
  font-size: 0.8rem;
  color: #a5a5a5;
}
.record-form-record-item .record-item-footer .record-item-type {
  display: flex;
  flex-direction: column;
  text-align: start;
}

#about-pg-container {
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-family: "Lato", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: calc(100vh - 3.5rem);
}

#about-pg-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#about-pg-contributors-container {
  padding: 2.5rem 0;
  width: 100%;
}
#about-pg-contributors-container h3 {
  display: flex;
  width: 100%;
  justify-content: center;
  font-size: 2.2rem;
  color: #0045a6;
  font-weight: 600;
  margin-bottom: 2rem;
}

#about-pg-contributors {
  font-family: "Lato", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
#about-pg-contributors .contributor-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#about-pg-contributors .contributor-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 50%;
  aspect-ratio: 2/1;
  max-height: 10rem;
  min-height: 4rem;
}
#about-pg-contributors .contributor-card-name {
  color: #535353;
  font-weight: 600;
  font-size: 1.3rem;
}
#about-pg-contributors .contributor-card-title {
  color: #535353;
  font-size: 1rem;
}

#about-pg-action {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
#about-pg-action h4 {
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 3rem 0;
  margin-bottom: 2rem;
}
#about-pg-action a {
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  background-color: #093552;
  color: #f9f9f9;
  transition: transform 0.2s ease-out;
}
#about-pg-action a:hover {
  transform: scale(1.05);
}

#about-pg-explore-header {
  display: flex;
  padding: 0 3%;
  width: 100%;
  font-size: 2.5rem;
  margin-top: 1.7rem;
  margin-bottom: 1rem;
}

#about-pg-explore-more {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  flex-grow: 1;
  margin-bottom: 3rem;
}
#about-pg-explore-more .explore-card-container {
  padding: 3%;
  width: calc(100% / 3);
  min-width: 15rem;
  transition: transform 0.2s ease-out;
}
#about-pg-explore-more .explore-card-container:hover {
  transform: scale(1.05) translateY(-5%);
}
#about-pg-explore-more .explore-card {
  text-decoration: none;
  color: black;
  display: flex;
  justify-content: space-between;
  height: 6.5rem;
}
#about-pg-explore-more .explore-card-img {
  border-radius: 0.3rem 0 0 0.3rem;
  background-color: #d2e6fc;
  display: flex;
  min-width: 4rem;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #0045a6;
}
#about-pg-explore-more .explore-card-content {
  padding: 0.5rem;
  background-color: #eeeeee;
  border-radius: 0 0.3rem 0.3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  flex-grow: 1;
}
#about-pg-explore-more .explore-card-content h5 {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
  font-weight: 600;
  margin: 0;
  font-size: 1.2rem;
}
#about-pg-explore-more .explore-card-content p {
  color: #535353;
  font-size: 0.8rem;
  margin: 0;
}

.dashboard-review-requests-types {
  background-color: transparent;
  border: none;
  outline: none;
  position: relative;
  padding: 0;
  margin: 0;
  margin-right: 1rem;
  color: #727272;
  font-weight: 600;
  font-size: 1.2rem;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-decoration: none;
  letter-spacing: 0.15px;
}
.dashboard-review-requests-types::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -2px;
  height: 1.9px;
  width: 0;
  border-radius: 1rem;
  transition: all 0.2s ease-out;
  background-color: #727272;
}
.dashboard-review-requests-types:hover {
  color: #727272;
}
.dashboard-review-requests-types:hover::after {
  background-color: #727272;
  width: 100%;
}
.dashboard-review-requests-types.selected {
  color: #3277f7;
}
.dashboard-review-requests-types.selected::after {
  background-color: #3277f7;
  width: 100%;
}

.dashboard-review-requests-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}

.dashboard-review-requests-placeholder {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 3.5rem;
  color: #093552;
  width: 100%;
  height: 100%;
  background-color: #f9f9f9;
}
.dashboard-review-requests-placeholder h4 {
  display: flex;
  justify-content: center;
  color: #41516c;
  font-weight: 600;
  word-spacing: 0.15rem;
  font-size: 1.1rem;
  width: 100%;
}
.dashboard-review-requests-placeholder p {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 0.85rem;
  color: #727272;
}

.dashboard-request-card-container {
  min-height: 220px;
  width: 100%;
  background-color: white;
  box-shadow: 0px 0 1rem rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.dashboard-request-card-loading {
  position: absolute;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 2;
  border-radius: 0.5rem;
}

.dashboard-request-card-header {
  background-color: #093552;
  color: #f9f9f9;
  padding: 1.2rem 1.5rem;
  font-size: 1.5rem;
  border-radius: 1rem 1rem 0 0;
  margin: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dashboard-request-card-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: calc(max(3.5%, 1.2rem)) calc(max(3.5%, 1.5rem));
}

.dashboard-request-card-content {
  display: flex;
  width: 100%;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.dashboard-request-card-content p {
  margin-bottom: 1.1rem;
}
.dashboard-request-card-content h3 {
  margin-bottom: 0.3rem;
}

.dashboard-request-card-general-info {
  display: flex;
  flex-direction: column;
  overflow-wrap: break-word;
  word-break: break-word;
  width: 40%;
  min-height: 10rem;
  height: min-content;
}
.dashboard-request-card-general-info .general-row h3 {
  color: #818181;
  font-weight: 600;
  font-size: 1rem;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.dashboard-request-card-purpose-container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 60%;
}
.dashboard-request-card-purpose-container .purpose-expand-btn {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 3rem;
  background-color: white;
  z-index: 1;
}
.dashboard-request-card-purpose-container .purpose-expand-btn button {
  background-color: transparent;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 1px solid #093552;
  color: #093552;
  font-weight: 500;
  height: 2.5rem;
  width: 7rem;
  border-radius: 5rem;
}
.dashboard-request-card-purpose-container .purpose-expand-btn span {
  margin-left: 0.5rem;
}
.dashboard-request-card-purpose-container .purpose-expand-btn.hidden::after {
  content: "";
  height: 9rem;
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 2;
  width: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0), white);
}

.dashboard-request-card-purpose {
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 20rem;
  width: 100%;
  overflow: hidden;
}
.dashboard-request-card-purpose h3 {
  color: #818181;
  font-weight: 600;
  font-size: 1rem;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.dashboard-request-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-request-card-action-btns {
  display: flex;
}
.dashboard-request-card-action-btns button {
  background-color: transparent;
  border: none;
  outline: none;
  width: 8rem;
  padding: 0.5rem 1.2rem;
  border-radius: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f9f9f9;
  border: 1px solid transparent;
}
.dashboard-request-card-action-btns button:first-child {
  background-color: #093552;
  margin-right: 1.5rem;
}
.dashboard-request-card-action-btns button:first-child:hover {
  border-color: #093552;
  color: #093552;
  background-color: #f9f9f9;
}
.dashboard-request-card-action-btns button:nth-child(2) {
  background-color: #dc3545;
}
.dashboard-request-card-action-btns button:nth-child(2):hover {
  background-color: #f9f9f9;
  color: #dc3545;
  border-color: #dc3545;
}

.dashboard-request-creation-date {
  font-size: 0.8rem;
  color: #818181;
  font-weight: 300;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-style: italic;
}

#dashboard-pg-container {
  background-color: #eeeeee;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: calc(100vh - 3.5rem);
}

#dashboard-pg-inner {
  max-width: 1050px;
  padding: 0 3%;
  padding-bottom: 3.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#dashboard-greeting {
  text-align: center;
}
#dashboard-greeting h1 {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
#dashboard-greeting p {
  font-size: 0.9rem;
  font-weight: 400;
  color: #818181;
  margin-bottom: 3rem;
}

#dashboard-header {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 2.5rem;
  padding-bottom: 2rem;
}
#dashboard-header a {
  position: relative;
  margin-left: 1.7rem;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #000d74;
  text-decoration: none;
}
#dashboard-header a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  height: 2.5px;
  width: 0;
  border-radius: 1rem;
  transition: all 0.2s ease-out;
  background-color: #000d74;
}
#dashboard-header a:hover {
  color: #000d74;
}
#dashboard-header a:hover::after {
  background-color: #000d74;
  width: 100%;
}
#dashboard-header a.selected {
  color: #818181;
}
#dashboard-header a.selected::after {
  background-color: #818181;
  width: 100%;
}
#dashboard-header a:first-child {
  margin: 0;
}

.dashboard-popup-modal {
  background-color: #f9f9f9;
  border-radius: 0.8rem;
  min-width: 300px;
  max-width: 600px;
  width: 50vw;
  padding-bottom: 0.5rem;
}

.dashboard-popup-modal-header {
  display: flex;
  border-radius: 0.8rem 0.8rem 0 0;
  padding: 1rem 1rem;
  background-color: #e7e7e7;
  justify-content: space-between;
  align-items: center;
}
.dashboard-popup-modal-header h2 {
  font-family: "Lato", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 0;
}
.dashboard-popup-modal-header button {
  background-color: transparent;
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.5rem;
  width: 1.5rem;
  padding: 0.3rem;
  border-radius: 0.3rem;
}
.dashboard-popup-modal-header button svg {
  stroke: #535353;
  width: 100%;
  height: 100%;
}
.dashboard-popup-modal-header button:hover {
  background-color: #dc3545;
}
.dashboard-popup-modal-header button:hover svg {
  stroke: #f9f9f9;
}

.dashboard-popup-modal-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.3rem;
  padding-bottom: 0.8rem;
  max-height: 75vh;
  overflow-x: hidden;
  overflow: auto;
  overflow-y: overlay;
}
.dashboard-popup-modal-body::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}
.dashboard-popup-modal-body::-webkit-scrollbar-track {
  width: 0.5rem;
  height: 0.5rem;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0.5rem;
}
.dashboard-popup-modal-body::-webkit-scrollbar-thumb {
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(153, 153, 153, 0.6);
  border-radius: 0.5rem;
}
.dashboard-popup-modal-body .popup-modal-alert {
  border-radius: 0.5rem;
  padding: 0.8rem;
}
.dashboard-popup-modal-body .popup-modal-alert p {
  font-size: 0.87rem;
  margin-bottom: 1rem;
}
.dashboard-popup-modal-body .popup-modal-alert p:last-child {
  margin-bottom: 0;
}
.dashboard-popup-modal-body .dashboard-popup-modal-submit-btn {
  background-color: transparent;
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.5rem 0;
  border-radius: 0.3rem;
}

.edit-user-scope-popup .edit-user-scope-alert {
  background-color: #fefee3;
  border: 1px solid #86681d;
}
.edit-user-scope-popup .save-scope-changes-btn {
  margin-top: 1rem;
  background-color: #0045a6;
  color: #f9f9f9;
}
.edit-user-scope-popup .save-scope-changes-btn:hover {
  opacity: 0.9;
}
.edit-user-scope-popup .user-scope-category-list-header {
  display: flex;
  position: relative;
  font-size: 0.9rem;
  font-weight: 400;
  font-family: "Lato", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #727272;
  padding-bottom: 0.5rem;
  width: 100%;
  margin-top: 1.5rem;
}
.edit-user-scope-popup .user-scope-category-list-header::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #c7c7c7;
  height: 1px;
}
.edit-user-scope-popup .user-scope-category-row {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  color: #0045a6;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.86rem;
}
.edit-user-scope-popup .user-scope-category-name {
  display: flex;
  align-items: center;
}
.edit-user-scope-popup .user-scope-category-name .user-scope-category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  margin-right: 0.7rem;
  font-size: 1.3rem;
}
.edit-user-scope-popup .user-scope-category-action-btn {
  width: auto;
  font-weight: 400;
  font-family: "Lato", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.85rem;
}
.edit-user-scope-popup .assigned-category-list .user-scope-category-action-btn {
  color: #dc3545;
}
.edit-user-scope-popup .unassigned-category-list .user-scope-category-action-btn {
  color: #3277f7;
}

.revoke-access-pop-up .revoke-access-alert {
  background-color: #f8d7da;
  border: 1px solid #721c24;
}
.revoke-access-pop-up .revoke-user-access-btn {
  background-color: #dc3545;
  color: #f9f9f9;
}
.revoke-access-pop-up .revoke-user-access-btn:hover {
  opacity: 0.9;
}

.revoke-access-pop-up .revoke-user-title {
  display: flex;
  font-size: 1.1rem;
  width: 100%;
  justify-content: center;
  padding: 1.5rem 0;
  margin-bottom: 0;
}
.revoke-access-pop-up .revoke-user-list-heading {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-family: "Lato", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #535353;
  padding-bottom: 0.3rem;
}
.revoke-access-pop-up .revoke-user-list-heading h4 {
  font-size: 0.95rem;
}
.revoke-access-pop-up .revoke-user-list-heading::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #dddddd;
}
.revoke-access-pop-up .revoke-user-list-item {
  margin: 1rem 0;
  color: #535353;
  font-family: "Lato", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-size: 0.8rem;
}

.request-new-scope-pop-up .request-scope-alert {
  color: #000d74;
  background-color: #d2e6fc;
  border: 1px solid #000d74;
}
.request-new-scope-pop-up .request-scope-btn {
  margin-top: 0.7rem;
  background-color: #0045a6;
  color: #f9f9f9;
}
.request-new-scope-pop-up .top-spacing {
  margin-top: 1rem;
}
.request-new-scope-pop-up .request-access-form-input label {
  font-size: 0.95rem;
  font-weight: 400;
}
.request-new-scope-pop-up .request-scope-pop-up-err {
  margin-top: 1.5rem;
  border: 1px solid #721c24;
  color: #721c24;
  background-color: #f8d7da;
  padding: 1rem;
  border-radius: 0.5rem;
}
.request-new-scope-pop-up .request-scope-pop-up-loading {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f9f9f9;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}

.request-scope-pop-up-submitted {
  padding: 1.7rem;
  min-width: 300px;
  max-width: 600px;
  width: 40vw;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.7rem;
  background-color: #f9f9f9;
  border-radius: 0.5rem;
}

.add-user-pop-up .top-spacing {
  margin-top: 2.2rem;
}
.add-user-pop-up .add-user-alert {
  color: #000d74;
  background-color: #d2e6fc;
  border: 1px solid #000d74;
}
.add-user-pop-up .send-user-invite-access-btn {
  margin-top: 2.2rem;
  background-color: #0045a6;
  color: #f9f9f9;
}
.add-user-pop-up .request-form-dropdown .dropdown-input__menu-list {
  max-height: 6rem;
}
.add-user-pop-up .request-access-form-input {
  position: relative;
}
.add-user-pop-up .row-input-error.assign-scopes {
  position: absolute;
  left: 0;
  top: 100%;
}

.add-user-pop-up-success-message {
  font-size: 0.9rem;
  margin-top: 1rem;
  width: 100%;
  padding: 1.5rem;
  border: 1px solid #0d4e1c;
  border-radius: 0.5rem;
  color: #0d4e1c;
  background-color: #a2eea5;
  word-break: break-all;
}

.add-user-pop-up-copy-link {
  margin-top: 1rem;
  max-width: 15rem;
  overflow: hidden;
}
.add-user-pop-up-copy-link .copy-text-input {
  width: calc(100% - 3rem);
  white-space: nowrap;
}
.add-user-pop-up-copy-link .copy-text-input-copy-btn {
  background-color: #0045a6;
  color: #f9f9f9;
  border: none;
}

.dashboard-action-cards {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}

#dashboard-grid-banner {
  min-height: 220px;
  width: 100%;
  background-color: white;
  box-shadow: 0px 0 1rem rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem;
}

#dashboard-grid-header {
  display: flex;
  width: 100%;
  padding-bottom: 0.7rem;
  color: #555555;
}
#dashboard-grid-header h1 {
  font-size: 1.7rem;
  margin-right: 0.6rem;
  margin-bottom: 0;
}
#dashboard-grid-header h6 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
}

#dashboard-grid {
  display: flex;
  width: 100%;
  position: relative;
  overflow: auto;
}
#dashboard-grid::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}
#dashboard-grid::-webkit-scrollbar-track {
  width: 0.5rem;
  height: 0.5rem;
  background-color: rgba(0, 0, 0, 0.07);
  border-radius: 0.5rem;
}
#dashboard-grid::-webkit-scrollbar-thumb {
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(153, 153, 153, 0.6);
  border-radius: 0.5rem;
}

#dashboard-inner-grid {
  width: 100%;
  height: 100%;
  min-width: 650px;
  position: relative;
}
#dashboard-inner-grid .grid-day {
  position: relative;
  cursor: pointer;
}
#dashboard-inner-grid .grid-day-text {
  position: absolute;
  width: 100%;
  height: 100%;
  fill: black;
  stroke: black;
}
#dashboard-inner-grid .month-name {
  font-size: 110px;
  fill: #2c6bac;
  font-weight: 400;
}

.dashboard-day-activity-details {
  font-size: 0.75rem;
  line-height: 0.85rem;
  display: flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  background-color: #535353;
  opacity: 0;
  color: #f9f9f9;
  border-radius: 1rem;
  z-index: -1;
  transition: opacity 0.15s ease-out;
  text-align: center;
}
.dashboard-day-activity-details.show {
  opacity: 0.85;
  z-index: 1;
}

.dashboard-grid-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.dashboard-grid-err-alert {
  width: 100%;
  height: 100%;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dashboard-grid-err-alert div {
  padding: 1rem;
  font-size: 0.87rem;
  background-color: #f8d7da;
  border: 1px solid #721c24;
  color: #721c24;
  border-radius: 0.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.dashboard-pagination-nav {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.dashboard-pagination-type button {
  background-color: transparent;
  border: none;
  outline: none;
  position: relative;
  padding: 0;
  margin: 0;
  margin-right: 1rem;
  color: #818181;
  font-weight: 600;
  font-size: 0.95rem;
}
.dashboard-pagination-type button::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  height: 1.9px;
  width: 0;
  border-radius: 1rem;
  transition: all 0.2s ease-out;
  background-color: #818181;
}
.dashboard-pagination-type button:hover {
  color: #818181;
}
.dashboard-pagination-type button:hover::after {
  background-color: #818181;
  width: 100%;
}
.dashboard-pagination-type button.selected {
  color: #3277f7;
}
.dashboard-pagination-type button.selected::after {
  background-color: #3277f7;
  width: 100%;
}

.dashboard-pagination-count {
  display: flex;
  height: 100%;
  align-items: center;
  font-size: 0.8rem;
  color: #818181;
  font-weight: 500;
}
.dashboard-pagination-count .pagination-count {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.6rem;
  margin-bottom: 0;
  line-height: 100%;
}
.dashboard-pagination-count button {
  background-color: transparent;
  border: none;
  outline: none;
  color: #727272;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  margin: 0;
  border-radius: 4rem;
}
.dashboard-pagination-count button:hover {
  background-color: #dddddd;
  color: #535353;
}

#dashboard-user-search-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  margin-bottom: 2rem;
}

#dashboard-user-search {
  background-color: white;
  padding: 0 1rem;
  border-radius: 2rem;
  border: 1.7px solid #dddddd;
  display: flex;
  align-items: center;
  pointer-events: none;
  width: 48%;
  color: #a5a5a5;
}
#dashboard-user-search input {
  display: flex;
  align-items: center;
  height: 2.8rem;
  width: 100%;
  margin-left: 0.5rem;
  border: none;
  outline: none;
  pointer-events: auto;
  font-size: 0.85rem;
}
#dashboard-user-search input::placeholder {
  margin: 0;
  color: #a5a5a5;
  font-weight: 300;
}
#dashboard-user-search:focus, #dashboard-user-search:active, #dashboard-user-search:focus-within {
  outline: #535353 2px solid;
}

.dashboard-user-add-user-btn {
  background-color: transparent;
  border: none;
  outline: none;
  color: #3277f7;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 100%;
  font-size: 0.9rem;
  min-width: fit-content;
  margin-left: 0.5rem;
}
.dashboard-user-add-user-btn span {
  margin-left: 0.4rem;
}

#dashboard-user-list {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.dashboard-user-columns {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
  height: 100%;
  min-height: 10rem;
}

.dashboard-user-column-loading {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: start;
  margin-top: 2rem;
  padding-top: 2rem;
  justify-content: center;
  background-color: #f9f9f9ca;
  height: 100%;
}

.dashboard-user-column-placeholder {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 3.5rem;
  color: #093552;
  width: 100%;
  height: 100%;
  background-color: #f9f9f9;
}
.dashboard-user-column-placeholder h4 {
  display: flex;
  justify-content: center;
  color: #41516c;
  font-weight: 600;
  word-spacing: 0.15rem;
  font-size: 1.1rem;
  width: 100%;
}
.dashboard-user-column-placeholder p {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 0.85rem;
  color: #727272;
}

.dashboard-user-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.dashboard-user-column.Email {
  justify-content: center;
  flex-grow: 1;
}
.dashboard-user-column.Joined {
  min-width: 8rem;
}
.dashboard-user-column .user-list-row-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  font-size: 0.85rem;
  font-family: "Lato", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
  font-weight: 500;
  color: #575757;
}
.dashboard-user-column .user-list-row-item:nth-child(2) {
  margin-top: 0.5rem;
}
.dashboard-user-column .user-list-name {
  margin-left: 0.5rem;
}
.dashboard-user-column .user-actions {
  position: relative;
}
.dashboard-user-column .user-actions-btn {
  background-color: transparent;
  border: none;
  outline: none;
  color: #575757;
  font-size: 1.5rem;
}
.dashboard-user-column .user-actions-dropdown {
  position: absolute;
  right: 1rem;
  top: 2.5rem;
  width: 7rem;
  background-color: #f9f9f9;
  border: 1px solid #dddddd;
  border-radius: 0.3rem;
  z-index: 1;
  font-size: 0.8rem;
  padding: 0.3rem 0;
  box-shadow: 3px 7px 6px -4px rgba(0, 0, 0, 0.116);
}
.dashboard-user-column .user-actions-dropdown a,
.dashboard-user-column .user-actions-dropdown button {
  text-decoration: none;
  width: 100%;
  padding: 0.3rem 0.5rem;
  background-color: transparent;
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
  font-family: "Lato", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #292929;
}
.dashboard-user-column .user-actions-dropdown a:hover,
.dashboard-user-column .user-actions-dropdown button:hover {
  background-color: #3277f7;
  color: #f9f9f9;
}
.dashboard-user-column .user-actions-dropdown a.user-actions-revoke-access,
.dashboard-user-column .user-actions-dropdown button.user-actions-revoke-access {
  color: #dc3545;
}
.dashboard-user-column .user-actions-dropdown a.user-actions-revoke-access:hover,
.dashboard-user-column .user-actions-dropdown button.user-actions-revoke-access:hover {
  background-color: #dc3545;
  color: #f9f9f9;
}

.dashboard-user-column-title {
  display: flex;
  align-items: center;
  height: 2rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #c7c7c7;
}
.dashboard-user-column-title h5 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #727272;
}
.dashboard-user-column-title .sorting-pointers {
  display: flex;
  flex-direction: column;
  height: 1.2rem;
  margin-left: 0.4rem;
}
.dashboard-user-column-title .sorting-pointers button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  height: 100%;
  background-color: transparent;
  border: none;
  outline: none;
}
.dashboard-user-column-title .sorting-pointers button svg {
  width: 0.5rem;
  height: 100%;
  fill: #818181;
}

.dashboard-user-column.Email .dashboard-user-column-title, .dashboard-user-column.Joined .dashboard-user-column-title {
  justify-content: center;
}
.dashboard-user-column.Name .user-list-row-item {
  justify-content: start;
}

.dashboard-user-search-alert {
  padding: 1rem;
  font-size: 0.87rem;
  background-color: #f8d7da;
  border: 1px solid #721c24;
  color: #721c24;
  border-radius: 0.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

#dashboard-all-contributions-pg {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100vh - 3.5rem);
  padding: 2.5rem 1.5rem;
}

#dashboard-all-contributions-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
}
#dashboard-all-contributions-container .recent-list-header {
  justify-content: center;
}

.dashboard-all-contributions-back-btn {
  width: fit-content;
  text-decoration: none;
  background-color: #0045a6;
  font-size: 1.1rem;
  color: white;
  padding: 0.3rem 0.8rem;
  border: 1px solid #f9f9f9;
  border-radius: 0.4rem;
  transition: all ease-in 0.2s;
  margin-bottom: 1.5rem;
}
.dashboard-all-contributions-back-btn:hover {
  color: rgba(255, 255, 255, 0.8);
  transform: scale(1.05);
}

.dashboard-all-contributions-pagiation-btn-container {
  margin-top: 2rem;
  display: flex;
  width: 100%;
  justify-content: center;
}
.dashboard-all-contributions-pagiation-btn-container button {
  background-color: transparent;
  border: none;
  outline: none;
  border-right: 1px solid #0045a6;
  border-top: 1px solid #0045a6;
  border-bottom: 1px solid #0045a6;
  background-color: white;
  color: #0045a6;
  padding: 0.2rem 0.6rem;
}
.dashboard-all-contributions-pagiation-btn-container button:first-child {
  border-left: 1px solid #0045a6;
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.dashboard-all-contributions-pagiation-btn-container button:last-child {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.dashboard-all-contributions-pagiation-btn-container button.active {
  background-color: #0045a6;
  color: #f9f9f9;
  text-decoration: underline;
}
.dashboard-all-contributions-pagiation-btn-container button.dashboard-all-contributions-prev-btn svg {
  margin-right: 0.3rem;
}
.dashboard-all-contributions-pagiation-btn-container button.dashboard-all-contributions-next-btn svg {
  margin-left: 0.3rem;
}

@keyframes reveal-line {
  0% {
    width: 0;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 1px;
  }
}
.home-page-container {
  background-color: #eeeeee;
}

.home-page-intro-banner {
  position: relative;
  height: calc(100vh - 3.5rem);
  width: 100%;
}
.home-page-intro-banner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background-color: black;
  opacity: 0.59;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.home-page-intro-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.home-page-banner-header {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 4rem;
  padding-right: 8%;
  padding-left: 8%;
  width: min-content;
  color: #f9f9f9;
  font-family: "Lora", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding-bottom: 2rem;
  text-align: center;
  z-index: 3;
}
.home-page-banner-header h1:first-child {
  font-size: 175%;
  margin-bottom: 1rem;
}
.home-page-banner-header h1:nth-child(2) {
  font-size: 350%;
  margin: 0;
}
.home-page-banner-header::after {
  content: "";
  position: absolute;
  background-color: #f9f9f9;
  bottom: 0;
  left: 0;
}
.home-page-banner-header.mounted::after {
  height: 1px;
  width: 100%;
  animation: reveal-line 1s ease-out;
}

.home-page-banner-content {
  padding-top: 4rem;
  padding-right: 8%;
  padding-left: 8%;
  -webkit-mask-image: linear-gradient(to bottom, transparent 12rem, black calc(max(30%, 15rem)), black 85%, transparent 95%);
  mask-image: linear-gradient(to bottom, transparent 12rem, black calc(max(30%, 15rem)), black 85%, transparent 95%);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-position: 0 0 100% 0;
  mask-position: 0 0 100% 0;
  -webkit-mask-repeat: no-repeat no-repeat;
  mask-repeat: no-repeat no-repeat;
  overflow-y: scroll;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  padding-top: 15rem;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #f9f9f9;
}
.home-page-banner-content::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.home-page-banner-transition-container {
  max-width: 1100px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  background-image: linear-gradient(transparent 10%, currentColor 20%, currentColor 80%, transparent 90%);
  background-clip: text;
  -webkit-background-clip: text;
  background-attachment: fixed;
}

.home-page-banner-summary {
  color: transparent;
  font-size: 175%;
  line-height: 250%;
  font-family: "Lato", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: 70vh;
  margin: 0;
}

.home-page-banner-action-cards {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6vh;
}
.home-page-banner-action-cards .action-card {
  height: 220px;
}

.home-page-banner-continue-tab {
  text-decoration: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f9f9f9 !important;
  font-size: 125%;
  margin-bottom: 10vh;
}
.home-page-banner-continue-tab:hover {
  opacity: 0.8;
}

#home-page-recent-submissions-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 4rem;
  padding-top: 4rem;
  padding-right: 8%;
  padding-left: 8%;
  padding-bottom: 4.5rem;
}

#home-page-recent-submissions {
  max-width: 1100px;
  width: 100%;
}

#about-pg-container {
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-family: "Lato", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: calc(100vh - 3.5rem);
}

#about-pg-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#about-pg-contributors-container {
  padding: 2.5rem 0;
  width: 100%;
}
#about-pg-contributors-container h3 {
  display: flex;
  width: 100%;
  justify-content: center;
  font-size: 2.2rem;
  color: #0045a6;
  font-weight: 600;
  margin-bottom: 2rem;
}

#about-pg-contributors {
  font-family: "Lato", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
#about-pg-contributors .contributor-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#about-pg-contributors .contributor-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 50%;
  aspect-ratio: 2/1;
  max-height: 10rem;
  min-height: 4rem;
}
#about-pg-contributors .contributor-card-name {
  color: #535353;
  font-weight: 600;
  font-size: 1.3rem;
}
#about-pg-contributors .contributor-card-title {
  color: #535353;
  font-size: 1rem;
}

#about-pg-action {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
#about-pg-action h4 {
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 3rem 0;
  margin-bottom: 2rem;
}
#about-pg-action a {
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  background-color: #093552;
  color: #f9f9f9;
  transition: transform 0.2s ease-out;
}
#about-pg-action a:hover {
  transform: scale(1.05);
}

#about-pg-explore-header {
  display: flex;
  padding: 0 3%;
  width: 100%;
  font-size: 2.5rem;
  margin-top: 1.7rem;
  margin-bottom: 1rem;
}

#about-pg-explore-more {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  flex-grow: 1;
  margin-bottom: 3rem;
}
#about-pg-explore-more .explore-card-container {
  padding: 3%;
  width: calc(100% / 3);
  min-width: 15rem;
  transition: transform 0.2s ease-out;
}
#about-pg-explore-more .explore-card-container:hover {
  transform: scale(1.05) translateY(-5%);
}
#about-pg-explore-more .explore-card {
  text-decoration: none;
  color: black;
  display: flex;
  justify-content: space-between;
  height: 6.5rem;
}
#about-pg-explore-more .explore-card-img {
  border-radius: 0.3rem 0 0 0.3rem;
  background-color: #d2e6fc;
  display: flex;
  min-width: 4rem;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #0045a6;
}
#about-pg-explore-more .explore-card-content {
  padding: 0.5rem;
  background-color: #eeeeee;
  border-radius: 0 0.3rem 0.3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  flex-grow: 1;
}
#about-pg-explore-more .explore-card-content h5 {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
  font-weight: 600;
  margin: 0;
  font-size: 1.2rem;
}
#about-pg-explore-more .explore-card-content p {
  color: #535353;
  font-size: 0.8rem;
  margin: 0;
}

.login-form-container, .login-guest-form-container {
  position: relative;
  border-radius: 0.5rem;
  max-width: 350px;
  min-width: 280px;
  width: 23vw;
  display: flex;
  flex-direction: column;
  padding: calc(max(1.5rem, 13%)) calc(max(2rem, 15%));
  align-items: center;
  background-color: #f9f9f9;
  transition: all 250ms ease-in;
}

.login-pg-err-banner {
  display: flex;
  width: 100%;
  padding: 0.5rem !important;
}

.login-form-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.5px;
  font-family: "Poppins", "Segoe UI", Tahoma, "Geneva", Verdana, sans-serif;
  margin: 0rem;
  margin-bottom: 1.7rem;
  line-height: 2.3rem;
}

.login-form-google-auth {
  margin-bottom: 1.2rem;
}

.login-pg-hr-line {
  display: flex;
  align-items: center;
  min-width: 250px;
  width: 100%;
}
.login-pg-hr-line div {
  height: 2px;
  width: 100%;
  background-color: #818181;
}
.login-pg-hr-line span {
  font-size: 1rem;
  margin: 0 0.6rem;
  margin-bottom: 0.2rem;
  padding: 0;
}

.login-form-guest-btn {
  margin-top: 1.2rem;
  font-weight: 500;
  background-color: #0045a6;
  width: 250px;
  height: 40px;
  border: none;
  border-radius: 5px;
  color: #f9f9f9;
  font-family: "Lato", "Segoe UI", Tahoma, "Geneva", Verdana, sans-serif;
}

.login-form-request-account {
  font-size: 0.9rem;
  font-family: "Lato", "Segoe UI", Tahoma, "Geneva", Verdana, sans-serif;
  margin-top: 2rem;
  line-height: 1.5rem;
  color: #535353;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-form-request-account a {
  text-decoration: none;
  font-size: 0.8rem;
}

.login-form-container-loading {
  background-color: #f9f9f9;
  border-radius: 0.5rem;
  color: #0045a6;
}

.login-guest-form-container {
  position: relative;
}

.login-guest-form-back-btn {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  border: 1px solid #0045a6;
  background-color: #f9f9f9;
  border-radius: 0.4rem;
  color: #0045a6;
  font-size: 0.9rem;
  width: 1.7rem;
  height: 1.7rem;
}

.login-guest-form {
  margin-top: 1rem;
  min-width: 245px;
}

.login-guest-form-row {
  margin-bottom: 2rem;
}
.login-guest-form-row h2 {
  font-size: 1rem;
  font-family: "Lato", "Segoe UI", Tahoma, "Geneva", Verdana, sans-serif;
  margin-bottom: 0.8rem;
}
.login-guest-form-row h2 span {
  color: #c90101;
  margin-left: 0.2rem;
}

.login-guest-form-row-body {
  display: flex;
  align-items: center;
  width: 100%;
}
.login-guest-form-row-body input[type=text] {
  width: 100%;
  border: 1px solid #818181;
  min-height: 2rem;
  padding-left: 0.5rem;
  font-size: 0.9rem;
  border-radius: 0.3rem;
}
.login-guest-form-row-body input[type=radio] {
  visibility: hidden;
  opacity: 0;
  width: 0;
}
.login-guest-form-row-body input[type=radio] ~ label {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 0.4rem;
  border: 1px solid #818181;
  color: #818181;
  font-size: 0.9rem;
  padding: 0.2rem 1.3rem;
  margin-right: 0.5rem;
  font-weight: 600;
}
.login-guest-form-row-body #login-guest-form-org-yes:checked + label {
  border: 1px solid #00b307;
  color: #00b307;
}
.login-guest-form-row-body #login-guest-form-org-no:checked + label {
  border: 1px solid red;
  color: red;
}

.login-guest-form-input-err {
  margin-top: 0.2rem;
  color: #c90101;
  font-size: 0.85rem;
  font-weight: 400;
  font-family: "Lato", "Segoe UI", Tahoma, "Geneva", Verdana, sans-serif;
}

.login-group-form-dropdown {
  width: 100%;
  padding: 0;
}
.login-group-form-dropdown .dropdown-input__menu-list {
  max-height: 13rem;
}
.login-group-form-dropdown .dropdown-input__value-container {
  font-size: 0.9rem;
}
.login-group-form-dropdown .dropdown-input__value-container input[type=text] {
  width: 100%;
  border: 1px solid #818181;
  min-height: 0;
}
.login-group-form-dropdown .dropdown-input__group {
  padding-top: 0;
}
.login-group-form-dropdown .dropdown-input__group-heading {
  font-size: 1.1rem;
  font-weight: 500;
  font-family: "Poppins", "Segoe UI", Tahoma, "Geneva", Verdana, sans-serif;
  background-color: #41516c;
  padding: 0.5rem 1rem;
  min-height: 2.7rem;
  color: #f9f9f9;
  display: flex;
  align-items: center;
}
.login-group-form-dropdown .dropdown-input__option {
  font-size: 0.85rem;
}

.login-guest-form-auth-btn {
  background-color: #0045a6;
  color: #f9f9f9;
  border: none;
  min-height: 41px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  font-size: 0.8rem;
  font-family: "Poppins", "Segoe UI", Tahoma, "Geneva", Verdana, sans-serif;
  margin-top: 2.5rem;
}

.login-transition-container {
  transition: all 250ms ease-in;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.login-form-pg-enter {
  height: 100%;
  top: 0;
  position: absolute;
  transform: translateX(-400px);
}

.login-form-pg-enter-active {
  transform: translateX(0px);
}

.login-form-exit {
  position: absolute;
  transform: translateX(0px);
}

.login-form-pg-exit-active {
  transform: translateX(-400px);
}

.guest-form-pg-enter {
  position: absolute;
  height: 100%;
  top: 0;
  transform: translateX(400px);
}

.guest-form-pg-enter-active {
  transform: translateX(0px);
}

.guest-form-pg-exit-active {
  transform: translateX(400px);
}

.invite-link-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f9f9f9;
  height: fit-content;
  min-width: 300px;
  max-width: 400px;
  width: 22vw;
  border-radius: 1rem;
  overflow: auto;
  overflow-x: hidden;
  padding: calc(max(4%, 2rem)) calc(max(3%, 1.5rem));
}

.invite-link-form-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.3rem;
  height: 3rem;
  width: 100%;
}
.invite-link-form-logo .app-logo {
  display: flex;
  justify-content: center;
}

.invite-link-form-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.5px;
  font-family: "Poppins", "Segoe UI", Tahoma, "Geneva", Verdana, sans-serif;
  margin: 0.5rem;
  margin-bottom: 1.5rem;
}

.invite-link-input-container {
  width: 250px;
}

.invite-link-input {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.invite-link-input .input-heading {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.invite-link-input .input-heading h2 {
  margin: 0;
}
.invite-link-input .input-heading span {
  margin-left: 0.2rem;
  font-weight: 700;
  color: darkred;
}
.invite-link-input h2 {
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 0.7rem;
  font-family: "Poppins", "san-serif", "arial";
}
.invite-link-input .default-inputs {
  font-size: 1rem;
  border: 1px solid #818181;
  border-radius: 0.3rem;
  height: 1.9rem;
  padding-left: 0.5rem;
}
.invite-link-input .default-inputs.error {
  border: 1px solid darkred;
}
.invite-link-input .default-inputs::-webkit-outer-spin-button,
.invite-link-input .default-inputs::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.invite-link-input .default-inputs[type=number] {
  -moz-appearance: textfield;
}
.invite-link-input:last-child {
  margin-bottom: 0;
}
.invite-link-input .err-message {
  font-size: 0.8rem;
  color: darkred;
  margin-top: 0.3rem;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.invite-link-form-dropdown {
  width: 100%;
  padding: 0;
  border: 1px solid #535353;
  border-radius: 0.4rem;
}
.invite-link-form-dropdown.error {
  border: 1px solid darkred;
}
.invite-link-form-dropdown .dropdown-input__indicator {
  padding: 0.2rem 0.4rem;
}
.invite-link-form-dropdown .dropdown-input__menu-list {
  max-height: 13rem;
}
.invite-link-form-dropdown .dropdown-input__control {
  min-height: 2rem;
  border: none;
}
.invite-link-form-dropdown .dropdown-input__value-container {
  font-size: 0.8rem;
}
.invite-link-form-dropdown .dropdown-input__value-container input[type=text] {
  width: 100%;
  border: 1px solid #818181;
  min-height: 0;
}
.invite-link-form-dropdown .dropdown-input__group {
  padding-top: 0;
}
.invite-link-form-dropdown .dropdown-input__group-heading {
  font-size: 1.1rem;
  font-weight: 500;
  font-family: "Poppins", "Segoe UI", Tahoma, "Geneva", Verdana, sans-serif;
  background-color: #41516c;
  padding: 0.5rem 1rem;
  min-height: 2.7rem;
  color: #f9f9f9;
  display: flex;
  align-items: center;
}
.invite-link-form-dropdown .dropdown-input__option {
  font-size: 0.85rem;
}

.invite-link-google-auth {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 42px;
  margin: 1.7rem 0;
  border-radius: 0.3rem;
}

.invite-link-login {
  display: flex;
  align-items: center;
  color: #535353;
  font-size: 0.8rem;
  font-weight: 400;
  font-family: "Poppins", "Segoe UI", Tahoma, "Geneva", Verdana, sans-serif;
}
.invite-link-login a {
  margin-left: 0.2rem;
  text-decoration: none;
}
.invite-link-login p {
  margin: 0;
}

.invite-link-err-banner {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0.6rem !important;
}
.invite-link-err-banner button {
  position: absolute;
  right: 0.4rem;
  top: 0.4rem;
  background-color: rgba(255, 255, 255, 0);
  outline: none;
  border: none;
  height: 1rem;
  width: 1rem;
  display: flex;
  align-items: center;
  padding: 0;
}
.invite-link-err-banner button .exit-icon {
  stroke: #535353;
}

#request-access-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f9f9f9;
  height: fit-content;
  min-width: 300px;
  max-width: 400px;
  width: 30vw;
  border-radius: 0.5rem;
  overflow: auto;
  overflow-x: hidden;
  padding: calc(max(3%, 2rem));
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
#request-access-form h1 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.request-form-container-loading {
  background-color: #f9f9f9;
  border-radius: 0.5rem;
  color: #0045a6;
}

.request-access-form-contact-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 1rem;
}
.request-access-form-contact-row p {
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.87rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.contact-row-input {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.contact-row-input label {
  font-family: "Lato", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin-left: 0.5rem;
  font-size: 0.77rem;
}
.contact-row-input input[type=radio] {
  cursor: pointer;
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: #fff;
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: #0045a6;
  width: 1rem;
  height: 1rem;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-row-input input[type=radio]::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-out;
  background-color: #0045a6;
  margin: 0;
  padding: 0;
}
.contact-row-input input[type=radio]:checked::before {
  transform: scale(1);
}

.request-access-form-submit-btn {
  margin-top: 1.2rem;
  width: 100%;
  border: none;
  background-color: #0045a6;
  color: #f9f9f9;
  border-radius: 0.4rem;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.request-form-submitted {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  text-align: center;
}
.request-form-submitted a {
  text-decoration: none;
  margin-bottom: 1rem;
}
.request-form-submitted #request-submitted-form-heading {
  background-color: #0045a6;
  color: #f9f9f9;
  padding: 1rem 0;
  width: 100%;
  margin: 0;
}

#request-submitted-inputs-container {
  width: 100%;
  border: 1px solid #818181;
  border-top: none;
}

.request-form-submitted-inputs {
  padding: 0.5rem 0;
  border-bottom: 1px solid #c7c7c7;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 0.5rem;
  width: 100%;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.request-form-submitted-inputs h2 {
  font-size: 0.9rem;
  width: 100%;
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.request-form-submitted-inputs p {
  font-size: 0.77rem;
  width: 100%;
  margin: 0;
  padding: 0;
  font-weight: 300;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.request-form-submitted-inputs:last-child {
  border-bottom: none;
}

.form-pg-container {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #d2d2c0;
  padding: 1.5rem;
  min-height: calc(100vh - 3.5rem);
}

.form-overall-container {
  margin: auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.record-form-carousel {
  max-width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0 2rem !important;
  margin-bottom: 2rem;
}
.record-form-carousel .swiper-button-prev, .record-form-carousel .swiper-button-next {
  color: #535353;
  height: 110%;
  top: 0;
  margin: 0;
  width: 1rem;
  background-color: #f9f9f9;
}
.record-form-carousel .swiper-button-prev::after, .record-form-carousel .swiper-button-next::after {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}
.record-form-carousel .swiper-button-prev {
  left: 0rem;
}
.record-form-carousel .swiper-button-next {
  right: 0;
}

.record-form-nav-link {
  font-size: 1.15rem;
  text-decoration: none;
  color: #818181;
  font-weight: 600;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.record-form-nav-link::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  height: 2.5px;
  width: 0;
  border-radius: 1rem;
  transition: all 0.2s ease-out;
  background-color: #818181;
}
.record-form-nav-link:hover {
  color: #818181;
}
.record-form-nav-link:hover::after {
  background-color: #818181;
  width: 100%;
}
.record-form-nav-link.selected {
  color: #3277f7;
}
.record-form-nav-link.selected::after {
  background-color: #3277f7;
  width: 100%;
}

.record-form-pg-wrapper {
  margin-top: 1rem;
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.record-form-pg-boxes {
  display: flex;
  flex-direction: column;
  width: 40%;
}

.record-form-box-container {
  display: flex;
  flex-direction: column;
  height: auto;
  background-color: white;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.09);
  border-radius: 0.6rem;
  border: 1px solid #d6d9dc;
  width: 100%;
}
.record-form-box-container:nth-child(2) {
  margin-top: 10%;
}
.record-form-box-container .record-form-box-header {
  display: flex;
  width: 100%;
  border-radius: 0.6rem 0.6rem 0 0;
  padding: 0.8rem 1rem;
  background-color: rgba(233, 233, 233, 0.5);
  border-bottom: 1px solid #d6d9dc;
  font-family: "Lato", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.record-form-box-container .record-form-box-header h3 {
  font-size: 1.4rem;
  margin: 0;
}
.record-form-box-container .record-form-box-body {
  padding: 1.4rem 2rem;
  min-height: 15rem;
}

.record-form-pg-form {
  width: 55%;
}
.record-form-pg-form .record-form-input label {
  font-size: 1rem;
}

.record-form-guidelines li {
  color: #535353;
  margin: 1rem 0;
}

.record-form-similar-records .record-form-box-body {
  position: relative;
  max-height: 50vh;
  overflow: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.record-form-similar-records .record-form-similar-records-loading-icon {
  background-color: white;
  border-radius: 0 0 0.5rem 0.5rem;
}

.record-form-submit-loading-message {
  background-color: white;
}

.record-form-submit-btn {
  background-color: transparent;
  border: none;
  outline: none;
  display: flex;
  width: 100%;
  border-radius: 0.5rem;
  background-color: #0045a6;
  padding: 0.6rem;
  justify-content: center;
  align-items: center;
  color: #f9f9f9;
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
  border: 1px solid #0045a6;
  transition: all 0.2s ease-out;
}
.record-form-submit-btn:hover {
  background-color: #f9f9f9;
  color: #0045a6;
  transform: translateY(-0.2rem);
}

.record-form-loading-message {
  background-color: white;
  opacity: 1;
}

.record-form-err-banner {
  position: absolute !important;
}
.record-form-err-banner button .exit-icon {
  stroke: #727272;
}

.record-form-media-container {
  padding: 1.5rem;
  border: 2px solid #c7c7c7;
  border-radius: 0.5rem;
}

.media-form-input {
  background-color: #f9f9f9;
}

.record-form-media-type-btns {
  margin-bottom: 1.5rem;
}
.record-form-media-type-btns button {
  background-color: transparent;
  border: none;
  outline: none;
  border: 1px solid #0045a6;
  background-color: #0045a6;
  color: #f9f9f9;
  padding: 0.2rem 0.5rem;
}
.record-form-media-type-btns button:first-child {
  border-radius: 0.3rem 0 0 0.3rem;
}
.record-form-media-type-btns button:last-child {
  border-radius: 0 0.3rem 0.3rem 0;
}
.record-form-media-type-btns button.active {
  color: #0045a6;
  background-color: white;
}

.record-form-media-type-wrapper {
  padding: 1.2rem;
  border-radius: 0.5rem;
  background-color: #d2e6fc;
  color: #0045a6;
  border: 1px solid #0045a6;
}

.record-form-media-files {
  margin-bottom: 2rem;
}

.record-form-media-links {
  position: relative;
}
.record-form-media-links .record-form-media-type-wrapper {
  margin-bottom: 1.5rem;
}
.record-form-media-links .record-form-media-type-wrapper:last-child {
  margin-bottom: 0;
}

.record-form-media-input-remove-btn {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.record-form-media-input-remove-btn h5 {
  margin: 0;
}
.record-form-media-input-remove-btn button {
  background-color: transparent;
  border: none;
  outline: none;
  background-color: #dc3545;
  border-radius: 0.3rem;
  color: white;
  padding: 0.3rem;
  transition: all 0.3s ease-out;
}
.record-form-media-input-remove-btn button:hover {
  transform: scale(1.1);
}

.record-form-media-link-input-description {
  margin-bottom: 0.3rem;
}

.record-form-media-links-action-btns {
  display: flex;
  margin-top: 1.5rem;
}
.record-form-media-links-action-btns button {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0.3rem 0.5rem;
  width: 100%;
  border-radius: 0.5rem;
  transition: all 0.2s ease-out;
}
.record-form-media-links-action-btns button:hover {
  transform: translateY(-0.2rem);
}
.record-form-media-links-action-btns button:first-child {
  background-color: #0045a6;
  border: 1px solid #0045a6;
  color: #f9f9f9;
  margin-right: 0.3rem;
}
.record-form-media-links-action-btns button:last-child {
  border: 1px solid #535353;
  margin-left: 0.3rem;
}
.record-form-media-links-action-btns button:last-child .fa-floppy-disk {
  margin-right: 0.4rem;
}

.record-form-media-thumbnail-seperator {
  height: 1px;
  width: 70%;
  background-color: #c7c7c7;
}

.record-form-media-thumbnails {
  padding-top: calc(2rem - 2%);
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}

.search-page-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 3.5rem);
}
.search-page-container .particle-bg-content {
  max-width: 1200px;
}

.search-page-header {
  display: flex;
  align-items: center;
  color: white;
  font-size: 1.9rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.search-page-header h1 {
  font-size: 2.5rem;
  margin: 0;
  margin-left: 0.7rem;
}

.search-page-query-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.search-page-query-container #advanced-search-btn {
  background-color: transparent;
  border: none;
  outline: none;
  border-radius: 0.4rem;
  background-color: #0045a6;
  color: #f9f9f9;
  padding: 0.2rem 0.7rem;
}

.search-page-query {
  background-color: white;
  padding: 0 0 0 0.5rem;
  border-radius: 0.4rem;
  border: 1.7px solid #dddddd;
  display: flex;
  align-items: center;
  flex-grow: 1;
  color: #a5a5a5;
  height: 2.5rem;
  margin-right: 0.5rem;
}
.search-page-query input {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: 0.5rem;
  border: none;
  outline: none;
  pointer-events: auto;
  font-size: 1rem;
}
.search-page-query input::placeholder {
  margin: 0;
  color: #a5a5a5;
  font-weight: 300;
}
.search-page-query:focus, .search-page-query:active, .search-page-query:focus-within {
  outline: #535353 2px solid;
}
.search-page-query button {
  background-color: transparent;
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
  width: 2rem;
  border-radius: 0 0 0.4rem 0.4rem;
  cursor: pointer;
}

.search-page-advanced-search-container {
  background-color: #f9f9f9;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.08);
  border-radius: 0.4rem;
  margin-top: 1rem;
  padding: 3%;
}
.search-page-advanced-search-container h3 {
  color: #727272;
  font-weight: 600;
  color: #535353;
  font-size: 1.4rem;
}
.search-page-advanced-search-container h4 {
  font-size: 1rem;
  color: #727272;
  font-weight: 600;
  margin: 0;
}

.search-page-media-query {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.search-page-media-query .form-inputs {
  width: auto;
  margin: 0 0.3rem;
}
.search-page-media-query .form-inputs label {
  margin: 0;
}
.search-page-media-query label {
  height: 100%;
}

.search-page-date-rows {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.search-page-date-rows .form-inputs {
  width: 30%;
  margin-bottom: 0;
}
.search-page-date-rows .form-inputs label {
  font-size: 1rem;
  color: #727272;
  font-weight: 600;
  margin-bottom: 0;
}
.search-page-date-rows .form-inputs input {
  min-height: 2.25rem;
}
.search-page-date-rows .delete-date-query {
  background-color: transparent;
  border: none;
  outline: none;
  background-color: #dc3545;
  border-radius: 0.3rem;
  color: #f9f9f9;
  height: 100%;
  min-height: 2.25rem;
}

.search-page-dates-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.search-page-dates-header button {
  background-color: transparent;
  border: none;
  outline: none;
  color: #f9f9f9;
  background-color: #0045a6;
  border-radius: 0.3rem;
  padding: 0.3rem 0.6rem;
  font-weight: 600;
}
.search-page-dates-header button span {
  margin-left: 0.3rem;
}

.search-page-records-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 2rem;
}

.search-page-no-records-found {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  align-items: center;
  flex-grow: 1;
  font-size: 3.5rem;
  color: #093552;
  height: 100%;
}
.search-page-no-records-found h4 {
  display: flex;
  justify-content: center;
  color: #41516c;
  font-weight: 600;
  word-spacing: 0.15rem;
  font-size: 1.1rem;
  width: 100%;
}
.search-page-no-records-found p {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 0.85rem;
  color: #727272;
}

#record-pg-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 3.5rem);
  align-items: center;
}

#record-pg-loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  flex-grow: 1;
}

.record-pg-err-banner {
  justify-content: center;
  background-color: #f8d7da;
  color: #721c24;
}

#record-pg-wrapper {
  padding: 3rem;
  max-width: 1200px;
  width: 100%;
}

.record-pg-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.record-pg-content-header h1 {
  align-self: center;
  margin-top: 2rem;
  font-size: 2.2rem;
  font-family: "Lato", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #535353;
  font-weight: 600;
  margin: 0;
}
.record-pg-content-header span:first-child {
  color: #0045a6;
}
.record-pg-content-header span:nth-child(2) {
  color: #535353;
}
.record-pg-content-header a {
  text-align: center;
  background-color: #0045a6;
  color: #f9f9f9;
  text-decoration: none;
  padding: 0.5rem 0.7rem;
  border-radius: 0.3rem;
}

.record-pg-heading h3 {
  color: #535353;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  margin-right: 0.2rem;
}

.record-pg-heading-row {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

#record-pg-heading-record-type {
  display: flex;
}

#record-pg-heading-date-created {
  color: #818181;
  font-style: italic;
}

#record-pg-heading-contributors {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
}

.record-pg-content-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 2rem;
}

.record-pg-content-body-intro-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.record-pg-content-body-intro-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.record-pg-content-body-intro-content h2 {
  color: #0045a6;
  margin-bottom: 0.7rem;
}

.record-pg-content-body-intro-content-row {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
}
.record-pg-content-body-intro-content-row p {
  text-align: left;
  font-size: 1rem;
  text-align: left;
  width: 50%;
  margin-bottom: 0.2rem;
  line-height: 250%;
  font-family: "Lato", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.record-pg-media-presentation {
  margin-top: 0.8rem;
  border-radius: 0.75rem;
  align-self: flex-start;
  position: sticky;
  top: 0;
  left: 0;
  width: 45%;
  margin-right: 5%;
}
.record-pg-media-presentation .main-media-file {
  display: flex;
  width: 100%;
  aspect-ratio: 3/2;
}
.record-pg-media-presentation .main-media-file .media-file-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.record-pg-media-presentation .main-media-file .media-loading-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.record-pg-media-presentation .main-media-file img,
.record-pg-media-presentation .main-media-file video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.25rem;
  margin: 0;
}
.record-pg-media-presentation .swiper-button-prev,
.record-pg-media-presentation .swiper-button-next {
  top: 0;
  margin: 0;
  display: flex;
  align-items: center;
  height: 100%;
  color: white;
  width: 2rem;
  padding: 0 0.5rem;
  background-color: #858585;
}
.record-pg-media-presentation .swiper-button-prev::after,
.record-pg-media-presentation .swiper-button-next::after {
  font-size: 1.3rem;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.record-pg-media-presentation .swiper-button-prev {
  left: 0;
}
.record-pg-media-presentation .swiper-button-next {
  right: 0;
}

.record-pg-media-carousel {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: 0.3rem;
  width: 100%;
  height: 4rem;
  background-color: rgba(0, 0, 0, 0.459);
}
.record-pg-media-carousel .swiper-wrapper {
  padding: 5px 0;
  height: calc(100% - 10px) !important;
}
.record-pg-media-carousel video,
.record-pg-media-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0.5rem;
}

.record-pg-caro-media-item {
  cursor: pointer;
  position: relative;
  width: 5rem !important;
  height: 4rem;
  border-radius: 1rem;
  margin: 0 5px;
}
.record-pg-caro-media-item:first-child {
  margin-left: 10px;
}
.record-pg-caro-media-item:last-child {
  margin-right: 10px;
}
.record-pg-caro-media-item.active-media::after {
  border-radius: 0.5rem;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  border: 1px solid #f9f9f9;
  background-color: rgba(0, 0, 0, 0.558);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.record-pg-media-caption {
  color: #535353;
}

.record-pg-content-event-dates {
  display: flex;
  justify-content: space-between;
}

.record-pg-date-item {
  font-style: italic;
  color: #818181;
  font-size: 0.85rem;
}

.record-pg-data-row {
  margin-top: 1rem;
}
.record-pg-data-row h4 {
  color: #535353;
  font-size: 1.2rem;
  font-family: "Lato", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
}

.record-pg-content-list-item {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
}
.record-pg-content-list-item h4 {
  font-size: 1rem;
  margin: 0;
  margin-right: 0.3rem;
}

.record-pg-content-body-data-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.record-pg-content-body-data-container > .record-pg-data-row {
  min-width: 50%;
}

.landmark-data-container .record-pg-data-row > h4 {
  font-size: 1rem;
}
.landmark-data-container .record-pg-data-row {
  margin: 0;
}
.landmark-data-container ul {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.landmark-data-container .record-pg-data-row-body {
  font-size: 0.9rem;
}
.landmark-data-container .record-pg-data-row-body h4 {
  font-size: 0.9rem;
}
.landmark-data-container .record-pg-content-list-item {
  margin-bottom: 0.5rem;
}

.refugees-and-idps-container .record-pg-content-list-item {
  flex-wrap: wrap;
  align-items: center;
}

.refugees-and-idps-host-country h4 {
  font-size: 1rem;
}
.refugees-and-idps-host-country .record-pg-content-list-item {
  margin-bottom: 0.3rem;
}

.international-pg-permission-granted {
  display: flex;
  align-items: center;
}
.international-pg-permission-granted .record-pg-date-item {
  font-style: normal;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: #535353;
  line-height: 1.4rem;
}

.categories-pg {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 3.5rem);
  width: 100%;
}

.categories-pg-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 4rem;
}

.categories-pg-category-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  margin: 1rem 1.5%;
  min-width: 350px;
}
.categories-pg-category-list .categories-pg-contribute-link {
  border-top: 1px solid #e7e7e7;
  display: flex;
  width: 100%;
  background-color: white;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  box-shadow: 0rem 0.5rem 0.5rem rgba(0, 0, 0, 0.03);
}
.categories-pg-category-list .categories-pg-contribute-link a {
  font-size: 1rem;
  text-decoration: none;
}
.categories-pg-category-list .recent-list-header {
  display: flex;
  justify-content: center;
}
.categories-pg-category-list .recent-list-banner {
  overflow: auto;
  max-height: calc(calc(100vh - 3.5rem) / 2);
  justify-content: unset;
}

@media (max-width: 992px) {
  .record-form-pg-wrapper {
    flex-direction: column;
  }

  .record-form-pg-boxes {
    width: 100%;
  }

  .record-form-pg-form {
    width: 100%;
  }

  .record-form-box-container .record-form-box-body {
    padding: 1.4rem 5%;
  }

  .record-form-similar-records .record-form-box-body {
    padding: 0;
  }

  .record-form-record-item {
    padding: 1rem 4%;
  }

  .home-page-banner-header h1:first-child {
    font-size: 150%;
    margin-bottom: 1rem;
  }
  .home-page-banner-header h1:nth-child(2) {
    font-size: 300%;
  }

  .home-page-banner-summary {
    font-size: 150%;
    line-height: 220%;
    height: 100%;
    padding-bottom: 3rem;
  }

  .record-pg-content-body-intro-content-row {
    flex-direction: column;
    justify-content: start;
    align-items: stretch;
  }
  .record-pg-content-body-intro-content-row p {
    width: 100%;
    margin-bottom: 0.2rem;
  }

  .record-pg-media-presentation {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    align-self: center;
    width: 100%;
    margin-right: 0;
  }

  .record-pg-media-carousel {
    width: calc(100vw - 6rem);
  }

  .record-pg-content-body-data-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .record-pg-content-body-data-container > .record-pg-data-row {
    min-width: 100%;
  }
}
@media (max-width: 768px) {
  #footer-container {
    flex-direction: column;
    align-items: center;
    justify-content: start;
  }

  .footer-columns-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-column-container {
    margin-right: 0%;
    text-align: center;
    margin-bottom: 2rem;
  }

  .footer-column-link-container {
    align-items: center;
  }

  #navbar {
    justify-content: space-between;
    padding: 0 1.2rem;
  }

  #navbar-toggler-btn {
    border-radius: 0.4rem;
    font-size: 1.3rem;
    height: 2rem;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid #818181;
    color: #535353;
    margin: 0;
    margin-left: 0.6rem;
  }

  .navbar-links-container {
    position: absolute;
    top: 3.5rem;
    left: 0;
    width: 100%;
    flex-direction: column;
    z-index: 10;
    box-shadow: -2px 1px 1px rgba(0, 0, 0, 0.21);
    overflow: hidden;
    transition: 0.3s all ease-out;
    max-height: 0px;
  }

  .navbar-links-container.show {
    padding: 2rem 0;
    padding-top: 0.5rem;
    max-height: 15rem;
  }

  .navbar-links {
    width: 100%;
    flex-direction: column;
  }
  .navbar-links a {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .dashboard-action-cards {
    flex-direction: column;
    justify-content: start;
    align-items: center;
    flex-wrap: nowrap;
  }
  .dashboard-action-cards .action-card {
    width: 100%;
  }

  .dashboard-popup-modal {
    width: 70vw;
  }

  #dashboard-user-search {
    width: 100%;
  }

  .dashboard-request-card-content {
    flex-direction: column;
  }

  .dashboard-request-card-general-info {
    width: 100%;
  }

  .dashboard-request-card-purpose-container {
    width: 100%;
  }
  .dashboard-request-card-purpose-container .purpose-expand-btn {
    justify-content: center;
  }

  .dashboard-request-card-footer {
    justify-content: center;
    padding-bottom: 1rem;
  }

  #about-pg-explore-header {
    justify-content: center;
  }

  .home-page-banner-content {
    padding-bottom: 0;
    padding-right: 4%;
    padding-left: 4%;
  }

  .home-page-banner-header h1:first-child {
    font-size: 125%;
  }
  .home-page-banner-header h1:nth-child(2) {
    font-size: 220%;
  }

  .home-page-banner-summary {
    font-size: 125%;
    line-height: 250%;
    height: 70vh;
  }

  .home-page-banner-action-cards {
    justify-content: space-between;
    margin-bottom: 4rem;
  }
  .home-page-banner-action-cards .action-card {
    height: 220px;
    min-width: 220px;
  }

  .home-page-banner-continue-tab {
    font-size: 100%;
    margin-bottom: 6rem;
  }

  .categories-pg-category-list {
    width: 100%;
    margin: 1rem 5%;
  }
}
@media (max-width: 575px) {
  .dashboard-user-column.Name {
    flex-grow: 1;
  }
  .dashboard-user-column.Name .user-list-row-item {
    justify-content: start;
  }

  .dashboard-popup-modal {
    width: 90vw;
  }

  .dashboard-review-requests-types {
    font-size: 0.95rem;
  }

  .dashboard-request-card-action-btns {
    width: 100%;
  }
  .dashboard-request-card-action-btns button {
    width: 100%;
    font-size: 0.85rem;
  }

  .dashboard-request-card-header {
    padding: 1rem 1rem;
    font-size: 1rem;
  }

  .dashboard-all-contributions-back-btn {
    align-self: center;
  }

  #about-pg-contributors-container {
    padding: 2.5rem 0;
  }
  #about-pg-contributors-container h3 {
    font-size: 2rem;
  }

  #about-pg-contributors .contributor-card {
    flex-direction: column;
  }
  #about-pg-contributors .contributor-card-name {
    font-size: 1rem;
  }
  #about-pg-contributors .contributor-card-title {
    font-size: 0.8rem;
  }

  #about-pg-explore-more .explore-card-container {
    width: 100%;
    min-width: unset;
  }

  #about-pg-about-img {
    height: 15rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .search-page-header {
    font-size: 1.5rem;
  }
  .search-page-header h1 {
    font-size: 1.8rem;
  }

  .search-page-query-container {
    align-items: center;
  }
  .search-page-query-container #advanced-search-btn {
    padding: 0.2rem 0.5rem;
    font-size: 0.9rem;
    min-height: 2.5rem;
  }

  .search-page-advanced-search-container {
    padding: 5%;
  }
  .search-page-advanced-search-container h3 {
    font-size: 1rem;
  }
  .search-page-advanced-search-container h4 {
    font-size: 0.85rem;
  }

  .search-page-media-query {
    flex-direction: column;
    align-items: start;
    margin-bottom: 1rem;
  }
  .search-page-media-query h4 {
    margin-bottom: 0.5rem;
  }
  .search-page-media-query .form-inputs {
    margin: 0;
  }

  .search-page-dates-header button {
    font-size: 0.9rem;
  }

  .search-page-date-rows {
    flex-direction: column;
    align-items: start;
  }
  .search-page-date-rows .form-inputs {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .search-page-date-rows .form-inputs label {
    font-size: 1rem;
    color: #727272;
    font-weight: 600;
  }
  .search-page-date-rows .form-inputs input {
    min-height: 2.25rem;
  }
  .search-page-date-rows .delete-date-query {
    width: 100%;
  }

  .home-page-banner-content {
    padding-top: 12rem;
    padding-bottom: 0;
    padding-right: 4%;
    padding-left: 4%;
  }

  .home-page-banner-header {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  .home-page-banner-header h1:first-child {
    font-size: 120%;
    margin-bottom: 1rem;
  }
  .home-page-banner-header h1:nth-child(2) {
    font-size: 240%;
  }

  .home-page-banner-summary {
    font-size: 120%;
    line-height: 250%;
    height: 100%;
    padding-bottom: 3rem;
  }

  .home-page-banner-action-cards {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
  }
  .home-page-banner-action-cards .action-card {
    height: 220px;
    width: 100%;
  }

  .home-page-banner-continue-tab {
    font-size: 100%;
  }

  #record-pg-wrapper {
    font-size: 0.9rem;
    padding: 3rem calc(3rem / 2);
  }

  .record-pg-content-header {
    flex-direction: column;
    justify-content: start;
    align-items: stretch;
  }
  .record-pg-content-header h1 {
    width: 100%;
    text-align: start;
    font-size: 1.5rem;
  }
  .record-pg-content-header a {
    margin-top: 1.5rem;
    font-size: 0.85rem;
  }

  .record-pg-heading h3 {
    font-size: 1rem;
  }

  #record-pg-heading-record-type {
    display: flex;
    align-items: center;
  }
  #record-pg-heading-record-type h3 {
    margin-bottom: 0;
  }

  .record-pg-heading-row {
    flex-direction: column;
    justify-content: start;
    align-items: stretch;
  }

  #record-pg-heading-date-created {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
  }

  .record-pg-date-item {
    font-size: 0.8rem;
  }

  .record-pg-content-body-intro-content h2 {
    font-size: 1.3rem;
  }

  .record-pg-content-body-intro-content-row {
    margin-top: 0rem;
  }

  .record-pg-media-carousel {
    width: calc(100vw - 3rem);
  }

  .recent-list-row-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .recent-list-date-submitted {
    flex-direction: row;
    margin-top: 0.6rem;
    align-self: center;
  }
  .recent-list-date-submitted div:first-child {
    margin-right: 0.15rem;
  }

  .categories-pg-category-list {
    margin: 1rem 3%;
    min-width: 300px;
  }
}
body, html {
  margin: 0;
  min-height: 600px;
  background-color: #f9f9f9 !important;
  scroll-behavior: unset !important;
}

body {
  overflow: overlay;
}

#root {
  position: relative;
  overflow-x: hidden;
}

/*# sourceMappingURL=main.css.map */
