﻿
/*
    INICIO -> LOADING "MODAL" SPINNER
*/

.form-control {
    Font-weight: 300 !important; /*VALUE INPUT ESCURO*/
}

.modal-loading {
    display: none;
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(55, 55, 55, 0.50);
}

.loading {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3500;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #03c4f1;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*
    FIM -> LOADING "MODAL" SPINNER
*/

.card-documento {
    box-shadow: 0px 1px 5px gray;
    border-radius:10px;
}

.card-documento-erro {
    box-shadow: 0px 1px 5px red;
    border-radius:10px;
}

.card-documento-sucesso {
    box-shadow: 0px 1px 5px green;
    border-radius: 10px;
}

.icon-success {
    float: right;
    font-size: 35px;
    margin-top: -15px;
    color: green;
}

.icon-error {
    float: right;
    font-size: 35px;
    margin-top: -15px;
    color: red;
}


/*Limitar tamanho do texto*/
.limited-text {
    white-space: nowrap;
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
}

/* Tamanho dos anexos */

/* Tamanho dos anexos */
.anexo {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.file-icon {
    height: 200px;
    font-size: 140px;
    color: #03c4f1;
}

.modal-lg-plus {
    padding-left: 10px;
}