@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/css/bootstrap-datepicker.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css');

:root{
	--dp_clr: #36023c;
	--lb_clr: #b9a56e;
	--g_clr: #59bb63;
	--lg_clr: #f8f8f8;
	
	--g_t_clr : rgb(0 128 0 / 13%);
	--dp_t_clr : rgb(54 2 60 / 8%);
	
	--w_ff: 'Open Sans', sans-serif;
	
	--bg_h :81vmin;
	--bg_h_d:70vmin;
}

a{
	color:var(--g_clr);
}

img{
	max-width: 100%;
}
.container{
	max-width:100%;
	padding: 0;
}

.home_page .container {
    padding: 0 20px;
}

html, body {
    overflow-x: hidden!important;
    width: 100%;
    font-family: var(--w_ff);
	min-height: 99vh;
}

.dual_btns{
	display:flex;
	flex-direction: column;
	row-gap:15px;
}

.web_btn{
	padding:15px 25px;
	border-radius:80px;
	color:#fff;
	transition: all 0.5s;
	font-weight:900;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	width: 100%;
	max-width: 270px;
	letter-spacing: 2px;
	border:none;
}

.web_btn:hover{
	opacity:0.85;
	color:#fff;
}

.web_btn.web_btn_green{
	background:var(--g_clr);
}

.web_btn.web_btn_d_purple{
	background:var(--dp_clr);
}

body{
	background-color:var(--lg_clr);
}

.bot_graphic
 {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -3px;
    z-index: 1;
}

.bot_graphic img {
    width: 130%;
    max-width: 130%;
    transform: translateX(-10%);
}

.back_btn,
body:not(.home_page) .desk_title,
body.home_page .background_bg > img:nth-child(1),
body.home_page .background_bg > img:nth-child(2),
body:not(.home_page) .background_bg,
body:not(.home_page) .web_header,
body.home_page .mob_title {
	display:none;
}

.background_bg {
    background-color:var(--dp_clr);
    position:fixed;
    width:100%;
    left: 0;
    top: 0;
    min-height:var(--bg_h);
	display: flex;
	align-items: flex-end;
	justify-content: space-between;

}

.web_logo
{
    position: relative;
    z-index:3;
    max-width: 200px;
    margin:30px 0;
    display: inline-block;
}

.white_block{
	padding:35px 25px;
	background: #fff;
	position: relative;
}

.home_page .white_block{
	border-radius:20px;
	box-shadow: 0px 7px 75.05px 3.95px rgba(0, 0, 0, 0.13);
}

.main_content {
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
    padding-top: 90px;
}

.white_block_inner{
	text-align: center;
}

body.home_page .white_block_inner .desk_title {
    font-size: 35px;
    margin: 20px 0 30px;
	display: flex!important;
	flex-direction: column;
	align-items: center;
}
.white_block_inner .desk_title:after{
	content: '';
	display: inline-block;
	width: 120px;
	height: 4px;
	margin-top:30px;
	background: var(--lb_clr);
}
.mob_title
{
    background: var(--dp_clr);
    color: #fff;
    padding: 30px;
    text-align: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
	width: 100%;
}

.mob_title h1, .mob_title h2 {
    font-size: 22px;
    width: calc(100% - 60px);
    padding-left: 60px;
}

.white_block_inner p {
    font-size: 16px;
    line-height: 1.6;
}

.dual_btns{
	list-style:none;
	padding: 0 20px;
	margin: 0;
	margin-top: 50px;
}

.footer_text {
    text-align: center;
    margin-bottom: 40px;
}

.footer_text a{
	display:block;
}
.form_wrap
{
    max-width: 350px;
    margin: 40px auto 0;
}

.f_row{
	margin-bottom:50px;
}

.f_fld_wrap > h4{
	font-weight:600;
	font-size: 18px;
	text-transform: uppercase;
	text-align: left;
	color:var(--dp_clr);
	margin-bottom: 8px;
}

.f_fld_grid
{
    display: flex;
	column-gap:15px;
	
}

.f_fld_grid_stacked{
	flex-direction: column;
	row-gap:10px;
}


.submit_btn input[type="submit"],
.submit_btn button{
	max-width:140px;
}

.f_fld{
	text-align: left;
	position: relative;
}

