/*----- Default CSS -----*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;900&display=swap');

body {
  font-family: 'Raleway', sans-serif;
  color: #BB9051;
  background-color: rgb(255 247 237);
  font-size: 16px;
  background-image: url('../images/backgrounds/01.png'), url('../images/backgrounds/02.png');
  background-position: top left, bottom left;
  background-size: cover, contain;
  background-repeat: repeat, no-repeat;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #282725;
  line-height: 1.4;
}

p {
  font-weight: 500;
}

.row {
  margin: 0;
}

.border-rl {
  border-right: 2px solid #e4e4e4;
  border-left: 2px solid #e4e4e4;
}

.landing-page-title {
  font-size: 48px;
  font-family: 'Overlock SC', sans-serif !important;
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
  color: #000;
}

p {
  line-height: 1.7;
}

a {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  text-decoration: none;
}

img {
  max-width: 100%;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar {
  width: 8px;
  background-color: #F5F5F5;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #2c2c22;
}

.main-nav nav .right .navbar-nav .nav-item .dropdown-menu::-webkit-scrollbar {
  width: 3px;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-50 {
  padding-top: 50px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

button:focus {
  outline: 0;
}

.btn.focus,
.btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1230px;
}

.bk-wihte {
  background: #fff;
}

.s-pad {
  padding: 0 8px;
}

.l-pad {
  padding-left: 0;
}

.nopadding {
  padding: 0 !important;
}

.nomargin {
  margin: 0 !important;
}

.preloader {
  position: fixed;
  left: 0;
  width: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  z-index: 999999999999999;
  -webkit-transition: .9s;
  transition: .9s;
}

.preloader .loader {
  position: absolute;
  display: inline-block;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 30%;
  -webkit-transform: translateY(-45%);
  transform: translateY(-45%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  max-width: 20%;
}

.preloader .loader .loader-outter {
  position: absolute;
  border: 4px solid #ffffff;
  border-left-color: transparent;
  border-bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.btn i {
  padding: 0 5px;
}

.preloader .loader .loader-inner {
  position: absolute;
  border: 4px solid #ffffff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  left: calc(40% - 21px);
  top: calc(40% - 21px);
  border-right: 0;
  border-top-color: transparent;
  -webkit-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.preloader .loader .indicator {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
}

.preloader .loader .indicator svg polyline {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.preloader .loader .indicator svg polyline#back {
  stroke: #ffffff;
}

.preloader .loader .indicator svg polyline#front {
  stroke: #2574A9;
  stroke-dasharray: 12, 36;
  stroke-dashoffset: 48;
  -webkit-animation: dash 1s linear infinite;
  animation: dash 1s linear infinite;
}

.preloader::before,
.preloader::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60%;
  z-index: -1;
  background: #000000;
  -webkit-transition: .9s;
  transition: .9s;
}

.preloader::after {
  left: auto;
  right: 0;
}

.preloader.preloader-deactivate {
  visibility: hidden;
}

.preloader.preloader-deactivate::after,
.preloader.preloader-deactivate::before {
  width: 0;
}

.preloader.preloader-deactivate .loader {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@-webkit-keyframes dash {
  62.5% {
    opacity: 0;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  62.5% {
    opacity: 0;
  }

  to {
    stroke-dashoffset: 0;
  }
}

/*----- Go Top CSS -----*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: 15px;
  right: 0;
  color: #ffffff;
  background-color: #2c2c22;
  z-index: 4;
  width: 45px;
  text-align: center;
  height: 45px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .9s;
  transition: .9s;
  border-radius: 50%;
  border: 1px solid #2c2c22;
  -webkit-box-shadow: 0 2px 6px 0 #00000029;
  box-shadow: 0 2px 6px 0 #00000029;
}

.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  font-size: 25px;
  line-height: 45px;
}

.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.go-top.active {
  right: 1%;
  -webkit-transform: translateY(-1%);
  transform: translateY(-1%);
  opacity: 1;
  visibility: visible;
}

.go-top:hover,
.go-top:focus {
  color: #ffffff;
  border: 1px solid #BB9051;
  background-color: #BB9051;
}

.go-top:hover i:first-child,
.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:hover i:last-child,
.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.clear {
  clear: both;
}

/*----- End Go Top CSS -----*/
/*----- Preloader CSS -----*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 100px auto;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {

  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes sk-bounce {

  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.common-btn {
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  background-color: #BB9051;
  color: #fff;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  border-radius: 5px;
  opacity: 1;
  font-weight: 600;
  padding: 12px 25px;
}

.common-btn span {
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #BB9051;
  -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 5px;
  opacity: 1;
}

.common-btn:hover {
  color: #fff !important;
  border: 1px solid #fff !important;
}

.common-btn:hover span {
  width: 225%;
  height: 562.5px;
}

.common-btn.two {
  background-color: #fb2448;
}

.common-btn.three {
  background-color: #BB9051;
}

.common-btn.three span {
  background-color: #BB9051;
}


.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

#head-section .section-title h2 {
  color: #fff;
  margin-top: 35px;
}

.section-title h2 {
  font-size: 34px;
  color: #282725;
  text-transform: uppercase;
  display: inline-block;
}

.section-title.text-center {
  display: block;
}

.main-btn {
  background-color: #BB9051;
  color: #fff;
  border: 1px solid #BB9051;
  transition: all 0.5s ease-in-out;
  border-radius: 15px;
  padding: 9px 25px;
  font-weight: 600;
}

.main-btn i {
  vertical-align: middle;
}

.main-btn:hover {
  background-color: #2c2c22;
  color: #fff;
  border: 1px solid #2c2c22;
}

/*----- Home Demo One CSS -----*/
/*-- Header --*/
.header-area {
  background-color: #BB9051;
  padding-top: 20px;
  padding-bottom: 20px;
}

