body {
    margin: 0;
    padding: 0;
    color: #484848;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    /*background: url(../images/qr.jpg) no-repeat;*/
    background-size: cover;
    min-height: 1   00vh;
}
.logo-container {
    width: 100%;
    text-align: center;
    padding: 1.2rem 0 1rem;
    background: #fff;

}
.menu-strip {
    /* background: #fcd900; */
    background: #5C235B;
    padding: .5rem 0;
}
.inner-menu {
  background: #5C235B;
    padding-top: 1.5rem;
}
.menu-strip .container {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.search-bx {
    width: 85%;
}
.custom-search-input {
    background: #fff;
    border-radius: 1rem;
    padding: 0 1rem;
}
.custom-search-input .form-control {
    border:none;
}
.custom-search-input .fa-search {
    margin-top: 11px;
}

/* menu css */
/* menu button */
.menuBtn {
    height: 30px;
    width: 30px;
    position: absolute;
    right: 20px;
    z-index: 101;
    top: 4px;
  }
  .menuBtn > span {
    /* background-color: #5C235B; */
    border-radius: 1px;
    height: 3px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -1px 0 0 -15px;
    -webkit-transition: height 100ms;
    transition: height 100ms;
    background: #fff;
  }
  .menuBtn > span:after,
  .menuBtn > span:before {
    content: "";
    /* background-color: #5C235B; */
    border-radius: 1px;
    height: 3px;
    width: 100%;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    -webkit-transition: all 200ms;
    transition: all 200ms;
    background: #fff;
  }
  .menuBtn > span:after {
    top: -7px;
  }
  .menuBtn > span:before {
    bottom: -7px;
  }
  .menuBtn.act > span {
    height: 0;
  }
  .menuBtn.act > span:after,
  .menuBtn.act > span:before {
    background-color: #fcd900;
    top: 1px;
  }
  .menuBtn.act > span:after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .menuBtn.act > span:before {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  /* main menu block */
  .mainMenu {
    background-color: #5C235B;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    height: 100%;
    width: 100%;
    display: table;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  .mainMenu.act {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .mainMenu.act ul li {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .mainMenu ul {
    display: table-cell;
    vertical-align: middle;
    padding: 0;
  }
  .mainMenu li {
    padding: 8px 0;
    -webkit-transition: all 400ms 510ms;
    transition: all 400ms 510ms;
    opacity: 0;
    list-style: none;
  }
  .mainMenu li:nth-child(odd) {
    -webkit-transform: translateX(30%);
            transform: translateX(30%);
  }
  .mainMenu li:nth-child(even) {
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
  }
  .mainMenu li:last-child {
    -webkit-transform: none;
            transform: none;
  }
  .mainMenu a {
    color: #fcd900;
    display: inline-block;
    font-size: 18px;
  }
  .mainMenu a.suBtn {
    color: #fff;
  }
/* menu css ends */

.content-area {
    padding: 2rem 0;
    min-height: 60vh;
    width: 35%;
    overflow-x: hidden;
}
.lang-selector {
    margin: 1.5rem auto .5rem;
    padding: .5rem;
    background: #555555;
    border-radius: 1rem;
    max-width: 130px;
    text-align: center;
}
.lang-selector li {
    display: inline-block;
    border-right: solid 2px #fde05e;
    padding: 5px 10px;
    color: #fcd900;
    font-weight: 600;
}
.lang-selector li:last-child {
    border: none
}
.lang-selector a {
    color: #fcd900;
}
.lang-btn {
  margin: 1.5rem auto .5rem;
  text-align: center;
}
.lang-btn .btn {
  border-radius: 1.2rem;
}
.btn-lang {
  background: #555555;
  border-color: #555555;
  color: #F8A981;
}
.btn-group > .btn:first-child {
  margin-right: 1px;
  border-right: solid 1px #F8A981;
}
.link-list {
    margin: 0;
    padding: 0;
}
.link-list li {
    margin: 1rem 0 0;
    list-style: none;
}
.link-bx {
    background: #5C235B;
    padding: 1rem;
    border-radius: .5rem;
    max-width: 320px;
    margin: auto;
    display: flex;
    transition: ease-in .3s;
}
.link-icon {
    max-width: 50px;
    margin-right: 13px;
}
.link-icon img {
  filter: brightness(10);
}
.link-text h2 {
    font-weight: 700;
    color: #fff;
    font-size: 20px;
    margin-bottom: 0;
}
.link-text p {
    margin-bottom: 0;
    color: #e2e2e2;
}
.link-list a {
    text-decoration: none;
}
.link-list a:hover .link-bx {
  background: #fff;
}
.link-list a:hover .link-icon img { 
  filter: none;
}
.link-list a:hover .link-text h2, .link-list a:hover .link-text p {
  color: #5C235B;
}

.social {
    text-align: center;
    margin-top: 1.5rem;
}
.social a {
    color: #fff;
    font-size: 13px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background: rgba(254,254,254,0.8);
    margin: 15px 5px;
    text-align: center;
    display: inline-block;
}

.social a:hover {
  background: #fcd902;
}

footer {
    background: #fff;
    padding: 1rem;
    text-align: center;
    position: relative;
    bottom: 0;
}
.open-hours {
    border: solid 2px #5C235B;
    border-radius: 1rem;
    max-width: 400px;
    margin: auto;
    padding: 1rem;
}
.open-hours h3 {
    color: #5C235B;
    font-weight: 700;
    font-size: 18px;
}
.open-hours p {
    margin-bottom: 0;
}

/* Menu page */
.main-section {
  display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
top: 0px;
position: -webkit-sticky;
min-height: 100vh;
width: 35%;
float: left;
position: absolute;
overflow: hidden;
box-shadow: 0 0px 20px 20px #0000004a;
height: 100%;
background: url(../images/buali-pic.jpg) no-repeat;
background-size: cover;
}
.main-section .scroll-container {
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
  overflow-y: scroll;
  background: #fff;
}
.main-section .content-area {
  width: 100%;
  padding: 0 0 70px;
}

.cartView {
  background: #5C235B;
  color: #fff;
  padding: 1rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}
.no-bg {
  background: transparent !important;
}
.right-section {
  position: fixed;
  height: 100%;
  width: calc(100% - 35%);
  background: rgba(45, 54, 137, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  right: 0;
}
.inner-sec {
  position: relative;
  padding: .5rem;
}
.inner-sec:before {
  content: '';
  background: #5C235B;
  height: 350px;
  position: absolute;
  width: 100%;
}
.white-bg {
  background: #fff;
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  padding: 2rem .5rem 0;
  margin: 2rem .75rem;
}
.main-heading {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 1rem;
}
.prod-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.prod-list li {
  list-style: none;
  margin: .5rem 1%;
  width: 48%;
}
.prod-single a {
  color: #484848;
  text-decoration: none;
}
.prod-single {
  border-radius: .5rem;
  overflow: hidden;
}
.prod-single .prod-img {
  position: relative;
  height: 160px;
  overflow: hidden;
}
.prod-single .prod-img img {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 160px;
}
.prod-single .prod-price {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #5C235B;
  border-radius: .5rem;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 8px;
}
.prod-single .prod-price span {
  font-weight: 300;
  font-size: 9px;
}
.prod-single h4 {
  font-size: 14px;
  text-align: center;
  margin-top: .5rem;
}

/* category slider */
.owl-nav button {
  position: absolute;
  top: 50%;
  background-color: #000;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.owl-nav button.owl-prev {
  left: 0;
}
.owl-nav button.owl-next {
  right: 0;
}

.owl-dots {
  text-align: center;
  padding-top: 15px;
}
.owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: #ccc;
  margin: 0 3px;
}
.owl-dots button.owl-dot.active {
  background-color: #000;
}
.owl-dots button.owl-dot:focus {
  outline: none;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.38) !important;
}
.owl-nav button span {
    font-size: 70px;    
    position: relative;
    top: -5px;
}
.owl-nav button:focus {
    outline: none;
}
.cat-img {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
  margin: auto;
}
.cat-img img {
  width: 80px;
  height: 80px;
}
.cat-name {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  margin-top: .5rem;
  text-align: center;
}
.footer-links {
  position: fixed;
  bottom: 0;
  width: 100%;
}
.footmenu {
  display: flex;
  margin: 0;
  padding: .75rem 0;
  background: #fff;
  box-shadow: 0 -3px 5px #e2e2e2;
}
.footmenu li {
  list-style: none;
  width: 18%;
  margin: 0 1%;
}
.single-menu {
  text-align: center;
}
.single-menu i {
  font-size: 20px;
  color: #737373;
}
.single-menu h5 {
  font-size: 11px;
  margin-top: 8px;
  margin-bottom: 0;
}
.footmenu a {
  text-decoration: none;
  color: #737373;
}
.product-header {
  background: #fff;
  padding: .75rem 1rem;
}
.prod-header {
  display: flex;
  align-items: center;
}
.backBtn i {
  font-size: 18px;
  color: #333;
}
.prod-header h2 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 0;
  margin-left: 10px;
}
.content-padding {
  padding: 1rem;
  text-align: center;
}
.prod-title {
  font-size: 22px;
  font-weight: 700;
}
.prodPrice {
  font-size: 18px;
  font-weight: 600;
}
.prodPrice span {
  font-weight: 400;
  font-size: 14px;
}
.sub-head {
  font-size: 16px;
  font-weight: 600;
}
.btn-buy {
  background: #5C235B;
  border-color: #5C235B;
  font-weight: 600;
  color: #fff;
  width: 100%;
  padding: .75rem 0;
  margin-top: 5rem;

}
/* cart page */
.prodCart {
  width: 100%;
  padding: .5rem;
  border: solid 1px #e2e2e2;
  background: #fff;
  margin: .5rem 0;
  display: flex;
}
.prdImg {
  width: 80px;
  height: 80px;
  overflow: hidden;
  margin-right: 10px;
  flex-shrink: 0;
}
.prdDet {
  width: 100%;
}
.prdNme {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}
.qtyPrice, .qty {
  display: flex;
}
.qtyPrice {
  width: 100%;
}
.qty, .Qtyprice {
  width: 50%;
}
.Qtyprice {
  text-align: right;
}
.qtyInput {
  margin-left: 10px;
}
.qty input {
  /* width: 100px; */
  border: solid 1px #e2e2e2;
  border-radius: 5px;
}
.total-container {
  text-align: right;
  padding: 0 .5rem;
  margin-bottom: 2rem;
}
.total-container h4 {
  font-size: 14px;
  font-weight: 600;
}

.whatsappLink {
  position: fixed;
  right: 18px;
  bottom: 13%;
  width: 112px;
  font-size: 13px;
  z-index: 9;
}
.whatsappLink i {
  font-size: 18px;
}
.whatsappLink a {
  color: #fff;
  text-decoration: none;
  background: #22cd5a;
  color: #fff;
  padding: 8px;
  border-radius: 1rem;
}
.whatsappLink a:hover {
  background: green;
}

.second-head h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}
.ord-container .form-control {
  border: none;
  border-bottom: 1px solid #e2e2e2;
  font-size: 13px;
}
.backBtn {
  background: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 10px #e2e2e2;
  border-radius: .5rem;
}
.detailsHeader {
  background: transparent;
  position: absolute;
  z-index: 1;
  width: 100%;
}
.detailsHeader .backBtn {
  box-shadow: none;
}
.removeCart  {
  margin-left: 10px;
  color: #ff7373;
}

/* cart qty btn */

.minus, .plus{
  width:26px;
  height:26px;
  background:#5C235B;
  border-radius:50%;
  padding:0 5px 0 5px;
  border:1px solid #5C235B;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
.qtyInput input{
  height:26px;
  width: 40px;
  text-align: center;
  font-size: 14px;
  /* border:1px solid #ddd; */
  border-radius:4px;
  display: inline-block;
  vertical-align: middle; 
  border: none;
}
#locationModal .form-check {
  margin-bottom: 1rem;
}
#locationModal .modal-footer {
  border-top: none;
}
.social .fb-logo {
    background: #3b5998;
}
.social .insta-logo {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}
.social .whatsapp-logo {
    background: #25d366;
}

@media (max-width: 768px){
  .main-section {
    width: 100%;
  }
  .right-section {
    display: none;
  }
}

@media (min-width: 768px){ 
  .footer-links {
    width: 35%;
  }

  .whatsappLink {
    right: 66%;
  }

}