html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--greys-metal-grey-50, #F7F9FA);
    font-family: 'Montserrat', 'Inter', sans-serif;
    place-items: center;
    min-width: 100%;
   /* max-width: 1420px;*/
}

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

/* Flexbox container to center content */
.dtt-d-flex {
    display: flex;
}

.dtt-navbar-left{
    display: flex;
    height: 48px;
    align-items: center;
    gap: 16px;
}

.dtt-form-label {
    color: var(--Primary-Black, #323241);
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    margin-bottom: 8px;
}

.dtt-form-control {
    display: flex;
    height: auto;
    width: 100%;
    padding: 12px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 4px;
    border: 1px solid rgba(101, 101, 113, 0.50);
    background: #FFF;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; /* Transition for focus effects */
    
}


/* Responsive Design */

@media (max-width: 480px) {
    .dtt-form-label {
        font-size: 14px;
    }

    .dtt-form-control {
        padding: 10px;
    }
}

/* Form control focus styles */
.dtt-form-control:focus {
    border: 1.5px solid #5B83C7; /* Border color on focus */
    box-shadow: 0px 0px 6px 0px rgba(37, 100, 191, 0.50); /* Box shadow on focus */
    outline: none; /* Remove default outline */
    background: #FFF; /* Ensure background remains white */
    border-radius: 4px; /* Ensure border radius remains consistent */
}

/* .dtt-card-body{
    height: auto;
    width: 100%;
    min-width: 450px;
    padding: 48px 40px;
    flex-direction: column;
    display:flex;
    gap: 32px;

    border-radius: 12px;
    background: var(--Primary-White, #FFF);
    box-shadow: 0px 1px 30px 0px rgba(0, 0, 0, 0.10);
} */

.dtt-profile-content{
    flex: 0 0 auto;
    flex-direction: column;
    width: 100%;
    gap: 24px;
    border-radius: 0px 8px 0px 0px;
    border: 1px 0px 0px 0px;
    opacity: 0px;
    display: flex;
    padding: 20px;
    border-color: rgba(186, 186, 194, 1);
    border-style: solid;
    border-width: 1px;
    border-radius: 0 8px 0 0;
    background-color: rgba(255, 255, 255, 1);

}
@media (min-width:768px) {
}


@media (max-width: 620px) {
    
    
    .dtt-profile-content{
        flex: 0 0 auto;
        flex-direction: column;
        width: 100%;
        gap: 24px;
        border-radius: 8px 8px 8px 8px;
        display: flex;
        padding: 16px;
        border-color: rgba(186, 186, 194, 1);
        border-style: solid;
        border-width: 1px;
        background-color: rgba(255, 255, 255, 1);
    }
}

@media (min-width: 620px) {
    
    
    .dtt-profile-content{
        flex: 0 0 auto;
        flex-direction: column;
        width: 100%;
        gap: 24px;
        border-radius: 0px 8px 8px 0px;
        display: flex;
        padding: 20px;
        border-color: rgba(186, 186, 194, 1);
        border-style: solid;
        border-width: 1px;
        background-color: rgba(255, 255, 255, 1);
    }
}

.dtt-form-check {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dtt-form-check-label{
    color: var(--Greys-Dark-Grey, #656571);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-check:not(.form-switch) input[type="checkbox"]:checked {
    background-image: url('../icons/checkbox-checked.svg');
}
  
.form-check:not(.form-switch) input[type="checkbox"]:not(:checked) {
    background-image: url('../icons/checkbox-default.svg');
}

.dtt-text-secondary-mt-3 {
    color: var(--Greys-Dark-Grey, #656571);
    font-weight: 400;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
}

.dtt-modal-blur {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px)
}


.dtt-fade {
    transition: opacity .15s linear
}

@media (prefers-reduced-motion:reduce) {
    .dtt-fade {
        transition: none
    }
}


.dtt-modal-dialog {
    position: relative;
    width: auto;
    margin: var(--tblr-modal-margin);
    pointer-events: none
}


.dtt-modal.dtt-fade .dtt-modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -1rem)
}

@media (prefers-reduced-motion:reduce) {
    .dtt-modal.dtt-fade .dtt-modal-dialog {
        transition: none
    }
}

.dtt-modal.dtt-show .dtt-modal-dialog {
    transform: none
}

.dtt-modal.dtt-modal-static .dtt-modal-dialog {
    transform: scale(1.02)
}

.dtt-modal-dialog-centered {
    min-height: calc(100% - var(--tblr-modal-margin) * 2);
    place-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}



@media (min-width:992px) {

    .dtt-modal-lg,
    .dtt-modal-xl {
        --tblr-modal-width: 720px
    }
 
}


.dtt-modal-content {
    position: relative;
    display: flex;
    max-width: 450px;
    flex-direction: column;
    color: var(--tblr-modal-color);
    pointer-events: auto;
    background-color: var(--tblr-modal-bg);
    background-clip: padding-box;
    border: var(--tblr-modal-border-width) solid var(--tblr-modal-border-color);
    border-radius: var(--tblr-modal-border-radius);
    outline: 0;
    gap: 32px;
    padding: 48px 40px;
    box-shadow:var(--tblr-modal-box-shadow);
    min-width: 350px;
}

.dtt-modal-fullscreen .dtt-modal-content {
    height: 100%;
    border: 0;
    border-radius: 0
}

.dtt-modal-title {
    margin-bottom: 0;
    margin: 0 auto;

}

.dtt-modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    border-top-left-radius: var(--tblr-modal-inner-border-radius);
    border-top-right-radius: var(--tblr-modal-inner-border-radius)

}
.form {
    display: block;
    margin-top: 0em;
    unicode-bidi: isolate;
    margin-block-end: 0em;
}

