.modalWindow {
    position: fixed;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    min-width: 250px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    overflow-y: auto;
    z-index: 2;
}

.modalForm {
    position: relative;
    background-color: var(--colorWhite);
    color: var(--colorLighter);
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: flex-start;
    gap:10px;
    width: 90%;
    min-height: 75vh;
    border-radius: 10px;
    padding: 20px 20px;
    border-radius: 10px;
    box-sizing: border-box;
    border: solid 1px var(--colorMain);
    animation: showModal 0.25s;
}

.modalForm p {
    margin: 15px 0px;
}

.modalForm label {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    
    font-size: 12px;
    font-weight: 400;
    width: 100%;
    padding: 10px;
    
    border: solid 1px var(--colorLighter);
    border-bottom: solid 2px var(--colorLight);
    border-right: solid 2px var(--colorLight);
    border-radius: 5px;    

    box-sizing: border-box;
}

.modalForm input {
    font-family: 'Inter', sans-serif;
    width: 100%;
    height: 25px;
    padding-left: 20px;

    box-shadow: 0px 0px 1px 1px var(--colorLighter);
}

.modalForm select {
    font-family: 'Inter', sans-serif;
    width: 100%;
    padding-left: 20px;

    box-shadow: 0px 0px 1px 1px var(--colorLighter);
}

.modalForm > button {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    height: 45px;
}

.modalClose {
    position: absolute;
    color: var(--colorLighter);
    font-size: 12px;
    font-weight: 700;
    top: 25px;
    right: 10px;
    height: 20px;
    width: 50px;
    cursor: pointer;
}

textarea {
    font-family: -apple-system, BlinkMacSystemFont, 'Nunito', sans-serif;
    color: var(--colorLight);
    
    width: 100%;
    height: 100px;
    padding: 10px;
    
    resize: none;
    border: solid 1px transparent;
    border-radius: 4px;
    box-shadow: 0px 0px 1px 1px var(--colorLighter);
}

textarea:focus {
    border: solid var(--brand-1);
    border: solid 1px var(--colorLighter);
}

#delSubmit {
    background-color: var(--colorAlert);
}

#valorSale{
    height: 45px;
    padding-left: 30px;

    font-size: 16px;
    font-weight: 500;
}

.cifrao {
    position: absolute;
    left: 16px;
    bottom: 21px;
    
    font-size: 18px;
    font-weight: 700;
}

.addFile {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    
    width: 60px;
    height: 60px;
    margin: 5px;
}

#inputFile {
    background-color: white;
    vertical-align: middle;
    width: 100%;
    height: 45px;
}

#saveFerris {
    width: 100%;
}

@keyframes showModal {
    0% {
        opacity: 0;
        transform: translateY(-50%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width:550px) {

    .modalForm {
        width: 95%;
        max-width: 720px;
        padding: 20px 40px;
    }

    .modalForm p {
        margin: 45px 0px;
    }

    .modalForm > label, .modalForm > button{
        max-width: 640px;
    }

}