@import url('https://fonts.googleapis.com/css2?family=Inria+Serif:wght@300;400;700&family=Story+Script&display=swap');

loyalty {
	display: none;
}

maincats {
	position: relative;
	display: flex;
	width: 100%;
	margin: 50px 0 80px;
}

maincats a {
	position: relative;
	flex: 1;
	text-align: center;
	color: var(--color-text);
	text-decoration: none;
	font-size: 1.1rem;
	line-height: 1.1rem;
	padding-top: 75px;
	transition: color 1s;
}
maincats a::before {
	position: absolute;
	display: block;
	content: "";
	left: 50%;
	top: 0px;
	width: 60px;
	height: 60px;
	transform: translateX(-50%);
	mask: url("") center center no-repeat;
	mask-size: contain;
	background-color: var(--color-dark-pink);
	transition: background-color 0.5s;
}

maincats a:hover {
	color: var(--color-blue);
}
maincats a:hover::before {
	background-color: var(--color-blue);
}

maincats a.mct-ordrs::before {
	mask-image: url("img/i-orders.svg");
}

maincats a.mct-baskt::before {
	mask-image: url("img/i-basket.svg");
}

maincats a.mct-profl::before {
	mask-image: url("img/i-profile.svg");
}

maincats a.mct-loyal::before {
	mask-image: url("img/i-loyalty.svg");
}

maincats a.mct-logot::before {
	mask-image: url("img/i-logout.svg");
}

umessage {
    position: relative;
    display: block;
    background-color: #f2d65a;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
}
umessage[error] {
    background-color: #ff9b9b;
}

h2 {
	position: relative;
	display: block;
	width: 100%;
	text-align: center;
	font-weight: normal;
	font-style: normal;
	font-size: 2rem;
	line-height: 3rem;
	color: var(--color-text);
	pointer-events: none;
}

h3::before, h3::after {
	content: "";
	position: relative;
	border-bottom: 2px solid #f3d2d3;
    flex: 1;
    height: 9px;
}

h4:empty {
    display: none;
}

ul.selophrs {
	position: relative;
	display: block;
	text-align: right;
	flex: 1;
	list-style: none;
}
ul.selophrs:empty {
	display: none;
}
ul.selophrs li {
	position: relative;
	display: flex;
	padding: 2px;
	align-items: center;
}
ul.selophrs li b {
	text-align: left;
	margin-right: 10px;
	flex: 1;
}
ul.selophrs li b:first-line {
	font-size: 1rem!important;
	font-weight: bold;
}

ul.selophrs li[today] {
	color: #c1003a;
}

noitems {
    position: relative;
    display: block;
    font-size: 2rem;
    line-height: 2rem;
    margin: 100px 0;
    pointer-events: none;
    opacity: 0.6;
}

cakeblock cb.caketitle h1 {
    position: relative;
    display: block;
    text-align: left;
    color: var(--color-text);
    font-weight: 200;
    font-size: 3rem;
    line-height: 2.6rem;
    margin-bottom: 10px;
}
cakeblock cb.caketitle prodcode {
    position: relative;
    display: inline-block;
    color: var(--color-dark-pink);
}
cakeblock cb.caketitle prodcode::before {
    content: "Code: ";
    color: var(--color-text);
}

cb[loading] {
    filter: grayscale(1);
    opacity: 0.4;
    pointer-events: none;
}

cakeblock select, cakeblock input {
    width: 100%;
}
orderprice {
    position: relative;
    display: block;
    font-size: 3rem;
    line-height: 3rem;
    font-weight: bold;
}
orderprice::first-letter {
    font-size: 2rem;
    margin-right: 2px;
}

searchblock {
    position: relative;
    display: block;
    width: 500px;
    margin: 20px auto 0;
    text-align: center;
}
searchblock input {
    border-radius: 40px;
    font-size: 2rem;
    line-height: 2rem;
    padding: 8px 20px;
    width: 100%;
}

sbmyloc, sbsearch {
    position: absolute;
    display: block;
    width: 52px;
    height: 52px;
    border-radius: 52px;
    background-color: #00a0e3;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid #fff;
    cursor: pointer;
}
sbmyloc {
    right: 10px;
    width: 90px;
    background-color: #79aec5;
}
sbmyloc:hover, sbsearch:hover {
    background-color: #9d024e;
}
sbsearch::after, sbmyloc::after {
    position: absolute;
    display: block;
    content: "";
    left: 50%;
    top: 50%;
    width: 25px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    background-image: url(img/find.svg);
}
sbmyloc::after {
    background-image: url(img/location.svg);
    left: 23px;
}
sbmyloc[locating] {
    pointer-events: none;
    user-select: none;
    animation: locating 2s linear infinite;
}
@keyframes locating {
    0% {
        background-color: #79aec5;
    }
    50% {
        background-color: #112354;
    }
    100% {
        background-color: #79aec5;
    }
}
map {
    position: relative;
    display: block;
    width: 100%;
    height: 500px;
    margin-top: 20px;
}
brpin {
    position: absolute;
    display: block;
    width: 60px;
    height: 60px;
    border: 6px solid #ff0080;
    border-radius: 40px;
    margin-left: -30px;
    margin-top: -30px;
    animation: brloc 2s linear infinite;
}
@keyframes brloc {
    0% {
        border-color: #ff0080;
    }
    30% {
        border-color: #7a0157;
    }
    100% {
        border-color: #ff0080;
    }
}
brpin::before {
    position: absolute;
    display: block;
    content: "";
    width: 60px;
    height: 60px;
    border: 6px solid #ff0080;
    left: 50%;
    top: 50%;
    border-radius: 30px;
    transform: translate(-50%, -50%) scale(1);
    animation: brlocbg 2s linear infinite;
}
@keyframes brlocbg {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        border-width: 6px;
    }
    40% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
        border-width: 16px;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}
mypospin {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(img/user_location.png);
    background-size: 40px;
    background-position: center center;
    background-repeat: no-repeat;
    margin-left: -20px;
    margin-top: -40px;
    filter: drop-shadow(0 0px 4px rgba(0,0,0,0.3))
            drop-shadow(0 -8px 10px rgba(0,0,0,0.1));
}
mpin {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(img/pin.png);
    background-size: 40px;
    background-position: center center;
    background-repeat: no-repeat;
    margin-left: -20px;
    margin-top: -65px;
}
mpin pinname {
    position: absolute;
    left: 20px;
    top: 40px;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
    background-color: #cd0085;
    color: #fff;
    font-size: 11px;
    line-height: 11px;
    padding: 3px 7px;
    border-radius: 10px;
}
mpin pinname::before {
    position: absolute;
    display: block;
    content: "";
    width: 14px;
    height: 14px;
    background-color: #cd0085;
    left: calc(50% - 7px);
    bottom: -5px;
    transform: rotateZ(45deg);
    z-index: -1;
}
mpin pindist {
    left: 20px;
    top: 28px;
    transform: translateX(-50%);
    position: absolute;
    display: none;
    background-color: #444;
    color: #fff;
    font-size: 9px;
    line-height: 9px;
    padding: 2px 6px;
    border-radius: 5px 5px 0 0;
    font-weight: bold;
}
mpin pinaddr, mpin pinphone, mpin pinopen {
    display: none;
}

mpin.pindist pindist {
    display: block;
}

.pinfull mpin {
    width: 150px;
    height: 120px;
    background-color: #fffdda;
    border-radius: 5px;
    background-position-y: 5px;
    filter: drop-shadow(0 0px 4px rgba(0,0,0,0.3))
            drop-shadow(0 -8px 10px rgba(0,0,0,0.1));
    border-radius: 10px;
    margin-left: -75px;
    margin-top: -128px;
}
.pinfull mpin::before {
    position: absolute;
    display: block;
    content: "";
    width: 14px;
    height: 14px;
    background-color: #fffdda;
    left: calc(50% - 7px);
    bottom: -5px;
    transform: rotateZ(45deg);
    z-index: -1;
}
.pinfull mpin pinname {
    left: 75px;
    top: 45px;
}
.pinfull mpin pinname::before {
    display: none;
}
.pinfull mpin pindist {
    border-radius: 10px 0 0 10px;
    left: auto;
    right: 0px;
    top: 16px;
    transform: none;
    background-color: #555;
}
.pinfull mpin pinaddr {
    position: absolute;
    display: block;
    left: 75px;
    transform: translateX(-50%);
    width: 90%;
    top: 65px;
    font-size: 11px;
    line-height: 11px;
    text-align: center;
    color: #111;
    height: 34px;
    overflow: hidden;
}
.pinfull mpin pinphone {
    position: absolute;
    display: block;
    left: 75px;
    transform: translateX(-50%);
    width: 90%;
    bottom: 5px;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    color: #cd0085;
    font-weight: bold;
}

