/* 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 COLOR */
.section_title {
color: #FFFFFF !important; /* font color */
background: #476e9a !important; /* background color */
}
/* END – STANDARD SECTION HEADING FONT COLOR AND BACKGROUND COLOR */
/* ticket page section title */
color: #[HEX CODE-ALL SECTION HEADING-FONT COLOR] !important; /* font color */
/* BEGIN - PADDING FOR UNDERWRITING TEE TIMES */
.checkbox {
padding: 10px !important;
}
.checkbox > label.h3 {
padding-left: 5px !important;
}
/* END - PADDING FOR UNDERWRITING TEE TIMES */
/* BEGIN - INSERT DESCRIPTION ABOVE SPONSORSHIP DROPDOWN */
#underwriting::before {
content: "Book 30 minutes in a golf simulator booth for up to 8 people.";
font-weight: bold;
font-size: 18px !important;
}
#underwriting > div:nth-child(1) {
padding-top: 30px !important;
}
/* END - INSERT DESCRIPTION AT THE TOP OF UNDERWRITING */
#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: #486d9b !important;
}
#submitMe:hover {
/* ticket page: changes the hover color of the ‘submit button’ in checkout */
background-color: #355a83 !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: #355a83 !important;
}
/* total amount */
#total {
/* ticket page: changes the font color of ‘total amount’ in checkout */
color: #9bbcdd !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: #476e9a !important; 
 border-color:#476e9a #476e9a #476e9a !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) {
.event-date {
font-size: 20px !important;
}
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
.event-date {
font-size: 20px !important;
}
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
.event-date {
font-size: 24px !important;
}
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
.event-date {
font-size: 24px !important;
}
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
.event-date {
font-size: 24px !important;
}
}
/* END - RESPONSIVE BEHAVIOR (AUTO ADJUST FOR DIFFERENT SCREEN SIZES)*/
