* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

*::-moz-selection {
  background-color: #B39465;
  color: #fff;
}

*::selection {
  background-color: #B39465;
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: #B39465;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #60513a;
}

/***************************** Global Style *****************************/
p {
  font-size: 15px;
  color: #555;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

ul {
  list-style-type: none;
  padding: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #000;
}

.main_color {
  color: #B39465 !important;
}

.scroll-top-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: linear-gradient(-135deg, #7e673f, #B39465);
  text-align: center;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 1000;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn img {
  width: 25px;
  -webkit-filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
          filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.scroll-top-btn:hover img {
  -webkit-animation: floating-y .5s infinite alternate;
          animation: floating-y .5s infinite alternate;
}

/***************************** Animations *****************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes rotate-scale-up {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1) rotateZ(0);
            transform: translate(-50%, -50%) scale(1) rotateZ(0);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.2) rotateZ(180deg);
            transform: translate(-50%, -50%) scale(1.2) rotateZ(180deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1) rotateZ(360deg);
            transform: translate(-50%, -50%) scale(1) rotateZ(360deg);
  }
}

@keyframes rotate-scale-up {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1) rotateZ(0);
            transform: translate(-50%, -50%) scale(1) rotateZ(0);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.2) rotateZ(180deg);
            transform: translate(-50%, -50%) scale(1.2) rotateZ(180deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1) rotateZ(360deg);
            transform: translate(-50%, -50%) scale(1) rotateZ(360deg);
  }
}

@-webkit-keyframes bounce-in-bottom {
  0% {
    -webkit-transform: translateY(500px);
            transform: translateY(500px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(65px);
            transform: translateY(65px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(28px);
            transform: translateY(28px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

@keyframes bounce-in-bottom {
  0% {
    -webkit-transform: translateY(500px);
            transform: translateY(500px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(65px);
            transform: translateY(65px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(28px);
            transform: translateY(28px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

@-webkit-keyframes rotate-in-center {
  0% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotate-in-center {
  0% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}

/***************************** Start Edit Navbar & Footer *****************************/
.navs-wrapper .navbar {
  padding: 1.5rem 1rem;
  background-color: #0F0F08;
}

.navs-wrapper .navbar .navbar-brand img {
  width: 290px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.navs-wrapper .navbar .circle-icon {
  width: 40px;
  height: 40px;
  line-height: 38px;
  background-color: transparent;
  border: 2px solid #B39465;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  padding: 0;
  margin: 0 2px;
}

.navs-wrapper .navbar .circle-icon:hover {
  background-color: #B39465;
}

.navs-wrapper .navbar .circle-icon:hover img {
  -webkit-filter: invert(0%) sepia(0%) saturate(7500%) hue-rotate(178deg) brightness(9%) contrast(101%);
          filter: invert(0%) sepia(0%) saturate(7500%) hue-rotate(178deg) brightness(9%) contrast(101%);
}

.navs-wrapper .navbar .icon {
  margin-top: 5px;
}

.navs-wrapper .navbar .toggler-icon img {
  width: 35px;
}

.navs-wrapper .navbar .icons-l {
  float: right;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 10px;
}

.navs-wrapper .navbar .icons-l .search-icon {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 5px 15px 0 15px;
}

.navs-wrapper .navbar .icons-l .lang-icon i {
  color: #B39465;
  margin-right: 20px;
  margin-left: 5px;
  font-size: 25px;
}

.navs-wrapper .navbar .lang-link {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: transparent;
  border: 2px solid #B39465;
  background-color: #B39465;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  padding: 0;
  margin: 0 15px 0 0;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}

.navs-wrapper .navbar .lang-link:hover {
  background-color: #0F0F08;
  color: #B69D74;
}

.navs-wrapper .search-container {
  position: fixed;
  z-index: 9999999999;
  top: 0;
}

.navs-wrapper .search-container #search {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  position: fixed;
  -webkit-transition: all .5s;
  transition: all .5s;
  width: 100vw;
  will-change: transform, opacity;
  z-index: -1;
}

.navs-wrapper .search-container #search::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .95;
}

.navs-wrapper .search-container #search:target {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100vh !important;
  opacity: 1;
  width: 100vw !important;
  z-index: 2;
}

.navs-wrapper .search-container #search:target .close-btn {
  display: block;
}

.navs-wrapper .search-container form {
  position: relative;
}

.navs-wrapper .search-container form .form-control {
  background: transparent;
  position: relative;
  z-index: 99;
  border: 1px solid #ccc;
  color: #fff;
  font-size: 18px;
  outline: 0;
  padding: 1rem 1.375rem;
  height: 50px;
  border-radius: 10px;
}

.navs-wrapper .search-container form .form-control::-webkit-input-placeholder {
  color: #ccc;
}

.navs-wrapper .search-container form .form-control:-ms-input-placeholder {
  color: #ccc;
}

.navs-wrapper .search-container form .form-control::-ms-input-placeholder {
  color: #ccc;
}

.navs-wrapper .search-container form .form-control::placeholder {
  color: #ccc;
}

.navs-wrapper .search-container form .form-control:focus {
  border: 1px solid #B39465;
}

.navs-wrapper .search-container form .submit-btn {
  position: absolute;
  right: 5px;
  top: 13px;
  background-color: transparent;
  color: #B39465;
  border: 1px solid transparent;
}

.navs-wrapper .search-container .close-btn {
  display: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: .5rem;
  right: 2rem;
}

