/* ALERTA */
/* Estilos de alerta e modais personalizados */
:root { 
    --azulclaro: #1196c6;
    --azulescuro: #003146;
    --azulescuro2: #05293a;
    --branco: #ffffff;
    --cinzaclaro: #e1e1e1;
    --cinzaclaro2: #afb0b0;
    --cinzaescuro: #40474f;
    --filterazulclaro: invert(54%) sepia(97%) saturate(441%) hue-rotate(149deg) brightness(89%) contrast(93%);
    --filterazulescuro: invert(86%) sepia(53%) saturate(1141%) hue-rotate(
160deg) brightness(96%) contrast(101%);
}
.modal- {
    display: none;
    position: fixed;
    z-index: 99999;
    text-align: center;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.modal-conteudo {
    z-index: 100001;
    will-change: transform;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    box-sizing: border-box;
    padding: 0;
    width: 478px;
    padding: 3px;
    max-width: 80%;
    top: 15%;
    position: relative;
    margin: 20px auto;
    display: block;
    vertical-align: middle;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    border-radius: 20px;
    background-color: rgba(255,255,255,1);
    transition: transform .3s,opacity .2s,-webkit-transform .3s;
}
.modal-titulo {
    font-weight: bold;
    font-size: 120%;
}
.modal-cabecalho {
    font-size: 16px;
    position: relative;
    float: none;
    line-height: normal;
    vertical-align: top;
    text-align: left;
    display: inline-block;
    margin: 0;
    padding: 0 10px;
    color: #555;
    max-width: calc(100% - 20px);
    overflow-wrap: break-word;
    box-sizing: border-box;
}
.modal-upload {
    width: 60%;
    background: #009cde;
}
.file-drop-area {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    background: var(--azulclaro);
    color: #fff;
    max-width: 100%;
    padding: 15px;
    border-radius: 10px;
    transition: 0.2s;
}
.upload-btn {
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.04);
    border: 2px solid #fff;
    border-radius: .25rem;
    padding: 5px 15px;
    margin-bottom: 5px;
}
.file-msg {
  font-size: small;
  font-weight: 300;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.file-input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
  outline: none;
}
.dragndrop {
    text-align: center;
}
.dragndrop img {
    width: 40px;
    margin-top: 10px;
}
.modal-cabecalho:first-child {
    margin-top: 45px;
}
.modal-rodape {
    text-align: right;
    padding-top: 13px;
    margin-top: 13px;
    padding: 13px 16px;
    color: white;
}
.modal-header {
    margin: 20px 20px 0px 20px;
    border: 0 !important;
}
.modal-footer {
    margin: 0 20px 20px 20px;
}
.modal-botao-s {
    background: var(--verdeescuro);
    border-radius: .25rem;
    height: 30px;
    color: #fff;
    border: 0;
    padding: 0px 15px;
    font-weight: 400;
    cursor: pointer;
    margin-left: 10px;
}
.modal-botao-s:active {
    box-shadow: 0 0 3pt 1pt #009cde;
}
.modal-botao-s:hover {
    filter: opacity(0.7);
}
.modal-botao-n {
    background: #fff;
    border-radius: .25rem;
    height: 30px;
    color: #7c7c7c;
    border: 0;
    padding: 0px 15px;
    font-weight: 400;
    cursor: pointer;
    margin-left: 10px;
}
@media (max-width: 400px) {
    .modal-botao-s {
        border-radius: .25rem;
        height: 40px;
    }
    .modal-botao-n {
        border-radius: .25rem;
        height: 40px;
    }
}