.f_fld h5 {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--g_clr);
    margin-top: 5px;
    margin-left: 10px;
    margin-bottom: 3px;
}

.radio_btn_style label {
  display: flex;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-bottom:0;
}
.radio_btn_style label input {
    position: absolute;
    left: -9999px;
    display: none;
}
.radio_btn_style label input:checked + span {
  /* border:2px solid var(--g_clr);*/
}
.radio_btn_style label input:checked + span:before {
  box-shadow: inset 0 0 0 7px var(--dp_clr);
}
.radio_btn_style label span {
    display: flex;
    align-items: center;
    border-radius: 5px;
    transition: 0.25s ease;
    padding: 0;
    padding-right: 10px;
    font-size: 15px;
    margin-top: 10px;	
}
.radio_btn_style label span:hover {
  /*background-color: var(--g_t_clr);*/
}
.radio_btn_style label span:before {
  display: flex;
  flex-shrink: 0;
  content: "";
  background-color: #fff;
  width: 22px;
  height: 22px;
  margin-right: 7px;
  border-radius: 50%;
  transition: 0.25s ease;
  box-shadow: inset 0 0 0 3px var(--g_clr);
}

.select_style select {
    background:none;
	border: none;
    border-bottom:1px solid var(--g_clr);
    padding: 5px 35px 5px 10px;
    border-radius: 0px;
    outline: none!important;
    font-size: 15px;
    appearance: none;
	position: relative;
}

.select_style .select_fx {
	pointer-events: none;
}
.select_style .select_fx:before {
    content: '';
    display: inline-block;
    width: 100%;
    bottom: 0;
    height: 2px;
    background: var(--dp_clr);
    position: absolute;
    transition: all 0.5s;
    z-index: 1;
    transform: scaleX(0);
	left: 0;
}

.select_style select:focus + .select_fx:before{
	transform: scaleX(1);
}

.select_style .select_fx:after {
    content: "\f0d7";
    font-family: "Fontawesome";
    position: absolute;
    color: var(--dp_clr);
    right: 11px;
    bottom: 5px;
    font-size: 14px;
}

.result_div{
	text-align: center;
}
.result_div_inner{
	display:inline-flex;
	align-items: center;
	justify-content: center;
	column-gap: 15px;
	padding:10px 30px;
	border:3px dashed var(--g_clr);
	border-radius: 10px;
}
.result_div_inner > i{
	font-size:40px;
	color:var(--g_clr);
}

.result_div_inner .rd_content h3{
	font-size:21px;
	color:var(--dp_clr);
}

.result_div_inner .rd_content p{
	font-size:18px;
	color:var(--g_clr);
	margin-bottom: 0;
	font-weight: bold;
}

.single_mp{
	overflow: hidden;
	border-radius: 10px;
	margin-bottom: 35px;
	box-shadow: rgba(0,0,0,0.15) 0 10px 25px 0;
}

.smp_img{
	position: relative;
	min-height: 250px;
	display: flex;
	background: #000;
	cursor: pointer;
	flex-direction: column;
}

.smp_img img{
	object-fit: cover;
	object-position: center top;
	transition: all 0.5s;
	opacity:0.8;
}
.smp_img h3 {
    position: absolute;
    z-index: 1;
    padding: 40px 20px 20px;
    text-align: center;
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,0.61) 23%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(0,0,0,0.61) 23%,rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(0,0,0,0.61) 23%,rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#000000',GradientType=0 );
    width: 100%;
    color: #fff;
    bottom: 0px;
    margin: 0;
    font-size: 20px;
}

.smp_img:hover img{
	transform: scale(1.2);
	opacity:1;
}



.mel_des .mel_des_inner{
	padding:40px 20px;
}

.mel_des .mel_des_inner .web_btn {
	margin-top:20px;
}

.mel_des .mel_des_inner{
	
}

.recommended_diet {
    position: absolute;
    background: var(--g_clr);
    color: #fff;
    top: 24px;
    right: 24px;
    padding: 5px 20px;
    font-weight: bold;
    border-radius: 80px;
    text-transform: uppercase;
    font-size: 13px;
    box-shadow: rgb(0 0 0 / 50%) 0 0 20px 0;
	z-index: 1;
}

.all_meal_plans_inner
{
    max-width: 450px;
    margin: 0 auto;
}
.mel_des{display:none;}