.header-area .left ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 15px;
}

.header-area .left ul li:last-child {
  margin-right: 0;
}

.header-area .left ul li i {
  display: inline-block;
  font-size: 20px;
  position: relative;
  top: 4px;
  color: #BB9051;
  margin-right: 2px;
}

.header-area .left ul li a {
  display: inline-block;
  color: #fff;
  font-size: 14px;
}

.header-area .left ul li a:hover {
  color: #BB9051;
}

.header-area .right {
  text-align: right;
}

.header-area .right ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}

.header-area .right ul li:last-child {
  margin-right: 0;
}

.header-area .right ul li a {
  display: block;
  font-size: 18px;
  color: #fff;
}

.header-area .right ul li a:hover {
  color: #BB9051;
}

/*-- Navbar --*/
.main-nav {
  background-image: url("../images/backgrounds/header.png");
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  padding: 0;
  -webkit-box-shadow: 0 2px 6px 0 #00000029;
  box-shadow: 0 2px 6px 0 #00000029;
  background-repeat: no-repeat;
  background-size: cover;
}

.navbar-area {
  background-color: #fcfcfc;
  -webkit-box-shadow: 0 3px 10px 0 rgb(0 0 0 / 16%);
  box-shadow: 0 3px 10px 0 rgb(0 0 0 / 16%);
  height: 90px;
}

.navbar-area .main-nav:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  background: #BB9051;
  width: 50%;
  height: 3px;
  z-index: 9999;
}

.navbar-area .main-nav:before {
  position: absolute;
  content: '';
  bottom: 0;
  right: 0;
  background: #fff;
  width: 50%;
  height: 3px;
  z-index: 9999;
}

.main-nav.menu-shrink {
  padding-top: 0;
  padding-bottom: 8px;
}

.mean-menu {
  display: flex !important;
  flex-grow: 1;
  align-items: center;
  flex-basis: auto;
}

.main-nav nav {
  padding: 0;
}

.main-nav .logo {
  position: relative;
  width: 100%;
  height: 75px;
  margin: 5px;
}

.main-nav .logo img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.navbar-brand {
  width: 100%;
  padding: 0;
}

.main-nav nav .navbar-nav {
  margin: 0 auto;
  height: auto;
  overflow: initial;
  flex-direction: row;
  justify-content: center;
}

.main-nav nav .navbar-nav .nav-item:hover a {
  color: #BB9051;
}

.main-nav nav .navbar-nav .nav-item {
  display: flex;
}

.main-nav nav .navbar-nav .nav-item a {
  font-weight: 600;
  color: #fff;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 15px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  display: flex;
  align-items: center;
}

.main-nav nav .navbar-nav .nav-item a img {
  width: 29px;
  margin: 0 5px;
}

.main-nav nav .navbar-nav .nav-item a.img-num img {
  width: 130px;
  margin: 0;
}

.main-nav nav .navbar-nav .nav-item a:hover,
.main-nav nav .navbar-nav .nav-item a:focus,
.main-nav nav .navbar-nav .nav-item a.active {
  color: #BB9051;
}