modals {
    position: fixed;
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #111a;
    z-index: 999;
}
modal {
    position: absolute;
    display: block;
    max-width: 90vw;
    min-width: 300px;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    background-color: #ccc;
    border-radius: 8px;
    overflow: hidden;
}
modal[caption]::before {
    position: relative;
    display: block;
    content: attr(caption);
    text-align: center;
    padding: 15px;
    background-color: #9d024e;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.3rem;
    margin: 2px;
    border-radius: 6px 6px 0 0;
}
modal:not(:last-of-type) {
    filter: grayscale(0.8) blur(2px);
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}
modal:not(:last-of-type) * {
    pointer-events: none;
    user-select: none;
}
modal:last-of-type {
    filter: drop-shadow(0px 16px 32px #000a);
}
mbody {
    position: relative;
    display: block;
    padding: 20px;
}
mbody p {
    line-height: 1.2rem;
}
mbuttons {
    position: relative;
    display: flex;
    padding: 20px;
    gap: 5px;
    justify-content: flex-end;
}
mbutton {
    position: relative;
    display: block;
    padding: 12px 22px;
    background-color: #777;
    cursor: pointer;
    color: #fff;
    border-radius: 4px;
}
mbutton:hover {
    background-color: #9d024e;
}
brinfoblock {
    position: relative;
    display: grid;
    width: 100%;
    height: 500px;
    grid-template-columns: 300px auto;
    grid-template-rows: auto auto;
    gap: 20px;
    margin-top: 30px;
}
brinfoblock brdetails {
    position: relative;
    grid-column: 1;
    grid-row: 1;
}
brinfoblock brdetails a {
    width: max-content;
}
brinfoblock bropeningtimes {
    position: relative;
    grid-column: 1;
    grid-row: 2;
    border: 3px solid #e90372;
    border-radius: 20px;
    padding: 20px;
    padding-top: 30px;
    background-color: #ffe6ee;
}
brinfoblock brmap {
    position: relative;
    grid-column: 2;
    grid-row: 1 / span 2;
}
brinfoblock brcontact {
    position: relative;
    grid-column: 2;
    grid-row: 1 / span 2;
    background-color: #97002311;
    border-radius: 20px;
    padding: 10px 20px 80px 20px;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}
brinfoblock brcontact textarea {
    flex: 1
}
brinfoblock brcontact label {
    margin-bottom: 5px;
    margin-top: 10px;
}
brinfoblock brmap map {
    height: 100%;
    margin-top: 0;
}
brinfoblock ul.selophrs {
    display: block!important;
}
brinfoblock h1 {
    background-color: #e90372;
    color: #fff;
    font-size: 2.5rem;
    line-height: 2.5rem;
    padding: 10px 0;
    margin-bottom: 10px;
}
brinfoblock openstat {
    position: absolute;
    display: block;
    background-color: #e90372;
    color: #fff;
    padding: 5px 10px;
    left: 50%;
    top: 0px;
    transform: translateX(-50%);
    border-radius: 0 0 5px 5px;
    text-transform: uppercase;
    font-weight: bold;
}
brinfoblock openstat::before {
    content: "Closed Now";
}
brinfoblock openstat[open]::before {
    content: "Now Open";
}
brinfoblock h2 {
    color: #e90372;
    margin-bottom: 10px;
}
baddress, a.bphone {
    position: relative;
    display: block;
    padding-left: 25px;
    margin-top: 7px;
    text-decoration: none;
    color: #111;
    line-height: 1.3rem;
}
baddress::before,
a.bphone::before {
    position: absolute;
    display: block;
    content: "";
    width: 18px;
    height: 18px;
    background-image: url(img/map-pin-fill.svg);
    left: 0px;
    top: 0px;
    opacity: 0.5;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
a.bphone::before {
    background-image: url(img/phone-fill.svg);
    top: 1px;
}
setdefault {
    position: absolute;
    display: block;
    width: 60px;
    height: 90px;
    bottom: 0px;
    right: 0px;
    cursor: pointer;
    z-index: 99;
}
setdefault::before {
    position: absolute;
    display: block;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 30px;
    background-image: url(img/heart-fill.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    filter: grayscale(0.5);
    opacity: 0.5;
}
setdefault::after {
    position: absolute;
    display: block;
    width: 100%;
    content: "Set your local branch";
    text-align: center;
    font-size: 10px;
    line-height: 10px;
    font-weight: bold;
    text-transform: uppercase;
    top: 55px;
    color: #555;
}

setdefault:hover::before {
    filter: none;
    opacity: 0.5;
}
setdefault:hover::after {
    color: #b23e80;
}
setdefault[islocal] {
    pointer-events: none;
    user-select: none;
}
setdefault[islocal]::before {
    filter: none;
    opacity: 1;
}
setdefault[islocal]::after {
    content: "your local branch";
    color: #b6096b;
}
closebranches {
    position: relative;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}
closebranches a {
    position: relative;
    display: block;
    width: calc((100% - (10px * 4)) / 5);
    aspect-ratio: 4 / 3;
    background-color: #eee;
    cursor: pointer;
    color: #006797;
    text-decoration: none;
}
closebranches a:hover {
    background-color: var(--color-dark-pink);
    color: var(--color-text-reverse);
}
closebranches a img {
    position: absolute;
    display: block;
    left: 4px;
    top: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 30px);
    object-fit: cover;
}
closebranches a brname {
    position: absolute;
    display: block;
    bottom: 2px;
    height: 20px;
    left: 5px;
    right: 5px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
closebranches a brdist {
    position: absolute;
    display: block;
    right: 0;
    top: 10px;
    background-color: #444;
    padding: 4px 6px;
    color: #fff;
    font-size: 9px;
    line-height: 9px;
    font-weight: bold;
}

.errorpage h1 {
    font-size: 8rem;
    line-height: 5rem;
    margin-top: 100px;
}
.errorpage p {
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.5rem;
    margin: 80px 0;
}

article[caption]::before {
    position: relative;
    display: block;
    width: 100%;
    content: attr(caption);
    font-size: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-dark-pink);
}
article h1,
article h2,
article h3,
article h4,
article h5,
article h6 {
    position: relative;
    display: block;
    text-align: left;
    margin: 0;
    padding: 0;
    font-weight: normal;
    color: #000;
    opacity: 1;
    text-transform: uppercase!important;
}
article h1 {
    font-size: 2.5rem;
    line-height: 2.6rem;
    margin-top: 20px;
    color: var(--color-dark-pink);
}

article h1 + h2 {
    margin-top: 5px;
}

article h3 > strong {
    font-weight: 500;
}
article h3::before,
article h3::after {
    display: none;
}
article h2 + h3 {
    margin-top: 5px;
}

article h3 + h4 {
    margin-top: 5px;
}
article h5 {
    font-size: 1.2rem;
    line-height: 1.3rem;
    margin-top: 15px;
    font-weight: 500;
}
article h4 + h5 {
    margin-top: 5px;
}
article h6 {
    font-size: 1.2rem;
    line-height: 1.3rem;
    margin-top: 15px;
}
article h5 + h6 {
    margin-top: 5px;
}
article p,
article ol,
article ul {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
    margin-top: 10px;
}

article ol,
article ul {
    line-height: 18px;
    margin-left: 30px;
    list-style: none;
}

article ol li {
    counter-increment: cntr;
}
article li + li {
    margin-top: 5px;
}

logintabs {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    margin: auto;
    border-bottom: 1px solid #f6d0d0;
}
logintabs litem {
    position: relative;
    display: block;
    padding: 15px 20px;
    background-color: #f6d0d0;
    color: #000;
    cursor: pointer;
}
logintabs litem:hover {
    background-color: #f397bd;
}
logintabs litem[active] {
    background-color: #C32A6B;
    color: #fff;
}
logintabs litem:first-of-type {
    border-radius: 5px 0 0 0;
}
logintabs litem:last-of-type {
    border-radius: 0 5px 0 0;
}
loginreg {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 20px;
    gap: 50px;
    flex-wrap: nowrap;
    margin-top: 30px;
}
loginblk {
    position: relative;
    display: none;
    max-width: 440px;
    margin: auto;
}
loginblk[active] {
    display: block;
}
loginblk h2 {
    color: var(--color-dark-pink);
}
loginblk p {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 22px;
    margin: 20px 0 10px 0;
    color: #333;
    text-align: center;
}
blkform {
    position: relative;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 30px auto;
    padding: 20px;
    background-color: #fbe0e1;
    border-radius: 20px;
    padding-bottom: 80px;
}
blkform label {
    position: relative;
    display: block;
    margin-bottom: 5px;
}
blkform input {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
}
blkform input.passfield {
    padding-right: 50px;
}
showhidepass {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    z-index: 10;
    right: 30px;
    margin-top: 10px;
    cursor: pointer;
}
showhidepass::after {
    position: absolute;
    display: block;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-image: url(img/passhidden.svg);
    background-size: 20px;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.5;
}
showhidepass[shown]::after {
    background-image: url(img/passshown.svg);
}
frmbtn {
    position: absolute;
    display: block;
    right: 20px;
    bottom: 20px;
    background-color: var(--color-blue);
    color: var(--color-text-reverse);
    padding: 15px 25px;
    border-radius: 5px;
    cursor: pointer;
}
frmbtn:hover {
    background-color: var(--color-dark-pink);
}
flxline {
    position: relative;
    display: flex;
}
chkbox {
    position: relative;
    display: block;
    padding-left: 30px;
    margin-top: 7px;
    line-height: 1.1rem;
    cursor: pointer;
}
chkbox:hover {
    text-decoration: underline dotted;
    text-decoration-color: var(--color-dark-pink)
}
chkbox::before {
    position: absolute;
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    left: 0px;
    top: -1px;
    border: 2px solid #333;
    background-color: #fff;
}
chkbox:hover::before {
    border-color: var(--color-dark-pink);
}
chkbox[checked]::after {
    position: absolute;
    display: block;
    content: "";
    left: 4px;
    top: 3px;
    width: 12px;
    height: 12px;
    background-color: var(--color-dark-pink);
}
input.smscode {
    position: relative;
    display: block;
    margin: 20px auto 0 auto;
    font-size: 2.5rem;
    text-align: center;
    width: 200px;
}

ostat {
    background-color: #91b757;
    padding: 2px 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 0.8rem;
    line-height: 0.8rem;
    font-weight: bold;
}
ordd {
    position: relative;
    display: grid;
    width: 100%;
    padding-bottom: 20px;
    grid-template-columns: 350px auto;
    grid-template-rows: auto auto;
    gap: 20px;
    margin-top: 20px;
}
ordd[basket] {
    margin-top: 0;
}
ul.ordinf {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    list-style: none;
    background-color: #f8d0d2;
    border-radius: 8px;
    padding: 20px;
}
ul.ordinf li {
    background-color: #fff;
    padding: 5px 10px;
    line-height: 1.2rem;
    margin-left: 120px;
}
ul.ordinf li::before {
    position: absolute;
    display: block;
    content: attr(caption);
    left: 15px;
}
ul.ordinf li+li {
    margin-top: 2px;
}
ul.ordinf li ostat {
    vertical-align: 1px;
}

orditems {
    position: relative;
    grid-column: 2;
    grid-row: 1 / span 2;
}
orddrating {
    position: relative;
    display: block;
    grid-column: 1;
    grid-row: 2;
    background-color: #eee;
    border-radius: 8px;
    padding: 40px 20px 100px 20px;
}
orddrating::before {
    position: absolute;
    display: block;
    content: "Rate your order";
    top: 20px;
	text-transform: uppercase;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    color: #444;
    font-size: 1.2rem;
    white-space: nowrap;
}
orddrating ordrb {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 10px 0;
}
orddrating ordrb orbstar {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    color: #555;
    cursor: pointer;
}
orddrating ordrb orbstar[selected] {
    color: var(--color-dark-pink);
}
orddrating ordrb orbstar::after {
    position: absolute;
    display: block;
    content: "\2606";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    line-height: 3rem;
}
orddrating ordrb orbstar[selected]::after {
    content: "\2605";
}
orddrating textarea {
    position: relative;
    display: block;
    width: 100%;
    height: calc(100% - 140px);
    min-height: 100px;
    border: 4px solid #f8d0d2;
    border-radius: 4px;
    padding: 10px;
    margin-top: 5px;
    resize: none;
    line-height: 1.2rem;
}
orddrating p {
    text-align: center;
    color: #444;
}
orditems oitm {
    position: relative;
    display: block;
    width: 100%;
    background-color: #fff;
    padding: 15px 15px 15px 180px;
    border: 4px solid #f8d0d2;
    min-height: 190px;
}
[basket] orditems oitm {
    padding-bottom: 60px;
}
orditems oitm+oitm {
    margin-top: 10px;
}
orditems oitm img {
    position: absolute;
    display: block;
    width: 150px;
    height: 150px;
    left: 15px;
    top: 15px;
    object-fit: cover;
}
oitm otitle {
    position: relative;
    display: block;
    font-size: 1.3rem;
    line-height: 1.3rem;
    margin: 0px 0 15px 0;
    font-weight: 500;
    padding-left: 110px;
}
oitm otitle b {
    position: absolute;
    left: 0px;
    background-color: #f8d0d2;
    padding: 3px 10px;
    color: #5d3a4a;
    border-radius: 4px;
    margin-right: 10px;
}
oitm orddi {
    position: relative;
    display: block;
    margin: 5px 100px 0 110px;
}
oitm orddi[caption]::before {
    position: absolute;
    display: block;
    content: attr(caption);
    color: #006797;
    font-weight: 500;
    left: -110px;
}
oitm oitmp {
    position: absolute;
    display: block;
    right: 15px;
    bottom: 15px;
    font-size: 1.6rem;
    line-height: 1.6rem;
    font-weight: bold;
}
oitm oitmq {
    position: absolute;
    display: block;
    right: 15px;
    background-color: #777;
    padding: 3px 7px;
    color: #fff;
    font-size: 0.8rem;
    line-height: 1rem;
    border-radius: 2px;
    bottom: 40px;
    font-weight: bold;
}
oitm oitmq::before {
    content: "Quantity: ";
    font-weight: normal;
}
oitm[discounted]::after {
    position: absolute;
    display: block;
    content: "";
    width: 40px;
    height: 40px;
    background-image: url(img/discount.svg);
    background-size: contain;
    background-repeat: no-repeat;
    left: 5px;
    top: 5px;
    transform: rotateZ(-7deg);
}
oitm photocake {
    position: relative;
    display: block;
    width: 120px;
    height: 100px;
    margin-top: 30px;
    border: 2px solid #aaa;
    border-radius: 0 0 4px 4px;
}
oitm photocake::before {
    position: absolute;
    display: block;
    content: "Uploaded photo";
    left: -2px;
    right: -2px;
    height: 18px;
    top: -20px;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    text-indent: 8px;
    font-weight: 500;
    background-color: #aaa;
    border-radius: 6px 6px 0 0;
}
oitm photocake img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 0 0 2px 2px;
    overflow: hidden;
}
oitm photocake[nophoto] {
    cursor: pointer;
    background-color: #eee;
    background-image: url(img/noimage.webp);
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center center;
}
oitm photocake[nophoto]:hover {
    border-color: #ea0d7b;
}
oitm photocake[nophoto]::before {
    content: "Upload photo";
}
oitm photocake[nophoto]:hover::before {
    background-color: #ea0d7b;
}
oitm photocake input {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.01;
}
uplimage {
    position: relative;
    display: block;
    width: 100%;
    height: 350px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
orditems alrginf {
    position: relative;
    display: block;
    padding: 20px;
    line-height: 1.2rem;
    background-color: #C32A6B;
    margin-top: 10px;
    color: #fff;
    border-radius: 8px;
}
orderconfirm, loyaltypay {
    position: relative;
    display: block;
    margin-top: 10px;
    background-color: #c7f0ca;
    padding: 20px;
    border-radius: 8px 8px 0 0;
}
orderconfirm chkbox, loyaltypay chkbox {
    font-size: 17px;
    line-height: 20px;
}
allergyinp {
    position: relative;
    display: block;
    margin-top: 10px;
    background-color: #ffb7b7;
    padding: 20px;
    border-radius: 8px;
    min-height: 70px;
}
allergyinp p {
    display: none;
    margin-top: 15px;
}
allergyinp input {
    display: none;
    margin-top: 5px;
    width: 100%;
}
allergyinp[open] p, allergyinp[open] input {
    display: block;
}
loyaltypay {
    border-radius: 8px;
    background-color: #ffee00;
}
basketact {
    position: relative;
    display: block;
    padding: 20px;
    line-height: 1.2rem;
    background-color: #027c0a;
    color: #fff;
    border-radius: 0 0 8px 8px;
    height: 87px;
}
basketact totamt {
    position: absolute;
    display: block;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    line-height: 2rem;
}
basketact totamt b {
    font-size: 2.5rem;
}
basketact frmbtn {
    background-color: #d4ff00;
    color: #000;
	text-transform: uppercase;
	font-weight: bold;
    z-index: 1;
    transform: rotateZ(0deg);
    animation: placesh 7s linear infinite;
}
basketact frmbtn::before {
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #b7ff00;
    border-radius: 5px;
    transform: translate(-50%, -50%);
    animation: placeorder 1s linear infinite;
    z-index: -1;
}
basketact frmbtn:hover {
    color: #fff;
}
frmbtn[disabled] {
    background-color: #aaa;
    pointer-events: none;
    touch-action: none;
}

collection {
    position: relative;
    grid-column: 1;
    grid-row: 1;
}
colbranch {
    position: relative;
    display: block;
    background-color: #f8d0d2;
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    margin-top: 20px;
}
colbranch::before {
    position: relative;
    display: block;
    content: "Collection branch";
    margin-bottom: 10px;
	text-transform: uppercase;
    font-weight: bold;
    color: #914256;
}
colbranch:hover {
    background-color: #edb8ba;
}
cbname {
    display: block;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1.5rem;
}
cbaddr {
    display: block;
    opacity: 0.8;
    line-height: 1.2rem;
}
cbphone {
    display: block;
    opacity: 0.8;
    font-size: 1.4rem;
    line-height: 1.4rem;
    margin-top: 5px;
    color: #550114;
}
seldate {
    position: relative;
    display: block;
    background-color: #25357c;
    border-radius: 8px;
    padding: 20px;
    color: #fff;
    width: 100%;
    text-align: center;
    cursor: pointer;
}
seldate::before {
    position: relative;
    display: block;
    content: "Collection date/time";
    margin-bottom: 10px;
	text-transform: uppercase;
    font-weight: bold;
    color: #708eef;
}
seldate:hover {
    background-color: #62257c;
}
swday {
    display: block;
    font-size: 3rem;
    line-height: 3rem;
}
sdate {
    display: block;
    font-size: 12rem;
    line-height: 12rem;
    font-weight: bold;
}
sdate sup {
    font-size: 4rem;
    line-height: 4rem;
    vertical-align: 5.5rem;
    font-weight: normal;
}
smony {
    display: block;
    font-size: 2rem;
    line-height: 2rem;
}
stime {
    display: block;
    font-size: 3rem;
    line-height: 3rem;
    margin-top: 20px;
    font-weight: bold;
}
bordqty {
    position: absolute;
    display: block;
    bottom: 15px;
    background-color: #ddd;
    border-radius: 20px;
    height: 30px;
    width: 113px;
}
bordqty input {
    position: absolute;
    padding: 0;
    margin: 0;
    border: 0;
    text-align: center;
    left: 30px;
    width: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
}
bordbdown,
bordbup,
borddel {
    position: absolute;
    display: block;
    width: 26px;
    height: 26px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 20px;
    font-size: 1.4rem;
    line-height: 1.4rem;
    cursor: pointer;
}
bordbdown::after, bordbup::after, borddel::after {
    position: absolute;
    display: block;
    content: "-";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -58%);
}
bordbup::after {
    content: "+";
    transform: translate(-47%, -60%);
}
borddel::after {
    content: "";
    width: 12px;
    height: 12px;
    top: 53%;
    background-image: url(img/trash.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    transform: translate(-50, -50%);
    filter: grayscale(1);
    opacity: 0.5;
}
bordbdown {
    left: 2px;
}
bordbup {
    left: 61px;
}
borddel {
    left: 85px;
}
bordbdown:hover,
bordbup:hover {
    background-color: #bfc8cb;
}
borddel:hover::after {
    filter: none;
    opacity: 1;
}
bordprice {
    position: absolute;
    display: block;
    right: 15px;
    bottom: 15px;
    font-size: 2rem;
    line-height: 2rem;
    font-weight: bold;
}
uibtn {
    position: relative;
    display: block;
    width: fit-content;
    margin: -47px 9px 24px auto;
    padding: 6px 10px;
    background-color: #dea247;
    border-radius: 4px;
    color: #fff;
	text-transform: uppercase;
    font-weight: bold;
    font-size: 11px;
    line-height: 11px;
    cursor: pointer;
}
uibtn:hover {
    background-color: #7c3b02;
}
emailverify {
    position: relative;
    display: block;
    width: 300px;
    margin: 70px auto;
    text-align: center;
}
emailverify img {
    width: 100%;
    margin-bottom: 20px;
}
emailverify p {
    margin-top: 10px;
    line-height: 1.2rem;
}
emailverify h2 {
    line-height: 1.8rem;
    color: var(--color-dark-pink);
}

ul#calendar li[selected] {
    background-color: #f8a2f4;
}
ul#calendar li[selected]:hover {
    background-color: #b67fdd;
}
ul#calendar li[today]::after {
    position: absolute;
    display: block;
    content: "";
    width: 15px;
    height: 15px;
    background-color: #9b6e9c;
    right: -8px;
    bottom: -8px;
    transform: rotateZ(45deg);
}

