*: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;
}
:root {
	--color-text: #333;
	--color-dark-pink: #d5036b;
	--color-blue: #00a0e3;
	--color-text-reverse: #fff;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
html, body {
	-webkit-overflow-scrolling: touch;
    width: 100%;
}
html, body, td, select, input, textarea {
	font: 15px/15px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}
page {
	position: relative;
	display: block;
	width: 1000px;
    left: 50%;
    transform: translateX(-50%);
	z-index: 10;
}
page[toppage] {
	z-index: 99;
}
page ptitle {
	position: relative;
	display: block;
	font-size: 30px;
	line-height: 33px;
	margin-bottom: 10px;
	margin-top: -20px;
}
top {
	position: relative;
	display: flex;
	align-items: center;
	margin: 10px 0;
}

toplogo {
	position: relative;
	display: block;
	flex-basis: 220px;
	height: 60px;
	background: url(img/eggless-cake-shop-logo-full.svg) left center no-repeat;
	background-size: contain;
}

top a {
	position: relative;
	display: block;
	flex: 0 0 auto;
	color: var(--color-text);
	text-decoration: none;
	padding: 0 15px;
}
top a::after {
	position: absolute;
	display: block;
	content: "";
	width: 0%;
	height: 3px;
	background-color: var(--color-dark-pink);
	left: 50%;
	transform: translateX(-50%);
	bottom: -10px;
	opacity: 0;
	transition: opacity 0.5s, width 0.5s;
}
top a:hover {
	color: var(--color-dark-pink);
}
top a:hover::after {
	width: 100%;
	opacity: 1;
}

loyalty {
	display: none;
}
topbasket {
	position: relative;
	display: block;
	background-color: var(--color-dark-pink);
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	border-radius: 20px;
	margin-left: 10px;
	cursor: pointer;
}
topbasket::after {
	position: absolute;
	display: block;
	content: "";
	width: 55%;
	height: 55%;
	background-color: #fff;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -55%);
	mask: url(img/shopping.svg) center center no-repeat;
	mask-size: contain;
}
topbasket[items]::before {
    position: absolute;
    display: block;
    content: attr(items);
    bottom: -3px;
    left: -3px;
    font-weight: bold;
    font-size: 9px;
    line-height: 9px;
    padding: 2px 4px;
    background-color: #9718ff;
    border-radius: 10px;
    color: #fff;
    z-index: 99;
}
topbasket:hover {
	background-color: var(--color-blue);
}

banners {
	position: relative;
	display: block;
	width: 100%;
    height: 495px;
}
banner {
	position: absolute;
	display: none;
	left: 0;
	right: 0;
	top: 0;
	bottom: 20px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: opacity 1s;
	opacity: 0;
	pointer-events: none;
}
banner:first-of-type {
	display: block;
}
banner[show] {
	opacity: 1;
	pointer-events: auto;
	cursor: pointer;
}
navdots {
	position: absolute;
	display: flex;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
}
ndt {
	position: relative;
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 6px;
	margin: 2px;
	border: 1.5px solid #aaa;
	pointer-events: none;
	transition: width 0.5s;
}
ndt[active] {
	background-color: var(--color-dark-pink);
	border-color: var(--color-dark-pink);
	width: 20px;
}

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-candc::before {
	mask-image: url("img/i-click-and-collect.svg");
}

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

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

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

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

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

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-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;
}

categories, cakelist {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
	justify-content: center;
}

cakelist {
    gap: 14px;
}

cakelist[emptysearch] {
    height: 50vh;
}

categories a, cakelist a {
	position: relative;
	display: block;
	flex: 0 0 25%;
	color: var(--color-text);
	text-decoration: none;
	margin-top: 20px;
	text-align: center;
	cursor: pointer;
	padding: 10px;
	border-radius: 20px;
	transition: background-color 0.5s;
}

cakelist a {
	flex: 0 0 18.8%;
    aspect-ratio: 1/1;
    background-color: #F8F3EB;
    border-radius: 0px;
}

cakelist a:hover {
    background-color: #eab1ce;
}

cakelist ccaption {
    position: absolute;
    display: block;
    bottom: -3px;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(100%);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    line-height: 15px;
}

