/* BTN CLASS DEFAULT */
button,
.btn {
    display: inline-block; /*not sure if this is necessary*/
    padding: 0.8rem 2rem;
    text-align: center;
    border: 0.2rem solid;
    border-radius: 0.2rem;
}

.btn:hover:enabled {
    transition: 0.25s ease;
    cursor: pointer;
}

.btnSvg {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn:disabled {
    background-color: var(--brownlight);
    color: var(--whitelight);
    border: var(--brownlight);
}
/* END BTN CLASS DEFAULT */

/* TOPBAR */
.topbar {
    width: 100%;
    /* background-color: transparent; */
    border-bottom: solid 0.05rem var(--greyblack);
}

.topbar__wrapper {
    padding: 0.5rem;
}

.topbar__wrapper,
.topbar__phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.topbar__phone svg,
.topbar__phone p {
    display: inline-block;
}

.topbar__phone svg {
    width: 1.8rem;
    height: 1.8rem;
    margin-right: 1rem;
    stroke-width: 2;
}

@media only screen and (min-width: 768px){
    .topbar__wrapper{
        padding: 0.8rem;
    }
}
/* END TOPBAR */

/* NAV */
nav {
    display: block;  /* for safari sticky, but still not working */
    position: -webkit-sticky;
    position: sticky;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: var(--alabaster);
    box-shadow: 0 4px 3px -3px rgba(0, 0, 0, 0.219);
    border-bottom: solid 0.05rem var(--greyblack);
}

.nav__wrapper {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__title {
    display: inline-block;
    width: 10rem;
}

.nav__right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.nav__bag svg,
.nav__icon svg,
.nav__close svg {
    width: 3rem;
    height: 3rem;
    stroke-width: 2;
    /* fill: var(--brown); */
    cursor: pointer;
}

.nav__bag {
    display: none;
    fill: none;
}

.bgOverlay {
    display: none;
    position: fixed;
    z-index: 2; /* stacking context??? */    
    inset: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0,0,0,0.5);
    cursor: pointer; 
}

.nav__listMobile {
    display: none;
    /*js= display: flex; align-items: center; justify-content: flex-end; */
    position: fixed;
    z-index: 3; /* stacking context??? */
    top: 0;
    right: 0;
    height: 100vh;
    width: 27rem;
    padding-right: 2rem;
    background-color: var(--alabaster);
    overflow: hidden; 
    transition: 0.3s ease-in; /* cant transition display, fix later*/
}

.nav__close {
	display: block;
	position: absolute;
	right: 1.9rem;
	top: 2.5rem;
	cursor: pointer;
}

.nav__list {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.nav__list li {
	display: block;
	/* text-align: right; */ /*since we already have flex-end?*/
	margin: 2rem;
    white-space: nowrap;
}

.nav__link__wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav__link__wrapper a,
.nav__link__wrapper svg {
    display: inline-block;
}

.nav__link__wrapper svg {
    width: 2rem;
    height: 2rem;
    stroke-width: 2;
    fill: var(--brown);
    margin: 0 0.5rem;
    cursor: pointer;
}

/* ONLINE/TABLE BUTTONS */
.btnOnline, 
.btnTable,
.btnMenu {
    background-color: transparent;
    border-radius: 0.2rem;
}

.btnOnline:hover, 
.btnTable:hover,
.btnMenu:hover {
    transition: 0.5s ease;
}

.btnOnlineNav,
.btnTableNav {
    width: 17.8rem;
    color: var(--white);
    border: 0.3rem double var(--claret);
    background-color: var(--claret);
}

.btnOnlineNav:hover,
.btnTableNav:hover {
    color: var(--claret);
    background-color: var(--alabster);
    border-color: var(--claret);  
}

.btnOnlineHero,
.btnTableHero {
    width: 100%;
    color: var(--white);
    border: 0.1rem solid var(--white);
}

.btnOnlineHero:hover,
.btnTableHero:hover {
    color: var(--black);
    background-color: var(--white);  
}

.btnMenu {
    width: 17.8rem;
    color: var(--white);
    border: 0.3rem double var(--white);
}

.btnMenu:hover {
    background-color: var(--white);
    color: var(--brown);
}
/* END ONLINE/TABLE BUTTONS */

/* @media only screen and (min-width: 768px) {
    (make navbar responsive in medium size screens)
} */

@media only screen and (min-width: 1024px) {

    .nav__listMobile {
        display: contents;
    }
    
    .nav__wrapper {
	    padding: 0;
        /* you need to center flex components properly (title is misaligned) */
    }
    
    .nav__title {
        order: 2;
        width: initial;
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav__title h1 {
        display: inline-block;
        font-size: 2.3rem;
        text-align: center;
    }

    .nav__right,
    .nav__close {
	    display: none;
    }

    .nav__list {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex: 1;
    }

    .nav__list li {
        display: inline-block;
        margin: 1rem;
    }

    .nav__list1 {
        order: 1;
    }

    .nav__list2 {
        order: 3;
    }
}
/* END NAV */

/* NAVORDER */
.navOrder {
    display: block; /* for safari sticky, but still not working */
    position: -webkit-sticky;
    position: sticky;
    z-index: 1;
    inset: 0 0 auto 0;
    box-shadow: 0 4px 3px -3px rgba(0, 0, 0, 0.219); /* remove later */
}

/* @media only screen and (min-width: 768px){ 
    .navOrder{
        position: sticky; 
        >> position: fixed initially, but got rid of topbar
    }
} */

/* SCROLLMENU */
.scrollmenu {
    position: relative;
    background-color: var(--sage);
    box-shadow: 0 4px 3px -3px rgba(0, 0, 0, 0.219);
}

.scrollmenu .container {
    max-width: 1300px;
}

.scrollmenu__wrapper {
    overflow: auto;
    white-space: nowrap;
    scrollbar-color: var(--alabaster) var(--sage);
    /* scrollbar-width: thin; */
}

.category__link {
	display: inline-block;
    padding: 1.4rem;
    font-weight: 600;
	text-align: center;
	color: var(--black);
}
/* END SCROLLMENU */
/* END NAVORDER */

/* MENU-BASKET */
@media only screen and (min-width: 1024px) {

    .menu-bskt__wrapper {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 5rem;
        z-index: 0;
        height: 100%;
        padding-bottom: 5rem;  /* not working*/
    }
}

/* MENU CONTENT */
.category {
    scroll-margin-top: 18rem;
}

.category__wrapper {
    padding-bottom: 2rem;
    margin: 0 1.5rem 4rem;
}

.category__title {
    margin-bottom: 2rem;
    border-bottom: 0.1rem solid var(--brown);
}

.category__content__wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 2rem;
}

.menu__item {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
    cursor: pointer;
    border: 0.1rem solid var(--greyblack);
    border-radius: 0.3rem;
    background-color: var(--offwhite);
}

.menu__item:hover,
.menu__item:active {             /*check this, stays active?*/
	border-color: var(--brown);
    transition: 0.8s ease;
}

.menu__item__header {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.menu__item__desc {
    font-size: 1.4rem;
}
/* span{                                         may be needed for menu
	display: flex;              
	border-bottom: 0.2rem dotted var(--black);
	flex-grow: 1;
	margin: 0 0.4rem 0.6rem;
} */

@media only screen and (min-width: 1024px) {

    .menu {
        position: relative;
        height: 100%; 
        flex: 2;
    }

    .bskt {
        flex: 1;
    }
}

/* END MENU CONTENT */
/* BASKET + RECEIPT*/
.bskt,
.rcpt {
    display: none;
    /* display: block; */
    /* lock scrolling when display: block; */
    position: fixed;
    inset: 0;
    z-index: 3;
    height: 100dvh;   /* idk if necessary since inset */
    background-color: var(--black);
}

.bskt__wrapper,
.rcpt__wrapper,
.acc__wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    inset: 0;
    height: inherit;
}

.acc__left__title {
    margin-bottom: 4rem;
}

@media only screen and (min-width: 1024px) {

    .bskt,
    .rcpt {
        display: block;
        z-index: 0;
        overflow: hidden;
        border: 0.1rem solid var(--greyblack);
        border-radius: 0.3rem;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }

    .bskt {
        position: -webkit-sticky;
        position: sticky;
        top: 30rem;
        /* inset: 30rem 5rem auto auto;   */
        width: 40rem;
        height: 50vh;
    }
    
    .rcpt {
        position: relative;
        /* position: -webkit-sticky;
        position: sticky;  not working + check scroll  */
        /* width: 100%; */
        inset: auto;
        width: 35rem;
        height: 40vh;
    }
    
    .chkt__wrapper,
    .acc__wrapper {
        display: flex;
        justify-content: center;
        gap: 7rem;
    }
    
    .acc__wrapper {
        flex-direction: row;
    }

    .acc__buttons__wrapper {
        display: flex;
        gap: 2rem;
        width: 20rem;
    }

    .acc__right .acc__buttons__wrapper {
        flex-direction: column;
    }

    .chkt__left,
    .acc__left {
        flex: 2;
    }

    .chkt__right,
    .acc__right {
        flex: 1;
        display: flex;
        justify-content: center;
    }
}

/* BASKET HEADER + RECEIPT HEADER */
.bskt__header,
.rcpt__header{ 
    position: relative;
    inset: 0 0 auto 0;
    padding: 2rem;
    background-color: var(--brown);
    border-bottom: 0.1rem solid var(--greyblack);
}
.bskt__header__wrapper,
.rcpt__header__wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
}
.rcpt__header__text h4,
.bskt__header__text h4{
    color: var(--white);
}
.bskt__header__close,
.rcpt__header__close{
    display: inline-block;
    position: absolute;
}
.bskt__header__close{
    left: 2rem;
}
.rcpt__header__close{
    right: 2rem;
}
.bskt__header__close svg,
.rcpt__header__close svg{
    width: 3rem;
    height: 3rem;
    stroke-width: 2;
    cursor: pointer;
    stroke: var(--white);
}
@media only screen and (min-width: 1024px){
    .bskt__header{
        display: none;
    }
    .rcpt__header__close{
        display: none;
    }
}
/* END BASKET HEADER */
/* BASKET OPTION */
.bskt__option{
    position: relative;
    background-color: var(--brown);
    padding: 1.5rem 1rem;
}
.bskt__option__wrapper{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 98%;
}
.bskt__option__colldel,
.bskt__option__time{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.btnColldel{
    flex: 1;
    color: var(--black);
    background-color: var(--offwhite);
    border-color: var(--alabaster);
}
.btnColldel:hover,
.btnColldel:active,
.btnColldel[data-option="1"]{
    background-color: var(--sage);
    border-color: var(--white);
    color: var(--black);
}
.slctTime{
    width: 100%;
    padding: 0.5rem;
    border: 0.1rem solid var(--greyblack);
    border-radius: 0.3rem;
    font-weight: 600; 
    color: var(--black);
}
.slctTime::picker-icon{
    padding-right: 1rem;
}
/* END BASKET OPTION */
/* BASKET CONTENT + RECIEPT CONTENT */
.bskt__content,
.rcpt__content{
    position: relative;
    flex-grow: 1;
    overflow-y: auto;
    padding: 2rem 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--greyblack) var(--alabaster);
    background-color: var(--offwhite);
}
.bskt__content__divider{
    margin: 1rem 0;
    border-bottom: var(--offwhite);
}
/* BASKET CONTENT/RCPT CONTENT - BSKT ITEMS/RCPT ITEMS */
.bsktItem,
.rcptItem{
    width: 100%;
}
.bsktItem__top,
.bsktItem__bottom,
.rcptItem__main{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bsktItem__top{
    margin-bottom: 1rem;
}
.rcptItem__qty-name{
    display: flex;
    align-items: center;
    gap: 2rem;
    overflow-wrap: break-word;
    width: 70%;
}
.rcptItem__detail,
.bsktItem__detail{
    display: inline-block;
}
.bsktItem__name{
    width: 70%;
}
.bsktItem__name,
.rcptItem__name{
    overflow-wrap: break-word;
    min-width: 1%;
}
.bsktItem p,
.bsktItem__qty h4{
    color: var(--black);
}
.bsktItem__qty{
    display: flex;
    justify-content: center;
    align-items: center;
}
.btnBsktItem{
    padding: 0.2rem;
    cursor: pointer;
}
.btnBsktMinus,
.btnBsktPlus{
    background: var(--persianorange);
    border: 0.1rem solid var(--persianorange);
    border-radius: 2rem;
}
.btnBsktRemove{
    padding: 0.2rem 0.1rem;
    cursor: pointer;
}
.btnBsktItem svg{
    pointer-events: none;
}
.btnBsktMinus svg,
.btnBsktPlus svg{
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 3.5;
    stroke: var(--white);
}
.btnBsktRemove svg{
    width: 1.8rem;
    height: 1.8rem;
    stroke-width: 2.5;
    stroke: var(--darkred);
    fill: none;
}
.bsktItem__number{
    margin: 0 2rem;
}
/* END BASKET CONTENT/RCPT CONTENT - BSKT ITEMS/RCPT ITEMS  */
/* BASKET CONTENT - CALC */
.calc__line{
    display: flex;
    justify-content: space-between;
}
.calc__line p{
    display: inline-block;
    color: var(--black);
}
.calc__discount p{
    color: var(--cadmiumgreen);
}
.calc__total p{
    font-weight: 600;
}
.calc__discount,
.calc__delivery{
    display: none;
}
/* END BASKET CONTENT - CALC */
/* END BASKET CONTENT */
/* BASKET CHECKOUT + VIEW BASKET */   /* jumping up on samsung s5 */
.bottomEl{             /* fix this, on mobile: hides total__calc, scroll needs to be dragged up to see */ 
    display: block;    /* for safari sticky, but still not working */
    position: -webkit-sticky;
    position: sticky;  /* needs to be changed to relative in desktop */ /* STICKY NOT FIXED, SEE VIDEO */
    inset: auto 0 0 0;
    background-color: var(--brown);
}
.bottomEl__wrapper{
    padding: 1.5rem 1rem;
}
.btnBottomEl{
	display: flex;
	justify-content: space-between;
    width: 100%;			/* if button control used keep this. if anchor tag used remove this */
	background: var(--offwhite);
    border: 0.2rem solid var(--white);
}
.btnBottomEl:hover{
	background: var(--brown);
}
.btnBottomEl:hover h4{
    color: var(--white);
}
@media only screen and (min-width: 1024px){
    .viewBskt{
        display: none;
    }
    .bskt__checkout{
        position: relative;
        inset: auto 0 0 0;
    }
}
/* END BASKET CHECKOUT + VIEW BASKET */
/* END BASKET */
/* END MENU-BASKET */

/* CHKT */
fieldset {
    margin-bottom: 3rem;
}

/* adjustment for stripe css*/
.chkt__card {    
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);                   
    /* background-color: var(--grey);
    padding: 0 1rem 2rem 2rem;
    border-radius: 1rem;                       */
}

.chk-card-3-fields {
    font-style: normal;
    font-optical-sizing: auto;
    color: var(--black);
    font-size: 1.4rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

.chkt__card__name {                      
    /* grid-column: span 3; */
    grid-area: 1/1/2/4;
}

.chkt__card__num {
    /* grid-area: span 3; */
    grid-area: 2/1/3/4;
}

.chkt__card__exp {
    /* grid-column: span 1; */
    grid-area: 3/1/4/2;
}

.chkt__card__cvc {
    /* grid-column: span 1; */
    grid-area: 3/2/4/3;
}

@media only screen and (min-width: 768px) {

    /* .chkt__form fieldset:not(.chkt__card) */
    fieldset:not(.chkt__card, .acc__comm) {
        grid-template-columns: repeat(2, 1fr);
    }

    .chkt__del__note {
        grid-column: span 2;
        width: 100%;
    }

    .chkt__card {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }

    .chkt__card__name {                      
        grid-area: 1/1/2/3;
    }

    .chkt__card__num {
        grid-area: 2/1/3/3;
    }

    .chkt__card__exp {
        grid-area: 2/3/3/4;
    }

    .chkt__card__cvc {
        grid-area: 2/4/3/5;
    }
}
/* END CHKT */

/* QUANTITY */
.qty {
    display: none;
    /* display: flex; put in js*/
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    z-index: 2;
    height: 100vh;
}

.qtyModal {
    width: min(80%, 50rem);
    background-color: var(--offwhite);
    border-radius: 0.3rem;
    box-shadow: 0 4px 3px -3px rgba(0, 0, 0, 0.219);
}

.qtyModal__wrapper {
    padding: 3rem 2rem;
}

.qtyModal__item {
    margin-bottom: 1rem;
}

.qtyModal__item__desc,
.qtyModal__item__allergy p {
    display: inline-block;
    font-size: 1.6rem;
}

.qtyModal__item__allergy {
    display: none;
    /* display: flex; */
    align-items: center;
}

.qtyModal__item__allergy svg {
    width: 1rem;
    height: 1rem;
    margin-left: 0.8rem;
    stroke-width: 5;
    fill: var(--black);
    cursor: pointer;
}

.qtyModal__main {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0 2rem 0;
}

.btnQtyModal {
	background-color: var(--persianorange);
    padding: 0.2rem;
    border: 0.1rem solid var(--persianorange);
    border-radius: 5rem;
}

.btnQtyModal svg {
    width: 2.5rem;
    height: 2.5rem;
    stroke-width: 4;
    stroke: var(--white);
    fill: none;
    cursor: pointer;
}

.qtyModal__main__number {
    margin:0 2rem;
}

#btnAddBskt {
    display: flex;
    justify-content: center;
    width: 100%;
}
/* END QUANTITY */

/* FORM PAGES + OTHER FORMS */
.formPage__form div {
    width: 100%;
}

.formPage__wrapper,
.formPage__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.formPage__form {
    width: min(100%, 53rem)
}

.formPage__title,
.formPage__text {
    margin-bottom: 1rem;
    text-align: center;
}

.btnForm {
    /* button fonts!!!!!!!!!! */
    width: 100%;
    color: var(--white);
    background-color: var(--brown);
    border: 0.2rem solid var(--brown);
    border-radius: 0.2rem;
}

/* .btnForm:hover:enabled {
    
} */
/* END FORM PAGES + OTHER FORMS*/

/* INPUTS, LEGEND */
legend {  /*does not become a grid element*/
    margin-bottom: 1.5rem;
}

.input__wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

label {
    display: block;
}

input, select, textarea, .input {
    position: relative;
    background-color: var(--offwhite);
    border: 0.1rem solid var(--greyblack);
    border-radius: 0.3rem;
    padding: 0.8rem;
}

input:focus, .input:focus, 
select:focus, 
textarea:focus {
    border: 0.1rem solid var(--white);
    outline: 0.1rem solid var(--brown);
}

.option-default {
    color: var(--lightgrey);
}

option:not(.option-default) {
    color: var(--black);
}

select, option {
    cursor: pointer;
}

/*------------------------------------------------------------------
   https://www.jaybranding.com/en/code/html5-default-click-input-field-to-show-calendar/  
   html input type="date" formating for 
   click anyware in the input field to show calendar (normally clicking on the icon right will pop the calander
*/

/* ::-webkit-calendar-picker-indicator is the pseudo element selection for the icon at right of the date input

then make it absolute
*/
.input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    inset: 0;
    height: auto;    
    width: auto;
    background: transparent;
    color: transparent;
    cursor: pointer;
}
/*----------------------------------------------------------*/