.dp_date_wrap{
	display:flex;
	align-items: flex-start;
	justify-content: space-between;
}
.t_date{
	text-align: left;
}
.t_date h5{
	font-weight:900;
	text-transform: uppercase;
	color:var(--dp_clr);
	margin-bottom: 0;
}

.t_date h2{
	font-weight:700;
	text-transform: uppercase;
	color:var(--g_clr);
	font-size:70px;
	line-height: 70px;
}

.date_actions ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    max-width: 140px;
}
.date_actions ul li{
	padding: 3px;
}

.date_actions ul li button {
	width:100%;
	text-transform: uppercase;
	border:none;
	font-weight: bold;
	background: var(--dp_t_clr);
	color:var(--dp_clr);
	font-size: 15px;
	padding: 6px;
	border-radius: 4px;
	transition: all 0.5s;
}

.date_actions ul li button:hover{
	background:var(--dp_clr);
	color:#fff;
}

.date_actions ul li:not(:nth-child(2)){
	width:33.33%;
	order: 2;
}	
.date_actions ul li:nth-child(2){
	width:100%;
	order: 1;	
}

.date_actions ul li:nth-child(2) button{
	font-size: 13px;
}

.datepicker-dropdown td,
.datepicker-dropdown th{
	padding:3px;
	font-size:13px;
}

.datepicker-dropdown thead th{	
	color:var(--dp_clr);	
}
.datepicker-dropdown td .focused,
.datepicker-dropdown td .focused.active,
.datepicker-dropdown td .focused.active:hover,
.datepicker-dropdown td .focused:hover,
.datepicker-dropdown .datepicker-days td.today:hover,
.datepicker-dropdown .datepicker-days td.today {
	background:var(--dp_clr)!important;
	color:#fff!important;
}

.datepicker-dropdown td span.active,
.datepicker-dropdown td span.active:hover,
.datepicker-dropdown .datepicker-days td.active:hover,
.datepicker-dropdown .datepicker-days td.active {
	background:var(--g_clr)!important;
	color:#fff!important;
}

.datepicker-dropdown td span:hover,
.datepicker-dropdown .datepicker-days td:hover {
	background:var(--g_t_clr)!important;
	color:var(--dp_clr)!important;
}

.daily_plans_inner
{
    margin-top: 40px;
}

.single_dp_blk {
    padding: 15px;
    border-radius: 8px;
    box-shadow: rgb(0 0 0 / 10%) 0 2px 10px 0;
    margin-bottom: 25px;
}

.single_dp_blk_top{
	display:flex;
	align-items: flex-start;
	justify-content: space-between;
	column-gap:15px;
}

.single_dp_blk_top_r{
	text-align:left;
	
}
.single_dp_blk_top_r h3{
	font-size:18px;
	font-weight: 700;
	color:var(--dp_clr);
	margin-bottom: 2px;
}

.single_dp_blk_top_r p{
	color:var(--g_clr);
	font-weight: 600;
	font-size: 14px;
}

.single_dp_blk_top_l button {
    background: var(--dp_clr);    
    border: none;
    font-size: 13px;
    border-radius: 100%;
    width: 25px;
    height: 25px;
    line-height: 20px;
    margin-left: 5px;
	color: #fff;
	transition: all 0.5s;
}

.single_dp_blk_top_l button:hover{
	opacity:0.9;
}
.single_dp_blk_top_l label input{
	display:none;
}
.single_dp_blk_top_l label input + span{
	
}
.single_dp_blk_top_l label input + span:before{
	content: "\f0c8";
	font-family: "Font Awesome 6 Free";
	margin-right: 7px;
	color:var(--g_clr);
}

.single_dp_blk_top_l label input:checked + span:before{
	content: "\f14a";
}

.dishes_list{
	display:flex;
	flex-direction: column;
	row-gap:15px;
	margin-top: 15px;
}

	.single_dish a{
		display:flex;
		width: 100%;
		column-gap: 15px;
		text-decoration: none!important;
	}

.single_dish a > img{
	width:70px;
	height:70px;
	border-radius:10px;
	object-fit: cover;
	object-position: center top;
	
}

.s_dish_content{
	text-align:left;
}
.s_dish_content h4{
	font-size:16px;
	color:var(--dp_clr);
	font-weight:bold;
	opacity: 0.7;
	margin-bottom: 5px;
}

