@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap");
:root {
  --color-bg: #EEEDEB;
  --color-title: #0E1C4E;
  --color-summary-1: #FFF6EE;
  --color-summary-1-highlight: #FFC48B;
  --color-summary-2: #FAFAFF;
  --color-summary-2-highlight: #B4B3FF;
  --color-summary-3: #FFF0F3;
  --color-summary-3-highlight: #FFB3C0;
  --font-ibm-plex-sans: 'IBM Plex Sans', sans-serif;
}

#accordian-card {
  background: white;
  padding: 38px 36px;
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 4px;
  -webkit-box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  max-width: 100em;
  width: 100%;
}

#accordian-card h1 {
  font-family: var(--font-ibm-plex-sans);
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-title);
  margin-bottom: 20px;
}

#accordian-card details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
  border-left: 15px solid gray;
  padding: 15px;
}

#accordian-card details {
  margin-top: 15px;
}

#accordian-card details.warning {
  --highlight: var(--color-summary-1-highlight) ;
  background: var(--color-summary-1);
  border-left-color: var(--color-summary-1-highlight);
}

#accordian-card details.warning p {
  list-style-type: job-warning;
}

#accordian-card details.info {
  --highlight: var(--color-summary-2-highlight) ;
  background: var(--color-summary-2);
  border-left-color: var(--color-summary-2-highlight);
}

#accordian-card details.info p {
  list-style-type: job-info;
}

#accordian-card details.alert {
  --highlight: var(--color-summary-3-highlight) ;
  background: var(--color-summary-3);
  border-left-color: var(--highlight);
}

#accordian-card details.alert p {
  list-style-type: job-alert;
}

#accordian-card details summary, #accordian-card details p {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-family: var(--font-ibm-plex-sans);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  color: var(--color-title);
  padding: 20px;
  cursor: pointer;
}

#accordian-card details summary::-webkit-details-marker, #accordian-card details p::-webkit-details-marker {
  display: none;
}

#accordian-card details summary:focus, #accordian-card details p:focus {
  outline: solid 3px var(--highlight);
}

#accordian-card details summary::-moz-selection, #accordian-card details p::-moz-selection {
  background-color: var(--highlight);
}

#accordian-card details summary::selection, #accordian-card details p::selection {
  background-color: var(--highlight);
}

#accordian-card details p {
  display: list-item;
  cursor: default;
  margin-left: 3rem;
  list-style-type: job;
}

#accordian-card details summary::before {
  cursor: pointer;
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  left: 0rem;
  margin-right: .5rem;
  content: url("data:image/svg+xml,%3Csvg width='100%' height='100%' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.6066 12H1.3934' stroke='%23202842' stroke-width='1.875' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 1.39343V22.6066' stroke='%23202842' stroke-width='1.875' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

#accordian-card details[open] summary {
  font-weight: 700;
}

#accordian-card details[open] summary::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  content: url("data:image/svg+xml,%3Csvg width='100%' height='100%' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.6066 12H1.3934' stroke='%23202842' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 1.39343V22.6066' stroke='%23202842' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

@counter-style job-warning {
  system: cyclic;
  symbols: 🧬 🧬 🧬 🧬;
  suffix: " ";
}

@counter-style job-info {
  system: cyclic;
  symbols: 🧬;
  suffix: " ";
}

@counter-style job-alert {
  system: cyclic;
  symbols: 🧬 🧬 🧬 🧬 🧬;
  suffix: " ";
}
/*# sourceMappingURL=accordian.css.map */