ul#calendar li[disabled] {
    pointer-events: none;
    background-color: #ddd;
    color: #aaa;
}

ul#inptime li[selected] {
    background-color: #f8a2f4;
}
ul#inptime li[selected]:hover {
    background-color: #b67fdd;
}

uplg {
    position: relative;
    display: block;
    width: 350px;
    height: 30px;
    background-color: #999;
    border-radius: 4px;
    overflow: hidden;
}
uplg::after {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    content: "";
    box-shadow: inset 0px 2px 5px 0px #0005;
    border: 1px solid #5557;
    border-radius: 4px;
}
uplt {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background-color: #1275c1;
}
qrcode {
    position: relative;
    display: block;
    width: 200px;
    height: 200px;
}
qrcode.loyaltypage {
    margin: 15px auto;
}
lpoints {
    position: relative;
    display: block;
    margin: 5px auto 20px auto;
    background-color: #c0008a;
    width: fit-content;
    padding: 10px 20px;
    color: #fff;
    font-size: 20px;
    border-radius: 20px;
    font-weight: bold;
}
lpoints::before {
    font-weight: 400;
    content: "You have ";
}
lpoints::after {
    font-weight: 400;
    content: " loyalty points";
}
table.lpuse {
    width: 95%;
    max-width: 500px;
    margin: 10px auto;
    border-spacing: 0;
    border: 1px solid #aaa;
    background-color: #aaa2;
    border-radius: 4px;
}
table.lpuse td,
table.lpuse th {
    padding: 10px 7px;
    text-align: left;
}
table.lpuse th {
    border-bottom: 2px solid #aaa;
}
table.lpuse td:nth-child(3),
table.lpuse th:nth-child(3) {
    text-align: right;
}

