@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap");
.body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	word-spacing: 0.05rem;
}
.prizes-container:hover {
	cursor: pointer;
}
/* Dropdown hover */
.dropdown-center:hover .dropdown-menu {
	display: block;
}
.vault {
	width: 200px;
	height: 200px;
}
.vault:hover {
	cursor: pointer;
}
/* ballon code */
.balloncontainer {
	margin: 20px;
	text-align: center;
}
.social-icon {
	font-size: 2rem; /* Adjust size as needed */
	text-decoration: none;
}

.social-icon i {
	display: inline-block;
	vertical-align: middle;
}

.balloon {
	display: inline-block;
	width: 120px;
	height: 145px;
	background: hsl(215, 50%, 65%);
	border-radius: 80%;
	position: relative;
	box-shadow: inset -10px -10px 0 rgba(0, 0, 0, 0.07);
	margin: 20px 30px;
	transition: transform 0.5s ease;
	z-index: 10;
	animation: balloons 4s ease-in-out infinite;
	transform-origin: bottom center;
	cursor: pointer;
}

@media (max-width: 576px) {
	.balloon {
		width: 119px;
		margin: 10px;
	}
}

@keyframes balloons {
	0%,
	100% {
		transform: translateY(0) rotate(-4deg);
	}
	50% {
		transform: translateY(-25px) rotate(4deg);
	}
}
.balloon:before {
	content: "▲";
	font-size: 20px;
	color: hsl(215, 30%, 50%);
	display: block;
	text-align: center;
	width: 100%;
	position: absolute;
	bottom: -12px;
	z-index: -100;
}
.balloon:after {
	display: inline-block;
	top: 153px;
	position: absolute;
	height: 250px;
	width: 1px;
	margin: 0 auto;
	content: "";
	background: rgba(0, 0, 0, 0.2);
}
.balloon:nth-child(2) {
	background: hsl(245, 40%, 65%);
	animation-duration: 3.5s;
}
.balloon:nth-child(2):before {
	color: hsl(245, 40%, 65%);
}
.balloon:nth-child(3) {
	background: hsl(139, 50%, 60%);
	animation-duration: 3s;
}
.balloon:nth-child(3):before {
	color: hsl(139, 30%, 50%);
}
.balloon:nth-child(4) {
	background: hsl(59, 50%, 58%);
	animation-duration: 4.5s;
}
.balloon:nth-child(4):before {
	color: hsl(59, 30%, 52%);
}
.balloon:nth-child(5) {
	background: hsl(23, 55%, 57%);
	animation-duration: 5s;
}
.balloon:nth-child(5):before {
	color: hsl(23, 44%, 46%);
}
.balloon:nth-child(6) {
	background: hsl(315, 50%, 60%);
	animation-duration: 5.5s;
}
.balloon:nth-child(6):before {
	color: hsl(315, 30%, 50%);
}

.balloon:nth-child(7) {
	background: hsl(200, 50%, 60%);
	animation-duration: 6s;
}
.balloon:nth-child(7):before {
	color: hsl(200, 30%, 50%);
}

.balloon:nth-child(8) {
	background: hsl(85, 50%, 60%);
	animation-duration: 6.5s;
}
.balloon:nth-child(8):before {
	color: hsl(85, 30%, 50%);
}
.balloon:nth-child(9) {
	background: hsl(170, 50%, 60%);
	animation-duration: 7s;
}
.balloon:nth-child(9):before {
	color: hsl(170, 30%, 50%);
}

.balloon:nth-child(10) {
	background: hsl(45, 50%, 60%);
	animation-duration: 7.5s;
}
.balloon:nth-child(10):before {
	color: hsl(45, 30%, 50%);
}

.balloon:nth-child(11) {
	background: hsl(300, 50%, 60%);
	animation-duration: 8s;
}
.balloon:nth-child(11):before {
	color: hsl(300, 30%, 50%);
}

.balloon:nth-child(12) {
	background: hsl(210, 50%, 60%);
	animation-duration: 8.5s;
}
.balloon:nth-child(12):before {
	color: hsl(210, 30%, 50%);
}

.balloon:nth-child(13) {
	background: hsl(90, 50%, 60%);
	animation-duration: 9s;
}
.balloon:nth-child(13):before {
	color: hsl(90, 30%, 50%);
}

