.tab .line {
    transition: .5s;
}

.client-nav.active .line {
    width: 100% !important;
    background-color: rgb(151, 151, 151) !important;
}

button.tab {
    color: white !important;
}

.tab.active {
    color: #006168;
}



.status-wrapper.rejected {
    min-width: 100px;
    background-color: #f3c4c4;
    border-radius: 20px;
    height: 25px;
}

.status-wrapper.rejected .circle {
    background-color: red;
    margin-right: 4px;
}

.status-wrapper.unpaid {
    min-width: 100px;
    background-color: #e8f3c4;
    border-radius: 20px;
    height: 25px;
}

.status-wrapper.unpaid .circle {
    background-color: rgb(99, 139, 21);
    margin-right: 4px;
}

.status-wrapper.paid {
    min-width: 100px;
    background-color: #a6ecdd;
    border-radius: 20px;
    height: 25px;
}

.status-wrapper.paid .circle {
    background-color: #0c6751;
    margin-right: 4px;
}



.app-form .label {
    transition: .5s;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    /* z-index: -1; */
}

.app-form input {
    background-color: transparent !important;
    z-index: 100 !important;
    font-size: 13px;
}

.app-form .label.active {
    top: -2px;
    background-color: white;
    padding: 0 5px;
    color: rgb(31, 30, 30);
    font-size: 11px !important;
}

.submitting {
    display: none;
}

.submitting-loader {
    width: 20px;
    height: 20px;
    border: 3px white solid;
    border-right: 3px transparent solid;
    border-radius: 50%;
    margin-left: 10px;
    animation: sub 1s linear infinite;
}

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

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