body {
    font-family: Urbanist;
}

.main-content-wrapper {
    display: flex;
    width: 100%;
}

.main-content-section {
    width: 100%;
}

#login_section .panel {
    display: flex;
    max-width: 504px;
    padding: 24px 24px 32px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    flex-shrink: 0;
    margin-left: auto;
    margin-right: auto;
    border-radius: 32px;
    background: #F7F9FC;
    margin-top: 110px;
}

#login_section .form-container {
    margin-top: 30px;
}

#login_section .form-container .submit-btn {
    margin-top: 15px;
}

#login_form {
    width: 100%;
}

#login_section #set_password_form {
    width: 100%;
}

#login_section #found_tenant_name {
    width: 100%;
}

#login_section #success_container {
    display: none;
    margin-top: 50px;
}

#login_section #success_container .text {
    color: green;
    font-weight: bolder;
}

#login_section #success_container a {
    text-decoration: none;
}

.header-logo {
    max-width: 200px;
}

.header-headline {
    align-self: stretch;
    color: #131F3B;
    text-align: center;
    font-size: var(--fontsize-heading-h4, 32px);
    font-style: normal;
    font-weight: 700;
    margin-top: 20px;
    line-height: var(--line-height-heading-h4, 40px);
}
.header-subtext {
    align-self: stretch;
    color: var(--nautral-600, #393D43);
    text-align: center;
    font-size: var(--fontsize-body-md, 14px);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.28px;
    line-height: var(--line-height-body-sm, 20px);
}

.form-container {
    width: 100%;
    display: flex;
    height: 100%;
    align-items: flex-end;
    flex-direction: column;
}

.form-container .form-field-label {
    flex: 1 0 0;
    color: var(--nautral-700, #1D1E22);
    font-size: var(--fontsize-body-sm, 12px);
    font-style: normal;
    font-weight: 600;
    margin-left: 5px;
    line-height: var(--line-height-body-sm, 20px);
}

.form-container .form-field {
    border-radius: 32px;
    border: 1px solid var(--primary-100, #C7D7FF);
    display: flex;
    padding: 12px 16px;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    width: 100%;
    margin-top: 5px;
    color: var(--nautral-700, #1D1E22);
    font-size: var(--fontsize-body-md, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-body-sm, 20px); /* 142.857% */
    letter-spacing: 0.28px;
    background: #f7f9fc;
}

.form-container .form-field:focus {
    background: #ffffff;
}

.form-container .form-select {
    display: flex;
    padding: 12px 16px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 32px;
    border: 1px solid var(--primary-300, #C7D7FF);
    font-style: normal;
    font-weight: 400;
    color: var(--nautral-default, #727A86);
    margin-top: 8px;
    font-size: var(--fontsize-body-md, 14px);
    background: #f7f9fc;
}

.password-container {
    position: relative; /* Container needs relative positioning */
    width: 100%; /* Adjust width as needed */
}

.password-container input[type="password"] {
    width: 100%;
    padding: 10px;
}

.toggle-password-icon {
    position: absolute;
    right: 10px; /* Position from the right edge */
    top: 50%;
    transform: translateY(-50%); /* Center vertically */
    cursor: pointer; /* Indicates the icon is clickable */
    /* Add other styling for the icon */
}

.select_container {
    position: relative;
}

.select-options {
    display: none;
    width: 100%;
    background-color: white;
    border-radius: 26px;
    padding: 12px 8px 12px 8px;
    position: absolute;
    z-index: 10;
    max-height: 400px;
    overflow-y: auto;
}

.select-options .select-option {
    margin-bottom: 5px;
    padding: 5px;
    cursor: pointer;
    border-radius: 5px;
}

.select-options .select-option:hover {
    background: var(--primary-100, #C7D7FF);
    color: white;
}

.form-container .submit-btn {
    display: flex;
    width: 328px;
    height: 52px;
    padding: 13px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    background: var(--primary-default, #2258DA);
    color: white;

    font-size: var(--fontsize-body-lg, 16px);
    font-weight: 600;
}

#select_unit_section .form-container .submit-btn {
    margin-top: auto !important
}

.form-container .submit-btn:hover {
    background: var(--primary-default, #597fd8);
}

.form-container .submit-btn:disabled {
    background: var(--primary-100, #C7D7FF);
    opacity: 1;
}

.form-container .form-field-error {
    margin-left: 5px;
    height: 20px;
    color: var(--error-default, #DB1127);
    font-size: var(--fontsize-body-sm, 12px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-body-sm, 20px); /* 166.667% */
}

#confirmModal .error {
    color: var(--error-default, #DB1127);
    font-size: var(--fontsize-body-sm, 14px);
    font-style: normal;
    font-weight: 400;
}

.form-container .form-field-has-error {
    border: 1px solid var(--error-default, #DB1127) !important;
}

.form-container .loader {
    width: 25px;
    display: none;
}

.aux-links {
    color: var(--nautral-600, #393D43);
    font-size: var(--fontsize-body-md, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-body-sm, 20px); /* 142.857% */
    letter-spacing: 0.28px;
}

.aux-links a {
    color: #2258DA;
    font-weight: 600;
    text-decoration: none;
}

#login_section .aux-links-container {
    margin-top: 10px;
}

.link-separator {
    width: 186px;
    height: 1px;
}

.vertical-40-space {
    margin-top: 40px;
}

#select_unit_section .units-container {
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#select_unit_section .unit-item {
    border-radius: 35px;
    background: #F7F9FC !important;
    display: flex;
    max-width: 504px;
    width: 100%;
    padding: 16px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    color: #131F3B;
    font-size: var(--fontsize-body-md, 14px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--line-height-body-sm, 20px); /* 142.857% */
}

#select_unit_section .unit-item:hover {
    background: #E1E8F5 !important;
}

#select_unit_section .selected-unit-item {
    background: #E1E8F5 !important;
}

#select_unit_section .white-panel {
    display: flex;
    width: 100%;
    padding: 24px 24px 60px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    flex-shrink: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;

    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    height: 100%;
}

.form-container .main-loader {
    width: 25px;
    display: none;
    margin-left: auto;
    margin-right: auto;
}

#overview_section .greeting-head {
    color: #131F3B;
    font-size: var(--fontsize-heading-h6, 20px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--line-height-heading-h6, 24px); /* 120% */
}

#overview_section .greeting-name {
    color: #131F3B;
    font-size: var(--fontsize-heading-h4, 32px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--line-height-heading-h4, 40px); /* 125% */
}

#overview_section .content-panel {
    margin-top: 20px;
    display: block;
}

.content-panel {
    margin-top: 20px;
    display: flex;
    width: 100%;
}

#overview_section .section-panel {
    border-radius: 32px;
    background: #EDF1F9;    
    width: 100%;
    padding: 12px 8px 20px 8px;
    gap: 32px;
    margin-top: 20px;
}

.section-sub-panel {
    border-radius: 100px;
    background: #F7F9FC;
    
    padding: 8px 20px;
}

#overview_section .title-label {
    font-size: var(--fontsize-body-md, 16px);
    line-height: var(--line-height-body-sm, 20px);
}

#overview_section .sub-panel-text {
    color: #131F3B;
    font-size: var(--fontsize-body-lg, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-lg, 24px); /* 150% */
}

#overview_section .form-select {
    border: none;
    border-radius: 0px;
    background-color: #F7F9FC;
    padding: 0rem 2.25rem .375rem .75rem;
}

