.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    background: rgba(255, 255, 255, 1);
}

.dashboard-loader {
    display: none !important;
}

.loader {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.loader:after {
    background: url(../../assets/img/fintoo_loader_Green.gif) center center no-repeat;
    background-size: cover;
    height: 75px;
    content: '';
    display: block;
    width: 100%;
    margin-top: 10px;
}

.dashboard-loader.active {
    display: flex !important;
}


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

    100% {
        transform: rotate(360deg);
    }
}

.incom-and-tax-calculator-body {
    padding: 0 6rem;
    background-color: rgba(0, 0, 0, 0.096)
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

input[type=text]::-webkit-inner-spin-button,
input[type=text]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

input[type=text] {
    text-align: right;
}

input[type=number] {
    text-align: right;
}

input[type=checkbox] {
    transform: scale(0.8)
}

input {
    height: fit-content !important;
}

.inputs-container-element {
    border-left: 1px solid rgba(128, 128, 128, 0.316);
    border-right: 1px solid rgba(128, 128, 128, 0.316);
}

.grid-inputs-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-gap: 2rem;
    /* margin-bottom: 0.5rem; */
    border-bottom: 1px solid rgba(128, 128, 128, 0.316);
    padding: 1rem 0.5rem;
}

.label-span {
    height: 100%;
    display: flex;
    align-items: center;
}

button {
    border: none;
}

.linkText {
    cursor: pointer;
    color: blue;
}

.form-control,
.form-select:focus {
    box-shadow: none !important;
}

.form-control {
    margin: 0.8rem 0;
}

.form-container {
    background-color: #fff;
    border-radius: 15px;
    margin: 5rem 0;
}

.form-content-container {
    padding: 0 3.5rem;
}

.form-check-input {
    width: 20px !important;
    height: 20px !important;
}

.form-check {
    width: fit-content !important;
}

.label-fw-class {
    font-weight: 600;
}

.element-container {
    margin-bottom: 2rem;
}

.details-container {
    padding: 2rem 2.5rem;
    margin-top: 2rem;
}

.whole {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.623);
    z-index: 10;
}

.padding-div {
    padding: 0 2.3rem;
}