inllnk {
    color: #c1005d;
    text-decoration: underline;
    cursor: pointer;
}

boxform {
    position: relative;
    display: block;
    width: 200px;
    margin: 20px auto 0 auto;
    text-align: center;
}
boxform label {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
}

*:not(input):not(textarea) {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}
*, *::before, *::after {
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a {
	color: inherit;
	text-decoration: none;
}
:root {
    --color-text: #333;
    --color-text-muted: #555;
    --color-text-faint: #777;
    --color-text-reverse: #fff;
    --color-dark-pink: #d5036b;
    --color-dark-pink-hover: #750f3a;
    --color-pink-soft: #eeafc9;
    --color-pink-tint: #ffdded;
    --color-pink-fade: #d5036b22;
    --color-blue: #00a0e3;
    --color-border-peach: #f3d6cf;
    --color-border-pink: #dfbecd;
    --color-shadow: #0008;
    --color-divider: #0002;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
html, body {
    -webkit-overflow-scrolling: touch;
    width: 100%;
    background-color: #fff;
}
html, body, td, select, input,textarea {
    color: var(--color-text);
    font: 16px/17px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}
select {
    position: relative;
    display: inline;
    background-color: #f8d0d2;
    padding: 15px;
    border-right: 10px solid #f8d0d2;
    cursor: pointer;
    height: 48px;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(img/dropdown.svg);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 10px;
    border-radius: 5px;
}
input {
    padding: 11.5px 11px;
    border: 4px solid #f8d0d2;
    height: 48px;
    border-radius: 5px;
}
textarea {
    padding: 11.5px 15px;
    border: 4px solid #f8d0d2;
    border-radius: 5px;
}

top-logo {
    position: relative;
    display: block;
    margin: auto;
    width: 100%;
    height: 190px;
    background:
        linear-gradient(
            0deg,
            rgba(155, 42, 100, 1) 0%,
            rgba(199, 87, 143, 1) 50%,
            rgba(237, 83, 160, 1) 100%
        );
    background-color: var(--color-dark-pink);
    margin-bottom: -35px;
}
top-logo::after {
    position: absolute;
    display: block;
    content: "";
    width: 250px;
    height: 180px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-image: url(img/logo_3d.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 99;
    pointer-events: none;
}
mobile-menu {
    position: fixed;
    display: flex;
    bottom: 0;
    left: 0;
    right: 0;
	height: calc(50px + env(safe-area-inset-bottom));
    background-color: #333;
    z-index: 99;
    flex-wrap: nowrap;
    align-content: flex-start;
    filter: drop-shadow(0px 0px 10px var(--color-shadow));
    border-top: 2px solid var(--color-text-faint);
}
mobile-menu a {
    position: relative;
    display: block;
    flex: 1;
    height: 50px;
}
mobile-menu a::after {
	position: absolute;
	display: block;
	content: "";
	left: 50%;
	top: 50%;
	width: 27px;
	height: 27px;
	transform: translate(-50%, -50%);
    -webkit-mask-image: var(--icon);
    mask-image: var(--icon);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
	background-color: #fff;
}
page-wrap {
    position: relative;
    display: block;
    width: 100%;
}
banner-slider {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 6 / 4;
    border-top: 1px solid var(--color-border-peach);
    border-bottom: 1px solid var(--color-border-peach);
    background-color: var(--color-border-peach);
}
banner-slide {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-image: var(--banner-short);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease-in-out;
}
banner-slide[show] {
    opacity: 1;
    pointer-events: auto;
}
nav-left, nav-right {
    position: absolute;
    display: block;
    width: 70px;
    height: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-dark-pink-hover);
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.5s;
    z-index: 99;
}
nav-left::after, nav-right::after {
    position: absolute;
    display: block;
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23e3e3e3"><path d="m321-80-71-71 329-329-329-329 71-71 400 400L321-80Z"/></svg>');
}
nav-left::after {
    transform: translate(-50%, -50%) rotateZ(180deg);
}
banner-slider:hover nav-left,
banner-slider:hover nav-right {
    opacity: 0.3;
}

banner-slider:hover nav-left:hover, banner-slider:hover nav-right:hover {
    opacity: 0.8;
}
nav-left {
    left: 0;
    border-radius: 0 10px 10px 0;
}
nav-right {
    right: 0;
    border-radius: 10px 0 0 10px;
}
nav-dots {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-top: -15px;
    margin-bottom: 5px;
}
nav-dots nav-dot {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #bbb;
    border: 1px solid #eee;
    transition: width 1s, background-color 1s;
}
nav-dots nav-dot[data-active] {
    width: 20px;
    background-color: var(--color-dark-pink);
}
main-cats {
    position: relative;
    display: flex;
    gap: 5px;
    padding: 5px;
    flex-wrap: wrap;
}
main-cats a {
	position: relative;
	flex: 1 1 30%;
	text-align: center;
	color: var(--color-text);
	text-decoration: none;
	transition: color 0.5s;
    background-color: #fbf4f1;
    border: 1px solid var(--color-border-peach);
    border-radius: 5px;
    height: 105px;
    align-content: center;
    padding: 43px 10px 5px 10px;
    line-height: 1rem;
    cursor: pointer;
}
main-cats a cat-info {
    position: relative;
    display: none;
    font-size: 0.7rem;
    line-height: 0.7rem;
    font-style: italic;
    opacity: 0.7;
    max-width: 120px;
    margin: auto;
    margin-top: 10px;
}
main-cats a::before {
	position: absolute;
	display: block;
	content: "";
	left: 50%;
	top: 7px;
	width: 43px;
	height: 43px;
	transform: translateX(-50%);
    -webkit-mask-image: var(--icon);
    mask-image: var(--icon);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
	background-color: var(--color-dark-pink);
	transition: background-color 0.5s;
}
main-cats a::after {
    --icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23e3e3e3"><path d="M383-480 200-664l56-56 240 240-240 240-56-56 183-184Zm264 0L464-664l56-56 240 240-240 240-56-56 183-184Z"/></svg>');
	position: absolute;
	display: block;
	content: "";
	left: 50%;
	bottom: 2px;
	width: 15px;
	height: 15px;
	transform: translateX(-50%);
    -webkit-mask-image: var(--icon);
    mask-image: var(--icon);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background-color: var(--color-dark-pink);
	transition: background-color 0.5s;
}
main-cats a:hover {
	background-color: var(--color-dark-pink);
    color: var(--color-text-reverse);
}
main-cats a:hover::before,
main-cats a:hover::after {
    background-color: var(--color-text-reverse);
}
top-wave, wave-block, review-list {
    position: relative;
    display: block;
}
top-wave>page-wrap, wave-block>page-wrap, review-list>page-wrap {
    padding: 5px;
}
wave-block {
    padding: 0 5px;
}
wave-block>page-wrap {
    background: linear-gradient(51deg, var(--color-border-peach) 0%, rgba(252, 244, 235, 1) 50%, rgba(243, 207, 211, 1) 100%);
    border: 1px solid var(--color-border-peach);
    border-radius: 5px;
    background-color: #f9ede8;
}
h2, h1 {
    font-family: "Inria Serif", serif;
    font-weight: 400;
    font-style: normal;
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 40px;
    line-height: 35px;
    margin-bottom: 10px;
    color: var(--color-dark-pink);
    letter-spacing: -2px;
}
body > page-wrap > h1 {
    margin-top: 50px;
}
h4 {
    opacity: 0.7;
    pointer-events: none;
    font-family: "Story Script", sans-serif;
    font-weight: 400;
    font-style: normal;
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 23px;
    line-height: 25px;
    margin-bottom: 25px;
    color: var(--color-text-muted);
}
h3 {
    pointer-events: none;
    gap: 10px;
    text-transform: uppercase;
    font-family: "Inria Serif", serif;
    font-weight: 400;
    font-style: normal;
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 35px;
    line-height: 37px;
    margin-bottom: 15px;
    margin-top: 20px;
    color: var(--color-dark-pink);
    letter-spacing: -2px;
    border-top: 1px solid var(--color-pink-fade);
    border-bottom: 1px solid var(--color-pink-fade);
}
h1 {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    font-weight: normal;
    font-style: normal;
    color: var(--color-dark-pink);
    pointer-events: none;
    font-size: 50px;
    line-height: 50px;
    margin-top: 10px;
}
h2+h4 {
    margin-top: -5px;
}
body > page-wrap > h4 {
    font-size: 18px;
    line-height: 23px;
}
page-wrap>h2 {
    padding-top: 10px;
    padding-bottom: 10px;
}
search-block {
    position: relative;
    display: block;
    width: 300px;
    margin: auto;
}
search-block input {
    width: 100%;
    border-radius: 50px;
    font-size: 20px;
    line-height: 20px;
    color: var(--color-dark-pink-hover);
}

review-list {
    margin-bottom: 10px;
}
category-grid {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}
category-grid a {
    position: relative;
    display: block;
    flex: 0 0 calc(33% - 3px);
    margin-bottom: 15px;
    cursor: pointer;
    border-radius: 0 0 5px 5px;
}
cat-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 65px;
}
cat-caption {
    position: absolute;
    top: calc(100% - 46px);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
	color: var(--color-text)!important;
    text-align: center;
    width: 100%;
    font-size: 15px;
    line-height: 16px;
    transform: translateY(-50%);
    letter-spacing: -0.4px;
}
cat-button, ad-button {
    position: absolute;
    display: block;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-text-reverse)!important;
    background-color: var(--color-dark-pink);
    font-weight: bold;
    font-size: 10px;
    line-height: 10px;
    padding: 5px 10px;
    white-space: nowrap;
    border-radius: 15px;
    text-transform: uppercase;
    cursor: pointer;
}
cat-button:hover, ad-button:hover {
    background-color: var(--color-dark-pink-hover);
}
category-grid a cat-button {
    bottom: 5px;
}
category-grid a:hover {
    background-color: var(--color-pink-tint);
}
category-grid.cakes a cat-image,
category-grid.similarcakes a cat-image {
    margin-bottom: 50px;
}
category-grid.cakes a cat-caption,
category-grid.similarcakes a cat-caption {
    top: calc(100% - 47px);
    font-size: 14px;
    line-height: 15px;
    transform: none;
}
category-grid.similarcakes a {
    flex: 0 0 calc(24.7% - 3px);
}