#overview_section #mobile_menu_panel {
    display: none;
}

#overview_section  .balance-group {
    margin-top: 45px;
}

#unit_select {
    color: var(--nautral-700, #1D1E22);
    font-size: var(--fontsize-body-lg, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-lg, 24px); /* 150% */
}

.title-label {
    padding-left: 12px;
    color: var(--nautral-500, #565B65);
    font-size: var(--fontsize-body-md, 14px);
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    width: 100%;
}

.title-label .emphasize {
    font-weight: 600;
}

.sub-panel-text {
    color: var(--nautral-700, #1D1E22);
    font-size: var(--fontsize-body-lg, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-lg, 24px); /* 150% */
    flex-shrink: 0;
}

#gate_code_panel .title-label {
    padding-left: 0px;
}

#overview_section .section-group {
    display: flex;
    justify-content: space-between;
}

.content-wrapper {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

#overview_section .autopay-btn {
    border-radius: 35px;
    background: #E1E8F5;
    padding: 16px 4px;
    color: #131F3B;
    width: 48%;
    font-size: var(--fontsize-body-md, 14px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-sm, 20px); /* 142.857% */
}

#overview_section .autopay-btn:hover {
    background: #aec6f1;
}

#overview_section .payment-btn {
    border-radius: 35px;
    background: #2258DA;
    padding: 16px 4px;
    color: #FFF;
    width: 48%;
    font-size: var(--fontsize-body-md, 14px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-sm, 20px); /* 142.857% */
}

