:root {
    --si_co1: #e55721;
    --si_co1a: #e5572117;
    --si_co2: #1a74b4;
}
/**
	SI : Slide Out Panel
**/
/****************************************************************************/
.sundaysPanel {
    position: fixed;
    z-index: 999;
    width: min(472px, 100%);
    height: 100vh;
    backdrop-filter: blur(10px);
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: all 0.33s ease-in-out;
    text-align: center;
    background: #fffa;
    box-shadow: none;
}
body.si__show .sundaysPanel {
    transform: translateY(0%) !important;
    box-shadow: 0 0 1rem 1rem #e5572117;
}
.sundaysPanelBackground {
    background: url(/images/Sundays--orange-triangles.png) no-repeat;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    grid-gap: 1em;
    padding: 2em 2em 0 2em;
    overflow: auto;
    justify-content: space-between;
}
.sundaysPanelBackground > a.si_close {
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    display: none;
}
body.si__show .sundaysPanelBackground > a.si_close {
    display: block;
}
.sundaysPanelBackground > a span {
    color: #fafafa98;
    align-items: flex-end;
    font-size: 0.75rem;
}
.sundaysPanelBackground > a span:hover {
    color: #fafafa98;
}
.icon-circle-cross:before {
    font-size: 2em;
}
.sundaysLogo {
    width: min(30vh, 250px);
    margin: auto;
}
.sundaysTextBox {
    border-radius: 40px;
    border: 4px solid var(--si_co1);
    background-color: #fff;
    padding: 2rem;
    text-align: left;
    margin-top: auto;
}
.sundaysTextBox h2 {
    font-size: 2.5em;
    margin: 0;
}
.sundaysTextBox p {
    font-size: 1.25em;
    margin-block: .5rem;
}

.sundaysTextBox p:last-child {
	line-height: 100%;
}

.sundaysTextBox p:last-child small {
    line-height: 125%;
    font-size: 0.75rem;
}


.sundaysPanel h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
}
.sundaysTextBox ul {
    padding-top: 5px;
}
.sundaysTextBox ul li {
    font-size: 1rem;
    margin-left: 0;
    display: flex;
    grid-gap: 0.5rem;
    align-items: baseline;
}
.sundaysTextBox ul li span {
    color: var(--si_co1);
}
.sundaysTextBox ul li span:hover {
    color: var(--si_co1);
}
.sundaysText {
    text-align: left;
    font-size: 10px;
    padding-inline: 2rem;
    overflow: auto;
    min-height: 150px;
    letter-spacing: 0.03rem;
}
.sundaysBottomLogo {
    border-radius: 40px 40px 0px 0px;
    background-color: var(--si_co1);
    width: calc(100% - 4rem);
    margin-top: auto;
}
.sundaysBottomLogo > img {
    width: 180px;
    padding: 1em;
}
.sundaysBG {
    width: 100vw;
    height: 100vh;
    display: block;
    background: #0009;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    transition:
        opacity 0.33s ease-in-out, width 0.33s ease-in-out;
    pointer-events: none;
}
body.si__show .sundaysBG {
    opacity: 1;
    pointer-events: all;
    width: calc(100vw - 472px);
}
@media screen and (max-width: 520px) {
    body.si__show .sundaysPanelBackground > a.si_close {
        left: 0.5rem;
    }
}
/**
	SI : Masthead CTA
**/
/****************************************************************************/
/**
	SI : Detail Page CTA
**/
/****************************************************************************/
#firstdetails > a.sundays {
    color: #000;
    font-family: 'citrfontreg';
    font-size: 0.8rem;
    text-decoration: none;
    padding: 1rem;
    border: 1px solid #eae7e4;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
    justify-content: space-between;
    grid-gap: 1rem;
    order: 10;
}
.sundays img {
    max-width: 80px;
    width: 100%;
    min-width: 40px;
}
span.sundaybtn {
    background: #ec623a;
    padding: 0.75rem;
    font-size: 0.7rem;
    border-radius: 2rem;
    color: #fff;
    font-family: 'citrfontbold';
    text-align: center;
}

@media screen and (max-width: 600px) {
    
    #firstdetails > a.sundays span {
        display:none;
    }
    
    #firstdetails > a.sundays span:not(.sundaybtn) {
        display: block;
        color: var(--si_co1);
        text-decoration: underline;
        font-family: 'citrfontbold';
        font-size: 1rem;
    }
}

/**
	SI : Shopping Cart
**/
/****************************************************************************/

.basket-wrapper :is(.new-basket-grid a.sundays) {
    display: inline-block;
    border: none;
    font-family: 'citrfontbold' !important;
    color: var(--si_co1);
    text-decoration: underline;
    position: relative;
}

.basket-wrapper :is(.new-basket-grid a.sundays)::after {
    content: "?";
    border: 1px solid;
    width: 17px;
    height: 17px;
    position: absolute;
    text-decoration: none;
    border-radius: 100%;
    text-align: center;
    line-height: 16px;
    top: 3px;
    font-size: 10px;
    right: -20px;
}

.step3confirm.si__show .sundaysBG {width: 100vw;}
                                                                                                                                                                                                                                                                                                                                                                                                   