cakelist ccode {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    padding: 5px 7px;
    background-color: #a60865;
    font-weight: bold;
    color: #fff;
    font-size: 10px;
    line-height: 9px;
    pointer-events: none;
}

 ccicons {
    position: absolute;
    display: flex;
    right: 6px;
    bottom: 6px;
    height: 18px;
    gap: 4px;
    pointer-events: none;
    opacity: 0.7;
}

categories cimage, cakelist cimage {
	position: relative;
	display: block;
	width: 100%;
    aspect-ratio: 1/1;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	margin-bottom: 10px;
}

cakelist cimage {
    margin-bottom: 0;
}

categories ccaption {
	position: absolute;
	display: block;
	left: 10px;
	right: 10px;
	height: 20px;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
categories cbutton, abutton {
	position: relative;
	display: inline-block;
	background-color: var(--color-dark-pink);
	color: var(--color-text-reverse);
	margin-top: 20px;
	padding: 5px 15px;
	border-radius: 14px;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 0.8rem;
	line-height: 0.8rem;
}

abutton {
	cursor: pointer;
}
categories a:hover {
	background-color: #f3e4e4;
}
categories a:hover cbutton, abutton:hover {
	background-color: var(--color-blue);
}
flexspace {
	flex: 1;
}

tdesign {
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	right: 0;
	height: 400px;
	background: url(img/wave.webp) 0 -200px repeat-x;
	background-size: 1000px;
	background-position-x: -400px;
}
tdesign::before {
	content: "";
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	right: 0;
	height: 400px;
	background: url(img/wave.webp) 0 -210px repeat-x;
	background-size: 1000px;
	background-position-x: 500px;
}
tdesign::after {
	content: "";
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	right: 0;
	height: 400px;
	background: url(img/wave.webp) 0 -220px repeat-x;
	background-size: 1000px;
}
topwave {
	position: relative;
	display: block;
	width: 100%;
	background: url(img/topwave.webp) center top repeat-x;
	background-size: 1000px;
	padding-top: 50px;
	margin-top: -40px;
}
topwave::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 20%;
	bottom: 0;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}

waveblock {
	position: relative;
	display: block;
	width: 100%;
	margin: 60px 0;
	background-color: rgba(255, 220, 220, 0.4);
}
waveblock::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	top: -60px;
	height: 60px;
	width: 100%;
	right: 0;
	background: url(img/topwave.webp) center top repeat-x;
	background-size: 1000px;
	overflow: hidden;
}
waveblock::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	width: 100%;
	bottom: -60px;
	height: 60px;
	right: 0;
	background: url(img/bottomwave.webp) center bottom repeat-x;
	background-size: 1000px;
	overflow: hidden;
}

reviews {
	position: relative;
	display: block;
}
reviews page {
	height: 200px;	
}
review {
	position: absolute;
	display: block;
	left: 50%;
	top: 43%;
	transform: translate(-50%, -50%);
	width: 90%;
	text-align: center;
	color: var(--color-text);
	pointer-events: none;
	opacity: 0;
	transition: opacity 1s;
}
review[show] {
	opacity: 1;
}
rtxt {
	font-size: 1.4rem;
	line-height: 1.6rem;
}
rtxt::before {
	content: "\201C";
}
rtxt::after {
	content: "\201D";
}
rtxt::before, rtxt::after {
	font-size: 2rem;
	vertical-align: -0.3rem;
	opacity: 0.5;
}
rauthor {
	position: relative;
	display: block;
	margin-top: 10px;
	opacity: 0.7;
}
rrating {
	position: relative;
	display: block;
	margin-bottom: 10px;
	font-size: 1.3rem;
}

fblock {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}

