.overlay-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay-backdrop.active {
  opacity: 1;
  visibility: visible;
}

#emptyStateComponent .empty-state-component__content {
  z-index: 10000;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-radius: var(--Radius-radius-l, 12px);
  border: 1px solid var(--Color-neutral-neutral-200, #E1E2EE);
  background: var(--Color-neutral-neutral-50, #F7F7FA);
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  padding: var(--spacing-space-xl-32, 32px) var(--spacing-space-l-24, 24px);
}

body .overlay-active, html .overlay-active {
  overflow: hidden !important;
}

.empty-state-component {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #F8FAFC;
}
.empty-state-component__image-wrapper {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.empty-state-component__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.empty-state-component__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  width: 100%;
  max-width: 1042px;
}
.empty-state-component__icon {
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.empty-state-component__icon svg {
  width: 48px;
  height: 48px;
}
.empty-state-component__icon.icon--set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 76px;
  height: 76px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 4px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.empty-state-component__icon.icon--set svg {
  width: 36px;
  height: 36px;
}
.empty-state-component__title {
  color: var(--Color-neutral-neutral-900, #2E2E3A);
  text-align: center;
  /* Title - Normal/Title 2 */
  font-family: var(--Font-Familiy-Roboto, Roboto);
  font-size: var(--Font-Size-Title-Title-2, 40px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Font-Line-Height-Title-Title-2, 48px);
  letter-spacing: -0.4px;
  width: 100%;
}
.empty-state-component__description {
  color: var(--Font-Body, #4F4F63);
  text-align: center;
  /* Body/Medium Regular */
  font-family: var(--Font-Familiy-Roboto, Roboto);
  font-size: var(--Font-Size-Body-Body-Medium, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--Font-Line-Height-Body-Body-Medium, 25px);
  width: 100%;
}
.empty-state-component__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.empty-state-component__buttons .button {
  padding: var(--spacing-space-m-16, 16px) var(--spacing-space-l-24, 24px);
  min-width: 264px;
  min-height: 56px;
}

.bg-solid {
  background: var(--Color-neutral-white, #FFF);
}
.bg-solid .empty-state-component__content {
  background: var(--Color-neutral-neutral-50, #F7F7FA);
  border-radius: var(--Radius-radius-l, 12px);
  border: 1px solid var(--Color-neutral-neutral-200, #E1E2EE);
  background: var(--Color-neutral-neutral-50, #F7F7FA);
}
.bg-solid .empty-state-component__buttons {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.bg-solid .empty-state-component__buttons .button {
  padding: var(--spacing-space-m-16, 16px) var(--spacing-space-l-24, 24px);
  min-width: 264px;
  min-height: 56px;
}

.empty-state-component.bg-none {
  position: fixed;
  max-width: 440px;
  right: 0;
  top: var(--spacing-space-l-24, 24px);
  bottom: var(--spacing-space-l-24, 24px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  z-index: 9999;
  border-radius: 16px 0 0 16px;
  border-top: 1px solid var(--Color-neutral-neutral-200, #E1E2EE);
  border-bottom: 1px solid var(--Color-neutral-neutral-200, #E1E2EE);
  border-left: 1px solid var(--Color-neutral-neutral-200, #E1E2EE);
  background: var(--Color-neutral-white, #FFF);
  min-height: 562px;
  padding: var(--spacing-space-l-24, 24px);
}
.empty-state-component.bg-none .empty-state-component__content {
  margin: 0;
  max-width: 345px;
  gap: var(--size-spacing-space-32, 32px);
}
.empty-state-component.bg-none .empty-state-component__title {
  font-size: var(--Font-Size-Title-Title-2, 30px);
  line-height: var(--Font-Line-Height-Title-Title-2, 38px);
}
.empty-state-component.bg-none .empty-state-component__buttons {
  gap: 12px;
}
.empty-state-component.bg-none .empty-state-component__buttons .button {
  width: 100%;
}
.empty-state-component.bg-none .empty-state-component::before {
  background-image: unset;
}

.empty-state-component.bg-none.icon--set {
  min-height: 578px;
}

@media (max-width: 767px) {
  .empty-state-component__image-wrapper {
    height: auto;
  }
  .empty-state-component__image-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .empty-state-component__content {
    border-radius: var(--Radius-radius-l, 12px) var(--Radius-radius-l, 12px) 0 0;
    border: 1px solid var(--Color-neutral-neutral-200, #E1E2EE);
    background: var(--Color-neutral-white, #FFF);
    margin-top: -24px;
    padding: var(--spacing-space-xl-32, 32px) var(--spacing-space-l-24, 24px);
    gap: var(--size-spacing-space-32, 32px);
  }
  .empty-state-component__title {
    font-size: var(--Font-Size-Title-Title-2, 30px);
    line-height: var(--Font-Line-Height-Title-Title-2, 38px);
  }
  .empty-state-component__description {
    margin-top: -16px;
  }
  .empty-state-component__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .empty-state-component__buttons .button {
    width: 100%;
    min-width: auto;
  }
  .empty-state-component.bg-none {
    bottom: 0;
    border-radius: 16px 16px 0 0;
    border: 1px solid var(--Color-neutral-neutral-200, #E1E2EE);
    background: var(--Color-neutral-white, #FFF);
    top: unset;
    min-height: auto;
  }
}
@media (min-width: 767px) and (max-width: 1023px) {
  .empty-state-component__image-wrapper {
    height: auto;
  }
  .empty-state-component__image-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .empty-state-component__content {
    border-radius: var(--Radius-radius-l, 12px) var(--Radius-radius-l, 12px) 0 0;
    border: 1px solid var(--Color-neutral-neutral-200, #E1E2EE);
    background: var(--Color-neutral-white, #FFF);
    margin-top: -24px;
    gap: var(--spacing-space-2-xl-48, 48px);
    padding: var(--size-spacing-space-64, 64px) 61px;
  }
  .empty-state-component__title {
    font-size: var(--Font-Size-Title-Title-2, 35px);
    line-height: var(--Font-Line-Height-Title-Title-2, 43px);
  }
  .empty-state-component__description {
    margin-top: -32px;
  }
}
@media (min-width: 1023px) {
  .empty-state-component {
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: var(--spacing-space-3-xl-64, 64px) var(--spacing-space-xl-32, 32px);
  }
  .empty-state-component::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--empty-state-image-path, none);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
  }
  .empty-state-component__image-wrapper {
    display: none;
  }
  .empty-state-component__content {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: var(--size-spacing-space-64, 64px) 106px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: var(--spacing-space-2-xl-48, 48px);
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    border-radius: var(--Radius-radius-l, 12px);
    border: 1px solid var(--Color-neutral-neutral-200, #E1E2EE);
    background: var(--Color-neutral-white, #FFF);
  }
  .empty-state-component__description {
    margin-top: -32px;
  }
  .empty-state-component.bg-none::before {
    background-image: unset;
  }
  .empty-state-component.bg-none .empty-state-component__description {
    margin-top: -16px;
  }
  .empty-state-component.bg-image {
    min-height: 800px;
  }
}
@media (max-width: 1023px) {
  .bg-solid {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: var(--spacing-space-3-xl-64, 64px) var(--spacing-space-l-24, 24px);
  }
  .bg-solid .empty-state-component__content {
    margin-top: 0px;
    background: var(--Color-neutral-neutral-50, #F7F7FA);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: var(--spacing-space-3-xl-64, 64px) var(--spacing-space-l-24, 24px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767px) {
  .bg-solid {
    padding: var(--spacing-space-xl-32, 32px) var(--spacing-space-l-24, 24px);
  }
  .bg-solid .empty-state-component__content {
    padding: var(--spacing-space-xl-32, 32px) var(--spacing-space-l-24, 24px);
  }
  .bg-solid .empty-state-component__buttons {
    width: 100%;
  }
  .bg-solid .empty-state-component__buttons .button {
    width: 100%;
    min-width: auto;
  }
  .bg-none__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .bg-none__wrapper .empty-state-component.bg-none {
    right: unset;
  }
  .bg-none__wrapper .empty-state-component.bg-none .empty-state-component__content {
    max-width: unset;
  }
}