.s_dish_content p{
	color:#999;
	font-size: 14px;
	font-weight: 600;
}

.dish_popup .modal-header .modal-title{
	display:flex;
	flex-direction: column;
}

.dish_popup .modal-header {
	align-items: flex-start;	
}
.dish_popup .modal-header button
{
    transform: translateY(6px);
}

.dish_popup .modal-header .modal-title span:first-child{
	font-size:18px;
	font-weight:bold;
	color:var(--dp_clr);
	margin-bottom: 3px;
}

.dish_popup .modal-header .modal-title span:last-child{
	font-size:14px;
	font-weight:bold;
	color:var(--dp_clr);
	opacity: 0.8;
}

.dc_img img{
	height:200px;
    object-fit: cover;
    object-position: center top;
    width: 100%;
    border-radius: 10px;
}

.dc_img {
	margin-bottom:25px;
}

.dc_inner h3{
	font-size:18px;
	font-weight: bold;
	color:var(--dp_clr);
}

.dc_inner p{
	font-size:15px;
}

.web_navbar > .container-fluid{
	justify-content: flex-end;
}

.web_navbar {
    max-width: 77px;
    left: auto;
    top: 18px;
    right: 6px;
}
.web_navbar .navbar-toggler{
	outline: none!important;
	box-shadow: none!important;
}

.web_navbar .navbar-toggler svg path {
    fill: #ebd496!important;
}

.navbar_slide .offcanvas-header,
.navbar_slide .offcanvas-body{
	background:var(--dp_clr)!important;
}

.navbar_slide .offcanvas-header{
    padding: 50px 30px 30px!important;
}

.navbar_slide .offcanvas-body
{
    padding: 50px;
}


.navbar_slide .offcanvas-body ul li a{
	color:#fff;
	padding: 15px;
	text-transform: uppercase;
	font-size: 18px;
	font-weight:bold;
}

.navbar_slide .offcanvas-body ul li a:hover,
.navbar_slide .offcanvas-body ul li a.active{
	color:var(--g_clr);
}
.s_list_drop_down{
	margin-bottom:20px;
	text-align: left;
}
.s_list_drop_down h4
{
    font-weight: 900;
    text-transform: uppercase;
    color: var(--dp_clr);
    margin-bottom: 15px;
	
}

.s_list_drop_down select {
    border:2px solid var(--lb_clr);
	background: none;
    color: var(--dp_clr);
    padding: 8px 15px!important;
    padding-right: 46px!important;
    font-size: 15px!important;
    border-radius: 4px;
    font-weight: 600;
    appearance: none!important;
    outline: none!important;
    background-image: url(../images/drop_down_icon.png);
    background-size: 12px auto;
    background-repeat: no-repeat;
    background-position: center right 14px;
}
.s_list_header > button{
	margin-botto:15px;
}

.s_dates_li{
	margin:20px 0; 
}
.start_date_wrap,
.s_buttons_li > button{
	margin-bottom:5px;
}
.s_list_li_wrap table tr>td:last-child button,	
.s_list_header > button,
.s_buttons_li > button{
    width: 100%;
    text-transform: uppercase;
    border: none;
    font-weight: bold;
    background: var(--dp_t_clr);
    color: var(--dp_clr);
    font-size: 15px;
    padding: 6px;
    border-radius: 4px;
    transition: all 0.5s;
	
}

.s_list_li_wrap table tr>td:last-child button:hover,	
.s_list_header > button:hover,
.s_buttons_li > button:hover{
    background: var(--dp_clr);
    color: #fff;
}

.s_list_header ul{
	list-style:none;
	padding: 0;
	margin: 0;
}

	.s_date_s p{
		font-weight:700;
		text-transform: uppercase;
		color: var(--dp_clr);
		font-size: 14px;
		margin-bottom:3px;
		text-align: left;
	}

.s_list_li_wrap table tr>th{
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dp_clr);
    font-size: 14px;
    margin-bottom: 3px;
    text-align: left;
}
.s_list_li_wrap table tr>td >input[disabled]
 {
    opacity: 0.5;
    background: #b9a56e38;
}

