/** Hide extra link **/
div.ast-site-title-wrap {
	display: none;
}

/* Container for the search box */
.search-container {
    display: flex;
    align-items: center;
    width: 300px; /* Adjust width as needed */
    border: 1px solid #ccc;
    border-radius: 25px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Ensures rounded corners apply to child elements */
    transition: box-shadow 0.3s ease;
}

/* Input field styling */
.search-container input[type="search"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
}

/* Button styling */
.search-container button {
    background-color: #182A50;
    border: none;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Search icon default state */
.search-container button svg {
    width: 18px;
    height: 18px;
    stroke: #007bff; /* Blue icon color in normal state */
    stroke-width: 2px;
}

/* Hover effect for the button */
.search-container button:hover {
    background-color: #66a37b; /* Blue background on hover */
}

.search-container button:hover svg {
    stroke: #ffffff; /* Change icon color to white */
}

/* Hover effect for the entire search box */
.search-container:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}


/* Reduce spacing between form fields */
.wpcf7 .wpcf7-form-control {
    margin-bottom: -30px; /* Adjusts the space between fields */
}

/* Reduce spacing for labels */
.wpcf7 label {
    margin-bottom: 5px; /* Adjusts space between label and field */
    display: block;
}

/* Optional: Adjust spacing between the checkbox and submit button */
.wpcf7-checkbox {
    margin-bottom: 1px;
}

/* Adjust spacing for the submit button */
.wpcf7 input[type="submit"] {
    margin-top: 5px; /* Adjusts space above the submit button */
}




/* Header Buttons Container */
.header-buttons {
    display: flex;
    justify-content: center; /* Centers the buttons horizontally */
    gap: 10px; /* Space between the buttons */
    margin: 20px 0; /* Optional margin for spacing */
}

/* Button Styling */
.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    text-decoration: none;
    color: white;
    background-color: #182a50;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

/* Button Hover Effect */
.button:hover {
    background-color: #0056b3;
}



/* General Section Styling */
.social-media-section {
    text-align: center;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.social-media-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

/* Social Icons Container */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Individual Icons */
.social-icons .icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Icon Colors */
.social-icons .linkedin {
    background-color: #0077b5;
}

.social-icons .instagram {
    background: radial-gradient(circle at 30% 30%, #fdf497, #f77737, #e1306c, #c13584, #833ab4, #5851db);
}

.social-icons .facebook {
    background-color: #1877f2;
}

.social-icons .youtube {
    background-color: #ff0000;
}

.social-icons .eventbrite {
    background-color: #ff5733;
}

/* Hover Effect */
.social-icons .icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}






/* General Table Styling */
.incentives-table {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 14px;
    text-align: left;
}

.incentives-table th,
.incentives-table td {
    padding: 10px;
    border: 1px solid #d9d9d9;
}

.incentives-table th {
    background-color: #f4f4f4;
    color: #333;
    font-weight: bold;
}

.incentives-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.incentives-table tr:nth-child(odd) {
    background-color: #e0e0e0;
}

/* Link Styling */
.incentives-table a {
    color: #0053bc; /* Updated color for links */
    text-decoration: none;
}

.incentives-table a:hover {
    text-decoration: underline;
    color: #003a8c; /* Slightly darker color on hover */
}

/* Hover Effect for Rows */
.incentives-table tbody tr:hover {
    background-color: #559D90;
    color: white; /* Ensures text is visible on hover */
}

/* Ensure link color is visible on hover */
.incentives-table tbody tr:hover a {
    color: white;
}




@media only screen and (max-width: 768px){
    html,
    body{
    width:100%;
    overflow-x:hidden;
????}
}







/* Giving and Sharing Payment Form */

/* Donation Form Container */
.donation-form {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

/* Form Title */
.donation-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Labels */
.donation-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Select Dropdown and Text Input */
.donation-form select,
.donation-form input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* Preset Amount Options */
.donation-form .amount-options {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.donation-form .preset-amount {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f4f4f4;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    user-select: none;
}

.donation-form .preset-amount.active {
    background-color: #0053bc;
    color: white;
    border-color: #0053bc;
}

/* Frequency Options */
.donation-form .frequency-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.donation-form .frequency-options label {
    font-weight: normal;
    cursor: pointer;
}

.donation-form .frequency-options input {
    margin-right: 5px;
}

/* Submit Button */
.donation-form button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #0053bc;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.donation-form button:hover {
    background-color: #003a8c;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

*:enabled:focus, *:not([disabled]):focus {
    box-shadow: rgb(255, 255, 255) 0px 0px 0px 0.11rem, rgb(7, 107, 201) 0px 0px 0px 0.18rem, rgba(7, 107, 201, 0.1) 0px 0px 0px 0.3rem !important;
	outline: none;
}

/* Shorcuts */
.shortcuts {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	padding-inline: 20px;
	font-family: Poppins, sans-serif;
	font-size: 14px;
}

.kbd-wrapper {
	display: flex;
	gap: 5px;
}

.kbd {
	background-color: rgb(233, 238, 243);
    color: rgb(0, 0, 0);
    display: inline-block;
    position: relative;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    overflow: hidden;
    white-space: nowrap;
    padding: 0.14rem;
    border: 0.0125rem solid rgb(203, 212, 220);
    border-radius: calc(0.125rem);
    text-transform: capitalize;
    text-align: center;
    height: 1.05rem;
    text-overflow: ellipsis;
    line-height: 0.7rem;
    inset-block-start: calc(0.1875rem);
    font-size: 14px;
}

.visually-hidden { 
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
    user-select: none !important;
}

/** Tooltip **/

.tooltip {
    position: absolute;
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 1000;
}

.tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%; /* Position above the tooltip */
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #333 transparent; /* Upward arrow */
}

.tooltip.visible {
    visibility: visible;
    opacity: 1;
}

div.email-section div.wpforms-field-email {
	position: relative;
	left: 20%;
}

div.email-section div.wpforms-submit-container {
	text-align: center;
}