feat-block {
    position: relative;
    display: flex;
}
feat-block feat-col {
    position: relative;
    flex: 0 0 50%;
}
feat-block feat-col h2 {
    font-size: 33px;
    line-height: 33px;
    text-align: left;
}
feat-block feat-col h4 {
    text-align: left;
    margin-bottom: 0px;
}
feat-block feat-col:first-of-type h2,
feat-block feat-col:first-of-type h4 {
    text-align: right;
}
feat-block feat-col img {
    position: absolute;
    display: block;
    width: 90%;
    height: 90%;
    object-fit: contain;
    object-position: right center;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
feat-block feat-col:first-of-type img {
    left: 0;
    right: auto;
}
feat-block feat-col ad-text {
    position: relative;
    display: block;
    padding-bottom: 30px;
}
feat-block feat-col ad-text ad-button {
    left: 0;
    transform: none;
}
wave-block:nth-of-type(2) feat-block feat-col ad-text ad-button {
    right: 0;
    left: auto;
    transform: none;
}
wave-block:nth-of-type(2) feat-block feat-col img {
    object-position: left center;
}
review-list>page-wrap {
    display: grid;
}
review-item {
    position: relative;
    display: flex;
    flex-direction: column;
	grid-area: 1 / 1;
	opacity: 0;
	pointer-events: none;
	transition: opacity .4s ease;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}
review-item[data-active] {
	opacity: 1;
}
review-item review-rating {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
}
review-item review-author {
    font-family: "Story Script", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 14px;
    margin-top: 5px;
    color: var(--color-text-faint);
}

social-strip {
	position: relative;
	display: block;
	left: 0;
	width: 100%;
	height: 200px;
	overflow: hidden;
	z-index: 10;
    margin: 20px 0;
}
social-strip a {
	position: absolute;
	display: block;
	bottom: 0;
	width: 200px;
	height: 200px;
	left: -200px;
	transition: none;
	will-change: transform;
	backface-visibility: hidden;
}
social-strip a[data-moveleft] {
	transform: translateX(-200px);
	transition: transform 1s;
}
social-strip a img {
	position: absolute;
	display: block;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	object-fit: cover;
	border-radius: 8px;
	border: 2px solid #aaa;
}
social-strip a:hover img {
	border-color: var(--color-dark-pink);
}

wave-block.branches {
    background-color: #ebe8e7;
}
wave-block.branches>page-wrap {
    border: none;
    background: none;
    padding: 15px 5px;
    display: grid;
}
page-title {
    position: relative;
    display: block;
    font-family: "Inria Serif", serif;
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    text-align: left;
}
split-grid {
    position: relative;
    display: grid;
    width: 100%;
    grid-template-columns: auto;
}
ul.branch-list {
    position: relative;
    display: flex;
    grid-area: 1 / 1;
    list-style: none;
    flex-wrap: wrap;
    align-self: flex-start;
}
ul.branch-list li {
    position: relative;
    display: block;
    flex: 0 0 33%;
    font-size: 14px;
    line-height: 14px;
    padding: 3px 8px;
    margin-left: -5px;
    margin-right: 4px;
    border-radius: 4px;
    cursor: pointer;
}
ul.branch-list li[data-selected] {
    background-color: var(--color-dark-pink);
}
ul.branch-list li a {
    position: relative;
    text-decoration: none;
    color: var(--color-text);
}
ul.branch-list li[data-selected] a {
    color: var(--color-text-reverse);
}
ul.branch-list li:not([data-selected]):hover {
    background-color: var(--color-pink-fade);
}
split-grid branch-info {
    grid-area: 2 / 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #edd0d9;
    border: 1px solid var(--color-border-pink);
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    text-align: center;
}
split-grid branch-info p.branch-phone {
    color: var(--color-dark-pink);
    font-weight: bold;
    font-size: 1.1rem;
    padding: 10px 0;
}
split-grid branch-info a {
    background-color: var(--color-dark-pink);
    padding: 5px 10px;
    color: var(--color-text-reverse);
    text-decoration: none;
    border-radius: 10px;
}
split-grid branch-info a:hover {
    background-color: var(--color-dark-pink-hover);
}
ul.branch-hours {
    grid-area: 3 / 1;
    position: relative;
    display: block;
    list-style: none;
    margin-top: 10px;
    overflow: hidden;
}
ul.branch-hours li {
    position: relative;
    display: block;
    width: 100%;
    padding: 5px 10px;
    font-size: 0.8rem;
}
ul.branch-hours li::first-line {
    font-size: 1rem;
}
ul.branch-hours li:not(:last-of-type) {
    border-bottom: 1px dotted var(--color-divider);
}
ul.branch-hours li open-hours {
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    padding: 5px 10px;
    font-size: 1rem;
}

ul.branch-hours li[data-today] b {
    color: var(--color-dark-pink);
}
ul.branch-hours li[data-today] {
    background-color: #ecd5cd;
}

page-footer {
    position: relative;
    display: block;
    background-color: var(--color-dark-pink);
    padding: 10px;
}
page-footer>page-wrap {
    padding-bottom: 60px;
}
page-footer img.footer-logo {
    position: absolute;
    left: 0px;
    top: 0;
    width: 170px;
}
page-footer footer-links {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-left: 200px;
    padding-bottom: 30px;
    flex-wrap: wrap;
    gap: 7px;
}
page-footer footer-links a {
    position: relative;
    display: block;
    cursor: pointer;
    color: var(--color-text-reverse);
    font-size: 0.8rem;
    line-height: 0.8rem;
    text-decoration: none;
    white-space: nowrap;
}
footer-social {
    position: absolute;
    display: flex;
    left: 0;
    top: 60px;
    gap: 5px;
}
footer-social a img {
    width: 20px;
}
footer-copy {
    position: absolute;
    display: block;
    font-size: 10px;
    line-height: 10px;
    text-align: center;
    left: 0;
    width: 100%;
    bottom: 60px;
    color: var(--color-text-reverse);
    opacity: 0.7;
}
top-basket {
	position: fixed;
	display: block;
	background-color: #941555aa;
	flex: 0 0 24px;
    top: 10px;
    right: 10px;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	margin-left: 10px;
	cursor: pointer;
    z-index: 99;
}
top-basket:hover {
	background-color: var(--color-dark-pink);
}
top-basket::after {
	position: absolute;
	display: block;
	content: "";
	width: 55%;
	height: 55%;
	background-color: #fff;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -55%);
	-webkit-mask: url(img/shopping.svg) center center no-repeat;
	-webkit-mask-size: contain;
	mask: url(img/shopping.svg) center center no-repeat;
	mask-size: contain;
}
top-basket[data-items]::before {
    position: absolute;
    display: block;
    content: attr(data-items);
    bottom: -2px;
    left: -2px;
    font-weight: bold;
    font-size: 11px;
    line-height: 11px;
    padding: 3px 5px;
    background-color: #830037;
    border-radius: 10px;
    color: #fff;
    z-index: 99;
}

country-switch {
    position: absolute;
    display: block;
    left: 10px;
    top: 10px;
    list-style: none;
    border: 1px solid #d03a79;
    border-radius: 5px;
    padding: 27px 0px 0px 0px;
    overflow: hidden;
    width: 44px;
    height: 25px;
    color: var(--color-text-reverse);
}
country-switch:hover {
    background-color: var(--color-pink-soft);
}
country-switch[data-open] {
    height: 79px;
}
country-switch-current {
    position: absolute;
    display: block;
    white-space: nowrap;
    left: 1px;
    top: 1px;
    line-height: 25px;
    padding-left: 45px;
    height: 25px;
    cursor: pointer;
}
country-switch-current::before,
country-switch-item::before {
    position: absolute;
    display: block;
    content: "";
    background-image: url(img/GB.svg);
    width: 40px;
    height: 25px;
    background-size: cover;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    background-position: center center;
    overflow: hidden;
    border-radius: 3px;
}
country-switch-current[data-flag="ca"]::before,
country-switch-item[data-flag="ca"]::before {
    background-image: url(img/CA.svg);
}
country-switch-item::before {
    width: 30px;
    height: 18px;
    left: 4px;
}
country-switch-item {
    position: relative;
    display: none;
    line-height: 25px;
    white-space: nowrap;
    padding-left: 45px;
    background-color: #edcbd9;
    cursor: pointer;
}
country-switch-item:hover {
    background-color: var(--color-dark-pink);
    color: var(--color-text-reverse);
}
country-switch[data-open] country-switch-item {
    display: block;
}

top-menu {
    position: absolute;
    display: none;
    right: 10px;
    top: 65px;
    flex-wrap: nowrap;
    gap: 3px;
}
top-menu a {
    position: relative;
    display: block;
    text-decoration: none;
    color: var(--color-text);
    cursor: pointer;
    line-height: 20px;
    padding: 5px 15px;
    border-radius: 10px;
    transition: background-color 0.7s, color 0.7s;
    font-family: "Inria Serif", serif;
    font-weight: 700;
}
top-menu a:hover {
    transition: background-color 0.1s, color 0s;
    background-color: var(--color-dark-pink);
    color: var(--color-text-reverse);
}
top-menu a+a::before {
    position: absolute;
    display: block;
    content: "";
    width: 1px;
    height: 15px;
    left: -2px;
    background-color: #8888;
    top: 8px;
}
a.top-search {
    position: absolute;
    display: none;
    top: 15px;
    right: 255px;
    border: 1px solid #aaa6;
    border-radius: 15px 5px 5px 15px;
    line-height: 28px;
    height: 29px;
    padding: 0 10px 0 30px;
    cursor: pointer;
}
a.top-search::before {
    position: absolute;
    display: block;
    content: "";
    width: 22px;
    height: 22px;
    background-color: #000;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 15px;
    background-image: var(--icon);
    background-size: 17px;
    background-position: center center;
    background-repeat: no-repeat;
}
a.top-search:hover {
    background-color: var(--color-pink-soft);
}
a.top-search:hover::before {
    background-color: var(--color-dark-pink);
}

cat-code {
    position: absolute;
    display: block;
    left: 50%;
    top: 0;
    padding: 5px 10px;
    background-color: #a60865;
    font-weight: bold;
    color: #fff;
    font-size: 12px;
    line-height: 10px;
    pointer-events: none;
    transform: translateX(-50%);
    border-radius: 0 0 5px 5px;
}
cat-icons {
    position: absolute;
    display: flex;
    right: 0px;
    bottom: 50px;
    height: 28px;
    gap: 4px;
    pointer-events: none;
    opacity: 0.7;
    background-color: #fffa;
    padding: 5px 7px;
    border-radius: 5px 0 0 0;
}
cat-icons:empty {
    display: none;
}
ul.tpath {
    justify-content: center;
    align-items: flex-start;
    padding: 30px 0;
    position: relative;
    display: flex;
    list-style: none;
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 10px;
    line-height: 11px;
    color: var(--color-dark-pink);
    counter-reset: tpathcntr;
    pointer-events: none;
    margin-top: 60px;
}
ul.tpath li {
    position: relative;
    display: block;
    text-align: center;
    flex: 1;
    padding: 10px 20px;
}
ul.tpath li::before {
    position: absolute;
    display: block;
    left: 50%;
    top: -15px;
    transform: translateX(-50%);
    counter-increment: tpathcntr;
    content: counter(tpathcntr);
    color: #fff;
    background-color: var(--color-dark-pink);
    width: 20px;
    height: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 12px;
    line-height: 19px;
}
ul.tpath li+li::after {
    position: absolute;
    display: block;
    content: "\276D\276D";
    font-size: 19px;
    top: -12px;
    left: -5px;
    color: var(--color-text-faint);
    opacity: 0.6;
}
ul.tpath li:not([data-active]) {
    filter: grayscale(1);
}
cakeblock {
    padding-bottom: 20px;
    position: relative;
    display: grid;
    width: 100%;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto;
    gap: 20px;
}
cakeblock cb.caketitle {
    position: relative;
    width: 100%;
    margin-top: 6px;
    grid-area: 1 / 1;
}
cakeblock cb.cakepicture {
    background-color: #fff;
    border-radius: 0 30px 0 0;
    overflow: hidden;
    grid-area: 2 / 1;
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 10px solid var(--color-pink-soft);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
prodcode {
    position: relative;
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
}
cakeblock cb.cakepicture cat-icons {
    bottom: 0;
    height: 35px;
    gap: 10px;
}
cakeblock cb.cakeorder {
    width: 100%;
    border-top: 1px solid #ecd4d4;
    position: relative;
    grid-area: 3 / 1;
    padding: 0 10px;
}
ordermsg {
    margin-top: 10px;
    position: relative;
    display: block;
    background-color: var(--color-dark-pink);
    padding: 20px;
    color: var(--color-text-reverse);
    text-align: center;
    line-height: 1.2rem;
    margin-bottom: 10px;
    border-radius: 5px;
}
cakeblock div {
    position: relative;
    display: grid;
    grid-template-columns: 80px auto;
    margin-top: 10px;
    gap: 10px 0;
}
cakeblock label {
    position: relative;
    display: block;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #333;
    margin-top: 3px;
    margin-bottom: 5px;
    padding-top: 15px;
    font-weight: bold;
}
cakeblock div:not(:first-child) {
    margin-top: 10px;
}
cakeblock orderprice {
    position: relative;
    display: block;
    height: 40px;
    font-weight: bold;
    font-size: 50px;
    line-height: 40px;
}
cakeblock orderprice::first-letter {
    font-size: 27px;
    margin-right: 3px;
}
ordline {
    position: relative;
    display: flex;
    margin-top: 20px;
    width: 100%;
}
ordline ordqty {
    position: relative;
    display: flex;
    flex: 1;
    background-color: var(--color-pink-fade);
    padding: 5px 0;
    align-items: center;
}
ordline ordqty::before {
    flex: 1;
    content: "Quantity";
    text-transform: uppercase;
    font-size: 10px;
    font-weight: bold;
    padding: 10px;
    opacity: 0.7;
}
ordbdown, ordbup {
    background-color: #FDE9EA;
    position: relative;
    display: block;
    flex: 1;
    height: 40px;
    flex: 0 0 25px;
    cursor: pointer;
    border-radius: 20px;
    margin: 0 5px;
}
ordbdown::after, ordbup::after {
    position: absolute;
    display: block;
    content: "-";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -58%);
    font-size: 20px;
    font-weight: 700;
}
ordbup::after {
    content: "+";
    transform: translate(-50%, -60%);
}
ordbdown:hover, ordbup:hover {
    color: var(--color-border-peach);
    background-color: var(--color-dark-pink);
}
ordline input {
    background: none;
    border: none;
    position: relative;
    display: block;
    flex: 1;
    width: 10px;
    text-align: center;
    font-size: 20px;
    padding: 0;
}
ordline button {
    padding: 15px 0;
    position: relative;
    display: block;
    flex: 0.8;
    background-color: var(--color-dark-pink);
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-text-reverse);
    font-size: 16px;
    cursor: pointer;
}
ordline button:hover {
    background-color: var(--color-dark-pink-hover);
}
article {
    position: relative;
    display: block;
    padding: 10px;
    margin: 10px 0;
    counter-reset: cnth2;
}
article[data-caption]::before {
    position: relative;
    display: block;
    content: attr(data-caption);
    font-family: "Inria Serif", serif;
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 20px;
    color: var(--color-dark-pink);
    text-align: center;
    border-bottom: 2px double var(--color-pink-soft);
    letter-spacing: -0.05rem;
}
article p {
    line-height: 1.3rem;
    margin-top: 10px;
}
article h2, article h3, article h4 {
    font-family: "Inria Serif", serif;
    letter-spacing: -0.05rem;
    font-weight: 700;
    font-size: 27px;
    text-align: left;
    line-height: 30px;
    margin-top: 15px;
    margin-bottom: 5px;
    color: var(--color-dark-pink);
}
article h2 {
    font-size: 2rem;
    line-height: 2.1rem;
    margin-top: 15px;
    color: #006797;
    counter-increment: cnth2;
    counter-reset: cnth3;
}
article h2::before {
    content: counter(cnth2) ". ";
}
article h3 {
    margin-top: 15px;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    counter-increment: cnth3;
    opacity: 0.8;
}
article h3::before {
    content: counter(cnth2) ". " counter(cnth3) ". ";
}
article h4 {
    margin-top: 15px;
    font-size: 18px;
    line-height: 21px;
    opacity: 0.8;
}
article h2+h3 {
    margin-top: 5px;
}
article ol {
    padding-left: 30px;
    counter-reset: item;
    list-style: none;
}
article ol li, article ul li {
    margin-top: 10px;
    position: relative;
}
article ol li::before {
    position: absolute;
    display: block;
    left: -30px;
    width: 20px;
    text-align: right;
    font-weight: 600;
    font-size: 0.8rem;
    counter-increment: item;
    content: counter(item)".";
}
article ul li::before {
    position: absolute;
    display: block;
    left: -19px;
    top: 5px;
    width: 7px;
    height: 7px;
    border-radius: 10px;
    content: "";
    background-color: var(--color-text);
}
article ol li+li, article ul li+li {
    margin-top: 5px;
}
article ul {
    padding-left: 23px;
    list-style: none;
}
article ul ul {
    padding-left: 19px;
}
ul.discounts {
    position: relative;
    display: block;
    background-color: #e6cf00;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    line-height: 1.2rem;
    margin-top: 10px;
    list-style: none;
}
ul.discounts::before {
    position: relative;
    display: block;
    content: "Buy more, save more!";
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 5px;
}
cakeblock cb.cakeinfo {
    width: 100%;
    align-self: start;
    position: relative;
    display: grid;
    grid-area: 4 / 1;
    padding: 0 10px;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    gap: 20px;
}
table.orders {
    position: relative;
    width: 100%;
    padding: 0;
    margin-top: 10px;
    border-spacing: 0;
    margin-bottom: 20px;
    border-bottom: 1px dotted var(--color-border-pink);
}
table.orders tr td:nth-child(4) {
    text-align: right;
}
table.orders tr td:nth-child(5),
table.orders tr td:nth-child(6) {
    text-align: center;
}
table.orders td {
    padding: 10px;
    color: #555;
}
table.orders thead td {
    font-weight: bold;
    border-bottom: 2px solid var(--color-border-pink);
}
table.orders tr td:nth-child(3),
table.orders tr td:nth-child(5),
table.orders tr td:nth-child(6) {
    display: none;
}
table.orders a {
    color: var(--color-dark-pink);
    text-decoration: underline;
}

