:root {
    --light-green-bg: #f8faf6;
    --main-green: #96f775;
    --main-black: #08160f;
    --black-green: #1f332b;
    --light-grey: #eff1ed;
    --grey: #c6ccc9;
    --dark-grey: #808883;
    --grey-bg: #c6ccc9;
    --smooth-red: #ff6a6a;
}

body {
    background-color: var(--light-grey);
}

* {
    font-family: "Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1 {
    font-size: 35px;
    font-weight: 700;
}

h4 {
    font-size: 22px;
    font-weight: 700;
}

h6 {
    font-size: 14px;
    font-weight: 700;
}

a,
a:visited,
a:focus,
a:hover {
    color: var(--main-black);
}

a.disabled {
    pointer-events: none;
}

.whitetext {
    color: white !important;
}

.whitebg {
    background-color: white !important;
}

.blacktext {
    color: var(--main-black) !important;
}

.blackbg {
    background-color: var(--main-black) !important;
}

.greentext {
    color: var(--main-green) !important;
}

.greenbg {
    background-color: var(--main-green) !important;
}

.redtext {
    color: red !important;
}

.redbg {
    background-color: red !important;
}

.text-input {
    width: 100%;
    height: 44px;
    /* line-height: 44px; */
    padding: 0 30px 0 20px;
    border-radius: 5px;
    background-color: var(--light-grey);
    border: none;
    outline: none !important;
}

.base-auth-page {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex: 1 1;
    background-color: white;
    height: 100vh;
}

.left-part,
.right-part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    padding-top: 70px;
    padding-bottom: 70px;
}

.left-part {
    gap: 65px;
}

.right-part {
    background-image: linear-gradient(to right, #fff 0%, #96f775 100%);
    gap: 30px;
}

.right-part>.text-part {
    width: 200px;
    text-align: center;
}

.small-logo {
    width: 24px;
    height: 24px;
}

.large-logo {
    width: 120px;
    height: 55px;
}

.logo-part {
    display: flex;
    width: 360px;
    justify-content: flex-start;
}

.inner-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 360px;
    justify-content: space-between;
}

.auth-form {
    display: flex;
    flex-direction: column;
    flex: 1 1;
    gap: 30px;
}

.centered-text {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
}

.centered-text>a {
    text-decoration: underline;
}