#overview_section .payment-btn:hover {
    background: #aec6f1;
}

#overview_section  #payment_history_section {
    margin-top: 25px;
}

#overview_section  #payment_history_section .title-text {
    color: #000;
    font-size: var(--fontsize-body-lg, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-lg, 24px); /* 150% */
}

#overview_section  #payment_history_section .view-all-link {
    text-decoration: none;
    color: #2258DA;
    font-size: var(--fontsize-body-md, 14px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-sm, 20px); /* 142.857% */
}

#overview_section  #payment_history_section .payment-history-item {
    margin-top: 10px;
}

#overview_section #unit_panel {
    padding: 0px;
}

#overview_section .selected-unit-container {
    padding: 8px 8px;
}

#overview_section .autopay-btn img {
    margin-right: 4px;
}

#overview_section .payment-btn svg {
    margin-right: 6px;
}

#payment_history_section .payment-history-item-btn {
    border-radius: 100px;
    background: var(--nautral-50, #F6F9FF);
    display: flex;
    padding: 4px 16px 4px 4px;
    gap: 16px;
    align-self: stretch;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

#payment_history_section .payment-history-item-btn[aria-expanded="true"] {
    background: #E1E8F5;
}

#payment_history_section .circle-icon {
    border-radius: 22px;
    border: 1px solid #DCE3F2;
    display: flex;
    width: 44px;
    height: 44px;
    padding: 13px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#payment_history_section .red-circle-icon {
    border-color: #F6C3C9;
}

#payment_history_section .icon-date-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

#payment_history_section .date-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#payment_history_section .date-card .date {
    color: #131F3B;
    font-size: var(--fontsize-body-md, 14px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-sm, 20px); /* 142.857% */
}

#payment_history_section .date-card .card {
    color: #566484;
    font-size: var(--fontsize-body-md, 14px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--line-height-body-sm, 20px); /* 142.857% */
    background: none;
    border: none;
}

#payment_history_section .price-icon {
    display: flex;
}

#payment_history_section .price-icon .price {
    color: #131F3B;
    font-size: var(--fontsize-body-lg, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-lg, 24px); /* 150% */
}

#payment_history_section .price-icon .icon {
    margin-left: 5px;
}

#payment_history_section .payment-history-item-btn[aria-expanded=true] .bi-chevron-down {
    display: none;
}

#payment_history_section .payment-history-item-btn[aria-expanded=false] .bi-chevron-up {
    display: none;
}

#payment_history_section .error-text {
    color: #DB1127 !important;
}

#payment_history_view #payment_history_section .payment-history-item {
    margin-top: 10px;
}

#payment_history_view .time-selector {
    margin-top: 1.5rem !important;
    justify-content: normal !important;
}

#payment_history_view .time-group {
    display: flex;
    flex-grow: 1;
    justify-content: space-evenly;
}

#payment_history_view #mobile_header {
    display: none;
}

#payment_history_view #desktop_header {
    display: block;
}

