/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 21 2025 | 15:13:10 */
@use 'bootstrap-variables';
@use 'bootstrap-mixins';


.promo-bar {
    overflow: hidden;
    position: relative;
    z-index: 10;
    font-family: var(--nectar-body-font,inherit);
}
.promo-bar .promo-flex {
    display: flex;
    justify-content: space-between;
    background-color: var(--color-accent-navy);
    align-items: center;
    padding: 0 2rem;
}
.promo-bar .first {
    color: #fff;
    text-transform: uppercase;
    font-family: var(--font-family-heading);
    font-size: 10px;
    font-weight: 700;
}
.promo-bar .promo-bar-logos {
    align-items: center;
    display: flex;
    gap: 10px;
}
.promo-bar .promo-bar-logos img.challenger {
    width: 100px;
    height: auto;
}
.promo-bar .promo-bar-logos img.usta {
    width: 60px;
    height: auto;
}
.promo-bar .promo-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 10px 0;
    min-height: 40px;
    background-color: var(--color-accent-navy);
}
/* — Message — */
.promo-bar .promo-bar__message {
    margin: 0;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}
.promo-bar p {
    font-size: 14px;
}
.promo-bar__message strong {
    font-family: var(--font-family-heading);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: .02em;
    font-size: 14px;
}
/* — Countdown — */
.promo-bar__countdown {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-family-heading);
    font-size: 18px;
    font-weight: 900;
    color: #000;
}
.promo-bar__countdown > span[data-days],
.promo-bar__countdown > span[data-hours],
.promo-bar__countdown > span[data-minutes],
.promo-bar__countdown > span[data-seconds] {
    min-width: 2.8ch;
    padding: 6px;
    line-height: 1;
    text-align: center;
    transition: opacity .3s ease;
    font-size: 14px;
    background: #FFFFFF1A;
    color: #fff;
    border-radius: 4px;
    font-variant-numeric: tabular-nums;
}
.promo-bar .desc {
    color: #FFFFFF80;
    font-weight: 400;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.promo-bar__countdown .sep {
	display: none;
    color: #fff;
    font-weight: 700;
    padding: 0 .15em;
}
.promo-bar__countdown[data-initiated="false"] span{opacity:0;}
.promo-bar__countdown[data-initiated="true"]  span{opacity:1;}


/* MOBILE */

@media screen and (max-width: 768px) {
	
	.promo-bar p {
		font-size: 10px;
	}
	.promo-bar-link {
		z-index: 9999;
	}
	.promo-bar__message strong {
		font-size: 9px;
	}
	.promo-bar__countdown {
		font-size: 12px;
	}
	
}