.form-heading {
    display: flex;
    justify-content: start;
    height: 60px;
    width: 100%;
    border-bottom: 1.5px solid rgb(175, 175, 175);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.heading {
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-top-left-radius: 15px;
    background-color: #042b62;
    font-size: 1.3rem;
    padding: 0 5px;
}

.show-hide-details-input-container {
    position: relative;
}

.input-label-class {
    text-align: left;
    /* font-weight: normal; */
}

.show-hide-details-btn {
    display: block;
    float: right;
    border-radius: 4px;
    padding: 1px 4px;
    color: #fff;
    font-weight: normal;
    background: #042b62;
    cursor: pointer;
    font-size: 11px;
    margin-top: 0.5rem;
}

.tooltip-icon {
    display: inline-block;
    position: relative;
    margin-left: 7px;
    z-index: 23;
}

.tooltip-icon-container {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: white;
    background: #042b62;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
}

.tooltip-content {
    display: none;
    z-index: 22;
    position: absolute;
    width: 300px;
    top: 0;
    left: 0;
    border: 1px solid #ececec;
    padding: 15px;
    margin-top: 2rem;
    border-radius: 6px;
    color: #333;
    background: #fff;
    font-size: 13px;
    text-align: left;
}

.tooltip-icon:hover .tooltip-content {
    display: block;
}

.two-inputs-row.col-sm {
    padding: 0;
}

.deleteRowOption {
    cursor: pointer;
}

.add-row-option {
    cursor: pointer;
    background-color: #042b62;
}

.thead-row {
    background-color: #042b62;
    color: white;
}

.action-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.calculate-badge {
    cursor: pointer;
    background-color: #042b62;
    color: #ffffff;
    border-radius: 50rem;
    padding: 0.2rem 1rem;
    display: flex;
    width: fit-content;
    justify-content: center;
    align-items: center;
}

.reset-badge {
    cursor: pointer;
    background-color: #ffffff;
    border: 1px solid #042b62;
    color: #042b62;
    border-radius: 50rem;
    padding: 0.2rem 1rem;
    display: flex;
    width: fit-content;
    justify-content: center;
    align-items: center;
}

.note-container {
    background-color: antiquewhite;
    width: 93%;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 15px;
}

.note-container-note {
    background-color: #fdf4f4;
}

.note-container-advisory {
    background-color: #f4fbfd;
}

.inputs-heading {
    background-color: #042b62;
    color: white;
    font-weight: bold;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
}

.link80D {
    visibility: hidden;
    width: 465px;
    background-color: #cacfd5;
    color: black;
    padding: 11px 13px;
    border-radius: 6px;
    font-weight: 400;
    font-size: 0.9rem;
    position: absolute;
    top: -36px;
    left: 44px;
    z-index: 24;
    margin-left: -400px;
}

.link80DArrow {
    content: "";
    position: absolute;
    top: 100%;
    left: 57%;
    margin-left: -10px;
    border-width: 7px;
    border-style: solid;
    border-color: #cacfd5 transparent transparent transparent;
    /* transform: rotate(0deg); */
}

/* ---------------------------------------------------------media query----------------------------------------------- */
@media only screen and (max-width: 850px) {
    .grid-inputs-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 0;
    }

    .form-content-container {
        padding: 0 2rem;
    }

    .incom-and-tax-calculator-body {
        padding: 0 2rem;

    }

    .heading {
        width: 70%;

    }
}

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

    .link80D {
        visibility: hidden;
        width: 90%;
        background-color: #cacfd5;
        color: black;
        padding: 11px 13px;
        border-radius: 6px;
        font-weight: 400;
        font-size: 0.9rem;
        position: absolute;
        top: -36px;
        left: 20px !important;
        z-index: 24;
        margin-left: 0;
    }

    .link80DArrow {
        left: 73%;
    }

    /* Create an active/current tablink class */
    .tab_button.active {
        background-color: #042b62;
        color: #ffffff;
    }

    /* Create an active/current tablink class */
    .tab_button.active:nth-of-type(2) {
        background-color: #042b62;
        color: #ffffff;
        border-top-right-radius: 15px;
    }

    /* Create an active/current tablink class */
    .tab_button {
        display: flex;
        justify-content: center;
        align-items: center;
        color: #000000e9;
        font-size: 1rem;
        padding: 0 15px;
        cursor: pointer;
    }

    .tab_button:nth-of-type(1) {
        border-top-left-radius: 15px;
    }

    .form-content-container {
        padding: 0 0.5rem;
    }

    .incom-and-tax-calculator-body {
        padding: 0 0.5rem;

    }

    .heading {
        width: 95%;

    }

    .input-label-class {

        margin-bottom: 0.5rem;
    }

    .details-container {
        padding: 1rem 0.5rem;
        margin-top: 1rem;
    }

    .padding-div {
        padding: 0 1rem;
    }

    .heading {
        font-size: 1.1rem;
    }

    .tooltip-content_1 {
        margin-left: -200px;
    }
}

.required-msg {
    display: none;
    position: absolute;
    color: red;
    font-size: 0.8rem;
}

/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of buttons on hover */
.tab_button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab_button.active {
    background-color: #042b62;
    color: #ffffff;
}

/* Create an active/current tablink class */
.tab_button {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000e9;
    font-size: 1rem;
    padding: 0 15px;
    cursor: pointer;
}

.tab_button:nth-of-type(1) {
    border-top-left-radius: 15px;
}

/* Style the tab content */
.tabcontent {
    display: none;
}

.tabcontent:nth-of-type(1) {
    display: block;
}

label {
    /* text-transform: capitalize; */
    display: flex;
    align-items: center;
}

.in-input-container {
    position: relative;
}

.in-input-icon {
    position: absolute;
    top: 15%;
    left: 101%;
}