/* Custom CSS */
body {
	color: #797979;
	font-family: 'Poppins', sans-serif;
}
p {font-size: 16px;}

.container {max-width: 1200px; width: 100%;}
.container-fluid {max-width: 1330px; width: 100%;}

.error-message-area,
.alert-message-area {
    top: 4%;
    right: 3%;
    bottom: inherit !important;
    left: inherit !important;
}

.error {font-weight: normal !important;}
.a_link {color: #F5783E !important;}

.fs-12 {font-size: 12px !important;}
.fs-14 {font-size: 14px !important;}
.fs-16 {font-size: 16px !important;}
.fs-18 {font-size: 18px !important;}
.fs-20 {font-size: 20px !important;}
.fs-22 {font-size: 22px !important;}
.fs-24 {font-size: 24px !important; line-height: 30px !important;}
.fs-26 {font-size: 26px !important; line-height: 34px !important;}
.fs-28 {font-size: 28px !important; line-height: 36px !important;}
.fs-30 {font-size: 30px !important; line-height: 40px !important;}

.fw-500 {font-weight: 500;}
.fw-600 {font-weight: 600;}
.fw-700 {font-weight: 700;}
.fw-900 {font-weight: 900;}

::placeholder {color: #797979 !important;}

.border-radius-6 {border-radius: 6px;}
.border-radius-8 {border-radius: 8px;}
.border-radius-10 {border-radius: 10px;}
.border-radius-15 {border-radius: 15px;}
.border-radius-20 {border-radius: 20px;}
.border-radius-25 {border-radius: 25px;}

hr.h-line {
	margin: 20px 0;
}

.no_data_found {
	display: block;
	width: 100%;
	font-weight: 600;
	font-size: 24px;
	color: #202020;
	padding: 20px;
	border: 2px dashed #d4d4d4;
	text-align: center;
}


/******************
	loader
******************/

@keyframes loader {
    0% {width: 10%; transform: rotate(0deg);}
   10% {left: 0%; transform: rotate(0deg);}
   20% {width: 0%; left: 20%;}
   30% {width: 25%;}
   50% {left: 15%; width: 35%;}
   70% {width: 30%; left: 18%; transform: rotate(240deg);}
   90% {width: 30%; left: 10%;}
  100% {width: 2%; left: 25%; transform: rotate(360deg);}
}
@-webkit-keyframes loader {
    0% {width: 10%; transform: rotate(0deg);}
   10% {left: 0%; transform: rotate(0deg);}
   20% {width: 0%; left: 20%;}
   30% {width: 25%;}
   50% {left: 15%; width: 35%;}
   70% {width: 30%; left: 18%; transform: rotate(240deg);}
   90% {width: 30%; left: 10%;}
  100% {width: 2%; left: 25%; transform: rotate(360deg);}
}

@keyframes kitchen {
    0% {transform: rotate(0deg); transform-origin: top right;}
   10% {transform: rotate(-2deg); transform-origin: top right;}
   50% {transform: rotate(15deg);}
  100% {transform: rotate(0deg);}
}
@-webkit-keyframes kitchen {
    0% {transform: rotate(0deg); transform-origin: top right;}
   10% {transform: rotate(-2deg); transform-origin: top right;}
   50% {transform: rotate(15deg);}
  100% {transform: rotate(0deg);}
}

@-webkit-keyframes shadow {
    0% {width: 30%;}
   50% {width: 40%; left: 20px;}
  100% {width: 30%;}
}
@keyframes shadow {
    0% {width: 30%;}
   50% {width: 40%; left: 20px;}
  100% {width: 30%;}
}

.main-loader {
  position: fixed;
  top: 0; bottom: 0;
  left: 0; right: 0;
  background-color: #ffffff;
  z-index: 9999;
}
.kitchen-loader {
  width: 180px;
  height: 180px;
  margin: auto;
  position: absolute;
  content: "";
  left: 0; right: 0;
  top: 0; bottom: 0;
}
.kitchen-loader .loader {
  position: relative;
  top: 10%;
  left: 0;
  z-index: -1;
  width: 60%;
  height: 45%;
  border: 10px solid transparent;
  border-bottom: 10px solid #FDD835;
  border-radius: 50%;
  animation: loader 2s infinite;
  animation-timing-function: linear;
}
.kitchen-loader .kitchen-container {
  display: flex;
  width: 100%;
  animation: kitchen 2s infinite;
}
.kitchen-loader .kitchen {
  width: 60%;
  height: 20px;
  background: linear-gradient(#f2550d, #f68855);
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
.kitchen-loader .handle {
  width: 40%;
  height: 10px;
  background: linear-gradient(#202020, #4d4d4d);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.kitchen-loader .shadow {
  position: relative;
  top: 15%;
  left: 15%;
  width: 30%;
  height: 8px;
  background: #fbccb6;
  border-radius: 20px;
  animation: shadow 2s infinite;
}

.sub-loader {
  position: fixed;
  top: 0; bottom: 0;
  left: 0; right: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9990;
}

.sub-loader img {
	width: 180px;
	height: 180px;
	margin: auto;
	position: absolute;
	content: "";
	left: 0; right: 0;
	top: 0; bottom: 0;
}


.color-F5783E {color: var(--theme-color) !important;}
.color-202020 {color: #202020 !important;}
.color-929292 {color: #929292 !important;}
.color-109556 {color: #109556 !important;}
.color-333333 {color: #333333 !important;}
.color-666666 {color: #666666 !important;}

.bg-color-theme {background-color: var(--theme-color) !important;}
.bg-color-ffffff {background-color: #FFFFFF;}
.bg-color-f9f9f9 {background-color: #f9f9f9;}

.form-control,
.input-group-text,
.custom-select,
.custom-file-label {
	height: inherit !important;
	min-height: 44px;
	border-radius: 8px;
	box-shadow: none !important;
}

.form-control:focus {
	border-color: var(--theme-color) !important;
}

.form-group textarea {
	border-color: #ced4da;
}

select.form-control {
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	padding-right: 30px !important;
	background: url(../img/dropdown-arrow.svg) no-repeat center right 15px / 14px;
}

textarea.form-control {
	height: 120px !important;
}
.custom-file input[type="file"] {cursor: pointer;}
.custom-file-label {
	padding: 10px 18px;
}
.custom-file-label:after {
	padding: 10px 18px;
	height: 100%;
	border-radius: 0 8px 8px 0;
}

.select_date {
	padding-right: 50px;
	background: url(../img/Calendar.svg) no-repeat center right 15px / 20px;
}

.booking_price {width: 50%;}
.booking_price .input-group-prepend .input-group-text {
	width: 44px;
	justify-content: center;
}

.form-group label {font-weight: 600; color: #202020;}

.custom_form .form-control {
	font-weight: normal;
	padding: 0 22px;
}

.icons-position {position: relative;}
.icons-left .form-control {padding-left: 46px !important;}
.icons-left .icons {
	position: absolute;
	content: "";
	left: 10px;
	top: 8px;
	width: 26px;
	height: 26px;
	display: inline-block;
}

.badge {
	padding: 8px 10px;
	border-radius: 5px;
	font-weight: 500;
	font-size: 12px;
	text-transform: capitalize;
}

.badge-primary {
	color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}
.badge-info {
	color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}
.badge-success {
	color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.badge-danger {
	color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.badge.chat_notify {
	padding: 5px;
	border-radius: 50%;
	width: 20px !important;
    line-height: 10px;
    font-size: 11px;
    margin-left: 10px;
}

.btn-submit button {
	padding: 0 25px;
}

.activities .activity:before {
	background-color: var(--theme-color) !important;
}

.chat_notify_menu {position: relative; margin-right: 10px; display: inline-block;}
.chat_notify_menu i {font-size: 18px;}
.chat_notify_menu span {position: absolute; content: ""; top: -12px; right: -12px;}

.btn {
	font-weight: 500;
	font-size: 16px;
	line-height: 44px;
	min-height: 44px;
	padding: 0 25px;
	border-radius: 8px;
	text-transform: capitalize;
	background: auto !important;
	box-shadow: none !important;
}
.btn-primary {
	color: #FFFFFF;
	background-color: var(--theme-color) !important;
	font-weight: 500;
	font-size: 16px;
	line-height: 44px;
	min-height: 44px;
	padding: 0 25px;
	border-radius: 8px;
	text-transform: capitalize;
	position: relative;
	overflow: hidden;
}

.btn-primary:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: -40px;
  width: 25px;
  height: 100%;
  background-color: rgba(255,255,255,0.2);
  transform: skewX(-15deg);
  animation: bg-animation-back 0.5s ease-out;
}
@keyframes bg-animation-back {
  0% {left: 100%;}
  100% {left: -30px;}
}
@-webkit-keyframes bg-animation-back {
  0% {left: 100%;}
  100% {left: -30px;}
}
@-moz-keyframes bg-animation-back {
  0% {left: 100%;}
  100% {left: -30px;}
}

.btn-primary:hover:before {
  animation: bg-animation 0.5s ease-out;
}
@keyframes bg-animation {
  0% {left: -30px;}
  100% {left: 100%;}
}
@-webkit-keyframes bg-animation {
  0% {left: -30px;}
  100% {left: 100%;}
}
@-moz-keyframes bg-animation {
  0% {left: -30px;}
  100% {left: 100%;}
}

.btn-outline-primary {
	color: var(--theme-color) !important;
	background-color: #ffffff !important;
	border: 1px solid var(--theme-color) !important;
}

.btn-light {
	color: #202020;
	background-color: #F2F2F2;
}

.btn-w100-h48 {
	min-width: 100px;
	line-height: 48px;
	min-height: 48px;
}
.btn-w170-h48 {
	min-width: 170px;
	line-height: 48px;
	min-height: 48px;
}

.btn-w250-h48 {
	min-width: 250px;
	line-height: 48px;
	min-height: 48px;
}

.btn-wh40 {
	border-radius: 5px;
	padding: 0 10px;
	min-width: 40px;
	line-height: 40px;
	min-height: 40px;
	font-size: 18px;
	text-align: center;
}

.btn-h50 {
	min-height: 50px !important;
	line-height: 48px !important;
}

a.view_btn {
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 12px;
    background-color: #4754E8;
    display: inline-block;
    vertical-align: middle;
    height: 34px;
    width: 70px;
    text-align: center;
    vertical-align: top;
    line-height: 20px;
}
a.btn-send {
	font-size: 16px;
	line-height: 18px;
	background-color: var(--theme-color) !important;
}

a.btn-send i {
	vertical-align: middle;
}

.btn_blue {
	color: #FFFFFF !important;
	background-color: #4754E8 !important;
}
.btn_green {
	color: #FFFFFF !important;
	background-color: #109556 !important;
}

.apply_range {
	line-height: 34px;
	min-height: 40px;
	border-radius: 5px;
}
.text-none {text-transform: none !important;}

/******************
	pagination
******************/
.pagination .page-link {
	border: none;
	font-weight: 500;
	font-size: 16px;
	color: var(--theme-color);
	display: inline-block;
	width: 36px;
	height: 36px;
	border-radius: 4px !important;
	background-color: #FFF5F1;
	text-align: center;
	line-height: 26px;
	padding: 5px;
	box-shadow: none !important;
}
.page-link:focus {
	color: #FFFFFF !important;
	background-color: var(--theme-color);
}
.pagination .page-item.active .page-link,
.pagination .page-link:hover,
.pagination .page-link.a_link:hover {
	color: #FFFFFF !important;
	background-color: var(--theme-color);
}
.pagination .page-item {
	margin: 0 5px;
}

.pagination .page-link.a_link {
	font-size: 40px;
	line-height: 50px;
}


/******************
	datetimepicker
******************/
.datetimepicker {z-index: 10 !important;}

.datetimepicker .datetimepicker-hours fieldset legend,
.datetimepicker .datetimepicker-minutes fieldset legend {
	font-size: 18px;
	color: #202020;
}
.datetimepicker th {color: #202020;}
.datetimepicker th, .datetimepicker td {
	font-weight: 500;
	font-size: 14px;
}

.datetimepicker table tr td.active,
.datetimepicker table tr td.active:hover,
.datetimepicker table tr td.active.disabled,
.datetimepicker table tr td.active.disabled:hover,
.datetimepicker table tr td span.active:active,
.datetimepicker table tr td span.active:hover:active,
.datetimepicker table tr td span.active.disabled:active,
.datetimepicker table tr td span.active.disabled:hover:active,
.datetimepicker table tr td span.active.active,
.datetimepicker table tr td span.active:hover.active,
.datetimepicker table tr td span.active.disabled.active,
.datetimepicker table tr td span.active.disabled:hover.active {
	background-color: var(--theme-color) !important;
	background-image: none !important;
}


/******************
	Login Form
******************/

.forgotten a {color: #F5783E;}
.login-card {border: none;}
.login-header {border-bottom: none; padding-bottom: 0;}
.login-header h5 {font-size: 28px;}
.login-form p {color: #202020;}
.login-form label {font-weight: 600; color: #202020;}
.login-form input{border-radius: 8px; border:1px solid #A5A5A5;}
.login-form input:focus {border-color: #F5783E;}
.login-button button {border-radius: 8px; width: 100%; position: relative; overflow: hidden;}

.search-input button{
	position: relative;
	overflow: hidden;
	font-size: 16px;
}

.login-button button:before,
.search-input button:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: -40px;
  width: 25px;
  height: 100%;
  background-color: rgba(255,255,255,0.2);
  transform: skewX(-15deg);
  animation: bg-animation-back 0.5s ease-out;
}
@keyframes bg-animation-back {
  0% {left: 100%;}
  100% {left: -30px;}
}
@-webkit-keyframes bg-animation-back {
  0% {left: 100%;}
  100% {left: -30px;}
}
@-moz-keyframes bg-animation-back {
  0% {left: 100%;}
  100% {left: -30px;}
}

.login-button button:hover:before,
.search-input button:hover:before {
  animation: bg-animation 0.5s ease-out;
}
@keyframes bg-animation {
  0% {left: -30px;}
  100% {left: 100%;}
}
@-webkit-keyframes bg-animation {
  0% {left: -30px;}
  100% {left: 100%;}
}
@-moz-keyframes bg-animation {
  0% {left: -30px;}
  100% {left: 100%;}
}

.remember-section {margin-bottom: 40px;}


/******************
	Header
******************/
.header-notify-bar {padding: 15px 25px;}
.notify-content a {
	display: inline-block;
	height: inherit !important;
    line-height: 24px;
    padding: 8px 10px;
    font-size: 14px;
}

.hc-nav-trigger.hc-nav-1 {z-index: 999;}

.dropdown-location {position: relative; z-index: 1;}
.dropdown-location span {
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	z-index: -1;
}

.dropdown-location select.form-control {
	border: none !important;
	padding-left: 30px;
	background-color: transparent;
	background: url(../img/dropdown-arrow.svg) no-repeat center right 5px / 14px;
}

#visitor_location {user-select: none;}
.header-main-right-area {margin-top: 0;}
.header-main-area {
	padding: 18px 0px;
	background-color: #F5F8FD;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
}
.header-logo img {width: 100%;}
.nav_brand {max-width: 186px;}
.nav_brand img{width: 100%;}

.main-menu ul li a {
	font-weight: 600;
	font-size: 14px;
	color: #202020;
}
.main-menu .btn-primary {
	color: #FFFFFF !important;
	text-transform: none;
    font-size: 14px;
}

.how_it_works {
	background: url(../img/bg-green.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	/*background-color: #f9f9f9;*/
}
.how_it_works .chef_image {
	max-width: 300px;
    margin-left: auto;
}

.how_it_works h2 {
	font-size: 28px;
	line-height: 32px;
	color: #ffffff;
	font-weight: 700;
}

.how_it_works p {
	font-size: 16px;
	line-height: 26px;
	color: #ffffff;
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: var(--theme-color);
}

.dropdown-toggle::after {
	border-top: .3em solid #202020;
}

.shopping-cart .count_load {
	padding: 0;
	font-size: 12px;
	width: 20px;
    line-height: 22px;
    text-align: center;
}
.sidebar-wrapper {height: 100%;}

.header_search {width: 230px;}
.header_search .input-group-text {
	border: none !important;
	background-color: #F5F8FD !important;
}
.header_search input {
	width: 100%;
	border: none !important;
	background-color: #F5F8FD !important;
}

.more_link .dropdown-menu {
	min-width: 250px;
	border: none !important;
	box-shadow: 0px 0px 3px rgba(0,0,0,0.15);
	transition: 0.3s ease-in-out;
	animation: dropdown-animation 0.5s ease-in-out;
}
.more_link .dropdown-menu:before {
	position: absolute;
	content: "";
	top: -8px; left: 20px;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #fff;
}
.more_link .dropdown-menu .dropdown-item {
	padding: 8px 20px;
	white-space: pre-wrap;
}

@keyframes dropdown-animation {
  0% {top: 200%; opacity: 0;}
  100% {top: 100%;opacity: 1;}
}

/******************
	Footer
******************/
.footer-main-content {
	padding: 46px 0 40px;
	background-color: #333333;
	border-top: none;
}

.footer-menu ul li {margin-right: 0px !important; display: block;}
.footer-menu ul li a {font-size: 14px;}
.footer-menu ul li a:hover {color: var(--theme-color);}
.footer-copyright {
	padding: 10px 15px;
	background-color: #2F2D2E;
}
.footer-copyright p{font-size: 12px;}

.footer-right ul {
	margin: 0; padding: 0;
}
.footer-right ul li {
	display: inline-block;
	margin: 0 10px;
}
.footer-right ul li:last-child {
	margin-right: 0;
}
.footer-right ul li a {
	color: #FFFFFF;
	font-size: 12px;
}
.footer-right ul li a:hover {
	color: var(--theme-color);
}

.social-media ul {
	margin: 0; padding: 0;
	list-style: none;
}
.social-media ul li {display: inline-block; margin: 5px;}
.social-media ul li a {
	display: inline-block;
	width: 35px;
	height: 35px;
	line-height: 36px;
	color: #2F2D2E;
	background-color: #FFFFFF;
	text-align: center;
	font-size: 16px;
	border-radius: 50%;
}
.social-media ul li a:hover {
	color: #FFFFFF;
	background-color: var(--theme-color);
}

ul.social-media li {
	margin-right: 30px;
}
ul.social-media li a img {
	width: 46px;
}

.restaurant-service-list ul li a {
	font-weight: 500;
	color: #109556;
}

/******************
	figure
******************/
figure img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.figure_radius {
	overflow: hidden;
	border-radius: 100%;
}
.figure_116 {
	min-width: 116px;
	max-width: 116px;
	height: 116px;
	border:5px solid #FFFFFF;
	box-shadow: 0px 3px 3.5px rgba(0,0,0,0.16);
}

/******************
	Card
******************/
.card-shadow-1 {box-shadow: 0 0 7px rgba(0,0,0,0.1);}
.card-shadow-2 {box-shadow: 0 0 15px rgba(0,0,0,0.1);}

.card-box .card {
	transition: 0.5s ease-in-out;
	box-shadow: 0 0 8px rgba(170,170,170,0.78);
}
.card-box .card:hover {
	box-shadow: 0 0 8px rgba(255,120,0,0.78);
}

.restaturants-content {
	margin: 0;
	padding: 15px;
}
.restaturants-content .list_tag {
	min-height: 110px;
}
.owl-carousel.best_rated .card-box {padding: 5px;}
.best_rated_main .card-box {
	padding: 5px 5px 30px;
	margin: 0 5px;
	width: calc(20% - 10px);
}

.card-box .restaturants-content h4 {
	color: var(--theme-color);
	text-transform: capitalize;
	font-weight: 500;
	margin-bottom: 5px;
}

.edit_del_btn {
	position: absolute;
	content: "";
	right: 10px; bottom: 10px;
}

.edit_del_btn a {
	display: inline-block;
	width: 30px;
	font-size: 20px;
	color: #7e7e7e;
	text-align: center;
	margin-left: 15px;
}
.edit_addr_btn:hover {
	color: var(--theme-color);
}
.del_btn_addr:hover {
	color: #ff0000;
}

.single-restaturants {position: relative;}
.single-restaturants .featured {
	position: absolute;
	content: "";
	color: #ffffff;
	background-color: #ff7800;
	font-size: 12px;
	text-transform: capitalize;
	width: 120px;
	padding: 3px 10px;
	display: inline-block;
	text-align: center;
	top: 20px; left: -25px;
	transform: rotate(-45deg);
	z-index: 5;
}
.single-restaturants .featured:before {
	position: absolute;
	content: "";
	left: 0px; bottom: -7px;
    display: inline-block;
    border-left: 8px solid #cd6000;
    border-bottom: 8px solid transparent;
    z-index: 0;
}
.single-restaturants .featured:after {
	position: absolute;
	content: "";
	right: 4px; bottom: -8px;
    display: inline-block;
    border-right: 8px solid #cd6000;
    border-bottom: 8px solid transparent;
    z-index: 0;
}

.single-restaturants .card > a:first-child { overflow: hidden; }
.single-restaturants img {
	height: 180px;
	object-fit: cover;
	transition: 0.3s ease-in-out;
}
.single-restaturants:hover img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
}

/*-------------- Card Accordion ---------------*/
.card-accordion {
	border: none;
	border-bottom: 1px solid #E2E2E2 !important;
  	margin-bottom: 0px;
}
.card-accordion .card-header {
	padding: 25px 0px;
	background: #ffffff;
	border-bottom: none;
}
.card-accordion .card-header a {
  font-weight: 600;
  font-size: 20px;
  color: #4d4d4d;
  text-transform: capitalize;
  display: block;
  text-align: left;
}
.card-accordion .card-body {
  padding: 0 0 20px;
  text-align: left;
}
.card-accordion .card-body p {
	font-size: 16px;
}
.card-accordion.card-arrow .card-header a {
  padding-right: 40px;
  position: relative;
}
.card-accordion.card-arrow .card-header a:before {
  position: absolute;
  top: -5px; right: 0;
  content: "\f068";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  font-size: 28px;
  color: #109556;
}
.card-accordion.card-arrow .card-header a.collapsed:before {
  content: "\f067"
}

.card.card-primary {
  border-top: 2px solid #f5783e;
}

.card.card-primary .card-header {
	font-weight: 600;
	font-size: 20px;
	color: var(--theme-color);
	border-bottom: none;
}

.card.card-secondary {
  border-top: 2px solid #cdd3d8;
}

.card.card-success {
  border-top: 2px solid #47c363;
}

.card.card-danger {
  border-top: 2px solid #fc544b;
}

.card.card-warning {
  border-top: 2px solid #ffa426;
}

.card.card-info {
  border-top: 2px solid #3abaf4;
}

.card.card-dark {
  border-top: 2px solid #191d21;
}


/********************
	Payments
********************/
.card.card-saved {
	padding: 16px;
	border-radius: 8px;
	border:1px solid #a5a5a5;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}
.card.card-saved:before {
	position: absolute;
	content: "";
	width: 100%; height: 100%;
	top: 0; bottom: 0;
	left: 0; right: 0;
	background-color: var(--theme-color);
	opacity: 0;
	z-index: -1;
	transition: 0.3s ease-in-out;
}
.card.card-saved:hover:before {
	opacity: 0.1;
}
.card.card-saved:hover {
	border-color: var(--theme-color);
}

.card.card-saved .card-img {
	display: inline-block;
	width: 60px;
	height: 60px;
	margin-right: 20px;
	border-radius: 50%;
	overflow: hidden;
	border:1px solid #a5a5a5;
}
.card.card-saved .card-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.card-saved .btn-outline-danger {
	color: #a5a5a5 !important;
	background-color: #ffffff !important;
    border: 1px solid #a5a5a5 !important;
    padding: 0;
    width: 44px; height: 44px;
    text-align: center;
    font-size: 20px;
    margin-left: auto;
    display: block;
}

.card.card-saved:hover .btn-outline-danger {
	color: var(--theme-color) !important;
	border-color: var(--theme-color) !important;
}

.card-saved .btn-outline-danger:hover {
	background-color: #ff0000 !important;
	border-color: #ff0000 !important;
}
.card.card-saved:hover .btn-outline-danger:hover {
	color: #ffffff !important;
}

/******************
	Modal
******************/
.custom_modal .modal-header {
	padding: 15px 40px;
	margin-bottom: 0;
	box-shadow: 2px 0px 5px rgba(0,0,0,0.10);
}
.custom_modal .modal-header h5 {
	text-align: center;
    width: 100%;
    font-weight: 500;
    font-size: 20px;
    color: var(--theme-color);
}
.custom_modal .modal-header .close {
	position: absolute;
	content: "";
	top: 18px; right: 18px;
	color: var(--theme-color);
	opacity: 1;
}

.custom_modal .modal-body {
	padding: 25px;
}

.modal-main-content {
	overflow-y: inherit;
	position: relative;
	border-radius: 10px;
}
.modal-qty-section .qty-value {
	display: inline-block;
	min-width: 30px;
	text-align: center;
}

.add-to-cart-button button {
	font-size: 16px;
	padding: 5px 20px;
}

.close-modal {
	right: -25px;
    top: -25px;
	background-color: var(--theme-color);
}
.close-modal a {
	color: #FFFFFF !important;
}

/*.addon_modal {
	height: 600px;
	overflow: hidden;
	overflow-y: scroll;
}*/

/******************
	Rating Star
******************/
.rating {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}
.rating .badge-warning {
  border-radius: 5px;
  min-width: 36px;
  margin-bottom: 0;
  padding: 5px;
  line-height: 18px;
  font-weight: 600;
  color: white;
  background-color: #ffb400;
  display: inline-block !important;
}
.rating .badge-warning:before {
  content: none !important;
}
.rating .badge-light {
  border-radius: 5px;
  min-width: 40px;
  margin-bottom: 0;
  font-weight: 600;
  color: #191D23;
  background-color: white;
}

.jq-ry-container .jq-ry-group-wrapper .jq-ry-group.jq-ry-normal-group svg {
  fill: #d9d9d9;
  stroke: #d9d9d9;
  stroke-width: 40px;
  stroke-linecap: round;
}
.jq-ry-container .jq-ry-group-wrapper .jq-ry-group.jq-ry-rated-group svg {
  fill: var(--theme-color);
  stroke: var(--theme-color);
  stroke-width: 40px;
  stroke-linecap: round;
}

.room-review-count {
	display: flex;
	display: -ms-flexbox;
	display: -webkit-flex;
	justify-content: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	align-items: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	flex-direction: column;
	box-shadow: 0px 3px 3.5px rgba(0,0,0,0.16);
	border-radius: 8px;
	padding: 15px;
	height: 200px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.room-review-count h2 {
	font-weight: 500;
	font-size: 60px;
	margin-bottom: 15px;
}

.progressbar-label {
	padding-top: 10px;
	padding-right: 200px;
	position: relative;
}
.progressbar-label .rating {
	position: absolute;
	top: 0; right: 0;
}

.progressbar-label .rating span {
	width: 40px;
	text-align: right;
}

.progressbar-label .progress {
	height: 12px;
	border-radius: 15px;
	background: #E2E2E2 !important;
}
.progress .progress-bar {
	background: var(--theme-color);
}

.review-list .media img {width: 100px;}
.review-list .media-body h5 {
	font-weight: 500;
	color: var(--theme-color);
}


/******************
	Home Page
******************/
#hero {
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

#hero .hero-area {
	position: relative;
}
#hero .hero-area:before {
	position: absolute;
	content: "";
	top: 0; bottom: 0;
	left: 0; right: 0;
	z-index: 1;
	background-color: rgba(0,0,0,0.4);
	height: 100%;
	width: 100%;
}
.hero-main-content {
	position: relative;
	z-index: 5;
	/* padding: 200px 0 140px; */
    padding: 260px 0 180px;
}

.input-group>.input-group-prepend:not(:first-child)>.input-group-text {
	border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.input-group>.input-group-append button{
	border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    text-transform: uppercase;
}

.food-search-bar {
	padding: 0;
	box-shadow: none;
}
.food-search-bar .search-input input {
	margin-right: 0;
	border:none;
	height: inherit;
	width: 200px;
}

.main_title {
	font-weight: 600;
	font-size: 34px;
	line-height: 52px;
	color: #202020;
	text-transform: capitalize;
}

.section_title {
	font-weight: 700;
	font-size: 32px;
	/* font-size: 20px; */
	line-height: 32px;
	color: #202020;

}

.hero-main-content p {color: #FFFFFF;}
.single-restaurants {
	margin-right: unset;
}
.single-restaurants img {
	border-radius: 100%;
	width: 130px !important; height: 130px;
	/* margin: 0 auto 20px; */
	margin: 10px auto 20px;
	border: 2px solid var(--theme-color);
}

.total-min {background-color: #00924a;}
.total-min span{
	color: #FFFFFF;
	padding: 5px 10px !important;
}

.list_tag .tags {
	display: inline-block;
	font-size: 12px;
	line-height: 20px;
	color: #5f5f5f;
	padding: 3px 10px;
	margin-right: 5px;
	margin-bottom: 8px;
	border-radius: 3px;
	background-color: #ffffff;
	border: 1px solid #d7d7d7;
}

.restaurants_services {
	background: url(../img/services-bg-shape.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% 42px;
	background-color: #f9f9f9;
	padding: 80px 0;
}
.category-summery ul li:after{content: none !important;}

/******************
	settings menu
******************/
.settings-main-menu ul li a {
	color: #585858;
	font-size: 16px;
	text-transform: capitalize;
}
.settings-main-menu ul li a:hover {
    color: var(--theme-color);
}
.settings-main-menu ul li a i {
	display: inline-block;
	width: 30px;
	text-align: center;
	vertical-align: text-top;
    font-size: 18px;
    line-height: 22px;
}

.settings-sidebar-card {
	padding: 20px;
	border-radius: 8px;
}

.setting-main-area {
	padding: 25px;
	border-radius: 8px;
}

.single-dashboard-widget {
	border-radius: 8px;
}

.right-area h5 {
	color: var(--theme-color);
	font-weight: 500;
	font-size: 24px;
	margin-bottom: 15px;
}

.settings-content-area h4 {
	font-weight: 600;
	font-size: 24px;
	color: #202020;
	text-transform: capitalize;
}

/******************
	User Dashboard Page
******************/
.profile-img {
	position: relative;
    display: block;
	width: 100px;
	height: 100px;
    margin: 0 auto 20px;
}
.edit_user_photo {
	position: absolute;
	content: "";
	right: 0; bottom: 0;
	color: #FFFFFF;
	background-color: var(--theme-color);
	font-size: 12px;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	border-radius: 50px;
	padding: 0 11px;
	cursor: pointer;
}
.profile-content h5 {
	font-weight: 500;
	font-size: 18px;
	color: var(--theme-color);
	word-break: break-word;
}
.profile-content span {
	font-weight: normal;
	font-size: 16px;
}

.store-info {width: 100%;}

.store-inline-action {padding: 0;}
.store-inline-action ul.nav-tabs {display: flex !important;}
.store-inline-action ul li {
	margin: 0;
	padding: 0;
	float: left;
    flex: auto;
    display: block;
    text-align: center;
}
.store-inline-action ul li.active {
	background-color: var(--theme-color);
}
.store-inline-action ul li.active a {
	color: #FFFFFF;
}

.store-inline-action ul li a {
	display: block;
	padding: 20px 30px;
}

.store-left-section .store-banner-img {z-index: -1; margin-bottom: -10px;}

.store-left-section .store-action {box-shadow: none;}
.store-inline-action ul.nav.nav-tabs {box-shadow: -8px 4px 10px rgb(0 0 0 / 10%);}

ul.nav.nav-tabs {
	background-color: #fff;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.gallery_main .gallery_img {
	box-shadow: 0 0 20px #ddd;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    height: 212px;
    overflow: hidden;
}
.gallery_main .gallery_img img {
	width: 100%;
	height: 100%;
	border-radius: 6px;
	object-fit: cover;
	transition: 0.3s ease-in-out;
}
.gallery_main .gallery_img:hover img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
}

/******************
	Category Details
******************/
.store-left-section {overflow: hidden;}
.store-another-content h3 {word-break: break-word; }

.store-another-content .store-rating-area .total-avg-rating {padding: 4px 10px; min-width: 70px;}

.store-another-content .restaurant-service-list ul li {
	margin-right: 10px;
    border: 1px solid #fff;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 3px 10px;
    margin-bottom: 10px;
}

.store-another-content .restaurant-service-list ul li a {
	font-size: 12px;
}

.filter_map_area .single-restaturants {
	border-radius: 8px;
	overflow: hidden;
}
.filter_map_area .single-restaturants img {
	object-fit: cover;
	height: 130px;
}

.filter_map_area .restaturants-content {
	padding: 0;
	padding-top: 15px;
}

.category-title h3,
.review-title h4 {
	font-weight: 600;
	font-size: 24px;
	color: #202020;
}

span.badge.badge-red {
	color: #ffffff;
	padding: 0 20px;
}
.store-another-content p {
	margin-bottom: 5px;
}
.delivery-ag-time {
	display: inline-block;
	width: inherit;
	font-size: 14px;
    padding: 6px 10px;
	color: #FFFFFF;
	background-color: #109556;
}
.total-avg-rating {
	background: var(--theme-color);
}

.single-category-food {
	padding: 20px 20px 0;
	border-radius: 8px;
	box-shadow: 0px 3px 6px rgba(0,0,0,16%)
}
.single-category-main-content {
	padding: 0;
}

.store-area.store_fixed {overflow: visible;}
.store-right-section {top: 80px;}
.delivery-main-content {
	position: static;
	width: inherit;
	padding-bottom: 20px;
}

.single-food-card {
	padding: 0;
	overflow: hidden;
	border: 1px solid #E2E2E2;
	box-shadow: none !important;
	transition: 0.3s ease-in-out;
}
.single-food-card:hover {
	border-color: var(--theme-color);
}
.single-food-card .food-img {
	margin-bottom: 0;
	overflow: hidden;
}
.single-food-card .food-img img {
	height: 150px;
	object-fit: cover;
	border-radius: 0;
	transition: 0.3s ease-in-out;
}

.single-food-card:hover .food-img img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
}

.food-another {
	padding: 10px;
}
.food-another h5 {
	font-weight: 700;
	font-size: 16px;
	line-height: 26px;
	color: var(--theme-color);
	text-transform: capitalize;
}
.food-another p {
	font-weight: normal;
	font-size: 14px;
	line-height: 22px;
	color: #797979;
	margin-bottom: 8px;
}
.food-price-action span {
	font-size: 14px;
}
.food-action a {
	font-size: 12px;
	padding: 3px 10px;
	background: transparent;
	border:1px solid #109556;
	color: #109556;
	transition: 0.3s ease-in-out;
}

.food-action a:hover {
	color: #FFFFFF;
	background-color: #109556;
}

.food-title h4,
.adds-on-area h4 {
	font-weight: 500;
	font-size: 22px;
	line-height: 28px;
	color: var(--theme-color);
}

.checkout-btn {
	text-align: center;
	background-color: #109556;
}

.cart_items {
	padding-bottom: 10px;
	margin-bottom: 15px;
	border-bottom: 1px solid #E2E2E2;
}

.cart-product-list {padding: 0 15px; max-height: 200px;}

.single-cart-product {padding-bottom: 10px; border-bottom: 1px solid #E2E2E2;}
.single-cart-product .food-img,
.single-order-product-info .food-img {max-width: 75px; min-width: 75px; height: 75px;}
.single-cart-product .food-img img,
.single-order-product-info .food-img img {height: 100%; object-fit: cover;}

.single-order-product-info {border-bottom: 1px solid #ddd; padding-bottom: 5px;}

.cart-product-title {margin-left: 0; padding: 0 10px;}
.cart-product-title h5 {
	font-weight: 600;
	font-size: 16px;
	color: #202020;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-product-title p {position: static;}

.cart-price-action {margin-right: 0; width: 100px; float: left;}

.cart-product-list::-webkit-scrollbar {width: 4px;}
.cart-product-list::-moz-scrollbar {width: 4px;}
.cart-product-list::-ms-scrollbar {width: 4px;}
.cart-product-list::-webkit-scrollbar-track {box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);}
.cart-product-list::-moz-scrollbar-track {box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);}
.cart-product-list::-ms-scrollbar-track {box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);}
.cart-product-list::-webkit-scrollbar-thumb {background-color: var(--theme-color);}
.cart-product-list::-moz-scrollbar-thumb {background-color: var(--theme-color);}
.cart-product-list::-ms-scrollbar-thumb {background-color: var(--theme-color);}

.cart-price-action span,
.cart-price-action p {color: #adadad;}

.cart-product-action {
	box-shadow: none;
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
}
.cart-product-action .left span,
.cart-product-action .right span {
	border:1px solid var(--theme-color);
	border-radius: 5px;
	padding: 4px 3px;
	width: 22px;
	height: 22px;
	display: inline-block;
}

.cart-product-action .right span {margin-right: 5px; margin-left: 0;}
.cart-product-action .left span {margin-left: 5px; margin-right: 0;}
.product-qty-name span.product-qty {font-weight: normal;}
.product-qty-name h5 {
	white-space: pre-wrap !important;
	word-break: break-all !important;
}

.modal-qty-section {font-weight: 500;}
.modal-qty-section span.ti-plus,
.modal-qty-section span.ti-minus {
	border:1px solid var(--theme-color);
	border-radius: 5px;
	padding: 5px 5px;
	width: 28px;
	height: 28px;
	display: inline-block;
	font-size: 16px;
}


.qty input {
	width: 30px;
	text-align: center;
	color: #202020;
}

.lightbox {
  cursor: pointer;
}

#AI_lightbox {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
  opacity: 0;
  display: none;
}
#AI_lightbox .ImageView {
	position: relative;
	max-width: 960px;
	width: 100%;
	height: 520px;
	padding: 30px;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#AI_lightbox .ImageView .lightbox_image {
	background: #FFFFFF;
	padding: 10px;
	border-radius: 15px;
	width: 100%;
	height: 100%;
	display: block;
	overflow: hidden;
}
#AI_lightbox .ImageView img {
	border-radius: 10px;
}
#AI_lightbox span {
  position: absolute;
  cursor: pointer;
  z-index: 110;
  text-align: center;
  font-size: 40px;
  color: #FFF;
}

#AI_lightbox .close {
    top: 3px;
    right: 5px;
    width: 40px;
    height: 40px;
    font-size: 24px;
    line-height: 42px;
    background: var(--theme-color);
    border-radius: 50%;
    overflow: hidden;
    opacity: 1;
}

#AI_lightbox .next {
  top: 50%;
  right: 60px;
  transform: translate(0px, -50%);
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 50%);
}

#AI_lightbox .prev {
  top: 50%;
  left: 60px;
  transform: translate(0px, -50%);
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 50%);
}
#AI_lightbox img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.AI_lightbox_grid .block {
  float: left;
  width: 33.3vw;
  height: 33.3vw;
  overflow: hidden;
}
.AI_lightbox_grid .block img {
  height: 100%;
  left: 50%;
  transform: translate(-50%, 0px);
}

/*******---------------chef info---------------*******/

.vendor_info {min-width: 180px;}
.contact-info .single-content {
	margin-bottom: 25px;
	position: relative;
	padding-left: 45px;
}
.contact-info .single-content i {
	position: absolute;
	content: "";
	left: 0; top: 1px;
	font-size: 20px;
	display: inline-block;
	width: 30px;
	text-align: center;
	vertical-align: middle;
}

/******************
	Chef Listing page
******************/
.select_location {position: relative;}
.select_location .form-control {padding-left: 40px !important; padding-right: 40px !important;}
.map_location {
	position: absolute;
	content: "";
	left: 10px;
	top: 10px;
	width: 26px;
	height: 26px;
	display: inline-block;
}
.locationIcon {
	position: absolute;
	content: "";
	right: 10px;
	top: 12px;
	width: 26px;
	height: 26px;
	display: inline-block;
	text-align: center;
}

.slider.slider-horizontal {width: 100% !important;}
.slider-selection {
	background-color: #109556 !important;
	background-image: none !important;
	box-shadow: none !important;
}
.slider-track {
	height: 6px !important;
	background-color: #E2E2E2 !important;
}
.slider-handle {
	top: -3px !important;
	background-color: #ffffff !important;
	border: 3px solid #109556 !important;
	background-image: none !important;
	box-shadow: none !important;
}

.service_list img {
	width: 60px; height: 60px;
	object-fit: cover;
	border: 2px solid #f5783e;
	border-radius: 50%;
}

.restaurant-service-list .chef_service_img {
	box-shadow: 0 0 20px #ddd;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    height: 212px;
    overflow: hidden;
}
.restaurant-service-list .chef_service_img img {
	width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
    transition: 0.3s ease-in-out;
}
.restaurant-service-list .chef_service_img:hover img {
	transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
}


/******************
	CheckOut page
******************/
.tips_menu {}
.tips_menu .apply_tip {
	flex: 1;
	text-align: center;
	border: 1px solid #c5c5c5;
	font-size: 16px;
    line-height: 40px;
    cursor: pointer;
}

.tips_menu .apply_tip.active {
	border-color: var(--theme-color);
}

.order-store h4 {word-break: break-all;}

#place_order_form fieldset:not(:first-of-type) {
    display: none;
}
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    counter-reset: step;
}
#progressbar li {
    list-style-type: none;
    text-transform: capitalize;
    font-size: 14px;
    color: #666666;
    float: left;
    position: relative;
    text-align: center;
}
#progressbar li.active {
	color: #202020;
}
#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    line-height: 24px;
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: #666;
    background: #f2f2f2;
    border-radius: 50px;
    margin: 0 auto 5px auto;
    text-align: center;
    border: 3px solid #ffffff;
}
/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 10px;
    background: #f2f2f2;
    position: absolute;
    left: -50%;
    top: 10px;
    z-index: -1;
}
#progressbar li:first-child:after {
    content: none;
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: var(--theme-color);
    color: #FFFFFF;
}

/******************
	About us page
******************/
.aboutus_main .aboutus_img {
	max-width: 480px;
	width: 100%;
    margin: 0px 25px 25px 0;
    float: left;
    border-radius: 3px;
}

.aboutus_main .aboutus_img.float-right {
	margin: 0px 0px 25px 25px;
}

.aboutus_main .aboutus_info {
	display: inline;
}
.aboutus_main .aboutus_info p {
	margin-top: 0;
}


.chat_messager {
	margin-top: auto;
	margin-bottom: auto;
}

.chat_messager .card {
	height: 500px;
	border: none;
	border-radius: 12px !important;
	box-shadow: 0 3px 6px rgba(0,0,0,16%);
}

.contacts_body {
	padding: 0.75rem 0 !important;
	overflow-y: auto;
	white-space: nowrap;
}

.msg_card_body {
	overflow-y: auto;
	padding-right: 15px !important;
}

.chat_messager .card-header {
	border-radius: 15px 15px 0 0 !important;
	border-bottom: 0 !important;
	background-color: #FFFFFF;
	box-shadow: 0 3px 6px rgba(0,0,0,10%);
}

.chat_messager .card-footer {
	border-radius: 0 0 15px 15px !important;
	border-top: 0 !important;
	background-color: #FFFFFF;
}

.chat_messager .card-footer textarea.form-control {
	height: 44px !important;
	resize: none !important;
}

.search {
	border-radius: 8px 0 0 8px !important;
	background-color: rgba(0, 0, 0, 0.3) !important;
	border: 0 !important;
	color: #000 !important;
}

.search:focus {
	box-shadow: none !important;
	outline: 0px !important;
}

.type_msg {
	background-color: #FFFFFF !important;
	color: #000 !important;
	height: 48px !important;
	overflow-y: auto;
	padding: 5px 20px !important;
	margin-right: 15px;

}

.send_btn {
	width: 150px;
	font-size: 26px;
}

.search_btn {
	border-radius: 0 15px 15px 0 !important;
	background-color: #FFFFFF !important;
	border: 0 !important;
	color: #000 !important;
	cursor: pointer;
}

.contacts {
	list-style: none;
	padding: 0;
}

.contacts li {
	width: 100% !important;
	padding: 10px 20px;
	margin-bottom: 0px !important;
	cursor: pointer;
	transition: 0.3s ease-in-out;
	border-bottom: 1px solid #ddd;
}
.contacts li:last-child {
	border-bottom: none;
}
.contacts li:hover {
	background-color: rgba(245, 120, 62, 0.2);
}

.user_img {
	height: 54px;
	width: 54px;
	border: 1px solid #cce5ff;
}

.user_img_msg {
	height: 40px;
	width: 40px;
	border: 1px solid #cce5ff;
}

.img_cont {
	position: relative;
	height: 54px;
	width: 54px;
}

.img_cont_msg {
	height: 40px;
	width: 40px;
}

.online_icon {
	position: absolute;
	height: 15px;
	width: 15px;
	background-color: #4cd137;
	border-radius: 50%;
	/* bottom: 0.2em;
	right: 0.4em; */
	bottom: 0;
	right: 0;
	border: 1.5px solid white;
}

.offline {
	background-color: #c23616 !important;
}

.user_info {
	margin-top: auto;
	margin-bottom: auto;
	margin-left: 15px;
}

.user_info h4 {
	font-weight: 600;
	font-size: 20px;
	color: var(--theme-color);
	margin-bottom: 0;
}

.user_info p {
	font-size: 10px;
	color: #666;
}

.video_cam {
	margin-left: 50px;
	margin-top: 5px;
}

.video_cam span {
	color: #000;
	font-size: 20px;
	cursor: pointer;
	margin-right: 20px;
}

.msg_cotainer {
	margin-top: auto;
	margin-bottom: auto;
	margin-left: 10px;
	border-radius: 12px;
	border-bottom-left-radius: 0;
	color: #333;
	background-color: #FCFCFC;
	padding: 10px 15px;
	position: relative;
	text-align: left;
}

.msg_cotainer_send {
	margin-top: auto;
	margin-bottom: auto;
	margin-right: 10px;
	border-radius: 12px;
	border-bottom-right-radius: 0;
	color: #333;
	background-color: #F5F5F5;
	padding: 10px 15px;
	position: relative;
	text-align: right;
}

.msg_time {
	position: absolute;
	left: 50px;
	bottom: -20px;
	color: #666;
	font-size: 10px;
}

.msg_time_send {
	position: absolute;
	right: 50px;
	bottom: -20px;
	color: #666;
	font-size: 10px;
}

.msg_head {
	position: relative;
}

#action_menu_btn {
	position: absolute;
	right: 30px;
	top: 50%;
	color: #666;
	cursor: pointer;
	font-size: 20px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.action_menu {
	z-index: 1;
	position: absolute;
	padding: 15px 0;
	background-color: #FFFFFF;
	color: #000;
	border-radius: 8px;
	top: 35px;
	right: 50px;
	display: none;
}

.action_menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.action_menu ul li {
	width: 100%;
	padding: 10px 15px;
	margin-bottom: 5px;
}

.action_menu ul li i {
	padding-right: 10px;
}

.action_menu ul li:hover {
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.2);
}

@media(max-width:576px) {
	.contacts_card {margin-bottom: 15px !important;}
	.user_info h4 {font-size: 16px;}

}

.mCSB_scrollTools .mCSB_draggerRail {background-color: rgba(0,0,0,0.2) !important;}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #f5783e !important;
    background-color: rgb(245 120 62) !important;
}

.owl-dots {
	text-align: center;
	margin-top: 20px;
}
.owl-dots .owl-dot {
	display: inline-block;
	width: 14px; height: 14px;
	border-radius: 25px;
	background-color: #d7d7d7 !important;
	margin: 5px;
}

.owl-dots .owl-dot.active {
	background-color: var(--theme-color)!important;
}

.page_not_found h1 {
	font-family: 'Pacifico', cursive;
	font-size: 120px;
	color: #202020;

}
.page_not_found h1 img {
	width: 100px;
	margin: 0 10px;
	animation: svg-animation 3s infinite linear;
    border-radius: 100%;
	box-shadow: 0 0 3px rgb(0 0 0 / 30%);
}

@keyframes svg-animation {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}

@-webkit-keyframes svg-animation {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}

@media(max-width: 767px) {
	.page_not_found h1 {font-size: 80px;}
	.page_not_found h1 img {width: 60px; margin: 0 10px;}
	.page_not_found .sub_title {font-size: 24px;}
}

/******************
	ckeditor
******************/

.ckeditor_content h2,
.ckeditor_content h3 {
	font-weight: 600;
	font-size: 20px;
	color: var(--theme-color);
}
.ckeditor_content h4,
.ckeditor_content h5 {
	font-weight: 500;
	font-size: 18px;
	color: #4d4d4d;
}

.ckeditor_content p {
	font-size: 16px;
	line-height: 30px;
	color: #4d4d4d;
	margin-top: 0 !important;
}

.ckeditor_content strong {font-weight: 500 !important;}

.ckeditor_content ul {padding-left: 2rem;}
.ckeditor_content li {list-style: inherit !important; margin-top: 10px;}
.ckeditor_content li::marker {color: var(--theme-color)!important;}

.ckeditor_content ol > li {margin-top: 15px; color: #4d4d4d;}
.ckeditor_content ol > li::marker {font-weight: 600;}
.ckeditor_content ol ul li {color: #797979 !important;}

.how_it_works_page .row {counter-increment: section; margin-top: 40px;}
.how_it_works_page .how_it_works_image {position: relative;}
.how_it_works_page .how_it_works_image::before {
	content: counter(section) "";
  display: inline-block;
  height: 46px;
  width: 46px;
  border: 1px solid #f5783e;
  font-weight: 600;
  font-size: 18px;
  padding-top: 10px;
  background-color: rgba(245, 120, 62, 0.1);
  border-radius: 50%;
  color: #202020;
  text-align: center;
  position: absolute;
  top: -12px;
  margin: auto;
  z-index: 2;
  right: -38px;
}

.how_it_works_page .row.flex-lg-row-reverse .how_it_works_image::before{
	left: -38px; right: inherit;
}

.how_it_works_page .how_it_works_image {padding-right: 80px;}
.how_it_works_page .how_it_works_image img {max-height: 300px;}
.how_it_works_page .how_it_works_content {padding-left: 80px;}
.how_it_works_page .row.flex-lg-row-reverse .how_it_works_image {padding-right: 0px; padding-left: 80px;}
.how_it_works_page .row.flex-lg-row-reverse .how_it_works_content {padding-left: 0px; padding-right: 80px;}

.how_it_works_page .how_it_works_content {position: relative;}
.how_it_works_page .how_it_works_content::before {
	content: "";
  display: inline-block;
  border-right: 1px solid rgba(245, 120, 62, 0.5);
  position: absolute;
  top: 98px;
  left: -15px;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
.how_it_works_page .row.flex-lg-row-reverse .how_it_works_content::before {
	left: inherit; right: -15px;
}
.how-it-works-step .work_wrap{z-index: 1;}
.how-it-works-step .work_wrap:first-child::after {
	position: absolute;
	content: "";
	right: -115px; top: 140px;
	width: 245px; height: 80px;
	background: url('../img/works-arrow.png') no-repeat top right / cover;
	z-index: -1;
}

.how-it-works-step .work_wrap:nth-child(2)::after {
	position: absolute;
	content: "";
	right: -115px; top: 0px;
	width: 245px; height: 80px;
	background: url('../img/works-arrow.png') no-repeat top right / cover;
	transform: rotateX(180deg) rotate(0deg);
	z-index: -1;
}

/* ******************** */
/* User type toggle CSS */
.status-switch {
    background-color: #eee;
    width: 100%;
    display: block;
    border-radius: 4px;
    height: 36px;
    padding: 0;
    position: relative;
    zoom: 1;
    margin-bottom: 10px;
    border: 1px solid #929191;
    min-height: 38px;
}
.status-switch label {
    float: left;
    /* width: 50%; */
    position: relative;
    z-index: 2;
    line-height: 36px;
    cursor: pointer;
    color: #888;
    font-size: 14.7px;
    text-align: center;
    transition: 0.3s;
    margin: 0;
}
.status-switch label.current-status {
    color: #fff;
    background-color: var(--theme-color) !important;
}
.user-customer {width: 55%;}
.user-chef {width: 45%;}

/* user toggle css start */
.header-main-area .menu_profile .status-switch {
    width: calc(100% - 20px);
    margin: 0 auto 10px;
    display: flex;
    flex-wrap: wrap;
}
.header-main-area .menu_profile .status-switch > a {
    width: 50%;
    display: block;
    margin: 0;
    text-align: center;
}
.header-main-area .menu_profile .status-switch > a > label {
    float: none;
    display: block;
    width: 100%;
    font-size: 12px;
}
.header-main-area .menu_profile .status-switch > a:hover label {
    background-color: rgb(245 120 62 / 85%);
    color: #fff;
}
/* user toggle css ends */

/******************
	Responsive
******************/

@media screen and (max-width: 1200px) {
	.section_title {font-size: 28px;}

	.best_rated_main .card-box {width: calc(33.33% - 10px);}
	.cart-product-list {padding-left: 0;}

	.main-menu .btn-primary {padding: 0px 15px;}

	.login-body {padding: 25px;}

	#review_table td,#review_table th {white-space: nowrap !important;}
}

@media screen and (max-width: 1024px) and (min-width: 991px) {
	.footer-menu ul li {margin-right: 10px;}
	.footer-menu ul li a {font-size: 13px;}
}

@media screen and (max-width: 1024px) {
	.best_rated_main .card-box {width: calc(33.33% - 10px);}
	.restaurants_services {background-size: contain;}

	.aboutus_main .aboutus_img {max-width: 350px;}

}

@media screen and (max-width: 991px) {
	.section_title {font-size: 20px;}
	.header-main-right-area {margin-top: 6px;}
	.header-main-area {padding: 18px 15px;}
	.main-menu {margin-left: auto; margin-top: 5px;}

	.menu_profile {margin-right: 30px;}
	.menu_profile img {margin-right: 0;}
	.menu_profile .dropdown-toggle span {display: none;}

	.hero-main-content {max-width: 460px; margin: 0 auto; padding: 80px 0 50px;}

	.hc-offcanvas-nav .nav-item.chat_notify_menu {display: flex;}
	.chat_notify_menu .badge.chat_notify {background: #fff !important; color: #f5783e !important; top: 0px; right: inherit;}

	.food-search-bar .search-input input {width: 100%;border-radius: 8px !important; margin-bottom: 15px; }
	.search-input {display: block;}
	.search-input .input-group-text {border-radius: 8px !important; width: 100%;}
	.search-input .input-group-text div:first-child {width: 100%;}
	.search-input .input-group-text input {margin-bottom: 0; width: 100%;}
	.slider-search-content-area {margin-bottom: 15px;}

	.single-checkout {padding: 20px;}

	.store-another-content h3 {width: 75%;}

	.search-input button {height: 50px;}

	.how-it-works-step .work_wrap::after,
	.how_it_works_page .how_it_works_image::before,
	.how_it_works_page .how_it_works_content::before {display: none;}
	.how_it_works_page .how_it_works_image {padding-right: 0px;}
	.how_it_works_page .how_it_works_content {padding-left: 0px;}
	.how_it_works_page .row.flex-lg-row-reverse .how_it_works_image {padding-right: 0px; padding-left: 0px;}
	.how_it_works_page .row.flex-lg-row-reverse .how_it_works_content {padding-left: 0px; padding-right: 0px;}

}


@media screen and (max-width: 767px) {
	.best_rated_main .card-box {width: calc(50% - 10px);}

	.store-inline-action ul li {padding: 0; font-size: 14px;}
	.store-inline-action ul li a {padding: 15px 18px;}

	.footer-main-content {padding: 40px 0 20px;}
	.login-card_img img {width: 100%;}

	#AI_lightbox .prev {left: 50px;}
	#AI_lightbox .next {right: 50px;}

	.footer-menu nav ul li .nav_brand {margin-bottom: 15px;}
	.main-footer .social-media {margin-bottom: 15px;}

	.footer-menu ul li {display: block; margin-right: 0; text-align: left; margin-bottom: 5px;}

	.how_it_works h2 {font-size: 24px;}

	.hero-main-content p {font-size: 16px;}

	.aboutus_main .aboutus_img {max-width: 100%;}

	#AI_lightbox .ImageView {height: 380px;}

	.ck-content .image-style-side {max-width: 100% !important;}
}

@media screen and (max-width: 580px) {
	.progressbar-label {padding-right: 0px; padding-top: 35px;}
	.progressbar-label .rating {right: 0; left: 0; justify-content: space-between; -webkit-box-pack: justify; -ms-flex-pack: justify;}

	.store-info {padding: 0 30px;}
	.store-info .store-logo {flex-direction: column;}
	.store-logo img {margin-bottom: 10px; width: 70px; height: 70px;}

	.profile-widget .profile-widget-items {flex-direction: column;}

	.notify-content span {font-size: 16px;}

}

@media screen and (max-width: 480px) {
	.login-header,
	.login-body {padding: 25px 15px;}

	.best_rated_main .card-box {width: calc(100% - 10px);}

	.review-list .media {flex-direction: column;}
	.review-list .media img {width: 70px; height: 70px; margin-bottom: 15px;}

	.figure_116 {min-width: 80px; max-width: 80px; height: 80px;}

	#AI_lightbox .ImageView {height: 320px;}

	.store-another-content h3 {width: 100%;}

	.footer-copyright {padding: 10px 0px;}

	.custom_modal .modal-header h5 {font-size: 18px;}
	.custom_modal .modal-body {padding: 25px 15px;}

}
@media screen and (max-width: 360px) {
	.section_title {font-size: 18px;}
	.g-recaptcha {
		margin-left: -30px;
		transform: scale(0.8);
		-webkit-transform: scale(0.8);
		-ms-transform: scale(0.8);
	}

	.how_it_works h2 {font-size: 20px;}
	.how_it_works p {font-size: 14px;}

	#progressbar li {font-size: 12px;}

	.footer-copyright p {font-size: 11px;}

	.remember-section {display: block !important; margin-bottom: 20px;}
	.remember-section .forgotten {margin-top: 15px;}
}

/***************************
	Theme Responsive
***************************/
@media (min-width: 499px) and (max-width: 767px) {
	.store-main-info {bottom: 17rem;}
}

@media (min-width: 250px) and (max-width: 1200px){

	.store-area.store_fixed .col-lg-3 {display: block;}
	.store-area.store_fixed .col-lg-3.main_cart_section {display: none;}
}

@media (min-width: 250px) and (max-width: 500px) {
	.search-input button {margin-top: 0px !important;}
}

/*@media (min-width: 250px) and (max-width: 991px){
	.shopping-cart .count_load {top: -8px !important; right: 8px !important;}
}*/
