/* This section conatins all general CSS*/
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,600&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 12pt;
    margin: 0px;
    color: #0A1E53;
    font-weight: 400;
}

h1, h2, h3 {
    margin: 0px;
    padding: 0px;
}

hr {
    color: #64818E;
}

/*input {
    -webkit-appearance: none;
}*/

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: rgba(0,0,0,0.2);
}

::-moz-placeholder { /* Firefox 19+ */
    color: rgba(0,0,0,0.2);
}

:-ms-input-placeholder { /* IE 10+ */
    color: rgba(0,0,0,0.2);
}

:-moz-placeholder { /* Firefox 18- */
    color: rgba(0,0,0,0.2);
}

.center-align {
    text-align:center;
}

#ctl01 {
    background-color: white;
}

.loadingCover {
    background-color: rgb(0,0,0);
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    z-index: 200000;
    opacity: 0.5;
    display: none;
}

/* This section contains all CSS for the Project front page */

.projListBackground {
    top: 0px;
    /*background: url('/Images/back.jpg') no-repeat center center scroll;*/
    left: 0px;
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-size: cover !Important;
    z-index: -10;
}

.projListPage {
    padding: 15px;
    box-sizing: border-box;
}

.projListHeadingCompanyName,
.donationHeadingCompanyName,
.shopHeadingCompanyName {
    color: black;
    font-size: 36pt;
    margin-bottom: 12px;
    border-radius: 8px;
    color: #0A1E53;
    text-align: center;
    box-sizing: border-box;
    padding: 12px;
    font-weight: 300;
}

.donationPageBottomBox {
}

#PanelSelectPBSCreditCard {
    margin-top: 8px;
    margin-bottom: 8px;
    display: inline-block;
    width: 100%;
}

.panelPBSLinkInfo {
    text-align:center;
}

#PanelPBSLinkInfo p {
    margin-top: 22px;
    margin-bottom: 36px;
}


.projBox {
    color: #0A1E53;
    display: inline-block;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    margin-bottom: 12px;
    width: 50%;
    margin-left: 25%;
}


.projTitle {
    font-size: 24pt;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #0A1E53;
    font-weight: 300;
}

.projDescription {
    font-size: 12pt;
    margin: 40px 0;
    line-height: 1.5;
}

.projImageBox {
}


.projImage {
    width: 100%;
    max-width: 100%;
}

.projBtnContainer {
    margin-bottom: 12px;
}

.projBodyBox {
    margin-bottom: 12px;
}


.shopButton {
    margin: 30px 0;
    cursor: pointer;
}


.projBottomBox {
}

.projBtnPay {
}

