/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 29-Jul-2024, 6:57:34 pm
    Author     : SANTHOSH
*/


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

a{
    text-decoration: none !important;
}
/*
*Fixed Footer
***********/

.fixed-footer {
    position: fixed;
    padding-top: 6px;
    bottom: 0px;
    background-color: #FFFFFF;
    min-height: 60px;
    left: 0;
    width: 100%;
    color: #FFFFFF;
    text-align: center;
    border-top: 2px solid #696cff;
}

.fixed-footer a{
    color: #000 !important;
}
.fixed-footer-active {
    color: #696cff !important;
}
.fixed-footer-active a{
    color: #696cff !important;
}
.floating-home-btn {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: #696cff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    font-size: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 20;
    border: none;
}
.floating-home-btn a{
    color: #FFFFFF !important;
}
.table-limit{
    max-height: 800px;
    scrollbar-width: thin;
}

#loader-line {
    width: 100%;
    height: 3px;
    position: relative;
    overflow: hidden;
    background-color: #ddd;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

#loader-line:before {
    content: "";
    position: absolute;
    left: -50%;
    height: 3px;
    width: 40%;
    background-color: coral;
    -webkit-animation: lineAnim 1s linear infinite;
    -moz-animation: lineAnim 1s linear infinite;
    animation: lineAnim 1s linear infinite;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

@keyframes lineAnim {
    0% {
        left: -40%;
    }
    50% {
        left: 20%;
        width: 80%;
    }
    100% {
        left: 100%;
        width: 100%;
    }
}