/*@font-face {
    font-family: Poppins;
    src: url(../fonts/Poppins-Regular.ttf);
}*/

/* padronizar */
/** {
    font-family: Poppins;
}*/

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
    position: relative;
    min-height: 100%;
}

/*.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}*/

.row {
    /*padding-left: 0;*/
    /*padding-right: 0;*/

    /*margin-left: 0;
    margin-right: 0;*/
}

.form-control, .form-select {
    /*   box-shadow: none;*/
    /*border:none;*/
    /*outline: none;*/
    /*background-color: #f6f7f8;*/
    border: 1px solid #ddd;
    /*box-shadow: 0 0 1px;*/
    box-shadow: 0 0 1px #ddd;
    outline: none;
    border-radius: 7px;
    padding: 0.7rem;
    height: 40px;
    font: inherit;
}

    .form-select{
        padding: 0 1rem;
    }

    .form-control:focus, .form-control:active, .form-select:focus, .form-select:active {
        /*background-color: #f6f7f8;*/
        /*border: 1px solid #ddd;*/
        /*border: 1px solid #03c0f3;*/
        box-shadow: 0 0 2px blue;
    }

.btn {
    height: 40px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8vh;
    text-transform: inherit;

    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

@media (min-width: 768px) {
    .btn {
        font-size: 2vh;
    }
}
@media (min-width: 1200px) {
    .btn {
        font-size: 2.2vh;
    }
}

.btn-shadow {
    box-shadow: 0 5px 10px 2px #d0d0d0;
}

.btn-primary, .bg-primary {
    background-color: #0082f2;
}

.btn-close{
    background-color: #f6f7f8;
    padding:1rem;
}

.text-primary, .bg-primary {
    color: #0082f2;
}


.modal-footer{
    background-color: #f6f7f8;
}

.badge{
    padding: 0.5rem 1rem
}


li{
    margin:0;
}

ul{
    row-gap:0
}


tr:hover {
    cursor: pointer;
    background-color: #f6f7f8;
}

/*estilo do input file*/
.file-upload-wrapper {
    position: relative;
    /* border: 1px solid #ced4da; */
    border-radius: 0.25rem;
    padding: 1rem;
    background-color: #f0f9ff;
    max-height:120px;
}

.file-upload-input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    cursor: pointer;
    margin-bottom: 0;
    padding:1rem;
    
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-upload-text {
    color: #495057;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 1rem;
}

/* .file-upload-btn {
        background-color: #3b71ca;
        color: white;
        padding: 10px 20px;
        border-radius: 4px;
    } */

.file-upload-text {
    color: #757575;
}