.payment-history-item-details {
    border-radius: 28px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    background: var(--nautral-50, #F6F9FF);
    padding-bottom: 24px;
    padding-top: 20px;
    margin-top: -20px;
}

.payment-history-item-details .title-label {
    color: var(--nautral-600, #393D43);
    font-size: var(--fontsize-body-md, 14px) !important;
    font-style: normal;
    font-weight: 500;
}

.payment-history-item-details .sub-panel-text {
    color: var(--nautral-600, #393D43) !important;
}

.payment-history-item-details .long-left-line {
    width: 1px;
    height: 120px;
    background: var(--primary-100, #C7D7FF);
    position: absolute;
    margin-left: 35px;
    margin-top: 15px;
}

.payment-history-item-details .short-left-line {
    width: 1px;
    height: 30px;
    background: var(--primary-100, #C7D7FF);
    position: absolute;
    margin-left: 35px;
    margin-top: 5px;
}

.payment-history-item-details .detail-group {
    display: flex;
    justify-content: space-between;
    padding-left: 50px;
    padding-right: 55px;
    padding-top: 10px;
}

#payment_history_view .greeting-head {
    color: #131F3B;
    font-size: var(--fontsize-heading-h4, 32px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--line-height-heading-h4, 40px); /* 125% */
}

#payment_history_view .section-panel {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 24px;
}

#payment_history_view .time-option {
    font-size: var(--fontsize-body-lg, 16px);
    font-style: normal;
    line-height: var(--line-height-body-lg, 24px); /* 150% */
    margin-right: 12px;
    margin-top: 15px;
    color: var(--nautral-default, #727A86);
    font-weight: 600;   
    height: 25px;
}

#payment_history_view .selected-option {
    color: var(--nautral-700, #1D1E22);
    border-bottom: 1px #1D1E22 solid;
}

#payment_history_view .print-btn {
    display: flex;
    padding: 16px 4px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex: 1 0 0;
    border-radius: 35px;
    background: #2258DA;
    max-width: 120px;
    color: #FFF;
    font-size: var(--fontsize-body-md, 14px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-sm, 20px); /* 142.857% */
}

#payment_history_view .section-group {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#make_payment_view .section-panel {
    border-radius: 32px;
    background: #EDF1F9;    
    width: 100%;
    padding: 0px 15px 0px 0px;
    gap: 10px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#make_payment_view .autopay-icon-panel {
    padding: 4px;
    background: #F7F9FD;
}

#make_payment_view .circle-icon {
    border-radius: 22px;
    border: 1px solid #DCE3F2;
    display: flex;
    width: 44px;
    height: 44px;
    padding: 13px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#make_payment_view .greeting-head {
    color: #131F3B;
    font-size: var(--fontsize-heading-h4, 32px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--line-height-heading-h4, 40px); /* 125% */
}

#make_payment_view .autopay-text {
    color: var(--nautral-600, #393D43);
    font-size: var(--fontsize-body-lg, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-lg, 24px); /* 150% */
}

#make_payment_view .autopay-icon-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

#make_payment_view .button-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ECEFF6;
    border-radius: 24px;
    padding: 2px;
}

#make_payment_view .button-container .button {
    border-radius: 24px;
    display: flex;
    height: 40px;
    padding: 2px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #131F3B;
    font-size: var(--fontsize-body-md, 14px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--line-height-body-sm, 20px); /* 142.857% */
}

#make_payment_view .button-container .button:hover {
    background: #F9F9F9;
}

#make_payment_view .button-container .disabled-active-btn {
    background: #F9F9F9;
}

#make_payment_view .button-container .enabled-active-btn {
    background: var(--primary-300, #5989FF) !important;
    color: var(--nautral-white, #FFF) !important;
}

#make_payment_view .white-panel {
    background: white;    
    padding: 5px 15px 15px 1px;
    display: block;
    width: 100%;
}

#make_payment_view .payment-detail {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

#make_payment_view .payment-detail .description {
    color: var(--nautral-default, #727A86);
    font-size: var(--fontsize-body-md, 14px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--line-height-body-sm, 20px); /* 142.857% */
}

#make_payment_view .payment-detail .detail {
    color: var(--nautral-700, #1D1E22);
    font-size: var(--fontsize-body-md, 14px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-sm, 20px); /* 142.857% */
}

#make_payment_view .colored-panel {
    display: flex;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 32px;
    background: var(--nautral-50, #F6F9FF);
}

#make_payment_view .colored-panel .amount-detail {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

#make_payment_view .colored-panel .amount-detail .description {
    color: var(--nautral-600, #393D43);
    font-size: var(--fontsize-heading-h6, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-heading-h6, 24px); /* 120% */
}

#make_payment_view .colored-panel .amount-detail .sub-description {
    color: var(--primary-default, #2258DA);
    font-size: var(--fontsize-body-md, 14px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--line-height-body-sm, 20px); /* 142.857% */
}

#make_payment_view .disabled-payment-text {
    color: var(--nautral-300, #969BA5) !important;
}

#make_payment_view .disabled-payment-sub-text {
    color: var(--primary-200, #90B1FF) !important;
}

#make_payment_view .icon-circle {
    border-radius: 22px;
    background: #E1E8F5;
    display: flex;
    width: 44px;
    height: 44px;
    padding: 13px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#make_payment_view #pay_balance_next:hover {
    background: #e8edf7;
}

