@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
    font-family: "Roboto", serif;
    src: url("../fonts/Roboto/static/Roboto-Black.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Helvetica", serif;
    src: url("../fonts/Helvetica/Helvetica.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Helvetica", serif;
    src: url("../fonts/Helvetica/Helvetica-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Metropolis", serif;
    src: url("../fonts/Metropolis/Metropolis-Regular.otf");
    font-weight: normal;
    font-style: normal;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

:root {
    --color-primary: #555555;
    --color-secandory: #ededed;
    --color-white: #ffffff;
    --font-inter: "Inter", serif;
    /* --font-helvetica: "Helvetica", serif; */
    --font-helvetica: "Inter", serif;
    --font-metropolis: "Metropolis", serif;
    --font-roboto: "Roboto", serif;
}

/* login page  */
.login-container {
    width: 100%;
    height: 100vh;
    display: flex;
}

.login-container .form-side {
    flex: 1;
}

.login-container .image-side {
    flex: 1;
    overflow: hidden;
    background-image: url("../../assets/images/login_background.png");
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 500px;
    width: 100%;
}

.login-logo {
    height: 80px;
    margin: auto;
    display: grid;
    place-items: center;
    margin-bottom: 10px;
}

.login-logo img {
    height: 61%;
}

.slide-content>div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-support-wrapper {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 80px;
}

.login-support-wrapper span {
    font-family: var(--font-helvetica);
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.slide-content h2 {
    font-family: var(--font-helvetica);
    color: white !important;
    margin-bottom: 20px;
}

.slide-content p {
    font-family: var(--font-helvetica);
    color: white !important;
    font-weight: 400;
}


.login-container .form-side {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container .form-side .form-wrapper {
    width: 100%;
    max-width: 570px;
    background-color: var(--color-white);
    border-radius: 6px;
    padding: 30px;
}

.login-container h2 {
    color: var(--color-primary);
    font-size: 25px;
    line-height: 28.75px;
    text-align: center;
    font-family: var(--font-helvetica);
    font-weight: 700;
}

.login-container p {
    font-size: 16px;
    line-height: 19.36px;
    text-align: center;
    color: var(--color-primary);
    font-family: var(--font-inter);
    margin: 10px 0px;
}

.login-container label {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 18.4px;
    font-family: var(--font-helvetica);
}

.login-container input {
    margin-top: 5px;
    width: 100%;
    outline: none;
    padding: 15px 15px;
    color: black;
    font-size: 16px;
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    font-family: var(--font-helvetica);
    font-weight: 400;
    margin-bottom: 20px;
}

.login-container input[type="submit"] {
    background-color: #091E42;
    color: white;
    cursor: pointer;
    margin-top: 15px;
}

.login-container input[type="submit"]:hover {
    background-color: #103a82;
}

.login-container .form-footer-text {
    color: var(--color-primary);
    font-family: var(--font-helvetica);
    font-weight: 400;
    line-height: 18.4px;
    display: block;
    margin: auto;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
}

.login-container .form-footer-text span {
    font-weight: 700;
}

.rem-forg-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rem-forg-wrapper div:first-child {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.rem-forg-wrapper input {
    display: inline;
    margin: 0;
    padding: 0;
    width: fit-content;
    accent-color: #091E42;
}

.rem-forg-wrapper label {
    font-family: var(--font-helvetica);
    font-weight: 700;
    font-size: 16px;
    line-height: 18.4px;
    overflow: hidden;
}

.rem-forg-wrapper a {
    font-family: var(--font-helvetica);
    font-weight: 400;
    font-size: 16px;
    line-height: 18.4px;
    text-decoration: underline;
    color: var(--color-primary);
    overflow: hidden;
}

.form-wrapper .avatar {
    margin: auto;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background-color: #d9d9d9;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
}

.form-wrapper .avatar h2 {
    font-size: 40px;
    font-family: var(--font-helvetica);
    font-size: 40px;
    line-height: 45px;
}

/* Header  */
.header {
    width: 100%;
    height: 77px;
    box-shadow: 0px 4px 10px 0px #0080ff1a;
    background-color: var(--color-white);
    display: flex;
    position: relative;
    z-index: 10;
}

.logo-wrapper {
    width: 244px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 25px;
    border-right: 1px solid #edf6ff;
}

.logo-wrapper>a>img {
    height: 28px;
    width: 188px;
}

.hamburger-icon {
    cursor: pointer;
    display: none;
}

.hamburger-mobile {
    display: none;
}

.header-content-wrapper {
    flex: 1;
    /* border: 1px solid brown; */
    display: flex;
    align-items: center;
    padding-right: 66px;
}

.header-content {
    width: 100%;
    margin-left: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-content a {
    text-decoration: none;
}

.user-content-container {
    width: fit-content;
    display: flex;
    column-gap: 7px;
    cursor: pointer;
}

.user-content-container .user-image {
    height: 36px;
    width: 36px;
    overflow: hidden;
    border-radius: 50%;
}

.user-content-container .user-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-content-container .user-details h2,
.user-content-container .user-details h4,
.user-content-container .user-details h6 {
    font-family: var(--font-helvetica);
    font-weight: 400;
    font-size: 16px;
    line-height: 18.4px;
    color: #d9d9d9;
    overflow: hidden;
}

.user-content-container .user-details h6 {
    font-size: 13px;
}

.user-content-container .user-details>div {
    display: flex;
    gap: 5px;
}

.user-content-container .user-details>div img {
    opacity: 0;
    visibility: hidden;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s linear 0.5s;
}

.user-content-container:hover .user-details>div img {
    opacity: 1;
    visibility: visible;
    transform: translateX(5px);
    transition-delay: 0s;
}


.user-details h2 {
    color: #000000 !important;
}

.user-content-container .user-details h4 {
    font-size: 14px;
}

.search-icons-container {
    width: fit-content;
    display: flex;
    gap: 17px;
}

.search-icons-container .icon-container {
    background-color: #f8f8f8;
    height: 36px;
    width: 36px;
    display: grid;
    place-content: center;
    cursor: pointer;
    border-radius: 50%;
}

.search-bar-wrapper {
    width: 400px;
    padding-left: 17px;
    padding-top: 8px;
    padding-bottom: 8px;
    border: 1px solid #ededed;
    border-radius: 5px;
    display: flex;
    column-gap: 10px;
    transition: all 0.3s ease-in-out;
}

/* .search-bar-wrapper:focus-within,
.search-bar-wrapper.expanded {
    width: 400px;
} */

.search-bar-wrapper .search-icon {
    height: 20px;
    width: 20px;
}

.search-bar-wrapper input[type="text"] {
    width: 100%;
    border: none;
    outline: none;
    font-family: var(--font-helvetica);
    font-weight: 400;
    font-size: 16px;
    line-height: 18.4px;
    color: #d3d3d3;
}

.search-bar-wrapper input[type="text"]::placeholder {
    color: #d3d3d3;
}

.content-wrapper {
    width: 100%;
    height: calc(100dvh - 77px);
    display: flex;
}

.content-wrapper .side-navigation {
    width: 244px;
    /* border: 1px solid black; */
    height: 100%;
    background-color: var(--color-white);
    padding-top: 36px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-confirmation {
    min-height: 230px;
}

.modal-confirmation-body {
    height: 100px;
    padding-top: 10px;
    font-family: 'Inter';
    display: flex;
    justify-content: left;
    align-items: center;
}

.button-big {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    width: fit-content;
    padding: 15px 25px;
    font-family: var(--font-helvetica);
    background-color: #091E42;
    color: white;
    cursor: pointer;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    font-size: 16px;
}

.button-big:hover {
    background-color: #103a82;
}

.support-btn {
    float: right;
    margin-top: 10px;
}

.side-nav-btn {
    display: block;
    margin: auto;
    margin-bottom: 10px;
}

.side-navigation .nav-link {
    display: flex;
    align-items: center;
    column-gap: 13px;
    padding-left: 25px;
    padding-top: 9px;
    padding-bottom: 8px;
    text-decoration: none;
    font-family: var(--font-helvetica);
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    overflow: hidden;
    color: var(--color-primary);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.side-navigation .nav-link::before {
    position: absolute;
    top: 5px;
    left: 0;
    content: url("../images/icons/link-bar.png");
    display: none;
}

.side-navigation .nav-link:hover::before {
    display: inline-block;
}

.side-navigation .nav-link:hover {
    background-color: #EBF3FF;
}

.nav-link.link-active {
    background-color: #EBF3FF;
}

.nav-link.link-active::before {
    display: inline-block;
}

.link-order {
    position: relative;
}

.link-order .badge {
    position: absolute;
    right: 14px;
    bottom: 6px;
    background: #e8e4e4;
    padding: 2px 6px;
    border-radius: 50%;
}

.footer-links-wrapper {
    overflow: hidden;
}

.footer-links-wrapper .divider {
    margin-left: 25px;
    font-family: var(--font-helvetica);
    font-weight: 400;
    font-size: 10px;
    line-height: 11.5px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;

}

.footer-links-wrapper .divider::after {
    content: "";
    border: 1px solid var(--color-primary);
    display: inline-block;
    width: 100%;
}

.dropdown-icon {
    height: 6px;
    position: absolute;
    right: 10px;
    top: 16px;
}

.dropdown-link-body {
    display: none;
    flex-direction: column;
    overflow: hidden;
    transition: height 0.3s ease;
}

.dropdown-link-body>div {
    position: relative;
    /* cursor: pointer; */
}

.dropdown-link-body>div.link-wrapper::before {
    display: block;
}

.dropdown-link-body>div::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    content: url("../images/icons/link-bar.png");
    display: none;
}

.dropdown-link-body>div:hover::before {
    display: block;
}

.dropdown-link-body>div:hover {
    background-color: #EBF3FF;
}

.link-wrapper {
    background-color: #EBF3FF;
}

.dropdown-active {
    display: flex !important;
}

.dropdown-link-body a {
    font-family: var(--font-helvetica);
    font-weight: 400;
    font-size: 14px;
    line-height: 34px;
    color: var(--color-primary);
    text-decoration: none;
    display: block;
    padding-left: 53px;
}

.dropdown-active {
    height: fit-content;
}

.content-wrapper .content-container {
    flex: 1;
    height: 100%;
    background-color: #f8f8f8;
    padding-left: 38px;
    padding-top: 13px;
    padding-right: 59px;
}

/* content container  */

.greetings-banner {
    width: 100%;
    padding-top: 21px;
    padding-left: 46px;
    padding-right: 46px;
    padding-bottom: 18px;
    background-color: white;
    background-image: url("../images/greetings-background.png");
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-repeat: no-repeat;
}

.greetings-banner .button-big {
    background-color: white;
    color: #091E42;
}

.greetings-banner .button-big:hover {
    background-color: #f1ebeb;
}

.greetings-banner h2,
.greetings-banner h4 {
    font-family: var(--font-helvetica);
    font-weight: 700;
    font-size: 25px;
    line-height: 28.75px;
    color: white;
}

.greetings-banner h4 {
    font-size: 14px;
    font-size: 14px;
}

.greetings-banner div h4 {
    font-weight: 400;
    font-size: 16px;
}

.get-started-card {
    width: 100%;
    border-radius: 7px;
    padding: 57px;
    background: #DDDFFF;
    margin-top: 30px;
    margin-bottom: 33px;
    padding-left: 58px;
    padding-right: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.get-started-card p {
    font-family: var(--font-helvetica);
    color: black;
    font-weight: 400;
    line-height: 40px;
}


.services-container-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}


.service-card {
    flex: 1;
    min-width: 428px;
    background-color: white;
    border-radius: 7px;
    padding-top: 29px;
    padding-bottom: 18px;
    padding-left: 58px;
    padding-right: 42px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
}

.service-card a {
    align-self: flex-end;
}


@media screen and (max-width: 1636px) {
    .service-card {
        min-width: 380px;
    }
}

@media screen and (max-width: 1492px) {
    .service-card {
        min-width: 300px;
    }
}


.service-card img {
    width: 48px;
}

.service-card h2 {
    font-family: var(--font-helvetica);
    margin: 15px 0px;
    color: #091E42;
}

.service-card p {
    font-family: var(--font-helvetica);
    font-size: 14px;
    line-height: 20px;
    color: #555555;
}

.goto-arrow {
    padding: 13px 15px;
    border-radius: 7px;
    background-color: #091E42;
    display: grid;
    place-content: center;
    align-self: flex-end;
}

.goto-arrow:hover {
    background-color: #DDDFFF;
}

.goto-arrow:hover svg path {
    stroke: black;
}

.goto-arrow img {
    width: 16px;
}

.stat-cards-wrapper {
    width: 100%;
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
}

.stat-card {
    background-color: var(--color-white);
    border-radius: 20px;
    box-shadow: 0px 2px 10px 0px #0080ff1a;
    padding-top: 24px;
    padding-left: 26px;
    padding-bottom: 9px;
    padding-right: 9px;
    max-width: 23%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-card h3 {
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 16px;
    line-height: 18.75px;
}

.stat-card h2 {
    font-family: var(--font-roboto);
    font-weight: 500;
    font-size: 30px;
    color: var(--color-primary);
}

/* .stat-card div:nth-child(2) {
  display: flex;
  flex-direction: column;
  
} */

.bottom-card-text {
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 8px;
    line-height: 9.38px;
    color: #7f7f7f;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bottom-card-text span {
    display: flex;
    background-color: #18d26b;
    color: #7f7f7f;
    padding: 1px 2px;
    border-radius: 4px;
    gap: 5px;
}

.bottom-card-text span img {
    height: 8px;
}

.chart-todo-wrapper {
    width: 100%;
    display: flex;
    margin-top: 22px;
    display: flex;
    gap: 20px;
}

.chart-wrapper,
.todo-wrapper {
    flex: 1;
    border-radius: 10px;
    background-color: var(--color-white);
    height: 400px;
}

.todo-header,
.chart-header {
    width: 100%;
    padding-top: 25px;
    padding-left: 29px;
    padding-right: 29px;
    padding-bottom: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0.5px solid var(--color-primary);
}

.todo-header h3,
.chart-header h3 {
    font-family: var(--font-helvetica);
    font-weight: 700;
    font-size: 16px;
    line-height: 18.4px;
    color: var(--color-primary);
    overflow: hidden;
}

.todo-header div,
.chart-header div {
    padding: 5px 10px;
    display: flex;
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    align-items: center;
    gap: 10px;
    font-family: var(--font-helvetica);
    font-weight: 400;
    font-size: 16px;
    line-height: 18.4px;
    color: var(--color-primary);
}

.apexcharts-canvas {
    overflow: hidden !important;
}

.todo-body {
    padding: 0 23px;
}

.todo {
    padding: 13px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0.5px solid #555555;
}

.todo h3,
.todo h4 {
    font-family: var(--font-helvetica);
    font-weight: 400;
    font-size: 16px;
    line-height: 18.4px;
    color: var(--color-primary);
    overflow: hidden;
}

h4 {
    overflow: hidden;
}

.todo div:nth-child(1) input[type="checkbox"] {
    height: 15px;
    width: 15px;
    accent-color: var(--color-primary);
}

.todo div:nth-child(1) {
    display: flex;
    align-items: center;
    gap: 10px;
}

/*Table Page */
.table-container {
    width: 100%;
    border-radius: 10px;
    /* box-shadow: 4px 4px 5px 0px #00000014; */
    padding: 22px;
    background-color: var(--color-white);
}

.table-container .filter-search-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-search-wrapper .search-table {
    width: 390px;
}

.filter-search-wrapper div:first-child {
    font-family: var(--font-roboto);
    display: flex;
    font-size: 16px;
    color: var(--color-primary);
    column-gap: 20px;
}

.filter-search-wrapper div:first-child select {
    border: none;
    background-color: white;
    outline: none;
    color: var(--color-primary);
    font-size: 16px;
    font-family: var(--font-roboto);
}

.table-wrapper {
    width: 100%;
}

.table-wrapper table {
    font-family: var(--font-roboto);
    margin-top: 40px;
    width: 100%;
    border-collapse: collapse;
}

.table-wrapper table thead tr th,
.table-wrapper table tbody tr td {
    text-align: left;
    padding: 15px;
    border-bottom: 0.5px solid #c0c0c0;
}

.table-product table tbody tr td {
    padding-top: 20px;
    padding-bottom: 20px;
}

.table-wrapper table thead tr th {
    font-weight: 500;
    font-size: 14px;
    line-height: 16.41px;
    color: var(--color-primary);
}

.table-wrapper table tbody tr td,
.table-wrapper table tbody tr span,
.manage-btn {
    font-weight: 400;
    color: var(--color-primary);
}

.table-wrapper table tbody tr td:nth-of-type(1) {
    color: black;
}

.manage-btn {
    border: none;
    font-size: 16px;
}

.table-wrapper table tbody tr td span:not('.slider'),
.manage-btn {
    padding: 3px 10px;
    background-color: #091E42;
    border-radius: 5px;
    border: 1px solid #2422226e;
    color: white;
    cursor: pointer;
    font-size: 13px;
}

.action-cell {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: flex-end;
}

.action-cell button {
    margin-left: 5px;
}

.action-cell a {
    text-decoration: none;
    margin: 0 3px;
}

a.button-small {
    font-family: var(--font-inter);
    font-size: 14px;
}

.pagination-wrapper {
    float: right;
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.btn-pagination {
    display: inline-block;
    padding: 11px 20px;
    background-color: #f0f0f0;
    border-radius: 5px;
    font-family: var(--font-helvetica);
}

.btn-pagination a {
    font-family: var(--font-helvetica);
    color: var(--color-primary);
    text-decoration: none;
}

.btn-pagination.disabled {
    background-color: #fdf6f6;
    cursor: not-allowed;
}

/* add user page */
.form-container {
    width: 100%;
    border-radius: 10px;
    box-shadow: 4px 4px 5px 0px #00000014;
    padding: 22px;
    background-color: var(--color-white);
}

.page-heading {
    font-family: var(--font-helvetica);
    color: var(--color-primary);
    font-size: 20px;
    line-height: 22px;
    overflow: hidden;
}

.two-col-form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* border: 1px solid red; */
    margin-top: 15px;
}

.five-col-form {
    display: flex;
    gap: 5px;
    flex-direction: row !important;
    /* flex-wrap: wrap;  */
}

.five-col-form>div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.four-col-form,
.two-col-form>div,
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.form-group.note {
    margin-top: 10px;
}

.two-col-form>div label,
.quill-label,
.form-label {
    font-family: var(--font-roboto);
    font-size: 14px;
    line-height: 16.41px;
    color: var(--color-primary);
    font-weight: 500;
}

.quill-label {
    display: inline-block;
    margin-top: 15px;
}

.two-col-form>div input,
.two-col-form>div select,
.form-control,
.select-control,
.select2-hidden-accessible {
    font-size: 14px;
    line-height: 16.41px;
    font-weight: 400;
    color: var(--color-primary);
    padding: 10px;
    outline: none;
    background-color: #f8f8f8;
    border: 1px solid #d3d3d3;
    border-radius: 10px;
    font-family: var(--font-roboto);
}

.two-col-form>div select {
    appearance: none;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAMAAACtdX32AAAAdVBMVEUAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhMdQaAAAAJ3RSTlMAAAECAwQGBwsOFBwkJTg5RUZ4eYCHkJefpaytrsXGy8zW3+Do8vNn0bsyAAAAYElEQVR42tXROwJDQAAA0Ymw1p9kiT+L5P5HVEi3qJn2lcPjtIuzUIJ/rhIGy762N3XaThqMN1ZPALsZPEzG1x8LrFL77DHBnEMxBewz0fJ6LyFHTPL7xhwzWYrJ9z22AqmQBV757MHfAAAAAElFTkSuQmCC);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: calc(100% - 0px) center;
}

.form-group select {
    appearance: none;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAMAAACtdX32AAAAdVBMVEUAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhMdQaAAAAJ3RSTlMAAAECAwQGBwsOFBwkJTg5RUZ4eYCHkJefpaytrsXGy8zW3+Do8vNn0bsyAAAAYElEQVR42tXROwJDQAAA0Ymw1p9kiT+L5P5HVEi3qJn2lcPjtIuzUIJ/rhIGy762N3XaThqMN1ZPALsZPEzG1x8LrFL77DHBnEMxBewz0fJ6LyFHTPL7xhwzWYrJ9z22AqmQBV757MHfAAAAAElFTkSuQmCC);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: calc(100% - 0px) center;
}

.select2-container {
    font-family: var(--font-roboto);
    font-size: 14px;
}

.select2-hidden-accessible {
    border: 1px solid #d3d3d3 !important;
    padding: 10px !important;
}

.select2-container--default .select2-selection--single {
    height: 41px !important;
    border-radius: 10px !important;
    padding-top: 6px;
    padding-left: 15px;
    border: 1px solid #d3d3d3 !important;

}

.select2-container--default .select2-selection--single {
    background-color: #f8f8f8 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 7px !important;
    right: 7px !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #555555 !important;
    font-size: 14px !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    outline: none !important;
    background-color: #f8f8f8 !important;
}

.select2-dropdown {
    border-radius: 10px !important;
}

.select2-search--dropdown {
    padding: 10px !important;
}

.select2-results {
    padding: 0px 4px;
}

.select2-container {
    overflow-x: visible !important;
}

.two-col-form .error-message {
    color: red;
    font-size: 10px;
    font-family: var(--font-roboto);
}

.two-col-form>div input[type="file"] {
    padding-top: 8px;
    padding-bottom: 8px;
}

.two-col-form>div input[type="file"]::-webkit-file-upload-button {
    font-size: 14px;
    margin: none;
}

.form-submit-button {
    margin-top: 15px;
    float: right;
    font-family: var(--font-roboto);
    font-size: 14px;
    line-height: 16px;
    color: var(--color-primary);
    font-weight: 500;
    background-color: var(--color-white);
    padding: 10px 15px;
    border: 1px solid var(--color-primary);
    border-radius: 10px;
    cursor: pointer;
}

/* login page */
.login-container {
    background-color: #f4f4f4;
    width: 100%;
    height: 100vh;
}

.login-container header {
    padding: 20px 70px;
}

.login-container .form-wrapper {
    padding: 6rem;
    border-radius: 6px;
    /* -webkit-box-shadow: 0 0 5px #eaeaea;
    box-shadow: 0 0 5px #eaeaea;
    border: 1px solid #eaeaea; */
    background: white;
    margin-bottom: 30px;
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}


.form-heading {
    font-size: 2vw;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--font-poppins);
    color: var(--color-primary);
    text-align: center;
}

.image-form-container {
    width: 100%;
    display: flex;
    justify-content: center !important;
}

.image-form-container .image-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 1.5rem;
    padding-right: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 400px;
}

.image-form-container .form-container {
    padding-left: 3rem;
    padding-bottom: 1rem;
    border-left: 1px solid #c9d1d4;
    margin-top: 1.5rem;
    min-width: 400px;
}

.image-form-container .form-container p {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    color: var(--color-primary);
    font-family: var(--font-poppins);
    font-weight: 400;
}

.login-form-control {
    position: relative;
    font-family: var(--font-poppins);
}

.form-control-wrapper {
    margin-bottom: 18px;
    position: relative;
    border-radius: 0;
}

.form-control-wrapper .h-input__label {
    background: #fff;
    padding: 0 2px;
    top: 0;
    left: 8px;
}

.h-input__label {
    color: #727586;
    font-size: 14px;
    left: 16px;
    line-height: 24px;
    margin-bottom: 0;
    max-width: 100%;
    overflow: hidden;
    pointer-events: none;
    text-align: left;
    text-overflow: ellipsis;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    white-space: nowrap;
    width: auto;
    z-index: 10;
    font-family: var(--font-poppins);
    position: absolute;
}

.h-input__input {
    border: 1px solid #dadce0;
    border-radius: 4px;
    box-shadow: 0 0 0 transparent;
    font-size: 16px;
    line-height: 24px;
    outline: transparent;
    padding: 11px 16px;
    transition: border 0.3s, box-shadow 0.3s;
    width: 100%;
    background-color: transparent;
}

.checkbox-container {
    margin-bottom: 18px;
    position: relative;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    display: flex;
    gap: 5px;
}

.checkbox-label {
    font-family: Muli, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--color-primary);
}

.log-in-formsubmit__btn {
    background-color: var(--color-primary);
    border-radius: 3px;
    padding: 15px 20px;
    color: #fff;
    word-break: break-word;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: 1px solid var(--color-primary);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

.description-of-step {
    text-align: center;
}

.log-in-2021__not-a-member {
    color: #1b3bbb;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.8;
    font-family: var(--font-poppins);
}

.text-h-hpanel-primary {
    color: var(--color-primary);
}

.settings-cards-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 25px;
}

.settings-cards-wrapper .settings-card {
    flex: 1;
    border-radius: 4px;
    border-radius: 10px;
    padding: 22px;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.settings-card-heading {
    font-family: var(--font-helvetica);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.settings-cards-wrapper ul {
    display: flex;
    width: 100%;
    gap: 20px;
    list-style: none;
}

.settings-cards-wrapper ul li a {
    font-family: var(--font-helvetica);
    font-weight: 400;
    font-size: 14px;
    line-height: 16.1px;
    color: var(--color-primary);
}


/* other pages  */
.page-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-title h2 {
    font-family: var(--font-helvetica);
    font-weight: 700;
    font-size: 25px;
    line-height: 28.75px;
    color: var(--color-primary);
}

.page-details-wrapper {
    display: flex;
    align-items: stretch;
    gap: 42px;
}

.page-detail-card {
    background-color: #091E42;
    border-radius: 7px;
    padding: 28px 50px;
    max-width: 380px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 35px 0px;
}

.page-detail-card h2 {
    font-family: var(--font-helvetica);
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    overflow: hidden;
    color: white;
}

.page-detail-card h3 {
    font-family: var(--font-helvetica);
    font-weight: 600;
    font-size: 20px;
    color: white;
    margin-top: 10px;
}

.service-detail-section {
    width: 100%;
    display: flex;
    gap: 33px;
    margin-top: 30px;
    align-items: flex-start;
}

.tab-section {
    width: 100%;
    display: flex;
    gap: 20px;
}

.tab-section .tab {
    flex: 1;
    background-color: white;
    border-radius: 5px;
    padding: 18px 0px;
    font-family: var(--font-helvetica);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.tab-section .tab.active {
    background-color: #091E42;
    color: white;
}

.tab-divider {
    margin: 20px 0px;
}

.service-detail-section .heading,
.notes-details-section .heading,
.timeline-section .heading {
    font-family: var(--font-helvetica);
    font-weight: 700;
    font-size: 20px;
    color: #333333;
    margin-bottom: 10px;
}

.service-detail-section .services-details {
    width: 70%;
}

.service-detail-section .services-summary {
    width: 30%;
    display: flex;
    flex-direction: column;
    margin-top: 94px;
}

.service-detail-section .services-summary button {
    align-self: center;
}

.server-card {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-helvetica);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.server-header {
    background-color: #f7f9fc;
    padding: 20px 20px;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.server-header span:last-child {
    font-weight: normal;
    color: #666;
}

.server-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 20px;
    font-size: 14px;
    overflow: visible;
}

.server-row:nth-child(even) {
    background-color: #F9FAFC;
}

.label {
    color: #555;
}

.value {
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    overflow: visible;
}

.value svg {
    cursor: pointer;
}

.copy-board {
    cursor: pointer;
}


.notes-details-section {
    margin-top: 30px;
}

.notes-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notes-desc {
    font-family: var(--font-helvetica);
    color: var(--color-primary);
    font-size: 14px;
}

.notes-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    padding-bottom: 150px;
}

.notes-wrapper .more {
    cursor: pointer;
}

.note-sm-desc {
    font-family: var(--font-helvetica);
    font-size: 14px;
    color: #333333;
}

.note-sm-desc span {
    font-weight: 600;
}

.note-card {
    width: 100%;
    padding: 20px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
}

.notes-wrapper-empty {
    margin-top: 30px;
    width: 100%;
    height: 300px;
    border-radius: 7px;
    background-color: #f0f0f0;
    display: grid;
    place-items: center;
    padding: 0 30px;
}

.notes-wrapper-empty div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.notes-wrapper-empty h3 {
    font-family: var(--font-helvetica);
    font-weight: 700;
    font-size: 20px;
    color: #333333;
}

.drop_down_controls {
    position: relative;
    overflow: visible;
    width: fit-content;
    display: inline-block;
}

.drop_down_body {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 120px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.drop_down_body a {
    font-family: var(--font-inter);
}

.drop_down_body.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.drop_down_body a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.drop_down_body a:hover {
    background-color: #f8f9fa;
}



.notes-wrapper-empty p {
    font-family: var(--font-helvetica);
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    text-align: center;
}

.mt-2 {
    margin-top: 5px;
}

.managing-section {
    width: 100%;
    margin-top: 30px;
    padding: 28px 50px;
    background-color: #091E42;
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.actions-wrapper {
    display: flex;
    gap: 20px;
}

.action-card {
    border: none;
    border-radius: 7px;
    padding: 10px 20px;
    background-color: #EBF3FF;
    display: flex;
    justify-content: center;
    align-self: center;
    gap: 5px;
    cursor: pointer;
    font-size: 16px;
}

/* .managing-section {
    background-color: #DDDFFF;
} */

.managing-section h3 {
    font-family: var(--font-helvetica);
    font-weight: 600;
    font-size: 20px;
    color: white;
    margin-top: 10px;
}

.managing-section h3 span {
    color: white;
}

.ac-button,
.ac-label {
    padding: 6px 20px;
    background-color: white;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    color: #091E42;
    border: 1px solid #2422221f;
}

.ac-button.disabled {
    background-color: #e0e0e0;
    color: #666666;
    cursor: not-allowed;
    border: 1px solid #666666;

}

.ac-button.disabled:hover {
    background-color: #e0e0e0;
    color: #666666;
    border: 1px solid #666666;

}


.ac-button:hover {
    color: white;
    background-color: #091E42;
    border: 1px solid #091E42;
}

.table-search-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.table-search-wrapper.search-p {
    width: 400px;
}

.table-search-wrapper h2 {
    font-family: var(--font-helvetica);
    font-weight: 700;
    font-size: 20px;
    color: #333333;
}

.table-search-wrapper p {
    font-size: 14px;
    color: #555555;
    font-family: var(--font-helvetica);
}

.table-tabs-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.table-tab {
    flex: 1;
    background-color: #f4f4f4;
    border-radius: 6px;
    border-radius: none;
    padding: 18px 20px;
    border: none;
    cursor: pointer;
}

.table-tab.active {
    background-color: #091E42;
    color: white;
}

.filter-wrappers {
    display: flex;
    align-items: center;
    gap: 5px;
}

.filter-wrappers select {
    border: 1px solid #dadce0;
    padding: 10px;
    border-radius: 5px;
    outline: none;
    color: #8d8d8d;
}

.timeline-section {
    margin-top: 20px;
}

.timeline-container {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 24px 24px 0;
    max-width: 600px;
    margin: 40px auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

/* Center vertical line with icons */
.timeline-container::before {
    content: '';
    position: absolute;
    top: 36px;
    /* adjusted to start below first icon */
    bottom: 36px;
    /* space below last item */
    left: 36px;
    /* center with icons (32px + 4px) */
    width: 2px;
    background-color: #e0e0e0;
    z-index: 0;
}

.timeline-icon {
    position: absolute;
    top: 0;
    left: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f0fdf4;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #d1fadf;
    z-index: 1;
}

.timeline-icon.active {
    background-color: #d1fadf;
}

.timeline-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #22c55e;
    stroke-width: 2px;
}

.timeline-icon.info {
    background-color: #e0f2fe;
    border-color: #bae6fd;
}

.timeline-icon.info svg {
    stroke: #0ea5e9;
}

.timeline-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 4px;
}

.timeline-description {
    font-size: 14px;
    color: #555;
}

.show-less {
    text-align: center;
    margin: 20px 0;
}

.show-less button {
    background-color: #e6f4ea;
    color: #16a34a;
    border: none;
    padding: 6px 16px;
    border-radius: 6px;
    cursor: pointer;
}


.container-address {
    margin-top: 20px;
    width: 100%;
}

.container-address h2 {
    font-family: var(--font-helvetica);
    font-size: 20px;
    color: #333333;
    margin-bottom: 10px;
}

.container-address .section {
    margin-bottom: 20px;
}

.container-address .card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

.container-address .card.billing {
    background-color: #f0f0f0;
}

.container-address .update-btn {
    background-color: #f0f9eb;
    color: #2e7d32;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    position: absolute;
    right: 16px;
    top: -36px;
    font-family: var(--font-helvetica);
}

.container-address .address-container {
    display: flex;
    align-items: center;
    font-family: var(--font-helvetica);
}

.container-address .icon {
    margin-right: 16px;
    color: #666;
}

.container-address .address-details {
    flex: 1;
}

.container-address .address-title {
    font-weight: 500;
    margin-bottom: 4px;
}

.container-address .address-text {
    color: #757575;
    font-size: 14px;
    font-family: var(--font-helvetica);
}

.container-address .default-badge {
    color: #9e9e9e;
    font-size: 14px;
    margin-right: 16px;
    cursor: pointer;
}

.container-address .subscription-card,
.server-row .subscription-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.container-address .subscription-info h3,
.server-row .subscription-info h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-family: var(--font-helvetica);
}

.container-address .subscription-info p,
.server-row .subscription-info p {
    color: #9e9e9e;
    font-size: 14px;
    max-width: 500px;
    font-family: var(--font-helvetica);
}

.container-address .cancel-btn,
.container-address .invite-btn,
.server-row .invite-btn {
    background-color: #fdeeee;
    color: #e53935;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-helvetica);
}

.container-address .invite-btn,
.server-row .invite-btn {
    background-color: #e9f7ef;
    color: #4caf50;
}

.cancel-icon {
    width: 20px;
    height: 20px;
    background-color: #e53935;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-helvetica);
}

.status-card {
    background-color: #fff;
    border-radius: 10px;
    width: 100%;
    padding: 24px;
    font-family: var(--font-helvetica);
}

.status-item {
    display: flex;
    position: relative;
    padding-bottom: 24px;
}



.status-icon {
    margin-right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.status-icon.active {
    background-color: #e9f7ef;
    color: #4caf50;
}

.status-icon.info {
    background-color: #e1f5fe;
    color: #03a9f4;
}

.status-content {
    flex-grow: 1;
    border-bottom: 1px solid #e0e0e0;
}

.status-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

.status-description {
    font-size: 14px;
    color: #757575;
    margin-bottom: 20px;
}

.show-less-btn {
    background-color: #091E42;
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    font-weight: 500;
    border-radius: 6px;
}

/* Timeline styling */
.status-container {
    position: relative;
}

.timeline {
    position: absolute;
    left: 16px;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.status-item:last-child .status-timeline {
    display: none;
}

/* modal css  */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content h2 {
    font-family: var(--font-helvetica);
    font-weight: 700;
    font-size: 20px;
    color: #333333;
    margin-bottom: 10px;
}

.modal-body {
    border-top: 1px solid #e0e0e0;

}

.modal-body form {
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    gap: 10px;
}

.modal-content {
    background: white;
    border-radius: 8px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}






.alert-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.alert-icon {
    margin-right: 8px;
}

.orders-container {
    display: flex;
    flex-direction: column;
}


.order-card {
    width: 100%;
    max-width: 100%;
    background-color: #e0f7f0;
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    font-family: var(--font-helvetica);
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 170, 120, 0.1);
    margin-top: 13px;
}


.order-card .arrow-container {
    height: 40px;
    width: 40px;
    background: white;
    display: grid;
    place-content: center;
    border-radius: 10px;
    cursor: pointer;
}

.order-card .arrow-container:hover {
    background-color: #DDDFFF;
}

.order-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.icon-container {
    background-color: #8cd5bf;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.heart-icon {
    color: #333;
    stroke-width: 2px;
}

.order-info h2 {
    font-size: 16px;
    font-weight: 400;
    color: #44a084;
    margin-bottom: 5px;

}

.order-info h2 span {
    font-weight: 700;
}

.order-info p {
    font-size: 14px;
    color: #56aa91;
    line-height: 1.5;
}

.arrow-icon {
    color: #333;
    cursor: pointer;
}

/* For demo purposes - to show placeholder values */
.demo-value {
    font-weight: 600;
}


/* Drawer styles  */
.drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    font-family: var(--font-helvetica);
    color: var(--color-primary);
}

.drawer.open {
    right: 0;
}

.drawer-header {
    padding: 14px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 61px;
    overflow: hidden;
}

.drawer-close {
    font-size: 17px;
    cursor: pointer;
}

.drawer-body {
    padding: 20px;
    padding-right: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 61px);
}

.drawer-body>div {
    padding-right: 17px;
}

.drawer-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 6px;
}

.drawer-row span.label {
    font-weight: 600;
    color: #333;
}

.drawer-row span.value {
    color: #555;
}

#drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
}

#drawer-overlay.active {
    display: block;
}

.button-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* toggle switch  */
.switch {
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 2.5em;
    height: 1.5em;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: white;
    border-radius: 50px;
    border: 1px solid #2422226e;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.slider:before {
    position: absolute;
    content: "";
    height: 1em;
    width: 1em;
    right: 0.3em;
    bottom: 0.2em;
    transform: translateX(150%);
    background-color: #091E42;
    border-radius: inherit;
    transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.slider:after {
    position: absolute;
    content: "";
    height: 1em;
    width: 1em;
    left: 0.3em;
    bottom: 0.2em;
    background-color: #cccccc;
    border-radius: inherit;
    transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.switch input:focus+.slider {
    /* box-shadow: 0 0 1px #59d102; */
}

.switch input:checked+.slider:before {
    transform: translateY(0);
}

.switch input:checked+.slider::after {
    transform: translateX(-150%);
}

.footer {
    width: 100%;
    height: 100px;
    background-color: #f8f8f8;
    color: #555555;
    display: flex;
    align-items: flex-end;
    padding-bottom: 15px;
    font-family: var(--font-helvetica);
    justify-content: center;
    font-size: 14px;
}

.register-domain-wrapper {
    width: 100%;
    background-color: white;
    border-radius: 10px;
    padding: 60px 20px;
    display: grid;
    place-items: center;
    margin-top: 22px;
    color: var(--color-primary);
    font-family: var(--font-helvetica);
}

.register-domain-wrapper h2 {
    color: var(--color-primary);
}

.register-domain-wrapper h3 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
}

.register-domain-wrapper div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}


.server-card.profile {
    margin-top: 20px;
}

.services-summary.profile {
    margin-top: 100px;
}


.tab-content-wrapper.profile-page {
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.server-card.notification {
    margin-top: 29px;
}

.table-container.profile-page {
    display: flex;
    gap: 20px;
}

.profile-page.tabs-container {
    flex: 1;
}

.services-details.profile-page {
    width: 100%;
}

.profile-page.profile-summary {
    max-width: 300px;
    width: 100%;
}

.table-tabs-wrapper.profile {
    justify-content: flex-start;
}

.table-tab.profile {
    background-color: white;
    flex: initial;
}

.table-tab.profile.active {
    background-color: #091E42;
    color: white;
}

.button-small {
    display: inline-block;
    padding: 10px 15px;
    background-color: #091E42;
    color: white;
    text-decoration: none;
    cursor: pointer;
    border-radius: 6px;
    border: none;

}

.button-small:hover {
    background-color: #103a82;
}



.forms-tabs {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.forms-tabs .button-small {
    border: none;
    outline: none;
    align-self: flex-end;
    max-width: 100px;
}


.profile_card {
    background-color: #091E42;
    color: white;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    margin-top: 100px;
    font-family: var(--font-helvetica);
}

.profile_card .avatar {
    width: 50px;
    height: 48px;
    background: linear-gradient(135deg, #5efc82, #35c374);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    color: #000;
    overflow: hidden;
}


.profile_card .user-info {
    margin-top: 10px;
}

.profile_card .user-info h2 {
    font-size: 16px;
    margin: 5px 0;
    font-weight: 600;
}

.profile_card .user-info a {
    font-size: 14px;
    color: #ccc;

    text-decoration: none;
}

.profile_card .meta-info {
    margin-top: 15px;
    font-size: 14px;
}

.profile_card .meta-info span {
    display: block;
    color: #ccc;
}

.profile_card .meta-info strong {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.profile_card .support-pin {
    margin-top: 20px;
    width: 100%;
    background: white;
    color: black;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.profile_card .support-pin:hover {
    background: #eaeaea;
}


#Webloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    /* or black or transparent */
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    z-index: 9999;
}

#Webloader img {
    width: 100px;
    /* Adjust size as needed */
}

.success-message,
.error-message {
    font-family: var(--font-inter);
}

.success-message {
    font-size: 13px;
    color: green;
    text-align: center;
    margin-top: 10px;
    display: none;
}

.success-text {
    font-family: var(--font-inter);
    font-size: 14px;
    color: green;
    text-align: center;
    margin-top: 10px;
}

.modal-note-text {
    font-family: var(--font-inter);
}

.arrow-container.button {
    padding: 10px;
    width: fit-content;
    color: #44a084;
    overflow: hidden;
}

.arrow-container.button:hover {
    background-color: #f8f9ff;
}



.tooltip {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #091E42;
    color: #fff;
    padding: 4px 8px;
    font-size: 8px;
    border-radius: 4px;
    white-space: nowrap;
    display: none;
    z-index: 10;
}

.copy-container:hover .tooltip {
    display: block;
}

.notes-heading>div {
    max-width: 60%;
    width: 100%;
}

.support-btn.button-support-profile {
    display: none;
}

.nav-link.logout-mobile {
    display: none;
}

.table-container.payment-verification {
    display: flex;
    gap: 20px;
}

.verification-submission-form {
    max-width: 60%;
    width: 100%;
    margin-top: 94px;
}

.badge_status {
    font-size: 11px;
    color: white !important;
    font-weight: 500 !important;
    padding: 4px 8px;
    background-color: black;
    border-radius: 2px;
}

.badge_status.processing {
    background-color: #f97316bb !important;
}

.badge_status.suspended {
    background-color: #ef4444bb !important;
}

.badge_status.active {
    background-color: #84cc16bb !important;
}

.badge_status.pending {
    background-color: #facc15 !important;
}

.badge_status.cancelled {
    background-color: #8b5cf6bb !important;
}


@media only screen and (max-width : 852px) {
    .verification-submission-form {
        margin-top: 0px;
    }

    .table-container.payment-verification {
        flex-direction: column-reverse;
    }

    .verification-submission-form {
        max-width: 100%;
    }
}


/* media queries */
@media screen and (max-width: 1300px) {
    .button-big {
        font-size: 13px;
    }

    .profile-page.profile-summary {
        max-width: 220px;
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .profile-page.profile-summary {
        display: none;
    }

    .support-btn.button-support-profile {
        display: flex;

    }
}

@media screen and (max-width: 1100px) {
    .table-search-wrapper p {
        font-size: 12px;
    }

    .table-search-wrapper h2 {
        font-size: 18px;
    }

    .search-bar-wrapper {
        width: 300px;
    }
}

@media screen and (max-width: 1000px) {

    .content-wrapper .side-navigation {
        box-shadow: 0px 4px 10px 0px #0080ff1a;
        position: absolute;
        left: -244px;
        z-index: 10;
        transition: all 0.3s ease-in-out;
        padding-top: 10px;
    }

    .nav-link.logout-mobile {
        display: flex;
    }

    .content-wrapper .side-navigation.active-nav {
        left: 0px;
    }

    .hamburger-icon {
        display: block;
    }

    .hamburger-mobile {
        display: none;
    }

    .content-wrapper .content-container {
        padding-right: 38px;
    }
}

@media screen and (max-width: 1046px) {
    .slide-content {
        max-width: 400px;
    }

    .slide-content {
        gap: 35px;
    }

    .login-support-wrapper {
        margin-top: 40px;
    }
}


@media only screen and (max-width: 890px) {
    .slide-content {
        max-width: 325px;
    }

    .login-container h2 {
        font-size: 21px;
    }

    .login-container p {
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    .drop_down_body a {
        font-size: 14px;
        padding: 10px 10px;
    }

    .user-content-container .user-details {
        display: none;
    }

    .header-content {
        justify-content: flex-end;
    }

    .header-content-wrapper {
        padding-right: 40px;
    }

    .arrow-container.button {
        font-size: 13px;
    }

    .login-container .image-side {
        display: none;
    }

    .search-icons-container {
        display: none;
    }

    .login-container .form-side .form-wrapper {
        max-width: 400px;
    }

    .get-started-card p {
        font-size: 14px;
        line-height: 20px;
    }

    .get-started-card {
        padding-left: 44px;
        padding-right: 43px;
    }

    .filter-wrappers {
        display: none;
    }

    .table-wrapper {
        overflow: auto;
    }

    .table-wrapper table {
        width: 650px;
    }

    .greetings-banner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .orders-container {
        gap: 0px;
    }


    .order-card {
        margin-top: 18px;
    }

    .greetings-banner h2,
    .greetings-banner h4 {
        font-size: 20px;
        line-height: 24.75px;
    }

    .button-big {
        padding: 15px 9px;
        font-size: 15px;
    }

    .table-search-wrapper {
        flex-wrap: wrap;
    }

    .action-card {
        padding: 10px 10px;
        font-size: 15px;
    }

    .service-detail-section {
        flex-wrap: wrap;
    }

    .service-detail-section .services-details {
        width: 100%;
    }

    .service-detail-section .services-summary {
        width: 100%;
        margin-top: 0px;
    }

    .button-big.button-add-notes {
        width: fit-content;
    }

    .button-big.support-btn {
        width: 200px;
    }

    .page-detail-card h3 {
        font-size: 16px;
    }
}

@media screen and (max-width : 580px) {

    .table-tabs-wrapper.profile {
        overflow-x: auto;
    }

    .table-tab {
        width: 100px;
        overflow: initial;
    }

    .table-wrapper table tbody tr td,
    .table-wrapper table tbody tr span,
    .manage-btn {
        font-size: 14px;
    }

    .service-detail-section .heading,
    .notes-details-section .heading,
    .timeline-section .heading {
        font-size: 17px;
    }

    .server-row {
        font-size: 13px;
    }

    .server-header {
        font-size: 14px;
    }

    .notes-wrapper-empty h3 {
        font-size: 16px;
    }

    /* .slider:before {
        height: 1.1em;
        width: 1.1em;
        right: 0.3em;
        bottom: 0.3em;
    }

    .slider:after {
        height: 1.1em;
        width: 1.1em;
        left: 0.3em;
        bottom: 0.3em;
    } */


    .page-title h2 {
        font-size: 20px;
        line-height: 21px;
    }

    .table-tab {
        padding: 10px;
    }

    .order-info h2 {
        font-size: 12px;
    }

    .content-wrapper .content-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .order-card {
        padding-left: 20px;
        padding-right: 20px;
    }

    .get-started-card {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .icon-container {
        display: none;
    }

    .service-card {
        padding-left: 42px;
    }

    .get-started-card p {
        font-size: 13px;
        line-height: 15px;
    }

    .greetings-banner .button-big {
        width: fit-content;
        font-size: 12px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .greetings-banner div h4 {
        font-size: 14px;
    }

    .greetings-banner h2,
    .greetings-banner h4 {
        font-size: 16px;
        line-height: 18.4px;
    }

    .button-big {
        font-size: 12px;
        width: fit-content;
    }

    .page-details-wrapper {
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .page-detail-card {
        width: 100%;
        margin: 0px;
        max-width: 100%;
        padding: 28px 22px;
    }

    .actions-wrapper {
        flex-wrap: wrap;
    }

    .notes-heading>div {
        max-width: 180px;
        width: 100%;
    }

    .container-address .subscription-card,
    .server-row .subscription-card {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

@media screen and (max-width : 538px) {
    .search-bar-wrapper {
        width: 154px;
    }

    .table-tabs-wrapper {
        gap: 10px;
    }
}