.main-nav nav .navbar-nav .nav-item a i {
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  top: 3px;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu {
  padding: 0;
  background: #fff;
  border: 0;
  border-radius: 0;
  width: 190px;
}

.main-nav .drop-right nav .navbar-nav .nav-item .dropdown-menu {
  right: inherit;
  left: 0;
  background: url('../images/backgrounds/header.png');
  z-index: 99999;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  top: 0 !important;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover a {
  color: #BB9051;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child a {
  border-bottom: 0;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
  font-weight: 600;
  padding: 9px 15px;
  color: #fff;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #f1f1f1;
  width: 100%;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:before {
  position: absolute;
  content: '';
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #bb9051;
  -webkit-transition: .3s;
  transition: .3s;
  z-index: -1;
  border-radius: 0px 50px 50px 0px;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #BB9051;
  padding-left: 18px;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover:before,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus:before,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active:before {
  width: 3px;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  top: 15px;
  left: unset;
  right: -100%;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #BB9051;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #BB9051;
}

.main-nav .top {
  background: #000;
  padding: 5px;
}

.main-nav .top ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav .top ul li {
  display: inline-block;
  padding: 0 4px;
}

.main-nav .top ul li a {
  padding: 0;
  color: #BB9051;
  font-size: 20px;
}

.main-nav .top .right ul li {}

.main-nav .top p {
  margin: 0;
  text-align: center;
  color: #BB9051;
  font-size: 14px;
}

/*-- HEADER --*/
/*-- SEARCH --*/

.side-nav .language {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}

.side-nav .language .nice-select {
  height: 30px;
  line-height: 30px;
  background-color: transparent;
  border: 0;
  font-size: 16px;
  color: #BB9051;
  font-weight: 600;
}

.side-nav .language .nice-select:after {
  border-bottom: 2px solid #BB9051;
  border-right: 2px solid #BB9051;
}

.side-nav .language .nice-select ul {
  border: 0;
  border-radius: 0;
  display: block;
  width: 100%;
}

.side-nav .language .nice-select ul li {
  display: block;
  width: 100%;
  color: #BB9051;
  font-size: 15px;
}

.side-nav .consultant-btn {
  display: inline-block;
  color: #fff;
  background-color: #BB9051;
  border-radius: 5px;
  padding: 12px 25px;
  font-weight: 600;
  vertical-align: middle;
}

.side-nav .consultant-btn:hover {
  background-color: #BB9051;
}

.user-box {
  padding: 15px;
}

.user-box .user-img {
  position: relative;
  width: 70px;
  height: 70px;
}

.user-box .user-img img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border-radius: 50%;
}

.user-box .flex-grow-1 {
  align-self: center;
}

.user-box .flex-grow-1 h5 {
  font-size: 16px;
  font-weight: 500;
}

.user-box .flex-grow-1 h5 i {
  float: right;
  color: #676767;
}

/*-- HEADER --*/
/*-- Copyright --*/


.sidebarCollapse {
  width: auto;
  height: auto;
  background: none;
  cursor: pointer;
  border: 0;
  padding: 0;
}

.sidebarCollapse.navbar-btn {

  width: 40px;
  height: 40px;
}

.sidebarCollapse span {
  width: 80%;
  height: 3px;
  margin: 0 auto;
  display: block;
  background: #5c5c5c;
  transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375);
  transition-delay: 0.2s;
}

.sidebarCollapse span:first-of-type {
  transform: rotate(45deg) translate(2px, 2px);
}

.sidebarCollapse span:nth-of-type(2) {
  opacity: 0;
}

.sidebarCollapse span:last-of-type {
  transform: rotate(-45deg) translate(2px, -2px);
}

#sidebar {
  min-width: 360px;
  max-width: 250px;
  background: #fff;
  color: #5a5a5a;
  transition: all 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
  transform-origin: bottom left;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
  bottom: 0;
  overflow-y: scroll;
}

#sidebar .navbar-myHeader {

  position: absolute;

  top: 0px;

  z-index: 999999999999999999999999;

  right: initial;

  left: 0;
}

#sidebar .logo-img {
  position: relative;
  width: 90%;
  height: 60px;
}

#sidebar .logo-img img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

#sidebar.active {
  margin-left: -250px;
  transform: rotateY(100deg);
}

#sidebar .sidebar-myHeader {
  padding: 20px;
  background: #6d7fcc;
}

#sidebar ul.components {
  padding: 15px 0;
  border-bottom: 0;
}

#sidebar ul p {
  color: #000;
  padding: 10px;
  text-align: center;
}

#sidebar ul li a {
  padding: 10px 20px;
  font-size: 1.1em;
  display: block;
  color: #5a5a5a;
  border-bottom: 2px solid #e4e4e4;
}


#sidebar ul li.active>a,
a[aria-expanded="true"] {
  color: #173134 !important;
}



.sidebarCollapse.active span {
  transform: none;
  opacity: 1;
  margin: 10px auto;
  background: #fff;
}

.list-unstyled i {
  padding-right: 30px;
}


/*----- End Home Demo Three CSS -----*/
/*-- Footer --*/
footer {
  background-image: url('../images/backgrounds/footer.png');
}

.footer-item {
  margin-bottom: 30px;
}

.footer-item h3 {
  font-size: 24px;
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
  color: #BB9051;
}

.footer-item h3:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #BB9051;
}

.footer-item .footer-logo .logo {
  display: block;
  margin-bottom: 20px;
  height: 100%;
}

.footer-item p,
.footer-item a {
  color: #fff;
}

.footer-item i {
  color: #BB9051;
  font-size: 19px;
  vertical-align: middle;
}

.footer-item .footer-logo ul li {
  list-style-type: none;
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
}

.footer-item .footer-logo ul li:last-child {
  margin-bottom: 0;
}

.footer-item .footer-logo ul li i {
  position: absolute;
  top: 0;
  left: 0;
  color: #e2e5e9;
  font-size: 25px;
}

.footer-item .footer-logo ul li span {
  display: inline-block;
  font-weight: 600;
  margin-right: 3px;
  color: #fff;
}

.footer-item .footer-logo ul li a {
  display: inline-block;
  color: #fff;
}

.footer-item .footer-logo ul li a:hover {
  color: #c4c9d2;
}

.footer-item .footer-links ul li {
  list-style-type: none;
  display: block;
  margin-bottom: 10px;
}

.footer-item .footer-links ul li:last-child {
  margin-bottom: 0;
}

.footer-item .footer-links ul li a {
  color: #fff;
  display: block;
}

.footer-item .footer-links ul li a:hover {
  color: #c4c9d2;
  padding-left: 5px;
}

.footer-item .footer-newsletter p {
  color: #fff;
  margin-bottom: 30px;
}

.footer-item .footer-newsletter .newsletter-form .form-control {
  height: 50px;
  border: 0;
  border-radius: 0;
  padding-left: 15px;
  font-size: 15px;
}