#make_payment_view #pay_balance_custom:hover {
    background: #e8edf7;
}

#make_payment_view #plus_btn:hover {
    background: #c0d3f8;
}

#make_payment_view #minus_btn:hover {
    background: #c0d3f8;
}

#make_payment_view .disabled-icon-circle {
    background: #EDF2FC !important;
}

#make_payment_view .colored-panel .total-detail {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--nautral-600, #393D43);
    font-size: var(--fontsize-body-lg, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-lg, 24px); /* 150% */
}

#make_payment_view .plus-minus-container {
    display: flex;
    gap: 10px;
}

#make_payment_view .right-aligned-icon {
    margin-top: 20px;
    display: flex;
    justify-content: right;
}

#make_payment_view #enable_autopay {
    color: var(--nautral-500, #565B65);
    font-size: var(--fontsize-body-md, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-body-sm, 20px); /* 142.857% */
    letter-spacing: 0.28px;
}

#make_payment_view #form_container {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

#make_payment_view #second_form_container {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

#pay_details_section #pay_form {
    width: 100%;;
}

#pay_details_section .submit-btn {
    margin-right: 0;
}

#autopay_details_section .submit-btn {
    margin-right: 0;
}

#make_payment_view .autopay-heading {
    padding-left: 15px !important;
    padding-right: 15px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    background: #F7F9FD;
    padding: 4px;
}

#make_payment_view .autopay-heading .heading {
    color: #131F3B;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-body-sm, 20px); /* 166.667% */
}

#make_payment_view .autopay-heading .detail {
    color: #131F3B;
    font-size: var(--fontsize-body-md, 14px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-sm, 20px); /* 142.857% */
}

#make_payment_view .autopay-white-panel {
    padding-bottom: 5px;
}

#make_payment_view .form-row {
    width: 100%;
    display: flex;
    gap: 25px;
    margin-bottom: -5px;
}

#make_payment_view .form-row .form-set {
    flex-grow: 1;
}

#make_payment_view #state_select {
    min-width: 170px;
}

#confirmModal .modal-dialog {
    max-width: 400px;
}

#confirmModal .modal-content {
    border-radius: 28px;
}

#confirmModal .modal-body {
    text-align: center;
}

#confirmModal .pay-confirm-btn-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

#confirmModal .pay-cancel-btn {
    border-radius: 999px;
    border: 1px solid #CDD9F3;
    display: flex;
    height: 52px;
    padding: 13px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    color: var(--text-action, #2258DA);
    font-size: var(--fontsize-body-lg, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-lg, 24px); /* 150% */
}

#confirmModal .pay-cancel-btn:hover {
    background: var(--primary-default, #eef3ff);
}

#confirmModal .pay-confirm-btn {
    border-radius: 999px;
    background: var(--primary-default, #2258DA);
    display: flex;
    height: 52px;
    padding: 13px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    color: var(--text-on-action, #FFF);
    font-size: var(--fontsize-body-lg, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-lg, 24px); /* 150% */
}

#confirmModal .pay-confirm-btn:hover {
    background: var(--primary-default, #597fd8);
}

#confirmModal .modal-header {
    border-bottom: none;
}

#confirmModal h1 {
    color: #131F3B;
    font-size: var(--fontsize-heading-h5, 24px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-heading-h5, 28px); /* 116.667% */
}

#confirmModal #confirm_loader {
    width: 30px;
    display: none;
}

#accountSettingsSidebar {
    border-radius: 24px 0 0 24px;
    background: #FFF;
    display: flex;
    width: 360px;
    padding: 24px;
    justify-content: space-between;
}

#accountSettingsSidebar .offcanvas-title {
    color: #131F3B;
    font-size: var(--fontsize-heading-h6, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-heading-h6, 24px); /* 120% */
}

#accountSettingsSidebar .change-password-container {
  display: flex;
  height: 100%;
  align-items: flex-end;
  width: 100%;
}

#accountSettingsSidebar .change-pw-btn {
    border-radius: 999px;
    border: 1px solid #CDD9F3;
    display: flex;
    width: 100%;;
    height: 52px;
    padding: 13px;
    justify-content: center;
    align-items: center;
    color: var(--text-action, #2258DA);
    font-size: var(--fontsize-body-lg, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-lg, 24px); /* 150% */
}