.dtt-modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: var(--tblr-modal-footer-bg);
    margin: 0 auto
}

::placeholder{
    color: rgba(101, 101, 113, 0.50);
}

@media (prefers-reduced-motion:reduce) {
    .dtt-form-control {
        transition: none
    }
}

textarea.dtt-form-control {
    min-height: 120px
}

/*  Dashboard page   */
.layout-boxed .dtt-page {
    margin: 0 auto;
    max-width: 1440px;
    border-radius: var(--tblr-theme-boxed-border-radius);
    color: var(--tblr-body-color)
}

@media (min-width:768px) {
    .layout-boxed .dtt-page {
        border: var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);
        background: var(--tblr-body-bg)
    }
}

@media (min-width:576px) {
    .navbar-vertical.navbar-expand-sm~.dtt-page {
        padding-left: 15rem
    }

    .navbar-vertical.navbar-expand-sm~.dtt-page [class^=container] {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }
}

@media (min-width:576px) {
    .navbar-vertical.navbar-expand-sm.navbar-right~.dtt-page {
        padding-left: 0;
        padding-right: 15rem
    }
}

@media (min-width:768px) {
    .navbar-vertical.navbar-expand-md~.dtt-page {
        padding-left: 15rem
    }

    .navbar-vertical.navbar-expand-md~.dtt-page [class^=container] {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }
}

@media (min-width:768px) {
    .navbar-vertical.navbar-expand-md.navbar-right~.dtt-page {
        padding-left: 0;
        padding-right: 15rem
    }
}

@media (min-width:992px) {
    .navbar-vertical.navbar-expand-lg~.dtt-page {
        padding-left: 15rem
    }

    .navbar-vertical.navbar-expand-lg~.dtt-page [class^=container] {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }
}

@media (min-width:992px) {
    .navbar-vertical.navbar-expand-lg.navbar-right~.dtt-page {
        padding-left: 0;
        padding-right: 15rem
    }
}

@media (min-width:1200px) {
    .navbar-vertical.navbar-expand-xl~.dtt-page {
        padding-left: 15rem
    }

    .navbar-vertical.navbar-expand-xl~.dtt-page [class^=container] {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }
}

@media (min-width:1200px) {
    .navbar-vertical.navbar-expand-xl.navbar-right~.dtt-page {
        padding-left: 0;
        padding-right: 15rem
    }
}

@media (min-width:1400px) {
    .navbar-vertical.navbar-expand-xxl~.dtt-page {
        padding-left: 15rem
    }

    .navbar-vertical.navbar-expand-xxl~.dtt-page [class^=container] {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }
}

@media (min-width:1400px) {
    .navbar-vertical.navbar-expand-xxl.navbar-right~.dtt-page {
        padding-left: 0;
        padding-right: 15rem
    }
}

.navbar-vertical.navbar-expand~.dtt-page {
    padding-left: 15rem
}

.navbar-vertical.navbar-expand.navbar-right~.dtt-page {
    padding-left: 0;
    padding-right: 15rem
}

.dtt-page {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    width: auto;
    min-width: 100%
}



