/* Dev Tweaks */
.elementor-location-header {margin-top:-1px !important;}
.elementor-location-footer {height: 0px !important;overflow: hidden;}
body.page-id-6 {overflow:hidden;} /* Nimbl Staging Site */
body.page-id-911 {overflow:hidden;} /* Ingham Site */
#debug-text {
    position: absolute;
    background-color: blue;
    color: white;
    bottom: -70px;
    padding: 10px;
    font-weight: 600;
}

/* Sauce Globals */
:root {
    --sauceYellow:#F0B300;
    --sauceRed:#AF272F;
    --sauceCharcoal:#322E24;
}
.hide-element {
    display:none !important;
}
.drop-cursor {
    cursor:none !important;
}

/* Sauce Backgrounds */
#sauce-swiper-wrapper {
    background-color:var(--sauceRed);
    height:100vh;
    overflow:hidden;
}
.sauce-stage {
    position:fixed;
    inset:0;
    width:100vw;
    height:100dvh;
    display:block;
    animation:5s breathe infinite ease-in-out alternate;
}
@supports(height:100svh){ #sauce-swiper-wrapper, .sauce-stage{height:100svh} } /* old browser fallback */
@keyframes breathe {
    0% {}
    100% {transform:scale(1.03);rotate:0.5deg}
}

/* Chicken Cursor */
@keyframes chickenWiggle {
    0% {}
    100% {rotate:1deg}
}

/* Sauce Slices */
.removed-sauce {
    animation:0.5s sauceRemoval forwards linear
}
@keyframes sauceRemoval {
    0% {opacity:1}
    100% {opacity:0}
}

/* Sauce Banner */
#sauce-banner {
    position: absolute;
    background-color: var(--sauceYellow);
    top: 65px;
    width: 100%;
    z-index: 999;
    text-align: center;
    display: block;
}
#sauce-banner > a {
    width: 240px;
    object-fit: contain;
    position: absolute;
    top: -70px;
    left: 20px;
    transition:0.3s;
}
#sauce-banner > a > img {
    width:100%;
}
#sauce-banner > a:hover {
    transform:scale(0.95) rotate(2deg);
}
@font-face {
  font-family: 'CentraNo1-Black';
  src: url('assets/CentraNo1-Black.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
#sauce-banner > span {
    color: white;
    font-family: 'CentraNo1-Black';
    text-transform: uppercase;
    font-size: 72px;
    letter-spacing: 1.2px;
    line-height: 1.1;
    display: block;
    user-select: none;
}
@media(max-width:1920px) and (min-width:1550px){
    #sauce-banner > span {
        padding-left:250px;
    }
}
@media(max-width:1549px) and (min-width:1300px){
    #sauce-banner > span {
        padding-left:250px;
        font-size: 56px;
    }
    #sauce-banner > a {
        width:225px;
    }
}
@media(max-width:1299px) and (min-width:1025px){
    #sauce-banner > span {
        font-size: 42px;
        padding: 10px 0px 10px 235px;
    }
    #sauce-banner > a {
        width:225px;
    }
}
@media(max-width:1024px) and (min-width:768px){
    #sauce-banner > span {
        font-size: 32px;
        padding: 10px 0px 10px 170px;
    }
    #sauce-banner > a {
        width:150px;
        top: -42px;
    }
    #sauce-banner {
        top:40px;
    }
}
@media(max-width:767px){
    #sauce-banner > span {
        font-size: 38px;
        padding: 20px 7px 10px 7px;
    }
    #sauce-banner > a, #sauce-banner > a:hover {
        width: 150px;
        top: -90px;
        left: 50%;
        transform: translate(-50%, 0);
    }
    #sauce-banner {
        top: 90px;
    }
}

/* Starting Screen */
#sauce-start {
    position: absolute;
    z-index: 9;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 180px;
}
#sauce-start > span {
    background-color: var(--sauceCharcoal);
    color: white;
    font-family: 'CentraNo1-Black';
    font-size: 82px;
    letter-spacing: 2px;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-2deg);
    padding: 0px 30px;
    user-select: none;
}
.start-cta-ring .start-text-rotate {
    transform-origin: 100px 100px;
    animation: spin 15s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.start-cta-ring text {
    font: 400 14px / 1 'CentraNo1-Black';
    letter-spacing: 2.9px;
    text-transform: uppercase;
    fill: white;
}
.sauce-start-fadeout {
    animation:1s startFadeout linear forwards;
}
@keyframes startFadeout { to { opacity: 0; } }
#sauce-start-chicken {
    cursor:pointer;
}
@media(max-width:920px) and (min-width:768px){
    #sauce-start > span {
        font-size: 64px;
    }
}
@media(max-width:767px){
    #sauce-start {
        padding-top: 240px;
    }
    #sauce-start > span {
        font-size: 42px;
        width: 80%;
        line-height: 1;
        padding: 5px 20px;
    }
    .start-cta-ring {
        display:flex;
        justify-content:center;
    }
    .start-cta-ring > svg {
        max-width: 90vw;
        max-height: 90vw;
    }
}

/* Loading Screen */
#sauce-loader {
    background-color: var(--sauceCharcoal);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    right: 0%;
}
#sauce-loader > span {
    color: white;
    font-family: 'CentraNo1-Black';
    text-align: center;
    background-color: var(--sauceRed);
    text-transform: uppercase;
    font-size: 72px;
    letter-spacing: 5px;
    rotate: -3deg;
    display: block;
    width: 800px;
    user-select: none;
}
.sauce-loader-slide {animation:0.8s loadingSlide linear forwards;}
@keyframes loadingSlide {
    0% {right:0%;}
    99% {right:110%;}
    100% {right:110%;display:none;}
}
@media(max-width:850px){
    #sauce-loader > span {
        width: 80%;
        padding: 0px 20px;
        font-size: 48px;
        line-height: 1.1;
    }
}