ul.ctabshead {
    border-bottom: 1px solid #FAE7E7;
    padding: 10px 0 5px 0;
    position: relative;
    display: flex;
    grid-area: 1 / 1;
    list-style: none;
    flex-wrap: wrap;
    gap: 1px;
}
ul.ctabshead::after {
    position: absolute;
    display: block;
    content: "";
    left: 0;
    bottom: -10px;
    right: 0;
    height: 1px;
    opacity: 0.3;
}
ul.ctabshead li {
    font-size: 0.8rem;
    line-height: 0.8rem;
    position: relative;
    display: block;
    padding: 5px 10px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    flex: 1 1 48%;
    text-align: center;
    background-color: var(--color-text-faint);
    color: var(--color-text-reverse);
    padding: 10px 5px;
    cursor: pointer;
}
ul.ctabshead li:hover {
    background-color: var(--color-text-muted);
}
ul.ctabshead li[data-selected] {
    background-color: var(--color-dark-pink);
    color: var(--color-text-reverse);
}
ul.ctabstabs {
    padding-top: 10px;
    grid-area: 2 / 1;
    position: relative;
    list-style: none;
    display: block;
    margin-bottom: 20px;
}
ul.ctabstabs li {
    display: none;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s;
}
ul.ctabstabs li[data-selected] {
    display: block;
    opacity: 1;
}
ul.ctabstabs li p {
    color: var(--color-text);
    line-height: 1.1rem;
    position: relative;
    display: block;
}
ul.ctabstabs li p+p {
    margin-top: 10px;
}
ul.ctabstabs p a {
    color: var(--color-dark-pink);
    text-decoration: underline;
    cursor: pointer;
}
.cat-icon-click-collect {
	--icon: url("img/i-click-and-collect.svg");
}

