/* Min breakpoint width */
/* MAx breakpoint width */

.breadCrumbs {
  margin-bottom: 16px; }
  @media (min-width: 768px) {
    .breadCrumbs {
      margin-bottom: 24px; } }
  .breadCrumbs ol {
    display: flex;
    align-items: center; }
    .breadCrumbs ol li {
      display: flex;
      align-items: center;
      text-decoration: none;
      margin-right: 5px;
      font-weight: 500;
      font-size: 12px;
      line-height: 16px;
      color: #111111;
      opacity: 0.5; }
      @media (min-width: 768px) {
        .breadCrumbs ol li {
          font-size: 14px;
          line-height: 21px;
          margin-right: 24px; } }
      .breadCrumbs ol li a {
        text-decoration: none;
        color: inherit;
        white-space: nowrap; }
    .breadCrumbs ol li:last-child {
      opacity: 1;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
    .breadCrumbs ol span.icon {
      margin-left: 5px; }
      @media (min-width: 768px) {
        .breadCrumbs ol span.icon {
          margin-left: 21px; } }

/* Min breakpoint width */
/* MAx breakpoint width */

.squareIcon {
  height: 56px;
  width: 56px; }

.iconContainer {
  display: inline-block; }

.squareIcon {
  height: 56px;
  width: 56px; }

.smallIcon {
  height: 16px;
  width: 16pxs; }

.roundIcon {
  height: 32px;
  width: 32px; }
  @media (min-width: 768px) {
    .roundIcon {
      height: 40px;
      width: 40px; } }

.bottomSheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000000;
  width: 100%;
  border-radius: 12px 12px 0px 0px;
  background-color: white;
  padding-top: 10px; }
  .bottomSheet:before {
    display: block;
    content: '';
    width: 32px;
    height: 4px;
    background: #d0d0d0;
    margin: 0 auto 18px auto; }

.bottomSheetOverlay {
  position: fixed;
  opacity: 0;
  inset: 0;
  background-color: black;
  z-index: 999; }

.bottomSheetTransition-enter {
  transform: translateY(100%); }

.bottomSheetTransition-enter-active {
  transform: translateX(0);
  transition: transform 0.1s ease-in; }

.bottomSheetTransition-exit-active {
  transform: translateY(100%);
  transition: transform 0.1s ease-in; }

.overlay-enter,
.overlay-exit-active {
  opacity: 0;
  transition: opacity 0.1s ease-in; }

.overlay-enter-active,
.overlay-enter-done,
.overlay-enter-done {
  opacity: 0.5;
  transition: opacity 0.1s ease-in; }

.button {
  padding: 8px 32px;
  border: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  border-radius: 9999px;
  cursor: pointer;
  background: transparent; }
  .button .buttonContent {
    display: flex;
    align-items: center; }
  .button span {
    margin-right: 10px; }
  .button.primary {
    background-color: #5a298b;
    color: white; }
    .button.primary:hover {
      background: #7a26ce; }
    .button.primary:active {
      background-color: #280b45; }
  .button.secondary {
    color: #41246e;
    background: #ffffff; }
    .button.secondary:hover {
      background: #f2f2f2; }
    .button.secondary:active {
      background: #e1e1e1; }
  .button.link {
    color: #41246e;
    background: transparent;
    padding: 0; }
    .button.link:hover {
      text-decoration: underline; }
  .button.outlined {
    color: #262626;
    border-radius: 24px;
    border: 1px solid #d0d0d0; }
    .button.outlined:hover {
      border: 1px solid #41246e; }
  .button.text {
    border: none;
    color: var(--color-primary);
    height: 30px;
    font-weight: 500; }