.s_list_li_wrap table tr>td >input,
.s_date_s input {
    border: 2px solid var(--lb_clr);
    background: none;
    color: var(--dp_clr);
    padding: 5px 15px!important;
    font-size: 15px!important;
    border-radius: 4px;
    font-weight: 600;
    width: 100%;
}
.s_list_li_wrap table tr>td:last-child{
	padding-right:0px!important;
}

.s_buttons_li > button {
    white-space: nowrap;
}

.s_list_li_wrap{
	margin-top:40px;
}

.s_list_li_wrap table{
		width:100%;
	}

.s_list_li_wrap table tr>td >input{
	width:100%;
}
.s_list_li_wrap table tr:not(:first-child) {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 16px;
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    border: 4px solid #efebf0;
}	

.s_list_li_wrap table tr th{
	display:none;
}

.s_list_li_wrap table tr td .mob_only {
    text-transform: uppercase;
    text-align: left;
    display: block;
    font-size: 12px;
    font-weight: bold;
    color: var(--dp_clr);
    margin-bottom: 5px;
}

.s_list_li_wrap table tr td:nth-child(1),
.s_list_li_wrap table tr td:nth-child(2){
	width:48%!important;
	padding: 0px!important;
}

.s_list_li_wrap table tr td:nth-child(3){
	width:calc(100% - 70px)!important;
	padding: 0px!important;
	margin-top: 15px;
}

.s_list_li_wrap table tr td:nth-child(4){
	width:50px;
	padding-top: 20px;
	margin-top: 15px;
}

.s_list_li_wrap {
    max-height: 493px;
    overflow: auto;
	padding-right: 10px;
}

@media(min-width:438px){
	.footer_text a{
		display:inline-block;
	}
}