.projPageBottomBox,
.donationPageBottomBox,
.shopPageBottomBox {
    clear: both;
    margin-bottom: 12px;
    color: #0A1E53;
    box-sizing: border-box;
    padding: 50px 12px;
    border-top: solid 1px #e5e5e5;
    margin-top: 20px;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.projPageBottomCompanyName,
.donationPageBottomCompanyName,
.shopPageBottomCompanyName {
    font-weight: 300;
    font-size: 18pt;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.projPageBottomCompanyAddress {
}

/* This section contains all CSS related to the donation part */
.donationBackground {
    top: 0px;
    /*background: url('/Images/back.jpg') no-repeat center center scroll;*/
    left: 0px;
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-size: cover !Important;
    z-index: -10;
}

.donationPage {
    /*background-color:pink;*/
    padding: 12px;
    box-sizing: border-box;
}

.donationHeadingCompanyName {
    margin-top: 15px;
}

.donationFormBoxData {
    width: 830px;
    margin: 0 auto;
    color: #0A1E53;
    font-size: 14pt;
    margin-bottom: 50px;
    background-color: #FFFFFF;
    box-sizing: border-box;
    padding: 60px;
    border-radius: 3px;
   /* -webkit-box-shadow: 0px 1px 5px 0px rgba(153,153,153,1);
    -moz-box-shadow: 0px 1px 5px 0px rgba(153,153,153,1);
    box-shadow: 0px 1px 5px 0px rgba(153,153,153,1);*/
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.donationFieldContainer label {
    display: inline-block;
    margin-right: 20px;
}

.donationFormBoxData span[id^="lbl"] {
    margin-bottom: 10.5pt;
    color: #0A1E53;
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
}

/* General buttons, some rendered with Input type submit, others as a tags*/
.projBtn,
.ItemAction,
#BodyContent_btnCOToAddress,
#BodyContent_btnCOBack,
.shopButton,
.hyperLinkButton,
input[type=text], input[type=submit], textarea {
    border-radius: 5px;
    border: 1px solid #F1EEEA;
    cursor: pointer;
    padding: 10px;
    position: relative;
    height: 42px;
    line-height: 28px;
    box-sizing: border-box;
    /*width: 100%;
    */ font-size: 16px;
    font-family:Roboto;
    background: #f4f4f4;
    color: #0A1E53;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

select option {
    font-family: Roboto, Sans Serif;
}

/* General buttons, some rendered with Input type submit, others as a tags*/
.projBtn,
.ItemAction,
#BodyContent_btnCOToAddress,
#BodyContent_btnCOBack,
.hyperLinkButton,
.shopButton,
input[type=submit] {
    height: 50px;
    padding: 10px 20px;
    background: #C31230;
    text-transform: uppercase;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    -webkit-appearance: none;
    color: white;
    text-decoration: none;
}

select {
    border-radius: 6px;
    border: 1px solid #F1EEEA;
    cursor: default;
    padding: 10px;
    position: relative;
    height: 42px;
    line-height: 20px;
    box-sizing: border-box;
    /*width: 100%;*/
    /*margin-top:5px;*/
    font-size: 16px;
}

    /*media screen,print*/
    input.text:focus, input.input-text:focus, input.password:focus, input[type='text']:focus, textarea:focus, textarea.input-textarea:focus, iframe.editor:focus, select:focus {
        border-color: #2752ff;
        background-color: #FFF;
        -webkit-transition: all 0.2s ease-in-out 0.2s;
        -moz-transition: all 0.2s ease-in-out 0.2s;
        -ms-transition: all 0.2s ease-in-out 0.2s;
        -o-transition: all 0.2s ease-in-out 0.2s;
        transition: all 0.2s ease-in-out 0.2s;
        -webkit-box-shadow: #F8F9FD 0 0 5px;
        -moz-box-shadow: #F8F9FD 0 0 5px;
        -ms-box-shadow: #F8F9FD 0 0 5px;
        -o-box-shadow: #F8F9FD 0 0 5px;
        box-shadow: 0px 0px 5px #f8f9fd;
        outline: none;
    }


.dontationFormTermsAccept {
    clear: both;
}

    .dontationFormTermsAccept a, #BodyContent_hrefPolicyLink {
        color: rgba(0,0,0,0.5);
        font-size: 10.5pt;
        text-decoration: underline;
    }

    /*.dontationFormTermsAccept label  {
        font-size: 14px;
        text-transform: uppercase;
        color: rgba(0,0,0,0.5);
    }*/


.donationFormNote {
}

.donationNoteLabel {
    width: 100% !Important;
    margin-top: 8px;
}

.donationNoteTextArea {
    overflow: auto;
    width: 100%;
    max-width: 100%;
    height: 90px;
    background-color:white;
}

.donationQuestion {
    width: 100% !Important;
}

.donationQuestionDescription {
    color: rgba(0,0,0,0.5);
    font-size: 14px;
}

.donationAnswerList {
    overflow: auto;
    width: 100%;
    max-width: 100%;
    height: 160px;
}

@media only screen and (max-width: 553px) {
    .donationNoteTextArea, .donationAnswerList {
        width: 100%;
    }
}


.donationFormShowGeneralTerms {
    position: absolute;
    top: 5%;
    left: 5%;
    bottom: 5%;
    right: 5%;
    background-color: white;
    color: black;
    display: none;
    z-index: 1000;
    padding: 8px;
    border: 1px solid black;
    overflow-y: scroll;
}

.dontationFormNewsLetter {
    margin-top: 5px;
    margin-bottom: 5px;
}

.dontationFormPrivacyPolicy {
    margin-top: 5px;
    margin-bottom: 5px;
}


.donationFieldContainer {
    width: 50%;
    float: left;
    padding: 0 15px;
    margin-bottom: 30px;
}

.donationPhoneLookupBtn {
    position: relative;
    margin-left: -35px;
    top: 8px;
    width: 22px;
}

.donationTextField {
    width: 100%;
    max-width: 100%;
}

.donationPayRatesDropDown {
    width: 309px;
    max-width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    height: 42px;
    padding-left: 6px;
    padding-right: 6px;
}


.donationFormButton {
    padding: 10px;
    height: 50px;
    background-color: #64818E;
    color: white;
    font-size: 16pt;
    border-radius: 6px;
    min-width: 200px;
}


.donationButtonToPayment {
    margin-right: 8px;
}


.donationFormError {
    background-color: #DDDDDD;
    border: 1px solid #808080;
    border-radius: 4px;
    padding: 8px;
    font-size: 14px;
    color: darkred;
    margin-bottom: 8px;
    max-width: 689px;
}

.donationPageBottomCompanyName {
}

.donationPageBottomCompanyAddress {
}


.errorPageHeader {
    width: 100vw;
    text-align: center;
}

.errorPageMessage {
    margin-top: 15%;
    font-size: 15px;
    width: 100%;
    text-align: center;
}

.ReturnHeader {
    width: 100vw;
    text-align: center;
}

.ReturnMessage {
    width: 100%;
    text-align: center;
    font-size: 18pt;
}

.Redirect {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: white;
}

.messageDirectLinkOnly {
    text-align: center;
    font-size: 16pt;
    width: 100%;
}

.contractConditions {
    background-color: #DDDDDD;
    border: 1px solid #808080;
    border-radius: 4px;
    padding: 8px;
    font-size: 14px;
    color: black;
    margin-bottom: 8px;
    max-width: 689px;
}

.memberShipRadioButtons {
}

.membershipDescription {
    margin-top: 10px;
    margin-bottom: 10px;
}

.membershipChooseHeading {
    font-size: 18pt;
    margin-bottom: 5px;
    font-family: Roboto Light, Sans Serif;
}

#BodyContent_ddlGFLocal {
    font-family: Roboto, sans serif;
    margin-top: 10px;
    margin-bottom: 15px;
}

.membershipChoosePayplan {
    margin-bottom: 10px;
}

.membershipChosenTextReminder {
    margin-bottom: 10px;
    margin-top: 10px;
}

.membershipButtonToMasterdata {
}

.membershipButtonToChoice {
}

.membershipButtonToPayment {
}

.membershipButtonToPayment {
}

.donationAmountsLabel {
    width: 309px;
    max-width: 100%;
    display: inline-block;
}

.donationAmountsContainer {
    margin-bottom: 12px;
}

/* SHOP STYLE*/
.shopShowTerms {
    position: absolute;
    top: 5%;
    left: 5%;
    bottom: 5%;
    right: 5%;
    background-color: white;
    color: black;
    display: none;
    z-index: 1000;
    padding: 8px;
    border: 1px solid black;
    overflow-y: scroll;
}

.shopButton {
}

.shopBackground {
    top: 0px;
    /*background: url('/Images/back.jpg') no-repeat center center scroll;*/
    left: 0px;
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-size: cover !Important;
    z-index: -10;
}

.shopHeadingCompanyName {
}

.shopPageBottomBox {
}

.shopPageBottomCompanyName {
}


.shopPageBottomCompanyAddress {
}

.shopMenuCartLine {
    height: 62px;
}

.shopTradeTerms {
}

.shopTradeTermsLink {
    font-size:14px;
    text-decoration:none;
    cursor:pointer;
}

.shopMenuIcon {
    margin-left: 12px;
    display: none;
    float: left;
}

.shopCartIcon {
    margin-right: 12px;
    float: right;
    display: block;
    font-size: 22px;
    color: #666666;
}

    .shopCartIcon a {
        color: #000;
        text-decoration: none;
    }

.ItemBodyContainer {
    /*width:100%;*/
    margin: 12px;
}

.shopItemArea {
    display: table;
}

.ItemGroupContainer {
    max-width: 250px;
    /*display: table-cell;*/
    vertical-align: top;
    background-color: white;
    border: 1px solid #dddddd;
    float:left;
}

.ItemGroupSmallContainer {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100%;
    padding: 10px;
    background-color: white;
    box-sizing: border-box;
    z-index: 1000;
    overflow: auto;
}

.ItemListContainer {
    width: calc(100% - 250px);
    float:left;
    /*display: table-cell;*/
}

@media only screen and (max-width: 715px) {
    .shopMenuIcon {
        display: block;
    }

    .ItemGroupContainer {
        display: none;
    }

    .ItemListContainer {
        width: 100%;
    }
}



.shopButton {
}

.ShoppingCartImg {
    height: 22px;
    vertical-align: middle;
}

.shopAddressesHeader {
    text-align: center;
}

.shopInputLabel {
    margin-bottom: 10.5pt;
    color: rgba(0,0,0,0.5);
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    width: 50%;
    display: inline-block;
}

.shopInputField {
    width: 100%;
    max-width: 100%;
}

.shopInputFieldTextArea {
    width: 100%;
    max-width: 100%;
    margin-top: 3px;
}

.shopFieldContainer {
    width: 50%;
    float: left;
    padding: 0 15px;
    margin-bottom: 30px;
}




.ItemOuter {
    width: 250px;
    float: left;
    margin-left: 12px;
    margin-bottom: 12px;
    border: 1px solid #dddddd;
    padding: 10px;
}


.ItemImageContainer {
    width: 100%;
    max-width: 250px;
    height: 250px;
    box-sizing: border-box;
    text-align: center;
}


.ItemImage {
    max-height: 100%;
    max-width: 100%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ItemImageLink {
    text-decoration: none;
}

.ItemVariants {
    color: gray;
    /*text-transform: uppercase;*/
    font-size: 10px;
    text-align: center;
    padding: 5px;
    height: 10px;
}

.ItemText {
    height: 45px;
    overflow: hidden;
    font-size: 18px;
    color: black;
    margin-top: 10px;
    text-align: center;
}

.ItemPrice {
    font-size: 18px;
    color: black;
    padding: 8px;
    box-sizing: border-box;
    text-align:center;
}

.ItemAction {
}

.ItemActionOuter {
    text-align-last: center;
}

.ItemActionLink {
    color: white;
    /*text-transform: uppercase;*/
    font-size: 14px;
    text-decoration: none;
    margin-top: 30px;
    display: inline-block;
}

.ItemDetailsContainer {
    padding-left: 7%;
    padding-right: 7%;
}

.ItemDetailsItemName {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 500;
}

.ItemDetailDesc {
    margin-bottom: 22px;
    margin-top: 22px;
    font-size: 19px;
}

.ItemDetailsBackButton, .ItemDetailsPDFButton, .ItemDetailsPurchButton, .ItemDetailsCheckoutButton {
    width: 155px;
    text-align: center;
    float: left;
    margin-right: 8px;
    cursor: pointer !Important;
    margin-top: 12px !important;
    margin-bottom: 12px !important;
}



.ItemDetailsQtyContainer {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 19px;
}

.ItemDetailsQty {
    font-size: 22px;
}

.ItemDetailsErr {
    color: red;
}

.ItemDetailsConfirm {
    color: green;
}

.ItemDetailsImg {
    max-height: calc(100% - 15px);
    max-width: calc(100% - 15px);
}

.ItemDetailsVariantContainer {
    float: left;
    width: 50%;
    font-size: 19px;
}

.ItemDetailsPriceContainer {
    float: left;
    width: 50%;
    font-size: 19px;
    margin-bottom: 12px;
}

.ItemDetailsPrice {
    font-size: 26px;
    font-weight: 500;
    margin-top: 6px;
    color: black;
}

.ItemDetailsVariantDropDown {
    font-size: 20px;
    padding: 3px;
}

.ItemDetailsRightContainer {
    float: right;
    width: 45%;
}

.ItemDetailsLeftContainer {
    width: 50%;
    float: left;
    border: 1px solid lightgray;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 22px;
}

@media only screen and (max-width: 715px) {
    .ItemDetailsRightContainer {
        float: none;
        width: 100%;
        margin: auto;
    }

    .ItemDetailsLeftContainer {
        float: none;
        width: 100%;
        text-align: center;
    }
}



/*Checkout*/

.PanelCheckout {
    max-width:1024px;
    margin:auto;
}
.CheckoutContainer {
    margin: 12px;
}

.CheckoutInfo {
}

.CheckoutCartContainer {
}

.CheckoutCartRight {
    text-align: right;
}

.CheckoutCartCell {
}

.CheckoutCartTable {
    width: 100%;
    margin-bottom: 10px;
    margin-top: 10px;
    border-collapse: collapse;
}

    .CheckoutCartTable td {
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid gray;
    }

    .CheckoutCartTable tfoot td {
        border: none;
        padding: 5px;
    }

.CheckoutCartTotalPrice {
    border-top: 1px solid gray;
    border-bottom: 2px solid gray;
}



@media only screen and (max-width: 500px) {
    .CheckoutCartTable {
        border-spacing: 5px 2px;
        font-size: 9px;
    }
}


#btnCOToAddress {
    float: right;
}


@media only screen and (max-width: 600px) {
    .shopCartButtonContainer {
        text-align: center;
    }

    #btnCOToAddress {
        float: none;
    }
}

.shopAddressesButtonsContainer {
    padding-left: 15px;
}

thead {
    font-weight: 500;
}


input.CheckoutCartRemoveButton {
    width: 30px;
    height: 30px;
    padding: 0px;
    color: #666666;
    border-color: #666666;
    border-radius: 15px;
    background-color: transparent;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.CheckoutCartRemoveAllButton {
    width: 30px;
    height: 30px;
    padding: 0px;
    color: #c6c6c6;
    border-color: #c6c6c6;
    border-radius: 15px;
    background-color: transparent;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    color: #545454;
    width: auto;
    padding: 0 20px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.CheckoutCartCellCentered {
    text-align: center;
}

.CheckoutCartTotalsContainer {
    line-height: 35px;
    display: block;
    color: black;
    font-weight: 500;
}

.CheckoutTotalsLabels {
    float: right;
    margin-right: 10px;
}

.CheckoutTotalsNumbers {
    float: right;
    text-align: right;
    margin-right: 4px;
}

.CheckoutAdressInfo {
}

.CheckoutPrimaryAddress {
}

.CheckoutSecondaryAddress {
    clear: both;
}

.CheckoutErrContainer {
    background-color: #DDDDDD;
    border: 1px solid #808080;
    border-radius: 4px;
    padding: 8px;
    font-size: 14px;
    color: darkred;
    margin-bottom: 8px;
    /*max-width: 689px;*/
}

.CheckoutTermsAccept {
    padding-left: 15px;
}

.CheckoutFormNewsLetter {
    padding-left: 15px;
}

.CheckoutFormPrivacyPolicy {
    padding-left: 15px;
}

.CheckoutTermsAccept, .CheckoutFormNewsLetter, .CheckoutFormPrivacyPolicy {
    padding: 0 15px;
    margin-top: 20px;
    margin-bottom: 30px;
    display: inline-block;
    font-size: 18px;
    width: 100%;
}

    .CheckoutTermsAccept a, .CheckoutFormNewsLetter a, .CheckoutFormPrivacyPolicy a {
        margin-left: 40px;
        font-size: 14px;
        color: rgba(0,0,0,0.5);
        font-size: 10.5pt;
        text-decoration: underline;
    }

    .CheckoutTermsAccept p,
    .CheckoutFormNewsLetter p,
    .CheckoutFormPrivacyPolicy p {
        margin: 10px 0;
    }

.shopQuickPayReturnPanel {
    text-align: center;
}

.shopQuickPayReturnHeader {
}

.shopQuickPayReturnMessage {
}


/* Customize the label (the container) */
.shop-container-checkbox,
.container-checkbox {
    display: block;
    position: relative;
    padding-left: 40px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .shop-container-checkbox input,
    .container-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark,
.shop-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
    background-color: #fff;
    border: solid 1px #e1e1e1;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

/* On mouse-over, add a grey background color */
.shop-container-checkbox:hover input ~ .shop-checkmark
.container-checkbox:hover input ~ .checkmark {
    background-color: #fff;
    border: solid 1px #e1e1e1;
}

/* When the checkbox is checked, add a blue background */
.shop-container-checkbox input:checked ~ .checkmark,
.container-checkbox input:checked ~ .checkmark {
    background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.shop-checkmark:after,
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.shop-container-checkbox input:checked ~ .shop-checkmark:after,
.container-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.shop-container-checkbox .shop-checkmark:after,
.container-checkbox .checkmark:after {
    left: 10px;
    top: 5px;
    width: 5px;
    height: 13px;
    border: solid #66bf46;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.shope-container-checkbox font,
.container-checkbox font {
    line-height: 30px;
    font-size: 18px;
}

.dontationFormTermsAccept, .dontationFormNewsLetter, .dontationFormPrivacyPolicy {
    padding: 0 15px;
    margin-top: 20px;
    margin-bottom: 30px;
    display: inline-block;
    font-size: 18px;
    width: 100%;
}

    .dontationFormTermsAccept a, .dontationFormNewsLetter a, .dontationFormPrivacyPolicy a {
        margin-left: 40px;
        font-size: 14px;
    }

    .dontationFormTermsAccept p,
    .dontationFormNewsLetter p,
    .dontationFormPrivacyPolicy p {
        margin: 10px 0;
    }

#PanelHeader {
    padding: 15px 0;
    text-align: center;
}

    #PanelHeader img {
        width: auto;
        height: 58px
    }

@media only screen and (max-width: 767.999999999px) {
    input[type=submit] {
        margin-left: 15px;
    }

    .projBox {
        float: none;
        padding: 0;
        margin-left: 0px;
        width: 100%;
    }

    .donationFormBoxData {
        width: auto;
        padding: 15px;
    }

    .donationFieldContainer,
    .shopFieldContainer {
        width: auto;
        float: none;
        margin-bottom: 15px;
    }
}

.ItemGroupButton {
    /*margin-bottom: -10px;*/
    margin:10px;
    padding: 0px;
    margin-left: 0px !important;
    background-color: transparent !important;
    color: black !important;
    text-align: left;
    border: none !important;
    text-transform: none !important;
    font-size: 18px !important;
}


.ActiveItemGroup {
    background-color: #dddddd !important;
    border-radius: 0px !important;
}

#PanelFields {
    display: inline-block;
    width: 100%;
}

#PanelPBSInfo br {
    clear: both;
}

.donationFormButton {
    margin-bottom: 15px;
}


.donationCheckboxLabels {
    font-size: 14px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.5);
}

.full-width {
    width:100%;
}
