/* Basic Styles
Ã¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œ */
html * {
    box-sizing: border-box;
}

input[type='checkbox'] {
    opacity: 0;

    z-index: 1111111;
    position: absolute;
    height: 23px;
    width: 23px;
}

input[type='checkbox']+label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-left: 0px;
    padding-top: 2px;
    font-size: 16px;

    cursor: pointer;

}

input[type='checkbox']+label.mod-label {
    font-family: "ProximaNova-Regular", Helvetica, sans-serif;
    font-weight: normal;
}

input[type='checkbox']+label::before,
input[type='checkbox']+label::after {
    position: absolute;
    content: "";

    /*Needed for the line-height to take effect*/
    display: inline-block;
}

/*Outer box of the fake checkbox*/
input[type='checkbox']+label::before {
    height: 23px;
    width: 23px;
    border: 1px solid;
    left: 0px;

    /*(24px line-height - 16px height of fake checkbox) / 2 - 1px for the border
     *to vertically center it.
     */
    top: 3px;
    border: 2px solid #C1C1C1;
    border-radius: 3px;
    background-color: white;
}

/*Hide the checkmark by default*/
input[type="checkbox"]+label::after {
    content: none;
}

/*Unhide on the checked state*/
input[type="checkbox"]:checked+label::after {
    content: " ";
}

/*Adding focus styles on the outer-box of the fake checkbox*/
input[type="checkbox"]:focus+label::before {
    outline: rgb(59, 153, 252) auto 5px;
}

/*Checkmark of the fake checkbox*/
input[type='checkbox']+label::after {
    height: 7px;
    width: 14px;
    border-left: 3px solid #CD171E;
    border-bottom: 3px solid #CD171E;
    transform: rotate(-45deg);
    left: 5px;
    top: 9px;
    background-color: white;
}


input[type="checkbox"] {
    position: absolute;
    z-index: 111111;
    cursor: pointer;
}


/* font */
h1 {
    font-family: "ProximaNova-Bold", Helvetica, sans-serif;
    font-size: 64px;
    line-height: 1.0;
}

h2 {
    font-family: "ProximaNova-Bold", Helvetica, sans-serif;
    font-size: 48px;
    line-height: 1.2;
    font-weight: bold
}

.Ev3_AttendeeHeading {
    font-family: "ProximaNova-Bold", Helvetica, sans-serif;
    line-height: 1.2;
}

h3 {
    font-family: "ProximaNova-Bold", Helvetica, sans-serif;
    font-size: 36px;
    line-height: 1.2;
}

h4 {
    font-family: "ProximaNova-Bold", Helvetica, sans-serif;
    font-size: 24px;
    line-height: 1.2;
}

h5 {
    font-family: "ProximaNova-Bold", Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.2;
}

h6 {
    font-family: "ProximaNova-Bold", Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.2;
}

h4.h4-light {
    font-family: "ProximaNova-Light", Helvetica, sans-serif;
    font-weight: 300;
    line-height: 1.35em
}

body {
    font-family: "ProximaNova-Regular", Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    color: #282828
}

.last p {
    display: inline;
}

/* 
/* Event Reg form styles
Ã¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œÃ¢â‚¬â€œ */
.BBSequenceMapNavigationButton {
    border-radius: 30px;
}

.BBSequenceMapCurrentStep.BBEventRegSequenceMapCurrentStep>.BBEventRegSequenceMapStepItem,
.BBSequenceMapNavigationNextButton.BBEventRegSequenceMapNavigationNextButton,
.Ev3_DivRegLaterChk input[type=checkbox]:checked+.Ev3_RegLaterLbl {
    color: #fff;
    background-color: #CD171E !important;
}

.BBSequenceMapNavigationNextButton.BBEventRegSequenceMapNavigationNextButton,
.BBSequenceMapNavigationButton.BBEventRegSequenceMapNavigationPreviousButton {
    font-weight: bold;
}

.EventTotalDue {
    color: #CD171E !important;
}