h1 {
	position: relative;
	display: block;
	width: 100%;
	text-align: center;
	font-weight: normal;
	font-style: normal;
	font-size: 2.3rem;
	line-height: 3rem;
	color: var(--color-dark-pink);
	pointer-events: none;
}
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 {
	position: relative;
	display: flex;
	text-align: center;
	font-style: normal;
	font-size: 1.1rem;
	line-height: 1.1rem;
	color: #555;
	pointer-events: none;
    width: 100%;
    gap: 10px;
    text-transform: uppercase;
    margin-top: 20px;
    font-weight: bold;
}
h3::before, h3::after {
	content: "";
	position: relative;
	border-bottom: 2px solid #f3d2d3;
    flex: 1;
    height: 9px;
}
h4 {
	position: relative;
	display: block;
	width: 100%;
	text-align: center;
	font-weight: normal;
	font-style: normal;
	color: var(--color-text);
	opacity: 0.7;
	line-height: 1.2rem;
	pointer-events: none;
}
h4:empty {
    display: none;
}
fblock blk {
	position: relative;
	display: block;
	flex: 1;
}
fblock blk img {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
adtxt {
	position: relative;
	display: block;
	text-align: left;
}
adtxt[aright] {
	text-align: right;
}
adtxt h2 {
	text-align: left;
	line-height: 2.4rem;
}
adtxt h4 {
	text-align: left;
}
adtxt[aright] h2, adtxt[aright] h4 {
	text-align: right;
}
adtxt h2:not(:only-child) {
	margin-bottom: 15px;
}
adtxt *:not(abutton), fblock img {
	pointer-events: none;
}
smediablk {
	position: relative;
	display: block;
	left: 0;
	width: 100%;
	height: 250px;
	overflow: hidden;
	z-index: 10;
	margin-top: -70px;
}
smediablk a {
	position: absolute;
	display: block;
	bottom: 0;
	width: 200px;
	height: 200px;
	left: -200px;
	transition: none;
	will-change: transform;
	backface-visibility: hidden;
}
smediablk a[moveleft] {
	transform: translateX(-200px);
	transition: transform 1s;
}
smediablk 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;
}
smediablk a:hover img {
	border-color: var(--color-dark-pink);
}
page split {
	position: relative;
	display: flex;
	width: 100%;
	gap: 30px;
	align-items: stretch;
	padding-bottom: 10px;
}
ul.bbranches {
	position: relative;
	display: flex;
	flex: 1 1 200px;
	flex-direction: column;
	flex-wrap: wrap;
	flex-flow: column wrap;
	list-style: none;
	max-height: 230px;
	gap: 10px 20px
}
ul.bbranches li {
	position: relative;
	display: block;
	cursor: pointer;
}
ul.bbranches li a {
	text-decoration: none;
	color: #222;
    padding: 10px 0px;
}
ul.bbranches li a:hover {
	color: var(--color-dark-pink);
}
ul.bbranches li[selected] a {
	color: #fff;
}
ul.bbranches li[selected]::before {
	position: absolute;
	display: block;
	content: "";
	left: -8px;
	right: -8px;
	top: -5px;
	bottom: -5px;
	background-color: var(--color-dark-pink);
	border-radius: 16px;
	z-index: -1;
}
selbranch {
	flex: 1;
	text-align: center;
	align-content: center;
	background-color: rgba(240, 106, 22, 0.11);
	border-radius: 8px;
}
selbranch a {
	position: relative;
	display: inline-block;
	text-decoration: none;
	color: #fff;
	background-color: var(--color-blue);
	padding: 10px 15px;
	border-radius: 4px;
	cursor: pointer;
}
selbranch a:hover {
	background-color: var(--color-dark-pink);
}
selbranch:empty {
	opacity: 0;
}
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[isbh] {
	color: #145bb8;
}
ul.selophrs li[today] {
	color: #c1003a;
}
bottom {
	position: relative;
	display: block;
	background-color: var(--color-dark-pink);
	padding-top: 30px;
	margin-top: -50px;
	padding-bottom: 10px;
}
bline {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	align-content: flex-start;
    width: calc(100% - 220px);
    margin-left: 220px;
}
bline a {
	position: relative;
	display: block;
	text-decoration: none;
	color: #fff;
	white-space: nowrap;
}
bline>a:hover::before, bbline>a:hover::before {
	position: absolute;
	display: block;
	left: -10px;
	top: -5px;
	bottom: -5px;
	right: -10px;
	content: "";
	background-color: #9d024e;
	z-index: -1;
	border-radius: 16px;
}
bsocial {
	position: relative;
	display: flex;
	flex: 1;
	gap: 5px;
    margin: 20px 220px 10px;
}
bsocial a {
    position: relative;
    display: block;
}
bsocial a img {
    width: 25px;
}
img.blogo {
	position: absolute;
	width: 200px;
}
pcopy {
	position: relative;
    display: block;
	color: #fff;
    text-align: center;
    padding: 0 20px;
    font-size: 9px;
}
noitems {
    position: relative;
    display: block;
    font-size: 2rem;
    line-height: 2rem;
    margin: 100px 0;
    pointer-events: none;
    opacity: 0.6;
}
ul.tpath {
    position: relative;
    display: flex;
    list-style: none;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12px;
    color: var(--color-dark-pink);
    counter-reset: tpathcntr;
    padding: 40px 0;
    pointer-events: none;
}
ul.tpath li {
    position: relative;
    display: block;
    text-align: left;
    padding-left: 25px;
    line-height: 20px;
}
ul.tpath li:not(:last-of-type) {
    padding-right: 50px;
}
ul.tpath li::before {
    position: absolute;
    display: block;
    left: 0px;
    top: 50%;
    transform: translateY(-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:not(:last-of-type)::after {
    position: absolute;
    display: block;
    content: "\276D\276D";
    font-size: 19px;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}
ul.tpath li:not([active]) {
    filter: grayscale(1);
    opacity: 0.7;
}
cakeblock {
    position: relative;
    display: grid;
    width: 100%;
    padding-bottom: 20px;
    grid-template-columns: 670px auto;
    grid-template-rows: auto auto 100%;
    gap: 20px
}
cakeblock cb.cakepicture {
    position: relative;
    grid-column: 1;
    grid-row: 1 / span 2;
    height: 670px;
    width: 670px;
    background-color: #fff;
    border: 10px solid #FAE7E7;
    border-radius: 0 30px 0 0;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
cakeblock cb.cakepicture ccicons {
    height: 30px;
    gap: 5px;
    right: 10px;
    bottom: 10px;
}
cakeblock cb.caketitle {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    margin-top: 6px;
}
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);
}
cakeblock cb.cakeorder {
    position: relative;
    width: 100%;
    grid-column: 2;
    grid-row: 2 / span 2;
    border-top: 1px solid #ecd4d4;
    padding-top: 5px;
}
cakeblock cb.cakeinfo {
    position: relative;
    width: 100%;
    align-self: start;
    grid-column: 1;
    grid-row: 3;
}
ul.ctabshead {
    position: relative;
    display: flex;
    list-style: none;
    border-bottom: 1px solid #FAE7E7;
    padding: 10px 0 5px 0;
    flex-wrap: wrap;
}
ul.ctabshead li {
    position: relative;
    display: block;
    padding: 5px 10px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
    line-height: 0.8rem;
    font-weight: bold;
    color: #333;
}
ul.ctabshead li:hover {
    background-color: #bbb;
}
ul.ctabshead li[selected] {
    background-color: var(--color-dark-pink);
    color: var(--color-text-reverse);
}
ul.ctabstabs {
    position: relative;
    list-style: none;
    display: block;
    padding-top: 10px;
}
ul.ctabstabs li {
    position: relative;
    display: none;
}
ul.ctabstabs li[selected] {
    display: block;
}
cakeblock label {
    position: relative;
    display: block;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: bold;
    color: #333;
    margin-top: 15px;
    margin-bottom: 5px;
}
cb[loading] {
    filter: grayscale(1);
    opacity: 0.4;
    pointer-events: none;
}
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;
}
input {
    padding: 11.5px 15px;
    border: 4px solid #f8d0d2;
    height: 48px;
}
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;
}
orderprice[saved]::after {
    position: relative;
    display: block;
    content: attr(saved);
    font-size: 0.8rem;
    line-height: 0.8rem;
    margin-top: -0.5rem;
    color: #1467ac;
}
ordline {
    position: relative;
    display: flex;
    margin-top: 15px;
}
ordline ordqty {
    position: relative;
    display: flex;
    flex: 1;
    background-color: #FDE9EA;
    padding: 10px;
    align-items: center;
}
ordline ordqty::before {
    flex: 1;
    content: "Quantity";
    text-transform: uppercase;
    font-size: 10px;
}
ordline button {
    position: relative;
    display: block;
    flex: 1;
    background-color: var(--color-dark-pink);
    color: var(--color-text-reverse);
    padding: 15px 0;
    text-transform: uppercase;
    cursor: pointer;
}
ordline button:hover {
    background-color: #86001d;
}
ordbdown, ordbup {
    position: relative;
    display: block;
    flex: 0 0 24px;
    height: 24px;
    border-radius: 15px;
    background-color: #FDE9EA;
    cursor: pointer;
}
ordbdown:hover, ordbup:hover {
    background-color: #aaa5;
}
ordbdown::after, ordbup::after {
    position: absolute;
    display: block;
    content: "-";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -58%);
}
ordbup::after {
    content: "+";
    transform: translate(-50%, -60%);
}
ordline input {
    padding: 0;
    text-align: center;
    width: 35px;
    background: none;
    border: none;
}