.footer-item .footer-newsletter .newsletter-form .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
}

.footer-item .footer-newsletter .newsletter-form .common-btn {
  padding-top: 0;
  padding-bottom: 0;
  display: block;
  width: 100%;
  text-align: center;
  height: 50px;
  opacity: 1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  border: 0;
  border-radius: 0;
  margin-top: 10px;
  background: #c4c9d2;
  color: #BB9051;
}

.footer-item .footer-newsletter .newsletter-form .validation-danger {
  color: #fff;
  margin-top: 10px;
}

.footer-logo {
  position: relative;
  width: 100%;
  height: 100px;
  text-align: center;
  margin-bottom: 10px;
}

.footer-logo img {
  max-width: 100%;
  max-height: 100%;
}

.footer-social ul {
  margin: 15px 0;
}

.footer-social ul li {
  display: inline-block;
  padding: 5px;
  transition: all 0.5s ease-in-out;
}

.footer-social ul li img {
  max-width: 38px;
}

.footer-social ul li:hover img {
  transform: translate(0px, -7px);
}

/*-- Copyright --*/
.copyright-area {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #000;
  text-align: center;
}

.copyright-area .copyright-item p {
  margin-bottom: 0;
  font-size: 15px;
  color: #BB9051;
}

.copyright-area .copyright-item p a {
  display: inline-block;
  color: #c4c9d2;
  font-weight: 700;
}

.copyright-area .copyright-item p a:hover {
  color: #fff;
}

/*----- End Home Demo One CSS -----*/

#slider {
  position: relative;
  height: 500px;
}

#slider .background-grade {
  position: absolute;
  background: #fff;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #ffffff, #ffffff00);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to top, #ffffff, #ffffff00);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  width: 100%;
  height: 190px;
  border-radius: 0%;
  bottom: 0;
  z-index: 1;
}

.carousel-control-next,
.carousel-control-prev {
  z-index: 999;
}

.carousel-caption {
  width: 50%;
  right: 70px;
  left: inherit;
  top: 8%;
  z-index: 999;
}

.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end,
.carousel-fade .carousel-item.active {
  opacity: 1;
  z-index: 999
}

.carousel-caption h5 {
  font-size: 52px;
  color: #BB9051;
}

.carousel-caption p {
  font-size: 25px;
  color: #2c2c22;
}

.carousel-caption .btn {
  z-index: 999999999999999999;
  position: relative;
}

.carousel-control-prev-icon {
  background-image: url(../images/icons/left-arrow.png)
}

.carousel-control-next-icon {
  background-image: url(../images/icons/right-arrow.png)
}

.mob-show {
  display: none
}

.custom-shape-divider-bottom-1669576534 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 9;
  line-height: 0;
}

.custom-shape-divider-bottom-1669576534 svg {
  position: relative;
  display: block;
  width: calc(300% + 1.3px);
  height: 271px;
  transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1669576534 .shape-fill {
  fill: #2c2c22;
}

/***** Create *****/
#offers {
  padding: 75px 0;
  background-image: url(../images/slider/bk2.png);
  background-position: inherit;
  background-size: 200px 200px;
}

#offers .card {
  background: none;
  border: 0;
  text-align: center;
  display: block;
  margin: 15px 0;
}

#offers .card span {
  background: #2c2c22;
  padding: 5px 25px;
  border-radius: 5px 15px;
}

#offers .product-card:hover .card-img img.creation {
  transform: none !important;
}


/***** Create *****/
/***** product card *****/
.product-card {
  background: #fff7ed;
  border: 0;
  cursor: pointer;
  margin: 10px 0;
  box-shadow: 0px 0px 29px -20px #2c2c22;
  overflow: hidden;
  border-radius: 5px;
}

.product-card .card-img {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
}

.product-card .card-img img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.product-card .card-img .creation {
  position: absolute;
  top: 0;
  z-index: 9;
  left: 10px;
  margin: 0;
}

.product-card .card-img .creation i {
  color: #bcad93;
  vertical-align: middle;
}

.product-card .card-body {
  padding: 10px;
}

.product-card .card-body .product-name {
  color: #2c2c22;
}

.product-card .card-body .product-cat {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 10px;
}

.product-card .card-body .disc p {
  font-size: 14px;
  height: 72px;
  overflow: hidden;
}

.product-card:hover .card-body .disc p {
  color: initial
}

.product-card .card-body .product-cat li {
  display: inline-block;
  font-size: 13px;
}

.product-card .card-body .product-cat li span {
  color: #2c2c22;
}

.product-card .card-body .intensity {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 6px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-card .card-body .intensity span {
  color: #2c2c22;
}

.product-card .card-body .intensity .intensity-range {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 10px;
}

.product-card .card-body .intensity .intensity-range .intensity-dots {
  overflow: hidden;
  width: 10px;
  height: 10px;
  margin-right: 4px;
  border-radius: 100px;
  background-color: #bcad93;
}

.product-card .card-body .intensity .intensity-range .intensity-dots .dark {
  background-color: #56564e;
  opacity: 1;
}

.product-card .card-body .intensity .intensity-range .intensity-dots .dark.hidden {
  display: none;
}

.product-card .card-body .price p {
  color: #2c2c22 !important;
  font-weight: 900;
}

.product-card .card-body .main-btn {
  width: 100%;
}

.product-card:hover {
  box-shadow: none;
  transition: all .5s ease-in-out;
}

.product-card:hover .card-img img {
  transition: all 0.5s ease-in-out;
  transform: scale(1.1) rotate(-6deg);
}

.product-card .d-flex {
  background: #fceee5;
  padding: 10px;
}

.product-card .d-flex .flex-shrink-0 {
  width: 50px;
  height: 50px;
}

.product-card .d-flex .flex-shrink-0 img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 50px;
}

