@charset "UTF-8";
@import url(https://db.onlinewebfonts.com/c/2a5b357162e6d1714ce51efa47d5f5fa?family=Bliss);
* {
  box-sizing: border-box;
}

body {
  font: 16px Arial;
}

/*the container must be positioned relative:*/
.autocomplete {
  position: relative;
  display: inline-block;
}

input {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 10px;
  font-size: 16px;
}

input[type=text] {
  background-color: #f1f1f1;
  width: 100%;
}

input[type=submit] {
  background-color: DodgerBlue;
  color: #fff;
  cursor: pointer;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
  overflow-y: scroll;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9;
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.55em;
  width: 1.55em;
  background-color: none;
  border-radius: 50%;
  border: 2px solid black;
  background-image: url("/icons/tick.svg");
}
.checkmark.x:after {
  transform: rotate(0deg) !important;
  top: 1px !important;
  width: 18px;
  content: "❌";
  font-size: 28px;
  border: none !important;
  color: #000;
  text-align: center;
  content: "×";
  font-weight: 600;
}

.checkbox-container.id-docs {
  height: 1.55em;
  width: 16px;
  margin: 0;
  padding: 0;
  cursor: auto;
}
.checkbox-container.id-docs .checkmark {
  transition: 0.5s;
}
.checkbox-container.id-docs .checkmark.id-docs {
  border: none;
}
.checkbox-container.id-docs .checkmark.id-docs:after {
  left: 0;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #dddedf;
}

/* When the checkbox is checked, add a green background */
.checkbox-container input:checked ~ .checkmark {
  background-color: #4fb239;
  border-color: #4fb239;
}
.checkbox-container input:checked ~ .checkmark:after {
  left: 11px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: unset;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 11px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid black;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .checkbox-container .checkmark::after {
    left: 11px;
    top: 6px;
    width: 9px !important;
    height: 15px !important;
    border: solid black;
    border-width: 0 4px 4px 0;
    transform: rotate(45deg);
  }
}
/**************************\
  Basic Modal Styles
\**************************/
.modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.modal[aria-hidden=true] {
  display: none;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  max-width: 500px;
  max-height: 80vh;
  border-radius: 1em;
  overflow-y: auto;
  box-sizing: border-box;
  width: 90vw;
  overflow-x: hidden;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #1a1a1a;
  box-sizing: border-box;
  border: 0;
  font-family: sans-serif;
  letter-spacing: -0.4px;
}

.modal__close {
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #878787;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25em;
  height: 2.25em;
}
.modal__close:focus, .modal__close:hover {
  background: #dddedf;
  border-color: black;
}
.modal__close:active {
  filter: invert(1);
  background: white;
  border-color: white;
}
.modal__close img {
  width: 1em;
  height: 1em;
}

.modal__content {
  margin: 1em 0;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease-out;
}

.modal__btn:focus,
.modal__btn:hover {
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
    Demo Animation Style
  \**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

@media only screen and (min-width: 960px) {
  .modal__container {
    background-color: #fff;
    padding: 30px;
    max-width: 500px;
    max-height: 70vh;
    border-radius: 1em;
    overflow-y: auto;
    box-sizing: border-box;
    width: 50vw;
    max-width: 50em;
  }
}
.navbar {
  background-color: #111;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  max-width: 100%;
  height: auto;
}

.logo img {
  height: 40px;
  /* Adjust as necessary */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  font-size: 17px;
  font-weight: 700;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  color: white;
  text-decoration: none;
  height: full;
}

.nav-links li:last-child {
  position: relative;
}

.nav-links li:last-child::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: white;
}

.nav-links a:hover {
  border-bottom: 2px solid #1d609d;
  padding-bottom: 5px;
}

.footer {
  background: #ced1dc;
  border-top: 0.1rem solid #a0a5b4;
  font-size: 16px;
  color: #1d1d1b;
  margin-top: 10px;
  padding: 1.5rem 2rem;
}

.footer__wrapper {
  padding: 0 3.2rem;
}

.footer-contents {
  display: grid;
  grid-template-columns: auto 2fr auto;
  justify-content: space-between;
  align-items: center;
}

.footer-rights {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.footer-links a {
  text-decoration: none;
  font-weight: 700;
  color: #1d1d1b;
  text-align: center;
}

.footer-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  transition: 0.4s;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    background-color: #111;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 10;
  }
  .nav-links.active {
    display: flex;
    padding-bottom: 1rem;
  }
  .nav-links a {
    padding: 10px 20px;
    width: 100%;
    text-align: left;
  }
  .hamburger {
    display: flex;
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 1145px) {
  .footer-contents {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    justify-content: center;
  }
  .footer-rights {
    justify-content: center;
  }
}
@media (max-width: 960px) {
  .navbar {
    flex-direction: row;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    background-color: #111;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 10;
  }
  .nav-links.active {
    display: flex;
    padding-bottom: 1rem;
  }
  .nav-links a {
    padding: 15px 20px;
    width: 100%;
    text-align: left;
  }
  .hamburger {
    display: flex;
    justify-content: flex-start;
  }
}
.body-cont {
  max-width: 100%;
  width: 90%;
  margin: 1.6rem auto;
}

.logo-container {
  max-width: 1280px;
  height: auto;
}

.ai-logo {
  height: 150px;
  margin-left: 5.5rem;
}

.ai-body {
  margin: 2rem 5%;
  font-family: Arial, Helvetica, sans-serif;
}

.ai-heading {
  font-size: 2rem;
  font-weight: 900;
  color: #1D609D;
  margin: 25px 0;
}

h2 {
  margin: 15px 0;
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
  margin: 1rem 0;
}

p {
  margin-top: 18px;
  font-size: 1rem;
}

ul {
  margin-left: 2rem;
}
ul li {
  padding: 5px 0;
}

.uses-card {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  margin: 0 auto;
  height: auto;
  gap: 10px;
}
.uses-card > section {
  flex: 1;
  max-width: 45%;
}

.accepted {
  background-color: #cff9fd;
  padding: 0.5rem 0.5rem;
  border-radius: 10px;
}

.final {
  margin-top: 2rem;
}

.unaccepted {
  background-color: #fcd2ff;
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
}

.list {
  list-style-type: "📝";
  margin: 10px 2rem;
}
.list li {
  padding: 5px 10px;
  margin: 10px;
}
.list li span {
  margin-right: 10px;
}

@media (min-width: 768px) {
  .ai-heading {
    font-size: 4rem;
  }
  .uses-card {
    flex-wrap: wrap;
    flex-grow: 1;
  }
  h2 {
    font-size: 2.1rem;
  }
  h3 {
    font-size: 1.7rem;
  }
  p {
    font-size: 1.1rem;
  }
}
@media (max-width: 1024px) {
  .body-cont {
    width: 80%;
  }
  .ai-body {
    margin: 2rem 10%;
  }
  .ai-heading {
    font-size: 5rem;
  }
  .uses-card {
    flex-direction: column;
  }
  .uses-card > section {
    flex: 1;
    max-width: 100%;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.8rem;
  }
  p {
    font-size: 1.2rem;
  }
}
@media (max-width: 600px) {
  .body-cont {
    width: 100%;
    padding: 1rem;
  }
  .ai-body {
    margin: 1rem 5%;
  }
  .ai-heading {
    font-size: 3rem;
  }
  .uses-card {
    flex-direction: column;
  }
  .uses-card > section {
    flex: 1;
    max-width: 100%;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.2rem;
  }
  p {
    font-size: 1rem;
  }
}
* {
  margin: 0;
  padding: 0;
  scrollbar-width: auto;
  scrollbar-color: #2a363b #ffffff;
  line-height: calc(0.2rem + 2ex + 0.2rem);
  font-family: "Bliss", sans-serif;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

/* The container */
.checkbox-container {
  display: inline-flex;
  position: relative;
  padding-left: 35px;
  margin-bottom: 1.4em;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.sticky-message {
  display: inline;
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
}

.sticky-message-container {
  width: 100%;
  text-align: center;
  margin: 1em 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  top: 0;
  background: white;
  padding: 0.5em 0;
  border-bottom: 1px solid;
  z-index: 0;
  transition: 0.5s;
}

.touch-header {
  display: block;
  position: absolute;
  width: 100%;
}
.touch-header .logo {
  margin: 0.5em 0;
  height: 2.5em;
}

.nav-bar-large {
  display: none;
}

.nav-bar-small {
  display: block;
}

.color-1:before {
  background: #df5169;
}

.cell1 {
  background: #df5169;
}

.color-2:before {
  background: rgb(102, 196, 78);
}

.cell2 {
  background: rgb(102, 196, 78);
}

.color-3:before {
  background: #f19a28;
}

.cell3 {
  background: #f19a28;
}

.color-4:before {
  background: #5593e4;
}

.cell4 {
  background: #5593e4;
}

#documentationChecklist.complete {
  color: #2a363b !important;
}
#documentationChecklist.complete a {
  color: #2a363b;
  text-decoration-color: #2a363b;
}

.complete {
  background: #4fb239 !important;
  border-color: #4fb239;
}
.complete h2,
.complete h3,
.complete h4 {
  color: #2a363b;
  border-color: #2a363b;
}
.complete p {
  color: #2a363b !important;
}
.complete p a {
  color: #2a363b;
  text-decoration-color: white;
}
.complete p a:hover {
  color: #dddedf;
}
.complete .tick-counter #currentCount {
  font-size: 25px;
}
.complete .tick-counter p {
  font-size: 25px;
}
.complete .checklist-container .checklist-item {
  border-color: white;
}
.complete .sticky-message-container {
  background: #4fb239;
  color: #2a363b;
}
.complete .accordion__control::before {
  border-color: white;
}
.complete .checkmark:after {
  border-color: #2a363b !important;
}
.complete .x:after {
  color: #2a363b !important;
}