.form-fieldset {
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.auth-form .submit-btn {
    margin-top: 30px;
    width: 100%;
    border-radius: 5px;
    border: none;
}

.bolder {
    font-weight: 500;
}

.inline-field {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.base-page {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
}

.sidebar {
    width: 285px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
    background-color: var(--main-black);
    justify-content: space-between;
    position: fixed;
    z-index: 0;
    overflow-x: hidden;
}

.sidebar.displayed {
    z-index: 101;
    /* higher then preloader */
    display: flex;
}

.sidebar a,
.sidebar a:visited,
.sidebar a:hover,
.sidebar a:focus {
    text-decoration: none;
    /* color: white; */
}

.upper-part {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.sidebar_options {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar_item,
a.sidebar_item {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    height: 45px;
    color: white;
    background-color: var(--main-black);
}

.sidebar_item.warning-banner {
    background-color: red;
    color: black;
    margin-left: -30px;
    cursor: pointer;
}

.sidebar_item.active,
a.sidebar_item.active {
    color: black;
    background-color: var(--main-green);
}

.sidebar_item .white-icon {
    display: none;
}

.sidebar_item .dark-icon {
    display: block;
}

.sidebar_item.active .dark-icon {
    display: none;
}

.sidebar_item.active .white-icon {
    display: block;
}


.sidebar_item.inactive {
    background-color: black !important;
    opacity: 0.8;
}

.bottom-part .sidebar_item {
    /* height: auto; */
    /* padding: 15px; */
    /* border-radius: 10px; */
    cursor: pointer;
}

.sidebar-submenu {
    border-radius: 15px;
}

.bottom-part .sidebar-submenu .sidebar_item {
    border-radius: 0;
}

.bottom-part .sidebar-submenu .sidebar_item:hover {
    background-color: var(--grey-blue);
}

.bottom-part {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar_item-message {
    padding: 4px 13px;
    font-weight: 600;
    font-size: 12px;
    border-radius: 10px;
    background-color: var(--very-dark-blue);
}

.sidebar_item.disabled .sidebar_item-icon {
    opacity: 1;
}

.sidebar_item-icon {
    width: 30px;
    margin-left: 30px;
}

.sidebar_item-text {
    font-size: 16px;
    font-weight: 600;
}

.sidebar_item.disabled .sidebar_item-text {
    opacity: 0.8;
}

.main_part {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    flex: 1 1;
    width: 100%;
    margin-left: 285px;
    max-width: 100vw;
    overflow: hidden;
}

.checkbox-container {
    display: block;
    position: relative;
    /* padding-left: 18px; */
    /* margin-bottom: 12px; */
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-left: -36px;
    /* margin-right: 17px; */
    top: 10px;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: -9px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: var(--grey);
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input~.checkmark {
    background-color: #d7d8de;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked~.checkmark {
    background-color: var(--main-green);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 9px;
    border: solid black;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.uppercase {
    text-transform: uppercase !important;
}

.bold {
    font-weight: 600 !important;
}

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

    to {
        transform: rotate(360deg);
    }
}

.modal-content {
    padding: 40px;
    border-radius: 10px;
    gap: 30px;
}

.modal-content .modal-header,
.modal-content .modal-footer,
.modal-content .modal-body {
    padding: 0;
}

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

.modal-content .modal-header,
.modal-content .modal-footer {
    border: none;
}

.modal-footer {
    justify-content: space-between;
}

.modal-options {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
}

.modal-dialog.modal-dialog-centered {
    max-width: 510px;
    min-width: 320px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.redtext {
    color: var(--red);
}

.success-sign {
    color: green;
}

.error-sign {
    color: red;
}

.button-toggle {
    position: relative;
    top: 50%;
    width: 65px;
    height: 36px;
    /* margin: -20px auto 0 auto;
    overflow: hidden; */
}

.button-toggle.r,
.button-toggle.r .layer {
    border-radius: 100px;
}

.button-toggle.b2 {
    border-radius: 2px;
}

.button-toggle-checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.knobs {
    z-index: 2;
    position: absolute;
    top: 4px;
}

.layer {
    width: 100%;
    background-color: var(--dark-green);
    transition: 0.3s ease all;
    position: absolute;
    height: 30px;
    top: 3px;
    z-index: 1;
}

.button-toggle .knobs:before {
    content: "ON";
    position: absolute;
    top: 3px;
    left: 5px;
    width: 35px;
    height: 22px;
    color: var(--dark-green);
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    background-color: white;
    border-radius: 22px;
    padding-top: 6px;
    font-weight: 800;
    transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
}

.button-toggle .button-toggle-checkbox:not(:checked)+.knobs:before {
    content: "OFF";
    left: 25px;
    color: var(--smooth-red);
}

.button-toggle .button-toggle-checkbox:not(:checked)~.layer {
    background-color: var(--smooth-red);
}

.button-toggle .button-toggle-checkbox:disabled~.layer {
    background-color: var(--lock_preview-header);
}

.button-toggle .button-toggle-checkbox:disabled+.knobs:before {
    content: "OFF";
    left: 25px;
    color: var(--lock_preview-header);
}

.button-toggle .knobs,
.button-toggle .knobs:before,
.button-toggle .layer {
    transition: 0.3s ease all;
}

.main_part {
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: center;
    flex: 1 1;
    width: 100%;
    margin-left: 285px;
    max-width: 100vw;
    overflow: hidden;
}

.main_part-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--grey);
    min-width: 510px;
    position: relative;
}

.main_part-right {
    width: 60%;
    display: flex;
    flex-direction: column;
    padding-left: 40px;
    padding-right: 40px;
    background-color: white;
    position: relative;
    max-height: 100vh;
    overflow-y: auto;
}

.sidebar-opener,
.sidebar-closer {
    position: absolute;
    background-color: white;
    display: none;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    cursor: pointer;
    z-index: 50;
    border: 1px solid var(--light-grey);
}

.sidebar-opener {
    top: 5px;
    left: 0;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    display: flex;
}

.sidebar-closer {
    top: 5px;
    right: 0;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    width: 15px;
    gap: 3px;
}

.menu-icon-line {
    background-color: var(--main-black);
    width: 100%;
    height: 2px;
}

.clients-list-header,
.right_part-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    width: 100%;
    border-bottom: 1px solid var(--grey);
}

.right_part-header {
    position: relative;
}

.clients-list-header_part {
    gap: 20px;
    display: flex;
    align-items: center;
}

.title {
    font-weight: 800;
    font-size: 30px;
}

.clients-list-search_block {
    position: relative;
    padding-left: 27px;
    width: 200px;
    background-color: white;
    border-radius: 50%;
    border: 1px solid var(--grey);
    height: 46px;
    border-radius: 25px;

}

.clients-list-header_part.left {
    margin-left: 40px;
}

.clients-list-header_part.right {
    margin-right: 40px;
}

.search_icon {
    width: 19px;
    height: 20px;
    position: absolute;
    left: 17px;
    top: 12px;
}

.text-input {
    /* background-color: transparent; */
    outline: none;
    border: none;
    font-size: 14px;
    font-weight: 400;
    color: var(--main-black);
}

.header-option {
    color: var(--main-black);
    text-decoration: underline;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.options-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
}

.option-block {
    display: flex;
    flex-direction: column;
    width: calc(50% - 20px);
}

.option-header {
    color: var(--main-black);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.option-input.text-input {
    background-color: var(--light-green-bg);
    border-radius: 0;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.btn.general-btn {
    padding: 18px 26px;
    border-radius: 0;
    font-size: 15px;
    line-height: 15px;
}

.btn.general-btn.swal-btn {
    padding: 10px 26px;
    font-weight: 600;
}

.error-message {
    color: red;
    font-size: 14px;
    font-weight: 600;
    margin-top: 0px;
}

.success-message {
    color: green;
    font-size: 14px;
    font-weight: 600;
    margin-top: 0px;
}

.right_part-closer--container {
    position: absolute;
    right: 0;
    top: 0;
    display: none;
    cursor: pointer;
}

.right_part-closer {
    position: sticky;
    top: 0;
    width: 35px;
    height: 35px;
    font-size: 20px;
    border-bottom-left-radius: 6px;
    border: 1px solid var(--light-grey);
    border-top: none;
    border-right: none;
    padding-left: 10px;
}

.section-loader {
    position: absolute;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: white;
}

.section-loader-icon {
    animation-duration: 1s;
    animation-name: spin;
    animation-iteration-count: infinite;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--main-black);
    border-top-color: var(--main-green);
}

.left_part-block {
    min-height: 150px;
    border-bottom: 1px solid var(--grey);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    cursor: pointer;
}

.client-name {
    font-size: 24px;
    font-weight: 800;
}

.client-email {
    font-size: 14px;
    color: var(--dark-grey);
}

.left_part-block-right_part {
    padding: 12px 18px;
    line-height: 1;
    background-color: var(--grey-bg);
    border-radius: 24px;
}

.left_part-block-right_part.active {
    background-color: var(--main-green);
}

.left_part-block.selected {
    background-color: var(--black-green);
}

.left_part-block.selected .client-name,
.left_part-block.selected .title {
    color: white;
}

.client-accounts-counter {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.clients_list {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.options-row.align-center {
    align-items: center;
}

.dots-container {
    display: flex;
    flex-direction: row;
    gap: 3px;
    align-items: center;
    border: none;
    background-color: transparent;
}

.dots-container .dot {
    width: 4px;
    background-color: var(--main-black);
    height: 4px;
    border-radius: 50%;
}

.accounts-connected-block {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.options-container-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    margin-top: 30px;
    margin-bottom: 20px;
}

.accounts-connected-counter {
    background-color: var(--light-grey);
    line-height: 25px;
    border-radius: 5px;
    font-size: 14px;
    width: 25px;
    height: 25px;
    text-align: center;
}

.connected-accounts-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    /* overflow-x: auto; */
    flex-wrap: wrap;
}

.connected-account-item {
    padding: 10px 15px;
    background-color: var(--light-green-bg);
    line-height: 1;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.connected-account-item.active {
    background-color: var(--main-green);
}

/* .connected-account-item .dropdown {
    display: none;
}
.connected-account-item:hover .dropdown,
.connected-account-item:focus .dropdown {
    display: block;
} */
.connected-account-item .dots-container {
    padding: 5px 4px;
    background-color: var(--main-black);
}

.connected-account-item .dot {
    width: 3px;
    height: 3px;
    background-color: white;
}

.statements-list-block {
    background-color: var(--main-green);
    padding: 20px;
    width: 400px;
    margin-top: 30px;
    display: none;
}

.statements-list-block.active {
    display: block;
}

.statements-list-header {
    font-weight: 600;
    font-size: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--main-black);
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.statements-list-footer {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--main-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    text-decoration: underline;
}

.statements-list-footer .no-styles {
    background-color: transparent;
    border: none;
    font-weight: 600;
}

.generate-statement-btn {
    text-decoration: underline;
}

.revoke-access-btn {
    color: red;
    text-decoration: underline;
}

.statement-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    position: relative;
}

.statement-item--remove {
    position: absolute;
    width: 16px;
    height: 16px;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-black);
    background-color: transparent;
    font-weight: 400;
    transition: 0.1s;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
}

.statement-item--remove:hover,
.statement-item--remove:focus {
    background-color: red;
    color: white;
}

.statement-status {
    font-weight: 600;
    text-decoration: underline;
}

.back-arrow {
    display: block;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--main-black);
    border-left: 2px solid var(--main-black);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.delete-client-btn {
    font-size: 14px;
    color: red;
    text-decoration: underline;
    cursor: pointer;
}

.back-menu {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    line-height: 1;
    text-decoration: underline;
    cursor: pointer;
}

#clients_list {
    overflow-y: auto;
    max-height: calc(100vh - 120px);
}

.dropdown-menu.show {
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 16.5px 0 rgba(0, 0, 0, 0.18);
    font-size: 14px;
}

.dropdown-item {
    cursor: pointer;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-toggle.with-tick::after {
    display: inline-block;
}

.dropdown-item.active,
.dropdown-item:active {
    color: white;
    text-decoration: none;
    background-color: var(--main-black);
}

.main_part_content-empty {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.main_part_content-empty--text {
    max-width: 570px;
    text-align: center;
}

div:where(.swal2-container) div:where(.swal2-popup) {
    border-radius: 0;
}

div:where(.swal2-container).swal2-center>.swal2-popup {
    border-radius: 0;
    color: var(--main-black);
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm.btn-outline-dark.general-btn {
    border: 1px solid #212529;
    background-color: white;
    color: #212529;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm.btn-outline-dark.general-btn:hover,
div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm.btn-outline-dark.general-btn:focus {
    border: 1px solid #212529;
    background-color: #212529;
    color: white;
}

.swal-popup-body {
    text-align: left;
}

div:where(.swal2-container) .swal2-html-container {
    margin: 0;
    padding: 30px 30px 0 30px;
}

.swal-popup-title {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 800;
}

.swal-popup-text {
    font-size: 14px;
}

#stat_inputs_container {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.statement-popup-label {
    font-size: 14px;
    font-weight: 600;
}

.statement-popup-datepicker {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

span.month.focused.active {
    background-color: var(--main-black) !important;
    background-image: none !important;
}

.statement-in_progress_bar {
    width: 50px;
    height: 7px;
    border: 2px solid var(--main-black);
    border-radius: 5px;
    position: relative;
}

.statement-in_progress_bar--filler {
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 5px;
    background-color: var(--main-black);
}

.statements-list-items {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height: 100px;
    /* max-height: 360px; */
    /* overflow-y: auto; */
}

.statements-resync {
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.account-label {
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    background-color: var(--black-green);
    border-radius: 14px;
}

.members-list-table {
    max-width: 600px;
}

.general-table tbody tr {
    height: 55px;
}

.general-table tbody tr td {
    vertical-align: middle;
}

.general-table tbody tr td .dropdown .option-input {
    padding: 0;
    height: 35px;
}

.general-table tbody .dropdown .dropdown-menu {
    width: 250px;
}

.general-table.table tbody tr:last-child td {
    border-bottom-width: 0;
}

.general-table.table>:not(caption)>*>* {
    padding: 10px 0;
    font-size: 14px;
}

.general-table.table thead th {
    font-weight: 800;
}

.general-table.table tbody tr:last-child td {
    border-bottom-width: 0;
}

.member-menu-container {
    display: flex;
    height: 20px;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
}

#memberRoleMenu,
#memberRoleUpdateMenu {
    width: 100%;
    margin-top: 10px !important;
}

#memberRole,
#memberRoleUpdate {
    text-align: left;
}

.dropdown-menu.member-clients-menu {
    width: 100%;
    margin-top: 10px !important;
    padding: 0;
}

.dropdown-menu.member-clients-menu .dropdown-item:focus,
.dropdown-menu.member-clients-menu .dropdown-item:hover {
    background-color: white !important;
    color: black;
}

.dropdown-menu.member-clients-menu li:focus,
.dropdown-menu.member-clients-menu li:hover {
    background-color: white !important;
    color: black;
}

.member-clients-searchbar .text-input {
    background-color: transparent;
    border-bottom: 1px solid var(--light-grey);
}

.member-clients-select_list,
.accounts-connect-select_list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 20px;
    max-height: 200px;
    overflow-y: auto;
}

.member-client-item,
.accounts-connect-item {
    position: relative;
    padding-left: 36px;
}

.dropdown-menu.member-clients-menu .dropdown-item {
    padding: 5px 25px 25px 25px;
    cursor: default;
}

#memberClients {
    text-align: left;
}

.dropdown-menu.member-clients-menu .text-input {
    padding: 0;
}

.text-input:disabled {
    cursor: not-allowed;
}

.logout-btn {
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
}

.invoice-status {
    width: fit-content;
    padding: 5px 20px;
    background-color: var(--main-green);
    border-radius: 34px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
}

.invoice-status.success {
    background-color: var(--main-green);
    color: black;
}

.invoice-status.failed {
    background-color: var(--smooth-red);
    color: white;
}

.payment-methods-block-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.payment-method-card {
    display: flex;
    flex-direction: column;
    width: 250px;
    height: 150px;
    background: linear-gradient(129deg, rgba(31, 51, 43, 0.03) 2%, rgba(31, 51, 43, 0.33) 148%);
    border-radius: 15px;
    padding: 10px 25px 15px 25px;
    justify-content: space-between;
    position: relative;
}

img.card-block-icon {
    width: 50px;
}

.card-number {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -2px;
}

.card-digits {
    letter-spacing: 0px;
}

.payment-methods-block-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 20px;
}

.card-expiration-date {
    font-size: 14px;
}

.payment-method-card.selected {
    box-shadow: 0 20px 10px -10px rgba(150, 247, 117, 0.45);
}

#right_part_content {
    height: 100%;
}

.right_part-content {
    padding-bottom: 40px;
}

.right_part-content.full-height {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.payment-methods-block {
    /* margin-bottom: 80px; */
    min-height: 350px;
}

.payment_method-dropdown-block {
    position: absolute;
    right: 20px;
    top: 30px;
}

.button-toggle {
    position: relative;
    top: 50%;
    width: 65px;
    height: 36px;
    /* margin: -20px auto 0 auto;
    overflow: hidden; */
}

.button-toggle.r,
.button-toggle.r .layer {
    border-radius: 100px;
}

.button-toggle.b2 {
    border-radius: 2px;
}

.button-toggle-checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.knobs {
    z-index: 2;
    position: absolute;
    top: 4px;
}

.layer {
    width: 100%;
    background-color: var(--main-green);
    transition: 0.3s ease all;
    position: absolute;
    height: 30px;
    top: 3px;
    z-index: 1;
}

.button-toggle .knobs:before {
    content: "ON";
    position: absolute;
    top: 3px;
    left: 5px;
    width: 35px;
    height: 22px;
    color: var(--main-green);
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    background-color: white;
    border-radius: 22px;
    padding-top: 6px;
    font-weight: 800;
    transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
}

.button-toggle .button-toggle-checkbox:not(:checked)+.knobs:before {
    content: "OFF";
    left: 25px;
    color: var(--smooth-red);
}

.button-toggle .button-toggle-checkbox:not(:checked)~.layer {
    background-color: var(--smooth-red);
}

.button-toggle .button-toggle-checkbox:disabled~.layer {
    background-color: var(--grey);
}

.button-toggle .button-toggle-checkbox:disabled+.knobs:before {
    content: "OFF";
    left: 25px;
    color: var(--grey);
}

.button-toggle .knobs,
.button-toggle .knobs:before,
.button-toggle .layer {
    transition: 0.3s ease all;
}

.subscriptions-list {
    display: flex;
    flex-direction: row;
    column-gap: 30px;
    row-gap: 15px;
    flex-wrap: wrap;
}

.subscription-block {
    width: 250px;
    min-height: 260px;
    background: linear-gradient(129deg, rgba(31, 51, 43, 0.03) 2%, rgba(31, 51, 43, 0.33) 148%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-radius: 15px;
    justify-content: space-between;
}

.subscription-block--header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.subscription-block--name {
    font-size: 16px;
    font-weight: 600;
}

.subscription-block--description {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
}

.subscription-block--price {
    font-size: 18px;
    font-weight: 600;
}

.subscription-block--footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#paymentMethod {
    padding: 15px 5px;
    background-color: var(--light-grey);
    border-radius: 0px;
}

.paymentMethod-block-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}

.btn-primary {
    border: none;
    outline: none;
}

.subscription-block--next_invoice_date {
    text-wrap: nowrap;
    font-size: 12px;
    text-align: center;
}

.btn.general-btn:disabled {
    cursor: not-allowed;
}

.accounts-connect-select_list.with_margin {
    margin-left: 36px;
    margin-top: 5px;
}

.accounts-connect-item.client-disconnect-block {
    margin-top: 10px;
}

.accounts-list-toggle {
    cursor: pointer;
    position: relative;
}

.accounts-list-toggle::after {
    content: "";
    width: 0px;
    height: 0px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid black;
    border-bottom: none;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.accounts-list-toggle.opened::after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid black;
    border-top: none;
}

.base-auth-page .logo-part img {
    width: 250px;
}

.sidebar-small-logo {
    display: none;
    width: 30px;
}

.sidebar-large-logo {
    width: 130px;
    display: block;
}

.bottom-part .sidebar_item-icon {
    margin-left: 35px;
}

#memberRoleModal .option-block {
    width: 100%;
}

.general-table.table tr td:not(:last-child) {
    padding-right: 5px;
}

.tooltip-item {
    position: relative;
    display: inline-block;
    padding: 0;
    font-weight: 600;
    color: var(--main-black);
    ;
    opacity: 1;
}

/* Tooltip text */
.tooltip-item .tooltiptext {
    visibility: hidden;
    width: 220px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 5px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    /* margin-left: -60px; */
    opacity: 0;
    transition: opacity 0.3s;
    transform: translateX(-50%);
    font-weight: 400;
}

/* Tooltip arrow */
.tooltip-item .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip-item:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

#available_to_connect {
    font-weight: 600;
}

#need-help_button {
    position: fixed;
    right: 10px;
    bottom: 10px;
}

#need-help_modal {
    position: fixed;
    max-width: 550px;
    top: unset;
    left: unset;
    right: 10px;
    bottom: 64px;
    height: auto;
}

#need-help_modal .modal-dialog,
#need-help_modal .modal-content {
    padding: 0;
    border: 0;
    outline: 0;
}

.card {
    max-height: 60vh;
    overflow-y: auto;
}

#id_submit_support_button {
    background-color: #96f775;
    color: black;
}

.support_input {
    background: #f8fafc;
}

.sidebar-dropdown-list {
    position: absolute;
    top: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    max-height: 150px;
    overflow: auto;
    background-color: var(--black-green);
    padding: 3px 0 3px 10px;
}

#organizations_dropdown {
    margin-left: -30px;
    position: relative;
    background-color: var(--black-green);
    cursor: pointer;
}

#organizations_dropdown>span {
    margin-left: 30px;
    padding: 5px 0 5px 15px;
}

.sidebar-dropdown-item,
.sidebar-dropdown-item:visited {
    padding: 3px;
    color: white;
    text-decoration: none;
}

.sidebar-dropdown-item:hover,
.sidebar-dropdown-item:focus {
    background-color: var(--main-green);
    cursor: pointer;
    color: black;
}