.balloon:nth-child(14) {
	background: hsl(0, 81%, 33%);
	animation-duration: 9.5s;
}
.balloon:nth-child(14):before {
	color: hsl(0, 70%, 40%);
}

.message {
	display: none;
	margin-top: 20px;
	font-size: 24px;
}
/* ///////////////////////////////////////////////////////////////////////////// */
/* .vault {
            width: 100%;
            height: 170px;
            background-color: #6c757d;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 3px solid #000000;
            border-radius: 10px;
            cursor: pointer;
            transition: background-color 0.3s;
            position: relative;
            overflow: hidden;
        }

        .back {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #5a6268;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .vault.open .back {
            transform: translateY(0);
        }

        .sponsor-name {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .amount {
            font-size: 1.2rem;
        }

        .bankbody {
            text-align: center;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .game-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .status-container {
            margin-top: 20px;
        } */

/* //////////////////////////////////////////////////////////////////////////// */
#reset-button {
	margin-top: 10px;
}
.fw-400 {
	font-weight: 400;
}
.btn-custom {
	color: #d7a033;
	background-color: #fff;
}
.customtext {
	color: #d7a033;
}

.link-custom {
	color: #d7a033;
}
.link-custom:hover {
	color: #797979;
}
.btn-custom:hover {
	background-color: #d7a033;
	color: #fff;
}

.btn-custom3 {
	background-color: #d7a033;
	color: #fff;
}

.btn-custom3:hover {
	background-color: #d7a033;
	color: #fff;
}
.btn-custom3:focus {
	background-color: #d7a033;
	color: #fff;
}

.p-57 {
	padding: 57px;
}
.w-75 {
	width: 75%;
}
.w-153 {
	width: 153%;
}
.menubutton :hover {
	color: #eaeaea;
}
.h5custom {
	font-size: inherit;
	color: gray;
}
.icontext {
	font-size: medium;
	font-weight: 500;
}
.greysection {
	background-color: rgb(245, 245, 245);
}

.MenuNav {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 30%;
	overflow-y: auto;
	overscroll-behavior-inline: contain;
	background-color: white;
	margin: 0;
}
.MenuNav::-webkit-scrollbar {
	width: 0;
}
.item {
	padding: 0.5rem;
	margin-right: auto;
	background-color: rgb(241, 232, 201);
	border-radius: 20px;
	width: -webkit-fill-available;
	object-fit: cover;
	text-align: center;
	inline-size: 90%;
}
.item a {
	text-decoration: none;
	color: black;
	font-weight: 400;
}
.item a:focus {
	color: #d7a033;
}
.item a:hover {
	color: D7A033;
}
.footerlink {
	text-decoration: none;
	color: white;
	font-weight: 400;
}
.footerlink:focus {
	color: #d7a033;
}
.footerlink:hover {
	color: #d7a033;
}

#searchbox {
	background-position: 15px;
	background-repeat: no-repeat;
	padding-left: 50px;
	font-size: larger;
}

.menuimages {
	border-radius: 6px;
	margin-right: 20px;
	width: 30%;
	height: fit-content;
	object-fit: fill;
}
.imagetext {
	text-align: left;
	margin: 0;
	padding: 0;
	width: 100%;
	overflow-wrap: anywhere;
}
.foodcaption {
	position: relative;
	bottom: 20px;
}
.foodtitle {
	margin-bottom: 27px;
}
.orderbutton {
	display: inline;
}

.delete:hover {
	color: red;
	cursor: pointer;
}
.delete:focus {
	color: red;
}

.edit:hover {
	color: #d7a033;
	cursor: pointer;
}

.edit:focus {
	color: #d7a033;
}
.customlink:hover {
	cursor: pointer;
}
.Vieworder:hover {
	color: #484848;
	cursor: pointer;
}

.Vieworder:focus {
	color: #484848;
}

.available:hover {
	color: red;
	cursor: pointer;
}

.available:focus {
	color: red;
}
.unavailable {
	color: red;
	cursor: pointer;
}
.MenuImgContainer {
	width: 200px;
	height: auto;
	overflow: hidden;
}
.sidenavitems:hover {
	background-color: #d7a033;
}
.sidenavitems:focus {
	background-color: #d7a033;
}
.deactivated {
	cursor: pointer;
}
.activated {
	cursor: pointer;
}

