.storybook-button {
  font-family: var(--font-family-lato);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-900);
  border: 0;
  border-radius: 0.375em;
  position: relative;
  cursor: pointer;
  display: inline-block;
  line-height: 1rem;
}

.storybook-button.btn-loading {
  pointer-events: none;
}

.storybook-button[disabled] {
  cursor: default;
}

.storybook-button--default {
  color: white;
  background-color: var(--red);
  border: 1px solid var(--red);
}
.storybook-button--default:hover {
  background-color: var(--button-default-hover);
}
.storybook-button--default:active {
  background-color: var(--button-default-active);
}

.storybook-button--basic {
  color: var(--red);
  background-color: var(--white-pure);
  border: 1px solid var(--grey-light);
}
.storybook-button--basic:hover {
  color: var(--white-pure);
  background-color: var(--red);
  border-color: var(--red)
}
.storybook-button--basic:active {
  background-color: var(--button-default-active);
  color: var(--white-pure);
}

.storybook-button--with-icon {
  color: var(--grey-darker);
  background-color: var(--grey-lighter);
}
.storybook-button--with-icon:hover {
  background-color: #4d54e6;
}
.storybook-button--with-icon:active {
  background-color: #1921b3;
}

.storybook-button--secondary {
  color: var(--grey-darker);
  background-color: var(--grey-btn);
  border: 1px solid var(--grey-btn);
}

.storybook-button--secondary:hover {
  color: var(--grey-btn);
  background-color: var(--grey-darker);
  border: 1px solid var(--grey-darker);
}

.storybook-button--tiny {
  font-size: var(--font-size-11);
  padding: 3px 9px;
  border-radius: 0.25em;
}
.storybook-button--small {
  font-size: var(--font-size-12);
  padding: 4px 20px 5px 20px;
}
.storybook-button--medium {
  font-size: var(--font-size-14);
  padding: 10px 20px;
}
.storybook-button--large {
  font-size: var(--font-size-16);
  padding: 12px 24px;
}

.storybook-button:disabled {
  background-color: var(--button-bg-disabled);
  border-color: var(--button-bg-disabled);
  color: var(--button-color-disabled);
}

.storybook-button--loading {
  height: 0.65em !important;
}

.storybook-button.transparent {
  color: transparent;
}

.storybook-button .loading {
  animation: loading 1s steps(5) infinite;
  color: #fff;
  clip-path: inset(0 100% 0 0);
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 2px;
}

.storybook-button--basic .loading {
  color: var(--red);
}

.storybook-button--primary .loading {
  color: initial;
}

.storybook-button--secondary .loading {
  color: var(--grey-darker);
}

.storybook-button--secondary:hover .loading,
.storybook-button--basic:hover .loading {
  color: #fff;
}

@keyframes loading {to{clip-path: inset(0 -1ch 0 0)}}

@media (max-width:320px) {
  .storybook-button--tiny {
    font-size: var(--font-size-10);
    padding: 3px 9px;
    border-radius: 0.25em;
  }
  /* .storybook-button--small {
    font-size: var(--font-size-11);
    padding: 10px 16px;
  } */
  .storybook-button--medium {
    font-size: var(--font-size-12);
    padding: 7px 12px;
  }
  .storybook-button--large {
    font-size: var(--font-size-14);
    padding: 12px 24px;
  }
}
.storybook-modal::backdrop {
  background: #242831 0% 0% no-repeat padding-box;
  opacity: 0.95;
}

.storybook-modal {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  border: 0;
  border-radius: 4px;
  white-space: break-spaces;
}
/* 
.storybook-modal::before {
  content: '';
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  position: fixed;
  background-color: rgba(0,0,0,.6);
  z-index: 0;
} */

.storybook-modal--small {
  width: 220px !important;
  min-height: 268px;
}

.storybook-modal--medium {
  width: 573px;
}

.storybook-modal--large {
  min-height: 268px;
  width: 720px;
}

.storybook-modal--extra-large {
  box-sizing: border-box;
  max-width: 100%;
  width: 860px;
}

.storybook-modal--full {
  border-radius: 0;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  min-height: 100%;
  min-width: 100%;
  z-index: 99999;
}

.storybook-modal-header {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.storybook-modal-close {
  border: 0;
  background-color: transparent;
}

.storybook-modal-close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.storybook-modal-close svg {
  color: #00000099;
}

.storybook-modal-body {
  max-width: 80%;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-14);
  color: var(--grey-dark);
  line-height: 1.5em;
  margin: 0 auto;
  padding-bottom: 2em;
}
.storybook-modal-body p {
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-14);
  color: var(--grey-dark);
}

.storybook-modal .storybook-modal-title {
  font-size: var(--font-size-28);
  font-weight: var(--font-weight-bold);
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  color: var(--grey-darker);
  line-height: 2.13rem;
}

.storybook-modal-footer {
  display: flex;
  justify-content: center;
  padding-bottom: 2em;
}
.storybook-modal-footer button {
  margin: 0.5em;
}

.storybook-modal-icon-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.skeleton {
  opacity: 0.6;
  animation: skeleton-loading 2s linear infinite alternate;
  background-color: #e6e6e6;
  margin: 0.75rem;
  border-radius: 0.125rem;
  height: 1rem;
}

.skeleton.center {
  text-align: center;
  margin: 0 auto;
}

.skeleton.title {
  height: 1.75rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.skeleton.text {
  height: 0.75rem;
  margin-bottom: 0.75em;
  margin-top: 0.75rem;
}

.skeleton.text:last-child {
  margin-bottom: 0;
  /* width: 80%; */
}

.height-100 {
  height: 100%;
}

.height-50 {
  height: 50%;
}

.height-1x {
  height: 1rem;
}

.height-2x {
  height: 2em;
}

.height-line {
  height: 1px;
  color: transparent;
}

.width-100 {
  width: 97%;
}

.width-75 {
  width: 75%;
}

.width-40 {
  width: 40%;
}

.skeleton.profile-circle {
  border-radius: 50%;
  height: 50px;
  width: 50px;
  margin: 0 auto;
}

.skeleton.profile-rectangle {
  height: 100px;
  width: 100px;
  margin: 0 auto;
}

.skeleton.profile-rectangle--small {
  height: 60px;
  width: 60px;
  margin: 0 auto;
}

.skeleton.profile-circle--small {
  border-radius: 50%;
  height: 30px;
  width: 30px;
}

.skeleton.flexbox {
  display: flexbox;
}

.flex-direction-column {
  flex-direction: column;
}

.flex-direction-row {
  flex-direction: row;
}

.align-left {
  align-items: left;
}

.align-right {
  align-items: right;
}

.skeleton.flex-basis-100 {
  flex-basis: 98%;
}

.storybook-app-badge.flex-basis-15 {
  flex-basis: 15%;
}

.margin-1x {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.margin-2x {
  margin-top: 2rem;
}

.skeleton.margin-top-1x {
  margin-top: 1rem;
}

.skeleton.margin-top-2x {
  margin-top: 2rem;
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 70%);
  }

  100% {
    background-color: hsl(200, 20%, 95%);
  }
}

/* Overrides */
.skeleton-container .storybook-dashboard-message.align-left {
  align-items: left !important;
}

.storybook-list-item--with-dropdown {
  position: relative;
}

.storybook-list--dropdown {
  display: none;
}

.storybook-list--dropdown.open {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -60px;
  margin-top: 5px;
  /* border: 1px solid var(--grey-lighter); */
  background-color: var(--white-pure);
  box-shadow: 0 3px 6px var(--grey-lighter);
  border-radius: 8px;
  z-index: 9;
  max-width: 261px;
  padding: 0;
}

.storybook-list--dropdown li {
  display: block;
  overflow: hidden;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.storybook-list--dropdown.open li.storybook-list-item a {
  padding-top: 15px;
  padding-bottom: 15px;
  width: 100%;
  color: var(--grey-dark);
}
.storybook-list--dropdown.open .storybook-list-item a:hover,
.storybook-list--dropdown.open .storybook-list-item a.active {
  text-decoration: none;
  background-color: var(--red);
  color: var(--white-pure);
}

.storybook-list--dropdown.open li:first-child {
  border-radius: 8px 8px 0 0;
}

.storybook-list--dropdown.open li:last-child {
  border-radius: 0 0 8px 8px;
}

.storybook-list--dropdown:active {
  display: flex;
  flex-direction: column;
}

.storybook-list-item span.active > svg {
  text-decoration: none;
  color: var(--blue);
  fill: var(--blue);
}

/* Dropdown menu style */
/* ul.storybook-list--dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  display: none; 
  background-color: #fff; 
  border: 1px solid #ccc; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /
  z-index: 1; 
} */

/* ul.storybook-list--dropdown li {
  padding: 8px 16px;
  cursor: pointer;
} */

.storybook-list-item {
  list-style: none;
}

.storybook-list-item a.active,
.storybook-list-item span.active,
.storybook-list-item a:hover,
.storybook-list-item span:hover
{
  color: var(--blue);
}

.storybook-list-item span {
  display: flex;
  align-content: center;
  align-items: center;
  cursor: pointer;
}

.storybook-list--dropdown li.storybook-list-item__extra {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
}

li.storybook-list-item__extra .react-switch-handle {
  border: 1px solid var(--grey-lighter)!important;
  left: 0px;
  top: 1px!important;
}

.storybook-list-item__extra b {
  color: var(--grey-darker);
  font-size: var(--font-size-14);
  line-height: var(--line-spacing-18);
}

.storybook-list-item__extra p {
  font-size: var(--font-size-12);
  line-height: var(--line-spacing-20);
  margin: 0;
}

.storybook-menu-container {
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
  height: 77px;
}

.storybook-menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--grey-dark);
}

.storybook-menu,
.storybook-menu-container .storybook-list {
  list-style: none;
  padding: 0;
  margin: 0;
  height: inherit;
  display: flex;
  align-items: center;
  background-color: var(--white-pure);
  height: 100%;
}

.storybook-menu li,
.storybook-menu-container .storybook-list li {
  display: flex;
  margin: 0;
  padding: 0;
  height: 100%;
}

.storybook-menu li a,
.storybook-menu-container .storybook-list li a,
.storybook-menu-container .storybook-list li span,
.storybook-menu li span {
  text-decoration: none;
  color: var(--grey-dark);
  padding: 0px 20px;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px transparent;
  white-space: nowrap;
  font-size: 1em;
  height: 100%;
}

.storybook-menu-container
  > .storybook-list
  li.storybook-list-item--with-dropdown
  span {
  padding: 0px 15px 0px 20px;
}

.storybook-menu-container .storybook-list > li > a {
  position: relative;
}

.storybook-menu-container .storybook-list > li > span:after,
.storybook-menu-container .storybook-list > li > a:after {
  background-color: var(--red);
  border-radius: 5px;
  content: "";
  display: block;
  position: absolute;
  height: 0;
  left: 20px;
  right: 20px;
  bottom: 15px;
}

/* .storybook-menu li a.active,
.storybook-menu li a:hover, */
.storybook-menu-container .storybook-list li a.active,
.storybook-menu-container .storybook-list li a:hover,
.storybook-menu-container .storybook-list li span:hover,
.storybook-menu-container .storybook-list li span.active {
  color: var(--red);
}

.storybook-menu-container .storybook-list li a.active:after,
.storybook-menu-container .storybook-list li a:hover:after,
.storybook-menu-container .storybook-list li span:hover:after,
.storybook-menu-container .storybook-list li span.active:after {
  height: 4px;
}

.storybook-menu-container .storybook-list li span {
  cursor: pointer;
}

.storybook-menu li a:hover,
.storybook-menu-container .storybook-list li a:hover,
.storybook-menu-container .storybook-list li span:hover {
  background-color: #f4f4f4;
  color: var(--red);
  fill: var(--red);
}

.storybook-menu-container .storybook-list li span svg {
  margin-top: 5px;
  fill: inherit;
}

.storybook-menu-container .storybook-list li span.active svg {
  fill: var(--red);
}

/* Side Nav */

.storybook-sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: -100vw;
  background-color: var(--white-pure);
  transition: 0.5s;
  overflow-y: scroll;
  width: 0;
  left: -100vw;
}

.storybook-sidenav.open {
  width: 100vw;
  left: 0;
}

.storybook-sidenav header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 24px;
  margin: 18px 20px;
}
.storybook-sidenav-close {
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

button.storybook-sidenav-close svg,
.storybook-list-item--with-dropdown span svg {
  font-size: 1.3rem;
}
.storybook-sidenav header .storybook-logo {
  display: flex;
  justify-content: center;
  margin-right: unset;
}
.storybook-sidenav header img {
  max-height: 24px;
}

.storybook-sidenav .storybook-list {
  flex-direction: column;
}

.storybook-menu-container .storybook-sidenav .storybook-list li {
  height: auto;
  margin: 0;
}

.storybook-sidenav .storybook-list li a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

@media (max-width: 834px) {
  .storybook-menu li a,
  .storybook-menu-container .storybook-list li a,
  .storybook-menu-container .storybook-list li span,
  .storybook-menu li span {
    padding: 0px 15px;
  }
}
@media (max-width: 768px) {
  .storybook-menu li,
  .storybook-menu-container .storybook-list li {
    display: block;
    margin: 10px 0;
  }

  .storybook-menu,
  .storybook-menu-container > .storybook-list {
    display: none;
  }

  .storybook-menu-toggle {
    display: flex;
    align-items: center;
  }

  .storybook-menu-container[data-testid="profilemenu-container"]
    .storybook-menu-toggle {
    display: none;
  }

  .mobile-menu {
    right: 0;
  }
  /* Side nav */

  .storybook-menu-container
    .storybook-sidenav
    .storybook-list
    .storybook-list--dropdown
    li
    a {
    padding: 0px 65px;
  }

  .storybook-sidenav .storybook-list li,
  .storybook-sidenav .storybook-list li a {
    width: 100%;
    padding: 0 20px;
  }
  .storybook-sidenav .storybook-list li a,
  .storybook-sidenav .storybook-list li span {
    height: 60px;
    display: flex;
  }
  .storybook-sidenav .storybook-list li a,
  .storybook-sidenav .storybook-list li span {
    width: auto;
    padding-bottom: 0.45em;
    font-size: var(--font-size-16);
    padding-left: 45px;
    color: var(--grey-dark);
    min-height: 2rem;
  }
  .storybook-sidenav .storybook-list li a.active,
  .storybook-sidenav .storybook-list li a:hover,
  .storybook-sidenav .storybook-list li span:hover {
    text-decoration: none;
  }
  .storybook-sidenav .storybook-list li span {
    justify-content: flex-end;
  }

  .storybook-sidenav .storybook-list li span svg {
    margin-left: auto;
    padding-right: 2em;
  }
  .storybook-sidenav .storybook-list--dropdown.open {
    position: inherit;
    margin-left: unset;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    border-radius: 0%;
    top: 0;
    left: 0;
  }
  .storybook-sidenav .storybook-list--dropdown.open li {
    height: 60px;
    border-radius: 0%;
  }
  .storybook-sidenav .storybook-list--dropdown.open li a,
  .storybook-list--dropdown.open li a {
    padding-top: 0 !important;
    padding-left: 40px;
  }
  .storybook-list--dropdown.open,
  .storybook-list--dropdown.open li {
    padding: 0;
  }
  .storybook-list--dropdown.open .storybook-list-item a:hover {
    text-decoration: none;
    background-color: inherit;
    color: var(--red);
    background-color: #f4f4f4;
  }
}

@media screen and (max-height: 450px) {
  .storybook-sidenav {
    padding-top: 15px;
  }
  .storybook-sidenav a {
    font-size: 18px;
  }
}
@media screen and (max-width: 428px) {
  .storybook-sidenav .storybook-list li {
    padding: 0;
  }
}

.storybook-avatar {
  position: relative;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  flex-shrink: 0;
  align-items: center;
  align-self: center;

  font-family: var(--font-family-lato);
  color: var(--grey-darker);

  font-style: var(--font-style-normal);
  font-weight: var(--font-weight-regular);
  line-height: 1.8em;
  border: 1px solid var(--white-pure);
  border-radius: 50%;
  overflow: hidden;
  user-select: none;
  -moz-box-align: center;
  
  text-align: center;
  letter-spacing: 0.015em;
 
  background-color: var(--grey-btn);

  --avatar-size: 32px;
}

.storybook-avatar.active,
.storybook-avatar:hover {
  border-color:var(--red);
}

.storybook-avatar:hover {
  cursor: pointer;
}

.storybook-avatar--small {
  height: calc(var(--avatar-size)*0.8);
  width: calc(var(--avatar-size)*0.8);
  font-size: calc(var(--font-size-12)*0.8);
}

.storybook-avatar--medium {
  height: var(--avatar-size);
  width: var(--avatar-size);
  font-size: var(--font-size-12);
}

.storybook-avatar--large {
  height: calc(var(--avatar-size)*1.2);
  width: calc(var(--avatar-size)*1.2);
  font-size: calc(var(--font-size-12)*1.2);
}

.storybook-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.storybook-header {
  background-color: var(--white-pure);
  box-shadow: 0px 3px 6px var(--grey-lighter);
}

.storybook-header-inner {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  max-height: 77px;
}

.storybook-header--loggedout .storybook-icon-container {
  margin-left: auto;
}

.storybook-logo {
  margin-right: 60px;
}

.storybook-logo img {
  max-width: 68px;
}

.storybook-header button + button {
  margin-left: 10px;
}

.storybook-header .welcome {
  color: #333;
  font-size: 14px;
  margin-right: 10px;
}

.storybook-menu-container  {
  margin-right: auto;
}

/********************************** 
* Icon Container
**********************************/
.icon-help {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4LjI4MSIgaGVpZ2h0PSIxMy42ODkiIHZpZXdCb3g9IjExODUuODk5IDMyLjE1NSA4LjI4MSAxMy42ODkiPjxwYXRoIGQ9Ik0xMTkzLjE2NiAzMy4xN2MuNjc2LjY3NSAxLjAxNCAxLjUyIDEuMDE0IDIuNzAzIDAgLjg0NS0uMTY5IDEuNjktLjY3NiAyLjE5NyAwIC4xNy0uNTA3LjY3Ni0xLjUyMSAxLjUyMi0uMzM4LjMzOC0uNTA3LjUwNy0uNjc2Ljg0NS0uMTY5LjMzOC0uMzM4Ljg0NS0uMzM4IDEuMzUydi4zMzhoLTIuMDI4di0uMzM4YzAtLjY3Ni4xNjktMS4zNTIuMzM4LTEuNjkuMzM4LS41MDcgMS4wMTQtMS4zNTMgMi4xOTctMi4zNjdsLjMzOC0uNTA3Yy4zMzgtLjUwNy41MDctLjg0NS41MDctMS4zNTIgMC0uNjc2LS4xNjktMS4xODMtLjUwNy0xLjUyLS4zMzgtLjMzOS0xLjAxNC0uNTA4LTEuNjktLjUwOC0uNjc2IDAtMS4zNTIuMzM4LTEuNjkuODQ1LS4zMzguMzM4LS41MDcgMS4wMTQtLjUwNyAxLjg2aC0yLjAyOGMwLTEuMzUzLjMzOC0yLjM2NyAxLjE4My0zLjIxMi44NDUtLjg0NSAxLjg1OS0xLjE4MyAzLjIxLTEuMTgzIDEuMTg0IDAgMi4xOTguMzM4IDIuODc0IDEuMDE0bS0yLjE5NyAxMC4zMWMuMzM4LjE2OS4zMzguNTA3LjMzOCAxLjAxNCAwIC4zMzgtLjE2OS42NzYtLjMzOCAxLjAxNC0uMzM4LjE2OS0uNjc2LjMzOC0xLjAxNC4zMzgtLjMzOCAwLS42NzYtLjE3LTEuMDE0LS4zMzgtLjMzOC0uMzM4LS4zMzgtLjUwNy0uMzM4LTEuMDE0IDAtLjMzOC4xNjktLjY3Ni4zMzgtMS4wMTQuMTY5LS4xNy41MDctLjMzOCAxLjAxNC0uMzM4LjUwNy0uMTcuODQ1IDAgMS4wMTQuMzM4IiBmaWxsPSIjOTk5IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGRhdGEtbmFtZT0iUGF0aCA0NjQzIi8+PC9zdmc+) center no-repeat;
  display: block;
  height: 14px;
  width: 8px;
}

.theme-cold .icon-help {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDkgMTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNy4yNjcwMSAxLjAxNUM3Ljk0MzAxIDEuNjkgOC4yODEwNSAyLjUzNSA4LjI4MTA1IDMuNzE4QzguMjgxMDUgNC41NjMgOC4xMTIwMyA1LjQwOCA3LjYwNTAzIDUuOTE1QzcuNjA1MDMgNi4wODUgNy4wOTgwMyA2LjU5MSA2LjA4NDAzIDcuNDM3QzUuNzQ2MDMgNy43NzUgNS41NzcgNy45NDQgNS40MDggOC4yODJDNS4yMzkgOC42MiA1LjA2OTk5IDkuMTI3IDUuMDY5OTkgOS42MzRWOS45NzJIMy4wNDIwNFY5LjYzNEMzLjA0MjA0IDguOTU4IDMuMjExMDUgOC4yODIgMy4zODAwNSA3Ljk0NEMzLjcxODA1IDcuNDM3IDQuMzkzOTUgNi41OTEgNS41NzY5NSA1LjU3N0w1LjkxNDk2IDUuMDdDNi4yNTI5NiA0LjU2MyA2LjQyMjA0IDQuMjI1IDYuNDIyMDQgMy43MThDNi40MjIwNCAzLjA0MiA2LjI1Mjk2IDIuNTM1IDUuOTE0OTYgMi4xOThDNS41NzY5NiAxLjg1OSA0LjkwMTAyIDEuNjkgNC4yMjUwMiAxLjY5QzMuNTQ5MDIgMS42OSAyLjg3Mjk2IDIuMDI4IDIuNTM0OTYgMi41MzVDMi4xOTY5NiAyLjg3MyAyLjAyOCAzLjU0OSAyLjAyOCA0LjM5NUg0LjU3NzY0ZS0wNUM0LjU3NzY0ZS0wNSAzLjA0MiAwLjMzODAyOSAyLjAyOCAxLjE4MzAzIDEuMTgzQzIuMDI4MDMgMC4zMzgwMDIgMy4wNDE5OSAwIDQuMzkyOTkgMEM1LjU3Njk5IDAgNi41OTEwMSAwLjMzODk5OSA3LjI2NzAxIDEuMDE1Wk01LjA2OTk5IDExLjMyNEM1LjQwNzk5IDExLjQ5MyA1LjQwOCAxMS44MzEgNS40MDggMTIuMzM4QzUuNDA4IDEyLjY3NiA1LjIzODk5IDEzLjAxNCA1LjA2OTk5IDEzLjM1MkM0LjczMTk5IDEzLjUyMSA0LjM5Mzk1IDEzLjY5IDQuMDU1OTUgMTMuNjlDMy43MTc5NSAxMy42OSAzLjM4MDA0IDEzLjUyIDMuMDQyMDQgMTMuMzUyQzIuNzA0MDQgMTMuMDE0IDIuNzA0MDMgMTIuODQ1IDIuNzA0MDMgMTIuMzM4QzIuNzA0MDMgMTIgMi44NzMwNCAxMS42NjIgMy4wNDIwNCAxMS4zMjRDMy4yMTEwNCAxMS4xNTQgMy41NDg5NSAxMC45ODYgNC4wNTU5NSAxMC45ODZDNC41NjI5NSAxMC44MTYgNC45MDA5OSAxMC45ODYgNS4wNjk5OSAxMS4zMjRaIiBmaWxsPSIjMDY1RTg0Ii8+IDwvc3ZnPiA=) center no-repeat;
}

.storybook-icon-container {
  align-items: center;
  display: flex;
  gap: 10px;
  position: relative;
}

.storybook-icon-help {
  align-self: center;
  display: flex;
  border: 1px solid var(--grey-light);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  height: 32px;
  width: 32px;
}

.storybook-icon-help.active,
.storybook-icon-help:hover {
  border-color: var(--red);
}

