/* LANDING PAGE CSS */
#blockA_content h2, #blockB_content h2, #blockC_content h2, #blockD_content h2{
/* landing page: removes the default title from all sections */
display: none !important;
}
#bidder-login{
/* landing page: adds additional spacing under bidder login */
padding-bottom: 100px !important;
}
/* TICKET PAGE CSS */
/* BEGIN – STANDARD SECTION HEADING FONT COLOR AND BACKGROUND */
.section_title {
/* ticket page section title */
color: #ffffff !important; /* font color */
background: #e8933d !important; /* background color */
}
/* END – STANDARD SECTION HEADING FONT COLOR AND BACKGROUND */
#donation_amount, #seating_request {
/* ticket page: adds additional spacing above donation amount box */
margin-top: 20px !important;
}
/* BEGIN – CHECKOUT BUTTON COLOR */
.card_show_hide_link, .checkout-btn, #submitMe {
/* ticket page: changes the button color of the ‘submit button’ in checkout */
 background-color: #55585a !important;
}
#submitMe:hover {
/* ticket page: changes the hover color of the ‘submit button’ in checkout */
 background-color: #3f4447 !important;
}
.subButton:hover, #stripe_submit, #click_tap_here, #card_submit {
/* ticket page: changes the hover color of the ‘add payment’ button (for credit cards) in checkout */
 background-color: #3f4447 !important;
}
/* total amount */
#total {
/* ticket page: changes the font color of ‘total amount’ in checkout */
 color: #e8933d !important; 
}
/* END – CHECKOUT BUTTON COLOR */
/* DONATION PAGE CSS */
#og h1 {
/* donation page: removes the default title */
display: none !important;
}
#og {
/* donation page: removes default text shadow from text*/
text-shadow: none !important;
/* donation page: changes default text color for the text body */
color: #FFFFFF !important;
}
#bg_grad {
/* donation page: removes the default black linear gradient */
display: none !important;
/* donation page: replaces the black linear gradient with another color */
/* background-image: linear-gradient(to bottom, #[HEX CODE-GRADIENT COLOR-LINEAR GRADIENT] -50%,
transparent 90%) !important; */
}
.donation_thank_you_text {
/* donation page: changes the default ‘thank you’ (after donation payment) text color */
color: #FFFFFF !important;
}
/* BEGIN – SUBMIT DONATION BUTTON COLOR */
#donation_submit.checkout-btn {
/* donation page: changes the default donation page ‘submit’ button color */
background: #55585a !important;
border-color:#55585a #55585a #55585a !important;
}
/* END – SUBMIT DONATION BUTTON COLOR */
/* GUEST UPDATE LINK CSS */
/* GENERAL CSS */
a:-webkit-any-link {
/* all pages: changes all link colors to the same color */
/* color: #[HEX CODE-LINK COLOR-ALL PAGE LINKS] !important; */
/* all pages: removes underline from links on all pages */
/* text-decoration: none !important; */
}
/* BEGIN – RESPONSIVE BEHAVIOR (AUTO ADJUST FOR DIFFERENT SCREEN SIZES) */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
}
/* END - RESPONSIVE BEHAVIOR (AUTO ADJUST FOR DIFFERENT SCREEN SIZES)*/