.kiwanisty-grid {
display: grid;
gap: 3rem;
margin: 3rem 0;
padding: 1rem;
list-style: none;
} .kiwanisty-columns-1 {
grid-template-columns: 1fr;
max-width: 800px;
margin: 3rem auto;
}
.kiwanisty-columns-2 {
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
.kiwanisty-columns-3 {
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.kiwanisty-columns-4 {
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
} .kiwanisty-note {
background: linear-gradient(to bottom, #fffef9 0%, #fffcf5 100%);
border: 1px solid #e8dcc8;
border-radius: 3px;
padding: 2.5rem 2rem;
box-shadow:
0 1px 3px rgba(0, 0, 0, 0.08),
0 4px 12px rgba(0, 0, 0, 0.06),
0 8px 24px rgba(0, 0, 0, 0.04);
transition: transform 0.3s ease, box-shadow 0.3s ease;
display: flex;
flex-direction: column;
position: relative; background-image:
repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.01) 2px, rgba(0,0,0,0.01) 3px);
} .kiwanisty-note::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 6px;
background: linear-gradient(90deg, #c8ad7f 0%, #d4bc8e 50%, #c8ad7f 100%);
border-radius: 3px 3px 0 0;
} .kiwanisty-note::after {
content: '';
position: absolute;
top: 0;
right: 0;
width: 0;
height: 0;
border-style: solid;
border-width: 0 20px 20px 0;
border-color: transparent #f5ede0 transparent transparent;
border-radius: 0 3px 0 0;
}
.kiwanisty-note:hover {
transform: translateY(-6px) scale(1.01);
box-shadow:
0 2px 6px rgba(0, 0, 0, 0.1),
0 8px 20px rgba(0, 0, 0, 0.08),
0 16px 36px rgba(0, 0, 0, 0.06);
} .kiwanisty-content {
flex: 1;
display: flex;
flex-direction: column;
padding-top: 0.5rem;
} .kiwanisty-title {
font-size: 2rem;
font-weight: 700;
color: #2c2416;
margin: 0 0 1.5rem 0;
line-height: 1.3;
font-family: Georgia, 'Times New Roman', serif;
text-align: center;
padding-bottom: 0.75rem;
border-bottom: 2px solid #e8dcc8;
} .kiwanisty-memo {
color: #3a3a3a;
font-size: 1.6rem;
line-height: 1.8;
margin-bottom: 2rem;
padding: 1.25rem 0.5rem;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-style: italic;
text-align: left;
} .kiwanisty-pdf-preview {
margin-top: auto;
}
.kiwanisty-pdf-link {
display: block;
position: relative;
overflow: hidden;
border-radius: 6px;
text-decoration: none;
transition: opacity 0.2s ease;
}
.kiwanisty-pdf-link:hover {
opacity: 0.95;
} .kiwanisty-pdf-thumbnail {
width: 100%;
height: auto;
display: block;
border-radius: 6px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
} .kiwanisty-pdf-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
color: #fff;
padding: 1rem;
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.95rem;
font-weight: 500;
opacity: 0;
transition: opacity 0.3s ease;
}
.kiwanisty-pdf-link:hover .kiwanisty-pdf-overlay {
opacity: 1;
}
.kiwanisty-pdf-overlay .dashicons {
font-size: 1.5rem;
width: 1.5rem;
height: 1.5rem;
} .kiwanisty-pdf-fallback {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
gap: 0.75rem;
padding: 1.25rem 2rem;
background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
color: #fff;
text-align: center;
border-radius: 8px;
box-shadow:
0 2px 4px rgba(231, 76, 60, 0.3),
0 4px 8px rgba(0, 0, 0, 0.15);
transition: all 0.3s ease;
cursor: pointer;
border: 2px solid #c0392b;
}
.kiwanisty-pdf-link:hover .kiwanisty-pdf-fallback {
background: linear-gradient(135deg, #ec7063 0%, #e74c3c 100%);
transform: translateY(-2px);
box-shadow:
0 4px 8px rgba(231, 76, 60, 0.4),
0 8px 16px rgba(0, 0, 0, 0.2);
}
.kiwanisty-pdf-link:active .kiwanisty-pdf-fallback {
transform: translateY(0);
box-shadow:
0 1px 2px rgba(231, 76, 60, 0.3),
0 2px 4px rgba(0, 0, 0, 0.15);
}
.kiwanisty-pdf-fallback .dashicons {
font-size: 1.75rem;
width: 1.75rem;
height: 1.75rem;
margin: 0;
animation: heartbeat 1.5s ease-in-out infinite;
}
@keyframes heartbeat {
0%, 100% {
transform: scale(1);
}
10% {
transform: scale(1.1);
}
20% {
transform: scale(1);
}
}
.kiwanisty-pdf-fallback span:last-child {
font-size: 1.35rem;
font-weight: 600;
letter-spacing: 0.3px;
} .kiwanisty-no-notes {
text-align: center;
padding: 2rem;
color: #666;
font-size: 1.1rem;
background: #f9f9f9;
border-radius: 6px;
border: 1px solid #e0e0e0;
} @media screen and (max-width: 768px) {
.kiwanisty-grid {
gap: 1.5rem;
margin: 1.5rem 0;
}
.kiwanisty-columns-3,
.kiwanisty-columns-4 {
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.kiwanisty-note {
padding: 1.25rem;
}
.kiwanisty-title {
font-size: 1.75rem;
}
.kiwanisty-memo {
font-size: 1.45rem;
}
} @media screen and (max-width: 480px) {
.kiwanisty-grid {
gap: 1rem;
margin: 1rem 0;
}
.kiwanisty-columns-2,
.kiwanisty-columns-3,
.kiwanisty-columns-4 {
grid-template-columns: 1fr;
}
.kiwanisty-note {
padding: 1rem;
}
.kiwanisty-title {
font-size: 1.6rem;
}
.kiwanisty-memo {
font-size: 1.35rem;
padding: 0.6rem;
}
.kiwanisty-pdf-overlay {
font-size: 0.85rem;
}
.kiwanisty-pdf-fallback {
padding: 2rem 1.5rem;
}
} .kiwanisty-modal {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 999999;
display: flex;
align-items: center;
justify-content: center;
}
.kiwanisty-modal-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.85);
cursor: pointer;
}
.kiwanisty-modal-content {
position: relative;
width: 90%;
height: 90%;
max-width: 1200px;
background: #fff;
border-radius: 8px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
z-index: 1;
}
.kiwanisty-modal-close {
position: absolute;
top: -15px;
right: -15px;
width: 48px;
height: 48px;
background: #fff;
border: none;
border-radius: 50%;
cursor: pointer;
font-size: 32px;
line-height: 1;
color: #333;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
transition: all 0.2s ease;
z-index: 2;
display: flex;
align-items: center;
justify-content: center;
}
.kiwanisty-modal-close:hover {
background: #f44336;
color: #fff;
transform: scale(1.1);
}
.kiwanisty-modal-close span {
display: block;
line-height: 1;
margin-top: -4px;
}
.kiwanisty-modal-body {
width: 100%;
height: 100%;
border-radius: 8px;
overflow: hidden;
}
.kiwanisty-modal-body iframe {
width: 100%;
height: 100%;
border: none;
border-radius: 8px;
} @media screen and (max-width: 768px) {
.kiwanisty-modal-content {
width: 95%;
height: 85%;
}
.kiwanisty-modal-close {
top: -12px;
right: -12px;
width: 40px;
height: 40px;
font-size: 28px;
}
} @media print {
.kiwanisty-note {
break-inside: avoid;
box-shadow: none;
border: 1px solid #ccc;
}
.kiwanisty-pdf-overlay {
display: none;
}
.kiwanisty-pdf-thumbnail {
box-shadow: none;
}
.kiwanisty-modal {
display: none !important;
}
}@keyframes fadeOut {
from { opacity: 1; }
to { opacity: 0.3; }
}
@keyframes fadeIn {
from { opacity: 0.3; }
to { opacity: 1; }
} @keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
} @media (max-width: 768px) {
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(0);
}
to {
opacity: 1;
transform: translateY(0);
}
}
}
@keyframes stickyPop {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
.plc-calendar-wrap {
opacity: 1;
}
.plc-calendar-wrap.fade-out {
animation: fadeOut 0.15s ease-out forwards;
}
.plc-calendar-wrap.fade-in {
animation: fadeIn 0.15s ease-in forwards;
} .plc-event-card {
opacity: 0;
transition: none;
}
.plc-event-card.visible {
animation: fadeInUp 0.4s ease-out forwards;
} .plc-month-group {
opacity: 1;
}
.plc-month-group.visible {  } .plc-search-filter-wrap {
background: linear-gradient(135deg, #e8e9ea 0%, #d4d6d8 100%); border: 1px solid #c8cacc; border-radius: 12px;
padding: 15px;
margin-bottom: 20px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
opacity: 1 !important; position: relative;
z-index: 1000; isolation: isolate; }
.plc-search-controls {
display: flex;
flex-direction: column;
gap: 12px;
} .plc-search-row {
display: flex;
gap: 15px;
align-items: stretch;
} .plc-toggle-filters {
flex-shrink: 0;
padding: 14px 24px;
font-size: 14px; font-weight: 500; color: #666; background: #f5f5f5; border: 1px solid #ddd; border-radius: 6px; cursor: pointer;
transition: background 0.2s ease, border-color 0.2s ease;
white-space: nowrap;
display: flex;
align-items: center;
gap: 8px;
}
.plc-toggle-filters:hover {
background: #e8e8e8; border-color: #ccc; }
.plc-toggle-filters:active {
background: #ddd; }
.plc-filter-arrow {
display: inline-block;
font-size: 12px;
transition: transform 0.3s ease;
}
.plc-filter-arrow.plc-arrow-open {
transform: rotate(180deg);
} .plc-filters-container {
display: flex;
flex-direction: column;
gap: 10px;
padding-top: 10px;
border-top: 2px solid #dee2e6;
margin-top: 10px;
} .plc-search-input-wrap {
position: relative;
flex-grow: 1;
}
.plc-search-input {
width: 100%;
padding: 14px 45px 14px 18px;
font-size: 16px;
border: 2px solid #ced4da;
border-radius: 8px;
background: #fff;
transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.plc-search-input:focus {
outline: none;
border-color: #1959A0;
box-shadow: 0 0 0 3px rgba(25, 89, 160, 0.1);
}
.plc-search-icon {
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
font-size: 20px;
pointer-events: none;
opacity: 0.5;
} .plc-category-filters {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 8px;
margin-bottom: 0;
padding: 10px;
background: #f8f9fa;
border-radius: 6px;
}
.plc-filter-label {
font-weight: 700;
color: #333;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-right: 10px;
}
.plc-category-checkbox {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 12px;
background: #fff;
border: 2px solid #dee2e6;
border-radius: 5px;
cursor: pointer;
transition: all 0.2s ease;
font-size: 14px;
user-select: none;
}
.plc-category-checkbox:hover {
border-color: #1959A0;
background: #f0f7ff;
}
.plc-category-checkbox input[type="checkbox"] {
margin: 0;
cursor: pointer;
width: 18px;
height: 18px;
}
.plc-category-checkbox input[type="checkbox"]:checked {
accent-color: #1959A0;
} .plc-label-filters {
display: flex;
flex-direction: column;
gap: 8px;
margin-top: 0;
padding-top: 0;
border-top: none;
}
.plc-label-toggle-btn {
background: linear-gradient(135deg, #4A8FD8 0%, #3a7bc8 100%);
color: white;
border: none;
padding: 10px 20px;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.plc-label-toggle-btn:hover {
background: linear-gradient(135deg, #3a7bc8 0%, #2a6bb8 100%);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
transform: translateY(-1px);
}
.plc-label-arrow {
transition: transform 0.3s ease;
display: inline-block;
}
.plc-label-toggle-btn.active .plc-label-arrow {
transform: rotate(180deg);
}
.plc-label-content {
overflow: hidden;
}
.plc-label-include-group,
.plc-label-exclude-group {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 8px;
margin-bottom: 0;
padding: 10px;
background: #f8f9fa;
border-radius: 6px;
}
.plc-label-exclude-group {
display: none;
}
.plc-label-group-title {
font-weight: 700;
color: #333;
font-size: 14px;
min-width: 70px;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-right: 10px;
}
.plc-label-checkbox {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 12px;
background: #fff;
border: 2px solid #dee2e6;
border-radius: 5px;
cursor: pointer;
transition: all 0.2s ease;
font-size: 14px;
user-select: none;
}
.plc-label-include:hover {
border-color: #28a745;
background: #f0fff4;
}
.plc-label-exclude:hover {
border-color: #dc3545;
background: #fff5f5;
}
.plc-label-checkbox input[type="checkbox"] {
margin: 0;
cursor: pointer;
width: 16px;
height: 16px;
}
.plc-label-include input[type="checkbox"]:checked {
accent-color: #28a745;
}
.plc-label-exclude input[type="checkbox"]:checked {
accent-color: #dc3545;
}
.plc-no-labels {
font-size: 14px;
color: #666;
font-style: italic;
margin: 0;
}
.plc-no-labels a {
color: #1959A0;
text-decoration: underline;
} .plc-quick-filters {
display: flex;
flex-wrap: wrap;
gap: 3px; margin: 0;
justify-content: center;
position: relative;
z-index: 1000;
} @media (max-width: 768px) {
.plc-quick-filters {
margin: 0; }
}
.plc-quick-filter {
display: inline-flex;
align-items: center;
gap: 4px; padding: 5px 8px; border-radius: 20px;
font-size: 11px; font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
border: 2px solid transparent;
user-select: none;
}
.plc-quick-filter input[type="checkbox"] {
margin: 0;
cursor: pointer;
width: 16px;
height: 16px;
} .plc-quick-interclub {
background-color: #ffc107;
color: #000;
}
.plc-quick-interclub:hover {
background-color: #ffca28;
border-color: #ff9800;
}
.plc-quick-interclub input[type="checkbox"]:checked {
accent-color: #ff9800;
} .plc-quick-meeting {
background-color: #1959A0;
color: #fff;
}
.plc-quick-meeting:hover {
background-color: #1565C0;
border-color: #0d47a1;
}
.plc-quick-meeting input[type="checkbox"]:checked {
accent-color: #0d47a1;
} .plc-quick-volunteer {
background-color: #6f42c1;
color: #fff;
}
.plc-quick-volunteer:hover {
background-color: #7952cc;
border-color: #5a32a3;
}
.plc-quick-volunteer input[type="checkbox"]:checked {
accent-color: #5a32a3;
} .plc-quick-donation {
background-color: #1e7e34;
color: #fff;
}
.plc-quick-donation:hover {
background-color: #28a745;
border-color: #1a6b2e;
}
.plc-quick-donation input[type="checkbox"]:checked {
accent-color: #1a6b2e;
} .plc-filter-actions {
display: flex;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}
.plc-clear-filters {
padding: 10px 24px;
font-size: 15px;
font-weight: 600;
color: #333;
background: rgba(240, 240, 240, 0.9);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(200, 200, 200, 0.4);
border-radius: 6px;
cursor: pointer;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: opacity 1s ease, visibility 1s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
opacity: 0;
visibility: hidden;
}
.plc-clear-filters.visible {
opacity: 1;
visibility: visible;
}
.plc-clear-filters:hover {
background: rgba(220, 220, 220, 0.95);
border-color: rgba(180, 180, 180, 0.6);
transform: translateY(-1px);
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.plc-clear-filters:active {
transform: translateY(0);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.plc-event-count-wrap {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
margin: 10px 0;
min-height: 42px; }
.plc-event-count {
display: inline-block;
font-size: 16px;
font-weight: 600;
color: #1959A0;
padding: 8px 16px;
background: #fff;
border-radius: 6px;
border: none;
opacity: 0;
transition: opacity 1s ease;
visibility: hidden; min-width: 150px; text-align: center;
}
.plc-event-count.visible {
opacity: 1;
visibility: visible; } .plc-no-results {
background: #fff3cd;
border: 2px solid #ffc107;
border-radius: 8px;
padding: 40px 20px;
text-align: center;
color: #856404;
font-size: 18px;
font-weight: 500;
} @media screen and (max-width: 768px) {
.plc-search-filter-wrap {
padding: 8px; margin-bottom: 8px; border-radius: 8px;
}
.plc-search-controls {
gap: 8px; } .plc-search-row {
flex-direction: column;
gap: 6px; }
.plc-toggle-filters {
width: 100%;
justify-content: center;
padding: 10px 20px; }
.plc-filters-container {
padding-top: 10px; margin-top: 10px; }
.plc-category-filters {
flex-wrap: wrap;
gap: 8px;
}
.plc-filter-label {
width: 100%;
margin-bottom: 5px;
}
.plc-category-checkbox {
flex: 0 0 auto;
min-width: fit-content;
}
.plc-filter-actions {
flex-direction: column;
align-items: stretch;
gap: 8px; }
.plc-clear-filters {
width: 100%;
}
.plc-event-count {
text-align: center;
} .plc-event-count-wrap {
min-height: 36px; gap: 10px; margin: 5px 0; }
} .plc-calendar-wrap {
max-width: 100%;
margin: 0 auto;
overflow: visible;
opacity: 0;
transition: opacity 0.4s ease-in, min-height 0.3s ease-out;
position: relative;
} .plc-calendar-wrap.loaded {
opacity: 1;
}
.plc-calendar-empty {
text-align: center;
padding: 40px 20px;
color: #666;
} .plc-month-group {
margin-bottom: 40px;
overflow: visible;
}
.plc-month-header {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 20px; background: linear-gradient(to bottom, #e8f2ff 0%, #f0d060 100%);
color: #1959A0 !important;
padding: 20px 25px;
border-radius: 8px;
border: 2px solid #d4af37;  box-shadow:
0 -20px 0 20px rgba(255, 255, 255, 1), 0 -40px 20px 0px rgba(255, 255, 255, 0.9), 0 10px 0 10px rgba(255, 255, 255, 1), 0 30px 20px 0px rgba(255, 255, 255, 0.9), 0 4px 12px rgba(0, 0, 0, 0.2); margin-top: 5px;
margin-bottom: 25px;
text-align: left;
font-size: 28px;
font-weight: 700;
position: -webkit-sticky;
position: sticky;
top: 88px; z-index: 999;
will-change: top;
}
.plc-month-header.sticky-pop {
animation: stickyPop 0.3s ease-out;
}
.plc-month-header.is-sticky {
background: linear-gradient(to bottom, #e8f2ff 0%, #f0d060 100%);
border-color: #d4af37;
transition: background 0.3s ease, border-color 0.3s ease; box-shadow:
0 -5px 0 5px rgba(255, 255, 255, 1), 0 -10px 5px 0px rgba(255, 255, 255, 0.8), 0 5px 0 5px rgba(255, 255, 255, 1), 0 15px 10px 0px rgba(255, 255, 255, 1), 0 4px 12px rgba(0, 0, 0, 0.2); } .admin-bar .plc-month-header {
top: 120px; }
@media screen and (max-width: 782px) {
.plc-month-header {
top: 85px; }
.admin-bar .plc-month-header {
top: 131px; }
} .plc-month-header::before {
content: '';
display: block;
width: 50px;
height: 50px;
flex-shrink: 0;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231959A0"><path d="M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2zm-7 5h5v5h-5z"/></svg>');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
} .plc-event-card {
background: #f5f5f5;
border: 2px solid transparent; border-left: 6px solid #dee2e6; border-radius: 8px;
padding: 20px;
padding-left: 8px; margin-bottom: 20px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
transition: all 0.2s ease;
cursor: pointer;
position: relative;
} .plc-admin-edit-btn {
position: absolute;
bottom: 10px;
right: 10px;
width: 36px;
height: 36px;
border-radius: 50%;
border: 2px solid #1959A0;
background: white;
color: #1959A0;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
transition: all 0.2s ease;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.plc-admin-edit-btn:hover {
background: #1959A0;
color: white;
transform: scale(1.1);
box-shadow: 0 4px 12px rgba(25, 89, 160, 0.4);
}
.plc-admin-edit-btn .dashicons {
font-size: 20px;
width: 20px;
height: 20px;
}
.plc-event-card:hover {
box-shadow: 0 4px 16px rgba(25, 89, 160, 0.2);
transform: translateY(-2px);
}   article.plc-event-card.plc-cat-meeting,
article.plc-event-card.plc-cat-meetings {
border-left-color: #1959A0;
}
article.plc-event-card.plc-cat-meeting:hover,
article.plc-event-card.plc-cat-meetings:hover {
border: 2px solid #1959A0;
border-left: 6px solid #1959A0;
} article.plc-event-card.plc-cat-volunteer {
border-left-color: #6f42c1;
}
article.plc-event-card.plc-cat-volunteer:hover {
border: 2px solid #6f42c1;
border-left: 6px solid #6f42c1;
} article.plc-event-card.plc-cat-event,
article.plc-event-card.plc-cat-events {
border-left-color: #28a745;
}
article.plc-event-card.plc-cat-event:hover,
article.plc-event-card.plc-cat-events:hover {
border: 2px solid #28a745;
border-left: 6px solid #28a745;
} article.plc-event-card.plc-cat-fundraiser,
article.plc-event-card.plc-cat-fundraisers {
border-left-color: #d4af37;
}
article.plc-event-card.plc-cat-fundraiser:hover,
article.plc-event-card.plc-cat-fundraisers:hover {
border: 2px solid #d4af37;
border-left: 6px solid #d4af37;
} article.plc-event-card.plc-cat-interclub {
border-left-color: #ffc107;
}
article.plc-event-card.plc-cat-interclub:hover {
border: 2px solid #ffc107;
border-left: 6px solid #ffc107;
} article.plc-event-card.plc-cat-service-proj {
border-left-color: #ff69b4;
}
article.plc-event-card.plc-cat-service-proj:hover {
border: 2px solid #ff69b4;
border-left: 6px solid #ff69b4;
} .plc-event-card-inner {
display: flex;
gap: 15px; align-items: flex-start; } .plc-date-badge {
flex-shrink: 0;
width: 75px; text-align: center;
background: transparent;
padding: 0;
margin-top: -8px; }
.plc-weekday {
font-size: 10px;
font-weight: 600;
text-transform: uppercase;
color: #555;
}
.plc-day {
font-size: 28px;
font-weight: 700;
color: #333;
line-height: 1;
}
.plc-day-suffix {
font-size: 14px;
font-weight: 600;
color: #555;
vertical-align: super;
}
.plc-time {
font-size: 13px; color: #555;
margin-top: 2px;
} .plc-event-content {
flex: 1;
}
.plc-event-title {
font-size: 22px;
font-weight: 700;
color: #1959A0;
margin: 0 0 4px 0;
line-height: 1.3;
cursor: pointer;
text-decoration: underline;
text-decoration-color: rgba(25, 89, 160, 0.3);
text-decoration-thickness: 2px;
text-underline-offset: 3px;
display: inline;
transition: all 0.2s ease;
}
.plc-event-title:hover {
text-decoration-color: #1959A0;
} .plc-event-title::after {
content: '\00A0\279C'; font-size: 20px;
color: #1959A0;
}
.plc-event-time {
font-size: 16px;
color: #666;
margin-bottom: 8px;
font-weight: 500;
}
.plc-event-location {
font-size: 14px;
color: #888;
margin-bottom: 10px;
margin-top: 0;
font-style: italic;
}
.plc-event-description {
font-size: 15px;
color: #555;
line-height: 1.6;
margin-bottom: 12px;
} .plc-event-categories {
display: flex;
gap: 4px;
flex-wrap: wrap;
}
.plc-category-badge {
display: inline-block;
padding: 4px 12px;
font-size: 12px;
font-weight: 600;
border-radius: 12px;
text-transform: uppercase;
letter-spacing: 0.5px;
}  .plc-category-badge[data-category="meeting"],
.plc-category-badge[data-category="meetings"] {
background-color: #1959A0;
color: #fff;
} .plc-category-badge[data-category="event"],
.plc-category-badge[data-category="events"] {
background-color: #28a745;
color: #fff;
} .plc-category-badge[data-category="interclub"] {
background-color: #ffc107;
color: #000;
} .plc-category-badge[data-category="volunteer"],
.plc-category-badge[data-category="volunteer opportunity"] {
background-color: #6f42c1;
color: #fff;
} .plc-category-badge[data-category="fundraiser"] {
background-color: #d4af37;
color: #fff;
} .plc-category-badge {
background-color: #6c757d;
color: #fff;
} .plc-label-badge {
display: inline-block;
padding: 4px 12px;
font-size: 12px;
font-weight: 600;
border-radius: 12px;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-left: 4px;
} .plc-label-badge-ticketed {
background-color: #90ee90;
color: #000;
} .plc-label-badge-rsvp {
background-color: #fff;
color: #000;
} .plc-label-badge-volunteer-opp {
background-color: #6f42c1;
color: #fff;
} .plc-label-badge-donation-opp {
background-color: #1e7e34;
color: #fff;
} .plc-label-badge-dinner {
background-color: #ff69b4;
color: #fff;
} .plc-label-badge-headcount-req {
background-color: #000;
color: #fff;
} @media (max-width: 768px) { .plc-event-card-inner {
display: flex;
gap: 12px; }
.plc-date-badge {
width: 55px; }
.plc-weekday {
font-size: 9px;
}
.plc-day {
font-size: 24px; }
.plc-day-suffix {
font-size: 12px;
}
.plc-time {
font-size: 10px;
}
.plc-event-title {
font-size: 18px; }
.plc-event-location {
font-size: 13px;
}
.plc-event-description {
font-size: 14px;
}
.plc-month-header {
font-size: 24px;
padding: 15px 20px;
top: 104px; }
.plc-month-header::before {
width: 40px;
height: 40px;
}
} .entry-content .plc-calendar-wrap {
margin-top: 30px;
} .entry-content,
.site-content,
.ast-container {
overflow: visible !important;
}  .calendar-subscribe-button {
background: #1959A0;
color: white;
padding: 14px 28px;
border: none;
border-radius: 6px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 2px 10px rgba(25, 89, 160, 0.3);
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
margin: 15px auto;
text-align: center;
}
.calendar-subscribe-button:hover {
background: #2070BB;
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(25, 89, 160, 0.4);
} .calendar-subscribe-floating {
background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
color: #1959A0;
padding: 12px 24px;
border: none;
border-radius: 25px;
font-size: 14px;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
box-shadow: 0 3px 15px rgba(212, 175, 55, 0.4);
display: flex;
align-items: center;
gap: 10px;
text-transform: uppercase;
letter-spacing: 1px;
position: fixed;
bottom: 30px; right: 100px; z-index: 1000;
opacity: 0;
visibility: hidden;
}
.calendar-subscribe-floating.visible {
opacity: 1;
visibility: visible;
}
.calendar-subscribe-floating:hover {
background: linear-gradient(135deg, #e8c547 0%, #f0d060 100%);
transform: scale(1.05);
box-shadow: 0 5px 20px rgba(212, 175, 55, 0.6);
}
.calendar-subscribe-floating .icon {
font-size: 16px;
background: rgba(25, 89, 160, 0.15);
width: 28px;
height: 28px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
} @media (max-width: 768px) {
.calendar-subscribe-button {
font-size: 14px;
padding: 10px 18px; margin: 10px auto; }
.calendar-subscribe-floating {
bottom: 30px; right: 70px; padding: 8px 16px;
font-size: 11px;
gap: 8px;
}
.calendar-subscribe-floating .icon {
width: 20px;
height: 20px;
font-size: 12px;
}
} @media (max-width: 400px) {
.plc-category-badge,
.plc-label-badge {
padding: 3px 8px;
font-size: 10px;
border-radius: 10px;
letter-spacing: 0.3px;
}
}
.calendar-modal {
display: none;
position: fixed;
z-index: 9999;
left: 0 !important;
top: 0 !important;
right: 0 !important;
bottom: 0 !important;
width: 100% !important;
height: 100% !important;
overflow: auto;
background-color: rgba(0, 0, 0, 0.4);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
}
.calendar-modal-content {
background-color: #fefefe;
margin: 10% auto;
padding: 30px;
border: none;
border-radius: 10px;
width: 90%;
max-width: 600px;
box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
position: relative;
}
.calendar-modal-close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
cursor: pointer;
position: absolute;
right: 15px;
top: 10px;
}
.calendar-modal-close:hover,
.calendar-modal-close:focus {
color: #000;
}
.calendar-modal h3 {
margin-top: 0;
color: #1959A0;
}
#iphoneInstructions,
#androidInstructions {
margin-top: 20px;
padding: 15px;
background-color: #f5f5f5;
border-radius: 4px;
}  .plc-month-group[data-visible="false"] {
display: none;
} .plc-month-filter option:disabled {
color: #999;
font-style: italic;
} .plc-month-filter-wrap {
display: flex;
align-items: center;
gap: 15px;
flex-wrap: wrap;
}
.plc-month-range-group {
display: flex;
align-items: center;
gap: 8px;
}
.plc-month-range-label {
font-weight: 600;
color: #495057;
font-size: 14px;
}
.plc-month-filter {
padding: 8px 12px;
font-size: 14px;
border: 2px solid #ced4da;
border-radius: 6px;
background: #fff;
cursor: pointer;
transition: border-color 0.2s ease;
}
.plc-month-filter:focus {
outline: none;
border-color: #1959A0;
box-shadow: 0 0 0 3px rgba(25, 89, 160, 0.1);
}
.plc-month-filter:hover {
border-color: #adb5bd;
} @media screen and (max-width: 768px) {
.plc-month-filter-wrap {
flex-direction: column;
align-items: stretch;
gap: 10px;
}
.plc-month-range-group {
flex-direction: column;
align-items: stretch;
gap: 5px;
}
.plc-month-filter {
width: 100%;
}
}  .lity-wrap {
position: relative !important;
} .lity-close { width: 50px !important;
height: 50px !important;
line-height: 50px !important;
border-radius: 50% !important; background: #dc3545 !important;
color: white !important;
border: 3px solid white !important; box-shadow: 0 3px 10px rgba(0,0,0,0.3) !important; position: absolute !important;
top: -15px !important;
right: -15px !important;
z-index: 9999 !important; font-size: 32px !important;
font-weight: bold !important;
text-align: center !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
padding: 0 !important; transition: all 0.2s ease !important;
cursor: pointer !important; opacity: 1 !important;
}
.lity-close:hover {
background: #c82333 !important;
transform: scale(1.15) !important;
box-shadow: 0 5px 15px rgba(220, 53, 69, 0.5) !important;
opacity: 1 !important;
} .plc-modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
z-index: 999999;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
}
.plc-modal-overlay.plc-modal-visible {
opacity: 1;
}
.plc-modal {
background: white;
border-radius: 8px;
max-width: 900px;
max-height: 90vh;
width: 90%;
position: relative;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
transition: opacity 0.4s ease, transform 0.4s ease;
opacity: 1;
transform: scale(1);
}
.plc-modal-close {
position: absolute;
top: 15px;
right: 15px;
width: 40px;
height: 40px;
border: none;
background: #dc3545;
color: white;
font-size: 28px;
line-height: 1;
border-radius: 50%;
cursor: pointer;
z-index: 10;
transition: all 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
}
.plc-modal-close:hover {
background: #c82333;
transform: scale(1.1);
}
.plc-modal-content {
padding: 60px 40px 40px;
overflow-y: auto;
max-height: 90vh;
}
@media screen and (max-width: 768px) {
.plc-modal {
width: 95%;
max-height: 95vh;
}
.plc-modal-content {
padding: 50px 20px 20px;
}
} .plc-modal-content.plc-modal-loading {
min-height: 400px;
display: flex;
align-items: center;
justify-content: center;
} .plc-modal-spinner {
width: 50px;
height: 50px;
border: 4px solid rgba(25, 89, 160, 0.2);
border-top-color: #1959A0;
border-radius: 50%;
animation: plc-spin 0.8s linear infinite;
}
@keyframes plc-spin {
to { transform: rotate(360deg); }
} .plc-modal.plc-modal-hidden {
opacity: 0;
transform: scale(0.9);
}  .plc-modal-overlay > .plc-modal-spinner {
position: absolute;
top: 50%;
left: 50%;
margin-top: -25px; margin-left: -25px; z-index: 1000000;
} .plc-admin-modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
z-index: 999999;
overflow-y: auto; -webkit-transform: translateZ(0);
transform: translateZ(0);
}
.plc-admin-modal.active {
display: flex;
align-items: flex-start;
justify-content: center;
padding: 40px 20px;
}
.plc-admin-modal-content {
background: white;
border-radius: 12px;
max-width: 700px;
width: 100%;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
position: relative;
margin: auto;
transition: all 0.3s ease;
overflow: hidden;
}
.plc-admin-modal-header {
background: linear-gradient(135deg, #1959A0 0%, #2070BB 100%);
color: white;
padding: 20px 30px;
border-radius: 12px 12px 0 0;
display: flex;
align-items: center;
justify-content: space-between;
}
.plc-admin-modal-header h2 {
margin: 0;
font-size: 22px;
font-weight: 600;
color: white;
}
.plc-admin-modal-close {
background: rgba(255, 255, 255, 0.2);
border: none;
color: white;
width: 36px;
height: 36px;
border-radius: 50%;
cursor: pointer;
font-size: 24px;
transition: background 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
padding: 0;
}
.plc-admin-modal-close:hover {
background: rgba(255, 255, 255, 0.3);
}
.plc-admin-modal-body {
padding: 30px;
}
.plc-admin-form-group {
margin-bottom: 20px;
}
.plc-admin-form-group label {
display: block;
font-weight: 600;
color: #333;
margin-bottom: 8px;
font-size: 14px;
position: relative;
} .plc-add-new-btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
margin-left: 8px;
background: #1959A0;
color: white;
border: none;
border-radius: 3px;
cursor: pointer;
transition: background-color 0.2s ease;
vertical-align: middle;
padding: 0;
}
.plc-add-new-btn:hover {
background: #144a7d;
text-decoration: none;
}
.plc-add-new-btn .dashicons {
font-size: 16px;
width: 16px;
height: 16px;
line-height: 1;
} .plc-refresh-btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
margin-left: 4px;
background: #28a745;
color: white;
border: none;
border-radius: 3px;
cursor: pointer;
transition: background-color 0.2s ease;
vertical-align: middle;
padding: 0;
}
.plc-refresh-btn:hover:not(:disabled) {
background: #218838;
}
.plc-refresh-btn:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.plc-refresh-btn .dashicons {
font-size: 16px;
width: 16px;
height: 16px;
line-height: 1;
} .plc-spin {
animation: plc-spin-animation 0.8s linear infinite;
}
@keyframes plc-spin-animation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.plc-admin-form-group input[type="text"],
.plc-admin-form-group textarea,
.plc-admin-form-group select {
width: 100%;
padding: 10px 12px;
border: 2px solid #ddd;
border-radius: 6px;
font-size: 14px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
transition: border-color 0.2s ease;
}
.plc-admin-form-group input[type="text"]:focus,
.plc-admin-form-group textarea:focus,
.plc-admin-form-group select:focus {
outline: none;
border-color: #1959A0;
box-shadow: 0 0 0 3px rgba(25, 89, 160, 0.1);
}
.plc-admin-form-group textarea {
min-height: 120px;
resize: vertical;
}
.plc-admin-checkbox-group {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 8px;
padding: 12px;
background: #f8f9fa;
border-radius: 6px;
}
.plc-admin-checkbox-label {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 12px;
background: #fff;
border: 2px solid #dee2e6;
border-radius: 5px;
cursor: pointer;
transition: all 0.2s ease;
font-size: 14px;
user-select: none;
}
.plc-admin-checkbox-label:hover {
border-color: #1959A0;
background: #f0f7ff;
}
.plc-admin-checkbox-label input[type="checkbox"] {
margin: 0 !important;
cursor: pointer;
width: 16px;
height: 16px;
flex-shrink: 0;
}
.plc-admin-checkbox-label input[type="checkbox"]:checked {
accent-color: #1959A0;
}
.plc-admin-radio-group {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 8px;
padding: 12px;
background: #f8f9fa;
border-radius: 6px;
}
.plc-admin-radio-label {
display: flex;
align-items: center;
gap: 10px;
padding: 12px 16px;
background: #f8f9fa;
border: 2px solid #e9ecef;
border-radius: 6px;
cursor: pointer;
transition: all 0.2s ease;
font-size: 14px;
}
.plc-admin-radio-label:hover {
border-color: #1959A0;
background: #f0f7ff;
}
.plc-admin-radio-label input[type="radio"] {
margin: 0;
cursor: pointer;
width: 18px;
height: 18px;
flex-shrink: 0;
}
.plc-admin-radio-label input[type="radio"]:checked + span {
font-weight: 600;
color: #1959A0;
}
.plc-admin-modal-footer {
padding: 20px 30px;
border-top: 1px solid #e9ecef;
display: flex;
gap: 12px;
justify-content: space-between;
align-items: center;
}
.plc-admin-btn {
padding: 10px 20px;
border: none;
border-radius: 6px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
}
.plc-admin-btn-primary {
background: #1959A0;
color: white;
}
.plc-admin-btn-primary:hover {
background: #14477a;
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(25, 89, 160, 0.3);
}
.plc-admin-btn-secondary {
background: #6c757d;
color: white;
}
.plc-admin-btn-secondary:hover {
background: #5a6268;
}
.plc-admin-btn-link {
background: transparent;
color: #1959A0;
text-decoration: underline;
padding: 10px 16px;
}
.plc-admin-btn-link:hover {
color: #14477a;
background: #f0f7ff;
}
.plc-admin-loading {
display: none;
text-align: center;
padding: 40px;
min-height: 600px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.plc-admin-loading.active {
display: flex;
}
.plc-admin-spinner {
width: 40px;
height: 40px;
border: 4px solid rgba(25, 89, 160, 0.2);
border-top-color: #1959A0;
border-radius: 50%;
animation: plc-spin 0.8s linear infinite;
margin: 0 auto 15px;
}
.plc-admin-success {
background: #d4edda;
color: #155724;
padding: 12px 20px;
border-radius: 6px;
margin-bottom: 20px;
border-left: 4px solid #28a745;
display: none;
}
.plc-admin-success.active {
display: block;
}
.plc-admin-error {
background: #f8d7da;
color: #721c24;
padding: 12px 20px;
border-radius: 6px;
margin-bottom: 20px;
border-left: 4px solid #dc3545;
display: none;
}
.plc-admin-error.active {
display: block;
} .plc-inline-add-form {
margin-top: 12px;
padding: 16px;
background: #f8f9fa;
border: 2px solid #1959A0;
border-radius: 6px;
}
.plc-inline-form-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 16px;
padding-bottom: 12px;
border-bottom: 1px solid #ddd;
}
.plc-inline-form-header strong {
color: #1959A0;
font-size: 15px;
}
.plc-inline-form-cancel {
background: none;
border: none;
font-size: 24px;
line-height: 1;
color: #666;
cursor: pointer;
padding: 0;
width: 24px;
height: 24px;
}
.plc-inline-form-cancel:hover {
color: #d32f2f;
}
.plc-inline-form-field {
margin-bottom: 12px;
}
.plc-inline-form-field label {
display: block;
font-weight: 600;
color: #333;
margin-bottom: 6px;
font-size: 13px;
}
.plc-inline-form-field input[type="text"],
.plc-inline-form-field input[type="email"],
.plc-inline-form-field input[type="tel"] {
width: 100%;
padding: 8px 10px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
}
.plc-inline-form-field input[type="checkbox"] {
margin-right: 6px;
}
.plc-inline-form-row {
display: flex;
gap: 10px;
margin-bottom: 12px;
}
.plc-inline-form-row .plc-inline-form-field {
flex: 1;
margin-bottom: 0;
}
.plc-inline-form-actions {
display: flex;
gap: 10px;
margin-top: 16px;
padding-top: 12px;
border-top: 1px solid #ddd;
}
.plc-btn-primary {
background: #1959A0;
color: white;
border: none;
padding: 10px 20px;
border-radius: 4px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: background-color 0.2s ease;
}
.plc-btn-primary:hover:not(:disabled) {
background: #144a7d;
}
.plc-btn-primary:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.plc-btn-secondary {
background: #28a745;
color: white;
border: none;
padding: 10px 20px;
border-radius: 4px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: background-color 0.2s ease;
display: inline-flex;
align-items: center;
gap: 6px;
}
.plc-btn-secondary:hover:not(:disabled) {
background: #218838;
}
.plc-btn-secondary:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.plc-inline-form-message {
margin-top: 12px;
padding: 10px;
border-radius: 4px;
font-size: 14px;
display: none;
}
.plc-success-msg {
background: #d4edda;
color: #155724;
padding: 8px 12px;
border-radius: 4px;
border: 1px solid #c3e6cb;
}
@media screen and (max-width: 768px) {
.plc-admin-modal-content {
max-width: 100%;
}
.plc-admin-modal-header,
.plc-admin-modal-body,
.plc-admin-modal-footer {
padding: 20px;
}
.plc-admin-modal-footer {
flex-direction: column;
gap: 10px;
}
.plc-admin-btn {
width: 100%;
}
}  .plc-event-card.plc-status-cancelled {
border-left: 4px solid #dc3545;
background-color: #fff5f5;
}
.plc-event-card.plc-status-cancelled .plc-event-title {
color: #dc3545;
}
.plc-event-card.plc-status-rescheduled {
border-left: 4px solid #dc3545;
background-color: #fff5f5;
}
.plc-event-card.plc-status-rescheduled .plc-event-title {
color: #dc3545;
}
.plc-event-card.plc-status-postponed {
border-left: 4px solid #ffc107;
background-color: #fffbf0;
} .plc-event-status-reason {
font-size: 14px;
font-style: italic;
color: #666;
margin-top: 8px;
padding: 8px 12px;
background: rgba(0, 0, 0, 0.05);
border-radius: 4px;
} .plc-event-reschedule-info {
font-size: 14px;
font-weight: 600;
color: #dc3545;
margin-top: 8px;
padding: 8px 12px;
background: rgba(220, 53, 69, 0.1);
border-radius: 4px;
border-left: 3px solid #dc3545;
}.wk-top-bar {
background: #363537;
color: #ffffff;
padding: 8px 0;
font-size: 14px;
border-bottom: none; position: relative;
z-index: 99998;
margin-bottom: 0; }
.wk-top-bar-inner {
max-width: 100%;
margin: 0;
padding: 0 10px;
}
.wk-top-bar-menu {
display: flex;
align-items: center;
list-style: none;
margin: 0;
padding: 0;
gap: 0;
}
.wk-top-bar-menu > li {
margin: 0;
padding: 0;
}
.wk-top-bar-menu > li a {
color: #ffffff;
text-decoration: none;
display: flex;
align-items: center;
gap: 6px;
transition: opacity 0.2s;
padding: 4px 10px;
}
.wk-top-bar-menu > li a:hover {
opacity: 0.8;
}
.wk-top-bar-menu .menu-icon {
display: inline-flex;
align-items: center;
}
.wk-top-bar-menu .menu-icon svg {
display: block;
}  .wk-top-bar-menu > li:has(a[href*="login"]),
.wk-top-bar-menu > .wk-search-item {
margin-left: auto;
} .wk-top-bar-menu > li:has(a[href*="login"]) ~ .wk-search-item {
margin-left: 0;
} .wk-search-item {
position: relative;
}
.wk-search-toggle {
background: none;
border: none;
color: #ffffff;
cursor: pointer;
padding: 4px 10px;
display: flex;
align-items: center;
transition: opacity 0.2s;
}
.wk-search-toggle:hover {
opacity: 0.8;
}
.wk-search-toggle svg {
display: block;
}
.wk-search-dropdown {
position: absolute;
top: 100%;
right: 0;
margin-top: 8px;
background: #ffffff;
border: 1px solid #ddd;
border-radius: 4px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
padding: 12px;
min-width: 250px;
display: none;
z-index: 99999;
} @media (max-width: 768px) {
.wk-search-dropdown {
position: fixed !important;
top: 48px !important;
left: 10px !important;
right: 10px !important;
width: auto !important;
min-width: auto !important;
max-width: none !important;
}
}
.wk-search-dropdown.active {
display: block;
}
.wk-search-form {
display: flex;
gap: 8px;
}
.wk-search-field {
flex: 1;
padding: 8px 12px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
}
.wk-search-field:focus {
outline: none;
border-color: var(--ast-global-color-0);
}
.wk-search-submit {
padding: 8px 16px;
background: var(--ast-global-color-0);
color: #ffffff;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
transition: background 0.2s;
}
.wk-search-submit:hover {
background: var(--ast-global-color-1);
} @media (max-width: 768px) {
.wk-top-bar {
display: block;
}
.wk-top-bar-menu {
gap: 10px;
}
.wk-search-dropdown {
right: auto;
left: 0;
min-width: 200px;
}
} @media (max-width: 400px) {
.wk-top-bar-menu {
gap: 4px;
}
.wk-top-bar-menu > li a {
padding: 4px 6px;
font-size: 13px;
gap: 4px;
}
.wk-top-bar-menu .menu-icon svg {
width: 16px;
height: 16px;
}
} .ast-header-search,
.ast-search-menu-icon {
display: none !important;
} #wp-admin-bar-search {
display: none !important;
}   article.ast-article-post .post-thumb-img-content { width: calc(100% + 3em); margin-left: -1.5em; margin-right: -1.5em; margin-top: -1.5em; overflow: hidden;
border: 3px solid #d4e4f7; border-bottom: none; border-radius: 8px 8px 0 0; } article.ast-article-post .post-thumb-img-content img {
transition: transform 0.3s ease;
display: block;
width: 100%;
height: auto;
border-radius: 8px 8px 0 0;
}
article.ast-article-post:hover .post-thumb-img-content img {
transform: scale(1.05);
}  .main-header-bar {
padding-top: 0px;
padding-bottom: 0px;
margin-top: 0;
border-top: none;
}
.site-header .ast-builder-grid-row {
max-height: 65px;
overflow: visible; } .site-header .ast-builder-grid-row-container,
.site-header .site-primary-header-wrap {
overflow: visible;
}  .ast-separate-container article.ast-article-post {
box-shadow: none;
border: none;
border-radius: 8px;
padding-top: 20px;
padding-bottom: 20px;
margin-top: 20px;
margin-bottom: 20px;
transition: none;
} .ast-separate-container .ast-blog-layout-4-grid .ast-article-post {
padding-left: 1.5em;
padding-right: 1.5em;
} article.ast-article-post:hover {
box-shadow: none;
}  .ast-article-post .entry-title {
font-size: 2em !important;
font-weight: 800 !important;
line-height: 1.2 !important;
margin: 0 0 15px 0 !important;
color: #2070BB !important; }
.ast-article-post .entry-title a {
color: inherit !important;
text-decoration: none !important;
transition: color 0.3s ease;
} .ast-article-post .entry-title a:hover {
color: #003D7A !important; } .ast-article-post .entry-header {
margin-bottom: 10px !important; }
.ast-article-post .entry-meta {
text-align: center !important; margin-bottom: 8px !important; padding-left: 0 !important;
margin-left: 0 !important;
} .ast-article-post .blog-layout-4 .entry-header,
.ast-article-post .entry-header {
text-align: left !important;
}
.ast-article-post .entry-meta {
justify-content: flex-start !important;
display: flex !important;
}
.ast-article-post .entry-meta,
.ast-article-post .entry-meta a,
.ast-article-post .entry-meta .posted-on,
.ast-article-post .entry-meta .posted-on a,
.ast-article-post .posted-on,
.ast-article-post .posted-on span {
color: #d4af37 !important; }   .page table,
.single table {
width: 100%;
border-collapse: collapse;
border-radius: 8px;
overflow: hidden;
border: none;
}
.page table th,
.single table th {
background: #2070BB;
color: white;
padding: 15px;
text-align: left;
font-weight: 700;
border: none;
}
.page table tr:nth-child(odd) td,
.single table tr:nth-child(odd) td {
background: #f0f7ff;
}
.page table tr:nth-child(even) td,
.single table tr:nth-child(even) td {
background: #fefbf5;
}
.page table td,
.single table td {
padding: 12px 15px;
border: none;
} .page table td:first-child,
.single table td:first-child {
font-weight: 700;
color: #2070BB;
}  .wk-hero-section h1 {
color: #ffffff; text-shadow:
2px 2px 4px rgba(0, 0, 0, 0.8),
0 0 12px rgba(0, 61, 122, 0.6);
}
.wk-hero-section p {
color: #ffffff;
font-weight: 600; text-shadow:
2px 2px 4px rgba(0, 0, 0, 0.8),
0 0 12px rgba(0, 61, 122, 0.6);
}   .wk-hero-section h1 {
font-size: clamp(40px, 8vw, 80px); } @media (max-width: 768px) {
.wk-hero-section h1 {
white-space: nowrap;
overflow-x: auto;
font-size: clamp(28px, 7vw, 80px);
}
} .wk-news-header h2,
.wk-news-header h2.wk-news-title {
font-size: clamp(16px, 4vw, 36px); } @media (max-width: 400px) {
.wk-hero-section h1 {
font-size: 18px !important; }
.wk-hero-section p {
font-size: 11px !important; } .wk-news-header h2,
.wk-news-header h2.wk-news-title {
font-size: 14px !important; } .ast-article-post .entry-title {
font-size: 20px !important; } .entry-meta {
margin-top: 30px;
}
}
.entry-meta {
margin-top: 30px;
} @keyframes fadeOutBlue {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
} .wk-hero-overlay-gold {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(
to bottom,
rgba(242, 169, 0, 0.75) 0%,
rgba(242, 169, 0, 0.45) 50%,
rgba(242, 169, 0, 0.75) 100%
); box-shadow: inset 0 -80px 100px -40px rgba(0, 0, 0, 0.7);
pointer-events: none;
z-index: 2;
} .wk-hero-overlay-blue {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(
to bottom,
rgba(25, 89, 160, 0.65) 0%,
rgba(25, 89, 160, 0.08) 50%,
rgba(25, 89, 160, 0.65) 100%
); box-shadow: inset 0 -80px 100px -40px rgba(0, 0, 0, 0.95);
pointer-events: none;
z-index: 3;
animation: fadeOutBlue 1.5s ease-in-out forwards;
} .wk-hero-section > div:not(.wk-hero-overlay-gold):not(.wk-hero-overlay-blue) {
position: relative;
z-index: 10;
}  .wk-hero-section {
background-image: url(//westfieldkiwanis.org/wp-content/uploads/2025/10/kiwanis-ad-july-2021_cropped.jpg);
background-image: -webkit-image-set(
url(//westfieldkiwanis.org/wp-content/uploads/2025/10/kiwanis-ad-july-2021_cropped.webp) 1x
);
background-image: image-set(
url(//westfieldkiwanis.org/wp-content/uploads/2025/10/kiwanis-ad-july-2021_cropped.webp) 1x
); box-shadow: inset 0 -60px 80px -40px rgba(0, 0, 0, 0.6);
}  @media (max-width: 768px) {
.wk-hero-section {
background-image: url(//westfieldkiwanis.org/wp-content/uploads/2025/10/kiwanis-ad-july-2021_cropped-mobile.webp);
}
}  .site-header .main-header-bar,
.site-header.header-main-layout-1 {
border-top: none !important; margin-top: 0 !important;
outline: none !important;
background: linear-gradient(
to bottom,
#2070BB 0%,
#1959A0 50%,
#14467D 100%
); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5); border: none;
border-bottom: none; position: sticky !important;
top: 0 !important;
z-index: 9999 !important; transition: box-shadow 0.3s ease;
} .site-header.header-main-layout-1.sticky-active,
.site-header .main-header-bar.sticky-active {
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
} body:not(.home) .site-content {
padding-top: 0 !important;
margin-top: 0 !important;
} .ast-page-builder-template .site-content {
padding-top: 0 !important;
margin-top: 0 !important;
}
.ast-page-builder-template .entry-content {
margin-top: 0 !important;
padding-top: 0 !important;
}
.ast-page-builder-template .entry-header {
margin-top: 0 !important;
padding-top: 0 !important;
margin-bottom: 0 !important;
padding-bottom: 0 !important;
}  .entry-header {
text-align: center;
margin-bottom: 40px !important;
} .page .entry-title,
.single .entry-title {
font-size: 2.4em !important; color: #1959A0 !important; background: linear-gradient(135deg, #d4af37 0%, #f0d678 50%, #d4af37 100%);
padding: 15px 40px !important;
position: relative;
display: inline-block !important;
text-align: center;
margin: 0 !important;
font-weight: 600 !important;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); border-radius: 8px; } .page .entry-title::before,
.single .entry-title::before {
content: '';
position: absolute;
top: 5px;
left: -20px;
width: 0;
height: 0;
border-style: solid;
border-width: 0 0 62px 20px; border-color: transparent transparent #1959A0 transparent; border-bottom-left-radius: 8px; } .page .entry-title::after,
.single .entry-title::after {
content: '';
position: absolute;
top: 5px;
right: -20px;
width: 0;
height: 0;
border-style: solid;
border-width: 62px 20px 0 0; border-color: #1959A0 transparent transparent transparent; border-top-right-radius: 8px; } @media (max-width: 768px) {
.page .entry-title,
.single .entry-title {
font-size: 1.8em !important; padding: 12px 30px !important; margin-left: 15px !important;
margin-right: 15px !important;
}
} .admin-bar .site-header .main-header-bar,
.admin-bar .site-header.header-main-layout-1 {
top: 32px !important; } @media screen and (max-width: 782px) {
.admin-bar .site-header .main-header-bar,
.admin-bar .site-header.header-main-layout-1 {
top: 46px !important; }
} .site-header .main-navigation .menu-item > a,
.site-header .main-navigation .menu-item > .menu-link {
color: #ffffff;
font-weight: 500;
transition: all 0.3s ease;
} .site-header .main-navigation .menu-item > a:hover,
.site-header .main-navigation .menu-item > .menu-link:hover {
color: #F2A900; text-shadow: 0 0 8px rgba(242, 169, 0, 0.5);
} .site-header .main-navigation .sub-menu {
background: linear-gradient(
to bottom,
#1959A0 0%,
#14467D 100%
);
border-top: 2px solid #F2A900; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
} @media (min-width: 922px) {
.site-header .main-navigation .menu-item:hover > .sub-menu,
.site-header .main-navigation .menu-item.focus > .sub-menu {
visibility: visible !important;
opacity: 1 !important;
left: auto !important;
}
} .site-header .main-navigation .sub-menu .menu-item > a {
color: #ffffff;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
} .site-header .main-navigation .sub-menu .menu-item > a:hover {
background: rgba(242, 169, 0, 0.2);
color: #F2A900;
}   .site-header .site-logo-img {
position: relative;
z-index: 10000;
transform: translateY(25px);
} .site-header .custom-logo {
filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
border-radius: 50%; opacity: 1;
transition: opacity 0.3s ease;
} .site-header .custom-logo-link:hover .custom-logo {
opacity: 0.85;
} .main-header-bar,
.site-header,
#masthead {
overflow: visible;
border-top: none !important;
margin-top: 0 !important;
}  @media (max-width: 921px) { #masthead .main-header-bar,
#masthead.site-header .main-header-bar,
#masthead.header-main-layout-1,
.site-header#masthead,
#ast-mobile-header .main-header-bar {
padding-top: 2px;
padding-bottom: 2px;
border: none;
border-bottom: none;
} body.ast-main-header-nav-open #masthead .main-header-bar,
body.ast-main-header-nav-open #masthead.site-header .main-header-bar,
body.ast-main-header-nav-open #masthead.header-main-layout-1,
body.ast-main-header-nav-open .site-header#masthead,
body.ast-main-header-nav-open #ast-mobile-header .main-header-bar {
box-shadow: none;
} #masthead,
#masthead.site-header,
.ast-mobile-header-wrap {
filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.5));
-webkit-filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.5));
} body.ast-main-header-nav-open #masthead,
body.ast-main-header-nav-open #masthead.site-header,
body.ast-main-header-nav-open .ast-mobile-header-wrap {
filter: none;
-webkit-filter: none;
} .site-content > .ast-container {
margin-top: 25px;
} #ast-mobile-header .main-header-bar-navigation {
padding-top: 25px;
} .site-header .site-logo-img,
.site-header .site-logo-img .custom-logo-link {
transform: translateY(10px);
will-change: transform;
} .site-header .custom-logo {
display: block;
} .ast-button-wrap .menu-toggle {
color: #F2A900 !important;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
gap: 2px !important;
padding: 10px !important;
}
.menu-toggle .ast-mobile-svg,
.menu-toggle svg {
fill: #F2A900 !important;
color: #F2A900 !important;
width: 40px !important;
height: 40px !important;
}
.menu-toggle svg path {
fill: #F2A900 !important;
} .ast-button-wrap .menu-toggle::after {
content: "MENU" !important;
font-size: 9px !important;
color: #F2A900 !important;
font-weight: 700 !important;
letter-spacing: 1.5px !important;
display: block !important;
text-align: center !important;
}
} @media screen and (max-width: 782px) {
#wpadminbar {
position: fixed;
top: 0;
}
}  @media (max-width: 921px) { #ast-mobile-site-navigation .sub-menu {
display: none;
} #ast-mobile-site-navigation .sub-menu.ast-visible {
display: block !important;
visibility: visible !important;
position: static;
transition: max-height 0.15s ease;
} #ast-mobile-site-navigation .sub-menu .menu-item {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.25s ease, transform 0.25s ease;
} #ast-mobile-site-navigation .sub-menu.ast-visible .menu-item {
opacity: 1;
transform: translateY(0);
transition-delay: 0.15s; } .content-align-flex-start .ast-builder-layout-element {
background: linear-gradient(
to bottom,
#14467D 0%,
#1959A0 50%,
#2070BB 100%
);
} body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .menu-item,
body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .menu-item a,
body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .menu-item .menu-link,
body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .menu-item:hover > .menu-link,
body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .sub-menu,
body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .sub-menu .menu-item,
body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .sub-menu .menu-item a,
body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .sub-menu .menu-item .menu-link,
body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .sub-menu .menu-item:hover > .menu-link {
background: none;
background-color: transparent;
} body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .sub-menu {
border: none;
box-shadow: none;
} .ast-header-break-point .ast-mobile-header-wrap .ast-flex.stack-on-mobile {
background-color: transparent;
} .ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item > .menu-link,
.ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item > .menu-link:hover,
.ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item > .menu-link:active,
.ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item > .menu-link:focus,
.ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item > .menu-link:visited,
.ast-builder-menu-mobile .main-navigation .inline-on-mobile .menu-item > .ast-menu-toggle,
.ast-builder-menu-mobile .main-navigation .inline-on-mobile .menu-item > .ast-menu-toggle:hover,
.ast-builder-menu-mobile .main-navigation .inline-on-mobile .menu-item > .ast-menu-toggle:active,
.ast-builder-menu-mobile .main-navigation .inline-on-mobile .menu-item > .ast-menu-toggle:focus {
background-color: transparent;
} body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .menu-item .ast-menu-toggle {
background-color: transparent;
background: none;
color: #ffffff;
transition: transform 0.3s ease;
} body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .menu-item .ast-menu-toggle svg {
fill: #ffffff;
transform: rotate(-90deg);
transition: transform 0.3s ease, fill 0.3s ease;
} body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .menu-item.menu-expanded .ast-menu-toggle,
body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .menu-item.menu-expanded .ast-menu-toggle svg {
color: #F2A900;
fill: #F2A900;
} body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .menu-item.menu-expanded .ast-menu-toggle svg {
transform: rotate(0deg);
} body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .menu-item > .menu-link,
body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .sub-menu .menu-item > .menu-link {
color: #ffffff;
font-size: 16px;
} body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .menu-item > .menu-link:hover,
body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .sub-menu .menu-item > .menu-link:hover {
color: #F2A900;
} body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .current-menu-item > .menu-link,
body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .current_page_item > .menu-link,
body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .sub-menu .current-menu-item > .menu-link,
body.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu-mobile.ast-builder-menu .main-navigation .sub-menu .current_page_item > .menu-link {
color: #F2A900;
}
}    @media (max-width: 921px) {
.ast-header-break-point .main-header-bar-navigation {
padding-bottom: 30px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6); }
}  @media (min-width: 993px) {
body.home.blog.ast-separate-container #primary {
margin-top: 0;
}
}   body .site-footer,
body .site-below-footer-wrap,
body .ast-small-footer {
background-color: #323437 !important;
color: #ffffff;
box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
border-top: none;
} .site-footer a,
.site-below-footer-wrap a,
.ast-small-footer a {
color: #ffffff;
transition: color 0.3s ease;
}
.site-footer a:hover,
.site-below-footer-wrap a:hover,
.ast-small-footer a:hover {
color: #F2A900;
}   body.home.blog #main,
body.home.blog #primary,
body.home.blog .site-main {
display: block;
}
body.home.blog #primary > .ast-container {
justify-items: start;
} .wk-news-header {
width: 100% !important;
max-width: 100% !important;
margin-left: 0 !important;
margin-right: 0 !important;
text-align: left !important;
} .wk-news-title {
color: #1959A0 !important; } .wk-join-us h2,
.wk-contact-us h2,
body.home.blog .ast-container > h2:not(.entry-title),
body.home.blog h2:first-of-type:not(.entry-title) {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 20px;
background: linear-gradient(to bottom, #ffffff 0%, #e8f2ff 100%);
color: #1959A0 !important; padding: 20px 25px;
border-radius: 8px;
border: 2px solid #1959A0;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
margin-bottom: 50px;
text-align: left;
margin-right: auto;
max-width: 100%;
justify-self: start;
} body.home.blog .wk-news-header h2 {
width: fit-content;
} .wk-join-us h2,
.wk-contact-us h2 {
width: 100%;
max-width: none;
font-size: 42px !important; font-weight: 700 !important; margin: 0 0 20px 0 !important; } body.home.blog .wk-news-header h2:not(.entry-title) {
margin-left: 10px !important;
} .wk-join-us h2::before,
body.home.blog .ast-container > h2:not(.entry-title)::before,
body.home.blog h2:first-of-type:not(.entry-title)::before {
content: '';
display: block;
width: 50px;
height: 50px;
background: url(//westfieldkiwanis.org/wp-content/uploads/2025/10/correct-kiwanis-logo.png) no-repeat center;
background-size: contain;
flex-shrink: 0;
} .page .entry-header .post-thumb {
margin-top: 30px !important;
} .page .entry-content img,
.page .entry-content figure {
margin-top: 30px;
}  .page .entry-header .post-thumb,
.page .entry-content figure:not(.wp-block-table):not(.fg-item-inner),
.page .entry-content .wp-block-image {
position: relative;
display: inline-block;
border-radius: 8px;
overflow: hidden;
border: 3px solid rgba(0, 0, 0, 0.25);
} body.gradient-animation-weak .page .entry-header .post-thumb::after,
body.gradient-animation-weak .page .entry-content figure:not(.wp-block-table):not(.fg-item-inner)::after,
body.gradient-animation-weak .page .entry-content .wp-block-image::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.25) 100%);
border-radius: 8px;
z-index: 3;
pointer-events: none;
} body.gradient-animation-strong .page .entry-header .post-thumb::after,
body.gradient-animation-strong .page .entry-content figure:not(.wp-block-table):not(.fg-item-inner)::after,
body.gradient-animation-strong .page .entry-content .wp-block-image::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.8) 100%);
border-radius: 8px;
z-index: 3;
pointer-events: none;
}  body.gradient-animation-none .page .entry-header .post-thumb::before,
body.gradient-animation-none .page .entry-content figure:not(.wp-block-table):not(.fg-item-inner)::before,
body.gradient-animation-none .page .entry-content .wp-block-image::before {
display: none;
} body.gradient-animation-weak .page .entry-header .post-thumb::before,
body.gradient-animation-weak .page .entry-content figure:not(.wp-block-table):not(.fg-item-inner)::before,
body.gradient-animation-weak .page .entry-content .wp-block-image::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 300%;
height: 100%;
background: linear-gradient(120deg,
#7AA5D0 0%,
#8AB2D5 5%,
#9AC0DA 10%,
#B5D0E0 15%,
#D0D0B0 20%,
#E8D699 25%,
#EBD9A0 30%,
#E8D699 35%,
#D0D0B0 40%,
#B5D0E0 45%,
#9AC0DA 50%,
#8AB2D5 55%,
#7AA5D0 60%,
#8AB2D5 65%,
#9AC0DA 70%,
#B5D0E0 75%,
#D0D0B0 80%,
#E8D699 85%,
#EBD9A0 90%,
#E8D699 95%,
#D0D0B0 96.66%,
#B5D0E0 98.33%,
#7AA5D0 100%
);
border-radius: 8px;
z-index: 0;
animation: sweepGradient 48s linear infinite;
} body.gradient-animation-strong .page .entry-header .post-thumb::before,
body.gradient-animation-strong .page .entry-content figure:not(.wp-block-table):not(.fg-item-inner)::before,
body.gradient-animation-strong .page .entry-content .wp-block-image::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 300%;
height: 100%;
background: linear-gradient(120deg,
#4A90D9 0%,
#5BA0DC 5%,
#6DB0DF 10%,
#A8C8E1 15%,
#C8C89E 20%,
#E4C674 25%,
#E8CE6B 30%,
#E4C674 35%,
#C8C89E 40%,
#A8C8E1 45%,
#6DB0DF 50%,
#5BA0DC 55%,
#4A90D9 60%,
#5BA0DC 65%,
#6DB0DF 70%,
#A8C8E1 75%,
#C8C89E 80%,
#E4C674 85%,
#E8CE6B 90%,
#E4C674 95%,
#C8C89E 96.66%,
#A8C8E1 98.33%,
#4A90D9 100%
);
border-radius: 8px;
z-index: 0;
animation: sweepGradient 24s linear infinite;
}
@keyframes sweepGradient {
0% { transform: translateX(0); }
100% { transform: translateX(-66.66%); }
} body:not(.gradient-animation-none) .page .entry-header .post-thumb img,
body:not(.gradient-animation-none) .page .entry-content figure:not(.wp-block-table):not(.fg-item-inner) img,
body:not(.gradient-animation-none) .page .entry-content .wp-block-image img {
display: block;
border-radius: 8px;
filter: grayscale(100%) contrast(1.25);
mix-blend-mode: multiply;
position: relative;
z-index: 2;
margin-bottom: 0;
} body.gradient-animation-none .page .entry-header .post-thumb img,
body.gradient-animation-none .page .entry-content figure:not(.wp-block-table):not(.fg-item-inner) img,
body.gradient-animation-none .page .entry-content .wp-block-image img {
display: block;
border-radius: 8px;
position: relative;
z-index: 2;
margin-bottom: 0;
} .page .entry-content h3.wp-block-heading {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 20px;
background: linear-gradient(to bottom, #ffffff 0%, #e8f2ff 100%);
color: #1959A0; padding: 20px 25px;
border-radius: 8px;
border: 2px solid #1959A0;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
margin-bottom: 50px;
text-align: left;
margin-right: auto;
max-width: 100%;
justify-self: start;
} .page .entry-content h3.wp-block-heading::before {
content: '';
display: block;
width: 50px;
height: 50px;
background: url(//westfieldkiwanis.org/wp-content/uploads/2025/10/correct-kiwanis-logo.png) no-repeat center;
background-size: contain;
flex-shrink: 0;
}  .ast-separate-container.ast-desktop .ast-blog-layout-4-grid .ast-row {
background-color: #f5f5f5;
}   @media (max-width: 768px) {  .wk-join-us h2::before,
body.home.blog .ast-container > h2:not(.entry-title)::before,
body.home.blog h2:first-of-type:not(.entry-title)::before {
width: 35px;
height: 35px;
} body.home.blog .wk-news-header h2 {
margin-bottom: 0;
} body.home.blog .ast-container {
padding-top: 0;
margin-top: 0;
}
body.home.blog #primary {
margin-top: 0;
padding-top: 0;
}
body.home.blog #content {
padding-top: 0;
margin-top: 0;
} .ast-separate-container article.ast-article-post {
margin-bottom: 70px;
position: relative;
} article.ast-article-post::after {
content: '';
position: absolute;
bottom: -45px;
left: 10%;
width: 80%;
height: 3px;
background: linear-gradient(to right, transparent, #1959A0, transparent);
} article.ast-article-post:last-child::after {
display: none;
}
} .wk-contact-us .wpforms-container,
.wk-join-us .wpforms-container {
font-family: inherit;
}
.wk-contact-us .wpforms-field-label,
.wk-join-us .wpforms-field-label {
font-weight: 600;
color: #333;
margin-bottom: 8px;
font-size: 15px;
}
.wk-contact-us .wpforms-field input[type="text"],
.wk-contact-us .wpforms-field input[type="email"],
.wk-contact-us .wpforms-field input[type="tel"],
.wk-contact-us .wpforms-field textarea,
.wk-join-us .wpforms-field input[type="text"],
.wk-join-us .wpforms-field input[type="email"],
.wk-join-us .wpforms-field input[type="tel"],
.wk-join-us .wpforms-field textarea {
border: 2px solid #e0e0e0;
border-radius: 8px;
padding: 12px 16px;
font-size: 15px;
transition: all 0.2s ease;
background: white;
width: 100%;
}
.wk-contact-us .wpforms-field input[type="text"]:focus,
.wk-contact-us .wpforms-field input[type="email"]:focus,
.wk-contact-us .wpforms-field input[type="tel"]:focus,
.wk-contact-us .wpforms-field textarea:focus,
.wk-join-us .wpforms-field input[type="text"]:focus,
.wk-join-us .wpforms-field input[type="email"]:focus,
.wk-join-us .wpforms-field input[type="tel"]:focus,
.wk-join-us .wpforms-field textarea:focus {
border-color: #1959A0;
outline: none;
box-shadow: 0 0 0 3px rgba(25, 89, 160, 0.1);
}
.wk-contact-us .wpforms-submit-container,
.wk-join-us .wpforms-submit-container {
margin-top: 20px;
}
.wk-contact-us .wpforms-submit,
.wk-join-us .wpforms-submit {
background: linear-gradient(to bottom, #2070BB, #1959A0);
color: white;
border: none;
border-radius: 8px;
padding: 14px 32px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(25, 89, 160, 0.3);
}
.wk-contact-us .wpforms-submit:hover,
.wk-join-us .wpforms-submit:hover {
background: linear-gradient(to bottom, #1959A0, #14467D);
box-shadow: 0 6px 16px rgba(25, 89, 160, 0.4);
transform: translateY(-2px);
}
.wk-contact-us .wpforms-submit:active,
.wk-join-us .wpforms-submit:active {
transform: translateY(0);
box-shadow: 0 2px 8px rgba(25, 89, 160, 0.3);
}  html, body {
max-width: 100vw;
overflow-x: clip; } #page,
.site,
.ast-container,
.site-content {
max-width: 100%;
overflow-x: clip;
}   .page .entry-content h2 {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 20px;
background: linear-gradient(to bottom, #ffffff 0%, #e8f2ff 100%);
color: #1959A0 !important;
padding: 20px 25px;
border-radius: 8px;
border: 2px solid #1959A0;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
margin-bottom: 0px;
text-align: left;
margin-right: auto;
max-width: 100%;
justify-self: start;
} .page .entry-content h2::before {
content: '';
display: block;
width: 50px;
height: 50px;
background: url(//westfieldkiwanis.org/wp-content/uploads/2025/10/correct-kiwanis-logo.png) no-repeat center;
background-size: contain;
flex-shrink: 0;
}  .page .entry-content .foogallery img {
margin-top: 0 !important;
} .foogallery .fg-caption {
display: none !important;
} .foogallery .fg-item-inner {
border: 3px solid #D4AF37 !important;
border-radius: 8px !important;
overflow: hidden !important;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
transition: all 0.3s ease !important;
}
.foogallery .fg-item-inner:hover {
transform: scale(1.08) !important;
box-shadow: 0 12px 24px rgba(25, 89, 160, 0.3) !important;
border-color: #1959A0 !important;
}
.foogallery .fg-item-inner img {
transition: transform 0.3s ease !important;
}
.foogallery .fg-item-inner:hover img {
transform: scale(1.05) !important;
}  .lity-container {
width: 800px !important;
max-width: 85vw !important;
height: auto !important;
max-height: 85vh !important; margin-top: 100px !important;
}
.lity-content {
max-height: 85vh !important;
overflow-y: auto !important;
width: 100% !important;
}   .site-footer,
.site-below-footer-wrap,
.ast-small-footer,
footer {
position: static !important;
}  .ast-article-post .entry-meta,
.ast-article-post .entry-meta a,
.ast-article-post .entry-meta .posted-on,
.ast-article-post .entry-meta .posted-on a,
.ast-article-post .entry-meta .posted-on .published,
.ast-article-post .posted-on,
.ast-article-post .posted-on span,
.ast-article-post .posted-on .published,
.ast-post-format- .ast-article-inner .posted-on,
.ast-post-format- .ast-article-inner .posted-on .published,
.ast-post-format- .ast-article-inner .published,
div.ast-post-format- div.ast-article-inner span.posted-on,
div.ast-post-format- div.ast-article-inner span.published,
.posted-on,
.posted-on .published,
.published,
.byline,
.cat-links,
.tags-links,
.comments-link {
color: #000000 !important; } .ast-post-format- .blog-layout-4 .ast-article-inner .posted-on,
.ast-post-format- .blog-layout-4 .ast-article-inner .posted-on .published,
.ast-post-format- .blog-layout-4 .ast-article-inner span.published,
article.ast-post-format- .blog-layout-4 .ast-article-inner .posted-on,
article.ast-post-format- .blog-layout-4 .ast-article-inner span.published[itemprop="datePublished"] {
color: #000000 !important;
} .ast-article-post .read-more a,
.ast-article-post .ast-read-more-container a,
.read-more a {
display: inline-block !important;
background-color: #D4AF37 !important; color: #000000 !important; padding: 10px 20px !important;
border-radius: 20px !important; text-decoration: none !important;
font-weight: 500 !important;
transition: background-color 0.3s ease !important;
}
.ast-article-post .read-more a:hover,
.ast-article-post .ast-read-more-container a:hover,
.read-more a:hover {
background-color: #C5A028 !important; color: #000000 !important; }  .ast-scroll-to-top-right,
.ast-scroll-to-top-left {
z-index: 1001 !important;
}.ast-hb-account-login-wrapper .ast-hb-account-login{position:fixed;left:50%;top:50%;padding:35px;max-height:550px;width:340px;margin:0 0 0 -170px;background-color:#f1f1f1;z-index:1000011;box-shadow:0 3px 6px rgba(0,0,0,.3)}.ast-hb-account-login-wrapper .ast-hb-account-login-bg{position:fixed;top:0;bottom:0;left:0;right:0;background:#000;opacity:.7;z-index:1000010;transition:all .3s}.ast-hb-account-login-wrapper .ast-hb-login-header .ast-hb-login-close{background:0 0;border:0;font-size:24px;line-height:1;padding:.4em;color:inherit;-js-display:flex;display:flex;box-shadow:none}.ast-hb-account-login-wrapper #loginform input[type=password],.ast-hb-account-login-wrapper #loginform input[type=text]{width:100%;max-width:100%;margin-top:10px;border:1px solid;background-color:transparent;vertical-align:middle}.ast-hb-account-login-form-footer a.ast-header-account-footer-link:not(:last-child) span:after{content:"|";margin:0 .4em}.ast-header-account-link.ast-account-action-link,.ast-header-account-link.ast-account-action-login,.ast-header-account-link.ast-account-action-login.customize-unpreviewable,.ast-header-break-point .ast-header-account-link{cursor:pointer;pointer-events:all}.ast-header-account{-js-display:flex;display:flex}.ast-hb-account-login-wrapper{visibility:hidden}.ast-hb-account-login-wrapper .ast-hb-login-header{-js-display:flex;position:absolute;right:0;top:0;display:flex;justify-content:flex-end;min-height:calc(1.2em + 24px)}.ast-hb-account-login-wrapper .ast-hb-account-login{transform:scale(.7);opacity:0;transition:all .3s;overflow:auto}.ast-hb-account-login-wrapper.show{visibility:visible}.ast-hb-account-login-wrapper.show .ast-hb-account-login{transform:scale(1) translateY(-50%);opacity:1}.ast-hb-login-body{height:100%;position:relative;line-height:1.5}.ast-hf-account-menu-wrap.ast-main-header-bar-alignment{position:relative}.main-header-bar .main-header-bar-navigation .ast-account-nav-menu{line-height:1.45}.ast-account-nav-menu{width:240px;background:#fff;left:-999em;position:absolute;top:0;z-index:99999;list-style:none;margin:0;padding-left:0;border:0;box-shadow:0 4px 10px -2px rgba(0,0,0,.1)}.ast-account-nav-menu .sub-menu{right:auto;top:0;margin-left:0}.ast-account-nav-menu .menu-item.focus>.sub-menu,.ast-account-nav-menu .menu-item:hover>.sub-menu{left:100%}.ast-account-nav-menu .ast-left-align-sub-menu.menu-item.focus>.sub-menu,.ast-account-nav-menu .ast-left-align-sub-menu.menu-item:hover>.sub-menu{left:-100%}.ast-account-nav-menu .menu-item .menu-link{padding:.9em 1em}.ast-account-nav-menu .menu-item{border-style:none}.ast-account-nav-menu .menu-item.menu-item-has-children>.menu-link:after{position:absolute;right:1em;top:50%;transform:translate(0,-50%) rotate(270deg)}.ast-above-header-bar .main-header-menu.ast-account-nav-menu>.menu-item,.ast-below-header-bar .main-header-menu.ast-account-nav-menu>.menu-item,.ast-primary-header-bar .main-header-menu.ast-account-nav-menu>.menu-item{height:auto;line-height:unset;bottom:-5px}.ast-header-account-wrap .woocommerce-MyAccount-navigation-link.is-active a{background:unset}.ast-header-account-wrap .menu-item:last-child>.menu-link{border-style:none}.ast-divider-wrapper{border:0}.ast-mobile-popup-content .ast-header-divider-element{justify-content:center}.ast-header-divider-element{position:relative}.ast-fb-divider-layout-vertical{position:relative}.ast-hb-divider-layout-vertical.ast-header-divider-element{height:100%}.ast-mobile-header-content .ast-builder-layout-element:not(.ast-builder-menu):not(.ast-header-divider-element),.ast-mobile-popup-content .ast-builder-layout-element:not(.ast-builder-menu):not(.ast-header-divider-element){padding:15px 20px}.footer-widget-area .ast-footer-divider-element{position:relative;align-items:center}.footer-widget-area .ast-divider-wrapper{display:inline-block}.ast-builder-footer-grid-columns .ast-fb-divider-layout-horizontal{-js-display:inline-flex;display:inline-flex;vertical-align:middle}[data-section*=section-fb-button-] .ast-builder-button-size-xs .ast-custom-button,[data-section*=section-hb-button-] .ast-builder-button-size-xs .ast-custom-button{font-size:13px;padding:8px 20px}[data-section*=section-fb-button-] .ast-builder-button-size-sm .ast-custom-button,[data-section*=section-hb-button-] .ast-builder-button-size-sm .ast-custom-button{font-size:15px;padding:10px 40px}[data-section*=section-fb-button-] .ast-builder-button-size-md .ast-custom-button,[data-section*=section-hb-button-] .ast-builder-button-size-md .ast-custom-button{font-size:17px;padding:15px 45px}[data-section*=section-fb-button-] .ast-builder-button-size-lg .ast-custom-button,[data-section*=section-hb-button-] .ast-builder-button-size-lg .ast-custom-button{font-size:19px;padding:20px 50px}[data-section*=section-fb-button-] .ast-builder-button-size-xl .ast-custom-button,[data-section*=section-hb-button-] .ast-builder-button-size-xl .ast-custom-button{font-size:21px;padding:25px 55px}.ast-fb-divider-layout-vertical{-js-display:flex;display:flex}.site-footer-section{position:relative}.ast-builder-language-switcher .ast-builder-language-switcher-menu{list-style:none;margin:0;padding:0;line-height:normal;-webkit-tap-highlight-color:transparent}.ast-builder-language-switcher-layout-vertical .ast-builder-language-switcher{display:block}.ast-builder-language-switcher-layout-vertical .ast-builder-language-switcher-menu{display:block}.ast-builder-language-switcher-layout-horizontal .ast-builder-language-switcher{-js-display:flex;display:flex}.ast-builder-language-switcher-layout-horizontal .ast-builder-language-switcher-menu{-js-display:flex;display:flex;flex-wrap:wrap}.ast-builder-language-switcher a{-js-display:flex;display:flex;align-items:center}.ast-lswitcher-item-footer,.ast-lswitcher-item-header{-js-display:inline-flex;display:inline-flex}span.ast-lswitcher-item-footer:last-child,span.ast-lswitcher-item-header:last-child{margin-right:0}.ast-header-sticky-active{position:fixed!important;right:0;left:0;margin:0 auto;z-index:99}.ast-footer-sticky-active .ast-custom-footer{position:fixed!important;right:0;left:0;bottom:0;margin:0 auto;z-index:99}.ast-custom-header{position:relative;z-index:99}.ast-custom-header.ast-header-sticky-active .fl-row-content-wrap{transition:padding .3s linear}.ast-custom-header.ast-header-sticky-active .fl-module-content{transition:all .3s linear}.ast-custom-header.ast-header-sticky-active .elementor-section-wrap{transition:padding .3s linear}.ast-custom-header.ast-header-sticky-active .elementor-row>.elementor-column>.elementor-element-populated{transition:all .3s linear}.ast-shrink-custom-header .ast-custom-header.ast-sticky-shrunk .fl-row-content-wrap{transition:padding .3s linear;padding-top:5px;padding-bottom:5px;box-sizing:border-box}.ast-shrink-custom-header .ast-custom-header.ast-sticky-shrunk .fl-module-content{margin-top:5px;margin-bottom:5px;transition:all .3s linear}.ast-shrink-custom-header .ast-custom-header.ast-sticky-shrunk .fl-module-content.fl-node-content img{max-height:50px;width:auto}.ast-shrink-custom-header .ast-custom-header.ast-sticky-shrunk .elementor-section-wrap{transition:padding .3s linear;box-sizing:border-box}.ast-shrink-custom-header .ast-custom-header.ast-sticky-shrunk .elementor-section-wrap img{max-height:50px;width:auto}.ast-shrink-custom-header .ast-custom-header.ast-sticky-shrunk .elementor-row>.elementor-column>.elementor-element-populated{max-height:60px;transition:all .3s linear}.ast-custom-header.ast-header-sticky-active{top:0;width:100%;transition:ease-out}.single-advanced-hook .ast-no-title,.single-advanced-hook .hentry{margin:0}.js_active .ast-plain-container.single-advanced-hook .entry-header{margin:0}.summary.entry-summary+[CLASS*=astra-advanced-hook]{clear:both}.single-astra-advanced-hook .wp-block-buttons,.single-astra-advanced-hook .wp-block-uagb-buttons{margin-bottom:1.5em}.single-astra-advanced-hook .ast-container{flex-wrap:wrap}.single-astra-advanced-hook .ast-container>*{width:100%}.main-header-bar-wrap .ast-search-box.header-cover{z-index:7}.ast-below-header-wrap .ast-search-box.header-cover #close,.ast-below-header-wrap .ast-search-box.header-cover .search-field{font-size:1.8em}.ast-below-header-wrap .ast-search-box.header-cover .search-submit{font-size:1.5em}.ast-search-box.full-screen,.ast-search-box.header-cover{display:none;opacity:0;transition:opacity .3s ease-in-out,display .3s ease-in-out;width:100%;height:100%}.ast-search-box.full-screen .search-field,.ast-search-box.header-cover .search-field{background:0 0;border:0;color:#fafafa;box-shadow:none;text-align:left;padding:0}.ast-search-box.full-screen .search-submit,.ast-search-box.header-cover .search-submit{background:var(--ast-fs-search-submit-background,0 0);padding:0;border-radius:50%;box-shadow:none;color:var(--ast-fs-search-text-color,#9e9e9e);transition:all .7s ease-In;outline:0;border:0;vertical-align:middle}.ast-search-box.full-screen .ast-search-wrapper,.ast-search-box.header-cover .ast-search-wrapper{position:absolute;width:100%;left:50%;top:50%;transform:translate(-50%,-50%)}.ast-search-box.full-screen .ast-search-wrapper .search-form,.ast-search-box.header-cover .ast-search-wrapper .search-form{line-height:normal}.ast-search-box.full-screen #close,.ast-search-box.header-cover #close{color:#fafafa;transform:rotate(0);font-size:2em;cursor:pointer;z-index:9;font-weight:400}.ast-search-box.full-screen .search-field::-webkit-input-placeholder,.ast-search-box.header-cover .search-field::-webkit-input-placeholder{color:#fafafa}.ast-search-box.full-screen .search-field:-moz-placeholder,.ast-search-box.header-cover .search-field:-moz-placeholder{color:#fafafa}.ast-search-box.full-screen .search-field::-moz-placeholder,.ast-search-box.header-cover .search-field::-moz-placeholder{color:#fafafa}.ast-search-box.full-screen .search-field:-ms-input-placeholder,.ast-search-box.header-cover .search-field:-ms-input-placeholder{color:#fafafa}.ast-search-box.header-cover{position:absolute;background:rgba(25,25,25,.96);top:0;z-index:10}.ast-search-box.header-cover .search-field{font-size:2em;line-height:2;width:100%}.ast-search-box.header-cover .ast-container{position:relative}.ast-search-box.header-cover .close,.ast-search-box.header-cover .search-submit,.ast-search-box.header-cover .search-text-wrap{display:inline-block}.ast-search-box.header-cover .search-text-wrap{width:calc(100% - 2.5em);vertical-align:middle}.ast-search-box.header-cover .search-submit{font-size:1.7em;margin-right:2em}.ast-search-box.header-cover #close{vertical-align:middle;backface-visibility:hidden}.ast-search-box.full-screen{position:fixed;background:rgba(25,25,25,.96);top:0;left:0;z-index:999}.ast-search-box.full-screen .ast-search-wrapper .large-search-text{text-align:center;color:#e2e2e2;font-size:1.5em;font-weight:400;transition-delay:50ms;transition:all .3s ease-in-out}.ast-search-box.full-screen .ast-search-wrapper fieldset{border:0;padding:2.5em 0 1em;border-bottom:2px solid var(--ast-border-color)}.ast-search-box.full-screen .ast-search-wrapper .search-field{font-size:2em;padding-left:20px;line-height:1.7;width:92%;vertical-align:middle}.ast-search-box.full-screen .ast-search-wrapper .search-form{width:70%;margin:20px auto}.ast-search-box.full-screen .ast-search-wrapper .search-submit{font-size:var(--ast-fs-search-font-size, 1.7em)}.ast-search-box.full-screen #close{position:absolute;color:#fafafa;right:1em;line-height:1;cursor:pointer;z-index:9;font-weight:400;font-size:2em;top:1.5em;backface-visibility:hidden}.ast-search-box.full-screen ::-webkit-input-placeholder{opacity:0}.ast-search-box.full-screen ::-moz-placeholder{opacity:0}.ast-search-box.full-screen :-ms-input-placeholder{opacity:0}.ast-search-box.full-screen :-moz-placeholder{opacity:0}@media (max-width:420px){.ast-search-box.full-screen ::-webkit-input-placeholder{opacity:1}.ast-search-box.full-screen ::-moz-placeholder{opacity:1}.ast-search-box.full-screen :-ms-input-placeholder{opacity:1}.ast-search-box.full-screen :-moz-placeholder{opacity:1}}.ast-hfb-header .ast-search-box.full-screen.full-screen ::-webkit-input-placeholder{opacity:.5}.ast-hfb-header .ast-search-box.full-screen.full-screen ::-moz-placeholder{opacity:.5}.ast-hfb-header .ast-search-box.full-screen.full-screen :-ms-input-placeholder{opacity:.5}.ast-hfb-header .ast-search-box.full-screen.full-screen :-moz-placeholder{opacity:.5}.site-header .ast-inline-search.ast-search-menu-icon .search-form{padding-left:0;padding-right:0}.site-header .ast-inline-search.ast-search-menu-icon .search-field{padding-left:1em;padding-right:2em}.ast-inline-search.ast-search-menu-icon{position:relative;transform:none;left:0;right:0}.ast-inline-search.ast-search-menu-icon .search-submit{display:block;background:0 0;border:none;position:absolute;height:100%;right:.25em;padding:0;top:0;font-size:1.3em;color:#757575}.ast-header-break-point .ast-inline-search.ast-search-menu-icon .search-form{padding:0}.ast-header-break-point .site-header .ast-inline-search.ast-search-menu-icon .search-field{padding-right:2em}.ast-header-break-point .ast-search-box.full-screen .ast-search-wrapper .search-field{width:80%}.ast-header-custom-item-inside.ast-desktop .main-header-menu .ast-search-menu-icon.full-screen,.ast-header-custom-item-inside.ast-desktop .main-header-menu .ast-search-menu-icon.header-cover{display:none}.ast-header-break-point .ast-swap-above-header-sections .ast-above-header-section-1 .ast-search-menu-icon .search-form{right:-1em;left:auto;padding-left:0;padding-right:3em}.ast-header-break-point .ast-swap-above-header-sections .ast-above-header-section-1 .search-field{padding-right:0;padding-left:1em}.ast-header-break-point .ast-swap-above-header-sections .ast-above-header-section-2 .ast-search-menu-icon .search-form{left:-1em;right:auto;padding-right:0;padding-left:3em}.ast-header-break-point .ast-swap-above-header-sections .ast-above-header-section-2 .search-field{padding-left:0;padding-right:1em}.ast-header-break-point .ast-above-header .ast-above-header-section-1 .ast-inline-search.ast-search-menu-icon .search-field{padding-right:0}.ast-header-break-point .ast-swap-above-header-sections.ast-mobile-header-stack .ast-above-header .ast-above-header-section-2 .ast-search-menu-icon .search-form{padding-left:0;left:auto;padding-right:2em}.ast-header-break-point .ast-swap-above-header-sections.ast-mobile-header-stack .ast-above-header .ast-above-header-section-2 .ast-search-menu-icon.slide-search .search-form{left:-1em;padding-left:2em}.ast-header-break-point .ast-swap-above-header-sections.ast-mobile-header-stack .ast-above-header .ast-above-header-section-1 .search-field{padding-right:0}.ast-header-break-point .ast-swap-above-header-sections.ast-mobile-header-stack .ast-above-header .search-field{padding-right:0;padding-left:1em}.ast-header-break-point .ast-above-header-mobile-stack .ast-above-header .ast-above-header-section-1 .ast-search-menu-icon.ast-inline-search .search-form{right:auto;padding-right:2em}.ast-header-break-point .ast-swap-below-header-sections .ast-below-header .below-header-section-2 .ast-search-menu-icon.ast-inline-search .search-form{left:0;padding-left:0;padding-right:2em}.ast-header-break-point .ast-swap-below-header-sections .below-header-section-1 .ast-search-menu-icon .search-form{right:-1em;left:auto;padding-left:0;padding-right:3em}.ast-header-break-point .ast-swap-below-header-sections .below-header-section-1 .search-field{padding-right:0;padding-left:1em}.ast-header-break-point .ast-swap-below-header-sections .below-header-section-2 .ast-search-menu-icon .search-form{left:-1em;right:auto;padding-right:0;padding-left:3em}.ast-header-break-point .ast-swap-below-header-sections .below-header-section-2 .search-field{padding-left:0;padding-right:1em}.ast-header-break-point .ast-below-header .below-header-section-1 .ast-inline-search.ast-search-menu-icon .search-field{padding-right:0}.ast-header-break-point .ast-swap-below-header-sections.site-header .ast-below-header .ast-inline-search.ast-search-menu-icon .search-field{padding-left:1em;padding-right:0}.ast-header-break-point .ast-swap-below-header-sections .ast-below-header .below-header-section-2 .ast-search-menu-icon .search-form{left:-1em;padding-left:3em;padding-right:1em}.ast-below-header-mobile-stack .ast-below-header .below-header-section-1 .ast-search-menu-icon.ast-inline-search .search-form{right:auto;padding-right:2em}.iphone.full-screen,.ipod.full-screen{position:fixed!important}@media (max-width:992px){.ast-above-header-mobile-stack .ast-above-header-section-1 .ast-search-menu-icon.ast-inline-search .search-form{left:auto}.ast-below-header-mobile-stack .below-header-section-1 .ast-search-menu-icon.ast-inline-search .search-form{left:auto}}@media (max-width:544px){.ast-search-box.full-screen .ast-search-wrapper .large-search-text{display:none}.ast-search-box.full-screen .ast-search-wrapper .search-field,.ast-search-box.full-screen .ast-search-wrapper .search-submit{font-size:1.6em}}