.storybook-icon-help.active .icon-help,
.storybook-icon-help:hover .icon-help {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4LjI4MSIgaGVpZ2h0PSIxMy42ODkiIHZpZXdCb3g9IjExODUuODk5IDMyLjE1NSA4LjI4MSAxMy42ODkiPjxwYXRoIGQ9Ik0xMTkzLjE2NiAzMy4xN2MuNjc2LjY3NSAxLjAxNCAxLjUyIDEuMDE0IDIuNzAzIDAgLjg0NS0uMTY5IDEuNjktLjY3NiAyLjE5NyAwIC4xNy0uNTA3LjY3Ni0xLjUyMSAxLjUyMi0uMzM4LjMzOC0uNTA3LjUwNy0uNjc2Ljg0NS0uMTY5LjMzOC0uMzM4Ljg0NS0uMzM4IDEuMzUydi4zMzhoLTIuMDI4di0uMzM4YzAtLjY3Ni4xNjktMS4zNTIuMzM4LTEuNjkuMzM4LS41MDcgMS4wMTQtMS4zNTMgMi4xOTctMi4zNjdsLjMzOC0uNTA3Yy4zMzgtLjUwNy41MDctLjg0NS41MDctMS4zNTIgMC0uNjc2LS4xNjktMS4xODMtLjUwNy0xLjUyLS4zMzgtLjMzOS0xLjAxNC0uNTA4LTEuNjktLjUwOC0uNjc2IDAtMS4zNTIuMzM4LTEuNjkuODQ1LS4zMzguMzM4LS41MDcgMS4wMTQtLjUwNyAxLjg2aC0yLjAyOGMwLTEuMzUzLjMzOC0yLjM2NyAxLjE4My0zLjIxMi44NDUtLjg0NSAxLjg1OS0xLjE4MyAzLjIxLTEuMTgzIDEuMTg0IDAgMi4xOTguMzM4IDIuODc0IDEuMDE0bS0yLjE5NyAxMC4zMWMuMzM4LjE2OS4zMzguNTA3LjMzOCAxLjAxNCAwIC4zMzgtLjE2OS42NzYtLjMzOCAxLjAxNC0uMzM4LjE2OS0uNjc2LjMzOC0xLjAxNC4zMzgtLjMzOCAwLS42NzYtLjE3LTEuMDE0LS4zMzgtLjMzOC0uMzM4LS4zMzgtLjUwNy0uMzM4LTEuMDE0IDAtLjMzOC4xNjktLjY3Ni4zMzgtMS4wMTQuMTY5LS4xNy41MDctLjMzOCAxLjAxNC0uMzM4LjUwNy0uMTcuODQ1IDAgMS4wMTQuMzM4IiBmaWxsPSIjZDM0NTA4IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGRhdGEtbmFtZT0iUGF0aCA0NjQzIi8+PC9zdmc+) center no-repeat;
}

.theme-cold .storybook-icon-help.active .icon-help,
.theme-cold .storybook-icon-help:hover .icon-help {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDkgMTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNy4yNjcwMSAxLjAxNUM3Ljk0MzAxIDEuNjkgOC4yODEwNSAyLjUzNSA4LjI4MTA1IDMuNzE4QzguMjgxMDUgNC41NjMgOC4xMTIwMyA1LjQwOCA3LjYwNTAzIDUuOTE1QzcuNjA1MDMgNi4wODUgNy4wOTgwMyA2LjU5MSA2LjA4NDAzIDcuNDM3QzUuNzQ2MDMgNy43NzUgNS41NzcgNy45NDQgNS40MDggOC4yODJDNS4yMzkgOC42MiA1LjA2OTk5IDkuMTI3IDUuMDY5OTkgOS42MzRWOS45NzJIMy4wNDIwNFY5LjYzNEMzLjA0MjA0IDguOTU4IDMuMjExMDUgOC4yODIgMy4zODAwNSA3Ljk0NEMzLjcxODA1IDcuNDM3IDQuMzkzOTUgNi41OTEgNS41NzY5NSA1LjU3N0w1LjkxNDk2IDUuMDdDNi4yNTI5NiA0LjU2MyA2LjQyMjA0IDQuMjI1IDYuNDIyMDQgMy43MThDNi40MjIwNCAzLjA0MiA2LjI1Mjk2IDIuNTM1IDUuOTE0OTYgMi4xOThDNS41NzY5NiAxLjg1OSA0LjkwMTAyIDEuNjkgNC4yMjUwMiAxLjY5QzMuNTQ5MDIgMS42OSAyLjg3Mjk2IDIuMDI4IDIuNTM0OTYgMi41MzVDMi4xOTY5NiAyLjg3MyAyLjAyOCAzLjU0OSAyLjAyOCA0LjM5NUg0LjU3NzY0ZS0wNUM0LjU3NzY0ZS0wNSAzLjA0MiAwLjMzODAyOSAyLjAyOCAxLjE4MzAzIDEuMTgzQzIuMDI4MDMgMC4zMzgwMDIgMy4wNDE5OSAwIDQuMzkyOTkgMEM1LjU3Njk5IDAgNi41OTEwMSAwLjMzODk5OSA3LjI2NzAxIDEuMDE1Wk01LjA2OTk5IDExLjMyNEM1LjQwNzk5IDExLjQ5MyA1LjQwOCAxMS44MzEgNS40MDggMTIuMzM4QzUuNDA4IDEyLjY3NiA1LjIzODk5IDEzLjAxNCA1LjA2OTk5IDEzLjM1MkM0LjczMTk5IDEzLjUyMSA0LjM5Mzk1IDEzLjY5IDQuMDU1OTUgMTMuNjlDMy43MTc5NSAxMy42OSAzLjM4MDA0IDEzLjUyIDMuMDQyMDQgMTMuMzUyQzIuNzA0MDQgMTMuMDE0IDIuNzA0MDMgMTIuODQ1IDIuNzA0MDMgMTIuMzM4QzIuNzA0MDMgMTIgMi44NzMwNCAxMS42NjIgMy4wNDIwNCAxMS4zMjRDMy4yMTEwNCAxMS4xNTQgMy41NDg5NSAxMC45ODYgNC4wNTU5NSAxMC45ODZDNC41NjI5NSAxMC44MTYgNC45MDA5OSAxMC45ODYgNS4wNjk5OSAxMS4zMjRaIiBmaWxsPSIjMDY1RTg0Ii8+IDwvc3ZnPiA=) center no-repeat;
}

.storybook-icon-container .icon-help img {
  fill: var(--grey-light);
  height: 14px;
  width: 8px;
}

.storybook-icon-container svg {
  outline: 1px solid var(--grey-lighter);
  outline-offset: 5px;
  border-radius: 50%;
  margin: 0 0.25em;
  color: var(--icon-color);
  flex-grow: 2;
  align-self: center;
  font-size: 1.3em;
}

#profilemenuContainer .storybook-list--dropdown {
  top: 60px;
  left: -55px;
}
#profilemenuContainer .storybook-list--dropdown li a {
  display: flex;
  padding-inline: 15px;
  min-width: 206px;
}

/********************************** 
* Tablet View 
***********************************/

@media (max-width: 834px) {
  .storybook-logo {
    margin-right: 10px;  
  }
  .storybook-icon-container svg {
    font-size: 1em;
  }
  .storybook-avatar--medium {
    height: 30px;
    width: 30px;
    font-size: var(--font-size-10);
  }
}

@media (min-width: 768px) {
  .storybook-logo img {
    max-width: 105px;
  }
}

@media (max-width: 767px) {
  /* Header */
  .storybook-header {
    gap: 5%;
  }
  .storybook-menu-container {
    order: 1;
  }
  .storybook-logo {
    order: 2;
    flex-grow: 2;
  } 
  .storybook-search-container {
    order: 3;
    margin-left: auto;
  } 
  .storybook-icon-container {
    order: 4;
  }
  
  #profilemenuContainer .storybook-list--dropdown.open {    
    left: -25px;
    max-width: 120px;
    margin: unset;
    padding-top: 10px;
  }
}

/********************************** 
* Mobile View 
***********************************/

@media (max-width: 320px) {
  .storybook-header {
    height: 60px;
  }
  .storybook-logo img {
    max-width: 69px;
  }
  .storybook-icon-container svg {
    font-size: 1em;
  }
  .storybook-avatar--medium {
    height: 24px;
    width: 24px;
    font-size: var(--font-size-10);
  }
  .storybook-menu-toggle svg {
    font-size: 1.7rem;
  }
}
.center {
  margin: 0 auto;
}
.margin-bottom-override {
  margin-bottom: 1rem !important;
}

.height-100 {
  height: 100% !important;
}

.height-50 {
  height: 50% !important;
}

.height-1x {
  height: 1rem !important;
}

.height-2x {
  height: 2em !important;
}

.width-100 {
  width: 97% !important;
}

.width-75 {
  width: 75% !important;
}

.width-40 {
  width: 40% !important;
}

.skeleton-container .storybook-dashboard-myapps {
  border-top: 1px solid #e6e6e6;
  border-width: 80%;
}

@media (max-width: 480px) {
  .storybook-dashboard .skeleton-container {
    display: flex !important;
    flex-direction: column;
    width: auto !important;
    padding-inline: 10px;
  }
  .storybook-dashboard-message .skeleton:nth-child(1) {
    margin-bottom: 5px;
  }
  .storybook-dashboard-message .skeleton:nth-child(2),
  .storybook-dashboard-message .skeleton:nth-child(3) {
    margin-block: 5px;
  }

  .storybook-dashboard-rightcolumn .storybook-dashboard-message {
    display: none;
  }
  /* .storybook-dashboard-leftcolumn
    .storybook-dashboard-usercard
    .storybook-card-container,
  .storybook-app-badge {
    display: grid;
    grid-template-columns: 40px auto;
    gap: 5px 10px;
    padding-inline: 1rem;
  } */
  .storybook-dashboard-leftcolumn
    .storybook-dashboard-usercard
    .storybook-card-container
    .skeleton.profile-rectangle,
  .storybook-app-badge .skeleton.profile-rectangle--small {
    grid-column-start: 1;
    grid-row: 1 / 6;
  }
  .storybook-dashboard-leftcolumn
    .storybook-dashboard-usercard
    .storybook-card-container
    .skeleton.text,
  .storybook-app-badge .skeleton.text {
    width: 60% !important;
  }
  .storybook-app-badge .skeleton.text {
    width: 200px !important;
    margin: auto 20%;
  }
  .storybook-dashboard-leftcolumn
    .storybook-dashboard-usercard
    .storybook-card-container
    .skeleton.title,
  .storybook-dashboard-leftcolumn
    .storybook-dashboard-usercard
    .storybook-card-container
    .skeleton.text:nth-child(3),
  .storybook-dashboard-leftcolumn
    .storybook-dashboard-usercard
    .storybook-card-container
    .skeleton.text:nth-child(6),
  .storybook-app-badge .skeleton.profile-renctangle--small {
    width: 40% !important;
    margin: auto 20%;
    margin-bottom: 5px;
  }
  .storybook-dashboard-leftcolumn
    .storybook-dashboard-usercard
    .storybook-card-container
    .skeleton.title,
  .storybook-dashboard-leftcolumn
    .storybook-dashboard-usercard
    .storybook-card-container
    .skeleton.text,
  .storybook-app-badge .skeleton.text {
    grid-column-start: 2;
    margin-top: 0;
    margin-bottom: 0.25rem;
  }
}

.storybook-card-container {
  width: 80%;
  max-width: 291px;
  margin: 0 auto;
  padding: 20px;
}
.storybook-card-image {
  display: flex;
  justify-content: center;
}

.storybook-card-image img {
  border-radius: 0.5em;
  width: 100%;
  max-width: 125px;
}

.storybook-card-title,
.storybook-card-content {
  text-align: center;
}

.storybook-card-title {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-heavy);
  color: var(--grey-darker);
  margin: 0.4em 0;
}

.storybook-card-content {
  font-size: var(--font-size-12);
  color: var(--grey-normal);
}

.storybook-card-content p {
  padding-top: calc(var(--font-size-12) / 2);
  margin-top: 0;
  margin-bottom: 0;
}

.storybook-card-buttons {
  display: flex;
  justify-content: center;
  margin-top: 0.625em;
}

.storybook-card-container p {
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.storybook-card-content .term-date {
  display: block;
  line-height: 1.5em;
}
.storybook-card-content .term-date span {
  font-weight: var(--font-weight-bold);
}

.storybook-card-container p svg {
  fill: var(--grey-light);
  font-size: var(--font-size-18);
  line-height: 2px;
  display: inline-block;
  margin-top: 2px;
  cursor: pointer;
}

.storybook-card-container p svg:hover {
  fill: var(--red);
}

.storybook-card-container .storybook-popover-container {
  line-height: 16px;
}

@media (max-width: 320px) {
  .storybook-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1px 10px;
  }

  .storybook-card-image img {
    width: 95px;
  }

  .storybook-card-content {
    flex-basis: 55%;
  }

  .storybook-card-container p {
    display: inherit;
  }

  .storybook-card-content {
    text-align: left;
    padding: 0;
  }

  .storybook-card-title {
    font-size: var(--font-size-16);
    text-align: left;
    line-height: inherit;
  }

  .storybook-card-content p {
    font-size: var(--font-size-12);
    padding: 0;
  }
}

.storybook-app-badge {
  cursor: pointer;
  color: var(--grey-dark);
  font-size: var(--font-size-12);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 45%;
}

.storybook-app-badge:hover {
  text-decoration: none;
  color: var(--red);
}

.storybook-app-badge[disabled] {
  color: var(--grey-normal);
  position: relative;
  cursor: auto;
}

.storybook-app-badge[disabled] img {
  opacity: 0.3;
}

.storybook-app-badge img {
  margin-bottom: 8px;
  width: 40px;
  height: 40px;
}

.storybook-app-badge[disabled] span {
  color: var(--grey);
  pointer-events: none;
}

.storybook-app-badge[disabled]
  .storybook-app-badge--copy
  span
  + span.hover-tip {
  background-color: var(--cream-light);
  cursor: text;
  display: none;
  top: -35px;
  padding: 5px 10px;
  position: absolute;
  border-radius: 5px;
  box-shadow: 0px 2px 4px #00000029;
  font-size: 12px;
  border: 1px solid var(--tt-border-color);
  left: -15%;
  text-wrap: nowrap;
}

.storybook-app-badge[disabled]
  .storybook-app-badge--copy
  span
  + span.hover-tip::before {
  background-color: var(--cream-light);
  content: "";
  display: block;
  height: 8px;
  box-shadow: 2px 2px 2px #00000012;
  position: absolute;
  width: 8px;
  bottom: -4px;
  left: 60%;
  margin-left: -17px;
  transform: rotate(45deg);
}
.storybook-app-badge[disabled]
  .storybook-app-badge--copy
  span
  + span.hover-tip::after {
  content: "";
  display: block;
  height: 12px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
}

.storybook-app-badge[disabled]
  .storybook-app-badge--copy:hover
  span
  + span.hover-tip,
.storybook-app-badge[disabled]:hover
  img:hover
  + .storybook-app-badge--copy
  span.hover-tip {
  display: block;
  top: -20px;
  left: 35%;
  transform: translateX(-50%) translateY(-50%);
}

@media (max-width: 767px) {
  .storybook-app-badge {
    flex-direction: row;
    text-align: left;
    width: 100%;
  }

  .storybook-app-badge img {
    margin-right: 8px;
    margin-bottom: 0;
    height: 32px;
    width: 32px;
  }
}

@media (max-width: 428px) {
  .storybook-app-badge {
    flex-direction: column;
    text-align: center;
    width: 32%;
  }

  .storybook-app-badge img {
    margin-right: 0;
    margin-bottom: 8px;
    height: 32px;
    width: 32px;
  }

  .storybook-app-badge span {
    white-space: nowrap;
  }

  .storybook-dashboard-myapps .storybook-app-badge span {
    max-width: 80px;
    overflow-x: hidden;
    text-overflow: ellipsis;
  }
}

.storybook-task-item {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  width: 100px;
  min-height: 100px;
}

.storybook-task-item .item-icon {
  background-color: var(--white-pure);
  border-radius: 50%;
  box-sizing: border-box;
  margin-bottom: 6px;
  height: 48px;
  width: 48px;
}

.storybook-task-item .item-icon img {
  max-width: 100%;
  width: 48px;
  height: auto;
}

.storybook-task-item .item-icon span.hover-tip {
  background-color: var(--white-pure);
  cursor: text;
  display: none;
  top: -15px;
  left: -12%;
  padding: 5px 10px;
  position: absolute;
  border-radius: 5px;
  box-shadow: 0px 3px 6px #00000029;
  font-size: 12px;
  color: #555555;
  font-weight: 300;
  border: 1px solid var(--tt-border-color);
  text-wrap: nowrap;
}

.storybook-task-item .item-icon span.hover-tip::before {
  background-color: var(--white-pure);
  content: "";
  display: block;
  height: 8px;
  box-shadow: 2px 2px 2px #00000012;
  position: absolute;
  width: 8px;
  bottom: -4px;
  left: 60%;
  margin-left: -17px;
  transform: rotate(45deg);
}
.storybook-task-item .item-icon + span.hover-tip::before {
  content: "";
  display: block;
  height: 12px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
}

.storybook-task-item--default .item-icon {
  border: 2px solid var(--border-color);
}

.storybook-task-item--default.completion .item-icon {
  margin-bottom: 17px;
}

.storybook-task-item--default.completion .item-icon {
  height: 36px;
  width: 36px;
}

.storybook-task-item--started-hover.completion .item-icon,
.storybook-task-item--started.completion .item-icon {
  height: 72px;
  width: 72px;
}

.storybook-task-item--progress.completion .item-icon {
  height: 72px;
  width: 66px;
}

.storybook-task-item--done.completion .item-icon {
  height: 54px;
  width: 54px;
}

.storybook-task-item--success.completion .item-icon {
  height: 64px;
  width: 64px;
}

.storybook-task-item--success.onboarding .item-icon {
  margin-top: 2px;
}

.storybook-task-item .item-title p {
  font-size: var(--font-size-12);
  line-height: var(--line-spacing-18);
  margin: 0;
}

.storybook-task-item--in-progress .item-icon img {
  position: relative;
  top: -4px;
}

.storybook-task-item--in-progress .item-title p,
.storybook-task-item--started-hover .item-title p,
.storybook-task-item--started .item-title p {
  color: var(--red);
  font-weight: var(--font-weight-bold);
}

.storybook-task-item--passed .item-title p,
.storybook-task-item--done .item-title p,
.storybook-task-item--success .item-title p {
  color: var(--green-text);
}

.storybook-task-item--passed .item-title p,
.storybook-task-item--success .item-title p {
  font-weight: var(--font-weight-bold);
}

.storybook-task-item--default .item-title p {
  color: var(--grey-dark);
}

.storybook-task-item--started,
.storybook-task-item--in-progress {
  cursor: pointer;
}
.storybook-task-item--started .item-icon img {
  display: none;
}
.storybook-task-item--started .item-icon {
  border: 0.1423em solid var(--red);
}
.storybook-task-item--started:hover .item-icon img {
  display: block;
}

.storybook-task-item--started:hover .item-icon {
  border: none;
}

.storybook-task-item--started:hover {
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 0.25em;
}

.storybook-task-item--started .item-pending,
.storybook-task-item--in-progress .item-pending {
  color: var(--red);
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-bold);
  width: 100%;
  text-align: center;
  position: absolute;
  top: -38px;
}

.storybook-task-item--started .item-pending:after,
.storybook-task-item--in-progress .item-pending:after {
  background-color: var(--red);
  bottom: -14px;
  height: 10px;
  position: absolute;
  left: calc(50% - 1px);
  width: 2px;
}

#anchor--components-taskprogressitem--default .innerZoomElementWrapper > * {
  border-width: 0 !important;
}

#anchor--components-taskprogressitem--default .docs-story,
#anchor--components-taskprogressitem--default .docs-story > div:first-child {
  height: 280px;
}

.storybook-task-item--default .item-icon img {
  display: block;
  padding: 10px;
}

@media only screen and (min-width: 768px) {
  .storybook-task-item--started .item-pending:after,
  .storybook-task-item--in-progress .item-pending:after {
    content: "";
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .storybook-task-item--started .item-pending:after,
  .storybook-task-item--in-progress .item-pending {
    font-size: var(--font-size-10);
    top: -24px;
  }
  .storybook-task-item .item-icon span.hover-tip {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  /* Your mobile styles here */
  .storybook-task-item {
    width: 100%;
    flex-direction: row;
    min-height: revert;
  }
  .storybook-task-item .item-icon {
    margin-right: 1em;
    margin-bottom: 0;
  }
  .storybook-task-item .item-title {
    text-align: left;
  }
  .storybook-task-item .item-title p {
    display: inline-block;
  }
  .storybook-task-item p:first-child {
    margin-right: 0.25em;
  }
  .storybook-task-item--started .item-pending,
  .storybook-task-item--in-progress .item-pending {
    bottom: 0;
    left: 64px;
    top: auto;
    width: fit-content;
  }
}

.storybook-task-progress-wrapper {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}

.storybook-task-progress-bar {
  display: flex;
  justify-content: space-between;
  margin: 40px 0 20px;
  width: 100%;
}

.storybook-task-progress-bar .storybook-task-item {
  position: relative;
}

.skeleton-container.storybook-task-progress-wrapper
  > .storybook-task-progress-bar {
  display: flex;
  width: 100%;
  margin: 10px 0 10px;
}

.storybook-task-progress-line__default,
.storybook-task-progress-line__progress {
  height: 2px;
}

.storybook-task-progress-line__default {
  background-color: var(--border-color);
  position: absolute;
  top: 23px;
  left: 48px;
  width: calc(100% - 96px);
  margin-right: 100px;
}

.storybook-task-progress-wrapper--completion
  .storybook-task-progress-line__default {
  top: 45px;
}

.storybook-task-progress-line__progress {
  background-color: var(--green-border);
}

.storybook-task-progress-bar + strong {
  color: var(--grey-darker);
  font-size: var(--font-size-12);
  font-weight: var(--font-size-28);
  font-weight: var(--font-weight-extra-bold);
  display: block;
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .storybook-task-progress-bar {
    flex-direction: column;
  }

  .storybook-task-progress-bar .storybook-task-item {
    margin-bottom: 20px;
  }

  .storybook-task-progress-line__default {
    top: 62px;
    left: 50px;
    width: 2px;
    height: calc(100% - 175px);
  }

  .storybook-task-progress-wrapper--completion
    .storybook-task-progress-line__default {
    top: 60px;
  }
}

@media only screen and (max-width: 600px) {
  .storybook-task-progress-bar .storybook-task-item {
    margin-bottom: 10px;
  }
  .storybook-task-progress-wrapper,
  .storybook-task-progress-bar {
    margin-bottom: unset;
  }
  .storybook-task-progress-line__default {
    left: 24px;
    height: calc(100% - 90px);
  }
  .skeleton-container .storybook-app-badge {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
    width: 50%;
    margin-left: 15px;
    gap: 10px;
  }
}

.storybook-popover {
  margin-top: 10px;
}

.storybook-popover-trigger:hover {
  cursor: pointer;
}

.storybook-progressbar-bckgrnd-bar {
  position: relative;
  background-color: #eeeeee;
  border-radius: 1.5em;
}

.scale-25,
.scale-50,
.scale-75 {
  position: absolute;
  display: flex;
  left: 2.6em;
  top: 0.3em;
  bottom: 0.2em;
  justify-content: flex-end;
  color: #6b6b6b;
  font-size: var(--font-size-14);
  z-index: 1;
}

.scale-25 {
  width: 25%;
}

.scale-50 {
  width: 50%;
}

.scale-75 {
  width: 75%;
}

.storybook-progressbar-outer-tiny {
  height: 6px;
}

.storybook-progressbar-outer-small {
  height: 14px;
}

.storybook-progressbar-outer-standard {
  height: 30px;
}

.storybook-progressbar-outer-large {
  height: 40px;
}

.storybook-progressbar-outer-big {
  height: 66px;
}

.storybook-progressbar-progress {
  font-family: var(--font-family-lato);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-bold);
  color: var(--green-darkest);
  height: 100%;
  padding-left: 5px;
  display: flex;
  align-items: center;
}

.storybook-progressbar-progress.high-progress {
  position: absolute;
  right: 10px;
}

.storybook-progressbar-progress span {
  position: relative;
  left: 30px;
  color: var(--green-darkest);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-14);
}

/* Styles for different width percentages */
.storybook-progressbar-progress[data-width="25"] {
  /* Styles for 25% width */
  background-color: var(--red);
}

.storybook-progressbar-progress[data-width="50"] {
  /* Styles for 50% width */
  background-color: var(--yellow);
}

.storybook-progressbar-progress[data-width="75"] {
  /* Styles for 75% width */
  background-color: var(--blue);
}

/* Add more styles for other width percentages as needed */

.storybook-progressbar-primary-progress:only-child,
.storybook-progressbar-secondary-progress:only-child {
  border-radius: 0 1.5em 1.5em 0;
}

.storybook-progressbar-primary-progress[data-progress="100"],
.storybook-progressbar .progress-complete {
  border-bottom-right-radius: 1.5em;
  border-top-right-radius: 1.5em;
}

.storybook-progressbar-primary-progress
  + .storybook-progressbar-progress.high-progress {
  color: var(--white-pure);
}
.storybook-progressbar-container {
  display: flex;
  width: 100%;
  gap: 0;
  height: 100%;
}

.storybook-progressbar-section {
  display: flex;
  position: relative;
  flex-direction: row;
  flex: 1;
  background: var(--button-bg-disabled);
  border-radius: 1.25rem;
  overflow: hidden;
  height: 100%;
}
.storybook-progressbar-section:hover {
  overflow: unset;
}