.BBSequenceMapPreviousStep>.BBEventRegSequenceMapStepItem {
    background-color: #E17378
}

.Ev3_AttendeeHeader {
    border-bottom: 5px solid #CD171E;
}

.Ev3_DivRegLaterChk input[type=checkbox]:checked+.Ev3_RegLaterLbl:after {
    top: 2px !important;
}

.Ev3_RegisterLaterText {
    vertical-align: 8px;
}

html * {
    font-family: "ProximaNova-Regular", Arial, helvetica-nueue;
}

.Ev3_RegistrationGroups {
    margin-top: 5%;
}

[id$='_divOrgRegistrantBox'] {
    margin-bottom: 5%;
}

.EventContainer {
    max-width: 1080px;
}

.BBSequenceMapPreviousStep>.BBEventRegSequenceMapStepItem {
    color: white;
}

.Ev3_AttendeeAction>span>i {
    color: #CD171E !important;
}

.Ev3_AttendeeHeading {
    color: black !important;
}

.AddAttendeeButton {
    margin-bottom: 5%;
    color: black !important;
    font-weight: bold;

}

.BBSequenceMapNavigationContainer {
    text-align: right !important;
}

.BBSequenceMapStepItem {
    border-radius: 30px;
}

.AddAttendeeButton {
    border: 1px solid black;
    padding: 15px 30px;
    border-radius: 30px;
    margin-top: 5%;
}

.Ev3_RegisterLaterChk:checked+.Ev3_RegisterLaterLbl {
    background-color: #CD171E !important;
}

.Ev3_NotConstituent {
    margin-top: 2%;
    margin-bottom: 3%;
}

[class$='_DivLaterChk'] {
    margin-bottom: 2%;
}

.BBEventRegSequenceMapNavigationNextButton {
    margin-right: 0px !important;
}

.BBSequenceMapNavigationContainer.BBEventRegSequenceMapNavigationContainer {
    margin-top: 3%;
}

.sidebar-block.event-information li {
    list-style: none;
}

/* custom */

.mod-label {
    font-family: "ProximaNova-Regular", Helvetica, sans-serif;
    font-weight: normal;
}

.skyContainer.EventContainer .hidden-xs {
    display: none;
}

.BBSequenceMapContainer,
.EventDesktopHideCell.Ev3_StepNameHeader {
    display: none;
}

@media (min-width: 1200px) {

    [class$='_RegistrantContent'] .container.fullWidth,
    [class$='_RegistrantContent'] .container.fullWidth>div {
        width: 100%;
        max-width: 100%;
    }
}

[class$='_RegistrantContent'] .container.fullWidth>div {
    padding-left: 0px;
    padding-right: 0px;
}

.labelContainer label {
    font-size: 16px;
    margin-bottom: 2px;
    font-family: "ProximaNova-Bold", Helvetica, sans-serif;
    color: black;
}

.skyContainer.EventContainer input[type=text],
.skyContainer.EventContainer input[type=tel],
.skyContainer.EventContainer input[type=email],
.skyContainer.EventContainer input[type=number] {
    border-radius: 3px;
    background-color: #fff;

    width: 100%;
    box-shadow: none;
    outline: 0px;
    border: 1px solid white;

    padding: 11px 20px;
}

.skyContainer.EventContainer,
.Ev3_EventWizard,
[id*='_eventUIStep3_rptRegistrantEvents'],
.BBSequenceMapNavigationContainer.BBEventRegSequenceMapNavigationContainer.container.fullWidth {

    max-width: 550px;
    margin-left: 0px;
}

.skyContainer.EventContainer:first-of-type>div:nth-child(2),
.spanRequiredFields,
[class$='_DivLaterChk'],
[class$='_NotConstituent'] {
    display: none;
}

.skyContainer.EventContainer>[class^='col-'] {
    padding-left: 0px;
    padding-right: 0px;
}

[role="main"].skyContainer.EventContainer {
    padding: 0px;
    background: white;
}

[role="main"].skyContainer.EventContainer>div:nth-child(2) {
    width: 100%;
}

