﻿/*Note: Linked from UI.Common (cross app)*/

/* ************************************************************
Standard client-side cross-application layout & styles

NOTE: these should be limited to application-specific 
    functionality and may be overridden by themes
    for example, shared default layout for widget 
    panels might be defined here

IMPORTANT: this should be limited to allow both themes
    and client customizations to override them

SEPARATION NOTE: these classes may be included in themes
    and non-themed apps (e.g. User Center, Bill Pay, etc.)
************************************************************ */

/*Online List Entry Shared (default)*/
.onlineListWidgetEntries, .onlineListWidgetEntrySummaries, .onlineListWidgetEntryMessages, .onlineListWidgetEntryDonateButtonContainers, .onlineListWidgetEntryDonateButtons, .onlineListWidgetEntryDonateButtonLabels {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
}

.onlineListWidgetEntrySummaries {
}

.onlineListWidgetEntryMessages {
    max-height:80px;
    font-size: 14px;
    overflow:scroll;
}

.onlineListWidgetEntryDonateButtonContainers {
    cursor: pointer;
}

.onlineListWidgetEntryDonateButtons {
    cursor: pointer;
}

.onlineListWidgetEntryDonateButtonLabels {
}

/*Generic Online Box Close Icons*/
.onlineListWidgetBoxOffsetCloseIconContainers {
    position: absolute;
}

.onlineListWidgetBoxOffsetCloseIconCircles {
    background-color: gray;
    border-radius: 30px;
    width: 22px;
    text-align: center;
    height: 22px;
    padding: 0px;
    cursor: pointer;
}

.onlineListWidgetBoxOffsetCloseIconText {
    color: white;
    font-weight: bold;
    font-size: 10px;
    padding: 0px;
    margin: 0px;
    margin-top: -4px;
    position: absolute;
    top: 8px;
    left: 7px;
}

/*Online Generic List Box (default)*/
.onlineListWidgetBoxContainers, .onlineListWidgetBoxes {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
}

.onlineListWidgetBoxContainers {
    width: 250px;
    height: 400px;
    overflow: scroll;
}
 
.onlineListWidgetBoxes {
    position: relative;
    margin: 20px;
}
 
/*Online Donor List Box (default)*/
/*.recentDonationLists or .onlineListWidgetBoxContainers.donorLists*/

/*Auto-Scrolling List Box*/
.onlineListWidgetBoxContainers.autoScrollingWidgetBoxes {
    overflow: hidden;
}

/*Online Recent Donation Pop Ups (default)*/
.onlineListWidgetPopBoxContainers, .onlineListWidgetPopBoxes {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
}

.onlineListWidgetPopBoxContainers {
    position: fixed;
    margin: 20px;
    width: 250px;
    background-color: white;
    padding: 10px;
    border: 1px solid gray;
    z-index: 500;
}

.onlineListWidgetPopBoxContainers.boxPositionBottomLeft {
    left: 0px;
    bottom: 0px;
}

.onlineListWidgetBoxOffsetCloseIconContainers.boxPositionBottomLeft {
    right: -32px;
    top: -2px;
}

/*Online Recent Donation Pop Ups (default)*/
/*.recentDonationLists or .onlineListWidgetPopBoxContainers.donorLists*/

/*Default Success Error Message Framework*/
#successMessage {
    font-size: 1.75em;
    font-weight: bold;
    color: #7dc245;
}

#errorMessage {
    font-size: 1.75em;
    font-weight: bold;
    color: #e84c3d;
    text-align: center;
}

/*default validation failed treatment*/
.error {
    border-color: #e84c3d;
    color: #e84c3d;    
}

.radio-set.error input[type="radio"] {
    border: 2px solid red;
    appearance: none;
    border-color: #e84c3d;
    width: 13px;
    height: 13px;
    border-radius: 50%;
}

.checkbox-set.error input[type="checkbox"] {
    border: 2px solid red;
    appearance: none;
    border-color: #e84c3d;
    width: 13px;
    height: 13px;
    margin: 0px;
}