.storybook-progressbar-primary-progress {
  /* position: absolute; */
  border-bottom-left-radius: 1.5em;
  border-top-left-radius: 1.5em;
  height: 100%;
  background-color: var(--green);
  transition: width 0.3s ease;
}
.storybook-progressbar-secondary-progress {
  height: 100%;
  background-color: var(--green-light-lime);
  transition: width 0.3s ease;
}

.granular-progress .storybook-progressbar-primary-progress:hover,
.granular-progress .storybook-progressbar-secondary-progress:hover {
  transform: scaleY(1.35);
  transition: transform 0.3s ease;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.granular-progress
  .storybook-progressbar-primary-progress:hover
  + .storybook-progressbar-progress,
.granular-progress
  .storybook-progressbar-secondary-progress:hover
  + .storybook-progressbar-progress {
  z-index: 999;
}

.storybook-progressbar-primary-progress span,
.storybook-progressbar-secondary-progress span {
  display: none;
}

.storybook-progressbar-progress:only-child span {
  position: unset;
  left: 0;
  color: var(--white-pure);
}

.storybook-progressbar-progresslabel-standard {
  color: white;
  font-size: 13px;
}

.storybook-progressbar-progresslabel-large {
  color: white;
  font-size: 20px;
}

.storybook-progressbar-progresslabel-big {
  color: white;
  font-size: 30px;
}

.storybook-progressbar-label {
  display: inline-flex;
  width: 58%;
  font-family: var(--font-family-lato);
  font-size: var(--font-size-15);
  margin: 0.5em 0.25em;
  font-weight: var(--font-weight-bold);
}

.storybook-progressbar-desc {
  display: inline-flex;
  width: 40%;
  justify-content: flex-end;
  font-family: var(--font-family-lato);
}

.storybook-progressbar .storybook-progressbar-info {
  fill: var(--grey-light);
  font-size: var(--font-size-14);
  line-height: 2px;
  cursor: pointer;
  margin-bottom: -1px;
  justify-content: flex-end;
  align-self: center;
}

.storybook-progressbar .storybook-progressbar-info:hover {
  fill: var(--red);
}

.progressbar-info__popover {
  padding: 10px;
  font-size: var(--font-size-12);
  max-width: 740px;
}

@media (max-width: 768px) {
  .storybook-progressbar-section .storybook-progressbar-desc {
    width: 30%;
  }

  .storybook-progressbar-section .storybook-progressbar-label {
    width: 70%;
  }

  .progressbar-info__popover {
    max-width: 405px;
  }
}
@media (max-width: 428px) {
  .storybook-progressbar-section .storybook-progressbar-label,
  .storybook-progressbar-section .storybook-progressbar-desc {
    width: 100%;

    /* display: relative; */
  }
  /* .storybook-progressbar-progress.high-progress {
    position: sticky;
    right: 20px;
  } */
}

.in-content {
  text-align: center;
  font-weight: normal;
}

.in-content b {
  color: var(--grey-darker);
}


.in-learning-row {
  display: flex;
  gap: 20px;
  margin: 30px 0 50px;
}

.in-learning-col {
  align-items: center;
  display: flex;
  gap: 10px;
  flex-direction: row;
  width: 100%;
}

.in-learning-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.in-learning-links > div {
  border: 1px solid var(--grey-disabled);
  border-radius: 5px;
  padding: 20px;
}

.in-learning-links p {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .in-learning-links > div {
    padding: 20px 35px;
  }

  .in-content button {
    min-width: 220px;
  }

  .in-learning-col {
    flex-direction: column;
    width: 33.3333333%;
  }

  .in-learning-col img {
    width: 72px;
  }

  .in-learning-links p {
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .in-modal .storybook-modal-icon-container img {
    width: 64px;
  }

  .in-modal h2 {
    font-size: var(--font-size-18);
  }
  
  .in-learning-links {
    flex-direction: column;
  }

  .in-learning-row {
    flex-direction: column;
  }
  
  .in-content,
  .in-content p,
  .in-content span,
  .in-learning-links p,
  .in-learning-links a {
    font-size: var(--font-size-12);
    line-height: var(--line-spacing-18);
  }

  .in-learning-col span {
    text-align: left;
  }

  .in-learning-col img {
    width: 32px;
  }

  .in-content button {
    min-width: 192px;
  }
}
/* These aren't the best solution for customizing joyride elements
   but some elements for specific steps are hard to customize.
*/
.react-joyride__overlay {
  min-height: 100%;
}

#react-joyride-step-0 + #react-joyride-portal .react-joyride__overlay .react-joyride__spotlight {
  box-sizing: content-box;
  padding: 10px;
  margin-left: -10px;
  margin-top: -10px;
}

#react-joyride-step-0 .__floater {
  margin-top: 10px;
}

.joyride-step-5 .react-joyride__overlay .react-joyride__spotlight {
  border-radius: 50%!important;
  max-width: 31px;
  max-height: 31px;
  margin-top: 1px;
}

.joyride-step-4.joyride-step-no-milestone .react-joyride__overlay .react-joyride__spotlight {
  box-sizing: content-box;
  margin: -20px -20px 0 -20px;
  padding: 20px 20px 0 20px;
}

.joyride-step-1 .react-joyride__overlay .react-joyride__spotlight {
  max-height: 72px;
  margin-top: 2px;
}

@media screen and (min-width: 768px) {
  #react-joyride-step-0 + #react-joyride-portal .react-joyride__overlay .react-joyride__spotlight {
    padding: 20px;
    margin-left: -20px;
    margin-top: -20px;
  }

  #react-joyride-step-0 .__floater__body,
  #react-joyride-step-0 .__floater__arrow {
    margin-top: 20px;
  }

  .joyride-step-1 .react-joyride__overlay .react-joyride__spotlight {
    max-height: 72px;
    margin-top: 2px;
  }

  .joyride-step-4.joyride-step-no-milestone .react-joyride__overlay .react-joyride__spotlight {
    padding: 20px;
    margin: -20px;
  }
}

@media screen and (max-width: 767px) {
  #react-joyride-step-0 + #react-joyride-portal .react-joyride__overlay .react-joyride__spotlight {
    border-radius: 0!important;
  }

  .joyride-step-1 .react-joyride__overlay .react-joyride__spotlight {
    border-radius: 0!important;
    max-height: 30px;
    min-height: 30px;
    margin-top: 23px;
    margin-left: -3px;
    min-width: 30px;
    max-width: 30px;
  }

  #react-joyride-step-1 .__floater {
    margin-top: -22px;
  }
}
.storybook-alert.skeleton-container {
  display: block !important;
  border-color: rgba(0, 0, 0, 0.08);
  margin-top: 10px !important;
}

.storybook-alert {
  margin: 10px auto;
  border: 1px solid;
  border-radius: 8px;
  width: 100%;
}

.storybook-alert > * {
  padding-inline: 28px;
}

.storybook-alert > header {
  padding-top: 16px;
}

.storybook-alert > *:last-child {
  padding-bottom: 16px;
}

.storybook-alert--warning {
  border-color: #ccbea0;
  background-color: #fffaf3;
  color: var(--warning);
}

.storybook-alert--info {
  border-color: var(--info-border);
  background-color: var(--info-background);
  color: var(--info);
}

.storybook-alert--success {
  border-color: var(--success-border);
  background-color: var(--success-background);
  color: var(--success);
}

.storybook-alert--error {
  border-color: var(--error-border);
  background-color: var(--error-background);
  color: var(--error);
}

.storybook-alert header {
  font-size: var(--font-size-18);
}

.storybook-alert p {
  font-size: var(--font-size-14);
  padding-block: 10px;
  margin-bottom: 0;
}

.storybook-alert-close {
  border: 0;
  background-color: transparent;
  float: right;
  margin-top: 10px;
  margin-right: 10px;
  padding: 0;
}
.storybook-alert-close svg {
  font-size: var(--font-size-14);
}

.storybook-alert-close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.storybook-alert--info .storybook-alert-close svg {
  fill: var(--info);
}
.storybook-alert--success .storybook-alert-close svg {
  fill: var(--success);
}
.storybook-alert--warning .storybook-alert-close svg {
  fill: var(--warning);
}
.storybook-alert--error .storybook-alert-close svg {
  fill: var(--error);
}

.accordion {
  background: var(--white-pure);
  border-radius: 8px;
  box-sizing: border-box;
  flex-grow: 1;
  padding: 20px 20px 5px;
  margin-bottom: 40px;
}

.accordion > h4 {
  color: var(--blue-purple);
  margin-top: 0;
}

.accordion-title {
  border: none;
  background: unset;
  width: unset;
  border-top: 1px solid var(--grey-disabled);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px 30px 20px 10px;
  position: relative;
  transition: background-color 0.3s ease-in-out;
}

.accordion-title:focus > h4 {
  color: var(--red);
}

.accordion-item:last-child .accordion-title {
  border-bottom: 1px solid var(--grey-disabled);
}

.accordion-item.active .accordion-title,
.accordion-title:hover,
.accordion-title:focus {
  background-color: #eeeeee;
}

.accordion-title > h4 {
  color: var(--grey-darker);
  margin: 0;
  font-size: var(--font-size-14);
  line-height: var(--line-spacing-20);
  transition: all 0.3s ease-in-out;
}

.accordion-title:hover > h4 {
  color: var(--red);
}

.accordion-title img {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(0);
  transition: all 0.2s ease-in-out;
  width: 10px;
}

.accordion-title:hover > img {
  filter: brightness(0) saturate(100%) invert(33%) sepia(87%) saturate(5296%)
    hue-rotate(16deg) brightness(97%) contrast(94%);
}

.theme-cold .accordion-title:hover > img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(24%) saturate(6036%)
    hue-rotate(176deg) brightness(91%) contrast(95%);
}

