@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
/* cusome css */
body {
    font-family: "Open Sans", sans-serif;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.form-control.is-invalid,
.form-control:invalid {
    background-image: none;
}

.form-control:focus {
    box-shadow: none;
    border-color: rgba(27, 117, 188, 1);
}

.table-right-step3 {
    text-align: right;
    margin-right: 1em;
}

.bg-default {
    background: #ffffff !important;
}

.header-wrapper {
    box-shadow: 0px 4px 10.8px 0px rgba(0, 0, 0, 0.25);
    background-color: #fff;
    padding: 16px 0;
    position: sticky;
    top: 0;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 10;
}

.logo-link {
    display: flex;
    max-width: 150px;
}

.main-content-mid {
    height: calc(100vh - 160px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 0;
    overflow-y: auto;
}

.page-content-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 665px;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.main-title {
    font-size: 36px;
    line-height: 48px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 35px;
    text-align: center;
    margin-top: 30px;
}

.content-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 36px;
    justify-content: center;
    width: 100%;
}

.client-button {
    border: 2px solid rgba(220, 219, 221, 1);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    color: rgba(220, 219, 221, 1);
    column-gap: 8px;
}

.client-redirect-btn {
    width: calc(100% - 34px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 20px;
}

.client-icon {
    width: 45px;
    height: 45px;
}

.client-icon svg {
    transition: all 0.3s ease-in-out;
    width: 100%;
    height: 100%;
}

.redirect-details {
    display: flex;
    flex-direction: column;
    row-gap: 3px;
}

.client-type,
.client-subtext {
    font-size: 20px;
    line-height: 26px;
}

.client-type {
    color: rgba(32, 32, 32, 1);
    margin: 0px;
    font-weight: 600;
}

.client-subtext {
    color: rgba(137, 137, 137, 1);
    margin: 0px;
}

.redirect-arrow {
    opacity: 0;
    visibility: hidden;
    width: 25px;
    height: 25px;
    transition: all 0.3s ease-in-out;
    color: rgba(27, 117, 188, 1);
    display: flex;
    align-items: center;
}

.redirect-arrow svg {
    width: 100%;
    height: 100%;
}

.client-button:hover {
    border-color: rgba(27, 117, 188, 1);
    background-color: rgba(248, 252, 255, 1);
}

.client-button:hover .client-icon svg {
    color: rgba(27, 117, 188, 1);
}

.client-button:hover .redirect-arrow {
    opacity: 1;
    visibility: visible;
}

.main-content-mid.stepper-form-wrapper {
    justify-content: flex-start;
}

.page-stepper-wrapper {
    width: 100%;
}

.cmn-stepper-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.cmn-stepper-wrapper .step-circle {
    width: 46px;
    height: 46px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(220, 219, 221, 1);
    transition: background-color 0.3s;
    border-radius: 50%;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    color: rgba(133, 141, 171, 1);
}

.cmn-stepper-wrapper .step-circle.active {
    background-color: rgba(27, 117, 188, 1);
    color: #fff;
    border-color: rgba(27, 117, 188, 1);
}

.cmn-stepper-wrapper .step-line {
    width: 115px;
    height: 2px;
    background-color: rgba(220, 219, 221, 1);
    margin: 0 14px;
    transition: background-color 0.3s;
}

.cmn-stepper-wrapper .active + .step-line {
    background-color: rgba(27, 117, 188, 1);
}

.cmn-form-wrapper {
    width: 100%;
}

.stepper-one-wrap,
.stepper-two-wrap {
    max-width: 665px;
    margin: 0 auto;
}

.stepper-three-wrap {
}

.cmn-form-fields {
    width: 100%;
}

.form-group {
    margin-bottom: 40px;
    position: relative;
}

.form-group .invalid-feedback {
    position: absolute;
    margin-top: 0;
}

.cmn-label {
    font-size: 18px;
    line-height: 1.2;
    color: rgba(0, 0, 0, 1);
    font-weight: 600;
    margin-bottom: 12px;
}

.form-control.cmn-input {
    border: 1px solid rgba(220, 219, 221, 1);
    border-radius: 15px;
    padding: 10px 18px;
    min-height: 52px;
    color: rgba(0, 0, 0, 1);
}

.form-control.cmn-input::placeholder {
    color: rgba(137, 137, 137, 1);
}

.form-control.cmn-input:focus {
    box-shadow: none;
}

.cmn-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cmn-btn-form {
    border-radius: 15px;
    min-height: 52px;
    min-width: 150px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    background: #ffffff;
}

.cmn-btn-form:focus-visible {
    outline: none;
}

.border-btn {
    border: 1px solid rgba(27, 117, 188, 1);
    color: rgba(27, 117, 188, 1);
}

.fill-btn {
    background-color: rgba(27, 117, 188, 1);
    border: 1px solid rgba(27, 117, 188, 1);
    color: #fff;
}

.border-btn:hover {
    background-color: rgba(27, 117, 188, 1);
    color: #fff;
}

.fill-btn:hover {
    background-color: transparent;
    color: rgba(27, 117, 188, 1);
}

/* footer */
.footer-wrapper {
    position: sticky;
    bottom: 0px;
    background: #1b75bc;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    font-size: 16px;
    line-height: 26px;
    padding: 10px;
}

.footer-link {
    text-decoration: none;
    color: #fff;
    margin: 0 5px;
}
.main-date-input {
    position: relative;
}
.main-icon-date {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
}
.main-heading-card-header h4 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0px;
}
.main-heading-card-header {
    background: #f9f9f9;
    border: 1.5px solid #dcdbdd;
    border-radius: 15px !important;
    min-height: 60px;
    display: flex;
    align-items: center;
}
.main-card {
    border: 1.5px solid #dcdbdd;
    border-radius: 15px;
}
.main-table-wrapper th {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: #000000;
    border-bottom: none;
}
.main-table-wrapper td {
    border-bottom: none;
}
.first-input-table-fechured {
    background: #f9f9f9;
}
.first-input-table-fechured:focus {
    background: #f9f9f9;
}
.cmn-input-table {
    width: 221px;
}
.second-input-table {
    width: 134px;
}
.first-input-table {
    width: calc(100% - 355px);
}
.cmn-end-after-table {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fcff;
    border: 1.5px solid #1b75bc;
    border-radius: 15px;
    padding: 0px 20px;
    min-height: 52px;
}
.input-last-total {
    background: transparent;
    border: none;
    max-width: 90px;
    text-align: right;
    padding-right: 0px;
}
.margin-end-after-table {
    margin-top: 44px;
    margin-bottom: 60px;
}
.main-card:not(:last-child) {
    margin-bottom: 30px;
}
.cmn-input-back {
    background: #f9f9f9;
}
.cmn-input-back:focus {
    background: #f9f9f9;
}
.fechured-btn-submit {
    justify-content: flex-start;
}
.text-submit {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0px;
    padding-bottom: 20px;
}
.main-select-wrapper .select2 {
    background: #f9f9f9;
    border: 1px solid rgba(220, 219, 221, 1);
    min-height: 52px;
    border-radius: 15px;
    padding: 10px 18px;
    color: rgba(0, 0, 0, 1);
}
.main-select-wrapper .select2-selection {
    background: transparent;
    border: none;
}
.main-select-wrapper .select2-selection__arrow {
    top: 50% !important;
    right: 18px !important;
    transform: translateY(-50%);
}
.main-select-wrapper .select2-selection__rendered {
    padding-left: 0px !important;
}
.select2-dropdown {
    border: 1px solid rgba(220, 219, 221, 1);
    border-radius: 15px;
    padding: 10px 18px;
    margin-top: 15px;
    border-top: 1px solid rgba(220, 219, 221, 1) !important;
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
}
.select2-dropdown .select2-results__option--highlighted[aria-selected] {
    background: #fafafa;
    color: #898989;
}
.select2-dropdown .select2-results__option[aria-selected="true"] {
    background-color: #ffffff;
    color: #000000;
}
.select2-dropdown .select2-results__option {
    color: #898989;
}
.textarea-resize {
    resize: none;
}
.main-sign-end {
    background: transparent;
    border: none;
}
.cmn-amount-right {
    text-align: right;
}
.cmn-main-total-sign {
    column-gap: 5px;
}

.error {
    color: #ff2c2c;
}

.auth-center-content{
    min-height: calc(100vh - 160px);
    padding: 20px 0;
}

@media (max-width: 1399px) {
    .header-wrapper {
        min-height: 110px;
    }

    .main-content-mid {
        height: calc(100vh - 160px);
    }

    .main-title {
        font-size: 32px;
        line-height: 44px;
        margin-bottom: 30px;
    }

    .content-wrap {
        row-gap: 28px;
    }

    .page-content-wrapper {
        max-width: 600px;
    }

    .client-button {
        padding: 25px;
    }

    .client-redirect-btn {
        column-gap: 15px;
    }

    .client-type,
    .client-subtext {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width: 1199px) {
    .logo-link {
        max-width: 140px;
    }

    .main-content-mid {
        height: calc(100vh - 150px);
    }

    .header-wrapper {
        padding: 12px 0;
        min-height: 100px;
    }

    .main-title {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 25px;
    }

    .content-wrap {
        row-gap: 24px;
    }

    .client-button {
        padding: 22px;
    }

    .client-redirect-btn {
        column-gap: 10px;
        width: calc(100% - 28px);
    }

    .client-icon {
        width: 40px;
        height: 40px;
    }

    .redirect-arrow {
        width: 20px;
        height: 20px;
    }
    .cmn-input-table {
        width: 185px;
    }
    .second-input-table {
        width: 110px;
    }
    .first-input-table {
        width: calc(100% - 295px);
    }

    .auth-center-content {
        min-height: calc(100vh - 150px);
    }
}

@media (max-width: 991px) {
    .header-wrapper {
        min-height: 90px;
    }

    .logo-link {
        max-width: 125px;
    }

    .main-content-mid {
        height: calc(100vh - 140px);
    }

    .page-content-wrapper {
        max-width: 500px;
    }
    .cmn-input-table {
        width: 140px;
    }
    .second-input-table {
        width: 65px;
    }
    .first-input-table {
        width: calc(100% - 205px);
    }

    .auth-center-content {
        min-height: calc(100vh - 140px);
    }
}
@media (max-width: 767px) {
    .main-table-wrapper th {
        min-width: 170px;
    }
}
@media (max-width: 575px) {
    .header-wrapper {
        min-height: 85px;
    }

    .main-content-mid {
        padding: 30px 0;
        height: calc(100vh - 130px);
    }

    .page-content-wrapper {
        max-width: 100%;
    }

    .main-title {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    .content-wrap {
        row-gap: 18px;
    }

    .client-button {
        padding: 15px;
    }

    .logo-link {
        max-width: 110px;
    }

    .client-redirect-btn {
        column-gap: 12px;
    }

    .client-icon {
        width: 35px;
        height: 35px;
    }

    .client-type,
    .client-subtext {
        font-size: 16px;
        line-height: 22px;
    }

    .footer-wrapper {
        font-size: 14px;
        line-height: 24px;
        min-height: 45px;
    }
    .main-heading-card-header h4 {
        font-size: 18px;
        line-height: 28px;
    }

    .auth-center-content {
        min-height: calc(100vh - 130px);
    }
}

@media (max-width: 479px) {
    .header-wrapper {
        min-height: 80px;
        padding: 8px 0;
    }

    .logo-link {
        max-width: 100px;
    }

    .main-content-mid {
        height: calc(100vh - 120px);
        padding: 20px 0;
    }

    .footer-wrapper {
        font-size: 13px;
        line-height: 22px;
        min-height: 40px;
        padding: 8px;
    }

    .client-button {
        padding: 16px;
    }

    .client-redirect-btn {
        column-gap: 6px;
        width: calc(100% - 24px);
    }

    .client-icon {
        width: 30px;
        height: 30px;
    }

    .redirect-arrow {
        width: 16px;
        height: 16px;
    }

    .client-type,
    .client-subtext {
        font-size: 14px;
        line-height: 20px;
    }
    .cmn-stepper-wrapper .step-line {
        width: 45px;
    }
    .main-table-wrapper th {
        font-size: 16px;
        line-height: 26px;
    }
    .text-total-after-table {
        font-size: 15px;
        line-height: 20px;
    }
    .cmn-label {
        font-size: 16px;
    }
    .form-control.cmn-input {
        min-height: 42px;
    }
    .cmn-btn-form {
        min-height: 40px;
        min-width: 130px;
    }
    .cmn-btn-wrapper {
        gap: 15px;
    }
    .form-group {
        margin-bottom: 30px;
    }
    .main-select-wrapper .select2 {
        min-height: 42px;
    }
    .cmn-stepper-wrapper .step-circle {
        width: 40px;
        height: 40px;
    }

    .auth-center-content {
        min-height: calc(100vh - 120px);
    }
}

@media (max-width: 400px) {
    .main-content-mid {
        height: calc(100vh - 116px);
    }

    .footer-wrapper {
        min-height: 36px;
        padding: 6px 3px;
        font-size: 11px;
    }

    .footer-link {
        margin: 0 2px;
    }

    .auth-center-content {
        min-height: calc(100vh - 116px);
    }
}

@media (min-width: 320px) and (max-width:932px) and (orientation: landscape) {
    .auth-center-content{
        min-height: auto;
        padding: 30px 0;
    }

    .footer-wrapper{
        position: relative;
    }
}