.cat-icon-vegan {
	--icon: url("img/i-vegan.svg");
}

.cat-icon-gluten-free {
	--icon: url("img/i-gluten-free.svg");
}

.cat-icon-round {
	--icon: url("img/i-round-cakes.svg");
}

.cat-icon-square {
	--icon: url("img/i-square-cakes.svg");
}

.cat-icon-branches {
	--icon: url("img/i-branches.svg");
}

.nav-icon-home {
    --icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23e3e3e3"><path d="M240-200h120v-240h240v240h120v-360L480-740 240-560v360Zm-80 80v-480l320-240 320 240v480H520v-240h-80v240H160Zm320-350Z"/></svg>');
}
.nav-icon-branches {
    --icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23e3e3e3"><path d="M480-301q99-80 149.5-154T680-594q0-90-56-148t-144-58q-88 0-144 58t-56 148q0 65 50.5 139T480-301Zm0 101Q339-304 269.5-402T200-594q0-125 78-205.5T480-880q124 0 202 80.5T760-594q0 94-69.5 192T480-200Zm0-320q33 0 56.5-23.5T560-600q0-33-23.5-56.5T480-680q-33 0-56.5 23.5T400-600q0 33 23.5 56.5T480-520ZM200-80v-80h560v80H200Zm280-520Z"/></svg>');
}
.nav-icon-cakes {
    --icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23e3e3e3"><path d="M160-80q-17 0-28.5-11.5T120-120v-200q0-33 23.5-56.5T200-400v-160q0-33 23.5-56.5T280-640h160v-58q-18-12-29-29t-11-41q0-15 6-29.5t18-26.5l56-56 56 56q12 12 18 26.5t6 29.5q0 24-11 41t-29 29v58h160q33 0 56.5 23.5T760-560v160q33 0 56.5 23.5T840-320v200q0 17-11.5 28.5T800-80H160Zm120-320h400v-160H280v160Zm-80 240h560v-160H200v160Zm80-240h400-400Zm-80 240h560-560Zm560-240H200h560Z"/></svg>');
}
.nav-icon-user {
    --icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23e3e3e3"><path d="M400-400q-50 0-85-35t-35-85q0-22 7-41.5t21-35.5q-4-10-6-21t-2-22q0-38 20.5-67.5T374-751q20-23 47-36t59-13q32 0 59 13t47 36q33 14 53.5 43.5T660-640q0 11-2 22t-6 21q14 16 21 35.5t7 41.5q0 50-35 85t-85 35H400Zm0-80h160q17 0 28.5-12t11.5-28q0-7-2.5-13t-7.5-12q-11-13-14.5-25.5T572-594q0-16 4-27.5t4-18.5q0-12-7-22t-18-15q-9-4-16.5-9T525-699q-5-6-16.5-13.5T480-720q-17 0-28.5 8T435-698q-6 7-13.5 12t-16.5 9q-11 5-18 15t-7 22q0 7 4 18.5t4 27.5q0 11-3.5 23.5T370-545q-5 6-7.5 12t-2.5 13q0 16 11.5 28t28.5 12ZM160-80v-112q0-34 17.5-62.5T224-298q62-31 126-46.5T480-360q66 0 130 15.5T736-298q29 15 46.5 43.5T800-192v112H160Zm80-80h480v-32q0-11-5.5-20T700-226q-54-27-109-40.5T480-280q-56 0-111 13.5T260-226q-9 5-14.5 14t-5.5 20v32Zm240 0Zm0-320Z"/></svg>');
}
.nav-icon-search {
    --icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23e3e3e3"><path d="M784-120 532-372q-30 24-69 38t-83 14q-109 0-184.5-75.5T120-580q0-109 75.5-184.5T380-840q109 0 184.5 75.5T640-580q0 44-14 83t-38 69l252 252-56 56ZM380-400q75 0 127.5-52.5T560-580q0-75-52.5-127.5T380-760q-75 0-127.5 52.5T200-580q0 75 52.5 127.5T380-400Z"/></svg>');
}