.product-card .d-flex .flex-grow-1 {}

.product-card .d-flex .flex-grow-1 h5 {
  font-size: 16px;
  margin: 0;
}

/***** product card *****/

/***** Categories *****/
#best-selling {
  padding: 50px 0;
  background-image: url(../images/slider/bk2.png);
  background-position: inherit;
  background-size: 200px 200px;
}

#best-selling.account {
  padding: 15px 0;
  background-image: none;
}

#categories {
  padding: 40px 0;
}

#categories .section-title {
  padding: 0px 15px;
}

#categories.page {
  padding: 50px 0 0;
}

#categories .card {
  background: none;
  padding: 0;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  margin: 10px 0;
}

#categories .card .card-img {
  width: 100%;
  height: 205px;
  position: relative;
  overflow: hidden;
}

#categories .card .card-img img {
  position: absolute;
  width: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  max-height: 100%;
}

#categories .card:hover .card-img img {
  transition: all 0.5s ease-in-out;
  transform: scale(1.1);
}

#categories .card .card-body {
  background-color: #fff;
  position: relative;
}

#categories .card .card-body h5 {
  color: #282725;
}

#categories .card .card-body p {
  color: #282725B2;
}

#categories .card .card-body .price p {
  color: #282725;
  font-weight: 800;
  font-size: 20px;
}

#categories .card .card-body .add-card {
  position: absolute;
  bottom: 15px;
  right: 15px;
  transition: all 1s ease-in-out;
}

#categories .card .card-body .add-card img {
  width: 45px;
  transition: all 1s ease-in-out;
}

#categories .card .card-body .add-card:hover img {
  transform: rotate(180deg);
}

/***** Categories *****/


/***** Contact Us *****/
#contact,
#about {
  padding: 50px 0;
}

#contact label {
  color: #2c2c22;
}

#contact .map-section {
  margin-bottom: 0;
  overflow: hidden;
}

#contact .map-section iframe {
  display: block;
}

iframe {
  border: 0;
  width: 100%;
}

#contact h2 {
  color: #bb9051;
  margin: 0 0 9px;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.form-group {
  margin-bottom: 10px;
}

#contact .form-control,
#sign .form-control {
  background: #fff;
  border: 1px solid #bb9051;
  transition: all 0.4s ease-out 0s;
  color: #2c2c22;
  border-radius: 0;
  width: 100%;
  font-size: 13px;
  box-shadow: none;
  -webkit-box-shadow: none;
  border-radius: 10px;
  line-height: 26px;
}

#contact textarea {
  min-height: 150px;
}

#contact .btn {
  padding: 10px 60px;
  margin: 20px 0;
}

#contact.hiring p {
  color: #242321;
}

#contact.hiring h5 {
  color: #bb9051;
}

#contact.hiring ul {
  padding: 0 15px;
}

#contact.hiring ul li {}

#contact.hiring ul li {
  color: #272624;
  padding: 5px 0;
}

#contact.hiring .download {
  margin: 25px 0;
  text-align: center;
  color: #282725;
}

#contact.hiring .download a {
  padding: 0 40px;
}

#contact .login-foot {}

#contact .login-foot h5 {
  margin: 20px 0;
}

#contact .login-foot ul li img {
  max-width: 60px;
}

#contact .login-foot p {
  margin: 0;
}

#contact .login-foot p a {
  font-weight: 600;
  font-size: 20px;
}

/***** Contact Us *****/
/***** About Us *****/
#about,
#sign {
  padding: 50px 0;
}

.bold {
  font-weight: 600;
}

.font-20 {
  font-size: 20px;
}

#about p {
  color: #2c2c22;
}

#about h5 {
  color: #BB9051
}

.mb-5 {
  margin-bottom: 50px;
}

#sign .form-group label {
  display: block;
  margin-bottom: 0.5rem;
}

#sign input,
select,
.nice-select {
  height: 40px;
  padding: 0 15px;
}

#sign .bottom-links a {
  color: #2c2c22;
  cursor: pointer;
}

.customCheckbox {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 10px 0;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}


.customCheckbox input[type="checkbox"] {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  display: none;
  padding: 0 15px;
  font-size: 13px;
  background: transparent;
  border: 1px solid #e8e9eb;
  transition: all 0.4s ease-out 0s;
  color: #333333;
}

.customCheckbox input[type="checkbox"]+label {
  position: relative;
  padding: 0 0 0 30px;
  margin-bottom: 0;
  cursor: pointer;
  border: 0;
  font-size: 14px;
  font-weight: 600;
}

