* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Almarai', sans-serif;
}

*::-moz-selection {
  background-color: #011132;
  color: #fff;
}

*::selection {
  background-color: #011132;
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: #BCA66C;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #574D47;
}

/**********************************************
   Start Global Style
**********************************************/
p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
}

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 #B39465 !important;
}

.scroll-top-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: linear-gradient(-135deg, #555, #000);
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  border-radius: 0 15px 0 0;
  -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: 22px;
  -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;
}

/**********************************************
   Start 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 criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 675px;
    height: 675px;
  }
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 675px;
    height: 675px;
  }
}

@-webkit-keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 675px;
    height: 675px;
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 675px;
    height: 675px;
  }
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.text-focus-in {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes tilt-in-fwd-bl {
  0% {
    -webkit-transform: rotateY(-20deg) rotateX(-35deg) translate(-300px, 300px) skew(-35deg, 10deg);
            transform: rotateY(-20deg) rotateX(-35deg) translate(-300px, 300px) skew(-35deg, 10deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
            transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}

@keyframes tilt-in-fwd-bl {
  0% {
    -webkit-transform: rotateY(-20deg) rotateX(-35deg) translate(-300px, 300px) skew(-35deg, 10deg);
            transform: rotateY(-20deg) rotateX(-35deg) translate(-300px, 300px) skew(-35deg, 10deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
            transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}

.tilt-in-fwd-bl {
  -webkit-animation: tilt-in-fwd-bl 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: tilt-in-fwd-bl 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes tilt-in-fwd-br {
  0% {
    -webkit-transform: rotateY(20deg) rotateX(-35deg) translate(300px, 300px) skew(35deg, -10deg);
            transform: rotateY(20deg) rotateX(-35deg) translate(300px, 300px) skew(35deg, -10deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
            transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}

@keyframes tilt-in-fwd-br {
  0% {
    -webkit-transform: rotateY(20deg) rotateX(-35deg) translate(300px, 300px) skew(35deg, -10deg);
            transform: rotateY(20deg) rotateX(-35deg) translate(300px, 300px) skew(35deg, -10deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
            transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}

.tilt-in-fwd-br {
  -webkit-animation: tilt-in-fwd-br 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: tilt-in-fwd-br 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container {
  position: relative;
  z-index: 9;
}

.navs-container .top-nav {
  background-color: #011132;
}

.navs-container .top-nav .inner {
  padding: 15px 0;
}

.navs-container .top-nav .register-butns {
  color: #ccc;
}

.navs-container .top-nav .register-butns a {
  color: #eee;
  margin: 0 5px;
  font-size: 13px;
}

.navs-container .top-nav .register-butns a:hover {
  color: #BCA66C;
}

.navs-container .top-nav .nav_l {
  text-align: end;
}

.navs-container .top-nav .social-links {
  display: inline-block;
}

.navs-container .top-nav .social-links a {
  color: #ddd;
  margin: 0 6px;
}

.navs-container .top-nav .social-links a:hover {
  color: #BCA66C;
  -webkit-animation: tada 1s both;
          animation: tada 1s both;
}

.navs-container .top-nav .search-link {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  display: inline-block;
  background-color: #eee;
  color: #555;
  text-align: center;
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
  font-size: 12px;
  background-color: #010c22;
  color: #ddd;
}

.navs-container .top-nav .search-link .icon {
  width: 15px;
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(280deg) brightness(158%) contrast(102%);
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(280deg) brightness(158%) contrast(102%);
}

.navs-container .top-nav .search-link:hover {
  background-color: #BCA66C;
  color: #fff;
}

.navs-container .top-nav .search-link:hover .icon {
  -webkit-filter: invert(100%) sepia(6%) saturate(0%) hue-rotate(20deg) brightness(204%) contrast(108%);
          filter: invert(100%) sepia(6%) saturate(0%) hue-rotate(20deg) brightness(204%) contrast(108%);
}

.navs-container .navbar {
  background-color: #fff;
}

.navs-container .navbar .logo {
  width: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .navbar .nav-link {
  position: relative;
  margin: 0 14px;
  color: #011132;
}

.navs-container .navbar .nav-link::after {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  background-color: #011132;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.navs-container .navbar .nav-link.active::after, .navs-container .navbar .nav-link:hover::after {
  width: 100%;
}

.navs-container .navbar .nav-link.active {
  font-weight: bold;
}

.navs-container .navbar .has-dropdown {
  position: relative;
}

.navs-container .navbar .has-dropdown::after {
  content: '\f107';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 10px;
  color: #011132;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.navs-container .navbar .has-dropdown .drop-down {
  position: absolute;
  width: 250px;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #eee;
  -webkit-box-shadow: 0 0 15px 0 #eee;
          box-shadow: 0 0 15px 0 #eee;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  z-index: 5;
}

.navs-container .navbar .has-dropdown .drop-down .link {
  display: block;
  padding: 15px 10px;
  font-size: 14px;
}

.navs-container .navbar .has-dropdown .drop-down .link .icon {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.navs-container .navbar .has-dropdown .drop-down .link:hover {
  background-color: #BCA66C;
  color: #fff;
}

.navs-container .navbar .has-dropdown .drop-down .link:hover .icon {
  -webkit-filter: invert(100%) sepia(0%) saturate(6722%) hue-rotate(308deg) brightness(97%) contrast(100%);
          filter: invert(100%) sepia(0%) saturate(6722%) hue-rotate(308deg) brightness(97%) contrast(100%);
}

.navs-container .navbar .has-dropdown:hover::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.navs-container .navbar .has-dropdown:hover .drop-down {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.navs-container .navbar .nav-icons .icon-link {
  margin: 0 8px;
}

.navs-container .navbar .nav-icons .icon-link .icon {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .navbar .nav-icons .icon-link .num {
  font-size: 12px;
  -webkit-margin-end: 4px;
          margin-inline-end: 4px;
}

.navs-container .navbar .nav-icons .icon-link:hover {
  -webkit-filter: invert(100%) sepia(45%) saturate(2150%) hue-rotate(318deg) brightness(78%) contrast(84%);
          filter: invert(100%) sepia(45%) saturate(2150%) hue-rotate(318deg) brightness(78%) contrast(84%);
}

.navs-container .navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

.navs-container .search-container {
  position: fixed;
  z-index: 9999999999;
  top: 0;
}

.navs-container .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-container .search-container #search::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #02050c;
  opacity: .9;
}

.navs-container .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-container .search-container #search:target .close-btn {
  display: block;
}

.navs-container .search-container form {
  position: relative;
}

.navs-container .search-container form .form-control {
  border-radius: 0;
  background: transparent;
  position: relative;
  z-index: 99;
  border: 1px solid #eee;
  color: #fff;
  font-size: 18px;
  outline: 0;
  padding: 1rem 1.375rem;
  height: 55px;
  border-radius: 15px;
}

.navs-container .search-container form .form-control::-webkit-input-placeholder {
  color: #ccc;
}

.navs-container .search-container form .form-control:-ms-input-placeholder {
  color: #ccc;
}

.navs-container .search-container form .form-control::-ms-input-placeholder {
  color: #ccc;
}

.navs-container .search-container form .form-control::placeholder {
  color: #ccc;
}

.navs-container .search-container form .form-control:focus {
  border: 1px solid #B39465;
}

.navs-container .search-container form .submit-btn {
  position: absolute;
  left: 5px;
  top: 14px;
  background-color: transparent;
  color: #B39465;
  border: 1px solid transparent;
}

.navs-container .search-container .close-btn {
  display: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: .5rem;
  right: 2rem;
}

.footer {
  padding: 70px 0 0 0;
  background-color: #011132;
}

.footer .content .logo {
  width: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer .content .box .label {
  color: #eee;
  font-size: 13px;
}

.footer .content .box .data {
  color: #fff;
}

.footer .content .marof-logo {
  width: 100px;
  margin: 10px 0;
}

.footer .content .contact-links a {
  color: #eee;
  font-size: 17px;
  margin: 10px;
}

.footer .content .contact-links a i {
  color: #BCA66C;
  margin: 0 5px;
}

.footer .content .contact-links a:hover {
  color: #ccb67f;
}

.footer .content .links a {
  display: block;
  margin: 15px 0;
  color: #eee;
  font-size: 14px;
}

.footer .content .links a:hover {
  color: #BCA66C;
}

.footer .footer_b {
  border-top: 1px solid rgba(226, 226, 226, 0.2);
  padding: 25px 0;
}

.footer .footer_b .links a {
  margin: 0 10px;
  color: #eee;
  font-size: 14px;
}

.footer .footer_b .links a:hover {
  color: #BCA66C;
}

.footer .footer_b .imgs-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: 100%;
}

.footer .footer_b .imgs-box .payment_img {
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
    Start Public Classes
**********************************************/
.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.in-flex {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

.sec-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gold_l {
  color: #BCA66C;
}

.gold_d {
  color: #77623E;
}

.butn {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  padding: .65rem 2rem;
  border-radius: 25px;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
  border: none;
}

.butn span {
  position: relative;
  z-index: 5;
}

.butn span i {
  margin: 0 5px;
}

.butn::before, .butn::after {
  position: absolute;
  top: 50%;
  content: "";
  width: 20px;
  height: 20px;
  background-color: #011132;
  border-radius: 50%;
}

.butn::before {
  left: -20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.butn::after {
  right: -20px;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.butn:hover {
  color: #BCA66C;
}

.butn:hover::before {
  -webkit-animation: criss-cross-left 1s both;
          animation: criss-cross-left 1s both;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

.butn:hover::after {
  -webkit-animation: criss-cross-right 1s both;
          animation: criss-cross-right 1s both;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

.butn.dark-butn {
  background-color: #011132;
  color: #fff;
}

.butn.dark-butn::before, .butn.dark-butn::after {
  background-color: #BCA66C;
}

.sec-title {
  color: #011132;
  font-weight: 800;
}

.swiper-pagination-bullet {
  width: 35px;
  height: 5px;
  background-color: #ccc;
  border-radius: 5px;
  opacity: .6;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #BCA66C;
}

.dir-l {
  direction: ltr;
}

.pg-header {
  background-image: -webkit-gradient(linear, left top, right top, from(#B39465), to(#94835C));
  background-image: linear-gradient(to right, #B39465, #94835C);
  padding: 20px 0;
  position: relative;
}

.pg-header .inner {
  position: relative;
  z-index: 2;
}

.pg-header .inner .breadcrumb {
  background-color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}

.pg-header .inner .breadcrumb a {
  color: #fff;
}

.pg-header .inner .breadcrumb .breadcrumb-item.active {
  color: #eee;
  font-weight: bold;
}

.pg-header .inner .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-left: .5rem;
  color: #010c22;
  content: "\f192";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.pg-header .inner .title {
  text-align: center;
  color: #fff;
  font-weight: 700;
  display: none;
}

.pg-header .line {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
}

.pagination-wrapper .pagination {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.pagination-wrapper .pagination .page-link {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  margin: 0 3px;
  padding: 0;
  text-align: center;
  color: #888;
}

.pagination-wrapper .pagination .page-link:hover {
  background-color: #B39465 !important;
  color: #fff !important;
}

.custom-control-input:checked ~ .custom-control-label::before {
  border-color: transparent !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background-color: #BCA66C !important;
}

/*quantity-container*/
.quantity-container .qt-plus,
.quantity-container .qt-minus {
  width: 40px;
  height: 40px;
  line-height: 40px;
  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;
  border-radius: 5px;
  color: #555;
  font-size: 10px;
  vertical-align: middle;
  display: inline-flex;
  cursor: pointer;
  background-color: #f8f8f8;
}

.quantity-container .qt-plus:hover,
.quantity-container .qt-minus:hover {
  background-color: #C0986C !important;
  color: #fff;
}

.quantity-container .qt-plus .fa,
.quantity-container .qt-minus .fa {
  font-weight: 300;
}

.quantity-container .qt {
  display: inline-block;
  min-width: 30px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.44;
  color: #202020;
  vertical-align: middle;
  margin-right: 5px;
  margin-left: 5px;
  text-align: center;
}

/* Start Edit Modal */
.modal-content {
  border-radius: 45px;
  padding: 25px;
}

.modal-content button.close {
  text-align: end;
}

.modal-content .modal-footer {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal-content .modal-footer .btn-secondary {
  border-radius: 15px;
  width: 100px;
  height: 45px;
}

.modal-content .modal-footer .main-butn {
  width: 180px;
  height: 45px;
  line-height: 45px;
  padding: 0;
  border: 1px solid #C0986C;
  color: #fff;
  background-color: #C0986C;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  display: block;
  margin: 15px 2px;
  border-radius: 10px;
}

.modal-content .modal-footer .main-butn:hover {
  background-color: #010c22;
}

.color_gold {
  color: #B39465;
  font-weight: bold;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  position: relative;
  padding: 0 0 20px 0;
  background-color: #E8E8E8;
  overflow: hidden !important;
}

.header .inner .text-box {
  -webkit-padding-start: 12vw;
          padding-inline-start: 12vw;
}

.header .inner .text-box .subtitle {
  font-weight: 500;
}

.header .inner .text-box .title {
  font-size: calc(35px + 3.5vw);
  color: #574D47;
}

.header .inner .text-box .det {
  line-height: 2rem;
}

.header .inner .sec-img {
  position: relative;
}

.header .inner .sec-img img {
  width: 100%;
  height: 600px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  left: -125px;
  margin-top: -66px;
}

.header .inner .sec-img .button {
  display: inline-block;
  position: relative;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-125px, -60px);
          transform: translate(-125px, -60px);
  color: #000611;
  font-size: 70px;
}

.header .inner .sec-img .button.is-play {
  background-color: #fff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
}

.header .inner .sec-img .button.is-play .button-outer-circle {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.header .inner .sec-img .button.is-play .button-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.header .inner .sec-img .button.is-play .button-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.header .inner .sec-img .button.is-play .button-icon .triangle {
  -webkit-animation: fadeIn 7s ease;
  animation: fadeIn 7s ease;
}

.header .inner .sec-img .button.is-play .button-icon .path {
  stroke-dasharray: 90;
  stroke-dashoffset: 0;
  -webkit-animation: triangleStroke 3s;
  animation: triangleStroke 3s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}

.header .inner .sec-img .has-scale-animation {
  -webkit-animation: smallScale 3s infinite;
  animation: smallScale 3s infinite;
}

.header .inner .sec-img .has-delay-short {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes triangleStroke {
  from {
    stroke-dashoffset: 90;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes triangleStroke {
  from {
    stroke-dashoffset: 90;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes smallScale {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes smallScale {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}

.about-sec {
  position: relative;
  padding: 70px 0;
}

.about-sec .accordion-box .card {
  border: transparent;
  border-bottom: 1px solid #eee !important;
  background: transparent;
  border-radius: 0;
}

.about-sec .accordion-box .card .card-header {
  background-color: transparent;
}

.about-sec .accordion-box .card .card-header .btn {
  color: #011132;
  text-decoration: none;
}

.about-sec .accordion-box .card .card-header .btn::before {
  content: '\f067';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  color: #555;
}

.about-sec .accordion-box .card .card-body {
  font-size: 13px;
  color: #777;
  line-height: 1.7rem;
}

.about-sec .accordion-box .active .card-header .btn {
  color: #BCA66C !important;
}

.about-sec .accordion-box .active .card-header .btn::before {
  content: '\f068' !important;
  color: #BCA66C !important;
}

.about-sec .sec-img {
  height: 430px;
}

.categ-sec {
  position: relative;
  padding: 70px 0;
  background-color: #F8F7F7;
}

.categ-sec .categ_card {
  position: relative;
  margin-bottom: 25px;
}

.categ-sec .categ_card .img-box {
  height: 400px;
  position: relative;
}

.categ-sec .categ_card .img-box::before {
  content: '';
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background-color: transparent;
  display: block;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 4px solid rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.categ-sec .categ_card .title {
  text-align: center;
  font-weight: 600;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.categ-sec .categ_card:hover .img-box::before {
  width: 100%;
  height: 100%;
  border: 4px solid rgba(188, 166, 108, 0.5);
}

.categ-sec .categ_card:hover .title {
  color: #BCA66C !important;
}

.products-sec {
  position: relative;
  padding: 70px 0;
}

.products-sec .prod_card {
  background-color: #FAFAFA;
  border-radius: 8px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  margin-bottom: 25px;
}

.products-sec .prod_card .img-box {
  height: 260px;
  padding: 10px;
  position: relative;
}

.products-sec .prod_card .img-box .sec-img {
  border-radius: 8px 8px 0 0;
}

.products-sec .prod_card .img-box .fav-butn {
  color: #fff;
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 27px;
}

.products-sec .prod_card .img-box .fav-butn.active {
  color: #B39465;
}

.products-sec .prod_card .img-box .fav-butn:hover {
  -webkit-animation: tada 1s both;
          animation: tada 1s both;
}

.products-sec .prod_card .card-body .title {
  color: #202020;
}

.products-sec .prod_card .card-body .price {
  color: #011132;
}

.products-sec .prod_card .cart-butn {
  width: 100%;
  border-radius: 0 0 15px 15px;
  padding: .9rem 2rem;
}

.products-sec .prod_card .cart-butn .icon {
  width: 17px;
  height: 17px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: invert(100%) sepia(6%) saturate(0%) hue-rotate(20deg) brightness(154%) contrast(108%);
          filter: invert(100%) sepia(6%) saturate(0%) hue-rotate(20deg) brightness(154%) contrast(108%);
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.products-sec .prod_card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.products-sec .swiper-pagination {
  bottom: 0;
}

.reviews-sec {
  position: relative;
  padding: 70px 0;
  background-color: #011132;
}

.reviews-sec .review_card {
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  padding: 2rem;
  border-radius: 10px;
}

.reviews-sec .review_card .title {
  color: #fff;
  font-weight: bold;
  margin-bottom: 1rem;
}

.reviews-sec .review_card .det {
  color: #ddd;
  line-height: 1.8rem;
  font-size: 13px;
}

.reviews-sec .review_card .rate i {
  color: #192234;
  font-size: 20px;
}

.reviews-sec .review_card .rate i.active {
  color: #BCA66C;
}

.reviews-sec .review_card .prof-data .name {
  color: #fff;
}

.reviews-sec .review_card .prof-data .job {
  color: #eee;
  margin-bottom: 0;
}

.reviews-sec .pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: .2;
}

.reviews-sec .swiper-pagination {
  bottom: 0;
}

.features-sec {
  position: relative;
  padding: 70px 0;
}

.features-sec .sec-heading {
  background-color: #fff;
  padding: 2rem;
}

.features-sec .inner {
  background-color: #fff;
  -webkit-box-shadow: 0 5px 15px 0 #eee;
          box-shadow: 0 5px 15px 0 #eee;
  padding: 2rem 0;
}

.features-sec .inner .feature_card {
  padding: 1.25rem;
  position: relative;
  border-left: 1px solid #eee;
  text-align: center;
}

.features-sec .inner .feature_card .icon {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 15px auto;
}

.features-sec .inner .feature_card .title {
  font-weight: bold;
  color: #011132;
}

.features-sec .inner .feature_card .det {
  font-size: 13px;
  margin-bottom: 0;
}

.features-sec .inner .feature_card:hover .icon {
  -webkit-animation: tada 1s both;
          animation: tada 1s both;
}

.features-sec .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70%;
  -o-object-fit: cover;
     object-fit: cover;
}

.newsletter-sec {
  position: relative;
  padding: 30px 0 60px 0;
}

.newsletter-sec .form-group {
  position: relative;
}

.newsletter-sec .form-group .form-control {
  height: 55px;
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 25px;
}

.newsletter-sec .form-group .butn {
  position: absolute;
  top: 5px;
  left: 5px;
  border: none;
}

/**********************************************
    Start Edit Single Product Page 
**********************************************/
.single-product {
  position: relative;
  padding: 70px 0;
}

.single-product .text-box .border-b {
  border-bottom: 1px solid #ddd;
}

.single-product .text-box .title {
  font-weight: bold;
  color: #011132;
}

.single-product .text-box .rate i {
  color: #ccc;
  font-size: 16px;
}

.single-product .text-box .rate i.active {
  color: #BCA66C;
}

.single-product .text-box .rate span {
  font-size: 13px;
  margin: 0 5px;
  color: #666;
}

.single-product .text-box .prices-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single-product .text-box .prices-wrapper .price {
  color: #BCA66C;
}

.single-product .text-box .prices-wrapper .prev_price {
  text-decoration: line-through;
  color: #666;
  margin: 0 10px;
}

.single-product .text-box .det {
  font-size: 13px;
  line-height: 1.7rem;
}

.single-product .text-box .form-group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single-product .text-box .form-group .label {
  font-size: 12px;
  font-weight: bold;
  color: #666;
  margin-bottom: 0;
  width: 100px;
  text-align: center;
}

.single-product .text-box .form-group .form-control {
  height: 50px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: bold;
}

.single-product .text-box .butns-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.single-product .text-box .butns-wrapper .butn {
  border: 1px solid #ccc;
  margin: 0 5px;
}

.single-product .text-box .butns-wrapper .butn .icon {
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

.single-product .text-box .butns-wrapper .butn.dark-butn .icon,
.single-product .text-box .butns-wrapper .butn:hover .icon {
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(243deg) brightness(109%) contrast(102%);
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(243deg) brightness(109%) contrast(102%);
}

.single-product .lg-slide-swiper {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

.single-product .lg-slide-swiper .img-box {
  position: relative;
  overflow: hidden;
}

.single-product .lg-slide-swiper .img-box .lg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
  border-radius: 15px;
  border: 1px solid #999;
  padding: 10px;
}

.single-product .lg-slide-swiper .swiper-slide-active .lg-img {
  -webkit-animation: fadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: fadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.single-product .sm-slide-swiper {
  overflow: hidden;
}

.single-product .sm-slide-swiper .swiper-slide {
  opacity: .5;
  cursor: pointer;
}

.single-product .sm-slide-swiper .sm-bg-header {
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  border: 1px solid #ddd;
  padding: 10px;
}

.single-product .sm-slide-swiper .swiper-slide-thumb-active {
  opacity: 1;
}

.single-product .sm-slide-swiper .swiper-slide-thumb-active .sm-bg-header {
  border: 1px solid #BCA66C !important;
}

.single-product .img-box,
.single-product .sm-slide-swiper {
  height: 500px;
}

.single-product2 .text-box .categ {
  font-weight: bold;
  color: #888;
}

.single-product2 .text-box .form-group {
  display: block;
}

.single-product2 .text-box .form-group .label {
  text-align: start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: .5rem;
}

.single-product2 .img-box {
  height: 400px;
}

.single-product2 .lg-slide-swiper {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 25px;
}

.single-product2 .sm-slide-swiper {
  height: auto;
}

.single-product2 .nav .nav-link {
  margin: 0 5px;
  padding: .7rem 2.5rem;
  border: 1px solid #BCA66C;
}

.single-product2 .nav .nav-link.active {
  background-color: #BCA66C;
  color: #fff;
}

.single-product2 .table {
  text-align: center;
}

.single-product2 .table td,
.single-product2 .table th {
  border-top: none !important;
  border: 1px solid #eee !important;
}

.single-product2 .table .table-secondary tbody + tbody,
.single-product2 .table .table-secondary td,
.single-product2 .table .table-secondary th,
.single-product2 .table .table-secondary thead th {
  background-color: #f8f8f8 !important;
}

.single-product2 .det {
  font-size: 14px;
  line-height: 1.8rem;
  margin-bottom: .5rem;
  color: #999;
}

.review_card {
  background-color: #f5f5f5;
  position: relative;
  padding: 2rem;
  border-radius: 10px;
}

.review_card::before {
  content: '\f10d';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  color: #888;
  font-size: 30px;
  position: absolute;
  left: 30px;
  top: 30px;
  opacity: .7;
}

.review_card .title {
  color: #011132;
  font-weight: bold;
  margin-bottom: 1rem;
}

.review_card .det {
  color: #555;
  line-height: 1.8rem;
  font-size: 13px;
}

.review_card .rate i {
  color: #ccc;
  font-size: 20px;
}

.review_card .rate i.active {
  color: #BCA66C;
}

.review_card .prof-data .name {
  color: #BCA66C;
}

.review_card .prof-data .job {
  color: #011132;
  margin-bottom: 0;
}

/**********************************************
    Start Edit Product Page 
**********************************************/
.products-pg .filter-wrapper {
  background-color: #f9f9f9;
  padding: 40px 15px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.products-pg .filter-wrapper .form-group {
  position: relative;
}

.products-pg .filter-wrapper .form-group .form-control {
  border: 1px solid #ddd;
  border-radius: 10px;
  height: 55px;
  background-color: transparent;
}

.products-pg .filter-wrapper .form-group i {
  color: #ddd;
  position: absolute;
  left: 10px;
  top: 20px;
}

.products-pg .filter-wrapper .box .title {
  font-weight: bold;
  position: relative;
  margin-bottom: 35px;
}

.products-pg .filter-wrapper .box .title::after {
  content: '';
  display: block;
  position: absolute;
  top: 35px;
  background: url(../images/title-line.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 10px;
  opacity: .8;
  -webkit-filter: invert(65%) sepia(44%) saturate(352%) hue-rotate(357deg) brightness(86%) contrast(85%);
          filter: invert(65%) sepia(44%) saturate(352%) hue-rotate(357deg) brightness(86%) contrast(85%);
}

.products-pg .filter-wrapper .box .content a {
  display: block;
  margin-bottom: 15px;
}

.products-pg .filter-wrapper .box .content a small {
  color: #888;
}

.products-pg .filter-wrapper .box .content a::before {
  content: '\f111';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  color: #ddd;
  font-size: 8px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.products-pg .filter-wrapper .box .content a:hover {
  color: #B39465;
}

.products-pg .filter-wrapper .box .price-wrapper {
  position: relative;
}

.products-pg .filter-wrapper .box .price-wrapper .asRange {
  width: 90%;
  margin: auto;
}

.products-pg .filter-wrapper .box .price-wrapper .asRange .asRange-selected {
  background-color: #B39465;
}

.products-pg .filter-wrapper .box .price-wrapper .asRange .asRange-pointer:before {
  background: #011132;
}

.products-pg .banner {
  margin-top: 50px;
  height: 440px;
}

.products-pg .filter-row .grid-toggle-butns {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.products-pg .filter-row .grid-toggle-butns .btn-view {
  border: 1px solid transparent;
  color: #999;
  background-color: transparent;
  margin-left: 5px;
  line-height: 15px;
}

.products-pg .filter-row .grid-toggle-butns .btn-view.active {
  color: #B39465;
}

.products-pg .filter-row .title {
  font-weight: bold;
  display: inline-block;
  color: #011132;
}

.products-pg .filter-row .title small {
  font-size: 70%;
  color: #888;
}

.products-pg .filter-row .form-control {
  padding: 0;
  border: transparent !important;
}

.products-pg .rate i {
  color: #ccc;
  font-size: 16px;
}

.products-pg .rate i.active {
  color: #BCA66C;
}

.products-pg .list-view .row > [class*='col-'] {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.products-pg .list-view .prod_card {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.products-pg .list-view .prod_card .img-box {
  width: 300px;
  height: 300px;
  display: inline-block;
}

.products-pg .list-view .prod_card .card-body {
  display: inline-block;
  width: calc(100% - 320px);
}

@media (max-width: 575.98px) {
  .products-pg .list-view .prod_card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .products-pg .list-view .prod_card .image-content {
    width: 100%;
  }
}

/**********************************************
    Start Edit Cart Page 
**********************************************/
.cart-pg {
  position: relative;
  padding: 70px 0;
  background: #f9f9f9;
}

.cart-pg .inner {
  background-color: #fff;
  padding: 35px 25px;
}

.cart-pg .inner table td,
.cart-pg .inner table th {
  vertical-align: middle;
}

.cart-pg .inner table th {
  border-bottom: 1px solid #dee2e6;
  border-top: 1px solid transparent;
}

.cart-pg .inner table .prod {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.cart-pg .inner table .prod .prod-img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.cart-pg .inner table .prod .prod-name {
  padding: 10px 15px;
  margin: 0;
  font-size: .8rem;
  line-height: 1.5rem;
}

.cart-pg .inner table td {
  font-size: 14px;
  border-bottom: 1px solid #ddd;
}

.cart-pg .inner table .price_td {
  position: relative;
}

.cart-pg .inner table .price_td .price {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .5px;
}

.cart-pg .inner table .price_td .last_price {
  text-decoration: line-through;
  color: #888;
  font-size: 14px;
}

.cart-pg .inner table .price_td .disbount {
  position: absolute;
  top: 27px;
  left: 5px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  display: block;
  background-color: #ACFEC7;
  text-align: center;
  font-size: 11px;
}

.cart-pg .inner table .delete-btn {
  width: 40px;
  height: 40px;
  background-color: #e17676;
  border: 1px solid #F56B6B;
  color: #fff;
  border-radius: 50%;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  display: block;
}

.cart-pg .inner table .delete-btn:hover {
  background-color: #C0986C;
  border: 1px solid #C0986C;
}

.cart-pg .inner table .det {
  width: 200px;
  font-size: 12px;
  line-height: 1.6rem;
}

.cart-pg .form-group {
  position: relative;
}

.cart-pg .form-group .form-control {
  height: 55px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 12px;
}

.cart-pg .form-group .submit-btn {
  position: absolute;
  top: 15px;
  left: 5px;
  background-color: transparent;
  border: transparent;
  color: #888;
}

.cart-pg .form-group .submit-btn:hover {
  color: #C0986C;
}

.cart-pg .cart_summary {
  padding: 15px 0;
}

.cart-pg .cart_summary .item {
  margin: 10px 0;
}

.cart-pg .cart_summary .item .labeled {
  font-weight: 700;
}

.cart-pg .cart_summary .item .last_price {
  text-decoration: line-through;
  color: #888;
  font-size: 14px;
  padding: 0 5px;
}

.cart-pg .cart_summary .item.last_iten {
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

.cart-pg .cart_summary .butn {
  width: 100%;
}

.checkout-pg {
  position: relative;
  padding: 70px 0;
}

.checkout-pg .checkout-form .form-group.row {
  margin: 0 0 1.6rem 0;
}

.checkout-pg .checkout-form .map-btn {
  background-color: #434343;
  border: 1px solid #434343;
  color: #fff;
  font-size: 12px;
  border-radius: 15px;
}

.checkout-pg .checkout-form .map-btn .icon {
  width: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 3px;
}

.checkout-pg .checkout-form .map-btn:hover {
  background-color: #B39465;
}

.checkout-pg .checkout-form .cards-radio-btn .radio-card {
  text-align: center;
  margin: 0 0 25px 0;
  position: relative;
  display: block;
  width: 100%;
}

.checkout-pg .checkout-form .cards-radio-btn .radio-card .pay-img {
  width: 100px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  display: block;
}

.checkout-pg .checkout-form .cards-radio-btn .radio-card label {
  cursor: pointer;
  position: relative;
  display: block;
  margin: 0 5px;
}

.checkout-pg .checkout-form .cards-radio-btn .radio-card .card-input {
  border: 2px solid transparent;
  border-radius: 15px;
  padding: 25px;
  width: 100%;
  background: #f7f7f7;
  border-radius: 10px;
  display: block;
}

.checkout-pg .checkout-form .cards-radio-btn .radio-card .card-icon {
  width: 75px;
  height: 75px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 15px auto;
  opacity: .7;
}

.checkout-pg .checkout-form .cards-radio-btn .radio-card h6 {
  color: #777;
  margin-top: .4rem;
  font-size: 1.1rem;
  font-weight: bold;
}

.checkout-pg .checkout-form .cards-radio-btn .radio-card p {
  margin-bottom: 0;
  color: #777;
  font-weight: bold;
}

.checkout-pg .checkout-form .cards-radio-btn .radio-card .card-input-element {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
}

.checkout-pg .checkout-form .cards-radio-btn .radio-card .card-input-element:checked + .card-input {
  border: 2px solid #B39465;
  -webkit-box-shadow: 0px 0px 25px 0px #eee;
          box-shadow: 0px 0px 25px 0px #eee;
}

.checkout-pg .checkout-form .cards-radio-btn .radio-card .card-input-element:checked + .card-input h6 {
  color: #B39465;
}

.checkout-pg .checkout-form .butns-wrapper .butn {
  border: none;
}

.summary-checkout {
  background-color: #f8f8f8;
  padding: 30px 20px 10px 20px;
  border-radius: 10px;
}

.summary-checkout .title {
  color: #B39465;
  font-weight: bold;
  position: relative;
}

.summary-checkout .title::after {
  content: '';
  display: block;
  position: absolute;
  top: 35px;
  background: url(../images/title-line.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 10px;
  opacity: .8;
  -webkit-filter: invert(65%) sepia(44%) saturate(352%) hue-rotate(357deg) brightness(86%) contrast(85%);
          filter: invert(65%) sepia(44%) saturate(352%) hue-rotate(357deg) brightness(86%) contrast(85%);
}

.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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0 15px 0;
  border-bottom: 1px solid #ddd;
}

.summary-checkout .card-body .item .prod-img {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.summary-checkout .card-body .item .info-inner {
  margin: 0 10px;
}

.summary-checkout .card-body .item .info-inner .prod-name {
  margin-bottom: .5rem;
}

.summary-checkout .card-body .item .info-l .delete-btn {
  width: 35px;
  height: 35px;
  font-size: 12px;
  background-color: #e17676;
  border: 1px solid #F56B6B;
  color: #fff;
  border-radius: 50%;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  display: block;
}

.summary-checkout .card-body .item .info-l .delete-btn:hover {
  background-color: #C0986C;
  border: 1px solid #C0986C;
}

.summary-checkout .card-body .item .info-l .price {
  margin-bottom: 0;
  margin-top: 0px;
}

.summary-checkout .card-body .item .quantity-container .qt-plus,
.summary-checkout .card-body .item .quantity-container .qt-minus {
  width: 35px;
  height: 35px;
  background-color: #f6f6f6;
}

.summary-checkout .footer-card {
  padding: 1.25rem;
}

.summary-checkout .footer-card .form-group {
  position: relative;
}

.summary-checkout .footer-card .form-group .code-input {
  height: 55px;
}

.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;
}

.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;
}

/**********************************************
    Start Edit Order details Page 
**********************************************/
.order-det {
  position: relative;
  padding: 70px 0;
}

.order-det .item {
  margin-bottom: 15px;
}

.order-det .item .label {
  font-size: 13px;
  font-weight: 600;
  color: #888;
}

.order-det .item .content {
  background-color: #f9f9f9;
  border-radius: 5px;
  padding: 15px 25px;
  margin: 10px 0 0 0;
  line-height: 1.8rem;
  font-size: 15px;
  color: #333;
}

/**********************************************
    Start Edit Register Page 
**********************************************/
.register-pg {
  background-color: #f8f8f8;
  position: relative;
}

.register-pg .register-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 670px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.register-pg .inner {
  padding: 50px 0;
}

.register-pg .inner .reg_heading .logo {
  width: 130px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.register-pg .inner .reg_heading .content .title {
  font-weight: bold;
  color: #011132;
}

.register-pg .inner .reg_heading .content .p {
  color: #888;
}

.register-pg .inner .form-wrapper .form-group {
  position: relative;
  margin-bottom: 1.3rem;
}

.register-pg .inner .form-wrapper .form-group .togglePassword {
  color: #ccc;
  position: absolute;
  left: 15px;
  top: 43px;
  cursor: pointer;
}

.register-pg .inner .form-wrapper .form-group .forget_pass {
  display: block;
  color: #777;
  font-size: 12px;
}

.register-pg .inner .form-wrapper .form-group .forget_pass:hover {
  color: #33C5F3;
}

.register-pg .inner .form-wrapper .radios-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.register-pg .inner .form-wrapper .radios-wrapper .custom-control {
  padding: 0;
  -webkit-margin-end: 30px;
          margin-inline-end: 30px;
}

.register-pg .inner .form-wrapper .radios-wrapper .custom-control-label {
  cursor: pointer;
}

.register-pg .inner .form-wrapper .radios-wrapper .custom-control-label::after, .register-pg .inner .form-wrapper .radios-wrapper .custom-control-label::before {
  display: none;
}

.register-pg .inner .form-wrapper .radios-wrapper .custom-control-label .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: block;
  text-align: center;
  margin: 0 auto 5px auto;
}

.register-pg .inner .form-wrapper .radios-wrapper .custom-control-label .icon .img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.register-pg .inner .form-wrapper .radios-wrapper .custom-control-label .title {
  text-align: center;
  color: #ddd;
}

.register-pg .inner .form-wrapper .radios-wrapper .custom-control-input:checked ~ .custom-control-label .icon {
  border: 1px solid #33C5F3;
  background-color: #33C5F3;
}

.register-pg .inner .form-wrapper .radios-wrapper .custom-control-input:checked ~ .custom-control-label .title {
  color: #33C5F3;
}

.register-pg .inner .form-wrapper .code-form-group .form-control {
  padding: 0;
  text-align: center;
  width: 70px;
  margin: 0 5px;
}

.register-pg .inner .form-wrapper .code-form-group .resend_link {
  display: block;
  color: #B39465;
  text-decoration: underline;
}

.register-pg .inner .form-wrapper .code-form-group .resend_link:hover {
  text-decoration: none;
  color: #011132;
}

.register-pg .inner .form-wrapper .code-form-group .timer {
  color: #666;
}

.register-pg .inner .form-wrapper .submit-butn {
  padding: .85rem 3rem;
  border: none;
  border-radius: 18px;
  width: 100%;
}

.register-pg .inner .form-wrapper .another_act {
  color: #888;
}

.register-pg .inner .form-wrapper .another_act a {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  color: #011132;
  text-decoration: underline;
}

.register-pg .inner .form-wrapper .another_act a:hover {
  text-decoration: none;
  color: #B39465;
}

.register-pg .custom-control a {
  font-weight: bold;
  color: #011132;
}

.register-pg .custom-control a:hover {
  color: #B39465;
}

.form-group {
  position: relative;
}

.form-group .label {
  font-size: 12px;
  color: #777;
  font-weight: bold;
  display: block;
  margin-bottom: .6rem;
}

.form-group .form-control {
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 15px;
  font-size: 15px;
}

.form-group .form-control::-webkit-input-placeholder {
  color: #ccc;
  font-size: 13px;
}

.form-group .form-control:-ms-input-placeholder {
  color: #ccc;
  font-size: 13px;
}

.form-group .form-control::-ms-input-placeholder {
  color: #ccc;
  font-size: 13px;
}

.form-group .form-control::placeholder {
  color: #ccc;
  font-size: 13px;
}

.form-group .form-control:focus {
  border: 1px solid #fff;
}

.form-group input,
.form-group select {
  height: 55px;
}

/**********************************************
    Start Edit Profile Page 
**********************************************/
.profile-pg {
  padding: 70px 0;
  background-color: #f8f8f8;
  position: relative;
}

.profile-pg .prof-side {
  background-color: #fff;
  border-radius: 10px;
  padding: 35px 0px;
  position: -webkit-sticky;
  position: sticky;
  top: 5px;
}

.profile-pg .prof-side .profile-picture {
  width: 80px;
  height: 80px;
  display: block;
  margin: auto;
}

.profile-pg .prof-side .profile-picture img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile-pg .prof-side .nav .nav-link {
  border-radius: 0px;
  padding: 1rem 1.3rem;
}

.profile-pg .prof-side .nav .nav-link .icon {
  margin: 0 10px;
}

.profile-pg .prof-side .nav .nav-link.active {
  background-color: #011132;
}

.profile-pg .prof-side .nav .nav-link.active .icon {
  color: #B39465;
  -webkit-filter: invert(66%) sepia(3%) saturate(4144%) hue-rotate(354deg) brightness(113%) contrast(91%);
          filter: invert(66%) sepia(3%) saturate(4144%) hue-rotate(354deg) brightness(113%) contrast(91%);
}

.profile-pg .profile-inner .tab-wrapper {
  background-color: #fff;
  padding: 50px 35px;
  border-radius: 10px;
}

.profile-pg .profile-inner .tab-wrapper.info .item {
  margin-bottom: 15px;
}

.profile-pg .profile-inner .tab-wrapper.info .item .label {
  font-size: 13px;
  font-weight: 600;
  color: #888;
}

.profile-pg .profile-inner .tab-wrapper.info .item .content {
  background-color: #f9f9f9;
  border-radius: 5px;
  padding: 15px 25px;
  margin: 10px 0 0 0;
  line-height: 1.8rem;
  font-size: 15px;
  color: #333;
}

.profile-pg .profile-inner .tab-wrapper.info .flag {
  width: 40px;
  margin: 0 5px;
}

.profile-pg .profile-inner .tab-wrapper.notification-tab .notifi-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 25px 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  border: 1px solid #f5f5f5;
  width: 100%;
  border-radius: 5px;
  margin-bottom: 30px;
}

.profile-pg .profile-inner .tab-wrapper.notification-tab .notifi-item .dec {
  margin-bottom: 0;
  color: #333;
  position: relative;
  padding: 0 45px 0 0;
}

.profile-pg .profile-inner .tab-wrapper.notification-tab .notifi-item .dec .icon {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 10px;
  position: absolute;
  right: 0;
}

.profile-pg .profile-inner .tab-wrapper.notification-tab .notifi-item .time {
  font-size: 14px;
  color: #888;
  direction: ltr;
}

.profile-pg .profile-inner .tab-wrapper.notification-tab .notifi-item.done {
  -webkit-box-shadow: 0 0 15px 0 #9df5b9;
          box-shadow: 0 0 15px 0 #9df5b9;
}

.profile-pg .profile-inner .tab-wrapper.notification-tab .notifi-item.error {
  -webkit-box-shadow: 0 0 15px 0 #f5baba;
          box-shadow: 0 0 15px 0 #f5baba;
}

.profile-pg .profile-inner .tab-wrapper.notification-tab .notifi-item.premium {
  -webkit-box-shadow: 0 0 15px 0 #f5f29d;
          box-shadow: 0 0 15px 0 #f5f29d;
}

.profile-pg .profile-inner .tab-wrapper.orders .nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.profile-pg .profile-inner .tab-wrapper.orders .nav .nav-link {
  border-radius: 0;
  border-bottom: 1px solid #eee;
  color: #888;
  padding: 0.5rem 1.5rem;
  margin: 0;
}

.profile-pg .profile-inner .tab-wrapper.orders .nav .nav-link.active {
  background-color: transparent;
  border-bottom: 1px solid #B39465;
  color: #B39465;
}

.profile-pg .profile-inner .tab-wrapper.orders table .sort-btn {
  background-color: transparent;
  border: transparent;
  margin: 0 5px;
  color: #444;
}

.profile-pg .profile-inner .tab-wrapper.orders table .sort-btn:hover {
  color: #C0986C;
}

.profile-pg .profile-inner .tab-wrapper.orders table td {
  border-bottom: 1px solid #dee2e6;
  font-size: 14px;
  vertical-align: middle;
}

.profile-pg .profile-inner .tab-wrapper.orders table .prod {
  color: #000;
  margin-bottom: 0;
  font-size: 14px;
}

.profile-pg .profile-inner .tab-wrapper.orders table .prod .prod-img {
  width: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  border-radius: 5px;
}

.profile-pg .profile-inner .tab-wrapper.orders table .badge {
  width: 100px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  display: block;
  border-radius: 25px;
  padding: 0;
}

.profile-pg .profile-inner .tab-wrapper.orders table .badge.badge_completed {
  color: #05B651;
  background-color: #cbf7de;
}

.profile-pg .profile-inner .tab-wrapper.orders table .badge.badge_pending {
  color: #FF941A;
  background-color: #f4e1ca;
}

.profile-pg .profile-inner .tab-wrapper.orders table .badge.badge_canceled {
  color: #F13131;
  background-color: #efc7c7;
}

.profile-pg .profile-inner .tab-wrapper .butn {
  padding: .8rem 3rem;
  border: none;
  margin: 35px auto 0 auto;
}

/*Info Modal*/
.info-modal .image-container {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid #013030;
  margin: auto;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.info-modal .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;
}

.info-modal .image-container button {
  width: 45px;
  height: 45px;
  -webkit-box-shadow: 0px 0px 10px #555;
          box-shadow: 0px 0px 10px #555;
  background-color: #C0986C;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  cursor: pointer !important;
  border: 1px solid #ddd;
  position: absolute;
  right: 2px;
  bottom: 0px;
}

.info-modal .image-container button i {
  position: relative;
  top: 1px;
  cursor: pointer !important;
}

.info-modal .text {
  margin-bottom: 20px;
  padding: 0px 10px;
}

.info-modal .text .content {
  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%;
}

.info-modal .text .content span {
  text-transform: uppercase;
  color: #666;
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: 600;
}

.info-modal .text .content .edit-btn {
  cursor: pointer;
  color: #4f4e4e;
  font-size: 12px;
}

.info-modal .text .form-control {
  background-color: #f5f5f5;
  border: 1px solid transparent;
  height: 45px;
  line-height: 45px;
  font-size: 15px;
  border-radius: 5px;
  padding: .375rem 1.2rem;
}

.info-modal .text .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: 1px solid #C0986C;
}

.info-modal .text .enable-input {
  height: 45px;
  line-height: 45px;
  font-size: 15px;
  border-radius: 5px;
  padding: .375rem 1.2rem;
  background-color: #fff;
  border: 1px solid #ddd;
}

.info-modal .text .enable-input:focus {
  border: 1px solid #4F2B82;
}

/**********************************************
    Start Edit Contact Page 
**********************************************/
.contact-pg {
  position: relative;
  padding: 70px 0;
  background-color: #f9f9f9;
}

.contact-pg .form-wrapper {
  border-radius: 15px;
  padding: 45px;
}

.contact-pg .contact-img {
  width: 43%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  position: absolute;
  left: 0;
  bottom: 0;
}

.branches-sec {
  position: relative;
  padding: 70px 0;
}

.branches-sec .branch-card {
  background-color: #fff;
  -webkit-box-shadow: 0 0 25px 0 #eee;
          box-shadow: 0 0 25px 0 #eee;
  padding: 15px;
  border-radius: 15px;
  margin: 0 15px;
}

.branches-sec .branch-card h5 {
  margin-bottom: 1.4rem;
  font-weight: bold;
  color: #011132;
}

.branches-sec .branch-card .content {
  padding: 15px 0;
}

.branches-sec .branch-card .content .det i {
  color: #B39465;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

/**********************************************
    Start Edit content Page 
**********************************************/
.content-pg {
  padding: 70px 0;
  background-color: #f8f8f8;
}

.content-pg .inner {
  background-color: #fff;
  padding: 50px 45px;
  margin-bottom: 50px;
  -webkit-box-shadow: 0px 3px 15px 0px #eee;
          box-shadow: 0px 3px 15px 0px #eee;
  border-radius: 15px;
}

.content-pg .inner .text .title {
  margin-bottom: 30px;
  position: relative;
  color: #B39465;
  font-weight: bold;
}

.content-pg .inner .text .title::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 10px;
  display: inline-block;
}

.content-pg .inner .text p {
  line-height: 2.2rem;
  font-size: 14px;
  color: #888;
}

.content-pg .inner .text p i {
  color: #011132;
  margin: 0px 5px;
  font-size: 8px;
}

/**********************************************
    Start Edit collection Page 
**********************************************/
.collection-pg {
  position: relative;
  padding: 70px 0 0 0;
}

.collection-pg .collection-img {
  padding: 15px;
  height: 400px;
  border-radius: 30px;
  border: 1px solid #eee;
}

/**********************************************
    Start Edit Dark Theme 
**********************************************/
.themeToggler {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: auto;
  /* 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: "";
  height: 40px;
  width: 40px;
  left: 0px;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-shadow: 0 0px 15px #2020203d;
          box-shadow: 0 0px 15px #2020203d;
  background: white url("https://i.ibb.co/FxzBYR9/night.png");
  background-repeat: no-repeat;
  background-position: center;
}

.themeToggler input:checked + .slider {
  background-color: #BCA66C;
}

.themeToggler input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #B39465;
          box-shadow: 0 0 1px #B39465;
}

.themeToggler input:checked + .slider:before {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
  background: white url("https://i.ibb.co/7JfqXxB/sunny.png");
  background-repeat: no-repeat;
  background-position: center;
}

.themeToggler .slider.round {
  border-radius: 34px;
}

.themeToggler .slider.round:before {
  border-radius: 50%;
}

.theme-dark .sec-title {
  color: #Fff;
}

.theme-dark .pg-header {
  background-color: #000611;
}

.theme-dark .pg-header .title {
  color: #fff;
}

.theme-dark .pg-header .line {
  -webkit-filter: unset;
          filter: unset;
}

.theme-dark .pg-header .breadcrumb a {
  color: #eee;
}

.theme-dark .pg-header .breadcrumb-item.active {
  color: #ccc !important;
}

.theme-dark .header {
  background-color: #000611;
}

.theme-dark .header .text-box .subtitle {
  color: #eee;
}

.theme-dark .header .text-box .det {
  color: #ccc;
}

.theme-dark .header .text-box .butn {
  background-color: #011132;
  color: #fff;
}

.theme-dark .header .text-box .butn::before, .theme-dark .header .text-box .butn::after {
  background-color: #BCA66C;
}

.theme-dark .about-sec {
  background-color: #030914;
}

.theme-dark .about-sec .accordion-box .card {
  border-bottom: 1px solid #444 !important;
}

.theme-dark .about-sec .accordion-box .card .card-header {
  border-bottom: 1px solid #202020;
}

.theme-dark .about-sec .accordion-box .card .card-header .btn {
  color: #fff;
}

.theme-dark .categ-sec {
  background-color: #030914;
}

.theme-dark .categ-sec .categ_card .title {
  color: #fff;
}

.theme-dark .products-sec {
  background-color: #030914;
}

.theme-dark .products-sec .prod_card {
  background-color: #000611;
}

.theme-dark .products-sec .prod_card .title {
  color: #fff;
}

.theme-dark .products-sec .prod_card .price {
  color: #BCA66C;
}

.theme-dark .features-sec {
  background-color: #030914;
}

.theme-dark .features-sec .sec-heading {
  background-color: #030914;
}

.theme-dark .features-sec .sec-heading .p {
  color: #ccc;
}

.theme-dark .features-sec .inner {
  background-color: #030914;
  -webkit-box-shadow: 0 5px 15px 0 #010c22;
          box-shadow: 0 5px 15px 0 #010c22;
}

.theme-dark .features-sec .inner .feature_card {
  border-left: 1px solid #202020;
}

.theme-dark .features-sec .inner .feature_card .title {
  color: #fff;
}

.theme-dark .features-sec .inner .feature_card .det {
  color: #ccc;
}

.theme-dark .newsletter-sec {
  background-color: #030914;
}

.theme-dark .newsletter-sec .form-control {
  background-color: #000611;
  border: 1px solid #011132;
}

.theme-dark .single-product {
  background-color: #030914;
}

.theme-dark .single-product .text-box .title {
  color: #fff;
}

.theme-dark .single-product .text-box .border-b {
  border-bottom: 1px solid #222;
}

.theme-dark .single-product .text-box .det {
  color: #ccc;
}

.theme-dark .single-product .text-box .form-control {
  background-color: transparent;
  color: #eee;
  border: 1px solid #011132;
}

.theme-dark .single-product.single-product2 .nav .nav-link {
  color: #fff !important;
}

.theme-dark .single-product.single-product2 .table td,
.theme-dark .single-product.single-product2 .table th {
  border: 1px solid #555 !important;
  background: #030914;
  color: #fff;
}

.theme-dark .single-product .table-secondary,
.theme-dark .single-product .table-secondary > td,
.theme-dark .single-product .table-secondary > th {
  background-color: #02050c !important;
  color: #fff;
}

.theme-dark .single-product .lg-slide-swiper .img-box .lg-img {
  border: 1px solid #B39465;
}

.theme-dark .single-product .sm-slide-swiper .sm-bg-header {
  border: 1px solid #202020;
}

.theme-dark .single-product .review_card {
  background-color: #02050c;
}

.theme-dark .single-product .review_card .prof-data .job {
  color: #fff;
}

.theme-dark .feedback-sec {
  background-color: #030914;
}

.theme-dark .feedback-sec .review_card {
  background-color: #000611;
}

.theme-dark .feedback-sec .review_card .job {
  color: #fff;
}

.theme-dark .feedback-sec .review_card .det {
  color: #ccc;
}

.theme-dark .products-pg .filter-wrapper {
  background-color: #000611;
}

.theme-dark .products-pg .filter-wrapper .panel {
  border: 1px solid #333;
}

.theme-dark .products-pg .filter-wrapper .panel .panel-heading {
  border-bottom: 1px solid #333;
}

.theme-dark .products-pg .filter-wrapper .panel .panel-heading h4 a {
  color: #fff;
}

.theme-dark .products-pg .filter-wrapper .panel label {
  color: #ccc;
}

.theme-dark .products-pg .filter-wrapper .form-group .form-control {
  border: 1px solid #333;
  color: #fff;
}

.theme-dark .pagination-wrapper .pagination .page-link {
  background-color: #011132;
  color: #fff;
  border: 1px solid #011132;
}

.theme-dark .cart-pg {
  background-color: #030914;
}

.theme-dark .cart-pg .inner {
  background-color: #010c22;
}

.theme-dark .cart-pg .inner table th,
.theme-dark .cart-pg .inner table td {
  color: #fff;
}

.theme-dark .cart-pg .cart_summary .item {
  color: #fff;
}

.theme-dark .quantity-container .qt {
  color: #fff;
}

.theme-dark .quantity-container .qt-plus,
.theme-dark .quantity-container .qt-minus {
  color: #fff;
  background-color: #030914 !important;
}

.theme-dark .quantity-container .qt-plus:hover,
.theme-dark .quantity-container .qt-minus:hover {
  background-color: #BCA66C !important;
}

.theme-dark .checkout-pg {
  background-color: #030914;
}

.theme-dark .checkout-pg .cards-radio-btn .radio-card .card-input {
  background: #02050c;
}

.theme-dark .summary-checkout {
  background-color: #02050c;
}

.theme-dark .summary-checkout .item {
  color: #fff;
}

.theme-dark .summary-checkout .price,
.theme-dark .summary-checkout .sm_title {
  color: #eee;
}

.theme-dark .form-group .form-control {
  border: 1px solid #555;
  color: #fff;
  background-color: transparent;
}

.theme-dark .form-group .label {
  color: #ddd;
}

.theme-dark .location-options .label {
  color: #ddd;
}

.theme-dark .custom-control-label {
  color: #ccc;
}

.theme-dark .branches-sec {
  background-color: #030914;
}

.theme-dark .branches-sec .branch-card {
  background-color: #02050c;
  -webkit-box-shadow: 0 0 15px 0 #011132;
          box-shadow: 0 0 15px 0 #011132;
}

.theme-dark .branches-sec .branch-card h5 {
  color: #fff;
}

.theme-dark .branches-sec .branch-card .det {
  color: #eee;
}

.theme-dark .contact-pg {
  background-color: #02050c;
}

.theme-dark .content-pg {
  background-color: #02050c;
}

.theme-dark .content-pg .inner {
  -webkit-box-shadow: 0px 3px 15px 0px #011132;
          box-shadow: 0px 3px 15px 0px #011132;
  background-color: #030914;
}

.theme-dark .content-pg .inner p {
  color: #eee;
}

.theme-dark .register-pg {
  background-color: #02050c;
}

.theme-dark .register-pg .inner .reg_heading .content .title {
  color: #fff;
}

.theme-dark .register-pg .another_act a,
.theme-dark .register-pg .custom-control a {
  color: #fff !important;
}

.theme-dark .register-pg .another_act a:hover,
.theme-dark .register-pg .custom-control a:hover {
  color: #BCA66C !important;
}

.theme-dark .order-det {
  background-color: #030914;
}

.theme-dark .order-det .item .label {
  color: #ccc;
}

.theme-dark .order-det .content {
  background-color: #02050c;
  color: #fff;
}

.theme-dark .products-pg .filter-wrapper .box .title {
  color: #fff;
}

.theme-dark .products-pg .filter-wrapper .box .content a {
  color: #Fff;
}

.theme-dark .products-pg .filter-row .title {
  color: #fff;
}

.theme-dark .products-pg .filter-row .form-control {
  background-color: transparent;
  color: #fff;
}

.theme-dark .profile-pg {
  background-color: #030914;
}

.theme-dark .profile-pg .prof-side {
  background-color: #02050c;
}

.theme-dark .profile-pg .prof-side .username {
  color: #fff;
}

.theme-dark .profile-pg .prof-side .nav .nav-link {
  color: #fff;
}

.theme-dark .profile-pg .prof-side .nav .nav-link .icon {
  -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(301deg) brightness(105%) contrast(104%);
          filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(301deg) brightness(105%) contrast(104%);
}

.theme-dark .profile-pg .tab-wrapper {
  background-color: #02050c;
}

.theme-dark .profile-pg .tab-wrapper.info .item .content {
  background-color: #030914;
  color: #fff;
}

.theme-dark .profile-pg .tab-wrapper.notification-tab .notifi-item {
  background-color: #030914;
  border: 1px solid #011132;
  -webkit-box-shadow: 0 0 15px 0 #011132 !important;
          box-shadow: 0 0 15px 0 #011132 !important;
}

.theme-dark .profile-pg .tab-wrapper.notification-tab .notifi-item .dec {
  color: #fff;
}

.theme-dark .modal-content {
  background-color: #02050c;
}

.theme-dark .modal-content .modal-title {
  color: #fff;
}
/*# sourceMappingURL=style.css.map */