.date {
	display: inline;
	margin-top: 3px;
}
.date:hover {
	cursor: pointer;
}
.addtocart:hover {
	color: #d7a033;
}
.addtocart:focus {
	color: #d7a033;
}
.navlinkitem {
	color: #eaeaea;
	font-size: larger;
}
.navlinkitem:hover {
	color: #d7a033;
}
.navlinkitem:focus {
	color: #d7a033;
}

.loadingOverlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9999;
}
.box {
	position: relative;
	margin: 10px;
}
.box::before {
	content: "";
	width: 0; /* Removed blue background */
	height: 0; /* Removed blue background */
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
}
.box-body {
	position: relative;
	height: 70px; /* Reduced size */
	width: 70px; /* Reduced size */
	background-color: #cc231e;
	border-bottom-left-radius: 5%;
	border-bottom-right-radius: 5%;
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.3);
	background: linear-gradient(#762c2c, #ff0303);
}
.box-body .img {
	opacity: 0;
	transform: translateY(0%);
	transition: all 0.5s;
	margin: 0 auto;
	display: block;
}
.box-body:hover {
	cursor: pointer;
}
.box-body:hover .img {
	opacity: 1;
	z-index: 0;
	transform: translateY(-100px); /* Adjusted for new size */
}

.box-body:hover .box-bowtie::before {
	animation: box-bowtie-left 1.1s forwards ease-in-out;
}
.box-body:hover .box-bowtie::after {
	animation: box-bowtie-right 1.1s forwards ease-in-out;
}
.box-body::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	background: linear-gradient(#ffffff, #ffefa0);
}
.box-lid {
	position: absolute;
	z-index: 1;
	left: 50%;
	transform: translateX(-50%);
	bottom: 90%;
	height: 13px; /* Adjusted for new size */
	background-color: #cc231e;
	width: 73px; /* Adjusted for new size */
	border-radius: 5%;
	box-shadow: 0 8px 4px -4px rgba(0, 0, 0, 0.3);
}
.box-lid::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 30px; /* Adjusted for new size */
	background: linear-gradient(#ffefa0, #fff);
}
.box-bowtie {
	z-index: 1;
	height: 100%;
}
.box-bowtie::before,
.box-bowtie::after {
	content: "";
	width: 27.333333px;
	height: 31.333333px;
	border: 16.6666666667px solid black; /* Change this from white to black */
	border-radius: 50% 50% 0 50%;
	position: absolute;
	bottom: 99%;
	z-index: -1;
}

.box-bowtie::before {
	left: 50%;
	transform: translateX(-100%) skew(10deg, 10deg);
}
.box-bowtie::after {
	left: 50%;
	transform: translateX(0%) rotate(90deg) skew(10deg, 10deg);
}

@keyframes box-lid {
	0%,
	42% {
		transform: translate3d(-50%, 0%, 0) rotate(0deg);
	}
	60% {
		transform: translate3d(-85%, -230%, 0) rotate(-25deg);
	}
	90%,
	100% {
		transform: translate3d(-119%, 225%, 0) rotate(-70deg);
	}
}

@keyframes box-body {
	0% {
		transform: translate3d(0%, 0%, 0) rotate(0deg);
	}
	25% {
		transform: translate3d(0%, 25%, 0) rotate(20deg);
	}
	50% {
		transform: translate3d(0%, -15%, 0) rotate(0deg);
	}
	70% {
		transform: translate3d(0%, 0%, 0) rotate(0deg);
	}
}

@keyframes box-bowtie-right {
	0%,
	50%,
	75% {
		transform: translateX(0%) rotate(90deg) skew(10deg, 10deg);
	}
	90%,
	100% {
		transform: translate(-50%, -15%) rotate(45deg) skew(10deg, 10deg);
		box-shadow: 0px 4px 8px -4px rgba(0, 0, 0, 0.3);
	}
}

@keyframes box-bowtie-left {
	0% {
		transform: translateX(-100%) rotate(0deg) skew(10deg, 10deg);
	}
	50%,
	75% {
		transform: translate(-50%, -15%) rotate(45deg) skew(10deg, 10deg);
	}
	90%,
	100% {
		transform: translateX(-100%) rotate(0deg) skew(10deg, 10deg);
	}
}
@media only screen and (min-width: 768px) {
	.MenuNav {
		display: list-item;
	}
	.item {
		text-align: left;
		background-color: white;
		border-radius: 20px;
		text-decoration: underline;
	}
}