.customCheckbox input[type="checkbox"]+label:before {
  content: '';
  background: #ffffff;
  border: 1px solid #d0d0d0;
  border-radius: 0;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.customCheckbox input[type="checkbox"]+label:after {
  content: '';
  border-style: solid;
  border-width: 0 0 2px 2px;
  border-color: transparent transparent #BB9051 #BB9051;
  width: 12px;
  height: 7px;
  position: absolute;
  top: 5px;
  left: 5px;
  opacity: 0;
  -webkit-transform: scale(1) rotate(-45deg);
  transform: scale(1) rotate(-45deg);
  -webkit-transition: transform 0.3s linear, opacity 0.3s linear;
  transition: transform 0.3s linear, opacity 0.3s linear;
}

.customCheckbox input[type="checkbox"]:checked+label:after {
  opacity: 1;
  -webkit-transform: scale(1) rotate(-45deg);
  transform: scale(1) rotate(-45deg);
  color: #BB9051;
}

.clearfix:after {
  clear: both;
}

a,
a:hover {
  color: #bb9051;
}

.blog .text ul {
  list-style-type: none;
  margin-bottom: 15px;
}

.blog .text ul li,
.blog .text p {
  color: #333333;

}

/***** About Us *****/
/***** FAQ *****/
#faq {
  padding: 50px 0;
  background-image: url(../images/slider/bk2.png);
  background-position: inherit;
  background-size: 200px 200px;
}

#faq .accordion .accordion-item {
  border: 0;
  margin: 0;
}

#faq .accordion .accordion-header {
  font-size: 13px;
  font-weight: 600;
  background: none;
  padding: 18px 0 0 0;
  margin: 0;
  border-bottom: 1px solid #eeeeee;
  position: relative;
  border-radius: 0;
  background: #2b2b21;
}

#faq .accordion .accordion-header .accordion-button {
  font-size: 105%;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 22px;
  background: transparent;
  color: #BB9051;
  display: block;
  padding: 0px 25px 0px 15px;
  margin: 0 0 15px;
  box-shadow: none;
  border: none;
  outline: none;
}

#faq .accordion .accordion-header .accordion-button:after {
  content: "\f067";
  font-family: 'FontAwesome';
  position: absolute;
  top: 0px;
  right: 10px;
  background: transparent;
  width: auto;
  height: auto;
  transform: none;
  font-size: 18px;
  font-weight: normal;
}

#faq .accordion .accordion-header .accordion-button[aria-expanded="true"]:after {
  content: "\f068";
}

/***** FAQ *****/
/***** cart-fixed *****/
.cart-fixed {
  position: fixed;
  right: 15px;
  bottom: 70px;
  z-index: 99999;
  background: #bb9051;
  padding: 15px;
  border-radius: 52px;
  min-width: 155px;
  height: 60px;
}

.cart-fixed p {
  margin: 0;
  font-weight: 600;
  color: #fff;
  transition: all 0.5s ease-in-out;
}

.cart-fixed p img {
  width: 30px;
  transition: all 0.5s ease-in-out;
}

.cart-fixed:hover img {
  transform: translateX(150px);
  visibility: hidden;
  opacity: 0;
  /*! display: none; */
}

.cart-fixed:hover p span {
  text-align: center;
  position: absolute;
  right: 0;
  left: 0;
  transition: all 0.5s ease-in-out;
}

.cart-fixed .num {
  position: absolute;
  top: -15px;
  right: 15px;
  background: #fff;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50px;
  font-weight: 600;
  color: #282725;
  transition: all 0.5s ease-in-out;
}

.cart-fixed:hover .num {
  transform: rotate(360deg);
}

/***** cart-fixed *****/
/***** head-section *****/
#head-section {
  padding: 30px 0;
  background-image: url(../images/backgrounds/page-top.png);
  background-size: cover;
  background-position: center;
}

#head-section .breadcrumb .breadcrumb-item {
  font-weight: 600;
}

#head-section .breadcrumb .breadcrumb-item:hover a {
  color: #000;
}

#head-section .breadcrumb .breadcrumb-item.active {
  color: #fff;
}

#head-section .head-logo {
  width: 200px;
  height: 85px;
  margin: 0 auto;
}

#head-section .head-logo img {
  max-height: 100%;
}

#head-section .select2 {
  width: 290px !important;
}

#head-section .select2-container--default .select2-selection--single {
  background-color: inherit;
  border: 0;
  border-radius: 0;
  border-bottom: 3px solid #bb9051;
  color: #fff;
  height: 38px;
}

#head-section .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
  line-height: 38px;
}

#head-section .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #fff;
}

#head-section .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #fff transparent transparent transparent;
}

#head-section .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
}

#head-section .select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 38px;
  margin-right: 28px;
  padding-right: 0px;
}

#head-section .select2-dropdown {
  background-color: #66635e;
  border: 1px solid #bb9051;
}

#head-section .select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #bb9051;
  background: #c8c6c6;
  color: #000;
}

#head-section .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #bb9051;
  color: white;
}

#head-section .select2-results__option--selectable {
  cursor: pointer;
  font-weight: 600;
}

#head-section .select2-container--default .select2-results>.select2-results__options {
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #bb9051 #ddd;
}

/***** head-section *****/
/***** menu-nav *****/
#menu-nav {
  background: #282725;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #bb9051 #c1c0bf;
}

#menu-nav .navbar-nav {
  flex-direction: row;
  /*! overflow-x: scroll; */
  /*! scrollbar-width: thin; */
  /*! scrollbar-color: #bb9051 #c1c0bf; */
}


