*{
	margin: 0;
	padding: 0;
}
body{
	font-family: 'Montserrat', sans-serif;
	color: #000;
}
.demo_page {
	height: 100vh;
	display: grid;
	align-content: center;
	text-align: center;
	position: relative;
}
.spoon_img {
	max-width: 360px;
	max-height: 50vh;
	position: absolute;
	bottom: 30%;
	left: 0;
	transform: translateY(50%);
}
.main_heading_page {
	font-size: calc(100px + (50 - 16) * ((100vw - 768px) / (1600 - 768)));
	text-shadow: 55px 55px 0 #f7f5ef;
	font-family: 'Roboto Condensed', sans-serif;
	line-height: 1;
}
.sub_heading {
	font-size: calc(16px + (20 - 16) * ((100vw - 768px) / (1600 - 768)));
}
.click_anywhere_link {
	display: block;
	margin-top: 40px;
	color: #000;
	letter-spacing: 2px;
}
a:hover {
	text-decoration: none;
}

/*dinnerware css*/
.container_custom {
	height: 100vh;
}
.demo_back {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 20px;
}
.dinnerware_title h3 {
	font-size: 24px;
}
.dinnerware_list_wrap h3 {
	font-size: 16px;
}
.dinnerware_list_wrap ul {
	list-style: none;
	display: flex;
}

.checkbox_items-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}
.checkbox-item .form-check {
	display: flex;
	align-items: end;
	flex-direction: row-reverse;
	padding: 0;
}
.checkbox-item input:checked {
	border-color: red;
	background-color:red;
}
.checkbox_items-wrap img {
	height: 150px;
	object-fit: contain;
	width: 150px;
	object-position: top;
}
.demo_back_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	width: 100%;
	top: 0;
	background: #fff;
	z-index: 999;
	padding: 10px 0;
}
.demo_back_wrap img {
	max-width: 40px;
}
.demo_back a {
	color: #000;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 25px;
	font-weight: 600;
}
.dinnerware_page {
	padding: 20px 30px 30px;
	height: 100%;
}
.product_items_form {
	width: 100%;
	margin: 30px auto;
	max-width: 750px;
}
.dinnerware_title {
	margin-bottom: 40px;
}
.product_list_wrap {
	margin-bottom: 20px;
}
.product_list_wrap h3 {
	font-size: 18px;
	margin-bottom: 15px;
}
.right_light_wrap {
	background: #eeeadf;
}

.sb-checkbox__label:after {
	content: "done";
	font-family: "Material Icons";
	font-size: 14px;
	line-height: 19px;
	text-align: center;
	width: 20px;
	height: 20px;
	border-radius: 7px;
	opacity: 0;
	transition: 0.2s opacity;
	position: absolute;
	right: 0;
	bottom: 0;
}
.sb-checkbox__input:checked + .sb-checkbox__label:after {
	opacity: 1;
}
.sb-checkbox__label:before {
	content: "";
	width: 20px;
	height: 20px;
	border: 2px solid;
	box-sizing: border-box;
	display: inline-block;
	position: absolute;
	bottom: 0;
	right: 0;
	border-radius: 7px;
}
.sb-checkbox__label--green:after {
	background-color: #836d6d;
	color: #fff;
}
.sb-checkbox {
	display: inline-block;
	font-size: 0;
}
.sb-checkbox__input {
	display: none;
}
.sb-checkbox__label--green:before {
	border-color: #836d6d;
}
.product_list {
	font-weight: 500;
	margin-bottom: 10px;
}

.product_select_items {
	margin-top: 12px;
}
.right_side_bar {
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	max-height: 100vh;
	gap: 30px;
}
.btn_btn-wrap {
	text-align: right;
}
.image_wrapper_product_flex {
	display: flex;
	align-items: center;
	gap: 30px;
	justify-content: space-between;
	flex-wrap: wrap;
}

.image_wrapper_product_flex img {
	height: 250px;
	max-width: 300px;
	object-fit: contain;
}
.btn-dark {
	color: #fff;
	background-color: #545454;
	border-color: #545454;
}
.btn_btn-wrap .btn {
	padding: 10px 30px;
}