/*@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
*/
@font-face {
    font-family: 'Quicksand';
    src: url('/lib/Quicksand/static/Quicksand-Light.ttf') format('woff2'), url('/lib/Quicksand/static/Quicksand-Light.ttf') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Quicksand';
    src: url('/lib/Quicksand/static/Quicksand-Regular.ttf') format('woff2'), url('/lib/Quicksand/static/Quicksand-Regular.ttf') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Quicksand';
    src: url('/lib/Quicksand/static/Quicksand-Medium.ttf') format('woff2'), url('/lib/Quicksand/static/Quicksand-Medium.ttf') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Quicksand';
    src: url('/lib/Quicksand/static/Quicksand-SemiBold.ttf') format('woff2'), url('/lib/Quicksand/static/Quicksand-SemiBold.ttf') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Quicksand';
    src: url('/lib/Quicksand/static/Quicksand-Bold.ttf') format('woff2'), url('/lib/Quicksand/static/Quicksand-Bold.ttf') format('woff');
    font-weight: 700;
    font-style: normal;
}

:root {
    /* font family y tipos */
    --fnt-poppins: "Poppins", sans-serif;
    --fnt-quicksand: "Quicksand", sans-serif;

    --fnt-light: 300;
    --fnt-regular: 400;
    --fnt-medium: 500;
    --fnt-semiBold: 600;
    --fnt-bold: 700;
    

    --verde2-100: #ffffff;
    --verde2-200: #cedeb8;
    --verde2-300: #aec98d;
    --verde2-500: #688a44;
    --verde2-700: #455c2f;
    
    --color-red: #C0392B;
}

body {
    font-family: var(--fnt-quicksand) !important;
}

input::placeholder {
    font-family: var(--fnt-quicksand) !important;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}

input {
    outline: none;
    border: none;
    background-color: transparent;
}

.btn-enabled {
    background-color: var(--color-third) !important; 
    color: var(--color-sixth) !important;
}

.btn-disabled {
    background-color: #CACACA !important;
    color: #ffffff !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

#progress-container {
    width: 100%;
    background-color: #f3f3f3;
    border: 1px solid #ccc;
    margin-top: 20px;
}

#progress-bar {
    width: 0%;
    height: 30px;
    background-color: #4caf50;
    text-align: center;
    line-height: 30px;
    color: white;
}

#progress-container-consolidado {
    width: 100%;
    background-color: #f3f3f3;
    border: 1px solid #ccc;
    margin-top: 20px;
}

#progress-bar-consolidado {
    width: 0%;
    height: 30px;
    background-color: #4caf50;
    text-align: center;
    line-height: 30px;
    color: white;
}
.loading {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1000;
    font-size: 1.5rem;
    font-weight: bold;
}

    .loading::after {
        content: '';
        border: 8px solid rgba(0, 0, 0, 0.1);
        border-left-color: #000;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        margin-top: 12px;
        animation: spin 1s linear infinite;
    }
.no-click {
    pointer-events: none;
    opacity:0.5;
    cursor:not-allowed
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}