#menu-nav .nav-link {
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: all 0.5s ease-in-out;
}

#menu-nav .nav-link.active,
#menu-nav .nav-link:hover {
  background: #bb9051;
}

/***** menu-nav *****/
/***** meal-head *****/
.meal-head {
  margin: 10px 0;
}

.meal-head .flex-shrink-0 {
  position: relative;
  width: 340px;
  height: 250px;
}

.meal-head .flex-shrink-0 img {
  object-fit: cover;
  width: 340px;
  height: 250px;
}

.meal-head .flex-grow-1 {
  margin: 0 1rem;
}

.meal-head .flex-grow-1 h5 {
  color: #fff;
  font-size: 22px;
}

.meal-head .flex-grow-1 p {
  font-size: 20px;
  color: #fff;
}

/***** meal-head *****/
/***** meal *****/
#meal {
  padding: 50px 0 0;
}

#meal .card {
  padding: 50px 25px;
  background: #6666661a;
  border: 0;
  border-radius: 15px;
  margin-bottom: 50px;
}

#meal .card .form-check {
  padding: 15px;
  background: #fff;
  margin: 10px;
  border-radius: 15px;
}

#meal .card .form-check .form-check-label {
  color: #282725;
  font-weight: 600;
  cursor: pointer;
}

#meal .card .form-check .form-check-input {
  float: right;
  background-color: #ddd;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: #bb9051 !important;
  border-color: #bb9051 !important;
}

.form-check-input:focus {
  border-color: #bb9051;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(187, 144, 81, 0.39);
}

#meal .meal-footer {
  padding: 25px 15px;
  background: #6666661a;
}

#meal .meal-footer p.price {
  font-size: 27px;
  line-height: 1;
}

#meal .meal-footer p {
  font-size: 15px;
  font-weight: 600;
  color: #2c2c22;
  margin: 0;
}

#meal .meal-footer .btn {
  font-weight: 600;
  padding: 7px 30px;
}

#meal .meal-footer .btn img {
  width: 36px;
  margin: 0 8px;
}

/***** meal *****/
/***** cart *****/
#cart {
  padding: 50px 0;
}

#cart .card {
  padding: 25px;
  background: #6666661a;
  border: 0;
  border-radius: 15px;
  margin-bottom: 30px;
}

#cart .card .table {
  margin: 0;
}

#cart .card .table .cart-th {
  font-weight: 700;
  font-size: 22px;
}

#cart .card .table .cart-th span {
  padding: 0;
  background: #282725;
  border-radius: 50px;
  color: #fff;
  display: inline-block;
  width: 35px;
  height: 35px;
  text-align: center;
}

#cart .card .table tr {
  background: none;
  border: 0;
}

#cart .card .table th {
  background: none;
  border: 0;
  font-size: 22px;
}

#cart .card .table td {
  background: none;
  text-align: center;
  border: 0;
}

#cart .card .table .d-flex {
  padding: 15px;
  background: #fff;
  border-radius: 15px;
}

#cart .card .table .d-flex .flex-shrink-0 {
  width: 105px;
  height: 95px;
}

#cart .card .table .d-flex .flex-shrink-0 img {
  width: 105px;
  height: 95px;
  object-fit: cover;
  border-radius: 15px;
}

#cart .card .table .d-flex .flex-grow-1 {
  min-width: 200px;
  margin: 0 10px !important;
  text-align: initial;
}

#cart .card .table .price {
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
}

#cart .qty .count {
  color: #000;
  display: inline-block;
  vertical-align: top;
  font-size: 25px;
  font-weight: 700;
  line-height: 10px;
  padding: 0 2px;
  min-width: 60px;
  text-align: center;
  border-radius: 15px;
}

#cart .qty .plus {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  color: #282725;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50%;
  background-clip: padding-box;
  border: 2px solid #282725;
  font: 30px/1 Arial, sans-serif;
  line-height: 0.8;
  transition: all 0.5s ease-in-out;
}

#cart .qty .minus {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  color: #282725;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50%;
  background-clip: padding-box;
  border: 2px solid #282725;
  font: 30px/1 Arial, sans-serif;
  line-height: 0.7;
  transition: all 0.5s ease-in-out;
}

#cart .qty div {
  text-align: center;
}

#cart .minus:hover {
  background-color: #bb9051 !important;
}

#cart .plus:hover {
  background-color: #bb9051 !important;
}

/*Prevent text selection*/
#cart .qty span {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

#cart .qty input {
  border: 0;
  width: 2%;
}

#cart .qty input::-webkit-outer-spin-button,
#cart .qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Chrome, Safari, Edge, Opera */
#cart .qty input::-webkit-outer-spin-button,
#cart .qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
#cart .qty input[type=number] {
  -moz-appearance: textfield;
}

#cart .card h3 {
  text-transform: uppercase;
}

#cart .card textarea {
  min-height: 176px;
  border: 0;
  box-shadow: 0px 0px 20px -17px;
  font-size: 16px;
  border-radius: 15px;
}

#cart .total-card .d-flex {
  margin: 5px 0;
  padding: 5px 0;
}

#cart .total-card .flex-shrink-0 h5 {}

#cart .total-card .flex-shrink-0 p {
  margin: 0;
  font-size: 14px;
}