@media only screen and (max-width: 366px) {
	.menuimages {
		object-fit: scale-down;
	}
}
@media only screen and (min-width: 500px) {
	.menuimages {
		border-radius: 6px;
		margin-right: 20px;
		width: 20%;
	}
}
@media only screen and (min-width: 650px) {
	.menuimages {
		border-radius: 6px;
		margin-right: 20px;
		width: 16%;
	}
}
@media only screen and (min-width: 750px) {
	.menuimages {
		border-radius: 6px;
		margin-right: 20px;
		width: 17%;
	}
}
@media only screen and (min-width: 768px) {
	.Menucontainer {
		width: 170%;
	}
}
@media only screen and (min-width: 800px) {
	.menuimages {
		border-radius: 6px;
		margin-right: 20px;
		width: 16%;
	}
}
@media only screen and (min-width: 992px) {
	.Menucontainer {
		width: 100%;
	}
}
@media only screen and (min-width: 1000px) {
	.menuimages {
		border-radius: 10px;
		margin-right: 20px;
		width: 20%;
	}
}
@media only screen and (min-width: 1080px) {
	.menuimages {
		width: 18%;
	}
}
@media only screen and (min-width: 1400px) {
	.menuimages {
		width: 16%;
	}
}

/* scratch game css //////////////////////////////////////////////////////////////////////////////////////////*/
.scratch-card {
	position: relative;
	border: 4px solid #c7c6cf;
	border-radius: 8px;
	padding: 12px;
	width: 320px;
	height: 320px;
	background-color: #fff;
}

.scratch-card-cover-container {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	border-radius: 4px;
	width: 100%;
	height: 100%;
	filter: url("#remove-black");
	transition: opacity 0.4s;

	&.clear {
		opacity: 0;
	}

	&.hidden {
		display: none;
	}
}

.scratch-card-canvas {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: grab;
	touch-action: none;

	&.hidden {
		opacity: 0;
	}

	&:active {
		cursor: grabbing;
	}
}

.scratch-card-canvas-render {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	transition: background-color 0.2s;

	&.hidden {
		display: none;
	}
}

.scratch-card-cover {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #cfced6;
	background-image: linear-gradient(to right, #cfced6, #e0dfe6, #efeef3, #e0dfe6, #cfced6);
	overflow: hidden;

	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: linear-gradient(135deg, transparent 40%, rgb(255 255 255 / 0.8) 50%, transparent 60%);
		background-position: bottom right;
		background-size: 300% 300%;
		background-repeat: no-repeat;

		@at-root .scratch-card-cover.shine::before {
			animation: shine 8s infinite;
		}
	}

	@keyframes shine {
		50% {
			background-position: 0% 0%;
		}
		100% {
			background-position: -50% -50%;
		}
	}

	&::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 0.1;
		filter: url("#noise");
	}
}

.scratch-card-cover-background {
	width: 100%;
	height: 100%;
	fill: #555;
	opacity: 0.1;
}

.scratch-card-image {
	border-radius: 4px;
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 4px 4px rgb(0 0 0 / 0.16));
	user-select: none;
	will-change: transform;

	&.animate {
		animation: pop-out-in cubic-bezier(0.65, 1.35, 0.5, 1) 1s;
	}
}

@keyframes pop-out-in {
	36% {
		transform: scale(1.125);
	}
	100% {
		transform: scale(1);
	}
}

/* puzzle game css code //////////////////////////////////////////////////////////////////////////// */

.original-image img {
	width: 300px; /* Fixed size */
	margin-bottom: 20px;
	border: 2px solid #ccc;
	border-radius: 10px;
}

.puzzle-container {
	display: inline-block;
	margin-bottom: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	overflow: hidden;
}

.puzzle-grid {
	display: grid;
	grid-template-columns: repeat(6, 50px); /* Fixed size tiles */
	grid-template-rows: repeat(3, 50px); /* Fixed size tiles */
	gap: 2px;
	justify-content: center;
	margin: 0 auto;
}

.puzzle-tile {
	width: 50px; /* Fixed size */
	height: 50px; /* Fixed size */
	background-size: 300px 150px; /* Fixed background size matching the original image size */
	border: 1px solid #000;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.puzzle-tile:hover {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	transform: scale(1.05);
}