@media(min-width:768px) {
	

	.s_list_li_wrap table tr:not(:first-child) {
		display:table-row!important;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-bottom: 16px;
		background: #fff;
		padding: 0;
		border-radius:0px;
		border: none;
	}	

	.s_list_li_wrap table tr th{
		display:table-cell!important;
	}
	
	.mob_only{
		display:none!important;
	}
	.s_buttons_li > button {
		margin: 3px;
	}
	
	.s_date_s {
    margin-right: 10px;
}
	
	.s_list_header > button {
		width: auto!important;
	}
	
	.s_list_header ul{
		display:flex;
		justify-content: space-between;
		align-items: flex-end;
	}
	html .s_list_li_wrap table tr > td:nth-child(1),
	html .s_list_li_wrap table tr > td:nth-child(2),
	html .s_list_li_wrap table tr > td:nth-child(3)
	{
		padding-right:15px!important;
		padding-top: 7.5px!important;
		padding-bottom: 7.5px!important;
		padding-left: 0px!important;
	}
	.s_list_li_wrap table tr>th:nth-child(1),
	.s_list_li_wrap table tr>td:nth-child(1){
		width:15%!important;
	}
	.s_list_li_wrap table tr>th:nth-child(2),
	.s_list_li_wrap table tr>td:nth-child(2){
		width:20%!important;
	}
	.s_list_li_wrap table tr>th:nth-child(3),
	.s_list_li_wrap table tr>td:nth-child(3){
		width:60%!important;
	}
	.s_list_li_wrap table tr>th:nth-child(4),
	.s_list_li_wrap table tr>td:nth-child(4){
		width:5%!important;
		padding: 0!important;
		margin-top:0px!important;
	}

	.s_list_header{
		text-align: left;
		
	}
	.s_list_header > button {
		width: auto!important;
		margin-bottom: 30px;
	}
	.s_list_header > ul .s_dates_li {
		max-width: 340px;
		margin: 0!important;
	} 
	
	.container {
		max-width: min(95%, 900px);
		padding: 0 20px;
	}
	.main_content {
		padding-top:0px;
	}
	
	.mob_title{
		display:none!important;
	}
	
	.background_bg img{
		position: relative;
		z-index: 2;
	}
	
	.background_bg > img:nth-child(1) {
		transform: translate(-10vw, 17vh);
		max-width:	 max(45vmin, 500px);
	}
	

	.background_bg > img:nth-child(2) {
		transform: translate(5vw, -4vmin);
		max-width: max(45vmin, 400px);
	}
	
	body:not(.home_page) .desk_title,
	.background_bg img,
	.web_header{
		display:block!important;
	}
	
	.background_bg{
		display:flex!important;
		min-height:var(--bg_h_d);
	}
	
	.web_navbar {
		top: 45px;
		right: 25px;
	}
	
	
	.web_logo
	{
		position: relative;
		z-index:2;
		max-width: 200px;
		margin:20px 0;
		display: inline-block;
	}
	
	.white_block {
	  border-radius: 50px!important;	  
		padding: 50px;
		box-shadow: 0px 7px 75.05px 3.95px rgba(0, 0, 0, 0.13);
	}
	
	.home_page .white_block {
		padding-bottom: 100px;
	}

	body .white_block_inner .desk_title {
		display: flex!important;
		flex-direction: column;
		align-items: center;
		font-size: 38px;
		margin-bottom: 30px;
	}
	
	.home_page .white_block_inner p {
		font-size: 24px;
	}
	
	.dual_btns {
		flex-direction:row;
		column-gap: 30px;
		align-items: center;
		justify-content: center;
		margin-top: 100px;
	}
	
	.dual_btns .web_btn{
		min-width:200px;
	}
	
	.web_btn{
		max-width:200px;
	}
	
	.born_date_fld  {
		column-gap: 30px;
		justify-content: space-between;
	}
	
	.back_btn {
		background: var(--dp_t_clr);
		color: var(--dp_clr)!important;
		text-decoration: none;
		padding: 5px 15px;
		min-width: 90px;
		display: inline-flex;
		align-items: center;
		justify-content: space-between;
		text-transform: uppercase;
		font-size: 14px;
		font-weight: 600;
		border-radius: 5px;
		letter-spacing: 0.5px;
		column-gap: 5px;
		transition: all 0.5s;
		margin-top: 25px;
	}
	
	.back_btn i{
		transition: all 0.5s;
	}
	
	.back_btn:hover i{
		transform: translateX(-5px);
	}
	.result_div_inner{
		column-gap: 25px;
	}
	.result_div_inner > i{
		font-size:50px;
	}

	.result_div_inner .rd_content h3{
		font-size:24px;
		white-space: nowrap;
	}

	.result_div_inner .rd_content p{
		font-size:20px;
	}
	
	
	.date_actions ul {
		flex-wrap: nowrap;
		max-width: inherit;
	}
	
	.date_actions ul li{
		width:auto!important;
		order: 1!important;
	}
	
	.date_actions ul li button{
		padding: 8px 15px!important;
		font-size: 15px!important;
	}
	
	.single_dp_blk {
		padding: 30px;
		border-radius: 10px;
		box-shadow: rgb(0 0 0 / 10%) 0 10px 30px 0;
		margin-bottom: 40px;
	}
	
	.single_dp_blk_top_r h3 {
		font-size: 28px;
		margin-bottom: 5px;
	}
	.single_dp_blk_top_r p {
		font-weight: 700;
		font-size: 16px;
	}
	

	.s_dish_content h4 {
		font-size: 18px;
	}
	
	.dc_img img {
		height: 250px;
	}
	
	.dish_popup .modal-header .modal-title span:first-child {
		font-size: 22px;
	}
	
	.dish_popup .modal-header .modal-title span:last-child {
		font-size: 16px;
	}
	.s_list_header > button,
	.s_buttons_li > button
	
	{
		padding: 8px 15px!important;
		font-size: 15px!important;
	}
	
	.s_list_header > ul,
	.s_dates,
	.s_buttons_li{
		display:flex;
	}
	
	
}

@media(min-width:576px) and (max-height:479px){
	
	.web_logo {
		max-width: 200px;
		margin: 20px 0;
	}

	.background_bg{
		min-height: var(--bg_h);
	}
	.mob_title,
	.background_bg > img:nth-child(1),
	.background_bg > img:nth-child(2){
		display:none!important;
	}
	
	.main_content > .container {
		max-width: 90%;
	}
	
	.white_block {
		border-radius: 20px!important;
	}
	
	
}
.single_dp_blk_top_l a {
    background: var(--dp_clr);
    border: none;
    font-size: 13px;
    border-radius: 100%;
    width: 25px;
    height: 25px;
    line-height: 20px;
    margin-left: 5px;
    color: #fff;
    transition: all 0.5s;
}

.single_dp_blk_top_l a:hover{
	opacity:0.9;
}