#cart .total-card .flex-grow-1 {
  display: flex;
  justify-content: end;
}

#cart .total-card .flex-grow-1 p {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
}

.border-bottom-dash {
  border-bottom: 2px dashed #282725;
}

#cart .total-card .flex-grow-1 p.total-price {
  color: #bb9051;
  font-size: 20px;
  font-weight: 700;
}


#cart .btns .btn {
  width: 100%;
  margin-bottom: 15px;
}

.sec-btn {
  background-color: #fff;
  color: #282725;
  border: 1px solid #BB9051;
  transition: all 0.5s ease-in-out;
  border-radius: 15px;
  padding: 9px 25px;
}

.sec-btn:hover {
  background-color: #bb9051;
  color: #2c2c22;
  border: 1px solid #bb9051;
}

#cart.location .form-control {}

#cart.location .form-control {}

.select2-container--default .select2-selection--single {
  border: 1px solid #bb9051;
  color: #282725;
  height: 40px;
  border-radius: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #282725;
  line-height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #2c2c22;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #282725 transparent transparent transparent;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 38px;
  margin-right: 28px;
  padding-right: 0px;
}

.select2-dropdown {
  background-color: #66635e;
  border: 1px solid #bb9051;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #bb9051;
  background: #c8c6c6;
  color: #000;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #bb9051;
  color: white;
}

.select2-results__option--selectable {
  cursor: pointer;
  font-weight: 600;
}

.select2-container--default .select2-results>.select2-results__options {
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #bb9051 #ddd;
}

#cart.location .promo-code-card .btn {
  height: 40px;
  padding: 0px 25px;
}

#cart.location .option .form-check {
  padding: 10px 40px;
  background: #fff;
  margin: 5px 0px;
  border-radius: 15px;
  box-shadow: 0px 0px 20px -15px;
  border: 1px solid #bb9051;
}

.w-60 {
  width: 80px !important;
  text-align: center;
  flex: 0 auto !important;
}

.input-group-text {
  border-radius: 15px;
  background: #fff !important;
  border: 1px solid #bb9051;
}

/***** cart *****/
/***** Profile *****/
#profile {
  padding: 50px 0;
}

#profile .card {
  padding: 25px;
  background: #6666661a;
  border: 0;
  border-radius: 15px;
  margin-bottom: 30px;
}

#profile .card h3 {
  color: #bb9051;
}

#profile .card ul {
  list-style: none;
}

#profile .card ul li {
  font-size: 20px;
  color: #2c2c22;
}

#profile .card ul li a {
  color: #2c2c22;
  width: 100%;
  padding: 6px 0;
}

#profile .card ul li a.active {
  background: #bb9051;
  color: #fff;
  padding: 6px 10px;
}

hr {
  border: 1px solid #2c2c22;
}

#profile .data img {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  margin-bottom: 20px;
  display: block;
}

#profile .avatar-upload {
  position: relative;
  max-width: 205px;
  margin-bottom: 30px;
}

#profile .avatar-upload .avatar-edit {
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 10px;
}

#profile .avatar-upload .avatar-edit input {
  display: none;
}

#profile .avatar-upload .avatar-edit input+label {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}

#profile .avatar-upload .avatar-edit input+label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}

#profile .avatar-upload .avatar-edit input+label:after {
  content: "\f040";
  font-family: 'FontAwesome';
  color: #bb9051;
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
}

#profile .avatar-upload .avatar-preview {
  width: 192px;
  height: 192px;
  position: relative;
  border-radius: 100%;
  border: 6px solid #F8F8F8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

#profile .avatar-upload .avatar-preview>div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#profile .form-control {
  background: #fff;
  border: 1px solid #bb9051;
  transition: all 0.4s ease-out 0s;
  color: #2c2c22;
  border-radius: 0;
  width: 100%;
  font-size: 13px;
  box-shadow: none;
  -webkit-box-shadow: none;
  border-radius: 10px;
  line-height: 26px;
}

#profile label {
  color: #2c2c22;
  font-weight: 600;
}

#profile.address .remove {
  transition: all 0.5s ease-in-out;
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 22px;
}

#profile.address .remove:hover {
  color: #2c2c22;
}

#profile.address .card p {
  color: #2c2c22;
}

#profile.address .add {
  transition: all 0.5s ease-in-out;
  font-size: 22px;
  font-weight: 600;
}

#profile.order .card .flex-shrink-0 {
  width: 200px;
  height: 125px;
  position: relative;
}

#profile.order .card .flex-shrink-0 img {
  width: 200px;
  height: 125px;
  object-fit: cover;
  border-radius: 15px;
}

#profile.order .card .flex-grow-1 h5 {
  color: #bb9051;
  font-size: 22px;
}

#profile.order .card .flex-grow-1 p {
  margin: 0;
  font-weight: 600;
  color: #2c2c22;
}

#location{
    margin: 60px 0;
}
#location .card{
    padding: 15px;
    border: 0;
    box-shadow: 0px 0px 20px -11px;
    margin: 10px 0;
}
#location .card h5{
    color: #bb9052;
}
#location .card ul{
    list-style: none;
}
#location .card ul li img{
    width: 30px;
}
/***** Profile *****/

.table>:not(caption)>> {
  background-color: initial;
}