.puzzle-tile.selected {
	transform: scale(1.1);
	border: 2px solid #ff9900;
}

button {
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
}

#success-message {
	display: none;
	font-size: 18px;
	color: #28a745;
	margin-top: 20px;
}
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 48px;
	font-weight: bold;
}

.countdown {
	font-size: 72px;
	color: white;
}

/* Media query for larger screens */
@media (min-width: 992px) {
	.original-image img {
		transform: scale(1.7); /* Scale the original image by 1.7 times */
		transition: transform 0.3s ease-in-out; /* Smooth transition */
	}

	.puzzle-container {
		transform: scale(1.5); /* Scale the puzzle container by 1.5 times */
		margin-top: 30px; /* Add margin to separate it from the original image */
		transition: transform 0.3s ease-in-out; /* Smooth transition */
	}
}

/* sudoku game css///////////////////////////////////////////////////////////////////////////////////////////// */

  .sudoku-container table {
	border-collapse: collapse;
	margin: 20px auto;
  }
  
  .sudoku-container td {
	border: 1px solid #888;
	width: 30px;
	height: 30px;
	padding: 0;
  }
  
  .sudoku-container input {
	width: 28px;
	height: 28px;
	border: none;
	text-align: center;
	font-size: 16px;
  }
  
 
  .sudoku-container td:nth-child(3n+1) {
	border-left: 2px solid black;
  }
  
  .sudoku-container td:nth-child(3n) {
	border-right: 2px solid black;
  }
  
  .sudoku-container tr:nth-child(3n+1) td {
	border-top: 2px solid black;
  }
  
  .sudoku-container tr:nth-child(3n) td {
	border-bottom: 2px solid black;
  }
  
  .sudoku-container button {
	margin: 10px;
	padding: 8px 16px;
	font-size: 14px;
  }
  
  .sudoku-container #timer {
	font-size: 18px;
	font-weight: bold;
	margin: 10px;
  }
  

/* spin game css /////////////////////////////////////////////////////////////////// */
.spin-wheel * {
    margin: 0;
    padding: 0;
    font-family: 'Lucida Grande', sans-serif;
    font-size: 15px;
    -webkit-tap-highlight-color: transparent;
    user-select: none; /* Prevent selecting UI text when dragging */
}

.spin-wheel html, .spin-wheel body {
    height: 100%;
}

.spin-wheel body {
    /* Prevent pull-down-to-refresh gesture */
    overscroll-behavior-y: contain;

    /* Prevent iOS rubber-band effect */
    position: fixed;
    width: 100%;

    /* Prevent browser from handling touch events */
    touch-action: none;

    display: flex;
    flex-direction: column;
    justify-items: stretch;
    align-items: stretch;
}
/* Ensure the main container takes full viewport height */
.spin-wheel {
	height: 100vh;
  }
  
/* For smaller screens */
.spin-wheel .wheel-wrapper {
	width: 90vw;
	height: 90vw;
	margin: 0 auto;
  }
  
  /* For larger screens */
  @media (min-width: 1024px) {
	.spin-wheel .wheel-wrapper {
	  width: 600px;
	  height: 600px;
	}
  }
  
  /* Adjust wheel size for smaller screens */
  @media (max-width: 768px) {
	.spin-wheel .wheel-wrapper {
	  width: 90vw;   /* Use 90% of the viewport width */
	  height: 90vw;  /* Make it square */
	  margin: 0 auto;
	}
  }
  
.spin-wheel .gui-wrapper {
    padding: 10px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spin-wheel select {
    padding: 2px;
    cursor: pointer;
}

.spin-wheel label {
    margin-right: 5px;
}

.spin-wheel button {
    padding: 10px 20px;
    cursor: pointer;
    margin-right: 10px;
}

.spin-wheel input[type="radio"],
.spin-wheel label[for] {
    cursor: pointer;
    padding-left: 5px;
}

.spin-wheel input[type="radio"] {
    margin-left: 5px;
}

.spin-wheel input[type="text"] {
    padding: 2px 5px;
    width: 50px;
}

/* default (large screens) */
.logo-img {
	width: 180px;
	height: auto;
  }
  
  /* small screens: bootstrap’s sm breakpoint is 576px */
  @media (max-width: 576px) {
	.logo-img {
	  width: 130px;
	}
  }
  