/* css floating label template */
/* .input__wrapper{
    position: relative;
}
.input{
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 0.01rem solid var(--greyblack);
    width: 100%;
    outline: none;
}
.label{
    position: absolute;
    left: .75rem;
    top: .5rem;
    background: var(--white);
    padding-inline: .3em;
    transition: transform 200ms;
    pointer-events: none;
    transform-origin: left;
    translate: -.3em;
}
.input::placeholder {
    opacity: 0;
}
.input:focus + .label,
.input:not(:placeholder-shown) + .label {
    transform: translateY(calc(-50% - .25rem)) scale(.8);
    color: var(--darkyellow);
}
.input:focus {
    border: 1px solid var(--darkyellow);
} */
/* END INPUTS, LEGEND */

/*  SIGN */
.sign{
    margin: 2rem 0 5rem;
}
.sign__wrapper, 
.signNew, 
.signOld, 
.sign__form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sign__wrapper{
    gap: 3rem;
}
.signNew,
.signOld,
.sign__form{
    gap: 1rem;
}
.signNew,
.signOld, 
.sign__divider{
    flex: 1;
}
.sign__divider{
    display: none;
}
.sign__dividerMobile{
    width: 90%;
}
.sign__form,
.sign__form div{
    width: 100%;
}
.btnSign{
    width: 100%;
}
.sign__note{
    background-color: var(--offwhite);
    color: var(--black);
    font-size: 1.4rem;
    padding: 1rem;
    border: 0.02rem solid var(--persianorange);
    border-radius: 1rem;
}