.checklist {
  max-width: 930px;
  padding: 0.25em 1em 1em;
  margin: 0 auto 1em;
  box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.0784313725);
  background: white;
  border-radius: 0;
  transition: 0.5s;
}

.top-container {
  display: block;
  background: #dddedf;
  background: #272b3e;
  background: #d5d9df;
  padding: 1.5rem;
  border-radius: 1rem;
  flex-direction: column;
}
.top-container h2, .top-container h3, .top-container h4 {
  margin-top: 15px;
}

.documentation-label {
  margin: 0.75em 0 0.25em !important;
  display: block;
  font-weight: bold;
}

span[role=combobox] {
  height: 3em !important;
  padding: 0.75em 0.25em !important;
  display: flex !important;
  align-items: center !important;
  justify-content: left !important;
  vertical-align: middle !important;
  border-radius: 0.5em !important;
  border: 2px solid #b9b9b9 !important;
}

@media only screen and (min-width: 960px) {
  .tick-counter {
    display: flex;
    justify-content: center;
  }
  .tick-counter p {
    font-size: 25px;
    margin-right: 0.5rem;
    font-weight: bold;
  }
  .sticky-message-container {
    font-size: 1.15em;
  }
  .sticky-message-container #currentCount {
    font-size: 25px;
  }
  .page-index-container {
    display: table;
  }
  .top-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .checklist {
    margin: 0 1em;
    padding: 0.75em 2.5em 1em;
    border-radius: 2em;
    width: 100%;
    max-width: 930px;
  }
  .checklist-container .checklist-item {
    width: 31% !important;
    margin: 1%;
  }
}
@media only screen and (max-width: 960px), (max-width: 720px), (max-width: 540px) {
  .sticky-message-container {
    flex-direction: column;
  }
  .sticky-message-container .tick-counter {
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: bold;
  }
  .sticky-message-container .sticky-message {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 960px) {
  .body-text-container {
    width: -moz-fit-content;
    width: fit-content;
    display: grid;
    place-items: center;
    justify-content: center;
  }
  .select2-container .select2-selection--single .select2-selection__rendered {
    width: 750px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media only screen and (max-width: 720px) {
  section h2, section h3:first-child {
    margin-top: 24px;
  }
  .select2-container .select2-selection--single .select2-selection__rendered {
    width: 650px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media only screen and (max-width: 540px) {
  .id-icons-container {
    margin: 0 auto;
  }
  .checklist-container .checklist-item {
    margin: 1%;
  }
  .body-text-container {
    margin: 0 20px;
  }
  .select2-selection__rendered {
    font-size: 1rem;
  }
  .footer-links {
    font-size: 15px;
    flex-direction: column;
  }
  .footer_links_separator {
    display: none;
  }
  .select2-container .select2-selection--single .select2-selection__rendered {
    width: 557px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media only screen and (max-width: 390px) {
  .mainArticle {
    font-size: 10px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .top-container {
    padding: 0;
  }
  .checklist {
    width: screen;
  }
  .footer-links {
    font-size: smaller;
    flex-direction: column;
  }
  .footer_links_separator {
    display: none;
  }
  .id-icons-container .id-icon {
    flex-direction: column;
    align-items: center;
  }
}
#CybotCookiebotDialog {
  border: none !important;
  transform-origin: unset !important;
  padding-bottom: 0 !important;
  font-size: 1rem;
}

#CybotCookiebotDialogBodyContentTitle {
  border: none !important;
  font-family: "Blinker", sans-serif !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  font-weight: 600 !important;
  font-size: 1.8em !important;
  line-height: 1.25 !important;
  color: #00449e !important;
}

#CybotCookiebotDialogBodyButtons {
  margin: 0 12px 12px 6px !important;
}

#CybotCookiebotDialogBodyContentText {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 1rem;
}

.CybotCookiebotDialogBodyButton {
  padding: 0.25em 1em !important;
  width: auto !important;
  font-size: 0.9rem !important;
  display: flow-root;
  margin: 0 0.5em !important;
  line-height: 2em !important;
}

.CybotCookiebotDialogBodyButton:hover {
  background: #bbbbbb !important;
}

#CybotCookiebotDialogBodyButtonDecline {
  margin-bottom: 0.5em !important;
}

.id-icons-container {
  display: none;
  justify-content: space-between;
  padding: 0;
  gap: 0;
  max-width: 400px;
  font-size: 0.9em;
  margin: 0 auto;
}
.id-icons-container .id-icon {
  display: flex;
  justify-content: start;
  align-items: center;
  padding-right: 6px;
  gap: 8px;
}
.id-icons-container .id-icon span {
  width: -moz-max-content;
  width: max-content;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 14px !important;
}

.expiry-message {
  justify-content: center;
  padding: 10px 10px;
}
.expiry-message img {
  margin-left: 10px;
}/*# sourceMappingURL=style.css.map */