.accordion-content {
  border-top: 1px solid var(--grey-disabled);
  color: var(--grey-dark);
  padding: 20px;
  font-size: var(--font-size-12);
  line-height: var(--line-spacing-20);
  display: none;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-item.active .accordion-title img {
  transform: translateY(-50%) rotate(180deg);
}

@media (min-width: 768px) {
  .accordion-title {
    padding: 20px 40px 20px 20px;
  }

  .accordion-title img {
    right: 20px;
  }

  .accordion-content {
    padding: 25px 30px;
    font-size: var(--font-size-14);
    line-height: var(--line-spacing-24);
  }
}

.banner-experience-survey {
  background-color: #f8ffff;
  border: 1px solid #bedfe6;
  border-radius: 8px;
  color: #0e566c;
  margin-top: 20px;
  padding: 20px;
}

.banner-experience-survey h3 {
  margin: 0 0 10px 0;
}

.banner-experience-survey p {
  margin-bottom: 0;
  line-height: var(--line-spacing-20);
}

.storybook-alert + .storybook-welcome-message .page-title {
  margin-top: 20px;
}

.storybook-dashboard-message .storybook-alert h3 {
  padding-bottom: 0;
  margin-bottom: 0;
}

.storybook-dashboard-message .storybook-alert h3 + p {
  padding-top: 0;
}

.storybook-dashboard-message .storybook-alert {
  margin-bottom: 2px;
}
.storybook-dashboard-message .storybook-alert:first-of-type {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .storybook-dashboard-inner .banner-experience-survey h3 {
    font-size: var(--font-size-14);
  }

  .storybook-dashboard-inner .banner-experience-survey p {
    font-size: var(--font-size-12);
  }
}

.storybook-welcome-message h1 {
  color: var(--grey-darker);
}

.storybook-welcome-message p {
  color: var(--grey-dark);
  margin-top: 0;
}
.modal-intended-program {
  text-align: center;
}

.modal-intended-program .flex {
  align-items: center;
}

.modal-intended-program p a {
  font-weight: 600;
}

.modal-intended-program label {
  margin-bottom: 10px;
}

.modal-intended-program select {
  border: 1px solid var(--grey-disabled);
  border-radius: 4px;
  color: var(--grey-light);
  font-weight: 500;
  padding: 10px 20px;
  max-width: 315px;
  margin-bottom: 10px;
  height: 38px;
  width: 100%;
}

.modal-intended-program .select-program {
  margin-bottom: 20px;
}

.modal-intended-program .select-program .skeleton {
  min-width: 250px;
  margin: 0;
}

.modal-intended-program select:focus-visible {
  outline: none;
}

.modal-confirm-program h1 {
  color: var(--grey-darker);
}

.modal-confirm-program .storybook-modal-body {
  max-width: 92%;
}

.modal-confirm-program .storybook-modal-icon-container img {
  height: 48px;
}

.modal-confirm-program__btns {
  margin: 10px;
  justify-content: center;
  gap: 10px;
}

.modal-confirm-program__btns button {
  min-width: 90px;
}

.modal-intended-program button {
  max-width: 210px;
  margin-bottom: 20px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .modal-intended-program h2.storybook-modal-title {
    font-size: 16px;
  }

  .modal-intended-program .storybook-modal-icon-container img {
    max-width: 150px;
  }

  .modal-intended-program .storybook-modal-body {
    max-width: 90%;
  }
}
.storybook-modal.modal-log-out .storybook-modal-title {
  text-align: center;
}

.file-upload {
  margin: auto;
  max-width: 600px;
  width: 100%;
}

.file-upload h2 {
  line-height: 40px;
  white-space: pre-line;
  white-space: pre-wrap;
}

.file-upload .storybook-button {
  border-radius: 4px;
  display: block;
  margin: 15px auto 0;
  width: 120px;
}

.file-upload .storybook-button:disabled {
  border-color: var(--button-bg-disabled);
}

.file-dropzone {
  align-items: center;
  background-color: var(--grey-brightest);
  border: 1px dashed var(--grey-light);
  border-radius: 8px;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  margin-bottom: 10px;
  padding: 30px;
  position: relative;
  flex-direction: column;
  transition: all .2s ease-in-out;
}

.file-dropzone.over {
  border-color: var(--red);
  box-shadow: 0px 0px 4px 0px rgba(85,85,85, .5);
}

.file-icon {
  transition: all .2s ease-in-out;
  transform: scale(1);
}

.file-dropzone.over .file-icon {
  transform: scale(1.1);
}

.file-dropzone p {
  color: var(--grey-dark);
  line-height: 1.2;
}

.file-upload b {
  color: var(--red);
}

.file-drag-here {
  margin-top: 10px;
}

.file-name {
  margin-top: 10px;
}

.file-delete {
  cursor: pointer;
  padding: 0;
  border-width: 0;
  background-color: transparent;
  position: absolute;
  top: 20px;
  right: 20px;
}

.file-delete svg {
  font-size: 1.4rem;
  fill: #777777;
}

@media (min-width: 768px) {
  .file-dropzone {
    min-height: 200px;
    margin-bottom: 20px;
  }

  .file-upload .storybook-button {
    margin: 25px auto 0;
  }

  .file-name {
    margin-top: 30px;
  }

  .file-drag-here {
    margin-top: 20px;
  }

}

@media (max-width: 767px) {
  .file-upload h2 {
    font-size: var(--font-size-16);
    line-height: var(--line-spacing-24);
  }

  .file-upload .storybook-notice,
  .file-dropzone p {
    font-size: var(--font-size-12);
  }

  .file-icon {
    width: 72px;
  }

  .file-drag-here span,
  .file-drag-here strong {
    display: none;
  }
}

.storybook-textarea textarea {
  border: 1px solid var(--grey-disabled);
  border-radius: 4px;
  box-sizing: border-box; 
  color: var(--grey-darker);
  padding: 10px;
  font: 14px var(--font-family-lato);
  letter-spacing: 0px;
  resize: vertical;
  margin-bottom: 10px;
  min-height: 150px;
  max-height: 500px;
  width: 100%;
}

.storybook-textarea-btn-area {
  text-align: center;
}

.storybook-textarea-btn-area button {
  width: 120px;
}
.upload-input {
  align-items: center;
  font-size: var(--font-size-14);
  padding: 14px 0;
  position: relative;
  display: flex;
}

.upload-input,
.upload-input + .error {
  max-width: 600px;
  margin: auto;
}

.upload-input * {
  position: relative;
}

.upload-input::before {
  display: none;
  border-radius: 4px;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  left: -14px;
  right: -14px;
  top: 0;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  z-index: 0;
}

.upload-input.over::before {
  border: 1px dashed var(--red);
  display: block;
  opacity: 1;
}

.upload-input-inner {
  align-items: center;
  display: flex;
}

.upload-input-name {
  color: var(--grey-darker);
  margin-right: 34px;
  text-transform: capitalize;
}

.upload-input-placeholder {
  align-items: center;
  color: var(--grey-light);
  display: flex;
}

.upload-input-type-simple {
  border: 1px solid var(--grey-light);
  line-height: 20px;
  border-radius: 4px;
  width: 400px;
  height: 35px;
  padding: 5px 10px;
  margin: 5px;
  display: inline-flex;
  font-size: var(--font-size-14);
  color: var(--grey-light);
}

.upload-input-placeholder span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.attached .upload-input-placeholder {
  color: var(--grey-darker);
  font-weight: bold;
  overflow: hidden;
}

.upload-input-status {
  align-items: center;
  border: 1px solid var(--grey-light);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  height: 16px;
  margin-right: 10px;
  width: 16px;
}

.upload-input-status img {
  cursor: pointer;
}

.attached .upload-input-status {
  background-color: var(--red);
  border-color: var(--red);
}

.upload-input .storybook-button {
  margin-left: auto;
}

.upload-delete {
  background-color: transparent;
  border-width: 0;
  cursor: pointer;
  margin: 0 8px;
  padding: 0;
  position: relative;
  top: 5px;
}

.upload-input-type-simple .upload-delete {
  position: absolute;
  right: 0;
  margin-top: 2px;
}

.upload-delete svg {
  display: block;
  font-size: 1.2rem;
  fill: #777777;
}

.upload-error {
  text-align: center;
  color: var(--red-dark);
}

.upload-optional {
  border: 1px solid var(--grey-lighter);
  border-radius: 4px;
  color: var(--grey-darker);
  height: 38px;
  max-width: 110px;
  padding: 10px;
  box-sizing: border-box;
  margin-right: 10px;
  font-size: var(--font-size-14);
}

.upload-optional:focus-visible {
  border: 1px solid var(--red);
  outline: none;
}

.upload-input-col {
  align-items: center;
  display: flex;
}

@media screen and (max-width: 767px) {
  .upload-input {
    align-items: flex-start;
    flex-direction: column;
    padding-left: 14px;
    padding-right: 14px;
    gap: 12px;
  }

  .upload-input-placeholder {
    margin-top: 8px;
    flex-wrap: wrap;
    width: 100%;
  }

  .upload-input-placeholder span {
    flex: 1 0 80%;
    max-width: 320px;
  }

  .upload-optional {
    margin-bottom: 12px;
  }

  .upload-input .storybook-button {
    position: absolute;
    right: 14px;
    top: 14px;
  }

  .upload-input-col {
    margin-top: 10px;
  }
}

@media screen and (max-width: 414px) {
  .upload-input .storybook-button {
    position: unset;
    margin-left: unset;
  }
}

.multi-file {
  max-width: 600px;
  margin: auto;
  width: 100%;
}

.multi-file h2 {
  font-weight: normal;
  line-height: 40px;
}

.multi-file .storybook-notice {
  margin: 15px 0 30px;
}

.multi-file p {
  color: var(--grey-dark);
}

.multi-file-btn-area {
  text-align: center;
}

.multi-file-btn-area button {
  border-radius: 4px;
  width: 120px;
}
.modal-prereq .storybook-modal-header {
  text-align: right;
}

.pre-req-btns {
  margin: 60px 0 10px;
  width: 480px;
}

.pre-req-btns button {
  margin-bottom: 10px;
  text-align: left;
}

.mt-30 {
  margin-top: 30px;
}
.mytasks-timer {
  display: flex;
  align-items: center;
}
.mytasks-timer .hourglass {
  width: 30px;
}

.intake-assessment {
  padding: 30px 0;
}

.intake-assessment h1 {
  font-size: var(--font-size-18);
  line-height: var(--line-spacing-30);
  margin: 0 0 20px 0;
}

.intake-assessment h1 + p {
  font-size: var(--font-size-14);
  line-height: var(--line-spacing-20);
  margin-bottom: 40px;
} 

.intake-assessment p {
  color: var(--grey-dark);
}

.intake-assessment button {
  margin-bottom: 20px;
  width: 240px;
}

.intake-assessment button + p {
  margin-bottom: 0;
}

.intake-assessment-modal .storybook-modal-header {
  position: absolute;
  right: 10px;
  top: 30px;
}

.intake-assessment-modal .storybook-modal-body {
  max-width: 100%;
}

.intake-modal-logo {
  margin-top: 25px;
  margin-bottom: 40px;
  min-height: 52px;
  width: 150px
}

.intake-steps {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.intake-assessment-modal .intake-steps h2 {
  color: var(--grey);
  font-size: var(--font-size-14);
  line-height: var(--line-spacing-20);
  font-weight: var(--font-weight-medium);
  margin-bottom: 40px;
}

.intake-steps .options {
  align-items: center;
  display: flex;
  margin: auto;
  flex-direction: row;
  gap: 20px;
}

.intake-steps .options-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intake-steps--loading {
  margin: 30% auto;
  width: 60%;
}

.intake-steps-btn {
  box-sizing: content-box;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
  height: 30px;
  width: 17px;
  transition: all .2s ease-in-out;
}

.intake-steps-btn--prev {
  left: 0;
}

.intake-steps-btn--next {
  right: 0;
}

.intake-steps-btn--prev:not(.disabled):hover {
  left: -10px;
}

.intake-steps-btn--next:not(.disabled):hover {
  right: -10px;
}

.intake-steps-btn--prev.disabled,
.intake-steps-btn--next.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.intake-steps-btn img {
  max-height: 100%;
}

.intake-steps .options-inner button {
  text-align: left;
  min-width: 200px;
  transition: background-color .2s ease-in-out;
}

.intake-steps .options + .error {
  margin: 20px;
}

.intake-progress-bar {
  background-color: var(--red-light);
  width: 100%;
}

.intake-progress-bar,
.intake-progress-bar--inner {
  height: 20px;
  transition: width .6s ease-in-out;
}

.intake-progress-bar--inner {
  background-color: var(--red);
  width: 0;
}

.intake-modal-sub-head {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.intake-modal-sub-head b {
  color: #333333;
  font-size: var(--font-size-14);
}

.modal-intake-close .storybook-modal-header {
  text-align: right;
}

.modal-intake-close .storybook-modal-icon-container {
  height: 48px;
}

.modal-intake-close .storybook-modal-body {
  text-align: center;
  max-width: 90%;
}

.modal-intake-close .storybook-modal-body h1 {
  color: var(--grey-darker)
}

.modal-intake-close--btns {
  justify-content: center;
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.modal-intake-close--btns button {
  min-width: 90px;
}

.modal-intake-congratulations {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-intake-congratulations .storybook-modal-icon-container {
  height: 96px;
  margin-bottom: 30px;
}

.modal-intake-congratulations .storybook-modal-title {
  margin-bottom: 40px
}

.modal-intake-congratulations .storybook-modal-body p {
  font-size: var(--font-size-14);
  line-height: var(--line-spacing-24);
  margin-bottom: 0;
}

.modal-intake-congratulations button {
  min-width: 120px;
}

.intake-steps--missed-questions {
  padding: 150px 0;
}

.intake-congratulations--logo,
.intake-summary--logo {
  padding: 30px;
  text-align: left;
}

.intake-congratulations--logo,
.intake-summary--logo img {
  max-width: 105px;
}

.intake-summary .intake-summary--options h2 {
  color: var(--grey-darker);
  font-size: var(--font-size-18);
  line-height: var(--line-spacing-24);
  font-weight: var(--font-weight-medium);
}

.intake-summary--questions {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  max-width: 655px;
  margin: 40px auto 20px;
  max-height: 500px;
  padding-right: 25px;
  overflow-y: auto;
}

.intake-summary--question {
  margin-bottom: 40px;
  text-align: left;
  width: 100%;
}

.intake-summary--responses {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.intake-summary--responses button {
  position: relative;
  min-width: 200px;
  text-align: left;
  transition: background-color .2s ease-in-out;
}

.intake-summary .intake-summary--question h3 {
  font-size: var(--font-size-14);
  line-height: var(--line-spacing-14);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0px;
  margin: 0 0 10px 0;
}

.intake-summary--question-wrap {
  display: flex;
  justify-content: space-between;
}

.intake-summary--edit-answer {
  color: var(--grey-darker);
}

.intake-summary--edit-btn {
  color: var(--red);
  cursor: pointer;
  position: relative;
  top: 25px;
}

.intake-summary--edit-btn:hover {
  text-decoration: underline;
}

.intake-summary--questions + button {
  min-width: 120px;
}

.theme-cold .modal-intake-congratulations .storybook-modal-icon-container,
.theme-cold .modal-intake-close .storybook-modal-icon-container {
  filter: brightness(0) saturate(100%) invert(21%) sepia(56%) saturate(1220%) hue-rotate(163deg) brightness(94%) contrast(96%);
}

@media screen and (min-width: 768px) {
  .intake-assessment {
    padding: 80px 8%;
  }

  .intake-assessment h1 {
    font-size: var(--font-size-28);
    line-height: var(--line-spacing-36);
  }

  .intake-assessment h1 + p {
    line-height: var(--line-spacing-30);
  }

  .intake-assessment button {
    width: 265px;
  }

  .intake-progress-bar,
  .intake-progress-bar--inner {
    height: 40px;
  }

  .intake-modal-logo {
    margin-bottom: 100px;
    min-height: 105px;
    width: 300px;
  }

  .intake-modal-sub-head {
    padding: 20px;
  }

  .intake-modal-sub-head b {
    font-size: var(--font-size-18);
  }

  .intake-assessment-modal .storybook-modal-header {
    top: 57px;
  }

  .intake-assessment-modal .intake-steps h2 {
    font-size: var(--font-size-24);
    line-height: var(--line-spacing-36);
  }

  .intake-steps .options-inner button {
    min-width: 480px;
  }

  .intake-steps .options {
    gap: 30px
  }

  .intake-steps-btn {
    padding: 10px 20px;
    height: 48px;
    width: 28px;
  }

  .intake-congratulations--logo,
  .intake-summary--logo {
    padding: 30px 60px;
  }

  .intake-summary .intake-summary--options h2 {
    font-size: var(--font-size-18);
    line-height: var(--line-spacing-24);
  }

  .intake-summary .intake-summary--question h3 {
    font-size: var(--font-size-18);
    line-height: var(--line-spacing-40);
    margin: 0 0 20px 0;
  }

  .intake-summary--responses button {
    min-width: 300px;
  }

  .modal-intake-congratulations button,
  .intake-summary--questions + button {
    min-width: 250px;
  }
}

@media screen and (max-width: 767px) {
  .intake-steps {
    padding: 0 10px;
  }

  .intake-summary--options {
    padding: 0 20px;
  }

  .intake-summary .intake-summary--options p {
    font-size: var(--font-size-14);
    line-height: var(--line-spacing-20);
  }

  .intake-summary--responses button {
    margin-left: 25px;
  }

  .intake-summary--responses button:before {
    border: 1px solid #999999;
    border-radius: 50%;
    display: block;
    cursor: pointer;
    content: '';
    position: absolute;
    left: -25px;
    height: 16px;
    width: 16px;
  }

  .intake-summary--responses button.storybook-button--default:before {
    background-color: var(--red);
    border-color: var(--red);
  }
}


body {
  background-color: var(--cream-light);
}

article > header {
  position: relative;
}

.storybook-sidenav {
  z-index: 99;
}

.storybook-dashboard {
  padding-bottom: 20px;
  height: 100%;
}

.storybook-dashboard-rightcolumn {
  grid-area: rightcol;
  flex: 1;
  width: 100%;
}

.storybook-dashboard-message {
  display: flex;
  flex-direction: column;
  /* grid-area: msg; */
}

.storybook-dashboard-leftcolumn {
  grid-area: leftcol;
}

.storybook-dashboard-inner,
.storybook-dashboard .skeleton-container {
  display: flex;
  /* grid-template-areas:
    "leftcol msg"
    "leftcol rightcol";
  grid-template-columns: 23.5% auto;
  grid-template-rows: 100px 1fr; */
  gap: 20px;
}

.storybook-dashboard .skeleton-container {
  max-width: 1230px;
  margin: 0 auto;
  grid-template-areas:
    "leftcol msg"
    "leftcol rightcol";
}

.storybook-dashboard-leftcolumn {
  max-width: 291px;
  background-color: var(--white-pure);
  border: transparent;
  border-radius: 0 0 8px 8px;
  padding: 1em 0;
  width: 100%;
}

.storybook-dashboard-leftcolumn .storybook-myapps-container {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.storybook-myapps-container .storybook-app-badge {
  margin-bottom: 1.2em;
}
.storybook-myapps-container .storybook-app-badge--copy {
  margin-bottom: 14px;
}

.storybook-app-badge[disabled]
  .storybook-app-badge--copy
  span
  + span.hover-tip {
  display: none;
  width: 185px;
  line-height: 15px;
}
.storybook-app-badge[disabled]
  .storybook-app-badge--copy:hover
  span
  + span.hover-tip,
.storybook-app-badge[disabled]:hover
  img:hover
  + .storybook-app-badge--copy
  span.hover-tip {
  display: block;
  top: -30px;
  left: 48%;
  text-wrap: wrap;
}

/* Hide hover tip "action needed here!" for now  */
.storybook-task-item--started .item-icon span.hover-tip {
  display: none !important;
}

.storybook-dashboard-message h1 {
  font-size: var(--font-size-24);
}

.storybook-dashboard-message p {
  font-size: var(--font-size-14);
  margin-bottom: 0;
}

.storybook-dashboard-leftcolumn h2,
.storybook-dashboard-rightcolumn h2 {
  color: var(--blue-purple);
  font-size: var(--font-size-16);
}

.storybook-dashboard-rightcolumn h2 {
  margin-top: 0;
}

.storybook-dashboard-leftcolumn h2 {
  margin-top: 1em;
}

.storybook-dashboard-leftcolumn h2 {
  text-align: center;
}

.storybook-dashboard-leftcolumn .storybook-popover-content {
  padding: 6px;
  text-align: left;
  width: 220px;
}

h2.storybook-card-title {
  font-size: var(--font-size-18);
  line-height: var(--line-spacing-30);
  font-weight: var(--font-weight-bold);
  color: var(--grey-darker) !important;
}

.storybook-dashboard-needhelp.white-container h2 {
  text-align: inherit;
}

.storybook-dashboard-rightcolumn h3 {
  font-size: var(--font-size-14);
}

.storybook-dashboard .storybook-card-container p {
  font-size: var(--font-size-12);
  color: var(--grey);
}
.storybook-dashboard-rightcolumn p {
  font-size: var(--font-size-14);
}

.white-container {
  background: var(--white-pure) 0% 0% no-repeat padding-box;
  border-radius: 8px;
  padding: 20px;
}

.box-shadow {
  box-shadow: 0px 3px 6px var(--grey-lighter);
}

.storybook-dashboard-mytasks {
  overflow-x: hidden;
  margin: 0 0 20px;
}

.storybook-dashboard-needhelp {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  justify-content: space-between;
  min-height: 230px;
}

.storybook-dashboard-needhelp > .storybook-app-badge {
  flex-basis: 15.5%;
}

.storybook-dashboard-needhelp h2 {
  flex-basis: 100%;
}

.storybook-dashboard-needhelp .storybook-app-badge img {
  width: 54px;
  height: 54px;
}

.storybook-dashboard-overall-progress header,
.storybook-dashboard-mytasks header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.storybook-dashboard-overall-progress header {
  align-items: baseline;
}

.storybook-dashboard-mytasks header {
  align-items: center;
  margin-bottom: 0.1em;
}
.storybook-dashboard-mytasks header h2 {
  margin: 0;
}

.storybook-dashboard-mytasks p {
  margin-top: 0;
}

.storybook-dashboard-overall-progress header p,
.storybook-dashboard-mytasks header button {
  margin-right: auto;
  margin-left: 1em;
  font-size: var(--font-size-12);
}

.storybook-dashboard-overall-progress header svg,
.storybook-dashboard-mytasks header svg {
  fill: var(--grey-light);
  font-size: 1.15em;
  cursor: pointer;
}

.storybook-dashboard-overall-progress header svg:hover,
.storybook-dashboard-mytasks header svg:hover {
  fill: var(--red);
}

.storybook-task-progress-wrapper {
  margin-top: 20px;
}

.storybook-modal-header {
  min-height: 2em;
}

hr {
  border: none;
  border-top: 1px double var(--grey-lighter);
}

.center {
  text-align: center;
}

.storybook-dashboard-myapps-show-more {
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-top: 0.5em;
}

.storybook-dashboard-myapps-show-more .expand-rotate {
  transform: rotate(180deg);
}

/* Coursework dashlet */
.storybook-dashboard-mytasks.coursework h3 {
  margin-top: 0;
  color: var(--blue-purple);
  font-size: var(--font-size-13);
}

.storybook-dashboard-mytasks.coursework .storybook-progressbar {
  margin: 1.2em 0.95em;
}

.storybook-dashboard-mytasks.coursework .storybook-progressbar-label,
.storybook-dashboard-mytasks.coursework .storybook-progressbar-desc {
  font-size: var(--font-size-12);
  color: var(--grey);
  font-weight: 400;
  margin-bottom: 1.25em;
}
.storybook-dashboard-mytasks.coursework a .storybook-progressbar-label:hover,
.storybook-dashboard-mytasks.coursework a .storybook-progressbar-desc:hover {
  color: var(--red);
  text-decoration: underline;
}

.storybook-dashboard-mytasks.coursework .storybook-progressbar-progress span {
  left: 35px;
}

.storybook-dashboard-mytasks.coursework [class^="scale-"] {
  display: none;
}

.storybook-dashboard-mytasks.coursework button {
  display: block;
  margin: 0 auto;
  margin-top: 4em;
}

.storybook-btn-link {
  border: 0;
  background-color: transparent;
  font-size: var(--font-size-12);
  font-family: var(--font-family-lato);
  cursor: pointer;
}

.storybook-btn-link:hover {
  color: var(--red);
}

.storybook-dashboard-mytasks.coursework footer {
  margin: 0 auto;
  margin: 2em 0 1.15em 0em;
}

.storybook-dashboard-mytasks.coursework footer .storybook-button,
.storybook-dashboard-mytasks.coursework footer p.storybook-mytasks-info {
  align-content: center;
  margin: 0 auto;
}

.storybook-dashboard-mytasks.coursework footer p.storybook-mytasks-info {
  font-size: 0.68rem;
  color: var(--grey-light);
  float: right;
  margin-top: -30px;
  margin-right: 20px;
}

.storybook-dashboard-mytasks.coursework footer p.storybook-mytasks-info svg {
  fill: var(--grey-light);
  font-size: var(--font-size-12);
  line-height: 2px;
  margin-bottom: -1px;
}

#react-joyride-step-5 button {
  width: 100%;
}

.__floater__body button:focus,
.__floater__body button:active,
.__floater__body button:focus-visible {
  outline: none;
}

.storybook-task-item--in-progress {
  cursor: unset;
}
.storybook-task-item--in-progress:nth-child(1),
.storybook-task-item--in-progress:nth-child(2),
.storybook-task-item--in-progress:nth-child(3) {
  cursor: pointer;
}
.storybook-task-item--in-progress:nth-child(1):hover,
.storybook-task-item--in-progress:nth-child(2):hover,
.storybook-task-item--in-progress:nth-child(3):hover {
  text-decoration: underline;
  text-decoration-color: var(--red);
  -webkit-text-decoration-color: var(--red);
  text-underline-offset: 0.25em;
}

.dockableContainer * {
  font-family: var(--font-family-lato);
  font-weight: var(--font-weight-bold);
}

.embeddedServiceHelpButton .helpButtonEnabled:focus .helpButtonLabel {
  text-decoration: none;
}

.modalContainer .embeddedServiceSidebarMinimizedDefaultUI.helpButton,
.embeddedServiceHelpButton .helpButton button.uiButton,
.embeddedServiceSidebarMinimizedDefaultUI.helpButton,
.dockableContainer .chatHeaderBranding {
  background-color: var(--chat-head, #ffe3b7);
  box-shadow: none;
  border-width: 0;
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.16));
}

.modalContainer .embeddedServiceSidebarMinimizedDefaultUI.helpButton .message,
.embeddedServiceHelpButton button.uiButton .helpButtonLabel .message {
  color: var(--chat-text-head);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-16);
}

.embeddedServiceHelpButton .uiButton .embeddedServiceIcon::before {
  color: var(--chat-text-head);
  font-size: var(--font-size-18);
}

.modalContainer
  .embeddedServiceSidebarMinimizedDefaultUI.helpButton
  .embeddedServiceIcon
  svg {
  fill: var(--chat-text-head);
  height: 18px;
  width: 18px;
}

.embeddedServiceHelpButton .helpButton button.helpButtonEnabled::before,
.embeddedServiceHelpButton .helpButton button.helpButtonEnabled::before {
  transition: all 0.2s ease-in-out;
}

.modalContainer
  .embeddedServiceSidebarMinimizedDefaultUI.minimizedContainer:focus,
.modalContainer
  .embeddedServiceSidebarMinimizedDefaultUI.minimizedContainer:hover,
.embeddedServiceHelpButton .helpButton button.helpButtonEnabled:hover::before,
.embeddedServiceHelpButton .helpButton button.helpButtonEnabled:focus::before {
  background-color: var(--chat-head-hover, #ffd280);
  opacity: 1;
  text-decoration: none;
}

.dockableContainer embeddedservice-chat-header lightning-icon,
.dockableContainer embeddedservice-chat-header svg.slds-icon-text-default {
  fill: var(--chat-text-head);
}

.dockableContainer h2[lwc-56vbshdpqil] {
  color: var(--chat-text-head);
  font-weight: var(--font-weight-bold);
}

.dockableContainer .embeddedServiceSidebarButton {
  background-color: var(--red);
}

.dockableContainer .embeddedServiceSidebarButton:not(:disabled):focus,
.dockableContainer .embeddedServiceSidebarButton:not(:disabled):hover {
  background-color: var(--red-dark);
}

.dockableContainer .embeddedServiceSidebarFormField .slds-style-inputtext,
.dockableContainer .embeddedServiceSidebarFormField .slds-style-select {
  border-radius: 6px;
  height: 38px;
}

.dockableContainer .embeddedServiceSidebarFormField .uiInput .uiLabel-left {
  color: var(--grey-dark);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  font-style: normal;
  margin-bottom: 4px;
}

.dockableContainer .embeddedServiceSidebarFormField .uiInput .required {
  top: -2px;
}

.dockableContainer .embeddedServiceSidebarFormField .split-field-container,
.dockableContainer .embeddedServiceSidebarFormField .uiInput--input,
.dockableContainer .embeddedServiceSidebarFormField .uiInput--select {
  margin-bottom: 15px;
}

.dockableContainer .embeddedServiceSidebarFormField .slds-style-inputtext:focus,
.dockableContainer .embeddedServiceSidebarFormField .slds-style-select:focus {
  box-shadow: none;
  border-color: var(--red);
}

.dockableContainer .embeddedServiceSidebarFormField .uiInputSelect:after {
  border-top-color: var(--red);
}

.embeddedServiceSidebar.layout-docked .dockableContainer,
.embeddedServiceSidebar.layout-float .dockableContainer {
  box-shadow: none;
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.16));
}

.storybook-task-item--in-progress .item-pending {
  width: 200px;
  top: -38px;
}

.storybook-dashboard-assessment {
  padding: 0.5rem;
  font-size: 0.9rem;
  border-spacing: 0;
}
.storybook-dashboard-assessment thead tr th {
  border-bottom: 1px solid var(--grey-lighter);
}
.storybook-dashboard-assessment th,
.storybook-dashboard-assessment td {
  padding: 5px;
}

.storybook-dashboard-mytasks--container {
  overflow: hidden;
  transition: max-height 0.6s ease-in-out;
  max-height: 0;
}

.storybook-dashboard-mytasks--container.expanded {
  max-height: 5000px;
}

.storybook-dashboard-mytasks .storybook-dashboard-mytasks--container
  .storybook-progressbar:first-child {
  margin-top: 0;
}

.mytasks-view-more {
  cursor: pointer;
  display: block;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-bold);
  margin: 0 20px 20px auto;
  width: fit-content;
  transition: transform 0.3s ease-in-out;
}

.mytasks-view-more:hover {
  text-decoration: none;
}

.mytasks-view-more img {
  filter: brightness(0) saturate(100%) invert(30%) sepia(45%)
    saturate(2331%) hue-rotate(353deg) brightness(101%) contrast(104%);
  margin-left: 8px;
}

.storybook-dashboard-mytasks--container.expanded
  + .mytasks-view-more img {
  transform: rotate(180deg);
}

@media (max-width: 1200px) {
  .storybook-dashboard-mytasks.coursework footer {
    display: flex;
    flex-wrap: wrap;

    gap: 1em;
  }
  .storybook-dashboard-mytasks.coursework footer p.storybook-mytasks-info {
    font-size: var(--font-size-12);
    color: var(--grey-light);
    float: unset;
    margin-top: 10px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .storybook-dashboard-message.no-desktop {
    display: none;
  }

  .storybook-dashboard-needhelp .storybook-app-badge--copy {
    line-height: var(--line-spacing-20);
    width: 75px;
  }

  .storybook-dashboard-needhelp
    .storybook-app-badge:nth-child(3)
    .storybook-app-badge--copy {
    width: 70px;
  }

  .storybook-dashboard-needhelp .storybook-app-badge--copy {
    line-height: var(--line-spacing-20);
    width: 75px;
  }

  .storybook-dashboard-needhelp
    .storybook-app-badge:nth-child(3)
    .storybook-app-badge--copy {
    width: 45px;
  }
}

@media (max-width: 767px) {
  .storybook-dashboard-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .storybook-dashboard-leftcolumn {
    border-radius: 8px;
  }

  .storybook-dashboard-rightcolumn,
  .storybook-welcome-message,
  .storybook-dashboard-leftcolumn {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .storybook-dashboard-message.no-mobile {
    display: none;
  }

  .storybook-dashboard .storybook-card-container p svg {
    margin-top: unset;
  }

  .storybook-welcome-message {
    padding: 0 10px;
  }

  .storybook-dashboard .storybook-card-content p:not(p:first-of-type) {
    font-size: var(--font-size-10);
  }
  p,
  span,
  .storybook-progressbar-desc,
  .storybook-dashboard-mytasks p {
    font-size: var(--font-size-12);
  }
  .storybook-dashboard .storybook-card-content .storybook-popover-trigger svg {
    padding: 0.5em;
    font-size: var(--font-size-12);
  }

  .storybook-dashboard-mytasks {
    width: revert;
    display: flex;
    flex-direction: column;
    margin-top: 1em;
  }

  .storybook-dashboard-mytasks > header {
    order: 1;
  }

  .storybook-dashboard-mytasks > p {
    order: 2;
    color: var(--grey-dark);
  }
  .storybook-dashboard-mytasks > h3 {
    order: 2;
  }

  .storybook-dashboard-mytasks > div.center {
    order: 3;
    text-align: unset;
    margin-bottom: 1em;
  }
  .storybook-dashboard-mytasks.coursework button,
  .storybook-dashboard-mytasks.coursework footer {
    margin: 0 0 0 0;
  }
  .storybook-dashboard-mytasks.coursework .storybook-progressbar {
    order: 4;
  }
  .storybook-dashboard-mytasks.coursework
    .storybook-progressbar-label
    .storybook-dashboard-mytasks.coursework
    .storybook-progressbar-desc {
    width: auto;
  }

  .storybook-dashboard-mytasks .storybook-task-progress-wrapper {
    order: 4;
  }
  .storybook-task-progress-desc {
    order: 5;
  }
  .storybook-task-progress-desc > h2 {
    text-align: left !important;
  }

  .storybook-dashboard-overall-progress .storybook-progressbar {
    display: flex;
    flex-direction: column;
  }

  .storybook-dashboard-overall-progress .storybook-progressbar-label {
    order: 1;
    font-weight: var(--font-weight-normal);
    color: var(--grey-dark);
  }
  .storybook-dashboard-overall-progress .storybook-progressbar-bckgrnd-bar {
    order: 2;
  }
  .storybook-dashboard-overall-progress .storybook-progressbar-desc {
    order: 3;
    justify-content: left;
    padding-top: 0.5em;
    color: var(--grey-dark);
  }

  .storybook-dashboard-mytasks.coursework .storybook-progressbar-label {
    width: 90%;
    line-height: 1.2em;
  }
  .storybook-dashboard-mytasks.coursework .storybook-progressbar-desc {
    width: 10%;
    align-self: center;
    line-height: 0.15em;
  }

  .storybook-task-item .item-title {
    display: flex;
  }

  .storybook-dashboard-mytasks .item-title p:nth-child(2) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100px;
  }

  .storybook-dashboard-myapps-show-more {
    display: flex;
    padding: 10px 0;
  }

  .storybook-welcome-message h1 {
    font-size: var(--font-size-18);
  }
  .storybook-welcome-message p {
    font-size: var(--font-size-12);
  }

  .storybook-dashboard .storybook-card-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: row;
    align-content: center;
    padding: 5px;
    max-width: 100%;
  }

  .storybook-dashboard .storybook-card-image {
    width: 40%;
  }

  .storybook-dashboard .storybook-card-content,
  .storybook-dashboard .storybook-card-content * {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .storybook-dashboard .storybook-card-image img {
    max-width: auto;
    margin-right: 0.5em;
  }
  .storybook-dashboard h2.storybook-card-title {
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-spacing-20);
    margin-bottom: 0;
    margin-top: 0 !important;
    color: var(--grey-darker) !important;
  }
  .storybook-dashboard .storybook-card-buttons {
    justify-content: center;
    width: 100%;
    padding-left: 45px;
  }
  .storybook-dashboard-myapps {
    height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
  }
  .storybook-dashboard-myapps.show {
    height: auto;
    max-height: 100%;

    transition: max-height 0.5s ease-in-out;
  }

  .storybook-dashboard-needhelp {
    flex-direction: column;
  }

  .storybook-dashboard-needhelp * {
    flex-basis: 45%;
  }

  .storybook-dashboard-needhelp > .storybook-app-badge {
    flex-basis: content;
    flex-direction: row;
    align-items: center;
    width: 90%;
    max-width: 100%;
    justify-content: left;
    margin-left: 1em;
  }

  .storybook-dashboard-needhelp * {
    flex-basis: unset;
  }

  .storybook-dashboard-needhelp > .storybook-app-badge span {
    max-width: 50%;
  }

  .storybook-dashboard-needhelp .storybook-app-badge img {
    width: 32px;
    height: 32px;
    margin-bottom: 0;
    margin-right: 0.85em;
  }
  /* Coursework */
  .storybook-dashboard-mytasks.coursework .storybook-progressbar {
    margin: 1.2em 0em;
  }
  .storybook-dashboard-mytasks.coursework .storybook-progressbar-desc::before {
    content: "";
  }
  .storybook-dashboard-mytasks.coursework .storybook-progressbar-label,
  .storybook-dashboard-mytasks.coursework .storybook-progressbar-desc {
    width: 100%;
    justify-content: left;
    margin: auto;
    padding-bottom: 0.5em;
  }

  .storybook-dashboard-mytasks.coursework .storybook-progressbar-progress span {
    left: 35px;
    font-size: var(--font-size-12);
  }

  #react-joyride-step-1 .__floater__body {
    margin-left: 12px;
  }

  .__floater__body {
    max-width: 360px;
  }

  .storybook-myapps-container .storybook-app-badge {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 33%;
  }

  .storybook-myapps-container .storybook-app-badge img {
    margin: 0;
  }
}

@media (max-width: 400px) {
  .storybook-dashboard-usercard .storybook-card-container {
    display: grid;
    width: 100%;
    padding: 20px;
    grid-template-columns: 1fr auto;
    grid-template:
      "img cpy"
      "img btn ";
    justify-items: start;
    justify-content: start;
    column-gap: 10px;
  }
  .storybook-dashboard-usercard .storybook-card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .storybook-dashboard-usercard .storybook-card-image {
    grid-area: img;
    width: 115px;
    max-width: 100%;
  }
  .storybook-dashboard-usercard .storybook-card-content {
    grid-area: cpy;
    width: 100%;
  }
  .storybook-dashboard-usercard .storybook-card-buttons {
    grid-area: btn;
    padding: unset;
    width: unset;
  }

  .storybook-task-progress-bar {
    margin-top: unset;
  }
  .storybook-dashboard-mytasks header {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .storybook-dashboard .mytasks-timer {
    margin-top: 20px;
    font-size: var(--font-size-14);
  }
  .storybook-dashboard .mytasks-timer {
    margin-left: -10px;
  }

  .storybook-dashboard-mytasks .storybook-task-item--passed p,
  .storybook-dashboard-mytasks .storybook-task-item--started:last-of-type p {
    max-width: 180px;
  }
  .storybook-dashboard-mytasks .storybook-task-item--passed:nth-child(3) p {
    max-width: 160px;
  }
}

.modal-log-out .storybook-button {
  width: 170px;
}

@media screen and (min-width: 768px) {
  .modal-log-out .storybook-button {
    width: 212px;
  }
}
.skeleton-container .storybook-myteam-members {
  width: 1366px;
}

.skeleton-container .storybook-myteam-copy,
.skeleton-container .storybook-myteam-instructional-faculty,
.skeleton-container .storybook-myteam-peer-tutors,
.skeleton-container .storybook-myteam-academic-success-counselors {
  width: 100%;
}

@media screen and (max-width: 978px) {
  .skeleton-container .storybook-myteam-members {
    max-width: 90%;
  }
}

.modal-bio--row h3 {
  border-top: 1px solid var(--grey-disabled);
  border-bottom: 1px solid var(--grey-disabled);
  padding: 20px;
  line-height: 28px;
}

.modal-bio--row p {
  white-space: pre-line;
}
.storybook-myteam main {
  display: flex;
  flex-direction: column;
  padding: 0 5% 40px;
  background-color: var(--cream-light);
  justify-content: center;
  align-items: center;
  font-size: 16px;
  gap: 2em;
}

.storybook-myteam .white-container {
  background: var(--white-pure) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px var(--grey-lighter);
  border-radius: 8px;
  margin-top: 1em;
}
.storybook-myteam-members .white-container {
  padding: 0;
}
.storybook-myteam-members .storybook-myteam-preepp {
  min-height: 280px;
}
.storybook-myteam h1 {
  display: none;
}

.storybook-myteam-members {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-column-gap: 20px;
  max-width: 1020px;
}

.storybook-myteam-members p {
  font-size: var(--font-size-12);
  line-height: var(--line-spacing-20);
}

.storybook-myteam-member--bio {
  color: var(--red);
  cursor: pointer;
  display: block;
  margin-top: 5px;
}

.storybook-myteam-instructors,
.storybook-myteam-counselors {
  max-width: 500px;
  margin-top: 1em;
}

.storybook-myteam-instructors {
  position: relative;
}

.storybook-myteam h2 {
  color: var(--blue-purple);
}

.storybook-myteam h2,
.storybook-myteam h3,
.storybook-myteam p {
  text-align: center;
}

/* Card modifications */
.storybook-myteam-instructors-list-item {
  display: flex;
  flex-wrap: wrap;
  max-height: 275px;
  position: relative;
}
.storybook-myteam-instructors-list-item:only-child {
  margin-bottom: 36px;
}
.storybook-myteam-instructors-list-item:not(.show) {
  overflow-y: hidden;
}
.storybook-myteam-instructors-list-item .storybook-card-container {
  flex-basis: 48%;
}
.storybook-myteam-instructors-list-item
  .storybook-card-container
  .storybook-card-content {
  width: 100%;
}

.storybook-myteam .storybook-card-container .storybook-card-image img {
  border-radius: 50%;
  object-fit: cover;
  height: 64px;
  width: 64px;
}

.storybook-myteam
  .storybook-card-container
  .storybook-card-content
  .storybook-card-title {
  font-size: var(--font-size-18);
  margin-bottom: 0;
}

.storybook-myteam-instructors-show-more {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 15px;
}

.storybook-myteam-instructors-show-more img {
  width: 14px;
}

.storybook-myteam-instructors-show-more .expand-rotate {
  transform: rotate(180deg);
}

.storybook-myteam-slack {
  grid-area: slack;
  justify-self: end;
}
.storybook-myteam-email {
  grid-area: email;
  max-width: fit-content;
  position: relative;
}
.storybook-myteam-email a + span {
  background-color: var(--cream-light);
  cursor: text;
  display: none;
  top: -30px;
  padding: 5px 10px;
  position: absolute;
  border-radius: 5px;
  box-shadow: 0px 2px 4px #00000029;
  font-size: 12px;
  border: 1px solid var(--tt-border-color);
  left: -50%;
  text-wrap: nowrap;
}
.storybook-myteam-email a + span::before {
  background-color: var(--cream-light);
  content: "";
  display: block;
  height: 8px;
  box-shadow: 2px 2px 2px #00000012;
  position: absolute;
  width: 8px;
  bottom: -4px;
  left: 50%;
  margin-left: -17px;
  transform: rotate(45deg);
}
.storybook-myteam-email a + span::after {
  content: "";
  display: block;
  height: 12px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
}
.storybook-myteam-email a + span:hover,
.storybook-myteam-email a:hover + span {
  display: block;
}
.storybook-myteam-phone {
  align-items: center;
  display: flex;
  gap: 5px;
  font-size: var(--font-size-14) !important;
}

.storybook-myteam-member-contact {
  column-gap: 20px;
  display: flex;
  justify-content: center;
}

.storybook-myteam-counselors-list.white-container,
.storybook-myteam-instructors-list-item.white-container {
  height: 315px;
}
.storybook-myteam-instructors-list {
  position: absolute;
  top: 110px;
  left: 0;
  width: 100%;
  min-height: 315px;
}

.storybook-myteam-instructors-list-item {
  transition: max-height 0.5s ease-in-out;
}

.storybook-myteam-instructors-list-item.show,
.storybook-myteam .white-container.show {
  height: auto;
  max-height: 100%;
  transition: max-height 0.5s ease-in-out;
}

.storybook-myteam-counselor-list-item .storybook-card-container {
  max-width: 100%;
}

.storybook-myteam .storybook-card-title {
  font-size: var(--font-size-18);
  line-height: var(--line-spacing-23);
  color: var(--grey-darker);
  font-weight: var(--font-weight-bold);
  /* font: normal normal bold 18px/23px Lato; */
}

.storybook-myteam-course-details,
p.storybook-myteam-course-details {
  font-size: var(--font-size-14);
  color: var(--blue-darker);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-spacing-20);
}

.storybook-myteam-course-details.alt-color {
  color: var(--brown);
}

.storybook-myteam-course-details span {
  color: var(--grey-light);
  margin: 0 0.5em;
}

.storybook-myteam-title {
  font-size: var(--font-size-14);
  color: var(--green-darker);
  font-weight: var(--font-weight-regular);
  margin: 0.1em;
}

.storybook-myteam .storybook-button {
  margin: 0.35em 0;
}

.storybook-myteam .storybook-button--small {
  padding: 3px 10px 3px 10px;
  min-width: 145px;
}

.storybook-myteam-member-contact p > a {
  align-items: center;
  display: flex;
  color: var(--grey-darker);
  font-size: var(--font-size-14);
  gap: 5px;
  text-decoration: none;
}

.storybook-myteam-email svg,
.storybook-myteam-phone svg {
  font-size: var(--font-size-16) !important;
  margin-right: 0.15em;
  filter: grayscale(100%) brightness(0%);
}

.storybook-myteam .storybook-card-container {
  border: 0;
  padding: 30px 20px;
}

.storybook-myteam-copy {
  max-width: 950px;
  border-bottom: 1px solid var(--grey-disabled);
  padding-bottom: 2em;
  font-size: var(--font-size-14);
}

.storybook-myteam-instructional-faculty,
.storybook-myteam-peer-tutors,
.storybook-myteam-academic-success-counselors {
  display: flex;
  flex-direction: row;
  flex-flow: row wrap;
  gap: 1em;
  max-width: 950px;
  align-items: center;
}

.storybook-myteam-instructional-faculty a,
.storybook-myteam-peer-tutors a,
.storybook-myteam-academic-success-counselors a {
  color: var(--red-dark);
  text-decoration: none;
}

.storybook-myteam-instructional-faculty a,
.storybook-myteam-peer-tutors a,
.storybook-myteam-academic-success-counselors a {
  color: var(--red-dark);
  text-decoration: none;
}

.storybook-myteam-instructional-faculty img,
.storybook-myteam-peer-tutors img,
.storybook-myteam-academic-success-counselors img {
  flex-basis: 50%;
  max-width: 280px;
  flex-grow: 1;
}

.storybook-myteam-instructional-faculty div,
.storybook-myteam-peer-tutors div,
.storybook-myteam-academic-success-counselors div {
  flex-grow: 2;
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.storybook-myteam-peer-tutors div {
  align-items: flex-end;
}

.storybook-myteam-instructional-faculty h2,
.storybook-myteam-peer-tutors h2,
.storybook-myteam-academic-success-counselors h2 {
  margin-bottom: 0;
  font-size: var(--font-size-18);
}

.storybook-myteam-peer-tutors h2 {
  align-self: flex-start;
}

.storybook-myteam-instructional-faculty p,
.storybook-myteam-peer-tutors p,
.storybook-myteam-academic-success-counselors p {
  text-align: left;
  font-size: var(--font-size-14);
  margin-top: 0.05em;
}

.storybook-myteam-assistance {
  border-top: 1px solid var(--grey-disabled);
  padding-top: 20px;
  margin-top: 40px;
  font-size: var(--font-size-12);
  max-width: 1000px;
  width: 100%;
}

.storybook-modal.modal-bio {
  white-space: normal;
}

.modal-bio .storybook-modal-icon-container {
  background-color: var(--grey-disabled);
  border-radius: 50%;
  overflow: hidden;
  height: 150px;
  margin: 0 auto 25px;
  width: 150px;
}

.modal-bio .storybook-modal-icon-container img {
  border-radius: 50%;
  max-width: 100%;
}

.modal-bio--row {
  margin-bottom: 20px;
}

.modal-bio .storybook-modal-body h2 {
  color: var(--grey-darker);
  margin: 10px 0 20px;
}

.modal-bio .storybook-modal-body h2,
.modal-bio .storybook-modal-body b,
.modal-bio .storybook-modal-body p {
  justify-content: flex-start;
  text-align: left;
}

.modal-bio .storybook-modal-body p {
  font-size: var(--font-size-14);
}

.modal-bio .storybook-myteam-member-contact {
  grid-template-columns: auto;
  justify-content: flex-start;
}

.modal-bio .storybook-modal-footer button {
  width: 110px;
}

/* 1052 break point */
@media (max-width: 1160px) {
}

@media (min-width: 801px) {
  .storybook-myteam-counselor-list-item .storybook-card-container {
    width: 100%;
  }
}

@media (max-width: 800px) {
  .storybook-myteam-instructors,
  .storybook-myteam-counselors {
    grid-auto-flow: column;
    max-width: 800px;
  }
  .storybook-myteam-instructors-list {
    position: relative;
    top: 0;
    left: 0;
  }

  .storybook-myteam-instructors-list-item .storybook-card-container,
  .storybook-myteam-counselor-list-item .storybook-card-container {
    flex-basis: unset;
  }

  .storybook-myteam-members {
    display: grid;
    grid-template-columns: 100%;
    grid-column-gap: 2em;
  }

  .storybook-myteam .storybook-card-container {
    padding-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .modal-bio .storybook-modal-icon-container {
    height: 300px;
    width: 300px;
  }
}

@media (max-width: 672px) {
  .storybook-myteam-instructors-list-item .storybook-card-container,
  .storybook-myteam-counselor-list-item .storybook-card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .storybook-myteam-peer-tutors div {
    order: 2;
  }
  .storybook-myteam-peer-tutors img {
    order: 1;
  }
  .storybook-modal.modal-bio .storybook-myteam-member-contact {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
  }
}

@media (max-width: 428px) {
  .storybook-myteam main {
    gap: 0;
  }

  .storybook-myteam h2 {
    font-size: var(--font-size-18);
    margin-bottom: 0;
  }

  .storybook-myteam h2,
  .storybook-myteam p {
    text-align: left;
  }

  .storybook-myteam .storybook-card-title {
    text-align: center;
  }

  .storybook-myteam p {
    margin-top: 0.1em;
  }

  .storybook-myteam-instructors-list-item {
    height: 530px;
    max-height: 530px;
    margin-bottom: revert;
  }

  .storybook-myteam-instructional-faculty,
  .storybook-myteam-peer-tutors,
  .storybook-myteam-academic-success-counselors {
    position: relative;
    padding: 1em 1.5em;
  }

  .storybook-myteam-instructional-faculty div,
  .storybook-myteam-peer-tutors div,
  .storybook-myteam-academic-success-counselors div {
    z-index: 2;
  }

  .storybook-myteam-instructional-faculty div p,
  .storybook-myteam-peer-tutors div p,
  .storybook-myteam-academic-success-counselors div p {
    font-size: var(--font-size-14);
  }

  .storybook-myteam-instructional-faculty h2,
  .storybook-myteam-peer-tutors h2,
  .storybook-myteam-academic-success-counselors h2 {
    font-size: var(--font-size-16);
  }

  .storybook-myteam-instructional-faculty img,
  .storybook-myteam-peer-tutors img,
  .storybook-myteam-academic-success-counselors img {
    position: absolute;
    bottom: 20px;
    right: 0;
    z-index: 1;
    max-width: 200px;
    opacity: 0.2;
  }

  .storybook-myteam-peer-tutors img {
    bottom: 8px;
    left: 10px;
  }

  .storybook-myteam-academic-success-counselors img {
    bottom: 10px;
  }

  .storybook-myteam-members .storybook-card-content,
  .storybook-myteam-members .storybook-card-content * {
    align-items: center;
  }

  .storybook-myteam-member-contact {
    flex-wrap: wrap;
  }

  .storybook-myteam-counselors-list.white-container {
    height: 300px;
  }

  .storybook-myteam-phone {
    margin-top: 0;
    padding-top: 0;
  }

  .storybook-myteam p.storybook-myteam-copy {
    text-align: center;
    padding: 0.8em 3.25em 1em 3.25em;
    font-size: var(--font-size-14);
  }

  .storybook-myteam-instructional-faculty {
    padding-top: 0;
  }

  .storybook-modal.modal-bio .storybook-modal-body {
    max-width: 100%;
  }
}

.storybook-calltoaction.card {
  background-color: var(--white-pure);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 10px;
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.16));
  text-align: center;
}

.storybook-calltoaction.card .storybook-button {
  margin-top: 5px;
}

.storybook-calltoaction.card h2 {
  color: var(--blue-purple);
  margin-top: 0;
  margin-bottom: 10px;
}

.storybook-calltoaction.card p {
  color: var(--grey-darker);
}

.storybook-calltoaction.card a {
  color: var(--red);
}

@media (min-width: 768px) {
  .storybook-calltoaction.card {
    padding: 30px 11%;
    margin-bottom: 20px;
  }

  .storybook-calltoaction.card .storybook-button {
    margin-top: 15px;
  }

  .storybook-calltoaction .storybook-button {
    max-width: 200px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .storybook-calltoaction.card h2 {
    font-size: var(--font-size-16);
    line-height: var(--line-spacing-20);
  }

  .storybook-calltoaction.card p {
    font-size: var(--font-size-12);
    line-height: var(--line-spacing-20);
  }
}

.wellness .page-title p {
  white-space: pre-line;
  white-space: pre-wrap;
}

.wellness-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 100%;
}

.wellness-col {
  align-items: center;
  display: flex;
  flex-direction: row;
  padding: 0 10px;
}

.wellness-col img {
  max-width: 250px;
  width: 100%;
}

.wellness-col p {
  color: var(--grey-dark);
  line-height: var(--line-spacing-20);
  margin: 0;
  white-space: pre-wrap;
}

.wellness-message {
  margin: 15px 0 0 0;
}

.wellness-message svg {
  cursor: pointer;
  font-size: 16px;
}

@media (min-width: 768px) {
  .card {
    padding: 30px 11%;
    margin-bottom: 20px;
  }

  .card .storybook-button {
    margin-top: 15px;
  }

  .wellness .storybook-button {
    max-width: 200px;
    width: 100%;
  }

  .wellness-col {
    flex-direction: column;
    padding: 0 55px;
    text-align: center;
    width: 33.333333%;
  }

  .wellness-col:not(:last-child) {
    border-right: 1px solid var(--grey-disabled);
  }

  .wellness-col h3 {
    margin: 10px 0;
  }

  .wellness-row {
    flex-direction: row;
    margin: 30px 0;
  }
}

@media (max-width: 767px) {
  .wellness > h2 {
    font-size: var(--font-size-18);
    margin-bottom: 10px;
  }

  .wellness > p {
    font-size: var(--font-size-12);
    line-height: var(--line-spacing-20);
    margin-top: 0;
  }

  .wellness-row {
    padding: 10px 0;
  }

  .wellness-col {
    gap: 10px;
    margin-bottom: 20px;
  }

  .wellness-col h3 {
    font-size: var(--font-size-14);
    line-height: var(--line-spacing-20);
    margin-bottom: 5px;
  }

  .wellness-col p {
    font-size: var(--font-size-12);
  }

  .wellness-col img {
    width: 35%;
  }

  .card h2 {
    font-size: var(--font-size-16);
    line-height: var(--line-spacing-20);
  }

  .card p {
    font-size: var(--font-size-12);
    line-height: var(--line-spacing-20);
  }
}

.wellness .card {
  padding: 30px 6%;
}

@media (max-width: 767px) {
  .accordion-content p {
    font-size: var(--font-size-12);
  }
}
.career-sidebar {
  background: var(--white-pure);
  border-radius: 8px;
  box-sizing: border-box;
  height: fit-content;
  flex-shrink: 0;
  padding: 30px 30px 50px;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}

.career-sidebar > p {
  color: var(--grey);
}

.career-sidebar hr {
  border-top-color: var(--grey-disabled);
  border-width: 1px 0 0 0;
  border-style: solid;
  margin: 20px 0;
}

.career-sidebar h4 {
  color: var(--grey-dark);
}

.career-sidebar h3 {
  color: var(--blue-purple);
  margin-top: 0;
}

.career-workshops {
  margin-bottom: 45px;
}

.career-workshops + a {
  color: var(--red);
  font-size: var(--font-size-14);
  line-height: var(--line-spacing-24);
}

.career-workshops + b {
  color: var(--grey-light);
  font-size: var(--font-size-14);
  line-height: var(--line-spacing-24);
}

.career-workshops__item {
  display: block;
  line-height: 1;
  align-items: center;
  display: flex;
  font-size: var(--font-size-12);
  text-align: left;
  margin-bottom: 20px;
}

p.career-workshops__item.active {
  color: var(--grey-darker);
}

p.career-workshops__item {
  color: var(--grey-light);
}

.career-workshops__item .career-color {
  border-radius: 50%;
  background-color: var(--grey-lighter);
  display: block;
  flex-shrink: 0;
  margin-right: 10px;
  height: 16px;
  width: 16px;
}

.career-color.red {
  background-color: var(--career-red);
}

.career-color.yellow {
  background-color: var(--career-yellow);
}

.career-color.blue {
  background-color: var(--career-blue);
}

.career-color.green {
  background-color: var(--career-green);
}

@media (min-width: 768px) {
  .career-sidebar {
    max-width: 295px;
    margin-bottom: 40px;
  }

  .career-sidebar hr {
    margin: 25px 0;
  }

  .career-workshops__item {
    font-size: var(--font-size-14);
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .career-sidebar > p {
    font-size: var(--font-size-12);
  }

  .career-sidebar h3 {
    font-size: var(--font-size-16);
    margin-bottom: 0;
  }

  .career-sidebar h4 {
    font-size: var(--font-size-12);
  }

  .career-workshops {
    max-width: 220px;
    margin: 0 auto 20px;
  }
}
.career-services .wellness {
  padding-bottom: 0;
}

.career-services .wellness button {
  max-width: 220px;
}

.career-services .accordion button h4 {
  text-align: left;
}

@media (min-width: 768px) {
  .careers-row {
    display: flex;
  }

  .careers-row .career-sidebar {
    margin-right: 20px;
  }
}

@media (max-width: 767px) {
  .career-services .card,
  .career-services .career-sidebar {
    margin-bottom: 10px;
  }
}

.page-resources.skeleton-container .storybook-list-item {
  padding-right: 20px;
  min-width: 80px;
}
.page-resources .skeleton-container {
  margin-inline: 1.5rem;
}
.page-resources .skeleton-container .resources-copy {
  min-width: 70%;
}
.page-resources .skeleton-container .resources-row {
  background-color: var(--grey-brightest);
}

.page-intro-showmore {
  display: none;
}

@media (max-width: 480px) {
  .page-intro.hide {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .page-intro-showmore {
    display: block;
    bottom: 220px;
    left: 10px;
    margin-bottom: 0.8rem;
    margin-top: -15px;
  }
  .page-intro-showmore p {
    display: flex;
    padding: 0px;
    margin: 0px;
    color: var(--red);
    cursor: pointer;
  }
}

.resources {
  position: relative;
}

.resources > p {
  margin-top: 0;
}

.btn-close,
.btn-focus {
  background-color: transparent;
  border-width: 0;
  box-shadow: none;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  position: absolute;
  top: 20px;
  z-index: 5;
}

.btn-close span {
  color: var(--red);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  gap: 6px;
}

.btn-close span img {
  margin-top: 1px;
}

.btn-focus img:hover {
  filter: invert(37%) sepia(81%) saturate(6117%) hue-rotate(16deg)
    brightness(96%) contrast(94%);
}

.resources-wrap {
  position: relative;
  display: flex;
}

.resources-left {
  position: relative;
  width: 100%;
}

.resources-right--inner::-webkit-scrollbar,
.toggle .resources-left--inner::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 6px;
}

.resources-right--inner::-webkit-scrollbar-thumb,
.toggle .resources-left--inner::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: var(--grey-lighter);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

.resources-left--inner.hide {
  display: none;
}
.resources-right.max-width {
  width: 99%;
  margin: auto;
}
.resources-right.max-width .resources-arrow {
  display: none;
}

.resources-right {
  position: relative;
  height: fit-content;
  flex-shrink: 0;
  width: 100%;
}

.resources-left,
.resources-right {
  box-sizing: border-box;
  margin-bottom: 30px;
}

.resources-right,
.resources-row {
  background-color: var(--white-pure);
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 8px;
}

.resources-row {
  align-items: center;
  border: 1px solid transparent;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  gap: 10px;
  transition: all 0.2s ease-in-out;
  padding: 30px 20px 20px;
  position: relative;
}

.resources-right {
  padding: 10px 0 0 0;
}

.resources-right--inner {
  padding: 20px;
}

.resources-arrow {
  background-color: var(--white-pure);
  display: none;
  position: absolute;
  height: 30px;
  width: 30px;
  box-shadow: -2px 3px 3px #00000015;
  left: -12px;
  margin-top: 70px;
  z-index: 0;
  transform: rotate(45deg);
}

.resources-arrow.remove-arrow {
  display: none;
}

.resources-row.active,
.resources-row:hover {
  background-color: var(--hover-row);
  border-color: var(--red);
}

.resources-row h3 {
  color: var(--blue-purple);
  margin: 0;
  line-height: var(--line-spacing-30);
}

.resources-row p {
  color: var(--grey-dark);
  margin: 10px 0 0 0;
  line-height: var(--line-spacing-20);
}

.resources-right h2 {
  color: var(--blue-purple);
}

.resources-right h2 + p {
  color: var(--grey-dark);
  line-height: var(--line-spacing-20);
}

.resources-content {
  position: relative;
  padding: 0 10px;
  z-index: 2;
}

.resources-content {
  color: var(--grey-darker);
}

.resources-content h3 {
  font-size: var(--font-size-14);
  line-height: var(--line-spacing-20);
  margin: 30px 0 10px;
}

.resources-content li,
.resources-content p {
  line-height: var(--line-spacing-20);
}

.resources-content li {
  margin-bottom: 5px;
}

.resources-content a,
.resources-content b {
  color: var(--red);
  font-size: var(--font-size-14);
}

.resources-content a {
  text-decoration: none;
}

.resources-content a:hover {
  text-decoration: underline;
}

.resources-content hr {
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: var(--grey-disabled);
  margin-left: -10px;
}
.resource-msg {
  position: absolute;
  right: 1rem;
  top: 0;
}

.resources-right img.resource-bg {
  position: absolute;
  right: 10px;
  bottom: 10px;
  opacity: 0.2;
  z-index: 1;
}

.page-intro-showmore {
  display: none;
}

.btn-focus + span {
  background-color: var(--white-pure);
  cursor: text;
  display: none;
  top: -12px;
  padding: 5px 10px;
  position: absolute;
  border-radius: 5px;
  box-shadow: 0px 2px 4px #00000029;
  font-size: 12px;
  border: 1px solid var(--tt-border-color);
  right: 10px;
  text-wrap: nowrap;
}
.btn-focus + span::before {
  background-color: var(--white-pure);
  content: "";
  display: block;
  height: 8px;
  box-shadow: 2px 2px 2px #00000012;
  position: absolute;
  width: 8px;
  bottom: -4px;
  left: 50%;
  margin-left: -17px;
  transform: rotate(45deg);
}
.btn-focus + span::after {
  content: "";
  display: block;
  height: 12px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
}
.btn-focus + span:hover,
.btn-focus:hover + span {
  display: block;
}

@media (min-width: 1200px) {
  /* .resources-right, */
  .resources-row {
    padding: 30px;
  }

  .resources-content {
    padding: 10px 30px 0;
  }
}

@media (max-width: 1199px) {
  .resources-row img {
    width: 120px;
  }
}

@media (min-width: 992px) {
  .resources-row {
    padding: 30px 20px;
  }
  .btn-close {
    right: 20px;
  }
  .btn-focus {
    right: 50px;
  }
  .btn-close span {
    display: none;
  }
  .resources-left.toggle .resources-left--inner {
    padding-right: 10px;
  }
  .resources-left.toggle {
    padding-right: 14px;
  }
  .toggle .resources-left--inner {
    height: 780px;
  }
  .resources-right {
    position: relative;
    width: 62%;
  }
  .toggle .resources-left--inner {
    overflow-x: hidden;
    overflow-y: auto;
  }
  .resources-arrow {
    display: block;
  }
  .resources-right {
    padding: 10px 10px 0;
  }
  .resources-right--inner {
    height: 750px;
    overflow-y: auto;
  }
}

@media (max-width: 991px) {
  .btn-focus {
    display: none;
  }
  .btn-close {
    left: 12px;
  }
  .btn-close > img {
    display: none;
  }
  .resources-left.toggle {
    display: none;
  }
  .resources-row img {
    width: 120px;
  }
}

@media (min-width: 768px) {
  .resources-row {
    gap: 30px;
    margin-bottom: 20px;
  }
  .resources-right img.resource-bg {
    right: 20px;
    bottom: 20px;
    width: 400px;
  }
  .resources-row p,
  .resources-content ul,
  .resources-content ol {
    font-size: var(--font-size-14);
  }

  .resources-row img {
    height: 113px;
  }
}

@media (max-width: 767px) {
  .resources-row {
    overflow: hidden;
    margin-bottom: 10px;
  }
  .resources-row div {
    overflow: hidden;
  }
  .resources-row h3 {
    font-size: 14px;
  }
  .resources-row p,
  .resources-content ul,
  .resources-content ol {
    font-size: var(--font-size-12);
  }
  .resources-content ul,
  .resources-content ol {
    padding-left: 16px;
  }
  .resources-row p {
    margin-top: 2px;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  .resources-row img {
    width: 90px;
  }
  .resources-right img.resource-bg {
    width: 150px;
  }
  .resources-right h2 {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .resources-right p,
  .resources-right a,
  .resources-right b {
    font-size: 12px;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .page-intro.hide {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .page-intro-showmore {
    display: block;
    bottom: 220px;
    left: 10px;
    margin-bottom: 0.8rem;
    margin-top: -15px;
  }
  .page-intro-showmore p {
    display: flex;
    padding: 0px;
    margin: 0px;
    color: var(--red);
    cursor: pointer;
  }
  .resource-msg {
    top: 5px;
  }
}


.storybook-team.white-container {
  background: var(--white-pure) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px var(--grey-lighter);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 50px;
}

.storybook-team > h2 {
  font-size: 18px;
  color: var(--blue-purple);
  width: auto;
}

.storybook-team .storybook-card-title {
  margin: 0.12em 0;
}

.storybook-team hr {
  margin-inline: 0.21rem;
  border:0;
  border-top: 1px double var(--grey-lighter);
}

.storybook-team .storybook-card-container {
  max-width: 100%;
  width: 100%;
}

.storybook-team--cards {
  display: flex;
}

.storybook-team .storybook-card-content > * {
  color: var(--grey);
  text-align: left;
  justify-content: unset;
  padding-top: unset;
}

.storybook-team .storybook-card-container p {
  justify-content: flex-start;
}

.storybook-teammember--contacts {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.storybook-teammember--contacts p {
  padding: 0;
}

.storybook-teammember--contacts a {
  align-items: center;
  color: var(--grey);
  display: flex;
  gap: 5px;
  text-decoration: none;
}

.storybook-teammember--contacts a:hover {
  color: var(--red);
}

.storybook-teammember--contacts a:hover img {
  filter: brightness(0) saturate(100%) invert(31%) sepia(64%) saturate(1747%) hue-rotate(354deg) brightness(95%) contrast(102%);
}

.storybook-team .storybook-card-content h2 {
  color: var(--grey-darker);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-spacing-23);
}

.storybook-team .storybook-card-image {
  justify-content: flex-start;
  margin-bottom: 10px;
}

.storybook-team .storybook-card-image img {
  border-radius: 8px;
  object-fit: cover;
  height: 64px;
  width: 64px;
}

.storybook-team .storybook-teammember-slack {
  color: unset;
  width: fit-content;
}

@media screen and (min-width: 992px) {
  .storybook-team .storybook-card-container {
    padding: 0 20px;
  }

  .storybook-team .storybook-card-container:first-child {
    padding-left: 20px;
  }

  .storybook-team .storybook-card-container:not(:last-child) {
    border-right: 1px solid var(--button-bg-disabled);
  }
}

@media screen and (min-width: 1200px) {
  .storybook-team .storybook-card-container {
    padding: 0 40px;
  }
}

@media screen and (max-width: 991px) {
  .storybook-team--cards {
    flex-direction: column;
  }

  .storybook-team .storybook-card-container {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    gap: 20px;
    border-top: 1px solid var(--button-bg-disabled);
  }

  .storybook-team .storybook-card-content h2 {
    margin-top: 0;
  }
  
  .storybook-team .storybook-card-image {
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .storybook-team .storybook-card-content > * {
    font-size: var(--font-size-12);
  }
}
.storybook-learning .resources-left {
  margin-bottom: unset;
}

.storybook-learning .resources-left,
.storybook-learning .resources-right--inner {
  height: auto;
}

.storybook-learning .resources-right {
  margin-bottom: 20px;
}

.storybook-learning .toggle .resources-left--inner {
  height: auto;
}

.resources-content [disabled],
.resources-content .storybook-button[disabled] {
  cursor: unset;
}

@media screen and (min-width: 992px) {
  .storybook-learning .resources-right {
    height: 955px;
  }
}

@media (max-width: 991px) {
  .storybook-learning .resources-right {
    margin-bottom: 10px;
  }
}

.storybook-search-container {
  position: relative;
  display: flex;
  gap: 5px;
  border: 2px solid var(--white-pure);
  border-radius: 20px;
  background-color: var(--white-pure); 
  margin-left: auto;
  max-width: 100%;
  max-height: 40px;
  padding: 0;
}

.storybook-search-input {
  flex-grow: 1;
  order: 1;
  border: none;
  outline: none;
  border-radius: 20px;
  color: var(--grey-darker);
  font-size: var(--font-size-14);
  font-family: var(--font-family-lato);
  width: 100%;
  padding: 8px 14px 10px;
  height: 36px;
}

.storybook-search-icon {
  order: 2;
  cursor: pointer;
  padding: 6px 16px 6px 8px;
  box-sizing: content-box;
}

.storybook-search-container .storybook-search-icon {
  fill: var(--grey-dark);
}

.storybook-search-container:focus-within {
  border-color: var(--red);
}

.storybook-search-container:focus-within .storybook-search-icon {
  fill: var(--red);
}

.storybook-search-recent-container {
  position: absolute;
  background-color: var(--white-pure);
  border-radius: 6px;
  box-shadow: 0px 3px 6px #00000029;
  z-index: 1;
  top: calc(100% + 10px);
  width: 100%;
}

.storybook-search-recent-header {
  color: var(--grey-light);
  font-size: var(--font-size-14);
  font-weight: bold;
  padding: 11px 20px;
  border-bottom: 1px solid #eeeeee;
}

.storybook-search-recent-item {
  padding: 11px 20px;
  border-bottom: 1px solid var(--button-bg-disabled);
  cursor: pointer;
  font-size: var(--font-size-14);
  font-weight: bold;
  color: var(--grey-darker);
}

.storybook-search-recent-item:last-child {
  border-bottom-color: var(--grey-disabled);
}

.storybook-search-recent-item:hover {
  background-color: var(--button-bg-disabled);
  color: var(--red);
}

@media (max-width: 1080px) {
  .storybook-search-container {
    gap: 3px;
  }
  .storybook-search-input {
    font-size: var(--font-size-12);
  }
}

.storybook-help header svg[data-testid="QuestionMarkOutlinedIcon"],
.storybook-icon-container svg[data-testid="QuestionMarkOutlinedIcon"]:hover {
  color: var(--red);
  outline: 2px solid var(--red);
}

.storybook-help-content {
  display: flex;
  gap: 20px;
}

.storybook-help-search {
  border-radius: 8px;
  background-color: var(--tan);
  box-shadow: 0px 3px 6px #00000029;
  position: relative;
  max-width: 922px;
}

.storybook-help-search h2 {
  font-size: var(--font-size-18);
  color: var(--blue-purple);
  margin: 0 0 20px 0;
  width: auto;
}

.storybook-help .storybook-search-container {
  border: 2px solid var(--white-pure);
  max-width: 100%;
  max-height: 40px;
  padding: 0;
  transition: all 0.2s ease-in-out;
}

.focused .storybook-search-container {
  border-color: var(--red);
}

.storybook-help-search .storybook-search-icon {
  border-radius: 50%;
  box-sizing: content-box;
  fill: var(--grey-dark);
  padding: 6px 16px 6px 8px;
  order: 2;
  transition: all 0.2s ease-in-out;
}

.storybook-help-search .storybook-search-icon:hover,
.focused .storybook-search-icon {
  fill: var(--red);
}

.storybook-help-search .storybook-search-input {
  border-radius: 25px;
  border-width: 0;
  border-color: transparent;
  color: var(--grey-darker);
  padding: 8px 14px 10px;
  height: 36px;
}

.storybook-help-search .storybook-search-input::placeholder {
  color: var(--grey-light);
}

.storybook-help-search-wrapper {
  padding: 20px 20px 30px 20px;
}

.storybook-help-search-results {
  background-color: var(--white-pure);
  border-radius: 0 0 8px 8px;
}

.storybook-help-search-results.box-out.no-results,
.storybook-help-search-results.box-out,
.storybook-help-search-results.box-inner {
  padding: 20px;
}

.storybook-help-search-results-back {
  color: var(--red);
  cursor: pointer;
  font-weight: bold;
  gap: 7px;
  padding-bottom: 20px;
  margin: 0;
}

.storybook-help-search-results-items {
  color: var(--grey);
  font-weight: bold;
  line-height: var(--line-spacing-16);
  margin: 0;
}

.storybook-help-categories .storybook-app-badge,
.storybook-help-search-noresults-categories .storybook-app-badge {
  border: 1px solid var(--grey-disabled);
  border-radius: 6px;
  margin: unset;
}

.storybook-help-categories.box-out .storybook-app-badge,
.storybook-help-search-noresults-categories .storybook-app-badge {
  padding: 1rem;
}

.storybook-help-search-noresults {
  text-align: center;
  margin: 10px 0 50px;
}

.storybook-help-search-noresults h2 {
  color: var(--grey-darker);
  font-size: var(--font-size-18);
}

.storybook-help-search-noresults p {
  font-size: var(--font-size-14);
  line-height: var(--line-spacing-20);
  color: var(--grey-dark);
}

.storybook-help-categories .storybook-app-badge {
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.storybook-help-search-results.no-results .storybook-app-badge,
.storybook-help-search-results.box-inner .storybook-app-badge {
  align-items: center;
  display: flex;
  gap: 10px;
  padding: 10px;
  width: 100%;
}

.storybook-help-search-results.box-inner .storybook-app-badge {
  flex-direction: row;
}

.storybook-help-search-results.box-inner .storybook-app-badge--copy {
  line-height: var(--line-spacing-20);
  text-align: left;
}

.storybook-help-categories .storybook-app-badge:hover,
.storybook-help-categories .storybook-app-badge[active="true"],
.storybook-help-search-noresults-categories .storybook-app-badge:hover {
  border: 1px solid var(--red);
  background: var(--button-bg-disabled);
  cursor: pointer;
}

.storybook-help-search-results.box-inner.storybook-app-badge[active="true"] img,
.storybook-help-search-noresults-categories .storybook-app-badge img {
  height: 32px;
  margin: 0;
  min-width: unset;
  min-height: unset;
  width: 32px;
}

.storybook-help-categories .storybook-app-badge[active="true"] span,
.storybook-help-categories .storybook-app-badge.active-sibling span,
.storybook-help-search-noresults-categories .storybook-app-badge span {
  text-align: left;
  margin-bottom: 0.5rem;
  font-size: var(--font-size-12);
}

.storybook-help-search-noresults-categories .storybook-app-badge span {
  font-weight: bold;
}

.storybook-help-search-results.box-out:not(.no-results)
  .storybook-app-badge
  img {
  margin-bottom: 20px;
  min-height: 100px;
  min-width: 100px;
}

.storybook-help-categories .storybook-app-badge span {
  color: var(--grey-darker);
  font-size: var(--font-size-14);
  font-weight: bold;
}

.storybook-help-aside {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background: var(--white-pure) 0% 0% no-repeat padding-box;
  padding: 30px 20px;
  text-align: center;
  width: 100%;
}

.storybook-help-aside h2,
.storybook-help-aside h4 {
  color: var(--blue-purple);
  margin: 0 0 10px 0;
}

.storybook-help-aside h2 {
  line-height: var(--line-spacing-30);
}

.storybook-help-aside-block p {
  color: var(--grey-dark);
  font-size: 14px;
  line-height: var(--line-spacing-20);
}

.storybook-help-aside-block--contact-us p {
  color: var(--grey-darker);
}

.storybook-help-aside-block p + p {
  margin-bottom: 5px;
}

.storybook-help-aside hr {
  border-top-color: var(--grey-disabled);
  margin: 30px 0;
}

.storybook-help-aside a,
.storybook-help-aside a:visited,
.storybook-help .accordion-content a {
  color: var(--red);
}

.storybook-help-aside .storybook-button {
  border-radius: 6px;
  font-weight: bold;
  width: 120px;
}

.storybook-help-aside-block {
  max-width: 200px;
  margin: 0 auto 50px;
}

.storybook-help .accordion-content,
.storybook-help .accordion-title h4 {
  font-size: var(--font-size-14);
}

.storybook-help .accordion-content p {
  font-size: var(--font-size-12);
  margin: 0;
}

.storybook-help .accordion > h4 {
  margin-bottom: 20px;
}

.storybook-help .accordion {
  padding: 20px 0px 5px;
}

.storybook-help .accordion-title {
  padding: 15px 40px 15px 20px;
}

.storybook-help .accordion-item:last-child .accordion-title {
  border-bottom: 1px solid var(--grey-disabled);
}

.storybook-help .accordion-content {
  padding: 20px;
}

.storybook-help-search-suggestion-category {
  background-color: #f7f7f7;
  border-color: var(--grey-disabled);
  border-style: solid;
  border-width: 0 1px 1px 0;
  color: var(--blue-purple);
  grid-area: category;
  margin: 0;
  padding: 10px 0 10px 20px;
}

.storybook-help-search-suggestion-item:last-child div p:last-child,
.storybook-help-search-suggestion-item:last-child h4 {
  border-bottom-width: 0;
}

.storybook-help-search-suggestion-questions {
  grid-area: questions;
}
.storybook-help-search-suggestion-question,
.storybook-help-search-suggestions div p {
  margin-bottom: 0;
}

.storybook-help-search-suggestion-item {
  display: grid;
  grid-template-columns: 250px auto;
  grid-template-areas: "category questions";
  grid-template-rows: auto;
}
.storybook-help-search-suggestion-item:last-of-type
  .storybook-help-search-suggestion-category:last-of-type {
  border-radius: 0 0 0 8px;
}
.storybook-help-search-suggestion-item:last-of-type
  .storybook-help-search-suggestion-questions:last-of-type {
  border-radius: 0 0 8px 0;
}

.storybook-help-search-suggestions,
.storybook-help-search-quicklinks {
  display: none;
  position: absolute;
  top: 100px;
  left: 20px;
  right: 20px;
  margin: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 0;
  background-color: var(--white-pure);
  border-radius: 6px;
  box-shadow: 0px 3px 6px #00000029;
  z-index: 1;
}

.storybook-help-search-suggestions h3,
.storybook-help-search-quicklinks h3 {
  color: var(--grey-light);
  font-size: var(--font-size-14);
  margin: 0;
  padding: 8px 20px;
  border-bottom: 1px solid #eeeeee;
}
.storybook-help-search-suggestions p,
.storybook-help-search-quicklinks p {
  align-items: center;
  display: flex;
  min-height: 40px;
  padding: 0 20px;
  border-bottom: 1px solid var(--button-bg-disabled);
  cursor: pointer;
  font-size: var(--font-size-14);
  white-space: pre-wrap;
}

.storybook-help-search-suggestion-questions p:last-child {
  border-bottom-color: var(--grey-disabled);
}
.storybook-help-search-suggestions p:hover,
.storybook-help-search-quicklinks p:hover {
  background-color: var(--button-bg-disabled);
}

.storybook-help-search-suggestions div p,
.storybook-help-search-quicklinks p {
  font-weight: bold;
  font-size: var(--font-size-12);
  margin-bottom: 0;
}

.storybook-help-search-quicklinks p {
  color: var(--grey-darker);
}

.storybook-help-search-suggestions div p {
  color: var(--grey);
}

.storybook-help-search-suggestions div p span {
  color: var(--grey-darker);
}

.storybook-help-search-suggestions div p {
  margin-bottom: 0;
}

.walkthrough-link {
  align-items: center;
  display: flex;
  font-size: var(--font-size-14);
  gap: 5px;
  margin: auto;
  width: fit-content;
}

.icon-rocket {
  display: block;
  height: 16px;
  width: 16px;
}

.icon-live-chat,
.icon-mail-support,
.icon-phone-support {
  display: block;
  margin: 0 auto 10px;
  height: 48px;
  width: 48px;
}

.storybook-help-search-results .left-arrow,
.storybook-help-search-results .right-arrow {
  display: none;
}

.left-arrow,
.right-arrow {
  all: unset;
  cursor: pointer;
}
.left-arrow svg,
.right-arrow svg {
  border: 1px solid transparent;
  border-radius: 1em;
}
.left-arrow svg:hover,
.right-arrow svg:hover {
  color: var(--red);
  background-color: var(--grey-btn);
}

.arrow-disabled svg {
  fill: var(--grey-lighter);
}
.arrow-disabled svg:hover {
  color: unset;
  background-color: unset;
}
.right-arrow.arrow-disabled,
.left-arrow.arrow-disabled {
  cursor: unset;
}

.storybook-help address {
  display: inline-block;
  font-style: normal;
}

@media screen and (min-width: 992px) {
  .storybook-help-search-results.box-out .storybook-app-badge {
    width: clamp(100px, 266px, 36.8%);
  }
  .storybook-help-search-results.box-inner .storybook-app-badge--copy {
    max-width: 70px;
  }
  .storybook-help-search-results.box-out .storybook-help-categories--inner {
    max-width: 880px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .storybook-help-search-results.box-inner .storybook-help-categories--wrapper {
    overflow-x: hidden;
  }
  .storybook-help-search-results.box-out .storybook-help-categories--wrapper {
    overflow-x: unset;
    width: 100%;
  }
  .storybook-help-search-results.box-inner .storybook-help-categories--inner {
    max-width: 800px;
  }
  .storybook-help-search-results.box-inner
    .storybook-help-categories:-webkit-scrollbar {
    display: none;
  }
  .storybook-help-search-results.box-out
    .storybook-help-categories
    .storybook-app-badge {
    max-width: 230px;
  }
  .storybook-help-search-results.box-inner
    .storybook-help-categories
    .storybook-app-badge {
    min-width: 190px;
  }
  .storybook-help-search-results.box-inner .left-arrow,
  .storybook-help-search-results.box-inner .right-arrow {
    display: block;
  }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  .storybook-help-search-results.box-out .storybook-app-badge {
    width: clamp(100px, 320px, 43.8%);
  }

  .storybook-help-search-results.box-inner .storybook-app-badge {
    flex-direction: column;
  }

  .storybook-help-search-results.box-inner .storybook-app-badge--copy {
    text-align: center;
  }
}

/* media query for desktop */
@media (min-width: 768px) {
  .storybook-help-search-results.box-inner .storybook-app-badge img {
    height: 48px;
    width: 48px;
  }

  .storybook-help-search-results .storybook-help-categories--inner {
    column-gap: 10px;
  }

  .storybook-help-search-results.box-inner .storybook-app-badge,
  .storybook-help-search-noresults-categories .storybook-app-badge {
    justify-content: center;
    width: 21%;
  }

  .storybook-help-search-results .storybook-help-categories,
  .storybook-help-search-results.box-inner .storybook-help-categories--inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .storybook-help-search-results.box-out .storybook-help-categories--inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .storybook-help-search-results .storybook-help-categories--inner {
    gap: 10px;
  }
  .storybook-help-search-results.box-out .storybook-help-categories--inner {
    gap: 20px;
  }

  .storybook-help-search-results .left-arrow {
    margin-right: 10px;
  }

  .storybook-help-search-results.box-out {
    padding: 50px 20px;
  }

  .storybook-help-search-results.box-out .storybook-help-categories {
    gap: 30px;
  }

  .storybook-help-search-suggestions div p,
  .storybook-help-search-quicklinks p {
    font-size: var(--font-size-14);
  }

  .storybook-help-search-results.box-out .storybook-app-badge {
    height: 200px;
    justify-content: center;
  }

  .storybook-help-categories .storybook-app-badge span {
    font-size: var(--font-size-16);
  }

  .storybook-help-categories .storybook-app-badge.active-sibling {
    order: 1;
  }

  .storybook-help-search-noresults {
    margin: 10px 0 80px;
  }

  .storybook-help-search-noresults h2 {
    font-size: var(--font-size-24);
  }

  .storybook-help-search-noresults-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .storybook-help-search
    .storybook-help-search-noresults-categories
    .storybook-app-badge
    img {
    min-height: 72px;
    min-width: 72px;
  }

  .storybook-help-search
    .storybook-help-search-noresults-categories
    .storybook-app-badge {
    width: clamp(100px, 320px, 22.4%);
    height: 148px;
    display: flex;
    justify-content: center;
  }

  .storybook-help .accordion {
    width: 100%;
    order: 5;
  }

  .storybook-help .accordion-content {
    padding: 30px 40px;
  }

  .storybook-help .accordion-content p {
    font-size: var(--font-size-14);
  }

  .storybook-help-search-results-back {
    align-items: center;
    display: flex;
    width: 100%;
  }

  .storybook-help-aside {
    flex: 1 0 290px;
  }
}

@media (max-width: 767px) {
  .storybook-help-content {
    flex-direction: column;
  }

  .storybook-help .accordion {
    padding-bottom: 0;
    margin-bottom: 20px;
  }

  .storybook-help .accordion-title {
    padding-left: 10px;
  }

  .storybook-help-search-results.box-inner
    .storybook-app-badge:not(:last-child),
  .storybook-help-search-noresults-categories
    .storybook-app-badge:not([active="true"]) {
    margin-bottom: 10px;
  }

  .storybook-help-search-results.box-out:not(.no-results) .storybook-app-badge {
    padding: 20px;
    flex-direction: column;
    margin: 0 auto 20px;
    width: 260px;
  }

  .storybook-help-search-suggestions div p,
  .storybook-help-search-quicklinks p {
    line-height: var(--line-spacing-20);
  }

  .storybook-help-search-results.box-out .storybook-app-badge:last-child,
  .storybook-help-search-noresults-categories .storybook-app-badge:last-child {
    margin-bottom: 0;
  }

  .storybook-help-search-results.box-out:not(.no-results)
    .storybook-app-badge
    img {
    margin: 0 auto 20px;
  }
}
@media only screen and (max-width: 767px) {
  .storybook-help-search-results.box-inner
    .storybook-app-badge.active-sibling[active="false"] {
    display: none;
  }
}

.storybook-aside {
  padding: 20px;
  background-color: var(--white-pure);
}

.storybook-aside h2 {
  font-size: var(--font-size-16);
  line-height: var(--line-spacing-24);
  color: var(--blue-purple);
  text-align: center;
}

.storybook-aside p {
  font-size: var(--font-size-12);
  color: var(--grey-dark);
  text-align: center;
}

.storybook-aside a {
  color: var(--red);
}

.storybook-aside a:hover {
  text-decoration: underline;
}

.border-radius-all {
  border-radius: 8px;
}

.border-radius-top {
  border-radius: 8px 8px 0 0;
}

.border-radius-bottom {
  border-radius: 0 0 8px 8px;
}

.box-shadow {
  box-shadow: 0px 3px 6px #00000029;
}

@media (min-width: 768px) {
  .storybook-aside {
    padding: 30px;
    max-width: 290px;
  }

  .storybook-aside h2 {
    font-size: var(--font-size-18);
    line-height: var(--line-spacing-30);
  }

  .storybook-aside p {
    font-size: var(--font-size-14);
  }
}

.storybook-avatar-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 1rem;
  max-width:400px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.storybook-avatar-list img {
  max-width: 76px;
  cursor: pointer;
  border:2px solid transparent;
}
.storybook-avatar-list img:hover,
.storybook-avatar-list img.active {
  border: 2px solid var(--red);
  border-radius: 8px;
}

@media (min-width: 767px) {
  .storybook-avatar-list {
    gap: 3.125rem;
  }
  .storybook-avatar-list img {
    max-width: unset;
  }
}
.Toastify__toast-container {
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 9999px);
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--dark {
  background: #121212;
  color: #fff;
}
.Toastify__toast--default {
  background: #fff;
  color: #aaa;
}
.Toastify__toast--info {
  background: #3498db;
}
.Toastify__toast--success {
  background: #07bc0c;
}
.Toastify__toast--warning {
  background: #f1c40f;
}
.Toastify__toast--error {
  background: #e74c3c;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 6px;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--default {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}
.Toastify__progress-bar--default {
  background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
}
.Toastify__progress-bar--dark {
  background: #bb86fc;
}
@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

/*# sourceMappingURL=ReactToastify.css.map */
.profile {
  margin: 0;
  padding: 0;
}

.storybook-aside {
  padding: unset;
}

.profile-content {
  display: flex;
  gap: 20px;
}

.profile-content > div {
  width: 100%;
}

.profile-intro h1 {
  font-size: var(--font-size-18);
  margin-bottom: 0;
}

.profile-intro p {
  font-size: var(--font-size-12);
}

.profile--row {
  justify-content: space-between;
  display: flex;
  margin-bottom: 10px;
}

.profile--row + hr {
  margin: 40px 0 0;
}

.profile--row h5 {
  color: var(--grey-dark);
  margin: 10px 0;
}

.profile--row .profile--tracking {
  color: var(--red);
  margin-bottom: 5px;
}

.white-container {
  background-color: var(--white-pure);
  border-radius: 8px;
  box-shadow: 0px 3px 6px #00000029;
}
.profile-details.white-container {
  padding: 20px;
  margin-bottom: 50px;
}

.showInDesktop {
  display: none;
}

.profile-img {
  grid-area: img;
  max-width: 96px;
  color: var(--grey-darker);
}

.profile-name {
  grid-area: name;
  font-size: var(--font-size-15);
  align-self: end;
  margin-top: 0;
}

.profile--cccid {
  grid-area: cccid;
  font-size: var(--font-size-15);
  align-self: end;
  margin: 0;
}
.profile-details .profile--cccid.showInMobile {
  text-align: unset;
}

.profile .storybook-button {
  grid-area: btn;
  align-self: start;
  font-weight: var(--font-weight-bold);
}

.profile-card {
  display: grid;
  grid-template-areas:
    "img name"
    "img cccid"
    "img btn";
  grid-template-rows: auto 5px 1fr;
  gap: 5px 11px;
  justify-content: center;
  padding-bottom: 1rem;
}

.profile-details p {
  font-size: var(--font-size-12);
  color: var(--grey-dark);
}

.profile--userinfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.profile--userinfo span:nth-child(2) {
  font-weight: var(--font-weight-bold);
}

.profile .red-color {
  color: var(--red-dark);
}

.profile hr {
  border-top: 1px solid var(--grey-disabled);
}

.profile-details .profile-card + hr {
  margin-bottom: 1.5rem;
  width: 80%;
}

.profile--userstatus {
  border-top: 1px solid var(--grey-disabled);
  padding-block: 10px;
  margin-top: 30px;
  text-align: center;
}

.profile--userstatus h3,
.profile--userstatus p {
  font-size: var(--font-size-12);
  color: var(--grey-dark);
}

.profile .storybook-aside {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 20px;
  text-align: center;
  width: 100%;
}
.profile .storybook-aside p {
  font-size: var(--font-size-12);
  line-height: var(--line-spacing-20);
  color: var(--grey);
}

.profile .storybook-aside a {
  font-size: var(--font-size-14);
}

.profile .storybook-aside button {
  padding-left: 5px;
  padding-right: 5px;
  margin: auto;
  max-width: 220px;
  width: 100%;
}

.profile .storybook-aside p:last-child {
  color: var(--grey-dark);
}

.profile--userstatus h3 {
  margin-top: 1rem;
  margin-bottom: 0;
}

.profile--userstatus p {
  margin-top: 5px;
}

.profile-aside-block a {
  font-weight: bold;
}

.profile a:hover {
  text-decoration: underline;
}

.profile .storybook-aside h2 {
  border-bottom: 1px solid var(--grey-disabled);
  color: var(--blue-purple);
  font-size: var(--font-size-15);
  line-height: var(--line-spacing-24);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.storybook-aside p.profile-aside--action,
.profile-aside--action a {
  font-size: var(--font-size-14);
  line-height: var(--line-spacing-20);
  color: var(--blue-purple);
  font-weight: var(--font-weight-bold);
}

.profile-aside--action {
  margin-bottom: 10px;
}

.profile .profile-aside-block {
  margin-bottom: 40px;
  padding-inline: 15px;
}

.profile .profile-aside-block:last-child {
  border-top: 1px solid var(--grey-disabled);
  padding-top: 40px;
}

.profile .storybook-avatar-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 10px;
}

.profile .storybook-modal-body {
  max-width: unset;
}

.profile .Toastify .Toastify__toast--success {
  background: var(--white-pure);
}
.profile .Toastify .Toastify__toast-container {
  color: var(--grey-darker);
  background: transparent;
  width: auto;
}
.profile .Toastify .Toastify__toast-container--top-right {
  top: 3.5em;
}
.profile .Toastify .Toastify__toast {
  font-family: var(--font-family-lato);
  font-size: 14px;
  min-height: fit-content;
  border-left: 10px solid var(--red);
  color: var(--grey-darker);
}
.profile .Toastify .Toastify__toast-body {
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.profile-img {
  max-width: 96px;
  width: 96px;
}

.profile .alert {
  margin-top: 20px;
}
.profile .alert h3 {
  margin-bottom: 0;
  font-weight: 500;
}
.profile .alert p {
  margin-top: 0;
  padding-top: 5px;
}

@media (min-width: 768px) {
  .profile header {
    z-index: 999;
    position: relative;
  }

  .profile-intro h1 {
    font-size: var(--font-size-24);
    line-height: var(--line-spacing-30);
  }
  .profile-intro p {
    font-size: var(--font-size-14);
    padding-top: 10px;
  }
  .profile-img {
    max-width: 200px;
    width: 200px;
  }

  .profile-details.white-container {
    --container-pad-80: 2rem;
    min-height: 660px;
  }

  .profile-card {
    grid-area: card;
    grid-template-areas:
      "img"
      "name"
      "cccid"
      "btn";
    align-items: center;
    grid-template-rows: max-content;
    padding-top: var(--container-pad-80);
    padding-inline: var(--container-pad-80);
  }

  .profile-card .profile-img,
  .profile-card .profile-name,
  .profile-card .storybook-button,
  .profile-details .profile--cccid {
    justify-self: center;
    align-self: start;
  }

  .profile .storybook-button {
    margin-top: 1.875rem;
  }

  .profile--userstatus {
    grid-area: userstatus;
    margin-top: 0;
    padding-bottom: 50px;
    padding-top: var(--container-pad-80);
  }

  .profile-card,
  .profile--userstatus {
    padding-inline: var(--container-pad-80);
  }

  .profile-details hr {
    grid-area: hr;
  }

  .profile-details {
    display: grid;
    grid-template-areas:
      "card"
      "hr"
      "userinfo"
      "userstatus";
    grid-template-columns: 5fr;
    grid-template-rows: max-content;
    gap: 20px;
    padding: 0;
    /* max-width: calc(1366px - 291px - 138px); */
    justify-self: start;
    width: 100%;
  }

  .profile--userstatus h2,
  .profile-card h2 {
    margin-top: 0;
    padding-top: 0;
    font-size: var(--font-size-28);
  }

  .profile-card h2 {
    padding-top: 2.5rem;
  }

  .profile-course-info {
    padding-bottom: 50px;
  }

  .profile--userstatus h3 {
    font-size: var(--font-size-16);
    margin-top: 2.5rem;
  }

  .profile .storybook-aside p,
  .profile-details p {
    font-size: var(--font-size-14);
  }

  .profile .storybook-aside h2 {
    font-size: var(--font-size-18);
    line-height: var(--line-spacing-30);
    padding-inline: 30px;
  }

  .profile .storybook-avatar-list {
    gap: 3.125rem;
  }

  .profile .storybook-avatar-list img {
    max-width: unset;
  }
  .profile .storybook-modal-body {
    max-width: inherit;
  }

  .profile--row > div:nth-child(1) {
    width: 50%;
  }

  .profile--row > div:nth-child(2) {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .profile-content {
    flex-direction: column;
  }

  .profile--row {
    flex-direction: column;
  }

  .profile--row a,
  .profile--row h5 {
    font-size: var(--font-size-12);
  }

  .profile--row p {
    margin-bottom: 5px;
  }

  .profile--device-date {
    display: none;
  }
}

@media (min-width: 1366px) {
  .profile-details.white-container {
    --container-pad-80: 5rem;
    padding: 0;
  }

  .profile-details .profile-card + hr {
    width: 50%;
  }

  .profile-card {
    grid-area: card;
    grid-template-areas:
      "img"
      "cccid"
      "btn";
    align-items: center;
    grid-template-rows: max-content;
    padding-top: var(--container-pad-80);
    gap: 0;
  }

  .profile--userstatus {
    border-top: 0;
    border-left: 1px solid var(--grey-disabled);
    text-align: unset;
  }

  .profile-card .storybook-button {
    margin-top: 1.25rem;
    margin-bottom: 0;
  }

  .profile-details.white-container {
    grid-template-areas:
      "card userstatus"
      "hr userstatus"
      "userinfo userstatus";
    grid-template-columns: 2fr 3fr;
  }

  .showInDesktop {
    display: block;
  }
  .showInMobile {
    display: none;
  }

  .storybook-avatar-list .avatar {
    width: 150px;
  }
  /* Default and secondary button style override for avatar modal to basic styling */
  .profile .storybook-modal .storybook-button--default,
  .profile .storybook-modal .storybook-button--secondary {
    color: var(--red);
    background-color: var(--white-pure);
    border: 1px solid var(--grey-light);
  }
  /* hover override*/
  .profile .storybook-modal .storybook-button--default:hover,
  .profile .storybook-modal .storybook-button--secondary:hover {
    color: var(--white-pure);
    background-color: var(--red);
    border-color: var(--red);
  }
  .profile-details .profile--cccid {
    text-align: center;
    margin-top: 1rem;
  }

  .profile--row > div:nth-child(1) {
    width: 60%;
  }

  .profile--row > div:nth-child(2) {
    width: 40%;
  }
}

.storybook-accessibility .accordion {
  background: transparent;
}

.storybook-accessibility .accordion {
  padding: 30px 0 0 0;
}
.storybook-accessibility .accordion button h4 {
  text-align: left;
}

.storybook-accessibility .resources-left,
.storybook-accessibility .resources-right {
  overflow-x: inherit;
  overflow-y: inherit;
}

.storybook-accessibility .resources-right {
  margin-bottom: 20px;
  position: relative;
}

.storybook-accessibility .resources h1 {
  font-size: var(--font-size-16);
  color: var(--grey-darker);
}

.storybook-accessibility .storybook-team > h2 {
  margin-top: 0;
}

.storybook-accessibility .resources a:hover {
  text-decoration: underline;
}

.storybook-accessibility .resources-row img {
  height: auto;
}

.text-blue {
  color: var(--blue);
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pb-15 {
  padding-bottom: 15px;
}

.mt-0 {
  margin-top: 0;
}

.mb-20 {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .storybook-accessibility .resources h1 {
    font-size: var(--font-size-24);
  }

  .storybook-accessibility .resources-right img.resource-bg {
    opacity: 0.2;
  }

  .storybook-accessibility .resources-left {
    height: auto;
    margin-bottom: unset;
  }
}

@media (max-width: 991px) {
  .storybook-accessibility .resources-right {
    margin-bottom: 10px;
  }

  .storybook-accessibility .resources-left {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .storybook-accessibility .resources .resources-left--inner {
    height: 585px;
  }

  .storybook-accessibility .resources-right--inner {
      height: 555px;
  }
}

.storybook-schedule .storybook-alert {
  max-width: 1180px;
  margin: 10px auto;
  border: 1px solid;
  border-radius: 4px;
  max-width: 837px;
}

.storybook-schedule .storybook-alert > * {
  padding-inline: 28px;
}

.storybook-schedule .storybook-alert > *:nth-child(2) {
  padding-top: 16px;
}

.storybook-schedule .storybook-alert > *:last-child {
  margin-bottom: 16px;
}

.storybook-schedule .storybook-alert--warning {
  border-color: #ccbea0;
  background-color: #fffaf3;
  color: #7a4d05;
  --warning: #7a4d05;
  color: var(--warning);
}

.storybook-schedule .storybook-alert--info {
  border-color: #bedfe6;
  background-color: #f8ffff;
  --info: #0e566c;
  color: var(--info);
}

.storybook-schedule .storybook-alert--success {
  border-color: #a8c599;
  background-color: #fcfff5;
  --success: #1e561f;
  color: var(--success);
}

.storybook-schedule .storybook-alert--error {
  border-color: #973937;
  background-color: #fff6f6;
  color: #973937;
  --error: #973937;
  color: var(--error);
}

.storybook-schedule .storybook-alert header {
  font-size: var(--font-size-18);
}

.storybook-schedule .storybook-alert p {
  font-size: var(--font-size-14);
  padding-block: 10px;
  margin-bottom: 0;
}

.storybook-schedule .storybook-alert p {
  padding-bottom: 10px;
}

.storybook-schedule .storybook-alert-close {
  border: 0;
  background-color: transparent;
  float: right;
  margin-top: 10px;
  margin-right: 10px;
  padding: 0;
}
.storybook-schedule .storybook-alert-close svg {
  font-size: var(--font-size-14);
}

.storybook-schedule .storybook-alert-close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.storybook-schedule
  .storybook-alert--info
  .storybook-schedule
  .storybook-alert-close
  svg {
  fill: var(--info);
}
.storybook-schedule
  .storybook-alert--success
  .storybook-schedule
  .storybook-alert-close
  svg {
  fill: var(--success);
}
.storybook-schedule
  .storybook-alert--warning
  .storybook-schedule
  .storybook-alert-close
  svg {
  fill: var(--warning);
}
.storybook-schedule
  .storybook-alert--error
  .storybook-schedule
  .storybook-alert-close
  svg {
  fill: var(--error);
}

.storybook-schedule .storybook-alert .storybook-button {
  margin-bottom: 16px;
  margin-inline: 28px;
}

.back-button {
  display: flex;
  margin: 0 auto;
  justify-content: center;
}

.storybook-checkbox-container {
  display: flex;
}

.storybook-checkbox-label {
  display: none;
  font-size: var(--font-size-16);
  line-height: var(--font-size-24);
}

.storybook-checkbox-label--show {
  display: block;
}

.storybook-checkbox {
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance: none;
  outline: none;
  content: none;
  display: none;
}

.storybook-checkbox-container .storybook-checkbox-checked {
  color: var(--red);
  font-size: 1.5rem;
}

.storybook-checkbox-unchecked {
  color: var(--grey-light);
  accent-color: white;
  font-size: 1.5rem;
}

.storybook-input-label {
  display: none;
  margin-bottom: 5px;
  font-size: var(--font-size-12);
}

.storybook-input-label--show {
  display: block;
}

.storybook-input {
  border: 1px solid var(--grey-lighter);
  padding: 10px;
  border-radius: 4px;
  font-size: var(--font-size-14);
  color: var(--grey-darker);
}

.storybook-input[disabled] {
  border: 1px solid var(--grey-lighter);
  color: var(--grey-light);
}

.storybook-input-help {
  display: block;
  margin-top: 5px;
  font-size: var(--font-size-12);
  color: var(--grey-light);
}

.storybook-input--small {
  width: 50px;
}

.storybook-input--medium {
  width: 300px;
}

.storybook-input--large {
  width: 400px;
}

@media screen and (max-width: 450px) {
  .storybook-input--small,
  .storybook-input--medium,
  .storybook-input--large {
    max-width: 80%;
  }
}

.storybook-notification {
  align-items: center;
  border-left: 10px solid var(--red);
  border-radius: 4px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  cursor: pointer;
  display: flex;
  max-width: 500px;
  font-size: var(--font-size-14);
  line-height: var(--line-spacing-20);
  gap: 10px;
  padding: 8px 20px 8px 10px;
  position: fixed;
  opacity: 0;
  right: -550px;
  top: 58px;
  transition: right 0.7s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.65s ease 0.4s;
}

.storybook-notification--show {
  right: 20px;
  opacity: 1;
}

.storybook-notification .icon-notification {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  flex-shrink: 0;
  height: 24px;
  width: 24px;
}

.storybook-notification .icon-info {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMy44NTc0MjIiIGhlaWdodD0iMTYuMDAwMDAwIiB2aWV3Qm94PSIwIDAgMy44NTc0MiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+IDxkZXNjPiBDcmVhdGVkIHdpdGggUGl4c28uIDwvZGVzYz4gPGRlZnMvPiA8ZyBzdHlsZT0ibWl4LWJsZW5kLW1vZGU6bm9ybWFsIj4gPHBhdGggaWQ9IlBhdGggMjQxMSIgZD0iTTAgMS45MkMwIDAuODYgMC44NiAwIDEuOTIgMEMyLjk5IDAgMy44NSAwLjg2IDMuODUgMS45MkwzLjg1IDcuNzFDMy44NSA4Ljc3IDIuOTkgOS42MyAxLjkyIDkuNjNDMC44NiA5LjYzIDAgOC43NyAwIDcuNzFMMCAxLjkyWiIgZmlsbD0iIzc0NzQ3NCIgZmlsbC1vcGFjaXR5PSIxLjAwMDAwMCIgZmlsbC1ydWxlPSJub256ZXJvIi8+IDwvZz4gPGcgc3R5bGU9Im1peC1ibGVuZC1tb2RlOm5vcm1hbCI+IDxwYXRoIGlkPSJQYXRoIDI0MTIiIGQ9Ik0xLjkgMTIuMTdDMi45NiAxMi4xNyAzLjg1IDEzLjAyIDMuODUgMTQuMDhDMy44NSAxNS4xMyAzIDE2IDEuOTQgMTZDMC44OSAxNiAwIDE1LjE0IDAgMTQuMDlDMCAxMy4wMyAwLjg1IDEyLjE3IDEuOSAxMi4xN1oiIGZpbGw9IiM3NDc0NzQiIGZpbGwtb3BhY2l0eT0iMS4wMDAwMDAiIGZpbGwtcnVsZT0ibm9uemVybyIvPiA8L2c+IDwvc3ZnPiA=);
  background-size: auto;
  width: 12px;
}

.storybook-notification .icon-success {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQuMDAwMDAwIiBoZWlnaHQ9IjI0LjAwMDAwMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gPGRlc2M+IENyZWF0ZWQgd2l0aCBQaXhzby4gPC9kZXNjPiA8ZGVmcy8+IDxnIHN0eWxlPSJtaXgtYmxlbmQtbW9kZTpub3JtYWwiPiA8Y2lyY2xlIGlkPSJFbGxpcHNlIDI0OSIgY3g9IjEyLjAwMDAwMCIgY3k9IjEyLjAwMDAwMCIgcj0iMTIuMDAwMDAwIiBmaWxsPSIjRkZGRkZGIiBmaWxsLW9wYWNpdHk9IjAiLz4gPGNpcmNsZSBpZD0iRWxsaXBzZSAyNDkiIGN4PSIxMi4wMDAwMDAiIGN5PSIxMi4wMDAwMDAiIHI9IjExLjAwMDAwMCIgc3Ryb2tlPSIjMjFCQTQ1IiBzdHJva2Utb3BhY2l0eT0iMS4wMDAwMDAiIHN0cm9rZS13aWR0aD0iMi4wMDAwMDAiLz4gPC9nPiA8ZyBzdHlsZT0ibWl4LWJsZW5kLW1vZGU6bm9ybWFsIj4gPHBhdGggaWQ9IlBhdGggNTc1NyIgZD0iTTcuODQgMTEuMUM3LjYxIDExLjEgNy40IDExLjE5IDcuMjQgMTEuMzZDNy4wOSAxMS41MyA3LjAxIDExLjc0IDcuMDEgMTEuOTZDNy4wMiAxMi4xOCA3LjExIDEyLjM5IDcuMjggMTIuNTRMMTAuOCAxNS44M0MxMC45NyAxNiAxMS4yMSAxNi4wOCAxMS40NSAxNi4wNUMxMS42OCAxNi4wMyAxMS45IDE1LjkxIDEyLjA0IDE1LjcyTDE2LjgyIDkuMjVDMTcuMDkgOC44OCAxNy4wMSA4LjM2IDE2LjY0IDguMDhDMTYuMjggNy44MiAxNS43NCA3LjkgMTUuNDcgOC4yNkwxMS4yNiAxMy45N0w4LjQyIDExLjMyQzguMjYgMTEuMTcgOC4wNiAxMS4wOSA3Ljg0IDExLjFaIiBmaWxsPSIjMjFCQTQ1IiBmaWxsLW9wYWNpdHk9IjEuMDAwMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4gPHBhdGggaWQ9IlBhdGggNTc1NyIgZD0iTTcuMjQgMTEuMzZDNy4wOSAxMS41MyA3LjAxIDExLjc0IDcuMDEgMTEuOTZDNy4wMiAxMi4xOCA3LjExIDEyLjM5IDcuMjggMTIuNTRMMTAuOCAxNS44M0MxMC45NyAxNiAxMS4yMSAxNi4wOCAxMS40NSAxNi4wNUMxMS42OCAxNi4wMyAxMS45IDE1LjkxIDEyLjA0IDE1LjcyTDE2LjgyIDkuMjVDMTcuMDkgOC44OCAxNy4wMSA4LjM2IDE2LjY0IDguMDhDMTYuMjggNy44MiAxNS43NCA3LjkgMTUuNDcgOC4yNkwxMS4yNiAxMy45N0w4LjQyIDExLjMyQzguMjYgMTEuMTcgOC4wNiAxMS4wOSA3Ljg0IDExLjFDNy42MSAxMS4xIDcuNCAxMS4xOSA3LjI0IDExLjM2WiIgc3Ryb2tlPSIjMjFCQTQ1IiBzdHJva2Utb3BhY2l0eT0iMS4wMDAwMDAiIHN0cm9rZS13aWR0aD0iMC41MDAwMDAiLz4gPC9nPiA8L3N2Zz4g);
}

.storybook-notification .icon-warning {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTEuMDAwMDAwIiBoZWlnaHQ9IjUxLjAwMDAwMCIgdmlld0JveD0iMCAwIDUxIDUxIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gPGRlc2M+IENyZWF0ZWQgd2l0aCBQaXhzby4gPC9kZXNjPiA8ZGVmcy8+IDxnIHN0eWxlPSJtaXgtYmxlbmQtbW9kZTpub3JtYWwiPiA8Y2lyY2xlIGlkPSJFbGxpcHNlIDc5IiBjeD0iMjUuNTAwMDAwIiBjeT0iMjUuNTAwMDAwIiByPSIyNC4wMDAwMDAiIHN0cm9rZT0iI0QzNDUwOCIgc3Ryb2tlLW9wYWNpdHk9IjEuMDAwMDAwIiBzdHJva2Utd2lkdGg9IjMuMDAwMDAwIi8+IDwvZz4gPGcgc3R5bGU9Im1peC1ibGVuZC1tb2RlOm5vcm1hbCI+IDxwYXRoIGlkPSJQYXRoIDI0MTEiIGQ9Ik0yMi40NiAxNi4wMkMyMi40NiAxNC4zNCAyMy44MiAxMi45OCAyNS41IDEyLjk4QzI3LjE3IDEyLjk4IDI4LjUzIDE0LjM0IDI4LjUzIDE2LjAyTDI4LjUzIDI1LjE0QzI4LjUzIDI2LjgyIDI3LjE3IDI4LjE4IDI1LjUgMjguMThDMjMuODIgMjguMTggMjIuNDYgMjYuODIgMjIuNDYgMjUuMTRMMjIuNDYgMTYuMDJaIiBmaWxsPSIjRDM0NTA4IiBmaWxsLW9wYWNpdHk9IjEuMDAwMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4gPC9nPiA8ZyBzdHlsZT0ibWl4LWJsZW5kLW1vZGU6bm9ybWFsIj4gPHBhdGggaWQ9IlBhdGggMjQxMiIgZD0iTTI1LjQ3IDMyLjE3QzI3LjEzIDMyLjE3IDI4LjU0IDMzLjUyIDI4LjU0IDM1LjE4QzI4LjU0IDM2Ljg0IDI3LjE5IDM4LjIgMjUuNTMgMzguMkMyMy44NiAzOC4yIDIyLjQ2IDM2Ljg1IDIyLjQ2IDM1LjE5QzIyLjQ2IDMzLjUzIDIzLjggMzIuMTcgMjUuNDcgMzIuMTdaIiBmaWxsPSIjRDM0NTA4IiBmaWxsLW9wYWNpdHk9IjEuMDAwMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4gPC9nPiA8L3N2Zz4g);
}

.storybook-notification .icon-error {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQuMDAwMDAwIiBoZWlnaHQ9IjI0LjAwMDAwMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gPGRlc2M+IENyZWF0ZWQgd2l0aCBQaXhzby4gPC9kZXNjPiA8ZGVmcy8+IDxnIHN0eWxlPSJtaXgtYmxlbmQtbW9kZTpub3JtYWwiPiA8cGF0aCBpZD0iUGF0aCAyNDEwIiBkPSJNMTUuMzcgMTYuNzFMMTIgMTMuMzRMOC42MiAxNi43MUM4LjI1IDE3LjA5IDcuNjUgMTcuMDkgNy4yOCAxNi43MUM2LjkgMTYuMzQgNi45IDE1Ljc0IDcuMjggMTUuMzdMMTAuNjUgMTJMNy4yNyA4LjYyQzYuOSA4LjI1IDYuOSA3LjY1IDcuMjcgNy4yN0M3LjY1IDYuOSA4LjI1IDYuOSA4LjYyIDcuMjdMMTIgMTAuNjVMMTUuMzcgNy4yN0MxNS43NCA2LjkgMTYuMzQgNi45IDE2LjcxIDcuMjdDMTcuMDkgNy42NSAxNy4wOSA4LjI1IDE2LjcxIDguNjJMMTMuMzQgMTEuOTlMMTYuNzIgMTUuMzdDMTcuMDkgMTUuNzQgMTcuMDkgMTYuMzQgMTYuNzIgMTYuNzFDMTYuMzQgMTcuMDkgMTUuNzQgMTcuMDkgMTUuMzcgMTYuNzFaIiBmaWxsPSIjQkU1MTQzIiBmaWxsLW9wYWNpdHk9IjEuMDAwMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4gPC9nPiA8ZyBzdHlsZT0ibWl4LWJsZW5kLW1vZGU6bm9ybWFsIj4gPGNpcmNsZSBpZD0iRWxsaXBzZSAyNDkiIGN4PSIxMi4wMDAwMDAiIGN5PSIxMi4wMDAwMDAiIHI9IjEyLjAwMDAwMCIgZmlsbD0iI0ZGRkZGRiIgZmlsbC1vcGFjaXR5PSIwIi8+IDxjaXJjbGUgaWQ9IkVsbGlwc2UgMjQ5IiBjeD0iMTIuMDAwMDAwIiBjeT0iMTIuMDAwMDAwIiByPSIxMS4wMDAwMDAiIHN0cm9rZT0iI0JFNTE0MyIgc3Ryb2tlLW9wYWNpdHk9IjEuMDAwMDAwIiBzdHJva2Utd2lkdGg9IjIuMDAwMDAwIi8+IDwvZz4gPC9zdmc+IA==);
}
.ar-content {
  font-size: var(--font-size-14);
  position: relative;
}

.ar-content:before {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  height: 1px;
  background-color: var(--grey-lighter);
  width: 100%;
}

.ar-content--withdraw-dates {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  max-width: 680px;
}

.ar-content--withdraw-dates div {
  border-left: 2px solid var(--red);
  display: flex;
  flex-direction: column;
  font-size: var(--font-size-14);
  gap: 4px;
  padding: 0 10px;
}

.ar-content--withdraw-dates div span {
  color: #707070;
}

.ar-content--withdraw-dates div strong {
  color: var(--grey-dark);
}

.ar-content--withdraw-status {
  display: flex;
  gap: 8px;
}

.ar-content--withdraw-status img {
  margin-bottom: -5px;
}

.ar-warning-message .storybook-tooltip-container .storybook-tooltip-text,
.ar-content--withdraw-status .storybook-tooltip-container .storybook-tooltip-text {
  min-width: 220px;
  margin-top: -10px;
  margin-left: -160px;
}

.ar-warning-message .storybook-tooltip-text--top::before,
.ar-content--withdraw-status .storybook-tooltip-text--top::before {
  top: 100%;
  margin-left: -5px;
  border: 6px solid transparent;
  border-top-color: var(--tt-border-color);
  left: auto;
  right: 22%;
}

.ar-warning-message .storybook-tooltip-text--top::after,
.ar-content--withdraw-status .storybook-tooltip-text--top::after {
  left: auto;
  right: 20%;
}

.ar-content h2 {
  color: var(--grey-darker);
  font-weight: var(--font-weight-medium);
}

.ar-content p strong {
  color: var(--grey-darker);
}

.ar-content .underline {
  font-size: var(--font-size-14);
}

.ar-content sup {
  margin-left: 2px;
  font-size: var(--font-size-12);
}

.ar-content .ar-modal sup {
  font-size: 26px;
  font-weight: var(--font-weight-regular);
}

.ar-form {
  border-top: 1px solid var(--border-color);
  padding: 20px 0 50px;
  max-width: 660px;
  margin-top: 20px;
}

.ar-form,
.ar-form--row,
.ar-form--row-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ar-form p,
.ar-form h3 {
  margin: 0;
}

.ar-form strong,
.ar-form h3 {
  color: var(--grey-dark);
  line-height: var(--line-spacing-20);
}

.ar-form--row-inner {
  margin-left: 15px;
}

.ar-form--row label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ar-form--row label input {
  margin: 2px 0 0 0;
}

.ar-form--row textarea {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family:  var(--font-family-lato);
  padding: 10px;
  max-width: 500px;
  min-height: 80px;
  resize: vertical;
}

.ar-form--row-confirmation h3 {
  margin-bottom: 10px;
}

.ar-form--buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px
}

.ar-form--buttons button {
  min-width: 100px;
}

.ar-warning-message h3 {
  margin-top: 10px;
}

.ar-modal .storybook-modal-body {
  max-width: 90%;
}

.ar-modal .storybook-modal-body .underline {
  font-size: var(--font-size-28);
  font-weight: var(--font-weight-bold);
}

.ar-content .storybook-tooltip-text {
  line-height: initial;
  font-weight: initial;
  text-align: left;
}

.ar-content .ar-modal h2 {
  line-height: 40px;
}

.ar-content .ar-modal .storybook-modal-footer button {
  min-width: 140px;
}

.ar-modal .storybook-tooltip-text--top {
  top: -55px;
  margin-left: -160px;
}

.ar-modal .storybook-tooltip-text--top::before {
  top: 100%;
  margin-left: -5px;
  border: 6px solid transparent;
  border-top-color: var(--tt-border-color);
  left: auto;
  right: 12%;
}

.ar-modal .storybook-tooltip-text--top:after {
  left: auto;
  right: 10%;
}

.transcript-form {
  font-size: var(--font-size-14);
  margin: 50px 0;
}

.transcript-form > h3 {
  margin-bottom: 20px;
}

.transcript-form--inputs-row {
  align-items: center;
  display: flex;
  gap: 10px;
}

.transcript-form--inner > .transcript-form--inputs-row {
  margin-bottom: 10px;
}

.transcript-form--inner h3 {
  margin: revert;
}

.transcript-form--inputs {
  padding-left: 30px;
}

.transcript-form input[type="checkbox"][disabled] + svg {
  color: var(--grey-lighter);
}

.transcript-form input[type="email"][disabled] {
  background-color: transparent;
  border-width: 0;
  color: var(--grey-dark);
  padding-left: 0;
}

.transcript-form--inputs-row {
  position: relative;
  margin-bottom: 20px;
}

.transcript-form--inputs-row .error-message {
  color: var(--red-dark);
  position: absolute;
  bottom: -16px;
  font-size: 12px;
}

.transcript-form--inputs-row .storybook-checkbox-container ~ .error-message {
  padding-left: 34px;
}

.transcript-form--inputs-row .storybook-input-label {
  display: none;
}

.transcript-form--buttons {
  margin-top: 50px;
  display: flex;
  gap: 10px;
}

.transcript-form--buttons button {
  min-width: 100px;
}

.transcript-form .icon-minus,
.transcript-form .icon-plus {
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  height: 20px;
  width: 20px;
}

.ar-content--error {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 50px 0;
}

.ar-content--error img {
  height: 48px;
  width: 48px;
}

.ar-content--error b {
  color: var(--grey-darker);
  line-height: var(--line-spacing-20);
}

.ar-content--certificate-row {
  align-items: center;
  color: var(--grey-dark);
  display: flex;
  font-size: var(--font-size-14);
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ar-content--certificate-row:first-of-type {
  margin-top: 50px;
}

.ar-content .skeleton {
  margin-left: 0;
  margin-right: 0;
}

@media screen and (min-width: 1200px) {
  .ar-content:before {
    top: -20px;
  }
}

@media screen and (min-width: 768px) {
  .ar-content--withdraw-dates {
    margin: 40px 0;
  }

  .ar-form--row-confirmation {
    margin-top: 20px;
  }

  .ar-form--row-inner {
      margin-left: 25px;
  }

  .ar-form > h3:first-of-type,
  .ar-form > p:first-of-type {
    margin-bottom: 20px;
  }

  .ar-form--buttons {
    margin-top: 30px
  }

  .ar-content--certificate-row {
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .ar-content--withdraw-dates {
    gap: 20px;
    flex-direction: column;
  }

  .ar-form--row label {
    font-size: var(--font-size-12);
  }

  .ar-content--certificate-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.enroll-verification hr {
  margin-block: 5px 18px;
  margin-left: unset;
}

.enroll-verification p {
  margin-bottom: 30px;
}

.enroll-verification .field-group[data-testid="recipientEmailContainer"],
.enroll-verification .field-group[data-testid="fileUploadContainer"] {
  margin-block: 40px 20px;
}

.enroll-verification .storybook-button {
  margin-right: 10px;
  width: 100px;
}

.enroll-verification .storybook-checkbox-container {
  display: inline-block;
}

.enroll-verification .field-group #recipientEmail.storybook-input {
  display: inline-block;
  margin-block: 1em;
  margin-inline-end: 1em;
}

.enroll-verification .upload-input {
  margin: unset;
  padding-bottom: 0;
}
.enroll-verification .file-limits {
  margin-left: 0.4em;
  font-size: var(--font-size-12);
  margin-top: 5px;
}

.enroll-verification .upload-input-type-simple {
  border-color: var(--grey-lighter);
  background-color: white;
}

.enroll-verification .upload-input .storybook-button {
  margin: unset;
  font-weight: 600;
}

.enroll-verification label {
  font-size: var(--font-size-14);
  color: var(--grey-dark);
}

/* Consider move to storybook */
.enroll-verification
  .storybook-checkbox[readonly]
  + .storybook-checkbox-checked {
  color: var(--grey-lighter);
}
.enroll-verification .storybook-input:read-only:focus,
.enroll-verification .storybook-input#calbrightEmail,
.enroll-verification .storybook-input#calbrightEmail:focus,
.enroll-verification .storybook-input#personalEmail,
.enroll-verification .storybook-input#personalEmail:focus {
  border: 1px solid transparent;
  padding-left: 0;
  outline: none;
}
.enroll-verification .storybook-checkbox-checked,
.enroll-verification .storybook-checkbox-unchecked {
  align-self: center;
  position: relative;
  top: 0.25em;
  margin-right: 0.25em;
}

.recipient-email-row {
  margin-block: 0.5em;
}

.recipient-email-row input {
  display: inline-block;
}
.add-email-btn,
.remove-email-btn {
  position: relative;
  top: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
}
.add-email-btn svg,
.remove-email-btn svg {
  font-size: 2.75em;
  fill: var(--grey-light);
  stroke: var(--grey-light);
  stroke-width: 2;
  font-weight: bold;
}

.add-email-btn:hover svg,
.remove-email-btn:hover svg {
  fill: var(--red-dark);
  stroke: var(--red-dark);
}

.enroll-verification button.disabled {
  opacity: 0.5;
}

.enroll-verification .error-message {
  color: var(--red-dark);
  display: block;
  position: relative;
  top: 5px;
  left: 0px;
  font-size: 12px;
  margin-bottom: unset;
}

@media (min-width: 992px) {
  .toggle .resources-left--inner {
    overflow-x: hidden;
    overflow-y: auto;
  }
}

.enroll-verification .storybook-modal-title {
  line-height: 2.5rem;
}

/** Toast **/

.enroll-verification .Toastify .Toastify__toast--success {
  background: var(--white-pure);
}
.enroll-verification .Toastify .Toastify__toast-container {
  color: var(--grey-darker);
  background: transparent;
  width: auto;
}
.enroll-verification .Toastify .Toastify__toast-container--top-right {
  top: 3.5em;
}
.enroll-verification .Toastify .Toastify__toast {
  font-family: var(--font-family-lato);
  font-size: 14px;
  min-height: fit-content;
  border-left: 10px solid var(--red);
  color: var(--grey-darker);
}
.enroll-verification .Toastify .Toastify__toast-body {
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.storybook-tooltip-container {
  position: relative;
  display: inline-block;
  cursor:default;

  /* Tooltip shared styles */
  --tt-font-size: var(--font-size-16);
  --tt-width: 150px;
  --tt-border-color: var(--grey-disabled);
  --tt-bg-color: var(--white-pure);
  --tt-border-bottom-color: var(--grey-normal);

  font-family: var(--font-family-lato);
  font-family: var(--font-family-lato);
  font-size: var(--tt-font-size);
}

@media (max-width: 1366px) {
  .storybook-tooltip-container {
    --tt-width: 200px;
  }
}
@media (max-width: 768px) {
  .storybook-tooltip-container {
    --tt-width: 150px;
  }
}

@media (max-width: 320px) {
  .storybook-tooltip-container {
    --tt-width: 100px;
  }
}

.storybook-tooltip--underline {
  border-bottom: 1px dotted var(--grey-normal);
}

.storybook-tooltip-container .storybook-tooltip-text {
  visibility: hidden;
  display:inline;
  position: absolute;
  background: var(--tt-bg-color) 0% 0% no-repeat padding-box;
  background: var(--tt-bg-color) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border: 1px solid var(--tt-border-color);
  border-radius: 6px;
  padding: 0.8em;
  font-size:0.8em;
  min-width: var(--tt-width);
  max-width: calc(var(--tt-width)*2);
}

.storybook-tooltip-container:hover .storybook-tooltip-text {
  visibility: visible;
}

/* Tooltip arrow general positioning */

.storybook-tooltip-text--right {
  left: 110%;
}

.storybook-tooltip-text--left  {
  right: 110%;
}

.storybook-tooltip-text--top  {
  top: -180%;
  left: 50%;
  margin-left: -60px; 
}

.storybook-tooltip-text--bottom  {
  top: 130%;
  left: 50%;
  margin-left: -60px; 
  margin-top:5px;
}

/* Bottom arrow */

.storybook-tooltip-text--bottom::after,
.storybook-tooltip-text--bottom::before {
  content: " ";
	position: absolute;
	left: 20%;
  bottom: 100%;
}

.storybook-tooltip-text--bottom::after {
	margin-left: -6px;
  border:8px solid transparent;
  border-bottom-color: var(--tt-bg-color)
}

.storybook-tooltip-text--bottom::before {
  bottom: 100%;
  margin-left: -8px;
  border: 10px solid transparent;
  border-bottom-color: var(--tt-border-color);
}

/* Top arrow */
.storybook-tooltip-text--top::after,
.storybook-tooltip-text--top::before {
  content: " ";
	position: absolute;
	left: 20%;
}

.storybook-tooltip-text--top::before {
  top: 100%;
  margin-left: -6px;
  border: 8px solid transparent;
  border-top-color: var(--tt-border-color);
}

.storybook-tooltip-text--top::after {
  top: 90%;
	margin-left: -8px;
  border: 10px solid transparent;
  border-top-color: var(--tt-bg-color);
}

/* Right arrow */
.storybook-tooltip-text--right::after,
.storybook-tooltip-text--right::before {
  content: " ";
	position: absolute;
	right: 100%;
  top: 10%;
}

.storybook-tooltip-text--right::before {
  margin-top: 6px;
  border: 8px solid transparent;
  border-right-color: var(--tt-bg-color);
  z-index:2;
}

.storybook-tooltip-text--right::after {
	margin-top: 4px;
	border: 10px solid transparent;
  border-right-color: var(--tt-border-color);
}

/* Left arrow */
.storybook-tooltip-text--left::after,
.storybook-tooltip-text--left::before {
  content: " ";
	position: absolute;
	left: 100%;
  top: 10%;
}

.storybook-tooltip-text--left::before {
  margin-top: 6px;
  border: 8px solid transparent;
  border-left-color: var(--tt-bg-color);
  z-index:2;
}

.storybook-tooltip-text--left::after {
	margin-top: 4px;
	border: 10px solid transparent;
  border-left-color: var(--tt-border-color);
}

/******************************************************* 
 * Global styles based on Calbright Design Style Guide 
 ******************************************************* 
 */

:root {
  /* Colors */
  --purple: #a333c8;
  --orange: #f2711c;
  --olive: #b5cc18;
  --teal: #00b5ad;
  --violet: #6435c9;
  --pink: #e03997;
  --brown: #a5673f;
  --black: #1b1c1d;

  /* Greens */
  --green-light-lime: #d4f2d8;
  --green-lightest: #90dfaa;
  --green-lighter: #43be98;
  --green: #0da81f;
  --green-dark: #0a8a19;
  --green-darker: #006a00;
  --green-darkest: #206406;
  --green-border: #0da81f;
  --green-text: #0a8a19;
  --orange-border: #eda214;

  /* Blues */
  --blue-purple: #001e5a;
  --blue-light: #84dbff;
  --blue: #3f87d4;
  --blue-darker: #0050bc;
  --blue-darkest: #324a5e;

  /* Background Colors */
  --white-pure: #ffffff;
  --cream-light: #fff7e8;
  --tan: #f2dfc2;

  /* Grey Scale */
  --grey-darker: #333333;
  --grey-dark: #555555;
  --grey: #747474;
  --grey-light: #999999;
  --grey-lighter: #cccccc;
  --grey-disabled: #dddddd;
  --grey-btn: #e0e1e2;
  --grey-brightest: #f8f8f9;

  /* Yellows, Browns and Additional Red */
  --yellow: #f5bb11;
  --yellow-dark: #ff9d26;
  --brown: #be7743;
  --red: #d34508;
  --red-light: #FFE7DD;
  --red-dark: #be5143;

  --border-color: #cccccc;
  --button-default-hover: #d96736;
  --button-default-active: #b93800;
  --button-color-disabled: #bbbbbb;
  --button-bg-disabled: #eeeeee;
  --icon-color: #999999;
  --hover-row: #f3f3f3;
  --chat-head: #ffe3b7;
  --chat-head-hover: #ffd280;
  --chat-text-head: #555555;

  /* Career colors */
  --career-red: #be5143;
  --career-yellow: #ff9d26;
  --career-blue: #0050bc;
  --career-green: #0da820;

  /* Alert colors*/
  --info: #0e566c;
  --info-border: #bedfe6;
  --info-background: #f8ffff;
  --warning: #7a4d05;
  --warning-border: #ccbea0;
  --warning-background: #fffaf3;
  --success: #1e561f;
  --success-border: #a8c599;
  --success-background: #fcfff5;
  --error: #973937;
  --error-border: #973937;
  --error-background: #fff6f6;

  /* Font/text values */
  --font-family-lato: "Lato", sans-serif;

  --font-style-normal: normal;
  --font-style-italic: italic;
  --font-style-oblique: oblique;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-extra-bold: 900;

  /* Font sizes */
  --font-size-10: 0.625rem;
  --font-size-12: 0.75rem;
  --font-size-13: 0.8125rem;
  --font-size-14: 0.875rem;
  --font-size-15: 0.9375rem;
  --font-size-16: 16px; /* 16px; */
  --font-size-18: 1.125rem;
  --font-size-24: 1.5rem;
  --font-size-28: 1.75rem;

  /* Character/line spacing */
  --character-spacing-0: 0px;
  --line-spacing-16: 16px;
  --line-spacing-18: 18px;
  --line-spacing-19: 19px;
  --line-spacing-20: 20px;
  --line-spacing-22: 22px;
  --line-spacing-23: 23px;
  --line-spacing-24: 24px;
  --line-spacing-30: 30px;
  --line-spacing-36: 36px;
}

.theme-cold {
  --red: #065e84;
  --red-light: #F0F5FA;
  --cream-light: #f0f5fa;
  --grey-dark: #333333;
  --grey: #555555;
  --border-color: #555555;
  --icon-color: #555555;
  --blue-darker: #004094;
  --green: #076413;
  --green-text: #076413;
  --green-border: #076413;
  --green-darker: #005200;
  --red-dark: #943e33;
  --yellow-dark: #854900;
  --button-default-hover: #065e84;
  --button-default-active: #004094;
  --hover-row: #fcfcfc;
  --tan: #dddddd;

  --career-red: #943e33;
  --career-yellow: #854900;
  --career-blue: #004094;
  --career-green: #076413;
  --chat-head: #065e84;
  --chat-head-hover: #004094;
  --chat-text-head: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: var(--font-family-lato), sans-serif;
  background-color: var(--cream-light);
}

a {
  color: var(--red);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button:focus-visible,
a:-webkit-any-link:focus-visible {
  outline: none;
}

.storybook-notice {
  color: var(--grey-dark);
  margin-bottom: 25px;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.head-thin {
  font-weight: normal;
  color: var(--grey-darker);
  line-height: 1.6;
}

/* Different lato font weights from 100 to 900 */
.lato-thin {
  font-weight: 100;
  font-style: normal;
}

.lato-thin-italic {
  font-weight: 100;
  font-style: italic;
}

.lato-light {
  font-weight: 300;
  font-style: normal;
}

.lato-light-italic {
  font-weight: 300;
  font-style: italic;
}

.lato-regular {
  font-weight: 400;
  font-style: normal;
}

.lato-regular-italic {
  font-weight: 400;
  font-style: italic;
}

.lato-bold {
  font-weight: 700;
  font-style: normal;
}

.lato-bold-italic {
  font-weight: 700;
  font-style: italic;
}

.lato-black {
  font-weight: 900;
  font-style: normal;
}

.lato-black-italic {
  font-weight: 900;
  font-style: italic;
}

.storybook-modal .error,
.error {
  color: var(--red-dark);
}

/* Character Styles */
h1,
.h1 {
  font-style: var(--font-style-normal);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-28);
  line-height: var(--line-spacing-36);
  letter-spacing: var(--character-spacing-0);
}

h2,
.h2,
.header {
  font-style: var(--font-style-normal);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-24);
  line-height: var(--line-spacing-30);
  letter-spacing: var(--character-spacing-0);
}

h3,
.h3 {
  font-style: var(--font-style-normal);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-18);
  line-height: var(--line-spacing-23);
  letter-spacing: var(--character-spacing-0);
}

h4,
.h4 {
  font-style: var(--font-style-normal);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-16);
  line-height: var(--line-spacing-19);
  letter-spacing: var(--character-spacing-0);
}

h5,
.h5 {
  font-style: var(--font-style-normal);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-14);
  line-height: var(--line-spacing-18);
  letter-spacing: var(--character-spacing-0);
}

p,
.paragraph {
  font-family: var(--font-family-lato);
  font-style: var(--font-style-normal);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-14);
  line-height: var(--line-spacing-24);
  letter-spacing: var(--character-spacing-0);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-title {
  margin: 20px 0;
}

.page-title h1,
.page-title h2 {
  color: var(--grey-darker);
  font-size: var(--font-size-18);
  line-height: var(--line-spacing-30);
  margin: 0 0 10px 0;
}

.page-title p {
  color: var(--grey-darker);
  font-size: var(--font-size-12);
  line-height: var(--line-spacing-20);
  letter-spacing: 0px;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .page-title {
    margin: 30px 0 20px;
  }

  .page-title h1,
  .page-title h2 {
    font-size: var(--font-size-24);
  }

  .page-title p {
    font-size: var(--font-size-14);
  }
}

.container {
  box-sizing: border-box;
  max-width: 1250px;
  margin: auto;
  padding: 0 10px;
  width: 100%;
}

.subheader {
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-16);
  line-height: var(--line-spacing-22);
  letter-spacing: var(--character-spacing-0);
}

.description {
  font-family: var(--font-family-lato);
  font-style: var(--font-style-normal);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-13);
  line-height: var(--line-spacing-18);
  letter-spacing: var(--character-spacing-0);
}

.table-header {
  font-style: var(--font-style-normal);
  font-weight: var(--font-weight-900);
  font-size: var(--font-size-14);
  line-height: var(--line-spacing-24);
  letter-spacing: var(--character-spacing-0);
}

.table-body {
  font-style: var(--font-style-normal);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-14);
  line-height: var(--line-spacing-24);
  letter-spacing: var(--character-spacing-0);
}

.description-muted {
  font-style: var(--font-style-normal);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-13);
  line-height: var(--line-spacing-16);
  letter-spacing: var(--character-spacing-0);
}

.card-small-user-title {
  font-style: var(--font-style-normal);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-13);
  line-height: var(--line-spacing-23);
  letter-spacing: var(--character-spacing-0);
}

.time-and-datestamp-muted {
  font-style: var(--font-style-normal);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-12);
  line-height: var(--line-spacing-16);
  letter-spacing: var(--character-spacing-0);
}

.comment-body {
  font-style: var(--font-style-normal);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-14);
  line-height: var(--line-spacing-16);
  letter-spacing: var(--character-spacing-0);
}

.disabled {
  color: var(--grey-disabled);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

body {
  margin: 0;
}

.underline {
  text-decoration: underline;
}

.m-0 {
  margin: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

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