[class$='_EventWizard'] {
    width: 100%;
}

.Ev3_RegisterLaterChk+.Ev3_RegisterLaterLbl {
    background-color: transparent;
    border: 0px;
}

[class$='_RegistrationGroups']>div:nth-child(2) {
    background-color: #EEEEEF;
}

[class$='_AttendeeHeader'] {
    margin-bottom: 10px
}

[class$='_RegistrationGroups'] [class$='_RegistrantContent'] {
    padding: 20px 40px;
    background-color: #EEEEEF;
}

[class$='_RegistrationGroups'] [class$='_RegistrantContent'] {
    padding: 20px 40px;
    background-color: #EEEEEF;
}

[class$='_RegistrationGroups'] [class$='_AttendeeHeader'] {
    padding: 18px 20px;
}

.container.fullWidth {
    padding-left: 0px;
    padding-right: 0px;
}

.Ev3_Registrantcontainer .Ev3_ExpandAttendee,
.Ev3_Registrantcontainer .Ev3_CollapseAttendee,
.Ev3_Registrantcontainer .Ev3_DeleteAttendee {
    cursor: pointer;
}



.Ev3_Registrantcontainer.closed .Ev3_DeleteAttendee {
    display: none;
}

.Ev3_Registrantcontainer .mod-label,
.Ev3_CollapseAttendee .mod-label,
.Ev3_DeleteAttendee .mod-label {
    font-weight: bold;
}

.Ev3_Registrantcontainer,
.Ev3_CollapseAttendee,
.Ev3_DeleteAttendee {
    cursor: pointer;
}

.Ev3_DeleteAttendee {
    float: left;
    padding-right: 10px;
}

.Ev3_AttendeeHeading {
    font-size: 20px;
}

.Ev3_Registrantcontainer {
    margin-bottom: 20px;
}

.AddAttendeeButton {
    border-color: #CD171E;
    font-family: "ProximaNova-Regular", Helvetica, sans-serif;
}

.AddAttendeeButton span {
    color: #CD171E;
    font-size: 24px;
    font-family: "ProximaNova-Regular", Helvetica, sans-serif;
    font-weight: normal;
}


.AddAttendeeIcon {
    vertical-align: text-bottom;
    margin-right: 5px;
}

#divAddAttendee {
    text-align: center;
}

.Ev3_Registrantcontainer.closed .Ev3_AttendeeHeader {
    background-color: #EEEEEF;
}

.Ev3_Registrantcontainer.opened .Ev3_AttendeeHeader {
    background-color: #F4F4F4;
}

.Ev3_Registrantcontainer .Ev3_AttendeeHeader {
    border: 0px;
}

[id$='_nextWizardButton'] {
    padding: 10px 40px;
    border-radius: 30px;
    font-family: "ProximaNova-Regular", Helvetica, sans-serif;
    font-size: 24px;
    height: 60px;
    margin-left: 20px;
}

[id$='_nextWizardButton']:hover {
    background-color: #b6141b !important;
}

.BBFormRequiredFieldMarker,
.Ev3_AttributesItemRequired {
    color: red;
}


/***** overlay stuff *******/
#imgSpinner {
    top: 20% !important;
}

/* event confirmation */
.er-confirmation-content {
    text-align: center;
    color: white;
    padding-top: 10%;
    padding-bottom: 5%;
}

.er-confirmation-content i {
    padding: 10px;
    border-radius: 40px;
    background-color: #ed5d63;
}

.er-confirmation-content i:before,
.er-confirmation-content em:before {
    font-size: 50px;
    line-height: 70px;
}

.er-confirmation-content h2,
.er-confirmation-content p {
    color: #282828;
}

.er-confirmation-content p {
    font-size: 24px;
    margin-bottom: 5%;
    margin-top: 3%;
}

.er-confirmation-content em {
    background: #CD171E;
    border-radius: 40px;
    height: 88px;
    width: 88px;
    font-size: 0px;
}

