.waivetax .modal-dialog {
    width: auto;
    max-width: 414px;
}

.waivetax .modal-header {
    border: none;
    font-size: 24px;
    color: black;
    font-weight: bold;
    padding: 20px 33px 10px 33px;
}

.waivetax .modal-header button.close {
    font-size: 16px;
    margin: 0;
    top: 22px;
    right: 20px;
}

.waivetax .modal-body {
    padding: 0 33px 25px 33px;
}

.waivetax label {
    display: block;
    color: black;
    font-weight: bold;
}

.waivetax label.error {
    color: red;
}

.waivetax .input-wrap {
    position: relative;
    left: 0; top: 0;
    width: 230px;

}

.waivetax .input-wrap input {
    width: 100%;
    padding: 10px 25px 10px 10px;
    border: 1px solid #B8BCC6;
    border-radius: 4px;
    appearance: none;
    background: transparent linear-gradient(180deg, #FFFFFF 0%, #F7F9FC 100%) 0% 0% no-repeat padding-box;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-size: 1em;
    cursor: pointer;
}

.waivetax .input-wrap input.active {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom: none;
}

.waivetax .input-wrap input:focus {
    outline-width: 0;
    outline: none;
}

.waivetax .drop-wrap {
    border: 1px solid #B8BCC6;
    border-top: none;
    width: 100%;
    position: absolute; left: 0; top: 42px;
    z-index: +10;
    max-height: 300px;
    overflow-y: scroll;
    background-color: white;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    display: none;
}

.waivetax .drop-wrap div {
    padding: 5px 25px 5px 10px;
    cursor: pointer;
}

.waivetax .drop-wrap div:hover {
    color: black;
    background-color: lightgrey;
}



.waivetax input[type=file] {
    display: none;
}

.waivetax .upload-wrap {
    margin-top: 5px;
    border: 1px dashed #B8BCC6;
    border-radius: 4px;
    padding: 12px;
    position: relative;
    left: 0;
    top: 0;
}

.waivetax .upload-wrap .input-wrap {
    width: 100%;
    display: flex;
    align-items: center;
}

.waivetax .upload-wrap .input-wrap label {
    display: block;
    background-color: #0096ff;
    color: white;
    padding: 15px 10px;
    border-radius: 4px;
    white-space: nowrap;
    width: 100%;
}

.waivetax .errorMessage {
    color: red;
}

.waivetax .upload-wrap .input-wrap span {
    display: none;
}

.progress-wrap {
    position: relative;
    left: 0; top: 0;
    height: 42px;
}

.progress-wrap .progress-bar {
    position: absolute;
    left: 0; top: 0;
    color: white;
    line-height: 42px;
}

.progress-wrap .progress-alt {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    text-align: center;
    line-height: 42px;
}

@media (min-width: 992px) {

    .waivetax .upload-wrap .input-wrap label {
        width: auto;
    }

    .waivetax .upload-wrap .input-wrap span {
        display: flex;
        padding-left: 12px;
        height: 50px;
        cursor: pointer;
        align-items: center;
    }
}