ul.ctabstabs li p {
    position: relative;
    display: block;
    color: var(--color-text);
    line-height: 1.1rem;
}
ul.ctabstabs li p+p {
    margin-top: 10px;
}
ordermsg {
    position: relative;
    display: block;
    background-color: var(--color-dark-pink);
    border-radius: 10px;
    padding: 20px;
    color: var(--color-text-reverse);
    text-align: center;
    line-height: 1.2rem;
    margin-top: 10px;
}
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;
}
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%;
}
searchblock[location] input {
    padding-right: 100px;
}
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;
}
.pinfull mpin.pinopen::after {
    position: absolute;
    content: "OPEN";
    font-size: 11px;
    line-height: 11px;
    font-weight: bold;
    color: #fff;
    background-color: rgb(0, 190, 35);
    padding: 5px 6px;
    border-radius: 10px 0;
}
.pinfull mpin.pinclosed::after {
    position: absolute;
    content: "CLOSED";
    font-size: 11px;
    line-height: 11px;
    font-weight: bold;
    color: #fff;
    background-color: rgb(224, 0, 0);
    padding: 5px 6px;
    border-radius: 10px 0;
}



modals {
    position: fixed;
    display: block;
    left: 0;
    top: 0;
    right: 0;
    height: 110vh;
    background-color: #111b;
    z-index: 999;
}
modal {
    position: absolute;
    display: block;
    max-width: 90vw;
    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 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;
}
closebranches a islocal {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    left: 5px;
    top: 5px;
}
closebranches a islocal::after {
    position: absolute;
    display: block;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url(img/heart-fill.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.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 {
    position: relative;
    display: block;
    margin-top: 10px;
    padding-bottom: 30px;
}
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: capitalize!important;
}
article h1 {
    font-size: 2.5rem;
    line-height: 2.6rem;
    margin-top: 20px;
    color: var(--color-dark-pink);
}
article h2 {
    font-size: 2rem;
    line-height: 2.1rem;
    margin-top: 15px;
    color: #006797;
}
article h1 + h2 {
    margin-top: 5px;
}
article h3 {
    font-size: 1.4rem;
    line-height: 1.5rem;
    margin-top: 15px;
    font-weight: 500;
}
article h3 > strong {
    font-weight: 500;
}
article h3::before,
article h3::after {
    display: none;
}
article h2 + h3 {
    margin-top: 5px;
}
article h4 {
    font-size: 1.4rem;
    line-height: 1.5rem;
    margin-top: 15px;
}
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;
}
article ol,
article ul {
    margin-left: 30px;
    list-style: none;
}
article ol {
    counter-reset: cntr;
}
article ol li {
    counter-increment: cntr;
}
article li + li {
    margin-top: 5px;
}
article ol li::before {
    position: absolute;
    left: -30px;
    width: 20px;
    content: counter(cntr)".";
    text-align: right;
    font-weight: 500;
}
logintabs {
    position: relative;
    display: flex;
    justify-content: center;
    width: 400px;
    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;
}
table.orders {
    position: relative;
    width: 100%;
    padding: 0;
    margin-top: 10px;
    border-spacing: 0;
}
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 #c3a6a6;
}
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 80px 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-bottom: 10px;
}
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% - 80px);
    min-height: 100px;
    border: 4px solid #f8d0d2;
    border-radius: 4px;
    padding: 10px;
    margin-top: 5px;
    resize: none;
    line-height: 1.2rem;
}
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);
}

