:root {
    --onyx-gradient: linear-gradient(90deg, #BDC52A 0%, #36BACC 102.19%);
    --onyx-gradient-hover: linear-gradient(90deg, #c9d221 0%, #2bc6db 102.19%);
    --onyx-btn-gradient: linear-gradient(90deg, #4A48EE 0%, #36BACC 100%);
    --onyx-btn-gradient-hover: linear-gradient(90deg, #5b59ee 0%, #48d0e1 100%);

    --bs-dark: #010101;
    --bs-table-striped-bg: #f2f5fe;
}

html,
body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.onyx-text {
    background: var(--onyx-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 100px;
}

.onyx-text-stroked {
    background: var(--onyx-gradient);
    -webkit-background-clip: text;
    -webkit-text-stroke: 2.5px transparent;
    color: var(--bs-dark);
    letter-spacing: 3px;
    font-size: 100px;
}

.custom-btn {
    color: #fff;
    background-image: var(--onyx-btn-gradient);
    border-color: #36BACC;
}

.custom-btn:disabled {
    background-image: none;
    background-color: grey;
    border-color: grey;
    color: white;
}



.custom-btn:hover {
    color: #fff;
    background-image: var(--onyx-btn-gradient-hover);
    border-color: #4A48EE;
}

.hero {
    padding-top: 5rem;
    padding-bottom: 5rem;
}


.hero__h1 {
    font-size: 6.25 rem;
}

.hero__h3 {
    font-size: 2.25rem;
}

.about {
    padding-top: 3rem;
}

.about__lines {
    display: inline-block;
    width: 9.375rem;
    height: 1px;
    background-image: var(--onyx-gradient);
    transform: translateY(-3px);
}

.about__lines:first-of-type {
    margin-right: 3.375rem;
}

.about__lines:last-of-type {
    margin-left: 3.375rem;
}


.about__lines:first-of-type::after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-image: var(--onyx-gradient);
    display: block;
    position: absolute;
    left: 0;
    top: -100%;
}

.about__lines:last-of-type::after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-image: var(--onyx-gradient);
    display: block;
    position: absolute;
    right: 0;
    top: -110%;
}

.about__sub-section {
    margin-bottom: 4rem;
}

.about__sub-heading {
    background-image: linear-gradient(90deg, rgba(189, 197, 42, 0.5) 0%, rgba(54, 186, 204, 0.2) 62.5%, rgba(255, 255, 255, 0.2) 99.67%);
    font-size: 22px;
    width: 40%;
    position: relative;
    display: flex;
}


.about__sub-heading span {
    padding: .4rem 0 .4rem;
    display: block;
}

.about__sub-heading::before {
    content: "";
    justify-content: center;
    width: 3px;
    background-color: var(--bs-dark);
    top: 0;
    bottom: 0;
    margin-right: .4rem;
}


.footer {
    margin-top: auto;
    padding: 3rem 0;
    background-color: var(--bs-dark);
}

.onyx__card {
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin-bottom: 4rem;
}

.onyx__card form,
.onyx__card.profile {
    padding: 1rem 2rem;

}

.onyx__card-heading {
    margin: 2rem 0;
}

.data-provider__table {
    box-shadow: 0 0px 25px -5px rgb(0 0 0 / 0.1), 0 8px 5px -6px rgb(0 0 0 / 0.1);
    border-radius: .5rem;
    overflow: hidden;
}

.data-provider__table td,
.data-provider__table th {
    padding: 2rem 1.5rem;
}

.onyx__app-card__heading {
    font-size: 18px;
    text-transform: capitalize;
    margin: 0;
}

.onyx__app-card__caption {
    font-size: 13px;
    margin: 0;
}

.onyx__app-card__sub-heading {
    font-size: 14px;
    margin: 0;
}

.onyx__app-card__badge {
    position: absolute;
    bottom: -5px;
    right: -10px;
    background-color: var(--bs-dark);
    color: var(--bs-light);
    padding: .5rem .8rem;
    border-radius: .5rem;
    clip-path: polygon(15% 0%, 100% 0, 100% 100%, 15% 100%, 0 50%);
    font-size: 10px;
    display: flex;
    align-items: center;
}

.onyx__app-card__badge span {
    width: 8px;
    display: inline-block;
    height: 8px;
    background-color: var(--bs-white);
    border-radius: 50%;
    margin-right: 5px;
}

.onyx__form__caption {
    font-size: .8rem;
    margin-bottom: .5rem;
}

.onyx__form__step__container {
    box-shadow: 0 0px 25px -5px rgb(0 0 0 / 0.1), 0 8px 5px -6px rgb(0 0 0 / 0.1);
    padding: 1.3rem 0;
    margin-bottom: 3rem;
}

.onyx__form__step {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 500;
}

.onyx__form__step__card {
    box-shadow: 0 0px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    padding: 1rem 2rem;
    border-radius: 10px;
    margin: 3rem 0 6rem;
    background-color: var(--bs-white);
    color: var(--bs-dark)
}

#app-modal {
    background: #f7f7f7;
    padding: 1.5rem;
    line-height: 2;
}

.bb-c-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: .3rem;
}

.full-width-card {
    max-width: 100%;
    padding: 1rem;
}

.ds-u-font-weight--bold {
    font-weight: 700 !important;
}

.ds-u-margin-bottom--1 {
    margin-bottom: 8px !important;
}

pre {
    font-family: monospace, monospace;
    font-size: .8em !important;
    background-color: #f3f6fa;
    border: solid 1px #dce6f0;
    padding: 8px;
    font: 1rem Consolas, "Liberation Mono", Menlo, Courier, monospace;
    font-size: .9rem;
    line-height: 1.45;
    color: #567482;
    overflow: auto;
    white-space: normal;
}

.ds-u-margin-top--4 {
    margin-top: 32px !important;
}

.bb-app-optional-information-card {
    display: flex;
    background: #fff;
    border-radius: .3rem;
    border: 1px solid #ebebeb;
    margin-bottom: 2rem;
}

.bb-app-optional-information-card .info-card-left {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #ebebeb;
}

.bb-app-optional-information-card .info-card-left .terms-container {
    display: flex;
    flex-direction: column;
}

.bb-app-optional-information-card .info-card-right {
    padding: 1rem;
}

.ds-u-margin-bottom--1 {
    margin-bottom: 8px !important;
}

.custom-nav-items {
    color: white !important;
}

.p2p-tabs {
    /* margin: 1.5rem 0px; */
}

.p2p-tabs .nav-link:focus,
.p2p-tabs .nav-link:hover {
    /* color: var(--bs-dark) !important; */
    /* background-image: none !important; */
    background: var(--onyx-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* font-size: 100px; */
    /* font-weight: bold; */
}

.custom-tabs {
    display: flex;
    flex-direction: row;
    /* border-bottom: 1px solid #d1d5db; */
    padding-bottom: 1.2rem;
}

.custom-tabs [data-bs-toggle="tab"] {
    background-color: white;
    border: none;
    color: #747b87;
    text-decoration: none;
}

.custom-tabs [data-bs-toggle="tab"]:focus {
    outline: none;
}

.active-custom-tab {
    position: relative;
}

.active-custom-tab::after {
    content: '';
    position: absolute;
    bottom: -13px;
    width: 92%;
    height: 3px;
    background: linear-gradient(90deg, #4a46ef 0%, #387fc1 48.96%, #36bccc 100%);
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 5px;
}

.active-custom-tab[data-bs-toggle="tab"] {
    font-weight: bold;
    background: linear-gradient(90deg, #4a46ef 0%, #387fc1 48.96%, #36bccc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.modal-content {
    /* width: 22vw;
    height: 90vh;  */
    /* max-height: 90vh; */
    position: relative;
    /* border-radius: 15px !important; */
}

.custom-modal-content {
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-radius: 8px;
}

/* .exampleModal {
    width: 70vw;
    margin-left: -15vw;
    max-height: 90vh;
} */


.members-container {
    padding-top: 2rem;
    /* padding-left: 4rem; */
}

.toolbar-container {
    margin: 2rem 0;
}

.table-data {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 1rem !important;
}

.info-abbr {
    cursor: pointer;
    background-color: #fef08a;
    border-radius: 15px;
    color: #ca8a04;
    width: fit-content;
    display: flex;
    justify-content: center;
    margin: auto;
    font-weight: bold;
    padding: .2rem .8rem;
    text-transform: capitalize;
}

.search-btn {
    background-color: #0b5ed7;
}


.export-dropdown-toggle {
    width: fit-content;
    margin: 0;
    padding: 0;
    padding: .5rem .8rem;
    font-size: 14px;
}

.export-dropdown-menu {
    font-size: 14px;
}

.custom-spinner {
    position: absolute;
    bottom: -35vh;
    left: 35vw;
    width: 3rem;
    height: 3rem;
}

.custom-spinner-2 {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 3rem;
    height: 3rem;
}

.login-code {
    list-style: none;
    padding: 0;
}

.profile-heading {
    margin: 2rem;
    font-size: 4rem;
}

.success-badge {
    letter-spacing: 1px;
}

.custom-nav-items {
    color: white !important;
}



.custom-tabs {
    display: flex;
    flex-direction: row;
    /* border-bottom: 1px solid #d1d5db; */
    padding-bottom: 1.2rem;
}

.custom-tabs [data-bs-toggle="tab"] {
    background-color: white;
    border: none;
    color: #747b87;
    text-decoration: none;
}

.custom-tabs [data-bs-toggle="tab"]:focus {
    outline: none;
}

.active-custom-tab {
    position: relative;
}

.active-custom-tab::after {
    content: '';
    position: absolute;
    bottom: -13px;
    width: 92%;
    height: 3px;
    background: linear-gradient(90deg, #4a46ef 0%, #387fc1 48.96%, #36bccc 100%);
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 5px;
}

.active-custom-tab[data-bs-toggle="tab"] {
    font-weight: bold;
    background: linear-gradient(90deg, #4a46ef 0%, #387fc1 48.96%, #36bccc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.email-config {
    margin-top: 5rem;
    padding: 1.5rem 2rem;
}

.vars {
    border-radius: 4px;
    padding: .1rem .2rem;
    color: blue;
    font-style: italic;

    margin-bottom: .3rem;
    display: inline-block;
}

.my-button1 {
    background: linear-gradient(90deg, #4a46ef 0%, #387fc1 48.96%, #36bccc 100%);
    justify-content: center;
    align-items: center;
    padding: 8px 32px;
    border-radius: 10000px;
    font-family: Questrial;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0em;
    text-align: center;
    border: none;
    color: #fff;
    margin-left: 90rem;
    margin-bottom: 1rem;
}

#download-button:disabled {
    background: lightgray;

}

.client-logo {
    height: 4rem;
}

.success-abbr {
    cursor: pointer;
    background-color: #a7f3d0;
    border-radius: 15px;
    color: #065f46;
    width: fit-content;
    display: flex;
    justify-content: center;
    margin: auto;
    font-weight: bold;
    padding: .2rem .8rem;
    text-transform: capitalize;
}

.pending-abbr {
    cursor: pointer;
    background-color: #fef9c3;
    border-radius: 15px;
    color: #a16207;
    width: fit-content;
    display: flex;
    justify-content: center;
    margin: auto;
    font-weight: bold;
    padding: .2rem .8rem;
    text-transform: capitalize;
}

.danger-asbbr {

    justify-content: center;

    margin: auto;

    cursor: pointer;

    background-color: #fecaca;

    border-radius: 15px;

    color: #991b1b;

    display: flex;

    width: fit-content;

    font-weight: bold;
    font-size: 14px;
    text-transform: capitalize;
}

.footer-text {
    font-weight: bold;
    background: linear-gradient(90deg, #4a46ef 0%, #387fc1 48.96%, #36bccc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plans-card {
    padding: 1rem 2rem;
}

.plans-card-title {
    font-size: 2rem;
    text-transform: capitalize;
    color: #000;
    font-weight: bolder;
    margin-bottom: 1.5rem;
}

/* .plans-content-wrapper {

} */
.dropdown-filter {
    width: fit-content;
    background: white;
    margin: 0;
    border: 1px solid #D1D5DB;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    padding: .65rem .8rem;
    border-radius: 3px;
    color: black;
    line-height: 0;
}

.dropdown-filter:hover {
    background-color: #e5e7eb;
}

.plans-toolbar {

    position: sticky;

    top: 0;

    /* right: -calc(var(--bs-gutter-x) * .5); */

    /* left: 10rem; */

    background-color: white;

    margin-bottom: .5rem;

    z-index: 99;
}

.custom-table-wrapper {
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
}


.sort-btn:hover {
    background-color: #e5e7eb;
    /* padding: .5rem .8rem; */
}

.search-plans {
    border: 0;
    outline: 0;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    border-radius: 4px;
    padding: .2rem .8rem;
    font-size: 1.5rem;
    flex-grow: 1;
    /* margin-right: 1.25rem; */
    border: 1px solid #D1D5DB;
    width: 100%;
}

.custom-card {
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1rem 1rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    background-color: white;
}

#data-container .custom-card:hover {
    background-color: #e5e7eb;
    cursor: pointer;
}

.custom-card-title {

    font-weight: bold;

    color: #000;

    font-size: 13px;

    margin: 0;

    letter-spacing: .5px;

    text-transform: capitalize;
}

.custom-card-item {
    margin: 0;
    line-height: 16px;
    font-size: 13px;
    text-transform: capitalize;
}

.custom-card-value {
    /* font-weight: bold; */
    color: #000;
}

.custom-card-status {
    width: 3rem;
    height: 3rem;

    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    color: white;
    font-size: 15px;
    font-weight: bold;
}

.preview {
    background-color: #f3f4f6;
}

.plan-preview-logo {
    width: 8rem;
    height: 8rem;
    background-color: red;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 3.5rem;
    margin: 1rem auto 3rem;
    text-transform: uppercase;
}

.preview-body {
    padding: 0 2rem;
}

.preview-item {

    color: black;

    text-transform: capitalize;

    font-size: 16px;

    letter-spacing: .4px;

    line-height: 2.3rem;
}

.preview-value {
    font-weight: bold;
}
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}
.nav-item.dropdown .dropdown-item:hover, .nav-item.dropdown .dropdown-item:focus {
    /* background: var(--onyx-gradient); */
    background: var(--onyx-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


@media screen and (max-width: 928px) {
    .my-button1 {
        font-size: 1.2rem;
        margin-left: 1rem;

    }
}

@media screen and (max-width: 655px) {
    .my-button1 {
        font-size: 1.2rem;
        width: 60vw;
        margin-left: 1rem;
    }
}

@media screen and (max-width: 1366px) {
    .my-button1 {
        font-size: 1.2rem;
        margin-left: 1rem;

    }
}

.plan-add {
    border: none;
    color: green;
    background-color: transparent;
    font-size: 1.5rem;
    padding: .1rem .8rem 0rem;
    border-radius: 5px;
    border: 10px black;
    cursor: pointer;
}

.plan-add:hover {
    /* background-color: red; */
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    background-color: transparent;
    padding: .1rem .8rem 0rem;
    border-radius: 5px;
}

.plan-menu {
    background-color: #ffffffeb;
    border-radius: 6px;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    display: none;
}

#data-container .custom-card:hover .plan-menu {
    display: block;
}

.custom-toolbar {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: end;
    margin-bottom: .5rem;
    width: 100%;
    gap: .5rem;
}

.filter-container {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    margin-right: 1rem;
    flex-direction: column;
}

.search-input {
    outline: 0;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 10%), 0 1px 2px -1px rgb(0 0 0 / 10%) !important;
    border-radius: 4px !important;
    padding: .5rem .8rem !important;
    /* font-size: 1rem !important; */
    flex-grow: 1;
    margin-right: 1.25rem;
    border: 1px solid #D1D5DB;
    width: 100%;
    padding: 9px 13px 9px 13px;
    border: 1px solid #D1D5DB;
    font-size: 16px;
    font-weight: 400;
    line-height: 10px;
    /* text-transform: capitalize; */
    color: #111827;
    background: #FFFFFF;
    border-radius: 6px;
    border: 1px solid #D1D5DB;
    box-shadow: 0px 1px 2px rgb(0 0 0 / 5%);
}

.members-filter {
    padding: 9px 13px 9px 2px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-transform: capitalize;
    color: #111827;
    background: #FFFFFF;
    border-radius: 6px;
    border: 1px solid #D1D5DB;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

.custom-label {
    font-weight: bold;
    font-size: 12px;
    line-height: 10px;
    color: #374151;
    text-transform: capitalize;
}

.sort-btn {
    background-color: white;
    border: 1px solid #D1D5DB;
    padding: 0rem .5rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    border-radius: 4px;
    color: black;
    font-size: 1.55rem;
    cursor: pointer !important;
    /* height: 2rem; */
}


.table-head {
    background-color: #374151;
    color: white;
    letter-spacing: 0.6px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 5px 10px;
  z-index: 1000;
  text-decoration: none;
  transition: top 0.2s ease-in-out;
}

.skip-link:focus {
  top: 0;
}

.acc__items-2 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90%; 
  display: inline-block;
  vertical-align: middle;
}

.table-responsive-wrapper {
  width: 100%;
  overflow-x: auto;
}

.table-responsive-wrapper table {
  min-width: 768px; 
  width: 100%;
  table-layout: auto;
}

#id_picture::file-selector-button {
    background: linear-gradient(90deg, #4A48EE 0%, #36BACC 100%);   
    border: none;
    border-radius: 10px;
    margin-right: 10px;
    cursor: pointer;
    color: white;
  }

  #id_picture::file-selector-button:hover {
    background:linear-gradient(90deg, #BDC52A 0%, #36BACC 102.19%);
  }

@media (max-width: 768px) {
  .table-responsive-wrapper {
    -webkit-overflow-scrolling: touch;
  }

  .action-buttons-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .action-buttons-wrapper .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

@media (forced-colors: active) {
  input, textarea, select  {
    forced-color-adjust: none; 
    background-color: Window;
    color: WindowText;
    border: 1px solid ButtonText;
  }

  input:focus, select:focus, textarea:focus {
    outline: 2px solid Highlight;
    outline-offset: 2px;
  }

  input:-webkit-autofill,
  textarea:-webkit-autofill,
  select:-webkit-autofill {
    forced-color-adjust: none;
    background-color: Window !important;
    color: WindowText !important;
    border: 1px solid ButtonText;
  }
}

