.dropzone {
    background: #f9f9f9;
    border-radius: 0.1em;
    border: dashed 1px rgba(57, 90, 122, 0.58);
    position: relative;
    color: rgba(57, 90, 122, 0.6);
    display: inline-block;
}

.dropzone,
.drop-container,
.dropzone input,
.dropzone a {
    height: 70px;
    width: 70px;
    cursor: pointer !important;
}

.dropzone.cursor-default,
.cursor-default .drop-container {
    cursor: default !important;
}

.dropzone-sm,
.dropzone-sm .drop-container,
.dropzone-sm input,
.dropzone-sm a {
    height: 50px;
    width: 50px;
    cursor: pointer;
}

.dropzone.hover,
.dropzone:hover {
    color: #395a7a;
}

.dropzone.hover .icone-remocao,
.dropzone:hover .icone-remocao {
    right: -6px;
    top: -6px;
}

.dropzone.hover input,
.dropzone:hover input,
.drop-zone.hover .icone-remocao,
.drop-zone:hover .icone-remocao {
    margin-left: -2px;
    margin-top: -2px;
}

.drop-container,
.dropzone input {
    margin-left: -1px;
    margin-top: -1px;
}

.dropzone [type="file"],
.dropzone .download {
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    overflow: hidden;
}

.icone-notas {
    height: calc(100% + 10px);
    top: -12px;
    position: relative;
    display: block;
}

.thumbnail-nota {
    height: 100%;
    width: 100%;
    object-fit: contain;
    position: relative;
    padding: 5px;
}

.drop-container .botao-adicao {
    font-size: 30px;
    width: 100%;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.attachments-span {
    text-align: right;
    white-space: nowrap;
}

.imagens-nota {
    display: flex;
}

.dropzone.meio {
    margin: 0 5px;
}

.drop-container .icone-remocao {
    background: #395a7a;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    position: absolute;
    right: -5px;
    top: -5px;
    text-align: center;
    color: white;
    line-height: 20px;
    font-size: 10px;
    z-index: 99;
}

.drop-container .icone-remocao:hover {
    cursor: pointer;
    background: #fb5656;
}

.loader {
    border-radius: 50%;
    width: 70% !important;
    height: 70% !important;
    animation: spin 1.5s linear infinite;
    position: absolute;
    margin: 15%;
    border: 4px solid #d9d9d9;
    border-top: 4px solid #395a7a;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