/* Event Registration Free - second setp */
[id*='_eventUIStep3_rptRegistrantEvents'] .Ev3_AttendeeHeader {
    padding: 18px 20px;
    background-color: #F4F4F4;
    margin-bottom: 0px;

    border-bottom: 0px;

}

[id*='_eventUIStep3_rptRegistrantEvents'] .Ev3_Row_OptionHeader {
    display: none;
}

.Ev3_Row_OptionItem.row>div:first-child {
    display: none;
}

.Ev3_Row_OptionItem.row>div {
    width: 100%;
    padding: 18px 10px;
}

.Ev3_Row_OptionItem.row>div select {
    width: 100%;
    margin-bottom: 0px;
}

.Ev3_OptionTable .Ev3_Row_OptionItem.row {
    border-bottom: 0px;
}

.Ev3_AttributesItemName {
    font-family: "ProximaNova-Bold", Helvetica, sans-serif;
    color: black;
}

.Ev3_OptionTable {
    padding: 10px 25px 0px;
    background-color: #EEEEEF;
    margin-bottom: 20px;
}

[id*='_eventUIStep3_rptRegistrantEvents'] {}

[id$='_previousWizardButton'] {
    height: 63px;
    vertical-align: top;
    padding: 15px 30px;
    font-size: 23px;
    line-height: 30px;
    font-family: "ProximaNova-Regular", Helvetica, sans-serif;
}

[id$='_eventUIStep3_rptRegistrantEvents'] .Ev3_AttendeeAction {
    margin-top: 3px;
}

/* paid event - ticket tracker */
.paid-event-summary-container {
    float: left;
    width: 100%;
    font-size: 24px;
}

.paid-event-summary-container p,
.paid-event-summary-container p span {
    margin-bottom: 0px;
    font-family: "ProximaNova-Bold", Helvetica, sans-serif;
}

.paid-event-summary-container>div:first-child {
    float: left;
}

.paid-event-summary-container>div:last-child {
    float: right;
}

.paid-event-summary-container {
    padding: 30px 40px;
    background-color: #EEEEEF;
    margin-bottom: 20px;
}

.Ev3_AttendeeHeader {
    margin-bottom: 0px;
}

.Ev3_ValidationSummary {
    border: 1px solid #CD171E;
    padding: 10px 18px;

}

.EventTotalDue {
    display: none;
}

.Ev3_ValidationSummary,
.Ev3_ValidationSummary li {
    font-family: "ProximaNova-Bold", Helvetica, sans-serif;
    color: #CD171E;
}

/* october 18 fixes */
#breadcrumb span.last,
#breadcrumb span.last p,
#breadcrumb span.last span,
.feedback-title,
.share-this-page-title {
    /*font-weight: bold;*/
}

.back-to-top:before {
    font-size: 24px;
}

.feddback-icons .glyphicon:before {
    font-size: 20px;
}

.share-this-page *,
.feedback>span,
#footer-contact h3,
.Ev3_ExpandAttendee .mod-label {
    font-family: "ProximaNova-Bold", Helvetica, sans-serif;
}

[id$='_divRegBox_0'] .Ev3_DeleteAttendee {
    display: none !important;
}

.glyphicon {
    font-size: 0px;
}

.glyphicon::before {
    font-size: 16px;
}

.left-content-col>h1,
.left-content-col>h2,
.left-content-col>h3,
.left-content-col>h4 {
    font-family: "ProximaNova-Bold", Helvetica, sans-serif;
    margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
    h3 {
        font-size: 30px;
    }

    h4 {
        font-size: 20px;
    }

    .Ev3_EventWizard {
        width: 100%;
        max-width: 100%;
    }

    .divRegistrantFieldForm .container.fullWidth {
        max-width: 100%;
    }

    .skyContainer.EventContainer {
        width: 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    html body {
        font-size: 14px;
    }

    .Ev3_ExpandAttendee label {
        font-size: 16px;
    }

    .AddAttendeeButton,
    [id$='_Ev3wiz_nextWizardButton'] {
        width: 70%;
        height: 50px;
        font-size: 17px;
        display: block;
        float: none;
        max-width: 212px;
        margin: 20px auto;

        padding: 10px 15px;
    }

    .AddAttendeeButton span {
        font-size: 17px;
    }

    [id$='_Ev3wiz_nextWizardButton'] {
        margin-left: 0px;
        margin-left: auto;
        margin-right: auto !important;
    }
}

/* search stuff */
@media only screen and (max-width: 767px) {
    #header #header-tools #search-trigger {
        display: block;
        width: 40px;
        height: 40px;
        background-color: #f9f9f9;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 20px 20px;
        float: right;
        display: block;
        margin-right: 10px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        border-radius: 20px;
    }
}