@media only screen and (min-width: 1024px){
    .sign{
        margin: 10rem 0 15rem;
    }
    .sign__wrapper{
        flex-direction: row;
        gap: 15rem;
        padding: 0 12rem;
    }
    .signNew{
        order: 1;
    }
    .sign__divider{
        display: inline-block;    
        border-left:0.05rem solid #b8c5d3; 
        border-right:0.05rem solid #647883; 
        height: 40%;
        position:absolute;
    }
    .sign__dividerMobile{
        display: none;
    }    
}
/* END SIGN */

/* FOOTER */
footer{
    position: relative;
    inset: auto 0 0 0;
    padding: 4rem 0 6rem;
    background-color: var(--brown);
    border-bottom: solid 0.05rem var(--brownborder);
    border-top: solid 0.05rem var(--brownborder);
}
.footer__subtitle,
.footer__subcol ul li a{
    color: var(--alabaster);
}
.footer__wrapper{
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.footer__title{
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--alabaster);
}
.footer__subtitle{
    margin-bottom: 1rem;
}
.footer__socials ul li{
    display: inline-block;
    margin: 0.2rem;
}
.footer__socials ul{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer__socials__link{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    background-color: var(--alabaster);
    border: 0.1rem solid var(--persianorange);
    border-radius: 0.5rem;
}
.footer__socials__link svg{
    width: 3rem;
    height: 3rem;
    stroke-width: 1.2;
    stroke: var(--brown);
    fill: none;
    cursor: pointer;
}
/* .footer__socials__fb svg{
    
}
.footer__socials__ig svg{
    
} */
.footer__socials__tt svg{
    padding: 0 0.2rem;
}
.footer__subcol ul li{
    margin: 0.5rem 0;
}
.copyright{
    position: relative;
    inset: auto 0 0 0;
    padding: 1rem 0;
    background-color: var(--brown);
}
.copyright__text{
    text-align: center;
    font-size: 1.3rem;
    color: var(--alabaster);
}
@media only screen and (min-width: 768px) {
    footer{
        padding: 6rem 0 10rem;
    }
    .footer__wrapper{
        flex-direction: row;
        gap: 5rem;
    }
    .footer__title{
        width: 20rem;
    }
    .footer__col1{
        flex: 2;
    }
    .footer__subcol{
        flex: 1;
    }
}
/* END FOOTER */

/* OFFERS */
.offers {
    padding: 5rem 0;
}

.offers__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 1rem;
}