.dtt-navbar {
    --tblr-navbar-padding-x: 16px;
    --tblr-navbar-padding-y: 32px;
    --tblr-navbar-color: var(--tblr-body-color);
    --tblr-navbar-hover-color: rgba(var(--tblr-emphasis-color-rgb), 0.8);
    --tblr-navbar-disabled-color: var(--tblr-disabled-color);
    --tblr-navbar-active-color: var(--tblr-body-color) color;
    --tblr-navbar-brand-padding-y: 0.5rem;
    --tblr-navbar-brand-margin-end: 1rem;
    --tblr-navbar-brand-font-size: 1rem;
    --tblr-navbar-brand-color: var(--tblr-body-color);
    --tblr-navbar-brand-hover-color: var(--tblr-body-color) color;
    --tblr-navbar-nav-link-padding-x: 0.75rem;
    --tblr-navbar-toggler-padding-y: 0;
    --tblr-navbar-toggler-padding-x: 0;
    --tblr-navbar-toggler-font-size: 1rem;
    --tblr-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2829, 39, 59, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    --tblr-navbar-toggler-border-color: rgba(var(--tblr-emphasis-color-rgb), 0.15);
    --tblr-navbar-toggler-border-radius: var(--tblr-border-radius);
    --tblr-navbar-toggler-focus-width: 0;
    --tblr-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
}


.dtt-navbar {
    --tblr-navbar-active-bg: rgba(0, 0, 0, 0.06);
    --tblr-navbar-bg: transparent;
    align-items: stretch;
    background: #FFF;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
    --tblr-navbar-active-bg: rgba(0, 0, 0, 0.06);
    color: var(--tblr-body-color)
}


.dtt-navbar-overlap:after {
    content: "";
    height: 9rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: inherit;
    z-index: -1;
    box-shadow: inherit
}

@media print {
    .dtt-print-none {
        display: none !important
    }
}

.dtt-container-xl {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    
}
@media (min-width:1200px) {

    .dtt-page-wrapper {
        max-width: 1140px
    }
}


@media (min-width:1400px) {

    .dtt-page-wrapper {
        max-width: 1320px
    }
}

.dtt-navbar-brand-image {
    width: 150px;
    height: 50.885px;
}


.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    place-content: center;
}

.align-items-md-center {
    place-content: center !important
}

@media (max-width:575.98px) {
    .navbar-expand-sm .navbar-collapse {
        flex-direction: column
    }
}

