/* Direct Debits */

.divDDConfirmPopup
{
    position: relative;
    visibility: hidden;
}

.divDDPopupBlur
{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0px;
    left: 0px;
    backdrop-filter: blur(5px);
}

.tdDDConfirmInfo, .tdDDConfirmInnerTable
{
    padding: 10px;
	border: 0;
}

.tdDDButtons {
	display: flex;
	padding: 10px;
	justify-content: space-between;
}

#divDDPopup
{
    position: fixed;
    top: 200px;
    left: 50%;
    margin-left: -300px;
    text-align: left;
    max-width: 600px;
    width: 100%;
    z-index: 10000;
    border-radius: 10px;
}

.tblDDConfirmHeader
{
    border: solid 2px black;
    max-width: 600px;
    width: 100%;
    background-color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.tblDDConfirmHeaderInner 
{
    background-color: #2970ca;
    text-indent: 10px;
    font-weight: bold;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: 2px solid black;
    border-bottom: 0px;
}

.tblDDConfirmInnerTable, .tblDDConfirmDetails
{
    background-color: white;
    color: black;
    padding: 10px;
    border-top: 0px;
}

.DDPopupCancel
{
    float: left;
}

.DDPopupNext
{
    float: right;
}