.mwd_popup {
    position: static;
}
.modals {
    display: flex;
    justify-content: center;
    align-items: center;
}
.modals[hidden] {
    display: none;
}
.mwd_popup {
    max-height: 100%;
    overflow-y: auto;
    position: relative;
    left: 0;
    top: 0;
    animation: none;
    transform: none;
}
.mwd_form select.error,
.mwd_form input[type="text"].error,
.mwd_form input[type="email"].error {
    border: 1px solid red;
}
.checkbox-parent.error-wrp{
    position: relative;
}
.checkbox-parent.error-wrp::after {
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    border: 1px solid red;
    border-radius: 2px;
    position: absolute;
    top: 4px;
    left: 0;
}
input:focus,
select:focus {
    outline: none;
}
select option[disabled] {
    color: grey;
}