/* EDM Signup */
#sauce-finish {
    position: absolute;
    bottom: 50px;
    right: 50px;
    user-select:none;
}
#sauce-finish > span {
    background-color: white;
    color: var(--sauceCharcoal);
    font-family: 'CentraNo1-Black';
    font-size: 36px;
    text-transform: uppercase;
    line-height: 1.1;
    padding: 0px 20px;
    letter-spacing: 1.2px;
    border-radius: 50px;
    cursor: pointer;
    user-select: none;
    transition:0.5s;
    display:block;
    animation:1.5s edmShake infinite ease-in-out alternate;
}
#sauce-finish > span:hover {
    background-color: var(--sauceYellow);
}
@keyframes edmShake {
    0% {rotate:0deg;}
    30% {rotate:0deg;}
    40% {rotate:1deg;}
    50% {rotate:0deg;}
    60% {rotate:-1deg;}
    70% {rotate:0deg;}
    100% {rotate:0deg;}
}
#sauce-cta-exit {
    position: absolute;
    background: #AF272FAA;
    width: 100%;
    height: 100%;
    z-index: 999;
}
#sauce-cta {
    position: fixed;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}
#sauce-cta-scrollable {
    background-color: white;
    padding: 20px;
    width: min(520px, calc(100vw - 50px));
    height: min(840px, calc(100vh - 100px));
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 30px;
    color: var(--sauceCharcoal);
}
#sauce-cta-inner {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
    font-family: 'CentraNo1-Black';
        text-align: center;
}
#sauce-cta-inner > p {
    font-size: 46px;
    line-height: 0.9;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
    font-family: 'CentraNo1-Black' !important;
    text-align:center;
}
#sauce-cta-inner > span {
    line-height: 1.2;
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    display: block;
}
#sauce-cta-inner > img {
    width:100%;
    max-width: 360px;
}
#sauce-cta-form {
  padding-bottom:20px;
}
.sauce-input-group {
    text-align: left;
    margin-bottom:10px;
    padding: 5px 10px;
}
.sauce-input-group label {
    color: white;
    font-size: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    user-select: none;
}
.sauce-input-group input {
    border: none;
    color: white;
    font-size: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow:none;
    outline:none;
    background-color:transparent;
    padding: 0px;
    font-family: 'CentraNo1-Black' !important;
}
#sauce-name-group {
    background-color:var(--sauceRed);
}
#sauce-email-group {
    background-color:var(--sauceYellow);
}
#sauce-cta-submit {
    background-color: var(--sauceCharcoal);
    color: white;
    padding: 10px 20px;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    user-select: none;
    cursor:pointer;
}
#sauce-cta-submit:hover {
    background-color: var(--sauceRed);
}
.sauce-button-disabled {

}
#sauce-cta-submit-response {
    font-size: 24px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
#sauce-terms-link {
    color:var(--sauceCharcoal);
    text-decoration: none;
    user-select: none;
    cursor:pointer;
    margin-bottom: 0px !important;
}
#sauce-terms-link:hover {
    color:var(--sauceRed);
}
#sauce-cta-close, #sauce-terms-close {
    position: absolute;
    right: -20px;
    top: -20px;
    background-color: var(--sauceCharcoal);
    color: white;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    font-size: 25px !important;
    align-content: center;
    user-select:none;
    cursor:pointer;
    z-index:999;
    font-family: 'CentraNo1-Black';
    text-align: center;
}
#sauce-cta-close:hover, #sauce-terms-close:hover {
    background-color: var(--sauceYellow);
}
#sauce-reveal {
    position: absolute;
    width: 60px;
    top: -50px;
    left: 0;
    background-color: var(--sauceYellow);
    border-radius: 50px;
    padding: 5px;
    z-index:999;
    display:none;
    user-select:none;
    cursor:pointer;
}
#sauce-reveal:hover {
    /* background-color:var(--sauceYellow); */
}
.sauce-revealed {
    animation:1s sauceRevealed linear forwards;
}
.answer-revealed {
    animation:2s answerRevealed linear forwards;
}
.answer-hidden {
    opacity:0;
}
#sauce-cta-terms {
    padding:20px;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#sauce-terms-wrapper {
    font-size:12px;
    font-family:Arial, Helvetica, sans-serif;
    line-height: 1;
}
#sauce-terms-wrapper h4 {
    font-weight: bold;
    line-height: 1;
    text-align: center;
    font-size: 24px;
    margin-top: 0;
}
#sauce-terms-wrapper p {
    margin: 20px 0px 5px 0px;
    font-weight: bold;
    font-size: 18px;
}
#sauce-terms-wrapper span {
    font-size: 12px;
}
#sauce-terms-wrapper ol, #sauce-terms-wrapper ul {
    
}
#sauce-terms-wrapper li {
    
}
@keyframes sauceRevealed {
    0% {opacity:1;}
    100% {opacity:0;}
}
@keyframes answerRevealed {
    0% {opacity:0;}
    100% {opacity:1;}
}
@media(max-width:767px){
    #sauce-reveal {
        display:block;
    }
    #sauce-finish {
        right: 50%;
        transform: translate(50%, 0px);
        width: 90%;
        text-align: center;
        bottom: 20px;
    }
    #sauce-finish > span {
        font-size:25px;
        padding:10px 20px;
    }
    #sauce-finish > span:hover {
        background-color:white;
    }
    #sauce-cta-close:hover, #sauce-terms-close:hover {
        background-color:var(--sauceCharcoal);
    }
}