#header #header-tools input[type="search"] {
    width: 420px;
    float: right;
}

#header #header-tools input[type="search"] {
    height: 60px;
    line-height: 60px;
    background-color: #fff;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    padding: 0 60px;
    border: 2px solid #fff;
    font-size: 20px;
    background-position: 20px 50%;
    background-repeat: no-repeat;
    background-size: 30px 30px;
}

#header #header-tools input[type="search"]:focus {
    outline: none;
    border: 2px solid #439A9A;
}

@media only screen and (max-width: 767px) {
    #header #header-tools input[type="search"] {
        display: none;
    }

    #search-form-mobile input[type="search"] {
        width: 90%;
        height: 40px;
        line-height: 40px;
        padding: 0 10px;
        border: none;
        font-size: 16px;
        float: left;
        background-color: transparent;
    }

    #search-form-mobile input[type="submit"] {
        width: 10%;
        height: 40px;
        background-color: transparent;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 25px 25px;
        float: right;
        border: 0px solid black;
    }
}

input[type="search"] {
    -webkit-appearance: none;
}

@media only screen and (max-width: 991px) {
    #header #header-tools input[type="search"] {
        height: 40px;
        line-height: 40px;
        padding: 0 40px;
        font-size: 14px;
        background-size: 20px 20px;
        background-position: 10px 45%;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        border-radius: 20px;
    }

    #header #header-tools input[type="search"] {
        width: 300px;
        margin-right: 10px;
    }
}

.back-to-top::before {
    font-size: 24px;
}

.AddAttendeeIcon .glyphicon:before {
    font-size: 13px;
    vertical-align: unset;
}

@media only screen and (max-width: 1199px) {
    #header #header-tools #search-desktop {
        width: 300px;
        margin-right: 20px;
    }
}

@media (min-width: 992px) {
    .divRegistrantFieldForm .Ev3_RegistrantFieldCell {
        width: 100%;
        display: block;
        max-width: 100%;
    }
}

.divRegistrantFieldForm.fullWidth .container.fullWidth {
    width: 100%;
    max-width: 100%;
}

strong,
.banner_fullwidth.footer-cta h3 {
    font-family: "ProximaNova-Bold", Helvetica, sans-serif;
}

.left-content-col>h1+p,
.left-content-col>h2+p,
.left-content-col>h3+p,
.left-content-col>h4+p {
    font-size: 20px;
}


/* mobile view */
@media only screen and (max-width: 991px) {
    #footer h4 {
        font-family: "ProximaNova-Bold", Helvetica, sans-serif;
    }

    .left-content-col>h1,
    .left-content-col>h2,
    .left-content-col>h3,
    .left-content-col>h4 {
        font-size: 36px;
    }

    .left-content-col>h3+p,
    .left-content-col>h2+p,
    .left-content-col>h1+p,
    .left-content-col>h4+p {
        font-size: 20px;
        margin-bottom: 30px;
        margin-top: 20px;
    }

    .left-content-col>p {
        font-size: 14px;
    }

    .Ev3_AttendeeHeader .Ev3_AttendeeHeading {
        font-size: 20px;
    }
}

#footer #footer-extras #credits {
    margin-top: 0px;
}

.labelContainer label {
    margin-bottom: 0px;
}