@keyframes placesh {
	0%  { transform: rotateZ(0deg); }
	1%  { transform: rotateZ(3deg); }
	3%  { transform: rotateZ(-3deg); }
	4%  { transform: rotateZ(0deg); }
	8%  { transform: rotateZ(0deg); }
	9%  { transform: rotateZ(3deg); }
	11% { transform: rotateZ(-3deg); }
	12% { transform: rotateZ(0deg); }
}
@keyframes placeorder {
	0%   { opacity: 0.4; width: 100%; height: 100%; }
	40%  { opacity: 0.2; width: 115%; height: 150%; }
	80%  { opacity: 0.1; }
	100% { opacity: 0;   width: 119%; height: 170%; }
}

dialog.branches-input {
    width: min(400px, 90vw);
    height: 85vh;
    max-height: 720px;
    margin: auto;
    padding: 0;
    border: none;
    border-radius: 10px;
    background-color: #bbb;
    overflow: hidden;
    box-shadow: 5px 5px 30px #000a;
}
dialog.branches-input[open] {
    display: flex;
    flex-direction: column;
}
dialog.branches-input::backdrop {
    background-color: #000c;
}
brinp-bar {
    position: relative;
    display: block;
    flex: 0 0 auto;
    padding: 15px 15px 5px 15px;
}
brinp-bar label {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}
brinp-bar input {
    width: calc(100% - 4px);
    padding-right: 50px;
}
brsearch {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    background-color: #555;
    right: 28px;
    top: 46px;
    border-radius: 20px;
    cursor: pointer;
}
brsearch:hover {
    background-color: var(--color-dark-pink);
}
brsearch::after {
	position: absolute;
	display: block;
	content: "";
	left: 50%;
	top: 50%;
	width: 20px;
	height: 20px;
	transform: translate(-50%, -50%);
    -webkit-mask-image: var(--icon);
    mask-image: var(--icon);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
	background-color: #fff;
}
sbtn {
    position: absolute;
    display: block;
    width: 38px;
    height: 38px;
    z-index: 10;
    background-color: var(--color-dark-pink);
    right: 5px;
    top: 5px;
    border-radius: 40px;
    cursor: pointer;
}
sbtn:hover {
    background-color: var(--color-dark-pink-hover);
}
sbtn::after {
	position: absolute;
	display: block;
	content: "";
	left: 50%;
	top: 50%;
	width: 25px;
	height: 25px;
	transform: translate(-50%, -50%);
    -webkit-mask-image: var(--icon);
    mask-image: var(--icon);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
	background-color: #fff;
}
brinp-list {
    position: relative;
    display: block;
    flex: 1 1 auto;
    margin: 0 15px;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 5px;
    border: 1px solid #aaa
}
brinp-br {
    position: relative;
    display: block;
    padding: 8px 15px;
    background-color: #ccc;
    font-size: 0.9rem;
}
brinp-br b {
    font-size: 1rem;
}

brinp-br[dist]::after {
    position: absolute;
    display: block;
    content: attr(dist);
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: bold;
    opacity: 0.5;
}
brinp-br:hover {
    background-color: var(--color-border-pink);
}
brinp-br[selected] {
    background-color: var(--color-dark-pink);
    color: var(--color-text-reverse);
}
dialog.branches-input button {
    align-self: flex-end;
    display: block;
    width: 100px;
    margin: 10px 15px;
    padding: 10px;
    border: 1px solid #aaa;
    background-color: #eee;
    border-radius: 5px;
    cursor: pointer;
}
dialog.branches-input button:hover {
    background-color: var(--color-dark-pink);
}

dialog.datetime-input {
	width: 354px;
	margin: auto;
	padding: 5px;
	border: none;
	border-radius: 12px;
	background-color: #555;
	overflow: hidden;
	box-shadow: 5px 5px 30px #000a;
}
dialog.datetime-input[open] {
	display: grid;
	grid-template-columns: 250px 90px;
	grid-template-rows: 40px 235px 70px;
	gap: 4px;
}
dialog.datetime-input::backdrop {
	background-color: #000c;
}
date-header {
	position: relative;
	display: block;
	grid-column: 1 / span 2;
	grid-row: 1;
	background-color: #555;
	border-radius: 8px 0 0 0;
	overflow: hidden;
}
date-header::after {
	position: absolute;
	display: block;
	content: attr(data-caption);
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-weight: 500;
	color: #fff;
}
date-prev, date-next {
	position: absolute;
	display: block;
	width: 36px;
	height: 36px;
	left: 0;
	top: 0px;
	border-radius: 30px;
	cursor: pointer;
}
date-prev::after, date-next::after {
	position: absolute;
	display: block;
	content: "\276E";
	font-size: 14px;
	left: 50%;
	top: 50%;
	color: #888;
	transform: translate(-50%, -50%);
}
date-prev:hover, date-next:hover {
	background-color: #444;
}
date-next::after {
	content: "\276F";
}
date-next {
	left: auto;
	right: 0;
}

ul#calendar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    grid-column: 1;
    grid-row: 2;
    background-color: #aaa;
    list-style: none;
    gap: 2px;
    border-radius: 8px 8px 0 0;
}
ul#calendar li {
    position: relative;
    display: block;
    flex: 1 1 13%;
    text-align: center;
    align-content: center;
    background-color: #eee;
    cursor: pointer;
    overflow: hidden;
    height: 33px;
}
ul#calendar li:empty {
    pointer-events: none;
    background-color: #d4d4d4;
}
ul#calendar li:hover {
    background-color: #a2def8;
}
ul#calendar li[data-selected] {
	background-color: #f8a2f4;
}
ul#calendar li[data-selected]:hover {
	background-color: #b67fdd;
}
ul#calendar li[data-today]::after {
	position: absolute;
	display: block;
	content: "";
	width: 15px;
	height: 15px;
	background-color: #9b6e9c;
	right: -8px;
	bottom: -8px;
	transform: rotateZ(45deg);
}
ul#calendar li:nth-child(-n+7) {
    pointer-events: none;
    background: none;
    height: 25px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #555;
}
ul#calendar li[data-disabled] {
	pointer-events: none;
	background-color: #ddd;
	color: #aaa;
}

ul#inptime {
    position: relative;
    display: block;
    grid-column: 2;
    grid-row: 2;
    background-color: #ddd;
    list-style: none;
    overflow: hidden scroll;
    border-radius: 8px 8px 0 0;
}
ul#inptime li {
    font-size: 14px;
    font-weight: bold;
    position: relative;
    display: block;
    padding: 5px;
    text-align: right;
    cursor: pointer;
}
ul#inptime li+li {
    border-top: 2px solid #ccc;
}
ul#inptime li:hover {
    background-color: #a2def8;
}
ul#inptime li[data-selected] {
	background-color: #f8a2f4;
}
ul#inptime li[data-selected]:hover {
	background-color: #b67fdd;
}
ul#inptime::-webkit-scrollbar {
    width: 12px;
}
ul#inptime::-webkit-scrollbar-track {
    background: #aaa;
    border-radius: 0 8px 0 0;
}
ul#inptime::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 8px;
    border: 3px solid #aaa;
}
ul#inptime::-webkit-scrollbar-thumb:hover {
    background: #555;
}

dialog-footer {
	position: relative;
	display: block;
	grid-column: 1 / span 2;
	grid-row: 3;
	background-color: #555;
	overflow: hidden;
	border-radius: 0 0 8px 0;
	padding-top: 20px;
}
dialog-footer::after {
	position: absolute;
	display: block;
	content: attr(data-caption);
	left: 8px;
	top: 15%;
	right: 8px;
	transform: translateY(-50%);
	font-weight: bold;
	color: #fff;
	text-align: center;
}
dialog-footer button {
	position: relative;
	display: block;
	float: right;
	height: 36px;
	padding: 0 20px;
	background-color: #ddd;
	margin-left: 4px;
	cursor: pointer;
	margin-top: 8px;
	border-radius: 5px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 0.8rem;
}
dialog-footer button[data-submit] {
	background-color: #97b4e3;
}
dialog-footer button:hover {
	background-color: #888;
	color: #fff;
}
dialog-footer button[data-submit]:hover {
	background-color: #1b67ff;
}