.offers__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background-color: var(--tblack);
    border-radius: 0.3rem;
}

.offers__item p {
    text-align: center;
    color: var(--black);
}

.offers__item__text1 {
    font-size: 3rem;
    font-weight: 700;
}

.offers__item__text2 {
    font-family: "Domine", serif;
    font-size: 2rem;
    font-weight: 600;
}

.offers__item__text {
    text-align: center;
    color: var(--black);
}

.wrapper1 {

    margin-bottom: 20px;

    .offers__item:nth-child(even) {
        background-color: #f27ccc;
    }

    .offers__item:nth-child(odd) {
        background-color: #00c0cd;
    }
}

.wrapper2 {
    .offers__item:nth-child(even) {
        background-color: var(--persianorange);
    }

    .offers__item:nth-child(odd) {
        background-color: var(--sage);
    }
}

@media only screen and (min-width: 768px) {

    .offers__wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* END OFFERS */

/* HERO */
.hero {
    background-image: url(./images/set1.jpg);
    background-size: cover;
}

.hero__left {
    display: none;
}

.hero,
.hero__right,
.hero__right__wrapper,
.hero__main,
.hero__list {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__right__wrapper {
    padding: 3rem 2rem;
    margin: 2rem;
    background-color: var(--tbrown);
}

.hero__main {
    gap: 2rem;
    flex-direction: column;
    padding: 0 5rem;
}

.hero__slogan {
    color: var(--white);
    text-align: center;
    font-family: "Domine", serif;
    font-weight: 700;
    font-size: 3.2rem;
}

.hero__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
}

.imgSet {
    width: 90%;
    /* border: 8rem solid var(--alabaster); */
}
/* .imgDip5, .imgDip6{
    width: 90%;
} */

.hero__link {
    margin: 0rem 1rem;
}

.imgDeliveroo {
    width: 5rem;
}

.imgJusteat {
    width: 5rem
}

.imgUbereats {
    width: 5rem;
    border-radius: 1rem;
}

@media only screen and (min-width: 768px) {

    .hero {
        background-image: none;
        justify-content: unset;
        align-items: unset;
    }

    .hero__right,
    .hero__left {
        flex: 1;
    }

    .hero__left {
        display: inline-block;
        min-height: 100%;
        background-image: url(./images/set1.jpg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .hero__right {
        background-image: url(./images/leaf4m.jpg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .hero__right__wrapper {
        background-color: transparent;
    }

    .imgDeliveroo {
        width: 9rem;
    }

    .imgJusteat {
        width: 9rem
    }

    .imgUbereats {
        width: 8rem;
    }

    /* .dip5,
    .dip6{
    width: 20%;
    }
    .hero__img__wrapper{
    display: flex;
    flex-grow: 1;
    height: 100%;
    }
    .hero__img__wrapper1{
        align-items: flex-start;
    }
    .hero__img__wrapper2{
        align-items: flex-end; */
}

@media only screen and (min-width: 1024px) {

    .hero__right {
        min-height: 100vh;
    }

    .hero__slogan {
        font-size: 5rem;
    }
}
/* END HERO */

/* INTRO */
.intro__wrapper {
    padding: 8rem;
}

.intro__text {
    font-style: italic;
    text-align: center;
}
/* END INTRO */

/* GALLERY1 */
.gallery {
    background-color: var(--gold);
}

.gallery__wrapper,
.gallery__box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gallery__wrapper {
    gap: 5rem;
}

.gallery__box {
    gap: 2rem;
    width: 90%;
}

.gallery__box__text {
    font-family: "Domine", serif;
    font-weight: 500;
    font-size: 2rem;
    color: var(--white);
}

.imgStarter,
.imgDosa,
.imgPrawn,
.imgBiryani {
    height: 100%;
}

.imgStarter {
    width: 90%;
}

.imgDosa {
    width: 110%;
}

.imgBiryani {
    width: 75%;
}

.imgPrawn {
    width: 100%;
}

.btnMenu__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}

@media only screen and (min-width: 768px) {

    .gallery__wrapper {
        flex-direction: row;
    }

    .gallery__box {
        width: 25%;
    }

    .gallery__box__img {
        height: 25rem;
    }
}
/* END GALLERY1 */

/* GALLERY2 */
.gallery2 {
    background-color: var(--black-3);
    padding: 20px 0;
}

.gallery2__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;

    flex-wrap: wrap;
}

/* this will select all direct children */
.gallery2__wrapper > * {
    flex: 1 1 calc(50% - 2.5px);   
    /* padding: 1px;
    margin: 1px; 
    text-align: center; */
}

/* this will select all img in gallery2__wrapper */
.gallery2__wrapper img {
    max-width:100%;
}

@media only screen and (min-width: 768px) {

    .gallery2__wrapper {
        flex-wrap: nowrap;
    }

    .gallery2__wrapper > * {
        flex: 1 1 auto; 
    }
}

.dot-not-in-use {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}

/* Fading animation */
.fade-not-in-use {
    animation-name: fade;
    animation-duration: 1.5s;
}

.imgGuest-not-in-use {
    max-width: 290px;
    /* width: 100%; */

    /* max-width: 100%; */
    height: auto;
    /* Maintain aspect ratio */
    flex: 1 1 auto;
    /* Allow images to grow and shrink */
    object-fit: cover;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}
/* On smaller screens, decrease text size */
/* @media only screen and (max-width: 300px) {
  .text {font-size: 11px}
} */
@media only screen and (min-width: 768px) {
    .slides__wrapper{
        width: 10%;
    }
}
/* GALLERY2 */

/* INFO */ 
.homeSection,
.homeSection__wrapper,
.homeSection__sub{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.homeSection:nth-child(even){
    background-color: var(--gold);
}
.homeSection:nth-child(even) .homeSection__header{
    color: var(--white);
}
.homeSection__wrapper{
    gap: 3rem;
}
.homeSection__sub{
    gap: 2rem;
}
.homeSection__sub{
    flex: 1;
}
.homeSection__header{
    font-size: 3.5rem;
}
.homeSection2__header,
.desc{
    color: var(--white);
    text-align: center;
}
.desc__wrapper{
    padding: 0 5rem;
}
.imgSet7,
.imgSpice1{
    width: 100%;
}
.info__text{
    width: 100%;
    padding: 3rem;
    font-size: 2.5rem;
    cursor: default;
}
.info__divider{
    width: 100%;
    border: 0;
    height: 0.01rem;
    background: var(--brown);
    background-image: linear-gradient(to right, var(--greyblack), var(--brown), var(--greyblack));
}
.open__content{
    min-width: 30rem;
    margin-top: 1rem;
}
.open__line{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background-color: var(--alabaster);
    border-top: 0.05rem solid var(--gold);
    border-bottom: 0.05rem solid var(--gold);
    padding: 1rem 1.5rem;
}
.open__line:first-child{
    border-top: none;
}
.open__line:last-child{
    border-bottom: none;
}
.open__line:hover,
.open__line:hover .open__day,
.open__line:hover .open__time{
    transition: 0.25s ease;
    cursor: default;
}
/* .open__line:hover:nth-child(even){
    border-color: var(--persianorange);
    background-color: var(--persianorange);

}
.open__line:hover:nth-child(odd){
    background-color: var(--sage);
    border-color: var(--sage);
} */
.open__line:hover .open__day,
.open__line:hover .open__time{
    font-weight: 600;
    color: var(--brown);
}
.imgMap{
    /* border-radius: 2rem; */
    width: 100%;
}
.imgSpice{
    width: 100%;
}
@media only screen and (min-width: 768px) {
    .homeSection__wrapper{
        flex-direction: row;
    }
    .homeSection__img1{
        order: 1;
    }
    .imgSet7{
        width: 75%;
    }
}
/* END INFO */

/* COLLAPSIBLE */
.collapsible {
	background-color: var(--brown);
	color: var(--white);
	cursor: pointer;
	padding: 1.5rem;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
}

.active, .collapsible:hover {
	background-color: var(--lightyellow);
	color: var(--black);
}

.content2 {
	padding: 0 18px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	background-color: #f1f1f1;
}
/* END COLLAPSIBLE */

/* COLLECTION/DELIVERY OPTIONS */
.options__wrapper{
	position: absolute;
	z-index: 5;
	align-self: center;
	height: 10rem;
	width: 20rem;
	display: grid;
	grid-template-rows: repeat(4, 1fr);
	grid-template-columns: 1fr, 1fr;
	background-color: var(--white);
	color: var(--black);
}

.postcode__label{
	grid-area: 1/1/2/3;
}
/* END COLLECTION/DELIVERY OPTIONS */

/* ---Start Success page----- */
.success-container {
	max-width: 380px;
	margin: 50px auto;
	/*overflow: hidden;*/
}

.paper-container {
	position: relative;
	overflow: hidden;
	height: 467px;
}

.paper {
	background: var(--alabaster);
	height: 447px;
	position: absolute;
	margin: 0 12px;

	/*
    z-index: 2;
    margin-top: -12px;
	animation: print 5000ms cubic-bezier(0.68, -0.55, 0.265, 0.9) infinite;
	-moz-animation: print 5000ms cubic-bezier(0.68, -0.55, 0.265, 0.9) infinite;
    */
}

.main-contents {
	margin: 0 12px;
	padding: 24px;
}

.success-icon {
	text-align: center;
	font-size: 48px;
	background: #359d00;
	border-radius: 50%;
	width: 72px;
	height: 72px;
	margin: 16px auto;
	color: #fff;
}

.success-icon2 {
	text-align: center;
	font-size: 12px;
	background: #359d00;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	margin: 5px;
	color: #fff;
    display:inline-block;
}

.failed-icon {
	text-align: center;
	font-size: 48px;
	background: #a82e2e;
	border-radius: 50%;
	width: 72px;
	height: 72px;
	margin: 16px auto;
	color: #fff;
}

.failed-icon2 {
	text-align: center;
	font-size: 12px;
	background: #a82e2e;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	margin: 5px;
	color: #fff;
    display:inline-block;
}

.success-title {
	font-size: 22px;
	text-align: center;
	font-weight: bold;
	margin-bottom: 16px;
}

.success-description {
	font-size: 15px;
	line-height: 21px;
	text-align: center;
	margin-bottom: 24px;
}

.failed-title {
	font-size: 22px;
	text-align: center;
	font-weight: bold;
	margin-bottom: 16px;
}

/* .order-details {
	text-align: center;
	color: #333;
	font-weight: bold;

}

.order-number-label {
	font-size: 18px;
	margin-bottom: 8px;
}

.order-number {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	line-height: 20px;
	font-size: 20px;
	padding: 8px 0;
	margin-bottom: 24px;
} */

.complement {
	font-size: 18px;
	margin-bottom: 8px;
	color: #32a852;
}
/* ---End Success page----- */


/* START for debugging */
/*
div {
	border: 1px solid red;
}

section {
	border: 1px solid green;
}
*/
/* End fro debugging */


/* Start stripe card */
/*
h1 {
	color: #444;
}

.hide {
	display: none;
}

.success {
	margin: 1em 0;
	color: green;
}

#submit {
	margin-top: 3em;
	padding: 0.5em 2em;
	font-weight: bold;
}

#payment {
	max-width: 30em;
}
*/
/* not needed */
.form9 input,
.form9 button {
	display: block;
	margin: 1em 0;
}

.form9 input {
	min-width: 27rem;
	border: none;
	border-radius: 6px;
	padding: 8px 12px;
	box-shadow: inset 0 0 0 1px rgb(209, 213, 219);
	outline: none;
	color:#444;
}

.form9 input:focus {
	box-shadow: inset 0 0 0 2px #2563eb;
}

.form9 button {
	font-weight: bold;
	padding: 0.75em 1.5em;
	background-color: #2563eb;
	color: #fff;
	border: none;
	border-radius: 6px;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
	cursor: pointer;
}

.form9 button:hover {
	background-color: #1948ae;
}

.form9 button:active {
	background-color: #12347d;
	box-shadow: none;
}

.form9 button:disabled {
	background-color: #888;
	box-shadow: none;
}

/* Start stripe card  */


/*
CSS to style Stripe credit card fields on PMPro checkout page
Add this CSS to your theme's stylesheet.

https://gist.github.com/ipokkel/dae7315386e48e80c28a718339543a8b
*/

/* Base Stripe element styling*/
.StripeElement {
	background-color: #f8f8f8;
	padding: 10px;
	max-width: 90%;
	border: 1px solid #e0dddd;
	border-radius: 6px;
}

/* Set a red bottom border to field when empty */
.StripeElement--empty {
    border-bottom-color: #b22222;
}

/* Set a green bottom border to field when in focus */
.StripeElement--focus {
    border-bottom-color: #008000;
}

/* Set styling when form field data is invalid */
.StripeElement--invalid {
    background-color: #ffd90080;
    border-color: #b22222;
}

/* Set styling when form field data is completed and valid */
.StripeElement--complete {
    background-color: #00800015;
}

/* Set credit card number input field width */
.form9 div#cardnum {
	max-width: 270px;
}

/* Set expiry date input field width */
.form9 div#cardexp {
	max-width: 110px;
}

/* Set CVC/CVV input field width */
.form9 div#cardcvc {
	max-width: 110px;
}


.card-box {
	/* display: flex;
	flex-direction: column;
	width: 40%;
	margin: auto; */
	font-family: 'Montserrat', sans-serif;
	font-size: 1.3rem;
}

.card-input {
	/* width: 100%;
	border: 1px solid #ddd;
	border-radius: 6px;
	color: #555; */
	padding: 8px;
	margin-top: 4px;
	margin-bottom: 14px;
	outline: none;
	font-family: inherit;
}


/* Billing Address double column grid*/

.columns {
	margin: 2rem;
	/* width: min(90%, 75rem); */
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 55em) {
	.columns {
		grid-template-columns: 1fr 1fr;
	}
}

.columns label {
	display: inline-block;
	width: 100%;
}

.columns input, .columns select {
	display: block;
	margin: .2rem 0;

	/* min-width: 10rem; 			why is not working*/
	width: 100%;
	border: none;
	border-radius: 6px;
	padding: 8px 12px;
	box-shadow: inset 0 0 0 1px rgb(209, 213, 219);
	outline: none;
	color:#444;
}



/* start account page modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 700px;
    text-align: center;
    position: relative;
}

.close {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.big-font {
    font-size: 20px;
    color: red;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.big-font img {
    margin-right: 10px;
}

.buttons {
    margin-top: 20px;
}
/* end account page modal */

.info-msg,
.success-msg,
.warning-msg,
.error-msg {
  margin: 10px 0;
  padding: 10px;
  border-radius: 3px 3px 3px 3px;
  font-size: 1.5rem;
}

.info-msg {
  color: #059;
  background-color: #BEF;
}

.success-msg {
    position:relative;
    color: #270;
    background-color: #DFF2BF;

    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
    font-weight: 300;
    max-width: 640px;

    width: 100%; 
}

.warning-msg {
  color: #9F6000;
  background-color: #FEEFB3;
}

.error-msg {
  color: #D8000C;
  background-color: #FFBABA;

  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
  font-weight: 300;
  width: 640px;
}


/* added on 07-06-2026 */
/*------- Start product page ------- */

/* -------------- table -------*/
/*https://www.youtube.com/watch?app=desktop&v=biI9OFH6Nmg&t=100s */

.pr-top {
	display: flex;
	justify-content:flex-end;
    margin: 15px;
    gap:10px
}

.pr-table {
    margin: 15px;
}

.content-table {
	border-collapse: collapse;
	
	/*xx min-width: 480px; */
	border-radius: 5px 5px 5px 5px;
	overflow: hidden;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.content-table thead tr, .content-table tfoot tr {
	background-color: var(--brown);
	color: #ffffff;
	text-align: left;
	font-weight: bold;
}

.content-table th {
	padding: 8px 15px;
	font-size: 1.7rem;
}

.content-table td {
	padding: 5px 15px;
	font-size: 1.5rem;
}

.content-table tbody tr {
	border-bottom: 1px solid #dddddd;
}

.content-table tbody tr:nth-of-type(even) {
	background-color: #f3f3f3;
}

.content-table tbody tr:last-of-type {
	border-bottom: 2px solid var(--brown);
}

.content-table tbody tr.active-row {
	font-weight: bold;
	color: #009879;
}

.cat-seperator {
    background-color: var(--gold);
}

/*
this with is in the @media (max-width: 1000px) query in the components.css, aproximate line no 2081. if changed , need to change both css & javascript 
products.js btn_active_pr.addEventListener("click", function(e). aproximate line no 97 ()
*/
@media (max-width: 1000px) {

    .pr-top {
        display: flex;
        justify-content: end;
        margin: 15px;
        width: 400px;
    }
    
    .pr-table {
        width: 400px;
    }

	.pr-table th {
		display: none;
	}

	.pr-table td {

		/*display: flex;			useually td is display: table;*/
		/* or */
		display: grid;
		grid-template-columns: 15ch auto;
		gap: 0.5rem;
		padding: .05rem 1rem;

	}

	.pr-table td::before {
		font-weight: 700;
		text-transform: capitalize;
		padding: 0 10px 0 8px;
	}

	.pr-table td:first-child {
		padding-top: 1.5rem;
	}
	.pr-table td:last-child {
		padding-bottom: 1.5rem;
	}

	.pr-table td:nth-of-type(1)::before {
		content: 'ID';
	}

	.pr-table td:nth-of-type(2)::before {
		content: 'Category';
	}

	.pr-table td:nth-of-type(3)::before {
		content: 'Product name';
	}

	.pr-table td:nth-of-type(4)::before {
		content: 'Description';
	}

	.pr-table td:nth-of-type(5)::before {
		content: 'Price';
	}

	.pr-table td:nth-of-type(6)::before {
		content: 'Disabled';
	}
}
/*------- End employee page ------- */



/* ---- dialogue ------*/

dialog::backdrop {
	background: repeating-linear-gradient(
	  45deg,
	  rgba(0, 0, 0, 0.2),
	  rgba(0, 0, 0, 0.2) 1px,
	  rgba(0, 0, 0, 0.3) 1px,
	  rgba(0, 0, 0, 0.3) 20px
	);
	backdrop-filter: blur(3px);
    /* background-color: hsl(200, 100%, 50%, 0.5); */
}

.modal1 {
	padding: 1rem;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	background: white;
	border-radius: 0.25rem;
	z-index: 10;
}

.rota-edit-data {
	display: grid;
	grid-gap: 3px;
	grid-template-columns: 1fr 2fr;
	/*xx grid-template-rows: 25px; */		/* this will set only the first row */
	grid-auto-rows: 35px;				    /* grid-auto-rows sets the size of any rows that don’t have an explicit size.
										       (other than size set by grid-template-rows: 25px;)	*/
	margin-bottom: 30px;
}

.rota-edit-data div {		/* select firts child divs only, not grand childrens */
	padding-left: 5px;
}

.rota-edit-data.one {		/*select has 2 class .rota-edit-data & .one*/
	display: none;
}

.rota-edit-data * {			/* select all child elements recursively */
	font-size : 1.7rem;
}

#rota-edit-info {
	display: none;
}

.rota-edit-data input, .rota-edit-data select {
	padding: 3px;
	border: #009879 1px solid;
	border-radius: 2px;
}


.xxx {
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 90vh;
}

.yyy {
    margin: 0;
    color: #fff;
    text-align: center;
    padding: 10px;
    /* border: 10px solid #0af; */
    border: 5px solid var(--brown);
    border-radius: 2%;
}

.card {
    border-radius: 10px;
    box-shadow: 0px 0px 50px #ccc;
    /* width: 350px; */
    text-align: center;
    /* margin-left: 2em;
    margin-top: 2em; */
  
    a {
        text-decoration: none;
        color: black;
    }
    
    .card-top {
        color: #fff;
        /* border-top-left-radius: 10px;
        border-top-right-radius: 10px; */
        border-radius: 10px;
        font-size: 1.5em;
        min-height: 200px;
        padding-bottom: 0.5em;
        
        span {
            color: #fafafa;
            font-size: 0.6em;
            padding-top: 1em;
        }
    }
    
    .background-purple {
        background-color: #f27ccc;

        /* background: rgb(95,35,174); */
        /* background: linear-gradient(45deg, rgba(95,35,174,1) 0%, rgba(132,64,190,1) 50%, rgba(200,109,215,1) 100%); */
    }
    
    .background-red {
        background: #00c0cd;

        /* background: rgb(175,19,16); */
        /* background: linear-gradient(45deg, rgba(175,19,16,1) 0%, rgba(222,58,55,1) 50%, rgba(255,68,65,1) 100%); */
    }
    
    .background-teal {
        background: #f27ccc;

        /* background: rgb(27,139,119); */
        /* background: linear-gradient(45deg, rgba(27,139,119,1) 0%, rgba(56,189,166,1) 50%, rgba(96,230,192,1) 100%); */
    }
    
    
    h3 {
        font-size: var(--font-size*1.75);
        font-weight: 600;
        margin: 0;
        padding: 2rem 0 0;
    }
    
    i {
        font-size: --(font-size*3.5);
        padding: 1.25rem 0 0;
    }

    .card-tagline {
        font-size: --(font-size*1.25);
        margin: 0;
        padding: 1.25rem 0 0;
    }

    .card-subtag {
        color: hsla(100%, 100%, 100%, 0.9); 
        font-size: --(font-size*0.75);
    }
}

.domain-1 {
    background-color: #99f1f7;
    letter-spacing: 2px;
}

.domain-2 {
    font-size: 4rem;
    font-weight: 900;
}
