/*
=============================================================================
>>>> color variable <<<<
==============================================================================
*/
:root {
  --primary-color: #f91100;
  --secondary-color: #000000;
  --text-color: #22312e;
}
/*
=============================================================================
DEFAULT STYLE START
==============================================================================
*/

body {
  font-family: "tatsam", sans-serif;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  color: var(--text-color);
  background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
strong {
  font-family: "tatsam", sans-serif;
}
*::-webkit-scrollbar {
  width: 5px;
}
*::-webkit-scrollbar-track {
  background: #f1f1f1;
}
*::-webkit-scrollbar-thumb {
  background: #888;
}
*::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.section-padding {
  padding: 60px 0;
}
.inner-container-padding {
  padding: 0 75px;
  position: relative;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li a,
ul li a:hover,
ul li a:focus,
a,
a:hover,
a:focus {
  text-decoration: none;
  color: var(--primary-color);
}
img {
  max-width: 100%;
  height: auto;
}
header.header-section {
  background-color: var(--secondary-color);
}
.logo-section {
  overflow: hidden;
}
.logo-section .logo-image {
  width: 25%;
  float: left;
  margin-right: 5%;
}
.logo-section .logo-name {
  width: 70%;
  color: #fff;
  float: left;
}
.logo-section .logo-name h1 {
  font-size: 25px;
  margin-top: 15px;
}
.logo-section .logo-name h4 {
  font-size: 16px;
}
.main-menu {
  text-align: right;
}
.main-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-menu ul li {
  display: inline-block;
  margin: 32px 15px;
}
.main-menu ul li a {
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
}
.main-menu ul li.has-submenu {
  position: relative;
}
.main-menu ul li.has-submenu ul {
  position: absolute;
  left: 0;
  top: 40px;
  background-color: #fff;
  z-index: 0;
  width: 200px;
  text-align: left;
  border: 1px solid #eee;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.main-menu ul li.has-submenu:hover ul {
  opacity: 1;
  visibility: visible;
  z-index: 9999999999;
}
.main-menu ul li.has-submenu ul li {
  display: block;
  margin: 10px 0;
}
.main-menu ul li.has-submenu ul li a {
  color: #222;
}
.order-button {
  text-align: right;
}
.order-button a {
  background-color: var(--primary-color);
  display: inline-block;
  color: #fff;
  padding: 10px 20px;
  margin-top: 22px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 25px;
  font-size: 14px;
}
section.slider-section-carousel .slider-item {
  width: 100%;
  height: 90vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
section.slider-section-carousel .slider-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #222;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.4;
}
section.slider-section-carousel .slider-item .slider-text {
  text-align: center;
  padding-top: 120px;
  color: #fff;
}
section.slider-section-carousel .slider-item .slider-text h2 {
  font-size: 45px;
}
.slider-item .slider-text h2, .slider-item .slider-text h3, .slider-item .slider-text p {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s, transform 0.5s;
}
.owl-item.active .slider-item .slider-text h2, .owl-item.active .slider-item .slider-text h3, .owl-item.active .slider-item .slider-text p  {
  opacity: 1;
  transform: translateY(0);
}
section.slider-section-carousel .owl-nav .owl-prev {
  left: 50px;
}
section.slider-section-carousel .owl-nav button {
  background: var(--theme-color);
  display: inline-block;
  text-align: center;
  padding: 3px 8px;
  color: #fff;
  top: 45%;
  position: absolute;
}
section.slider-section-carousel .owl-nav .owl-next {
  right: 50px;
}
.owl-nav button span {
  font-size: 25px;
  display: block;
  color: #fff;
}
section.order-step-section {
  background-color: #fb9d3d;
  padding: 45px 0;
  position: relative;
}
section.order-step-section::before,
section.offers-section::before {
  position: absolute;
  content: "";
  background-image: url(../images/order-top.png);
  background-repeat: no-repeat;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background-position: center center;
  background-size: cover;
  z-index: 999;
}
section.order-step-section::after,
section.offers-section::after {
  position: absolute;
  content: "";
  background-image: url(../images/order-bottom.png);
  background-repeat: no-repeat;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background-position: center center;
  background-size: cover;
  z-index: 999;
}
section.order-step-section .order-step-item {
  text-align: center;
}
section.order-step-section .order-step-item img {
  width: 100px;
  margin-bottom: 10px;
}
section.order-step-section .order-step-item h5 {
  text-transform: uppercase;
  margin-bottom: 0;
}
section.order-process-info {
  padding-top: 150px;
  padding-bottom: 50px;
  overflow: hidden;
}
.section-title {
  margin-bottom: 20px;
}
.section-title h2 {
  text-transform: uppercase;
  font-size: 1.7rem;
  font-weight: 700;
}
section.full-width-button {
  overflow: hidden;
}
section.full-width-button .button-item {
  width: 33.333%;
  display: block;
  float: left;
  background-color: var(--secondary-color);
  padding: 50px 0;
  text-align: center;
  color: #fff;
}
section.full-width-button .button-item.primary {
  background-color: var(--primary-color);
}
section.full-width-button .button-item h3 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 0;
}
section.full-width-button .button-item h5 {
  text-transform: uppercase;
  font-size: 17px;
  margin-bottom: 20px;
}
section.about-us {
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 150px;
}
section.offers-section {
  background-color: #fb9d3d;
  position: relative;
  padding: 45px 0;
}
section.offers-section h4 {
  margin-bottom: 20px;
}
section.offers-section .offer-item {
  background-color: #fff;
  padding: 40px 0;
  text-align: center;
  border-radius: 20px;
}
section.offers-section .offer-item p {
  margin-bottom: 0;
  font-size: 14px;
  color: #999;
}
section.photo-gallery {
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 60px;
}
section.photo-gallery .gallery-item {
  width: 25%;
  float: left;
  padding: 5px;
}
section.photo-gallery .gallery-item img {
  height: 200px;
  width: 100%;
}
section.testmonial-section {
  background-color: #f2f2f2;
  overflow: hidden;
}
.testmonial-item img {
  width: 100px !important;
  display: inline-block !important;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #ddd;
  margin-bottom: 15px;
}
.testmonial-item {
  text-align: center;
}
.blog-item {
  box-shadow: 0 8px 30px #e9e9e9;
  overflow: hidden;
  border-radius: 0px 0px 10px 10px;
  margin-bottom: 30px;
}
.blog-item img {
  width: 100%;
  height: 240px;
}
.blog-item .blog-content {
  padding: 15px;
}
.blog-item .blog-content h4 {
  font-size: 22px;
}
.blog-item .blog-content h4 a {
  color: var(--text-color);
}
.blog-item .blog-content h6 {
  font-size: 14px;
  color: #888;
}
.blog-item .blog-content button.read-more {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  border: 0px;
}
section.footer-top {
  background-color: #646464;
  overflow: hidden;
  color: #fff;
}
.footer-top .footer-widget h4 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-top .footer-widget ul li a {
  color: #fff;
  display: block;
  margin-bottom: 10px;
}
.footer-top .footer-widget ul li a i {
  margin-right: 5px;
}
.footer-top .footer-widget a.feedback-btn {
  background-color: var(--secondary-color);
  display: inline-block;
  padding: 15px;
  color: #fff;
}
footer.footer-bottom {
  overflow: hidden;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 15px;
}
footer.footer-bottom .footer-middle {
  margin-top: 20px;
}
footer.footer-bottom .footer-middle ul li {
  display: inline-block;
}
footer.footer-bottom .footer-middle ul li a {
  color: #fff;
  padding-right: 10px;
  margin-right: 5px;
  border-right: 1px solid #fff;
}
footer.footer-bottom .footer-middle p {
  margin-bottom: 10px;
}
footer.footer-bottom .footer-middle ul li:last-child a {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}
footer.footer-bottom .footer-right {
  text-align: right;
  margin-top: 25px;
}
.back_to_top i {
  position: fixed;
  bottom: 30px;
  right: 15px;
  background-color: var(--primary-color);
  display: block;
  padding: 8px 12px;
  color: #fff;
  z-index: 9999999;
  cursor: pointer;
}

/** Menu Page CSS **/
.menu-section {
  overflow: hidden;
  padding: 40px 0;
  background-color: #f5f5f5;
}
.menu-section .menu-category {
  overflow-y: scroll;
  background-color: #fff;
  border: 1px solid #eee;
  height: 80vh;

}
.menu-section .menu-category.sticky {
  top: 5px;
  position: fixed;
  width: 262px;
}
.menu-section .menu-category li a {
  border-bottom: 1px solid #eee;
  display: block;
  padding: 12px;
  color: var(--text-color);
  transition: all 0.5s;
}
.menu-section .menu-category li:last-child a {
  border-bottom: 0;
}
.menu-section .menu-category li a span {
  color: #999;
  font-size: 12px;
}
.menu-section .menu-category li a i {
  float: right;
  font-weight: 700;
  margin-top: 5px;
}
.menu-section .menu-category li a:hover {
  background-color: #ddd;
}
.menu-section .food-menu-title {
  background-color: var(--primary-color);
  text-align: center;
  color: #fff;
  padding: 8px;
  border-radius: 5px 5px 0 0;
}
.menu-section .food-menu-title h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: 24px;
}
.menu-section .menu-item-card {
  background-color: #fff;
  overflow: hidden;
  border: 1px solid #eee;
  padding: 20px;
}
.menu-item-card .menu-item-list {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}
.menu-item-list .menu-category-name {
  text-align: center;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
  padding-top: 10px;
}
.menu-item-list .menu-item {
  padding: 15px;
}
.menu-item-list .menu-item.odd {
  background-color: #f9f9f9;
}
.menu-item p.item-name {
  font-weight: 700;
}
.menu-item p.item-price {
  font-size: 14px;
  font-weight: 700;
}
.menu-item .form-control.qty {
  width: 50px;
  margin-right: 5px;
  padding: 5px;
  text-align: center;
  border-radius: 3px;
}
.menu-item button.add-item-btn {
  background-color: var(--primary-color);
  border: 0;
  padding: 0px 12px;
  color: #fff;
  border-radius: 3px;
}
.menu-item p.item-desc {
  font-size: 14px;
}
.menu-item p.add-note {
  font-size: 12px;
  color: var(--primary-color);
  cursor: pointer;
  margin-bottom: 0;
}
.order-summary-card {
  background-color: #fff;
  overflow-y: scroll;
  border: 1px solid #eee;
  height: 80vh;
}
.order-summary-card.sticky {
  top: 5px;
  position: fixed;
  width: 262px;
}
.order-summary-card .order-card-title {
  background-color: #fafafa;
  padding: 10px;
  text-align: center;
}
.order-summary-card .order-card-title h4 {
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 0;
}
.order-summary-card .order-card-content {
  padding: 10px;
}
.order-summary-card .order-card-title h4 span {margin-left: 10px;}
.order-card-content .order-type {
  text-align: center;
  margin: 12px 0;
}
.order-card-content .order-type label {
  font-weight: 700;
  display: inline-block;
  margin: 0 10px;
  font-size: 14px;
}
.order-items table th, .order-items table td {
    font-size: 14px;
}
.order-items table td i {
    background-color: #ddd;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 10px;
    text-align: center;
    line-height: 22px;
    border-radius: 10px;
    color: #fff;
}
.order-items table td i:hover {
  background-color: var(--primary-color);
}
.order-items table td i {
    margin-right: 5px;
}
.order-calculation p {
  margin-bottom: 8px;
  font-size: 15px;
}
.order-calculation p span {
  float: right;
}
a.checkout-btn {
  display: block;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 8px;
  text-transform: uppercase;
  margin-top: 15px;
}
.theme-btn {
  display: inline-block;
  background-color: var(--primary-color);
  border: none;
  color: #fff;
  padding: 8px 20px;
}
#menuOptionAccordion .accordion-body p {
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
#menuOptionAccordion .accordion-body p span{
  float: right;
}
#menuOptionAccordion .accordion-body p span i {
  background: var(--primary-color);
  width: 30px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  color: #fff;
  cursor: pointer;
  margin-left: 10px;
}
.order-items table td span.option-item {
  display: block;
  font-size: 13px;
  color: var(--primary-color);
}
#menuOptionAccordion .accordion-body p span i.fa-check {
  background-color: green;
}
.checkout-page table tbody td span {
  display: block;
  color: var(--primary-color);
  font-size: 14px;
  margin-left: 10px;
}
.my-profile-section {
  background-color: #f5f5f5;
  overflow: hidden;
}
.profile-sidebar .user-avatar {
  text-align: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
.profile-sidebar .user-avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.profile-sidebar ul li a {
  display: inline-block;
  color: var(--text-color);
  margin-bottom: 10px;
}
.profile-sidebar ul li a:hover {
  color: var(--primary-color);
}
.card-header h4 {
  font-size: 22px;
  margin-bottom: 0;
}