.rmaForm {
    position: relative;
}

.rmaForm .productNumberLookup {
    margin: 5px 0 10px;
}

.rmaForm .stockCodeDescription {
    color: #333333;
}
.rmaForm .stockCodeWarning {
    color: #8a0a0a;
}

.rmaForm .overlay {
    font-weight: bold;
    font-size: large;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content:  center;
    align-items: center;
}

.rmaForm .dropZone {
    padding: 40px;
    text-align: center;
    color: gray;
    border: 1px solid gray;
}

.rmaForm .invalid {
    color: red;
}

.rmaForm .dropTarget {
    background: #99ff99;
}

.rmaForm .file.uploaded {
    color: green;
}

.rmaForm .file {
    text-align: left;
}

.rmaForm .errors {
    color: red;
    text-align: center;
    font-weight: bold;
}

.rmaForm .number {

    background-color: #8B0000;
    color: #fff;
    height: 30px;
    width: 30px;
    display: inline-block;
    font-size: 0.8em;
    margin-right: 4px;
    line-height: 30px;
    text-align: center;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
    border-radius: 100%;

}

.rmaForm legend {
    color: rgb(51, 51, 51);
    background: none;
    text-shadow: none;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.rmaForm label {
    font-weight: bold;
    margin-bottom: 10px;
}

.rmaForm input,
.rmaForm select,
.rmaForm textarea {
    font-size: 14px;
    width: calc(100% - 14px);
    margins: 0 0 10px 0;
    padding: 7px 7px 7px 7px;
}

.rmaForm input[type="checkbox"],
.rmaForm input[type="radio"]{
    width: auto;
}

.rmaForm div {
    clear: both;
}
.rmaForm table {
    width: 100%;
    margin: 0;
    border: none;
    outline: 0;
    padding: 0;
}


.rmaForm table td{
    width: 50%;
}

#dealerOptions {
    margin: 10px;
}

#dealerOptions input {
    margin-left: 7px;
}

.fade-enter-active, .fade-leave-active {
    transition: opacity .5s;
}
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
    opacity: 0;
}