.nav-link-icon {
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.dtt-nav-item {
    border-bottom: 3px solid transparent;
}

.dtt-nav-item.active .icon.icon-dashboard path,
.dtt-nav-item.active .icon.icon-test-suites path {
    stroke: #3465AF;
    stroke-width: 2px;
}

.dtt-nav-item.new-window .nav-link .dtt-nav-link-title {
    background-image: url('../icons/new_tab_icon.svg');
    background-position: center right;
    background-repeat: no-repeat;
    padding-right: 20px;
}

.dtt-nav-link-title{
    color: var(--Primary-Black, #323241);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 19.2px */
}

/* Hover styles for the nav-link-title */
.dtt-nav-item:not(.active):hover {
    border-radius: 8px 8px 0px 0px;
    border-bottom: 3px solid var(--Greys-Metal-Grey, #E7ECF0);
    background: var(--greys-metal-grey-50, #F7F9FA);
}

/* Additional styling (optional) */
.dtt-nav-item .icon {
    width: 24px;  /* Adjust icon size as needed */
    height: 24px; /* Adjust icon size as needed */
}

.dtt-navbar-nav{
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-lastname{
    color: var(--Primary-Black, #323241);

    /* Users Name */
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 16.8px */
}
.profile-organization{
    color: var(--Primary-Black, #323241);

    /* Super Small */
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
}

.is-left{
    display: flex;
    width: 24px;
    height: 24px;
    padding: 2px 4px;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.dtt-profile-dropdown{
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 4px 4px 4px 8px;
    border-radius: 4px;
    
}
.dtt-profile-dropdown:hover{
    background: rgba(247, 249, 250, 1);
}

.dtt-profile-dropdown:active{
    background: rgba(239, 242, 244, 1);
}

.dtt-page-title{

    color: var(--Primary-Black, #323241);

    /* H1 */
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 33.6px */
    margin-bottom: 24px;
}
.dtt-page-subtitle{
    color: var(--Primary-Black, #323241);

    /* H2 */
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 28px */

    
    margin-bottom: 16.5px;

}

.dtt-row {
    --tblr-gutter-x: var(--tblr-content-padding);
    --tblr-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;

}
.dtt-row>* {
    flex-shrink: 0;

    max-width: 100%;
    margin-top: var(--tblr-gutter-y)
}

.dtt-row-cards {
    --tblr-gutter-x: 1rem;
    --tblr-gutter-y: 1rem;
    min-width: 0;
    gap: 32px
}

.dtt-row-cards .dtt-row-cards {
    flex: 1
}

@media (max-width:991.98px) {
    .dtt-row-cards {
        --tblr-gutter-x: 0.5rem;
        --tblr-gutter-y: 0.5rem
    }
}

@media (min-width:992px) {
    .dtt-grid .dtt-g-col-lg-1 {
        grid-column: auto/span 1
    }

    .dtt-grid .dtt-g-col-lg-2 {
        grid-column: auto/span 2
    }

    .dtt-grid .dtt-g-col-lg-3 {
        grid-column: auto/span 3
    }

    .dtt-grid .dtt-g-col-lg-4 {
        grid-column: auto/span 4
    }

    .dtt-grid .dtt-g-col-lg-5 {
        grid-column: auto/span 5
    }
}


.dtt-page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 1440;
}

@media print {
    .dtt-page-wrapper {
        margin: 0 !important
    }
}


.dtt-page-wrapper .dtt-page-header {
    margin: var(--tblr-content-padding) 0 0
}
@media (min-width:576px) {
    .navbar-expand-sm.navbar-vertical~.navbar,
    .navbar-expand-sm.navbar-vertical~.page-wrapper {
        margin-left: 15rem
    }

    .navbar-expand-sm.navbar-vertical.navbar-right~.navbar,
    .navbar-expand-sm.navbar-vertical.navbar-right~.page-wrapper {
        margin-left: 0;
        margin-right: 15rem
    }
}


.dtt-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 450px;
    max-width:580;
    height: 100%;
    word-wrap: break-word;
    background: var(--Primary-White, #FFF);
    background-clip: border-box;
    border: 1px solid #E6E8EC;
    border-radius: 8px;
}
.card-group>.dtt-card {
    margin-bottom: 1.5rem;
}

.dtt-card {
    transition: transform .3s ease-out, opacity .3s ease-out, box-shadow .3s ease-out
}

@media (prefers-reduced-motion:reduce) {
    .dtt-card {
        transition: none
    }
}

@media print {
    .dtt-card {
        border: none;
        box-shadow: none
    }
}

a.dtt-card {
    color: inherit
}

a.dtt-card:hover {
    text-decoration: none;
    box-shadow: rgba(var(--tblr-body-color-rgb), .16) 0 2px 16px 0
}

.dtt-card .dtt-card {
    box-shadow: none
}

.dtt-card-header{
    display: flex;
    padding: 10px 10px 10px 16px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-bottom: 1px solid #E6E8EC;
}

.dtt-card-title {
    color: #000;

    /* H3 */
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 25.2px */
}

.dtt-col-4{
    display: flex;
    width: 180px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.dtt-col-6{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
}

.dtt-title-h4{
    color: var(--Primary-Black, #323241);

    /* H4 */
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 22.4px */
}

.dtt-title-h5{
    color: var(--Primary-Black, #323241);

    /* H5 */
    font-size: 16px;
    font-weight: 600;
    line-height: 22.4px
}

.dtt-body-text{
    align-self: stretch;
    color: var(--Greys-Dark-Grey, #656571);

    /* Body */
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}
@media (min-width: 1400px) {
    .dtt-container-xl,
    .dtt-page-wrapper {
        max-width: 1320px;
        width: 100%;
        padding-right: calc(var(--tblr-gutter-x) * .5);
        padding-left: calc(var(--tblr-gutter-x) * .5);
        margin-right: auto;
        margin-left: auto;
    }
  }

/* Optional: Add styles for the active nav-link */
.dtt-nav-item.active  {
    border-bottom: 3px solid var(--Primary-Blue, rgba(52, 101, 175, 1))
}
.dtt-nav-item.active .dtt-nav-link-title {
    color: var(--Primary-Blue, rgba(52, 101, 175, 1));
}

.dtt-test-result{
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
    text-align: left;

    color: black;
    border-bottom: none
}

.avatar-sm {
    --tblr-avatar-size: 2rem
}

.avatar-sm .badge:empty {
    width: .5rem;
    height: .5rem
}


.avatar {
    --tblr-avatar-size: 2.5rem;
    --tblr-avatar-bg: var(--Tertiary-Amethyst, rgba(179, 103, 208, 1));
    --tblr-avatar-shadow: inset rgba(var(--tblr-body-color-rgb), 0.04) 0 0 0 1px;
    position: relative;
    width: 32px;
    height: 32px;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    justify-content: center;
    color: White;
    text-align: center;
    text-transform: uppercase;
    vertical-align: bottom;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: var(--tblr-avatar-bg) no-repeat center/cover;
    border-radius: 4px;
    box-shadow: var(--tblr-avatar-shadow);
    padding: 8px
}
.AvatarName {
gap: 8px;
}

.dtt-eyebrew{
    /*styleName: Eyebrow*/
    font-size: 12px;
    font-weight: 600;
    color: var(--Greys-Medium-Grey, #767686);
    font-style: normal;
    line-height: 140%;
    text-transform: uppercase;
}

.dtt-body-font{
    /*styleName: Body*/
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

.dtt-myaccount{
    gap: 12px;
    opacity: 0px;
}

.content-content {
    gap: 24px;
    width: 1022px;
    display: flex;
    padding: 20px;
    position: relative;
    align-items: flex-start;
    flex-shrink: 0;
    border-color: rgba(186, 186, 194, 1);
    border-style: solid;
    border-width: 1px;
    border-radius: 0 8px 8px 0;
    background-color: rgba(255, 255, 255, 1);
}
.content-my-account {
    gap: 24px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.content-frame58225 {
    gap: 18px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.content-frame58224 {
    gap: 28px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.content-text {
    color: rgba(50, 50, 65, 1);
    height: auto;
    text-align: left;
    line-height: 139.9999976158142%;
}
.content-text02 {
  color: rgba(50, 50, 65, 1);
  height: auto;
  text-align: left;
  line-height: 139.9999976158142%;
}
.content-frame58256 {
  gap: 8px;
  width: 88px;
  height: 88px;
  display: flex;
  padding: 8px;
  align-items: center;
  flex-shrink: 0;
  border-radius: 4px;
  justify-content: center;
  background-color: rgba(231, 236, 240, 1);
}
.content-text04 {
  color: rgba(0, 0, 0, 1);
  font-size: 40px;
  font-weight: 500;
  line-height: 56px;
  font-stretch: normal;
  text-decoration: none;
}
.content-profile-info {
  gap: 12px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.content-name-organzation {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
.content-text06 {
  color: rgba(118, 118, 134, 1);
  height: auto;
  text-align: left;
  line-height: 139.9999976158142%;
}
.content-text08 {
  color: rgba(50, 50, 65, 1);
  height: auto;
  text-align: left;
  line-height: 150%;
}
.content-name-organzation1 {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
.content-text10 {
  color: rgba(118, 118, 134, 1);
  height: auto;
  text-align: left;
  line-height: 139.9999976158142%;
}
.content-text12 {
  color: rgba(50, 50, 65, 1);
  height: auto;
  text-align: left;
  line-height: 150%;
}
.content-text14 {
  color: rgba(118, 118, 134, 1);
  height: auto;
  text-align: left;
  line-height: 139.9999976158142%;
}
.content-text16 {
  color: rgba(50, 50, 65, 1);
  height: auto;
  text-align: left;
  line-height: 150%;
}

.mycredential{
    display: none;
}
.myprofile{
    display: flex;
    width: 100%;
}

.edit-button{
    --tblr-avatar-size: 2.5rem;
    --tblr-avatar-bg: var(--Tertiary-Amethyst, rgba(179, 103, 208, 1));
    --tblr-avatar-shadow: inset rgba(var(--tblr-body-color-rgb), 0.04) 0 0 0 1px;
    position: relative;
    width: 32px;
    height: 32px;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    justify-content: center;
    color: White;
    text-align: center;
    text-transform: uppercase;
    vertical-align: bottom;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: var(--tblr-avatar-bg) no-repeat center/cover;
    border-radius: 4px;
    box-shadow: var(--tblr-avatar-shadow);
    padding: 8px
}

.dtt-sorted-table-initial
{
    visibility: hidden
}
.dtt-sorted-table-sorted
{
    visibility: visible
}
