/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/
:root {
	--primary: #4D2DB7;
	--secondary: #C2DEDC;
	--tertiary: #999999;
	--quarter: #EDDBC0;
}

.preloader {
	align-items: center;
	/* background: var(--primary, #282828); */
	/* background-size: 400% 400%; */
	animation: gradient 5s ease infinite;
	display: flex;
	height: 100vh;
	justify-content: center;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9999;
	opacity: 1;
}

.header-buttons {
	background-color: white !important;
	color: #3d3b3e;
}

.header-buttons:hover {
	transform: translateY(-4px);
	background-color: #0367a8 !important;
}

.primary-bg-color {
	background-color: var(--primary) !important;
}

.primary-color {
	color: var(--primary) !important;
}

.secondary-bg-color {
	background-color: var(--secondary) !important;
}

.secondary-color {
	color: var(--secondary) !important;
}

.tertiary-bg-color {
	background-color: var(--tertiary) !important;
}

.tertiary-color {
	color: var(--tertiary) !important;
}

.main-button {
	background-color: #0367a8 !important;
}

.main-button:hover {
	transform: translateY(-4px);
	background-color: #457ab2 !important;
}

.vertical-bottom {
	z-index: 3;
	position: relative;
	display: flex;
	width: 100%;
	min-height: 100%;
	justify-content: end;
	flex-flow: column;
  }

.menu-carousel .heading-block h3 { font-size: 34px; }

.menu-carousel .food-content {
	position: relative;
	padding: 30px 60px;
}

.menu-carousel .heading-block p {
	margin-top: 15px;
	color: #888;
}

.menu-carousel .heading-block .food-info {
	font-family: 'Poppins';
	color: #BBB;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
	letter-spacing: 2px;
}

.food-price {
	font-size: 24px;
	letter-spacing: -1px;
	font-weight: 500;
	color: #444 !important;
}

.menu-carousel .more-link { margin-top: 35px; border-bottom: 1px solid #333 !important; }
.item-thumb {
	width: 100%;
	margin: 0 auto;
}

.item-thumb .owl-dot {
	width: 33.33333%;
	display: inline-block;
	justify-content: center;
	height: 220px;
	cursor: pointer;
	padding: 15px;
	background-color: transparent;
}

.item-thumb .owl-dot span {
	position: relative;
	display: block;
	background-size: cover;
	background-position: center center;
	width: auto;
	height: 100%;
	-webkit-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.05);
	-moz-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.05);
	box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.05);
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.item-thumb .owl-dot:hover span,
.item-thumb .owl-dot.active span { opacity: .7; }