.skyContainer.EventContainer input[type=text],
.skyContainer.EventContainer input[type=tel],
.skyContainer.EventContainer input[type=email],
.skyContainer.EventContainer input[type=number] {
    margin-top: 0px;
}

.Ev3_CollapseAttendee .mod-label,
.Ev3_DeleteAttendee .mod-label,
.Ev3_ExpandAttendee .mod-label {
    font-family: "ProximaNova-Bold", Helvetica, sans-serif;
    font-weight: 700;
}

.Ev3_ExpandAttendee .glyphicon,
.Ev3_CollapseAttendee .glyphicon {
    top: 2px;
}

.Ev3_CollapseAttendee .glyphicon {
    top: 2px;
}

.Ev3_EventWizard .BBSequenceMapNavigationNextButton.BBEventRegSequenceMapNavigationNextButton {
    font-weight: bold;
}

body .back-to-top {
    color: #787878;
}

#main-content .AddAttendeeIcon img {
    display: inline;
}

@media only screen and (max-width: 1199px) {
    #header #header-tools input[type="search"] {
        padding: 0 30px 0 60px;
        font-size: 16px;
    }
}

.Ev3_AttendeeHeader {
    min-height: 61px;
}

footer>.container>.row>div> :first-child {
    font-family: "ProximaNova-Bold", Helvetica, sans-serif;
}

.Ev3_Registrantcontainer input {
    -webkit-appearance: none;
}

.left-content-col {
    padding-bottom: 30px;
}


/* check out stuff */
#bbCheckoutOverlayIframe {
    display: none !important;
}

.blackbaud-checkout-overlay-box-container {
    z-index: 9999;
    border: 0px none transparent;
    overflow: hidden;
    visibility: visible;
    margin: 0px;
    padding: 0px;
    -webkit-tap-highlight-color: transparent;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    opacity: 0.6;
    display: none;
}

.blackbaud-checkout-overlay-box {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 300px;
    height: 80px;
    box-sizing: border-box;
    text-align: center;
}

.blackbaud-checkout-overlay-box .spinner-wrap {
    text-align: center;
    vertical-align: middle;
    margin-top: 20px;
}

.blackbaud-checkout-overlay-box .spinner {
    display: inline-block;
    margin: 0px auto;
    margin-bottom: -5px;
    width: 50px;
    height: 50px;
    position: relative;
    -webkit-animation: rotation .6s infinite linear;
    -moz-animation: rotation .6s infinite linear;
    -o-animation: rotation .6s infinite linear;
    animation: rotation .6s infinite linear;
    border-left: 6px solid rgba(0, 110, 194, .15);
    border-right: 6px solid rgba(0, 110, 194, .15);
    border-bottom: 6px solid rgba(0, 110, 194, .15);
    border-top: 6px solid rgba(0, 110, 194, .8);
    border-radius: 100%;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

#breadcrumb span.last,
#breadcrumb span.last p,
#breadcrumb span.last span,
.feedback-title,
.share-this-page-title {
    font-weight: bold;
}

.sidebar-block.event-information>ul>li:first-child>p:not(:last-child) {
    margin-bottom: 0px;
}

.sidebar-block.event-information p {
    margin-bottom: 10px;
}

.template #mobile-menu.mm-menu.mm-pagedim-black.mm-offcanvas.mm-right.mm-opened {
    display: block;
    opacity: 1;
}

/* 5/5/20 */
#bbspLoadingOverlay {
    display: none !important;
}

body .blackbaud-checkout-overlay-box-container {
    opacity: 0.95;
}

body .blackbaud-checkout-overlay-box .spinner {
    border-top: 6px solid #CD171E;
}

/* 20/05/2020 */
@media only screen and (max-width: 991px) {
    body #sidebar {
        float: right;
    }
}

@media only screen and (max-width: 767px) {
    body #sidebar {
        float: none;
    }

    body #breadcrumb {
        margin-top: 0px;
    }
}

.Ev3_ContentPopup > label,
.Ev3_CancelButton {
    color: black;
}

.Ev3_ConfirmButton {
    background-color: #cd171e;
}