/*UI Processing Overlay*/
#processingOverlay {
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

#processingMessage {
    position: relative;
    top: 35%;
    margin: auto;
    padding: 20px;
    text-align: center;
    width: auto;
    max-width: 300px;
    background-color: #fff;
    border: 2px solid #dadada;
    border-radius: 6px;
}

#processingText {
    padding-top: 14px;
    color: #000;
    text-align: center;
    font-size: 16px;
}

/*UI Captcha MFA Modal*/
#mfaModalOverlay {
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

#mfaModalBox {
    position: relative;
    top: 35%;
    margin: auto;
    padding: 20px;    
    width: auto;
    max-width: 350px;
    background-color: #fff;
    border: 2px solid #dadada;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    #mfaModalBox input[type="radio"] {
        transform: scale(1.2);
    }

    #mfaModalBox input[type="text"] {
        height: 30px;
        font-size: 18px;
    }

    #mfaModalBox input[type="button"] {
        font-size: 18px;
    }

        #mfaModalBox label {
            white-space: nowrap;
        }

#mfaModalTopErrorMessage {
    text-align: center;
    color: red;
}

#mfaModalTopMessage {
    text-align: center;
    font-weight: bold;
}

#mfaCode {
    width:90px;
    align-self:center;
}

#mfaResendCodeMessage {
    text-align: center;
}

#mfaEnterCodeForm, #resendCodeForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#resendCodeFormMethodOptionsContainer {
    display: flex;
    gap: 20px;
}

    #resendCodeFormMethodOptionsContainer > div {
        display: flex;
        align-items: center;
        gap: 8px;
    }

#didNotGetCodeLinkContainer {
    text-align:center;
}
    #didNotGetCodeLinkContainer a {
        text-decoration:none;
    }

    /*CE Header (standard block)*/
    #orgLogoWrapper {
        text-align: center;
    }

#orgLogoLink {
    display: inline-block;
    height: 72px;
}

#orgLogoImage {
    max-height: 100%;
}

.ce-radioButtonLists {
    display: flex;
    gap: 10px;
}

.ce-formFieldOptionItems {
    display: flex;
    gap: 5px;
}

    #tributeRecipientToggleRow .ce-radioButtonLists label.ce-radioButtonIconLabels,
    #amountAskStringsContainer .ce-radioButtonLists label.ce-radioButtonIconLabels,
    .ce-radioButtonLists.isPaymentType_id label.ce-radioButtonIconLabels {
        display: flex;
        gap: 5px;
        align-items: baseline;
    }

.ce-formFieldHelpIconLabels {
    display: flex;
    gap: 5px;
}

.ce-formFieldHelpIconLabels span.fa {
    font-weight:lighter;
}
 
.ce-formFieldInfoIconWidgets {
    position: relative;
}

.ce-formFieldInfoIconOverlays {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    /*pointer-events: none; 
    transition: opacity 0.3s ease;*/
}

.ce-formFieldInfoIconOverlays img.ce-checkFieldHelperImages {
    width:400px;
}

.ce-formFieldEditButtonIcons {
    white-space: nowrap;
}

.ce-tributeAcknowledgeeMessages {
    height: 60px;
    width:100%;
}

.paypal-button-container {
    width: 400px;
    margin: 0 auto;
}

.paypalButton {
    cursor: pointer;
}

#oneClickCheckoutContainer {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

#oneClickCheckoutContainer input[type="button"] {
    padding:10px;
}

#dd-container {
    border: 1px solid green;
}

div.text-center search-title {
    color: green;
    font-weight: bold;
}

#dd-container .dtd-search-box, .dtd-plugin .dtd-search-box {
    margin-bottom: 16px !important;
    height: 40px;
} 

/*CE Branding Footer (standard block)*/
#charityEngineAppBrandingContainer {
    text-align: center;
}

/*always hide (12.18.25)*/
#bisFollowPix {
    display: none;
}