body {
    background: white;
    width: 100%;
    overflow-x: hidden;
}

html {
    width: 100%;
}

* {
    position: relative;
    font-family: Inter;
    padding: 0;
    margin: 0;
    color: #101C2F;
}

span {
    font-family: inherit;
    color: inherit;
}

.strong {
    font-weight: 500 !important;
}

ul li {
    font-family: Roboto;
}

*, *:after, *:before {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

.row {
    display: flex;
}

a:visited {
    color: inherit;
    text-decoration: inherit;
    font-weight: inherit;
}

header {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #303A60 -0.5%, #2C3661 24.96%, #394780 65.7%, #146693 91.16%, #088CB2 101.34%);
    height: 56px;
    padding-left: 25px;
    padding-right: 25px;
    .left {
        display: flex;
        align-items: center;
        .logo {
            border-right: 1px solid white;
            padding-right: 8px;
            margin-right: 8px;
            display: flex;
            align-items: center;
        }
        p {
            color: white;
            font-size: 18px;
            line-height: 24px;
            padding-right: 8px;
            &:last-child {
                padding-right: 0px;
            }
        }
    }
    .right {
        display: flex;
        align-items: center;
        margin-left: auto;
        list-style: none;
        li {
            margin-right: 15px;
            &.pipe {
                height: 16px;
                width: 1px;
                background: rgba(255,255,255,.1);
                margin-right: 15px;
            }
            &:last-child {
                margin-right: 0px;
            }
        }
    }
    &.white {
        padding-left: 64px;
        padding-right: 64px;
        background: white;
        height: 82px;
        .left {
            .logo {
                border: none;
                padding: 0;
                margin: 0;
            }
        }
        .right {
            li {
                margin-right: 8px;
            }
        }
    }
}

main {
    background: #101629;
    /* 100vh - header height */
    min-height: calc(100vh - 56px);
    padding: 30px;
    &.white {
        background: white;
        min-height: auto;
        padding: 0;
    }
    section {
        &.welcome {
            background: linear-gradient(180deg, #000000 63.5%, #27364C 100%);
            display: flex;
            align-items: center;
            padding-left: 64px;
            padding-right: 64px;
            padding-top: 138px;
            padding-bottom: 138px;
            .welcome_card {
                background: linear-gradient(134.87deg, #024CBB 23.82%, #000066 97.22%);
                padding: 32px;
                width: calc(50% - 32px);
                border-radius: 24px;
                h1 {
                    font-weight: 500;
                    font-size: 30px;
                    line-height: 34px;
                    padding-bottom: 16px;
                    color: white;
                }
                p,b {
                    color: white;
                    a {
                        color: white;
                    }
                }
                & > p, & > b {
                    display: block;
                    margin-bottom: 8px;
                }
                ul {
                    li {
                        list-style: none;
                        font-weight: 400;
                        font-size: 16px;
                        color: white;
                        display: flex;
                        align-items: center;
                        margin-bottom: 8px;
                        &:last-child {
                            margin-bottom: 0px;
                        }
                        span {
                            display: block;
                            margin-right: 16px;
                            &:first-child {
                                width: 140px;
                            }
                        }
                    }
                }
                .button {
                    margin-top: 32px;
                }
            }
            .right {
                position: absolute;
                left: 50%;
                right: 0;
                top: 0;
                bottom: 0;
                background-image: url("../img/big-ot.svg");
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
            }
        }
        &.info {
            background: white;
            padding-top: 61px;
            padding-bottom: 61px;
            padding-left: 64px;
            padding-right: 64px;
            .row {
                align-items: center;
            }
            &.gray {
                background: #F6F7F7;
            }
            h2 {
                font-weight: 800;
                font-size: 46px;
                display: flex;
                align-items: flex-start;
                flex-flow: column;
                span {
                    padding-top: 32px;
                    padding-bottom: 32px;
                }
            }
            ul {
                list-style-position: inside;
                li {
                    font-weight: 400;
                    font-size: 16px;
                    margin-bottom: 8px;
                }
            }
            .box {
                display: flex;
                align-items: center;
                flex: 1;
                margin-right: 32px;
                padding: 32px;
                box-shadow: 1px 0px 10px 0px #101C2F0F;
                border-radius: 16px;
                background: white;
                text-decoration: none;
                p {
                    font-weight: 700;
                    font-size: 20px;
                    line-height: 28px;
                    color: #0066FF;
                    margin-left: 24px;
                }
                img {
                    max-width: 48px;
                }
                &:first-child {
                    box-shadow: none;
                    padding-left: 0px;
                    img {
                        max-width: 100%;
                    }
                }
                &:last-child {
                    margin-right: 0px;
                }
            }
        }
    }
}

.container {
    background: linear-gradient(180deg, #1D2238 0%, rgba(29, 34, 56, 0.7) 100%);
    /* 100vh - main padding (top + bottom) - header height */
    min-height: calc(100vh - 60px - 56px);
}

.table {
    border: 1px solid rgba(255,255,255,.1);
    width: 100%;
    border-collapse: collapse; 
    .thead {
        .tr {
            .th {
                color: white;
                font-weight: 500;
                font-size: 14px;
                text-align: left;
                border-right: 1px solid rgba(255,255,255,.1);
                border-bottom: 1px solid rgba(255,255,255,.1);
                padding-top: 12px;
                padding-bottom: 12px;
                padding-right: 15px;
                padding-left: 15px;
                img {
                    top: 3px;
                }
                &:last-child {
                    border-right: none;
                }
            }
        }
    }
    .tbody {
        .tr {
            .td {
                color: white;
                font-size: 14px;
                padding-top: 12px;
                padding-bottom: 12px;
                padding-right: 15px;
                padding-left: 15px;
                border-bottom: 1px solid rgba(255,255,255,.1);
                &.reprovision {
                    button {
                        background: none;
                        outline: none;
                        border: none;
                        padding: 0;
                        margin: 0;
                        display: flex;
                        align-items: center;
                        color: white;
                        font-size: 14px;
                        cursor: pointer;
                        img {
                            margin-right: 8px;
                            display: block;
                        }
                    }
                }
                &.status {
                    display: flex;
                    align-items: center;
                    img {
                        display: none;
                        margin-right: 8px;
                    }
                    &.td-complete {
                        .complete {
                            display: block;
                        }
                    }
                    &.td-warning {
                        .warning {
                            display: block;
                        }
                    }
                    &.td-cancel {
                        .cancel {
                            display: block;
                        }
                    }
                    &.td-error {
                        .error {
                            display: block;
                        }
                    }
                }
            }
            &:last-child {
                .td {
                    border-bottom: none;
                }
            }
        }
    }
}

.table-actions {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,.1);
    padding: 8px;
    margin-bottom: 12px;
    .input-container {
        width: 208px;
        margin-left: auto;
    }
}

.input-container {
    display: flex;
    align-items: flex-start;
    flex-flow: column;
    label {
        font-family: Roboto;
        font-weight: 400;
        font-size: 12px;
        padding-bottom: 4px;
        color: #DCE0E8;
        span {
            color: #61B0FF;
        }
    }
    input, textarea {
        border: 1px solid #FFFFFF33;
        padding-left: 12px;
        padding-right: 12px;
        padding-top: 8px;
        padding-bottom: 8px;
        color: white;
        border-radius: 2px;
        background: none;
        font-size: 14px;
        width: 100%;
        &::placeholder {
            color: white;
            opacity: 1;
        }
    }
    textarea {
        resize: vertical;
    }
}

.button {
    height: 32px;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    border: none;
    outline: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    img {
        &:first-child {
            margin-right: 8px;
        }
        &:last-child {
            margin-left: 8px;
        }
    }
    &.icon {
        height: auto;
        padding: 0;
        background: none;
    }
    &.blue-gradient {
        background: linear-gradient(134.87deg, #0033CF 23.82%, #000066 97.22%);
        color: white;
    }
    &.blue {
        background: #0073E7;
        color: white;
        font-family: Roboto;
        font-weight: 400;
        font-size: 14px;
        border-radius: 0;
        &:disabled {
            background: #FFFFFF33;
            color: #FFFFFF33;
        }
    }
    &.ghost {
        background: none;
        color: white;
        font-family: Roboto;
        font-weight: 400;
        font-size: 14px;
        border-radius: 0;
        border: 1px solid white;
        &:disabled {
            background: #FFFFFF33;
            color: #FFFFFF33;
            border: none;
        }
    }
    &.white {
        background: white;
        color: #0066FF;
    }
    &.link {
        font-family: Roboto;
        font-weight: 500;
        font-size: 14px;
        line-height: 18px;
        padding: 0;
        margin: 0;
        color: #61B0FF;
        background: none;
    }
    &.red {
        background: #ff2c2c;
        color: white;
        font-family: Roboto;
        font-weight: 400;
        font-size: 14px;
        border-radius: 0;
        &:disabled {
            background: #FFFFFF33;
            color: #FFFFFF33;
        }
    }
    &.large {
        height: 48px;
        padding-left: 24px;
        padding-right: 24px;
        border-radius: 16px;
    }
    &.small {
        height: 22px;
        padding-left: 5px;
        padding-right: 5px;
        border-radius: 2px;
    }
}

footer {
    background: #F6F7F7;
    padding: 64px;
    .border {
        height: 1px;
        width: 100%;
        background: #E7EAEF;
        margin-bottom: 32px;
    }
    .row {
        align-items: flex-start;
        .left {
            display: flex;
            align-items: center;
            li {
                list-style: none;
                margin-right: 32px;
                &:last-child {
                    margin-right: 0px;
                }
                a {
                    text-decoration: none;
                    display: flex;
                    align-items: center;
                    color:#3F4D62;
                    img {
                        width: 18px;
                        margin-right: 8px;
                    }
                    span {
                        font-weight: 700;
                        font-size: 14px;
                        color:#3F4D62;
                    }
                }
            }
        }
        .right {
            margin-left: auto;
            display: flex;
            flex-flow: column;
            align-items: flex-end;
            .top {
                display: flex;
                align-items: center;
                margin-bottom: 16px;
                li {
                    list-style: none;
                    margin-right: 16px;
                    color:#3F4D62;
                    &:last-child {
                        margin-right: 0px;
                    }
                    &:nth-child(3) {
                        margin-right: 32px;
                    }
                    a {
                        text-decoration: none;
                        font-weight: 300;
                        font-size: 14px;
                        color:#3F4D62;
                        img {
                            width: 16px;
                        }
                    }
                }
            }
            .bottom {
                display: flex;
                align-items: center;
                span {
                    font-weight: 300;
                    font-size: 14px;
                    margin-right: 16px;
                    color:#3F4D62;
                    &:last-child {
                        margin-right: 0px;
                    }
                }
            }
        }
    }
    &.form-footer {
        padding: 0;
        margin: 0;
        background: #1D2238;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 62px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
        .button-container {
            width: 800px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            .left {
                display: flex;
                .button {
                    &:first-child {
                        margin-right: 16px;
                    }
                }
            }
            .right {
                display: flex;
                align-items: center;
                .button {
                    &:first-child {
                        margin-right: 16px;
                    }
                }
            }
        }
    }
}

.thank-you {
    display: none;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top:100px;
    p {
        font-family: Roboto;
        font-weight: 300;
        font-size: 17px;
        line-height: 24px;
        color: white;
        text-align: center;
    
    }
    &.visible {
        display: flex;
    }
}
.aref {
    color: #00ccff; 
    text-decoration: underline;

}

.tooltip-wrapper {
    img {
        width: 16px;
        height: 16px;
        margin-left: 2px;
        vertical-align: middle;
        cursor: pointer;
        top: -2px;
    }
}
.tooltip {
    background: linear-gradient(180deg, #1D2238 0%, rgba(29, 34, 56, 1) 100%);
    padding: 10px;
    border-radius: 4px;
    position: absolute;
    top: -8px;
    width: 315px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2;
    left: 30px;
    p {
        color: white;
        text-align: center;
    }
    &.visible {
        display: flex;
    }
}

.confirmation {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255,255,255,.3);
    .confirmation-modal {
        width: 500px;
        display: flex;
        flex-flow: column;
        background: linear-gradient(180deg, #1D2238 0%, rgba(29, 34, 56, 0.7) 100%);
        border-radius: 5px;
        padding: 24px;
        .confirmation-title {
            margin-bottom: 12px;
            border-bottom: 1px solid #FFFFFF1A;
            h2 {
                color: #DCE0E8;
                font-family: Roboto;
                font-weight: 500;
                font-size: 16px;
                padding-bottom: 12px;
            }
        }
        .confirmation-content {
            margin-bottom: 24px;
            p {
                font-family: Roboto;
                font-weight: 400;
                font-size: 12px;
                line-height: 16px;
                color: white;
            }
        }
        .confirmation-buttons {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            width: 100%;
            .button {
                margin-right: 12px;
                &:last-child {
                    margin-right: 0px;
                }
            }
        }
    }
    &.visible {
        display: flex;
    }
}

.modal_container {
    width: 800px;
    max-width: 100%;
    margin: auto;
    margin-top: 50px;
    h1 {
        color: white;
        font-family: Roboto;
        font-weight: 500;
        font-size: 20px;
        padding-bottom: 16px;
    }
    .modal {
        width: 100%;
        display: flex;
        box-shadow: 0px 18px 32px -3px #00000052;
        border: 1px solid #FFFFFF1A;
        border-radius: 4px;
        overflow: hidden;
        .modal_sidebar {
            width: 250px;
            background: #101629;
            padding-top: 24px;
            padding-bottom: 24px;
            h2 {
                color: #DCE0E8;
                font-family: Roboto;
                font-weight: 500;
                font-size: 16px;
                padding-left: 16px;
                padding-right: 16px;
                padding-bottom: 16px;
            }
            p {
                font-family: Roboto;
                font-weight: 400;
                font-size: 12px;
                line-height: 16px;
                border-bottom: 1px solid #FFFFFF1A;
                padding-bottom: 16px;
                margin-bottom: 12px;
                display: block;
                color: #DCE0E8;
                width: calc(100% - 32px);
                margin-left: auto;
                margin-right: auto;
            }
            .modal_sidebar_steps {
                li {
                    font-family: Roboto;
                    font-weight: 400;
                    font-size: 14px;
                    padding-top: 8px;
                    padding-bottom: 8px;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    color: #DCE0E8;
                    padding-left: 16px;
                    padding-right: 16px;
                    .circle {
                        background: #0073E7;
                        width: 12px;
                        height: 12px;
                        border-radius: 100%;
                        display: none;
                    }
                    .icon {
                        width: 12px;
                    }
                    &.current {
                        font-weight: 500;
                        background: #FFFFFF33;
                        .circle {
                            display: block;
                        }
                    }
                }
            }
        }
        .modal_content {
            width: 100%;
            padding-left: 16px;
            padding-right: 16px;
            padding-top: 24px;
            padding-bottom: 24px;
            background: #33384C;
            min-height: 600px;
            max-height: 600px;
            overflow: auto;
            h2 {
                font-family: Roboto;
                font-weight: 500;
                font-size: 14px;
                padding-bottom: 24px;
                color: #DCE0E8;
                display: flex;
                align-items: center;
                .button {
                    margin-left: auto;
                }
            }
            .checking-data {
                border: 1px solid #FFFFFF1A;
                background: #44495B;
                border-radius: 4px;
                padding-left: 16px;
                padding-right: 16px;
                padding-top: 12px;
                padding-bottom: 12px;
                display: none;
                align-items: center;
                box-shadow: 0px 12px 24px -3px #00000052;
                position: absolute;
                bottom: -60px;
                left: 0;
                width: 100%;
                z-index: 1;
                .icon {
                    margin-right: 12px;
                }
                p {
                    font-family: Roboto;
                    font-weight: 400;
                    font-size: 14px;
                    color: white;
                }
                &.visible {
                    display: flex;
                }
            }
            .modal-title-text {
                font-size: 14px !important;
                font-weight: 500 !important;
                color: white;
                line-height: 16px;
                margin-bottom: 8px;
            }
            .modal-description {
                font-size: 12px !important;
                line-height: 16px;
                font-weight: 400 !important;
                margin-right: 18px;
                margin-bottom: 18px;
                text-align: justify;
                color: #DCE0E8;
            }
            .modal_content_description {
                border-top: 1px solid #FFFFFF1A;
                border-bottom: 1px solid #FFFFFF1A;
                padding-top: 10px;
                padding-bottom: 10px;
                margin-bottom: 10px;
                a {
                    color: #61B0FF;
                    text-decoration: none;
                    padding-bottom: 5px;
                    font-size: 12px;
                    display: inline-block;
                }
                p {
                    color: #DCE0E8;
                    font-size: 12px;
                    line-height: 16px;
                }
                ul {
                    li {
                        list-style: none;
                        color: #9EA1AD;
                        font-size: 14px; 
                        line-height: 18px; 
                    }
                }
            }
            .modal_content_form {
                .row {
                    .input-container {
                        flex: 1;
                        margin-right: 16px;
                        &:last-child {
                            margin-right: 0px;
                        }
                    }
                }
                .input-container {
                    margin-bottom: 18px;
                }
                ul {
                    li {
                        font-family: Roboto;
                        font-weight: 400;
                        font-size: 14px;
                        line-height: 18px;
                        list-style: none;
                        display: flex;
                        align-items: flex-start;
                        margin-bottom: 8px;
                        &:last-child {
                            margin-bottom: 0;
                        }
                        span {
                            color: #9EA1AD;
                            min-width: 133px;
                            &:last-child {
                                color: white;
                                width: auto;
                                max-width: 440px;
                                word-wrap: break-word;
                            }
                        }
                    }
                }
                .user-header {
                    display: flex;
                    align-items: center;
                    width: 100%;
                    justify-content: space-between;
                    h2 {
                        color: white;
                        width: 100%;
                    }
                }
            }
            .modal_content_footer {
                display: flex;
                align-items: center;
                justify-content: flex-end;
                margin-top: 24px;
            }
        }
    }
}

.modal_container.customer-config {
    .modal {
        display: none;
        &.current {
            display: flex;
        }
    }
}

.spinner {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top: 2px solid #4a90e2;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.title-bar {
    display: flex;
    align-items: center;
    h1 {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: white;
        font-size: 20px;
        a {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: white;
            font-size: 20px;
            img {
                display: block;
                margin-right: 8px;
            }
        }
    }
    .right {
        display: flex;
        align-items: center;
        margin-left: auto;
        p {
            font-family: Roboto;
            font-weight: 400;
            font-size: 12px;
            color: #9EA1AD;
            display: block;
            margin-right: 8px;
            &:last-child {
                margin-right: 0px;
            }
            span {
                color: white;
            }
        }
        .button {
            margin-right: 8px;
            &:last-child {
                margin-right: 0;
            }
        }
    }
}

.single_customer_content {
    & > ul {
        li {
            font-family: Roboto;
            font-size: 12px;
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            &:last-child {
                margin-bottom: 0px;
            }
            span {
                color: #9EA1AD;
                display: flex;
                align-items: center;
                width: 115px;
                &:last-child {
                    color: white;
                    width: auto;
                }
            }
        }
    }
    .border {
        background: #FFFFFF1A;
        width: 100%;
        height: 1px;
        margin-top: 16px;
        margin-bottom: 16px;
    }
}

.tabs_container {
    background: linear-gradient(180deg, #1D2238 0%, rgba(29, 34, 56, 0.7) 100%);
    padding: 12px;
    border-radius: 4px;
    overflow: hidden;
    padding-bottom: 64px;
    .tabs_bar {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #2A2F45;
        margin-bottom: 36px;
        .tab {
            list-style: none;
            margin-right: 24px;
            &:last-child {
                margin-right: 0px;
            }
            button {
                background: none;
                border: none;
                outline: none;
                font-family: Roboto;
                font-weight: 500;
                font-size: 12px;
                line-height: 16px;
                color: #ECEFF5;
                display: flex;
                align-items: center;
                padding-bottom: 15px;
                padding-top: 12px;
                cursor: pointer;
            }
            .count {
                width: 16px;
                height: 16px;
                color: #ECEFF5;
                background: #2A2F45;
                border-radius: 100%;
                margin-left: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            &.active {
                border-bottom: 3px solid #DCE0E8;
                button {
                    padding-bottom: 12px;
                }
            }
        }
    }
    .tabs_content {
        display: none;
        &.visible {
            display: block;
        }
        h2 {
            font-family: Roboto;
            font-weight: 500;
            font-size: 14px;
            color: white;
            padding-bottom: 12px;
            display: flex;
            align-items: center;
            .button {
                color: white;
                font-size: 14px;
                margin-left: 12px;
                font-weight: 400;
            }
        }
        .user-list {
            list-style-position: inside;
            li {
                margin-bottom: 12px;
                font-family: Roboto;
                font-weight: 400;
                font-size: 14px;
                color: white;
            }
        }
        .storage-block {
            margin-bottom: 24px;
        }
        .text-block {
            display: flex;
            flex-flow: column;
            margin-bottom: 12px;
            &:last-child {
                margin-bottom: 0px;
            }
            p {
                font-family: Roboto;
                font-weight: 400;
                font-size: 14px;
                color: #9EA1AD;
                display: block;
                margin-bottom: 8px;
                &:last-child {
                    color: white;
                    margin-bottom: 0px;
                }
            }
        }
    }
}

.users-tab-content {
    width: 670px;
    max-width: 100%;
    margin: auto;
    .create-users-row {
        display: flex;
        align-items: center;
        margin-bottom: 24px;
        justify-content: space-between;
        p {
            font-family: Roboto;
            font-weight: 400;
            font-size: 14px;
            line-height: 18px;
            color: #9EA1AD;
        }
        button {
            margin-left: auto;
        }
    }
    .search-users {
        display: flex;
        align-items: center;
        margin-bottom: 24px;
        .input-container {
            width: 300px;
            max-width: 100%;
            margin-left: auto;
            background: #FFFFFF1A;
            display: flex;
            align-items: center;
            height: 32px;
            border-radius: 2px;
            padding-left: 8px;
            padding-right: 8px;
            flex-flow: row;
            input {
                background: none;
                width: 100%;
                color: #FFFFFF8C;
                outline: none;
                border: none;
                padding: 0;
                font-size: 14px;
                &::placeholder {
                    color: #FFFFFF8C;
                }
            }
        }
    }
    .user-list {
        border-collapse: collapse; 
        width: 100%;
        tr {
            td {
                border-bottom: 1px solid #FFFFFF1A;
                padding-bottom: 24px;
                padding-top: 24px;
                &:last-child {
                    padding-right: 0px;
                }
            }
            .user-name {
                display: flex;
                flex-flow: column;
                span {
                    font-family: Roboto;
                    font-weight: 500;
                    font-size: 20px;
                    color: white;
                }
            }
            .user-email {
                text-align: right;
                span {
                    font-weight: 400;
                    font-size: 14px;
                    color: #B9BEC9;
                }
            }
            .user-status {
                display: flex;
                align-items: center;
                justify-content: center;
                padding-left: 13px;
                padding-right: 13px;
                padding-top: 4px;
                padding-bottom: 4px;
                border: 1px solid #FFFFFF33;
                border-radius: 100px;
                max-width: 100px;
                .circle {
                    width: 8px;
                    height: 8px;
                    border-radius: 100%;
                    margin-right: 4px;
                    display: block;
                    background: #5A5E6F;
                }
                p {
                    color: #ECEFF5;
                }
                &.active {
                    .circle {
                        background: #1FFBBA;
                    }
                }
            }
            .user-company {
                font-family: Roboto;
                font-weight: 500;
                font-size: 14px;
                color: white;
            }
            .user-token-status {
                display: flex;
                align-items: center;
                img {
                    display: none;
                    margin-right: 8px;
                }
                span {
                    font-family: Roboto;
                    font-weight: 400;
                    font-size: 14px;
                    color: #ECEFF5;
                }
                &.complete {
                    .token-complete {
                        display: block;
                    }
                }
                &.expired {
                    .token-expire {
                        display: block;
                    }
                }
                &.warning {
                    .token-warning {
                        display: block;
                    }
                }
                &.error {
                    .token-error {
                        display: block;
                    }
                }
            }
        }
    }
}

.dropdown-container {
    width: 100%;
    .input-row {
        display: flex;
        align-items: center;
        border: 1px solid #FFFFFF33;
        height: 32px;
        padding-left: 16px;
        padding-right: 16px;
        cursor: pointer;
        input {
            border: none;
            width: 100%;
            padding-left: 0;
            cursor: pointer;
            outline: none !important;
        }
        img {
            margin-left: auto;
        }
    }
    ul {
        border: 1px solid #FFFFFF33;
        display: none;
        flex-flow: column;
        padding-top: 4px;
        padding-bottom: 4px;
        position: absolute;
        top: 32px;
        left: 0;
        width: 100%;
        background: #33384C;
        z-index: 99;
        li {
            list-style: none;
            color: white;
            padding: 12px;
            padding-top: 8px;
            padding-bottom: 8px;
            cursor: pointer;
            &:hover {
                background: #FFFFFF33;
            }
        }
    }
    &.open {
        ul {
            display: flex;
        }
    }
}

.bread-crumbs {
    display: flex;
    align-items: center;
    a {
        color: #B9BEC9;
        text-decoration: none;
        &:last-child {
            color: white;
            font-weight: 500;
        }
    }
    img {
        display: block;
        margin-left: 8px;
        margin-right: 8px;
    }
}

.checking-repro {
    border: 1px solid #FFFFFF1A;
    background: #44495B;
    border-radius: 4px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
    display: none;
    align-items: center;
    box-shadow: 0px 12px 24px -3px #00000052;
    margin-top: 24px;
    width: 100%;
    z-index: 1;
    .icon {
        margin-right: 12px;
    }
    p {
        font-family: Roboto;
        font-weight: 400;
        font-size: 14px;
        color: white;
    }
    &.visible {
        display: flex;
    }
}

@media(max-width: 1024px) {
    main {
        section {
            &.welcome {
                .welcome_card {
                    width: 100%;
                }
                .right {
                    display: none;
                }
            }
            &.info {
                .row {
                    flex-wrap: wrap;
                    .box {
                        flex: none;
                        width: calc(33% - 19px);
                        &:first-child {
                            width: 100%;
                        }
                    }
                }
            }
        }
    }
    footer {
        & > .row {
            flex-flow: column;
            .right {
                margin-top: 16px;
                margin-left: 0;
                align-items: flex-start;
            }
        }
    }
}

@media(max-width: 850px) {
    main {
        section {
            &.info {
                .row {
                    .box {
                        width: 100%;
                        margin-right: 0px;
                        margin-bottom: 16px;
                        &:last-child {
                            margin-bottom: 0px;
                        }
                    }
                }
            }
        }
    }
    .modal_container {
        .modal {
            flex-flow: column;
            .modal_sidebar {
                width: 100%;
            }
        }
    }
    footer {
        & > .row {
            .left {
                flex-flow: column;
                align-items: flex-start;
                li {
                    margin-right: 0px;
                    margin-bottom: 16px;
                }
            }
        }
    }
}

.password-wrapper {
    position: relative;
    width: 100%;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    cursor: pointer;
    opacity: 0.7;
}

div[disabled] {
    pointer-events: none;
    opacity: 0.7;
}

/* Highlight invalid input fields */
input.invalid {
    border: 2px solid #e74c3c;
}

/* Style for inline error messages */
.error-message {
    color: #e74c3c;
    font-size: 0.85em;
    margin-top: 4px;
    display: block;
}
/*Style for warning msg*/
.modal_warning {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    margin-top: 8px;   
    color: white;      
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 12px;
}

.span_class {    
    color: #B9BEC9;        
    font-size: 10px;        
    line-height: 16px;
}

.modal-warning .warning-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    display: block;
}
.error-text {
    color: #b91c1c; 
    font-size: 10px;
    margin-top: 4px;
}
