.ndbutton {
    display: flex;
    justify-content: center;
    align-items: center; 
    padding: 16px 24px;
    border-radius: 40rem;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: center;
    cursor: pointer;
    min-width: 160px;
    white-space: nowrap;
    cursor: pointer;
}
.button-action {
    background: var(--main-green);
    color:  #f1f1f1;
    border: 1px solid #B7BDCE
}
.button-action:hover {
    background: #408C74;
    border: 1px solid #B7BDCE
}
.button-action:active {
    background: linear-gradient(0deg, #B7BDCE, #B7BDCE),
                linear-gradient(0deg, #2C6050, #2C6050);
    border: 1px solid #B7BDCE
}
.button-action:disabled {
    background: var(--main-green);
    opacity: 0.5;
    cursor: not-allowed;
}
.button-cancel {
    border: 1px solid #B7BDCE;
    background: #fff;
}
.button-cancel:hover {
    background: #fff;
    border: 1px solid var(--main-green);
}

.fileUploader .ndmodal__inner button {
    font-weight: 400;
    font-size: 14px;
    padding: 12px 5px;
    
}
#abortUploader {
    min-width: 190px;
    padding: 12px 14px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}

@media only screen and (max-width: 650px) {
    .ndbutton {
        padding: 14px 5px;
        min-width: auto;
    }
    #abortUploader {
        min-width: auto;
    }
    
    .fileUploader .ndmodal__inner button {
        font-weight: 400;
        font-size: 14px;
        padding: 12px 14px;
        width: 100%;
    }
}