orditems alrginf {
    position: relative;
    display: block;
    padding: 20px;
    line-height: 1.2rem;
    background-color: #C32A6B;
    margin-top: 10px;
    color: #fff;
    border-radius: 8px;
}
basketact {
    position: relative;
    display: block;
    padding: 20px;
    line-height: 1.2rem;
    background-color: #027c0a;
    margin-top: 10px;
    color: #fff;
    border-radius: 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;
}
@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%;
    }
}
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;
}
datetimeinput {
    position: fixed;
    display: grid;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99;
    grid-template-columns: auto 300px 95px auto;
    grid-template-rows: auto 40px 280px 50px auto;
    background-color: #000c;
    gap: 4px;
}
datetimeinput::before {
    content: "";
    position: absolute;
    display: block;
    grid-column: 2;
    grid-row: 2;
    background-color: #555;
    left: -5px;
    top: -5px;
    width: 409px;
    height: 388px;
    border-radius: 12px;
    filter: drop-shadow(5px 5px 30px #000a);
}
dateline {
    position: relative;
    display: block;
    grid-column: 2 / span 2;
    grid-row: 2;
    background-color: #555;
    border-radius: 8px 0 0 0;
    overflow: hidden;
}
dateline::after {
    position: absolute;
    display: block;
    content: attr(caption);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 500;
    color: #fff;
}
dateprev, datenext {
    position: absolute;
    display: block;
    width: 36px;
    height: 36px;
    left: 0;
    top: 0px;
    border-radius: 30px;
    cursor: pointer;
}
dateprev::after, datenext::after {
    position: absolute;
    display: block;
    content: "\276E";
    font-size: 14px;
    left: 50%;
    top: 50%;
    color: #888;
    transform: translate(-50%, -50%);
}
dateprev:hover, datenext:hover {
    background-color: #444;
}
datenext::after {
    content: "\276F";
}
datenext {
    left: auto;
    right: 0;
}
ul#calendar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    grid-column: 2;
    grid-row: 3;
    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: 40px;
}
ul#calendar li:empty {
    pointer-events: none;
    background-color: #d4d4d4;
}
ul#calendar li:hover {
    background-color: #a2def8;
}
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:nth-child(-n+7) {
    pointer-events: none;
    background: none;
    height: 25px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #555;
}
ul#calendar li[disabled] {
    pointer-events: none;
    background-color: #ddd;
    color: #aaa;
}
ul#inptime {
    position: relative;
    display: block;
    grid-column: 3;
    grid-row: 3;
    background-color: #ddd;
    list-style: none;
    overflow: hidden scroll;
    border-radius: 8px 8px 0 0;
}
ul#inptime li {
    position: relative;
    display: block;
    padding: 10px 8px;
    text-align: right;
    cursor: pointer;
}
ul#inptime li+li {
    border-top: 2px solid #ccc;
}
ul#inptime li:hover {
    background-color: #a2def8;
}
ul#inptime li[selected] {
    background-color: #f8a2f4;
}
ul#inptime li[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;
}
bottomline {
    position: relative;
    display: block;
    grid-column: 2 / span 2;
    grid-row: 4;
    background-color: #555;
    overflow: hidden;
    border-radius: 0 0 8px 0;
}
bottomline::after {
    position: absolute;
    display: block;
    content: attr(caption);
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: #fff;
}
bottomline button {
    position: relative;
    display: block;
    float: right;
    height: 36px;
    padding: 0 20px;
    background-color: #ddd;
    margin-right: 4px;
    cursor: pointer;
    margin-top: 8px;
    border-radius: 4px;
	text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
}
bottomline button[submit] {
    background-color: #97b4e3;
}
bottomline button:hover {
    background-color: #888;
    color: #fff;
}
bottomline button[submit]:hover {
    background-color: #1b67ff;
}