#ignore-drop{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    cursor: no-drop;
}

#envio-exames-wrapper{
    margin: 0 1rem 3rem 1rem;
    padding: 0 5rem 2rem 5rem;
    border: dashed .2rem rgba(0,0,0,.0000001);
    text-align: center;
    transition: .5s;
    background: rgba(255,255,255,.0000001);
    position: relative;
}

#selecionar-arquivos{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    cursor: pointer;
}

.active #selecionar-arquivos{
    position: fixed;
}

#area-envio-exames.active #envio-exames-wrapper{
    height: 100%;
    display: flex;
    flex-direction: column;
}

#envio-exames-wrapper:hover,
#area-envio-exames.active #envio-exames-wrapper{
    background: rgba(230,237,245,.75);
    border: dashed .2rem rgba(0,0,0,.075);
}

#envio-exames-wrapper i.ico-cloud-upload{
    font: bold 12rem Verdana;
    background-color: rgba(0,0,0,.15);
    color: transparent;
    text-shadow: 2px 2px 3px rgba(255,255,255,0.5);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
}


.exame-link-envio{
    text-decoration: none;
    cursor: default;
}


.exame.enviar{
    background: rgba(50, 90, 110, 0.05);
    overflow: hidden;
    position: relative;
}

.exame.enviar:not([data-porcentagem='100%']){
    border: solid .1rem #d2dde2;
}


.exame.enviar .rotulo-tipo-exame::after{
    background: #9eaeca;
    content: "\e900";
}

[data-status=cancelado] .exame.enviar .rotulo-tipo-exame::after{
    background: #aaa;
    content: "\e993";
    font-size: 1.3rem;
}

[data-status=erro] .exame.enviar .rotulo-tipo-exame::after{
    background: #e77;
    content: "\e608";
}

[data-status=sucesso] .exame.enviar .rotulo-tipo-exame::after{
    background: #00c753;
    content: "\e996";
    font-size: 1.3rem;
}


#enviar-exames-mobile{
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 2rem;
    border: none;
    background: none;
    outline: none;
    z-index: 9999;
}

#enviar-exames-mobile i{
    display: inline-block;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    line-height: 4rem;
    padding: 1rem;
    background: #2F61B5;
    color: #fff;
    font-size: 3rem;
    box-shadow: 0 0.2rem 0.6rem rgba(0,0,0, .5);
    transition: .5s;
}

#enviar-exames-mobile i.semi-transparente{
    opacity: .5;
}


.exame.enviar .background-progresso{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    transition: .5s;
}


.textos-envio-exame{
    font-size: 1.5rem;
    color: #bfc0c1;
}

.textos-envio-exame .link{
    color: #7e9eda;
    font-size: 1em;
    text-decoration: none;
}

#listagem-envio-exames-wrapper{
    position: relative;
    flex: 1;
    padding: 1rem;
    overflow: auto;
}

#msg-ajuda-enviar-mobile{
    display: none;
}

#msg-ajuda-enviar-mobile:last-child{
    display: block;
}



.exame.enviar::after{
    content: attr(data-porcentagem);
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0 1rem 1rem 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: #c4c5c6;
}

.exame-link-envio [data-rotulo-status]{
    display: none;
}

.exame-link-envio[data-status=aguardando] [data-rotulo-status=aguardando],
.exame-link-envio[data-status=enviando] [data-rotulo-status=enviando],
.exame-link-envio[data-status=processando] [data-rotulo-status=processando],
.exame-link-envio[data-status=sucesso] [data-rotulo-status=sucesso],
.exame-link-envio[data-status=erro] [data-rotulo-status=erro],
.exame-link-envio[data-status=cancelado] [data-rotulo-status=cancelado]{
    display: inline-block;
}

.exame-link-envio[data-status=erro] .exame{
    border-color: #ffc7c7;
    background: #fee;
}

.exame-link-envio[data-status=cancelado] .exame{
    background: #eee;
    color: #999999;
}

.exame-link-envio[data-status=cancelado] .nome-paciente,
.exame-link-envio[data-status=cancelado] .nome-arquivo{
    color: #999999;
}

.exame-link-envio[data-status=erro] [data-rotulo-status]{
    color: #d99;
}

.exame-link-envio[data-status=aguardando] [data-rotulo-status=aguardando]{
    display: inline-block;
}

.remover-exame-upload{
    border: none;
    background: none;
    padding: 0;
    position: absolute;
    top: .75rem;
    right: .75rem;
    display: none;
    min-height: 0;
    font-size: 1.5rem;
    color: #8e9eba;
    outline: none;
}

.exame-link-envio[data-status=sucesso] .remover-exame-upload,
.exame-link-envio[data-status=erro] .remover-exame-upload,
.exame-link-envio[data-status=cancelado] .remover-exame-upload{
    display: inline-block;
}



@media screen and (max-width: 768px) {
    #envio-exames-wrapper{
        margin: 0;
    }

    #listagem-envio-exames-wrapper{
        padding-bottom: 10rem;
    }
}