.navs-wrapper .sidebar {
  width: 350px;
  height: 100vh !important;
  background-image: -webkit-gradient(linear, left top, right top, from(#151B1E), to(#151B1E));
  background-image: linear-gradient(to right, #151B1E, #151B1E);
  position: fixed;
  top: 0;
  left: -120%;
  z-index: 9999;
  -webkit-transition: all 350ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
  transition: all 350ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
  padding-bottom: 75px;
}

.navs-wrapper .sidebar .dismiss {
  color: #fff;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 5;
}

.navs-wrapper .sidebar h5 {
  padding: 0 25px;
  position: relative;
  top: 30px;
  color: #B39465;
  font-size: 1.2rem;
}

.navs-wrapper .sidebar h5 .line {
  width: 40px;
  height: 1px;
  display: inline-block;
  background-color: #B39465;
  margin: 0 10px;
  position: relative;
  bottom: 5px;
}

.navs-wrapper .sidebar .card-body {
  margin: 50px 0px 10px;
}

.navs-wrapper .sidebar .card-body .nav-links .nav-link {
  margin: 5px 0;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  padding-left: 60px;
  font-size: 20px;
  position: relative;
  z-index: 1;
}

.navs-wrapper .sidebar .card-body .nav-links .nav-link::before {
  content: '';
  background: url(../images/icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 17px;
  opacity: 0;
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
}

.navs-wrapper .sidebar .card-body .nav-links .nav-link.active, .navs-wrapper .sidebar .card-body .nav-links .nav-link:hover {
  color: #B39465;
  font-weight: bold;
}

.navs-wrapper .sidebar .card-body .nav-links .nav-link.active::before, .navs-wrapper .sidebar .card-body .nav-links .nav-link:hover::before {
  left: 22px;
  opacity: 1;
}

.navs-wrapper .sidebar .btns-wrapper {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #ccc;
  font-size: 25px;
  position: absolute;
  z-index: 1;
  bottom: 25px;
  padding-left: 60px;
}

.navs-wrapper .sidebar .btns-wrapper .lang-btn {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: transparent;
  border: 2px solid #735f40;
  background-color: #735f40;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  padding: 0;
  margin: 0 5px;
  color: #fff;
  font-size: 13px;
}

.navs-wrapper .sidebar .btns-wrapper .lang-btn:hover {
  background-color: #b58240;
  color: #0F0F08;
}

.navs-wrapper .sidebar .pattern {
  width: 66%;
  position: absolute;
  bottom: 0;
  left: -20px;
}

.navs-wrapper .sidebar.active {
  left: 0;
}

.navs-wrapper .overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  top: 0;
  right: 0;
}

.navs-wrapper .overlay.active {
  display: block;
  opacity: 1;
}

footer {
  padding: 70px 0 0 0;
  position: relative;
}

footer .logo {
  width: 290px;
  display: block;
  margin: auto;
}

footer .det {
  text-align: center;
  color: #CECECE;
  line-height: 1.7rem;
  font-size: 13px;
  margin: 1rem 0;
  font-weight: 300;
}

footer .social-links {
  text-align: center;
}

footer .social-links a {
  width: 40px;
  height: 40px;
  line-height: 38px;
  background-color: transparent;
  border: 2px solid #B39465;
  color: #B39465;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  padding: 0;
  margin: 0 2px;
}

footer .social-links a:hover {
  background-color: #B39465;
  color: #fff;
}

footer .pattern1 {
  position: absolute;
  top: -85px;
  right: 50px;
}

footer .copyright {
  background-color: #0a0a06;
  padding: 25px 0;
  text-align: center;
}

footer .copyright p {
  margin-bottom: 0;
  color: #fff;
}

footer .copyright a {
  color: #fde3c6;
  font-weight: bold;
}

/********************* Public classes /*********************/
.dark-bg {
  background-color: #0F0F08;
}

.swiper-container .swiper-pagination-bullet {
  width: 40px;
  height: 7px;
  background: #ccc;
  border-radius: 5px;
}

.swiper-container .swiper-pagination-bullet-active {
  opacity: 1;
  background: #B39465;
}

.swiper-container .swiper-pagination {
  position: relative;
  margin-top: 50px;
  bottom: 0;
}

.sec-heading .headline {
  text-transform: uppercase;
  color: #B39465;
}

.sec-heading.light-bg {
  padding: 35px 0 25px 0;
  background-color: #B39465;
}

.sec-heading.light-bg .headline {
  color: #fff;
}

.sec-heading.light-bg .line {
  -webkit-filter: invert(95%) sepia(94%) saturate(2%) hue-rotate(160deg) brightness(204%) contrast(100%);
          filter: invert(95%) sepia(94%) saturate(2%) hue-rotate(160deg) brightness(204%) contrast(100%);
}

.prod-card {
  margin-bottom: 45px;
  position: relative;
  z-index: 1;
}

.prod-card .prod-img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.prod-card .card-body {
  padding: .5rem;
}

.prod-card .card-body .prod-name {
  color: #fff;
  margin-bottom: 1rem;
}

.prod-card .card-body .det {
  color: #CECECE;
}

.prod-card .card-body .price {
  color: #B39465;
}

.prod-card .icons-hvr {
  position: absolute;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  visibility: hidden;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 3;
}

.prod-card .icons-hvr .icon {
  width: 40px;
  height: 40px;
  line-height: 38px;
  background-color: transparent;
  border: 2px solid #B39465;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  padding: 0;
  margin: 0 2px;
}

.prod-card .icons-hvr .icon:hover, .prod-card .icons-hvr .icon.active {
  background-color: #B39465;
}

.prod-card .icons-hvr .icon:hover img, .prod-card .icons-hvr .icon.active img {
  -webkit-filter: invert(0%) sepia(0%) saturate(7500%) hue-rotate(178deg) brightness(9%) contrast(101%);
          filter: invert(0%) sepia(0%) saturate(7500%) hue-rotate(178deg) brightness(9%) contrast(101%);
}

.prod-card:hover .prod-img {
  -webkit-animation: tada 1.5s both infinite;
          animation: tada 1.5s both infinite;
}

.prod-card:hover .prod-name {
  color: #c6a87b;
}

.prod-card:hover .icons-hvr {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  visibility: visible;
  opacity: 1;
}

/*main-btn*/
.main-btn {
  width: 180px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: relative;
  display: block;
  margin-left: 8px;
}

.main-btn span {
  width: 100%;
  height: 100%;
  background-color: #B39465;
  border: 1px solid #B39465;
  color: #000;
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.main-btn::before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  bottom: -8px;
  left: -8px;
  border: 2px solid #B39465;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.main-btn.submit-btn {
  background-color: transparent;
  border: transparent;
  padding: 0;
}

.main-btn:hover span {
  background-color: #60513a;
  color: #fff;
  -webkit-transform: translate(-8px, 8px);
          transform: translate(-8px, 8px);
}

/*Modal Style*/
.modal .modal-content {
  border-radius: 25px;
  padding: 15px;
  background-color: #0F0F08;
}

.modal .modal-title {
  color: #fff;
}

.modal .label {
  color: #ccc;
}

.modal .modal-header .close {
  color: #fff;
}

.modal .modal-footer {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem 1rem 1rem 1rem;
}

.modal .modal-footer .btn {
  padding: 0.575rem 1.75rem;
}

.modal .modal-footer .btn-primary {
  color: #fff;
  background-color: #B39465;
  border-color: #B39465;
}

.modal .modal-footer .btn-primary:hover {
  background-color: #b58240;
}

/***************************** Start Edit Home Page *****************************/
header {
  padding: 50px 0;
}

header .inner {
  border: 1px solid #707070;
  background-color: #101010;
}

header .inner .slide-inner {
  padding: 130px 0 160px 0;
  position: relative;
}

header .inner .slide-inner .text-header {
  background-color: #B39465;
  color: #000;
  text-align: center;
  padding: 50px 15px;
  position: relative;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

header .inner .slide-inner .text-header::after {
  content: '';
  border: 1px solid #B39465;
  position: absolute;
  width: 110%;
  height: 90%;
  top: 20%;
  left: -5%;
  margin-top: -100px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

header .inner .slide-inner .text-header h1 {
  line-height: 3.5rem;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

header .inner .slide-inner .text-header h1 small {
  font-weight: 300;
}

header .inner .slide-inner .text-header h1 b {
  font-weight: 500;
}

header .inner .slide-inner .header-tr {
  width: 20%;
  position: absolute;
  top: 0;
  right: 0;
}

header .inner .slide-inner .header-tl {
  width: 25%;
  position: absolute;
  top: -40px;
  left: -70px;
}

header .inner .slide-inner .header-br {
  width: 30%;
  position: absolute;
  bottom: -65px;
  right: -62px;
  z-index: 3;
}

header .swiper-container-horizontal > .swiper-pagination-bullets,
header .swiper-pagination-custom,
header .swiper-pagination-fraction {
  bottom: 40px;
}

header .swiper-slide-active .slide-inner .text-header {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

header .swiper-slide-active .slide-inner .text-header::after {
  margin-top: 0px;
}

header .swiper-slide-active .slide-inner .header-tr {
  -webkit-animation: tada 2s both;
          animation: tada 2s both;
}

header .swiper-slide-active .slide-inner .header-br {
  -webkit-animation: bounce-in-bottom 2s both;
          animation: bounce-in-bottom 2s both;
}

header .swiper-slide-active .slide-inner .header-tl {
  -webkit-animation: rotate-in-center 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: rotate-in-center 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/*start about-sec*/
.about-sec {
  padding: 70px 0;
  overflow: hidden;
}

.about-sec .img-box {
  height: 500px;
  position: relative;
}

.about-sec .img-box::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: -20px;
  top: -20px;
  background-color: transparent;
  border: 2px solid #B39465;
  display: block;
}

.about-sec .img-box .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  position: relative;
}

.about-sec .img-box .bg-shadows {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -30px;
  right: -30px;
}

.about-sec .img-box .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 4;
}

.about-sec .img-box .play-btn img {
  width: 90px;
  color: #B39465;
}

.about-sec .img-box .play-btn:hover {
  -webkit-filter: invert(61%) sepia(18%) saturate(779%) hue-rotate(357deg) brightness(96%) contrast(88%);
          filter: invert(61%) sepia(18%) saturate(779%) hue-rotate(357deg) brightness(96%) contrast(88%);
  -webkit-animation: rotate-scale-up 0.65s linear both;
          animation: rotate-scale-up 0.65s linear both;
}

.about-sec .text-box {
  padding: 15px 25px;
}

.about-sec .text-box .heading {
  color: #fff;
  font-weight: 600;
}

.about-sec .text-box .paragraph {
  line-height: 2rem;
  color: #CECECE;
}

/*Start products-sec*/
.products-sec {
  padding: 70px 0 0 0;
  position: relative;
  overflow: hidden;
}

.products-sec .swiper-container-horizontal > .swiper-pagination-bullets,
.products-sec .swiper-pagination-custom,
.products-sec .swiper-pagination-fraction {
  position: relative;
  margin-top: 15px;
}

.products-sec .pattern {
  position: absolute;
  top: 60%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -12%;
}

.catering-pg .note {
  text-align: center;
  font-size: 18px;
  color: #fff;
  position: absolute;
  width: 100%;
  bottom: 80px;
}

.catering-pg .note .icon {
  margin: 0 5px;
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.catering-pg .note a {
  color: #00880b;
}

/*start newsletter-sec*/
.newsletter-sec {
  padding: 100px 0 70px 0;
  position: relative;
}

.newsletter-sec .inner {
  background-color: #B39465;
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}

.newsletter-sec .inner .headline_lg {
  font-size: calc(32px + 1.8vw);
  color: #fff;
  font-weight: 700;
  margin-bottom: .6rem;
}

.newsletter-sec .inner .headline_md {
  color: #fff;
  font-size: calc(23px + .1vw);
  font-weight: 400;
  margin-bottom: 1.8rem;
}

.newsletter-sec .inner .form-group {
  position: relative;
}

.newsletter-sec .inner .form-group .form-control {
  height: 60px;
  border-radius: 0;
  background-color: #c4a87e;
  border: 1px solid #c4a87e;
  color: #fff;
}

.newsletter-sec .inner .form-group .form-control::-webkit-input-placeholder {
  color: #333;
}

.newsletter-sec .inner .form-group .form-control:-ms-input-placeholder {
  color: #333;
}

.newsletter-sec .inner .form-group .form-control::-ms-input-placeholder {
  color: #333;
}

.newsletter-sec .inner .form-group .form-control::placeholder {
  color: #333;
}

.newsletter-sec .inner .form-group .submit-btn {
  width: 180px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #0F0F08;
  border: 1px solid #0F0F08;
  color: #B39465;
}

.newsletter-sec .pattern1 {
  position: absolute;
  top: -85px;
  right: 50px;
}

.newsletter-sec .pattern2 {
  position: absolute;
  bottom: -85px;
  left: 0px;
  z-index: 1;
}

/***************************** Start Edit single-product Page *****************************/
.single-product {
  padding: 70px 0;
}

.single-product .img-box {
  height: 450px;
}

.single-product .img-box .prod-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.single-product .prod-details .prod-name {
  color: #fff;
  font-size: 2.3rem;
}

.single-product .prod-details .prod-name::after {
  content: '';
  width: 100px;
  height: 2px;
  background-color: #B39465;
  display: block;
  position: relative;
  top: 15px;
}

.single-product .prod-details .price {
  color: #B39465;
  margin-top: 40px;
}

.single-product .prod-details .p {
  font-size: 14px;
  color: #CECECE;
  line-height: 1.7rem;
}

.single-product .prod-details .btns-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  /*Share animation*/
}

.single-product .prod-details .btns-wrapper .share {
  margin: 0px 20px;
  position: relative;
  top: 20px;
}

.single-product .prod-details .btns-wrapper .share .demo__open-btn {
  position: relative;
  width: 60px;
  height: 60px;
  z-index: 5;
  text-align: center;
  line-height: 60px;
  font-weight: 700;
  font-size: 25px;
  background: #B39465;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: inline-block;
}

.single-product .prod-details .btns-wrapper .share .demo__open-btn:hover {
  color: #333;
  -webkit-box-shadow: 0 0 15px white;
          box-shadow: 0 0 15px white;
}

.single-product .prod-details .btns-wrapper .share .demo__social-btn {
  position: absolute;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  font-size: 20px;
  background: white;
  color: #B39465;
  border-radius: 50%;
  z-index: 5;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.single-product .prod-details .btns-wrapper .share .demo__social-btn:hover {
  color: #5a4931;
  -webkit-box-shadow: 0 0 15px white;
          box-shadow: 0 0 15px white;
}

.single-product .prod-details .btns-wrapper .share svg {
  position: absolute;
}

.single-product .prod-details .btns-wrapper .share .demo__buttons {
  -webkit-filter: url("#goo");
          filter: url("#goo");
}

.single-product .prod-details .btns-wrapper .share .demo__buttons.step-0 .demo__social-btn-1,
.single-product .prod-details .btns-wrapper .share .demo__buttons.step-0 .demo__social-btn-2,
.single-product .prod-details .btns-wrapper .share .demo__buttons.step-0 .demo__social-btn-3,
.single-product .prod-details .btns-wrapper .share .demo__buttons.step-0 .demo__social-btn-4 {
  -webkit-transform: translate3d(-45px, -45px, 0);
          transform: translate3d(-45px, -45px, 0);
}

.single-product .prod-details .btns-wrapper .share .demo__buttons.step-1 .demo__social-btn-1 {
  -webkit-transform: translate3d(-50px, -50px, 0);
          transform: translate3d(-50px, -50px, 0);
}

.single-product .prod-details .btns-wrapper .share .demo__buttons.step-1 .demo__social-btn-2,
.single-product .prod-details .btns-wrapper .share .demo__buttons.step-1 .demo__social-btn-3,
.single-product .prod-details .btns-wrapper .share .demo__buttons.step-1 .demo__social-btn-4 {
  -webkit-transform: translate3d(-50px, 50px, 0);
          transform: translate3d(-50px, 50px, 0);
}

.single-product .prod-details .btns-wrapper .share .demo__buttons.step-2 .demo__social-btn-1 {
  -webkit-transform: translate3d(-50px, -50px, 0);
          transform: translate3d(-50px, -50px, 0);
}

.single-product .prod-details .btns-wrapper .share .demo__buttons.step-2 .demo__social-btn-2 {
  -webkit-transform: translate3d(-50px, 50px, 0);
          transform: translate3d(-50px, 50px, 0);
}

.single-product .prod-details .btns-wrapper .share .demo__buttons.step-2 .demo__social-btn-3,
.single-product .prod-details .btns-wrapper .share .demo__buttons.step-2 .demo__social-btn-4 {
  -webkit-transform: translate3d(50px, 50px, 0);
          transform: translate3d(50px, 50px, 0);
}

.single-product .prod-details .btns-wrapper .share .demo__buttons.step-3 .demo__social-btn-1 {
  -webkit-transform: translate3d(-50px, -50px, 0);
          transform: translate3d(-50px, -50px, 0);
}

.single-product .prod-details .btns-wrapper .share .demo__buttons.step-3 .demo__social-btn-2 {
  -webkit-transform: translate3d(-50px, 50px, 0);
          transform: translate3d(-50px, 50px, 0);
}

.single-product .prod-details .btns-wrapper .share .demo__buttons.step-3 .demo__social-btn-3 {
  -webkit-transform: translate3d(50px, 50px, 0);
          transform: translate3d(50px, 50px, 0);
}

.single-product .prod-details .btns-wrapper .share .demo__buttons.step-3 .demo__social-btn-4 {
  -webkit-transform: translate3d(50px, -50px, 0);
          transform: translate3d(50px, -50px, 0);
}

.single-product .prod-details .btns-wrapper .fav-btn {
  width: 60px;
  height: 60px;
  background: #B39465;
  line-height: 60px;
  border-radius: 50%;
  color: #fff;
  border: 1px solid #fff;
  position: relative;
  top: 20px;
  font-size: 20px;
  margin: 0 0 0 15px;
}

.single-product .prod-details .btns-wrapper .fav-btn:hover {
  color: #333;
  -webkit-box-shadow: 0 0 15px white;
          box-shadow: 0 0 15px white;
}

.single-product .prod-details .box_det {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.single-product .prod-details .box_det .form-group {
  width: 48%;
  margin: 20px 0;
}

.single-product .prod-details .box_det .form-group label {
  color: #CECECE;
}

.single-product .prod-details .box_det .form-group .custom-select,
.single-product .prod-details .box_det .form-group input {
  border: 1px solid #343A40;
  color: #343A40;
  font-weight: bold;
  border-radius: 8px;
  background-color: transparent;
  width: 100%;
  min-height: 45px;
  padding: 0 10px;
  -webkit-filter: invert(62%) sepia(23%) saturate(578%) hue-rotate(357deg) brightness(91%) contrast(96%);
          filter: invert(62%) sepia(23%) saturate(578%) hue-rotate(357deg) brightness(91%) contrast(96%);
}

.single-product .reviews-wrapper {
  padding-top: 50px;
}

.single-product .reviews-wrapper .review-heading {
  color: #fff;
}

.single-product .reviews-wrapper .review-card {
  background-color: #fff;
  border: 2px solid #fff;
  padding: 20px 20px;
  position: relative;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  position: relative;
  z-index: 1;
}

.single-product .reviews-wrapper .review-card .card-head {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
}

.single-product .reviews-wrapper .review-card .card-head .avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-product .reviews-wrapper .review-card .card-head .info {
  margin: 10px 15px;
}

.single-product .reviews-wrapper .review-card .card-head .info .name {
  font-weight: 600;
}

.single-product .reviews-wrapper .review-card .card-head .info .title {
  margin-bottom: .4rem;
}

.single-product .reviews-wrapper .review-card .card-head .info .rate .icon {
  width: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.single-product .reviews-wrapper .review-card .card-head .info .rate .icon.active {
  background-color: #B39465;
  border-radius: 50%;
}

.single-product .reviews-wrapper .review-card:hover {
  -webkit-transform: translate(-10px, 10px);
          transform: translate(-10px, 10px);
  border: 2px solid #B39465;
}

.single-product .reviews-wrapper .card-boreder {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 2px solid #B39465;
  position: absolute;
  top: 10px;
  left: -10px;
}

.single-product .reviews-wrapper .swiper-wrapper {
  padding: 15px;
}

.single-product .reviews-wrapper .swiper-pagination {
  position: relative;
  margin-top: 25px;
}

.single-product .show_slider {
  padding: 15px;
}

.single-product .show_slider .swiper-container {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.single-product .show_slider .swiper-container .swiper-slide {
  background-size: cover;
  background-position: center;
}

.single-product .show_slider .gallery-top {
  height: 80%;
  width: 100%;
  position: relative;
}

.single-product .show_slider .gallery-top img {
  width: 100%;
  height: 350px;
  -o-object-fit: contain;
     object-fit: contain;
}

.single-product .show_slider .gallery-thumbs {
  height: 20%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
}

.single-product .show_slider .gallery-thumbs img {
  width: 100%;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}

.single-product .show_slider .gallery-thumbs .swiper-slide {
  height: 100%;
  opacity: 0.4;
}

.single-product .show_slider .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.single-product .show_slider .slider {
  position: relative;
  margin-top: 30px;
}

/*quantity-container*/
.quantity-container .label {
  color: #fff;
  text-transform: uppercase;
}

.quantity-container .qt-plus,
.quantity-container .qt-minus {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  border: solid 1px transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #555;
  font-size: 10px;
  vertical-align: middle;
  display: inline-flex;
  cursor: pointer;
}

.quantity-container .qt-plus:hover,
.quantity-container .qt-minus:hover {
  background-color: #C0986C;
  color: #fff;
}

.quantity-container .qt-plus .fa,
.quantity-container .qt-minus .fa {
  font-weight: 300;
}

.quantity-container .qt {
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  font-weight: bold;
  vertical-align: middle;
  min-width: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  border: 1px solid #666;
  margin: 0 -4px;
}

/***************************** Start Edit checkout Page *****************************/
.checkout-pg {
  padding: 70px 0;
}

.checkout-pg .steps-wizard {
  background-color: #151B1E;
  border-right: 1px solid #eee;
  padding: 20px 0;
}

.checkout-pg .steps-wizard .single_step {
  text-align: center;
  position: relative;
}

.checkout-pg .steps-wizard .single_step::after {
  content: '';
  width: 1px;
  height: 70px;
  position: relative;
  top: 10px;
  display: block;
  margin: 0 auto 25px auto;
  background-color: #ccc;
}

.checkout-pg .steps-wizard .single_step.last-step::after {
  display: none;
}

.checkout-pg .steps-wizard .single_step.active::after {
  background-color: #B39465;
}

.checkout-pg .steps-wizard .single_step.inProgress .circle {
  background-color: #B39465;
  color: #fff;
}

.checkout-pg .steps-wizard .single_step .circle {
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  background-color: #E5E5E5;
  display: block;
  margin: auto;
  color: #343A3E;
  font-weight: bold;
}

.checkout-pg .steps-wizard .single_step .label {
  color: #fff;
  margin-top: 15px;
}

.checkout-pg .form-container {
  padding: 1vw 5vw;
}

.checkout-pg .form-container .form-title {
  color: #B39465;
}

.checkout-pg .form-container .form-group.row {
  margin: 0 0 1.6rem 0;
}

.checkout-pg .form-container .map-btn {
  background-color: #434343;
  border: 1px solid #434343;
  color: #fff;
  font-size: 12px;
}

.checkout-pg .form-container .map-btn .icon {
  width: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 3px;
}

.checkout-pg .form-container .map-btn:hover {
  background-color: #B39465;
}

.checkout-pg .form-container .label {
  color: #B39465;
  font-size: 13px;
}

.checkout-pg .form-container .cards-radio-btn .radio-card {
  text-align: center;
  margin: 7px 0;
  position: relative;
}

.checkout-pg .form-container .cards-radio-btn .radio-card h6 {
  margin-top: .7rem;
  font-size: .9rem;
  color: #fff;
  margin-bottom: 0;
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}

.checkout-pg .form-container .cards-radio-btn .radio-card .pay-img {
  width: 100px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0px auto 0 auto;
}

.checkout-pg .form-container .cards-radio-btn .radio-card .pay-img.filter_white {
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(331deg) brightness(146%) contrast(101%);
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(331deg) brightness(146%) contrast(101%);
}

.checkout-pg .form-container .cards-radio-btn .radio-card .circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  display: block;
  margin: auto;
  position: relative;
}

.checkout-pg .form-container .cards-radio-btn .radio-card .circle::after {
  content: '';
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  background-color: transparent;
  position: absolute;
  top: 4px;
  left: 4px;
}

.checkout-pg .form-container .cards-radio-btn .radio-card .card-input-element {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
}

.checkout-pg .form-container .cards-radio-btn .radio-card .card-input {
  border: 1px solid transparent;
  padding: 20px 10px;
  background-color: #242424;
}

.checkout-pg .form-container .cards-radio-btn .radio-card label {
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: relative;
}

.checkout-pg .form-container .cards-radio-btn .radio-card .card-input-element:checked + .card-input {
  border: 1px solid #B39465;
}

.checkout-pg .form-container .cards-radio-btn .radio-card .card-input-element:checked + .card-input h6 {
  color: #B39465;
}

.checkout-pg .form-container .cards-radio-btn .radio-card .card-input-element:checked + .card-input .circle::after {
  background-color: #B39465;
}

.checkout-pg .form-container .cards-radio-btn .radio-card.delievery-radio-card h6 {
  bottom: 18px;
}

.checkout-pg .form-container .cards-radio-btn .radio-card.delievery-radio-card .card-input {
  padding-bottom: 45px;
}

.checkout-pg .form-container .bankTransfer-form .file-input-group .wrap {
  background-color: #242424;
}

.checkout-pg .form-container .bankTransfer-form .file-input-group .file {
  position: relative;
  font-weight: 600;
}

.checkout-pg .form-container .bankTransfer-form .file-input-group .file__input,
.checkout-pg .form-container .bankTransfer-form .file-input-group .file__value {
  background-color: #242424;
  border-radius: 0px;
  color: #666;
  padding: 0.375rem 1.0625rem;
}

.checkout-pg .form-container .bankTransfer-form .file-input-group .file__input--file {
  position: absolute;
  opacity: 0;
}

.checkout-pg .form-container .bankTransfer-form .file-input-group .file__input--label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  cursor: pointer;
}

.checkout-pg .form-container .bankTransfer-form .file-input-group .file__input--label:after {
  content: attr(data-text-btn);
  border-radius: 0px;
  background-color: #8e7653;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.18);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.18);
  padding: 0.5375rem 1.0625rem;
  color: #fff;
  cursor: pointer;
}

.checkout-pg .form-container .bankTransfer-form .file-input-group .file__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ccc;
}

.checkout-pg .form-container .bankTransfer-form .file-input-group .file__value:hover:after {
  color: #B39465;
}

.checkout-pg .form-container .bankTransfer-form .file-input-group .file__value:after {
  content: "X";
  cursor: pointer;
}

.checkout-pg .form-container .bankTransfer-form .file-input-group .file__value:after:hover {
  color: #000;
}

.checkout-pg .form-container .bankTransfer-form .file-input-group .file__remove {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #b58240;
}

.checkout-pg .form-container .bankTransfer-form .bank-acc-btn {
  background-color: transparent;
  border: transparent;
  color: #B39465;
  font-weight: bold;
}

.checkout-pg .form-container .branch-form .note {
  color: #ddd;
}

.checkout-pg .form-container .branch-form .note b {
  color: #B39465;
}

.checkout-pg .form-container .bankTransfer-form,
.checkout-pg .form-container .creditCard-form,
.checkout-pg .form-container .location-form,
.checkout-pg .form-container .branch-form,
.checkout-pg .form-container .location-options,
.checkout-pg .form-container .oldLocation-form {
  display: none;
}

.checkout-pg .form-container .btns-wrapper {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.checkout-pg .form-container .btns-wrapper .prev-btn {
  color: #fff;
  font-weight: bold;
}

.checkout-pg .form-container .btns-wrapper .prev-btn i {
  margin: 0 5px;
}

.checkout-pg .form-container .btns-wrapper .prev-btn:hover {
  color: #B39465;
}

.checkout-pg .form-container .btns-wrapper .submit-btn {
  width: 150px;
  height: 45px;
  background-color: #B39465;
  border: 1px solid #B39465;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
}

.checkout-pg .form-container .btns-wrapper .submit-btn:hover {
  background-color: #806947;
}

.checkout-pg .form-container .calendar-group {
  position: relative;
}

.checkout-pg .form-container .calendar-group::after {
  content: '\f073';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 17px;
  color: #999;
  pointer-events: none;
}

.checkout-pg .summary-checkout {
  background-color: #fff;
  padding: 30px 20px 10px 20px;
}

.checkout-pg .summary-checkout .title {
  color: #B39465;
  font-weight: bold;
  position: relative;
}

.checkout-pg .summary-checkout .title::after {
  content: '';
  width: 100%;
  background-color: #ddd;
  height: 2px;
  display: block;
  position: relative;
  top: 10px;
}

.checkout-pg .summary-checkout .title::before {
  content: '';
  width: 70px;
  background-color: #B39465;
  height: 2px;
  display: block;
  position: absolute;
  top: 39px;
  z-index: 1;
}

.checkout-pg .summary-checkout .card-body .item {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0 15px 0;
  border-bottom: 1px solid #ddd;
}

.checkout-pg .summary-checkout .card-body .item .prod-img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}

.checkout-pg .summary-checkout .card-body .item .info-inner {
  margin: 0 10px;
}

.checkout-pg .summary-checkout .card-body .item .info-inner .prod-name {
  margin-bottom: 0;
}

.checkout-pg .summary-checkout .card-body .item .info-inner .delete-btn {
  background-color: transparent;
  border: transparent;
  color: #FF4A63;
  font-size: 14px;
  font-weight: bold;
  margin-top: 18px;
}

.checkout-pg .summary-checkout .card-body .item .info-l .number-input {
  width: 50px;
  height: 25px;
  margin-left: auto;
}

.checkout-pg .summary-checkout .card-body .item .info-l .price {
  margin-bottom: 0;
  margin-top: 15px;
}

.checkout-pg .summary-checkout .footer-card {
  padding: 1.25rem;
}

.checkout-pg .summary-checkout .footer-card .form-group {
  position: relative;
}

.checkout-pg .summary-checkout .footer-card .form-group .code-input {
  height: 55px;
}

.checkout-pg .summary-checkout .footer-card .form-group .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #B39465;
  color: #fff;
  border: 1px solid #B39465;
  height: 55px;
  border-radius: 0 5px 5px 0;
}

.checkout-pg .summary-checkout .footer-card .summary_price .price_item {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bankAccModal .data-group {
  margin-bottom: 1.25rem;
}

.bankAccModal .data-group .label {
  color: #fff;
}

.bankAccModal .data-group .data {
  background-color: #0a0a05;
  color: #fff;
  padding: 15px 10px;
  margin-bottom: 0;
  margin-top: 1rem;
}

/***************************** Start Edit About Page *****************************/
.about-pg {
  position: relative;
  padding-bottom: 60px;
}

.about-pg::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0F0F08;
  opacity: .85;
}

.about-pg .counter-wrapper {
  background: url(../images/about-bg.jpg);
  background-size: cover;
  padding: 100px 0;
}

.about-pg .inner {
  position: relative;
  z-index: 3;
}

.about-pg .inner .text-heading .headline {
  color: #fff;
}

.about-pg .inner .text-heading .p {
  color: #ddd;
}

.about-pg .inner .counter_card {
  text-align: center;
}

.about-pg .inner .counter_card .num {
  color: #fff;
}

.about-pg .inner .counter_card .headline {
  color: #B69D74;
}

.about-pg .shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  opacity: .5;
  z-index: 2;
}

/***************************** Start Edit Contact Page *****************************/
.contact-sec {
  padding: 70px 0;
}

.contact_info .items {
  padding: 20px 15px;
  background-color: #242424;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}

.contact_info .items .icons {
  width: 20%;
  text-align: center;
  color: #fff;
}

.contact_info .items .icons i {
  font-size: 18px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #fff4;
}

.contact_info .items a.icons:hover {
  color: #B39465;
  border-color: #B39465;
}

.contact_info .items .info {
  width: 70%;
  padding: 15px;
}

.contact_info .items .info h6 {
  color: #f1f1f1;
  letter-spacing: 3px;
  margin-bottom: 10px;
  font-size: 14px;
}

.contact_info .items .info h3 {
  color: #B69D74;
  letter-spacing: 1px;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.form-container .form-group {
  margin-bottom: 1.4rem;
}

.form-container input,
.form-container select {
  height: 55px;
}

.form-container .form-control {
  border-radius: 0;
  background-color: #242424;
  border: 1px solid #242424;
  font-size: 14px;
  color: #fff;
}

.form-container .form-control::-webkit-input-placeholder {
  color: #666;
}

.form-container .form-control:-ms-input-placeholder {
  color: #666;
}

.form-container .form-control::-ms-input-placeholder {
  color: #666;
}

.form-container .form-control::placeholder {
  color: #666;
}

.form-container .form-control:focus {
  border: 1px solid #B69D74;
}

.form-container .custom-control .custom-control-label {
  color: #ccc;
}

.form-container .custom-control .custom-control-input:checked ~ .custom-control-label::before {
  border-color: #B39465;
  background-color: #B39465;
}

.form-container .custom-control .custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/***************************** Start Edit Register Page *****************************/
.register-sec {
  padding: 70px 0;
}

.register-sec .inner {
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 20px 0px #312311;
          box-shadow: 0px 0px 20px 0px #312311;
  margin: 10px 0px;
}

.register-sec .inner .form-container {
  padding: 50px 70px;
}

.register-sec .inner .form-container.register-pd {
  padding: 50px 10px 50px 30px;
}

.register-sec .inner .form-container .form-group {
  position: relative;
}

.register-sec .inner .form-container .form-group i {
  position: absolute;
  left: 13px;
  bottom: 18px;
  color: #b58240;
}

.register-sec .inner .form-container .form-group .form-control {
  padding-left: 40px;
}

.register-sec .inner .form-container .form-group .fa-eye {
  cursor: pointer;
}

.register-sec .inner .form-container .form-group .custom-control a {
  color: #b58240;
  margin: 0 5px;
}

.register-sec .inner .form-container .forgot-pass {
  color: #999;
  font-size: 12px;
  float: right;
  padding: 10px 0px;
}

.register-sec .inner .form-container .forgot-pass:hover {
  color: #b58240;
}

.register-sec .inner .form-container.code-form .phone-num {
  text-align: center;
  color: #b58240;
  font-size: 1.1rem;
  font-weight: 600;
}

.register-sec .inner .form-container.code-form p {
  color: #ccc;
}

.register-sec .inner .form-container.code-form .code-form-group {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.register-sec .inner .form-container.code-form .code-form-group input {
  width: 60px;
  display: inline-block;
  margin: auto;
  text-align: center;
  margin-bottom: 5px;
  padding: 0;
}

.register-sec .inner .form-container .btns-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.register-sec .inner .form-container .btns-wrapper .guest-btn {
  color: #C0986C;
  margin: 0 15px;
  line-height: 55px;
  background-color: transparent;
  border: transparent;
  padding: 0;
}

.register-sec .inner .form-container .btns-wrapper .guest-btn:hover {
  color: #7e673f;
}

.register-sec .inner .text {
  height: 100%;
  padding: 30px 0px;
  background: -webkit-gradient(linear, left top, left bottom, from(#0a0a05), to(#0e0e07));
  background: linear-gradient(#0a0a05 0%, #0e0e07 100%);
  border-radius: 20px 0px 0px 20px;
  position: relative;
}

.register-sec .inner .text.border-r {
  border-radius: 0px 20px 20px 0px;
}

.register-sec .inner .text .content {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.register-sec .inner .text .content h6 {
  color: #fff;
}

.register-sec .inner .text .content .logo {
  margin: 20px auto;
  width: 90%;
}

.register-sec .inner .text .content p {
  color: #ddd;
  line-height: 1.6rem;
}

.register-sec .inner .link-btn {
  width: 150px;
  height: 45px;
  line-height: 45px;
  background-color: #b58240;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  display: block;
  margin: auto;
}

.register-sec .inner .link-btn:hover {
  background-color: #B69D74;
}

.image-container {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid #B69D74;
  margin: auto;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.image-container input {
  position: absolute;
  bottom: 0;
  left: 64%;
  background-color: #fff;
  border-radius: 30px;
  display: inline-block;
  color: #222;
  width: 50px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  border: none;
  opacity: 0;
}

.image-container button {
  width: 45px;
  height: 45px;
  -webkit-box-shadow: 0px 0px 10px #555;
          box-shadow: 0px 0px 10px #555;
  background-color: #b58240;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  cursor: pointer !important;
  border: 1px solid #ddd;
  position: absolute;
  right: 2px;
  bottom: 0px;
}

.image-container button i {
  position: relative;
  top: 1px;
  cursor: pointer !important;
}

/***************************** Start Edit Products Page *****************************/
.products-pg {
  padding: 70px 0;
}

.products-pg .filter-wrapper {
  background-color: #242424;
  padding: 25px 15px;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.products-pg .filter-wrapper .panel {
  margin-bottom: 15px;
  border: 1px solid #B69D74;
  position: relative;
  background-color: #242424;
  border-radius: 15px;
  overflow: hidden;
}

.products-pg .filter-wrapper .panel .panel-heading {
  padding: 25px 20px;
  border-bottom: 1px solid #B69D74;
}

.products-pg .filter-wrapper .panel .panel-heading h4 {
  margin-bottom: 0;
}

.products-pg .filter-wrapper .panel .panel-heading h4 a {
  width: 100%;
  display: block;
  font-size: 1rem;
  color: #fff;
}

.products-pg .filter-wrapper .panel .panel-heading i {
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  position: absolute;
  right: 20px;
  top: 25px;
  color: #666;
  font-size: 18px;
}

.products-pg .filter-wrapper .panel .card-body label {
  color: #ccc;
}

.products-pg .filter-wrapper .panel .card-body .custom-control-label::before {
  background-color: #202020;
}

.products-pg .filter-wrapper .panel .card-body .custom-control {
  margin-bottom: 18px;
}

.products-pg .filter-wrapper .panel.active a {
  color: #B39465;
}

.products-pg .filter-wrapper .panel.active i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  color: #B39465;
}

.products-pg .filter-wrapper .form-group {
  position: relative;
}

.products-pg .filter-wrapper .form-group .form-control {
  border: 1px solid #B69D74;
  border-radius: 10px;
}

.products-pg .filter-wrapper .form-group i {
  color: #B69D74;
  position: absolute;
  right: 10px;
  top: 20px;
}

/***************************** Start Edit Cart Page *****************************/
.cart-pg .cart-item {
  margin-bottom: 20px;
  background-color: #242424;
  padding: 25px 20px;
}

.cart-pg .cart-item .prod-img {
  width: 100%;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
}

.cart-pg .cart-item .prod-det .prod-name,
.cart-pg .cart-item .prod-det .price {
  color: #B39465;
}

.cart-pg .cart-item .prod-det .categ-name {
  font-weight: 500;
  color: #ddd;
  display: block;
  margin-bottom: .5rem;
}

.cart-pg .cart-item .prod-det .det {
  margin-bottom: 0;
  color: #ccc;
}

.cart-pg .cart-item .prod-det .delete-btn {
  background-color: transparent;
  color: #bd3c3c;
  border: transparent;
  font-weight: 500;
}

.cart-pg .cart-item .prod-det .delete-btn:hover {
  color: red;
}

.in-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

/***************************** Start Edit Gallery Page *****************************/
.gallery-pg {
  padding: 70px 0;
}

.gallery-pg .gallery-card {
  background-color: #242424;
  margin-bottom: 35px;
}

.gallery-pg .gallery-card .gallery-img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-pg .gallery-card .title {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}

.gallery-pg .gallery-card:hover .title {
  color: #B39465;
}

/***************************** Start Edit profile Page *****************************/
.profile-pg {
  padding: 70px 0;
}

.profile-pg .side-r {
  border: 1px solid #b58240;
  background-color: transparent;
  border-radius: 25px;
  padding: 35px 15px;
}

.profile-pg .side-r .profile-info {
  text-align: center;
  border-bottom: 1px solid #b58240;
  padding-bottom: 10px;
}

.profile-pg .side-r .profile-info .profile-pic {
  width: 120px;
  height: 120px;
  border: 1px solid #b58240;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: auto;
}

.profile-pg .side-r .profile-info h6 {
  margin-top: 1rem;
  margin-bottom: .4rem;
  color: #fff;
}

.profile-pg .side-r .profile-info p {
  color: #ccc;
}

.profile-pg .side-r .nav {
  margin-top: 10px;
}

.profile-pg .side-r .nav .nav-link {
  padding: 1rem;
  color: #ccc;
  font-size: 14px;
}

.profile-pg .side-r .nav .nav-link .icon {
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 7px;
  -webkit-filter: invert(74%) sepia(0%) saturate(25%) hue-rotate(148deg) brightness(104%) contrast(109%);
          filter: invert(74%) sepia(0%) saturate(25%) hue-rotate(148deg) brightness(104%) contrast(109%);
}

.profile-pg .side-r .nav .nav-link.active {
  background-color: transparent;
  color: #b58240;
}

.profile-pg .side-r .nav .nav-link.active .icon {
  -webkit-filter: invert(58%) sepia(11%) saturate(2480%) hue-rotate(354deg) brightness(91%) contrast(77%);
          filter: invert(58%) sepia(11%) saturate(2480%) hue-rotate(354deg) brightness(91%) contrast(77%);
}

.profile-pg .tab-wrapper {
  border: 1px solid #b58240;
  border-radius: 25px;
  padding: 35px;
  min-height: 100%;
}

.profile-pg .tab-wrapper.info .item {
  margin-bottom: 15px;
}

.profile-pg .tab-wrapper.info .item .label {
  font-size: 12px;
  color: #ccc;
}

.profile-pg .tab-wrapper.info .item .content {
  background-color: #242424;
  border-radius: 0;
  padding: 15px 25px;
  margin: 10px 0 0 0;
  line-height: 1.8rem;
  font-size: 15px;
  color: #fff;
}

.profile-pg .tab-wrapper.info .item .content i {
  color: #B39465;
  margin: 0 5px;
}

.profile-pg .tab-wrapper.info .title {
  color: #B39465;
}

.profile-pg .tab-wrapper.info .btns-wrapper {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #0e0e07;
}

.profile-pg .tab-wrapper.info .link-btn {
  padding: .575rem 1.7rem;
  background-color: #B39465;
  color: #fff;
  border: transparent;
  display: inline-block;
  border-radius: 5px;
  font-weight: 500;
  margin: 0 2px;
}

.profile-pg .tab-wrapper.info .link-btn:hover {
  background-color: #b58240;
}

.profile-pg .tab-wrapper.info .link-btn.delete-btn {
  background-color: #bd3c3c;
}

.profile-pg .tab-wrapper.info .link-btn.delete-btn:hover {
  background-color: red;
}

.profile-pg .tab-wrapper.address {
  position: relative;
}

.profile-pg .tab-wrapper.address .add-another {
  margin-left: auto;
  display: block;
  margin-bottom: 50px;
  text-align: end;
}

.profile-pg .tab-wrapper.address .add-another .add-btn {
  background-color: transparent;
  border: transparent;
  color: #B39465;
}

.profile-pg .tab-wrapper.address .address-item {
  border: 1px solid #999;
  padding: 25px;
  background-color: #0e0e07;
  margin-bottom: 25px;
  border-radius: 30px;
  position: relative;
}

.profile-pg .tab-wrapper.address .address-item .address_title {
  position: absolute;
  top: -10px;
  left: 40px;
  background-color: #0e0e07;
  padding: 0 10px;
}

.profile-pg .tab-wrapper.orders-tab .nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.profile-pg .tab-wrapper.orders-tab .nav .nav-link {
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: .7rem 2.5rem;
  margin: 0 5px;
  color: #666;
  font-weight: bold;
}

.profile-pg .tab-wrapper.orders-tab .nav .nav-link.active {
  border: 1px solid #b58240;
  color: #fff;
  background-color: #b58240;
}

.profile-pg .tab-wrapper.orders-tab .order-card {
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 30px;
  margin-bottom: 25px;
  background-color: #202020;
}

.profile-pg .tab-wrapper.orders-tab .order-card .prod-img {
  width: 100%;
  height: 200px;
  border-radius: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto 15px auto;
}

.profile-pg .tab-wrapper.orders-tab .order-card .order-btn {
  width: 150px;
  height: 45px;
  line-height: 45px;
  color: #fff;
  text-align: center;
  position: relative;
  border-radius: 10px;
  background: transparent;
  font-size: 13px;
  border: solid 1px #b58240;
  background-color: #b58240;
  position: absolute;
  bottom: 0;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.profile-pg .tab-wrapper.orders-tab .order-card .order-btn:hover {
  border: solid 1px #B39465;
  background-color: #B39465;
}

.profile-pg .tab-wrapper.orders-tab .order-card .text-content {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.profile-pg .tab-wrapper.orders-tab .order-card .text-content h5 {
  color: #fff;
}

.profile-pg .tab-wrapper.orders-tab .order-card .text-content h5 .numb {
  font-weight: 700;
  color: #B69D74;
  margin: 0 10px;
}

.profile-pg .tab-wrapper.orders-tab .order-card .text-content .categ {
  color: #eee;
  font-weight: bold;
}

.profile-pg .tab-wrapper.orders-tab .order-card .text-content h6 {
  font-weight: 600;
  color: #ccc;
  margin-bottom: .8rem;
}

.profile-pg .tab-wrapper.orders-tab .order-card .text-content h6 span {
  color: #B39465;
  margin: 0 10px;
}

.profile-pg .tab-wrapper.orders-tab .order-card .text-content .date {
  color: #ddd;
}

.profile-pg .tab-wrapper.orders-tab .order-card .text-content .price {
  color: #B39465;
}

.profile-pg .tab-wrapper.orders-tab .align-left {
  text-align: left;
}

/***************************** Start Edit Order details Page *****************************/
.order-details .order-det-inner {
  border: 1px solid #999;
}

.order-details .order-details-heading {
  background-color: #101010;
  padding: 40px 35px;
}

.order-details .order-details-heading .data {
  color: #b58240;
  margin-bottom: 1rem;
}

.order-details .order-details-heading .data b {
  color: #fff;
  margin: 0 5px;
}

.order-details .cart-item {
  margin-bottom: 0;
  border-bottom: 1px solid #999;
}

/***************************** Light mode *****************************/
.theme-light {
  /*Navbar*/
  /*footer*/
  /* Public colors */
  /* Home Page */
  /* Checkout Page  */
  /* Sopping cart Page */
  /* Conatct Page  */
  /* Register Page */
  /* Gallery Page  */
  /* order-details Page  */
  /* Products Page  */
  /* Profile Page  */
  /* Single Product Page  */
}

.theme-light .navs-wrapper .navbar {
  background-color: #fff4e8;
}

.theme-light .navs-wrapper .sidebar {
  background-image: -webkit-gradient(linear, left top, right top, from(#C0986C), to(#a97e51));
  background-image: linear-gradient(to right, #C0986C, #a97e51);
}

.theme-light .navs-wrapper .sidebar h5 {
  color: #fff;
}

.theme-light .navs-wrapper .sidebar h5 .line {
  background-color: #ccc;
}

.theme-light .navs-wrapper .sidebar .card-body .nav-links .nav-link.active,
.theme-light .navs-wrapper .sidebar .card-body .nav-links .nav-link:hover {
  color: #333;
}

.theme-light .navs-wrapper .sidebar .card-body .nav-links .nav-link::before {
  -webkit-filter: invert(14%) sepia(15%) saturate(4%) hue-rotate(343deg) brightness(40%) contrast(85%);
          filter: invert(14%) sepia(15%) saturate(4%) hue-rotate(343deg) brightness(40%) contrast(85%);
}

.theme-light footer {
  background-color: #fff4e8;
}

.theme-light footer .copyright {
  background-color: #fde3c6;
}

.theme-light footer .copyright a {
  color: #C0986C;
}

.theme-light p {
  color: #333 !important;
}

.theme-light .form-container .form-control {
  background-color: #fff;
  border: 1px solid #fff;
  color: #333;
}

.theme-light .form-container .custom-control .custom-control-label {
  color: #444;
}

.theme-light .modal .modal-content {
  background-color: #fff;
}

.theme-light .modal .modal-title {
  color: #101010;
}

.theme-light .modal .modal-header .close {
  color: #333;
}

.theme-light .modal .form-control {
  background-color: #f7f7f7;
  border: 1px solid #f7f7f7;
  color: #333;
}

.theme-light .modal .form-control::-webkit-input-placeholder {
  color: #666;
}

.theme-light .modal .form-control:-ms-input-placeholder {
  color: #666;
}

.theme-light .modal .form-control::-ms-input-placeholder {
  color: #666;
}

.theme-light .modal .form-control::placeholder {
  color: #666;
}

.theme-light header .inner {
  border: 1px solid #C0986C;
  background-color: #ffe6c8;
}

.theme-light .dark-bg {
  background-color: #fff4e8;
}

.theme-light .prod-card .prod-name {
  color: #202020;
}

.theme-light .about-sec .text-box .heading {
  color: #202020;
}

.theme-light .checkout-pg .steps-wizard {
  background-color: #ffe6c8;
}

.theme-light .checkout-pg .steps-wizard .single_step .label {
  color: #333;
}

.theme-light .checkout-pg .form-container .cards-radio-btn .radio-card .card-input {
  background-color: #fff;
}

.theme-light .checkout-pg .form-container .cards-radio-btn .radio-card .circle {
  background-color: #eee;
  border: 1px solid #eee;
}

.theme-light .checkout-pg .form-container .cards-radio-btn .radio-card h6 {
  color: #444;
}

.theme-light .checkout-pg .form-container .cards-radio-btn .card-input-element:checked + .card-input h6 {
  color: #C0986C;
}

.theme-light .checkout-pg .form-container .cards-radio-btn .color_filter {
  -webkit-filter: invert(0%) sepia(99%) saturate(7482%) hue-rotate(62deg) brightness(0%) contrast(91%) !important;
          filter: invert(0%) sepia(99%) saturate(7482%) hue-rotate(62deg) brightness(0%) contrast(91%) !important;
}

.theme-light .checkout-pg .form-container .bankTransfer-form .file-input-group .wrap {
  background-color: #fff;
}

.theme-light .checkout-pg .form-container .bankTransfer-form .file-input-group .file__input,
.theme-light .checkout-pg .form-container .bankTransfer-form .file-input-group .checkout-pg .form-container .bankTransfer-form .file-input-group .file__value {
  background-color: #fff;
  color: #333;
}

.theme-light .checkout-pg .form-container .map-btn {
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  color: #333;
}

.theme-light .checkout-pg .form-container .btns-wrapper .prev-btn {
  color: #101010;
}

.theme-light .checkout-pg .form-container .branch-form .note {
  color: #333;
}

.theme-light .bankAccModal .data-group .label {
  color: #555;
}

.theme-light .bankAccModal .data-group .data {
  background-color: #f5f5f5;
  color: #202020;
}

.theme-light .cart-pg .cart-item {
  background-color: #ffe6c8;
}

.theme-light .cart-pg .cart-item .prod-det .categ-name {
  color: #999;
}

.theme-light .quantity-container .label {
  color: #444;
}

.theme-light .quantity-container .qt {
  border: 1px solid #e6caad;
  color: #C0986C;
}

.theme-light .contact_info .items {
  background-color: #ffe6c8;
}

.theme-light .contact_info .items h3 {
  color: #333;
}

.theme-light .contact_info .items h6 {
  color: #777;
}

.theme-light .contact_info .items .icons i {
  color: #C0986C;
  border: 1px solid #C0986C;
}

.theme-light .register-sec .inner {
  -webkit-box-shadow: 0px 0px 20px 0px #cbaf91;
          box-shadow: 0px 0px 20px 0px #cbaf91;
}

.theme-light .register-sec .inner .text {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffe3c2), to(#ebd4bb));
  background: linear-gradient(#ffe3c2 0%, #ebd4bb 100%);
}

.theme-light .register-sec .inner .text .content h6 {
  color: #333;
}

.theme-light .gallery-pg .gallery-card {
  background-color: #ffe6c8;
}

.theme-light .order-details .order-details-heading {
  background-color: #e5d2bc;
}

.theme-light .order-details .order-details-heading .data b {
  color: #333;
}

.theme-light .products-pg .filter-wrapper {
  background-color: #e1c8a3;
}

.theme-light .products-pg .filter-wrapper .panel {
  border: 1px solid #888;
  background-color: #e1c8a3;
}

.theme-light .products-pg .filter-wrapper .panel .panel-heading {
  border-bottom: 1px solid #888;
}

.theme-light .products-pg .filter-wrapper .panel .card-body .custom-control-label::before {
  background-color: #e1c8a3;
  border: #888 solid 1px;
}

.theme-light .products-pg .filter-wrapper .panel label {
  color: #333;
}

.theme-light .products-pg .filter-wrapper .form-group .form-control {
  border: 1px solid #888 !important;
  background-color: transparent !important;
}

.theme-light .products-pg .filter-wrapper .form-group .form-control::-webkit-input-placeholder {
  color: #fff;
}

.theme-light .products-pg .filter-wrapper .form-group .form-control:-ms-input-placeholder {
  color: #fff;
}

.theme-light .products-pg .filter-wrapper .form-group .form-control::-ms-input-placeholder {
  color: #fff;
}

.theme-light .products-pg .filter-wrapper .form-group .form-control::placeholder {
  color: #fff;
}

.theme-light .profile-pg .side-r .nav .nav-link {
  color: #333;
}

.theme-light .profile-pg .side-r .nav .nav-link .icon {
  -webkit-filter: invert(14%) sepia(0%) saturate(0%) hue-rotate(196deg) brightness(101%) contrast(85%);
          filter: invert(14%) sepia(0%) saturate(0%) hue-rotate(196deg) brightness(101%) contrast(85%);
}

.theme-light .profile-pg .side-r .nav .nav-link.active {
  color: #b58240;
}

.theme-light .profile-pg .side-r .nav .nav-link.active .icon {
  -webkit-filter: invert(58%) sepia(11%) saturate(2480%) hue-rotate(354deg) brightness(91%) contrast(77%);
          filter: invert(58%) sepia(11%) saturate(2480%) hue-rotate(354deg) brightness(91%) contrast(77%);
}

.theme-light .profile-pg .tab-wrapper.info .item .label {
  color: #333;
}

.theme-light .profile-pg .tab-wrapper.info .item .content {
  background-color: #fff;
  color: #0000;
}

.theme-light .profile-pg .tab-wrapper.address .address-item {
  background-color: transparent;
}

.theme-light .profile-pg .tab-wrapper.address .address-item .address_title {
  background-color: #FFF4E8;
}

.theme-light .profile-pg .tab-wrapper.address .address-item .btns-wrapper {
  background-color: #FFF4E8;
}

.theme-light .profile-pg .tab-wrapper.orders-tab .order-card {
  background-color: #ffe6c8;
}

.theme-light .profile-pg .tab-wrapper.orders-tab .order-card .text-content h5 {
  color: #101010;
}

.theme-light .profile-pg .tab-wrapper.orders-tab .order-card .text-content .categ {
  color: #555;
}

.theme-light .profile-pg .tab-wrapper.orders-tab .order-card .text-content .date {
  color: #555;
}

.theme-light .profile-pg .tab-wrapper.orders-tab .order-card .text-content h6 {
  color: #444;
}

.theme-light .single-product .prod-details .prod-name {
  color: #101010;
}

.theme-light .single-product .reviews-wrapper .review-heading {
  color: #101010;
}

.themeToggler {
  /* The switch - the box around the slider */
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */
}

.themeToggler .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.themeToggler .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.themeToggler .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.themeToggler .slider:before {
  position: absolute;
  content: "Dark";
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: bold;
  font-size: 11px;
  left: 0px;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid #C0986C;
  background-color: #0F0F08;
  color: #B69D74;
  -webkit-box-shadow: 0 0px 15px #2020203d;
          box-shadow: 0 0px 15px #2020203d;
}

.themeToggler input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #C0986C;
          box-shadow: 0 0 1px #C0986C;
}

.themeToggler input:checked + .slider:before {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
  content: "Light";
  background-color: #C0986C;
  border: 1px solid #C0986C;
  color: #fff;
}

.themeToggler .slider.round {
  border-radius: 34px;
}

.themeToggler .slider.round:before {
  border-radius: 50%;
}
/*# sourceMappingURL=style.css.map */