#accountSettingsSidebar #change_pw_form {
    width: 100%;
}

#accountSettingsSidebar .as-form-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#accountSettingsSidebar .as-form-container .text-label {
    color: var(--nautral-700, #1D1E22);
    font-size: var(--fontsize-body-sm, 12px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-sm, 20px); /* 166.667% */
}

#accountSettingsSidebar .as-form-container .text-info {
    display: flex;
    padding: 12px 16px;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 32px;
    border: 1px solid rgba(199, 215, 255, 0.60);
    color: var(--nautral-700, #1D1E22) !important;
    font-size: var(--fontsize-body-md, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-body-sm, 20px); /* 142.857% */
    letter-spacing: 0.28px;
}


#accountSettingsSidebar #change_password_container {
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

#accountSettingsSidebar .hidden {
    display: none !important;
}

#accountSettingsSidebar .toggle-password-icon {
    top: 60%;
}

#accountSettingsSidebar .submit-cancel-btns {
    width: 100%;
}

#accountSettingsSidebar #submit_change_pw_btn {
    border-radius: 999px;
    background: var(--primary-default, #2258DA);
    display: flex;
    height: 52px;
    padding: 13px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;

    color: var(--text-on-action, #FFF);
    font-size: var(--fontsize-body-lg, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-lg, 24px); /* 150% */
}

#accountSettingsSidebar #submit_change_pw_btn:hover {
    background: #4c76d8;
}

#accountSettingsSidebar #cancel_change_pw_btn {
    border-radius: 999px;
    border: 1px solid #CDD9F3;
    display: flex;
    height: 52px;
    padding: 13px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    margin-top: 10px;

    color: var(--text-action, #2258DA);
    font-size: var(--fontsize-body-lg, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-lg, 24px); /* 150% */
}

#accountSettingsSidebar #cancel_change_pw_btn:hover {
    background: #dddddd;
}

#accountSettingsSidebar .form-container .form-set {
    width: 100%;
}

#find_tenant_form {
    width: 100%;
}

#account_settings_view {
    height: 100%;
}

#account_settings_view .content-panel {
    margin-top: 20px;
    display: flex;
    width: 100%;
    align-items: center;
}

#account_settings_view .greeting-head {
    color: #131F3B;
    font-size: var(--fontsize-heading-h4, 32px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--line-height-heading-h4, 40px); /* 125% */
}

#account_settings_view #logout_link {
    color: var(--error-default, #DB1127);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-sm, 20px); /* 142.857% */
    margin-left: auto;
    margin-top: 5px;
}

#account_settings_view #change_password_container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#account_settings_view .hidden {
    display: none !important;
}

#account_settings_view .form-container .form-set {
    width: 100%;
    margin-bottom: 20px;
}

#account_settings_view .change-password-container {
    width: 100%;
    margin-top: auto;
}

#account_settings_view .change-pw-btn {
    border-radius: 999px;
    border: 1px solid #CDD9F3;
    display: flex;
    width: 100%;;
    height: 52px;
    padding: 13px;
    justify-content: center;
    align-items: center;
    color: var(--text-action, #2258DA);
    font-size: var(--fontsize-body-lg, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-lg, 24px); /* 150% */
}

#account_settings_view .as-form-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 35px;
}

#account_settings_view .content-wrapper {
    display: flex;
    max-width: 504px;
    padding: 24px 24px 60px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    flex-shrink: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;

    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    height: 100%;
}

#account_settings_view #change_pw_form {
    width: 100%;
}

#account_settings_view #submit_change_pw_btn {
    border-radius: 999px;
    background: var(--primary-default, #2258DA);
    display: flex;
    height: 52px;
    padding: 13px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;

    color: var(--text-on-action, #FFF);
    font-size: var(--fontsize-body-lg, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-body-lg, 24px); /* 150% */
}

#account_settings_view #submit_change_pw_btn:hover {
    background: #4c76d8;
}

#back_link {
    display: none;
}

#change_password_container .pw-form-field {
    background: #ffffff;

}

.change-password-success {
    color: green;
    display: none;
    font-size: 20px;
}

.action-updated {
    font-size: 1.3rem;
    color: green;
    font-weight: 600;
    border: 1px solid green;
    border-radius: 5px;
    padding: 10px;
}