@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.75em;
  font-weight: 400;
  color: #777;
}

.lock-scroll {
  overflow: hidden;
}
.lock-scroll::after {
  content: "";
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  top: 0;
}

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

::-webkit-scrollbar {
  width: 10px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  background-color: #AF946D;
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}

/*** typography ***/
/* headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #101010;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 1.5em;
  margin: 0 0 20px 0;
}

/* paragraph */
p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  color: #888;
}

/* lists */
ul {
  list-style-type: none;
}

/* links */
a {
  color: #101010;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #101010;
  outline: none;
  text-decoration: none !important;
}

a:link {
  text-decoration: none;
}

a:focus {
  outline: none;
}

.login .custm-login-dv .login-form-dv {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.login .custm-login-dv .login-form-dv .heading h4 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
.login .custm-login-dv .login-form-dv .login-type {
  display: flex;
  justify-content: space-evenly;
  padding: 0 0 20px 0;
}
.login .custm-login-dv .login-form-dv .login-type .g-login {
  background-color: #fff2e8;
  padding: 10px 35px;
  margin: 0 5px;
}
.login .custm-login-dv .login-form-dv .login-type .g-login p {
  color: #af946d;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}
.login .custm-login-dv .login-form-dv .login-type .g-login p i {
  font-size: 18px;
  margin: 0 10px 0 0;
}
.login .custm-login-dv .login-form-dv .login-type .mobile-login {
  background-color: #fff2e8;
  padding: 10px 35px;
  margin: 0 5px;
}
.login .custm-login-dv .login-form-dv .login-type .mobile-login p {
  color: #af946d;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}
.login .custm-login-dv .login-form-dv .login-type .mobile-login p i {
  font-size: 18px;
  margin: 0 10px 0 0;
}
.login .custm-login-dv .login-form-dv .sign-up-here h3 {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #9e9e9e;
  margin: 0 0 10px 0;
}
.login .custm-login-dv .login-form-dv .sign-up-here h3 a {
  color: #000;
}
.login .custm-login-dv .login-form-dv .sign-up-here h4 {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #9e9e9e;
  position: relative;
}
.login .custm-login-dv .login-form-dv .sign-up-here h4::before {
  content: "";
  display: block;
  position: absolute;
  width: 25%;
  height: 2px;
  background: #9e9e9e;
  left: 0;
  top: 50%;
}
.login .custm-login-dv .login-form-dv .sign-up-here h4::after {
  content: "";
  display: block;
  position: absolute;
  width: 25%;
  height: 2px;
  background: #9e9e9e;
  right: 0;
  top: 50%;
}
.login .custm-login-dv .login-form-dv .form-area form input {
  padding: 10px;
  font-size: 15px;
}
.login .custm-login-dv .login-form-dv .form-area form .forgot-pass {
  display: flex;
  justify-content: end;
}
.login .custm-login-dv .login-form-dv .form-area form .forgot-pass p {
  color: #000;
}
.login .custm-login-dv .login-form-dv .form-area form .login-btn a {
  display: block;
  background-color: #AF946D;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  border-radius: 10px 0 10px 0;
}
.login .custm-login-dv .login-form-dv .form-area form .homepage-btn {
  text-align: center;
  margin: 40px 0 0 0;
}
.login .custm-login-dv .login-form-dv .form-area form .homepage-btn a {
  color: #AF946D;
  font-weight: 600;
}

.signup .custm-login-dv .sign-up-form-dv {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.signup .custm-login-dv .sign-up-form-dv .heading h4 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
.signup .custm-login-dv .sign-up-form-dv .login-type {
  display: flex;
  justify-content: space-evenly;
  padding: 0 0 20px 0;
}
.signup .custm-login-dv .sign-up-form-dv .login-type .g-login {
  background-color: #fff2e8;
  padding: 10px 35px;
  margin: 0 5px;
}
.signup .custm-login-dv .sign-up-form-dv .login-type .g-login p {
  color: #af946d;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}
.signup .custm-login-dv .sign-up-form-dv .login-type .g-login p i {
  font-size: 18px;
  margin: 0 10px 0 0;
}
.signup .custm-login-dv .sign-up-form-dv .login-type .mobile-login {
  background-color: #fff2e8;
  padding: 10px 35px;
  margin: 0 5px;
}
.signup .custm-login-dv .sign-up-form-dv .login-type .mobile-login p {
  color: #af946d;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}
.signup .custm-login-dv .sign-up-form-dv .login-type .mobile-login p i {
  font-size: 18px;
  margin: 0 10px 0 0;
}
.signup .custm-login-dv .sign-up-form-dv .sign-up-here h3 {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #9e9e9e;
  margin: 0 0 10px 0;
}
.signup .custm-login-dv .sign-up-form-dv .sign-up-here h3 a {
  color: #000;
}
.signup .custm-login-dv .sign-up-form-dv .sign-up-here h4 {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #9e9e9e;
  position: relative;
}
.signup .custm-login-dv .sign-up-form-dv .sign-up-here h4::before {
  content: "";
  display: block;
  position: absolute;
  width: 25%;
  height: 2px;
  background: #9e9e9e;
  left: 0;
  top: 50%;
}
.signup .custm-login-dv .sign-up-form-dv .sign-up-here h4::after {
  content: "";
  display: block;
  position: absolute;
  width: 25%;
  height: 2px;
  background: #9e9e9e;
  right: 0;
  top: 50%;
}
.signup .custm-login-dv .sign-up-form-dv .form-area form input {
  padding: 10px;
  font-size: 15px;
}
.signup .custm-login-dv .sign-up-form-dv .form-area form .forgot-pass {
  display: flex;
  justify-content: end;
}
.signup .custm-login-dv .sign-up-form-dv .form-area form .login-btn a {
  display: block;
  background-color: #AF946D;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  border-radius: 10px 0 10px 0;
}
.signup .custm-login-dv .sign-up-form-dv .form-area form .homepage-btn {
  text-align: center;
  margin: 40px 0 0 0;
}
.signup .custm-login-dv .sign-up-form-dv .form-area form .homepage-btn a {
  color: #AF946D;
  font-weight: 600;
}

.main-header {
  border-top: 5px solid #AF946D;
  top: 0;
  position: sticky;
  background-color: #fff;
  z-index: 999;
}
.main-header .navbar {
  padding: 15px 0;
}
.main-header .navbar .navbar-nav .nav-item {
  position: relative;
}
.main-header .navbar .navbar-nav .nav-item .dropdown-submenu {
  position: absolute;
  width: 200px;
  background-color: #AF946D;
  display: none;
  z-index: 1;
}
.main-header .navbar .navbar-nav .nav-item .dropdown-submenu li {
  padding: 10px;
}
.main-header .navbar .navbar-nav .nav-item .dropdown-submenu li a {
  color: #fff;
}
.main-header .navbar .navbar-nav .nav-item .dropdown-submenu li:hover {
  background-color: #000000;
}
.main-header .navbar .navbar-nav .nav-item:hover .dropdown-submenu {
  display: block;
  animation: dropdown 0.5s ease-in-out;
}
@keyframes dropdown {
  0% {
    top: 80%;
  }
  100% {
    top: 100%;
  }
}
.main-header .navbar .navbar-nav .nav-item.active {
  color: red;
}
.main-header .navbar .header-btn {
  display: flex;
  align-items: center;
}
.main-header .navbar .header-btn a {
  margin: 0 10px;
}
.main-header .navbar .header-btn .dropdown .dropdown-toggle {
  background-color: #fff;
  padding: 0;
}
.main-header .navbar .header-btn .dropdown .dropdown-toggle:focus {
  box-shadow: none;
}
.main-header .navbar .header-btn .dropdown .dropdown-toggle::after {
  display: none;
}
.main-header .navbar .header-btn .dropdown .dropdown-menu {
  background-color: #AF946D;
  top: 50px !important;
}
.main-header .navbar .header-btn .dropdown .dropdown-menu .dropdown-item {
  color: #fff;
  margin: 0;
}
.main-header .navbar .header-btn .dropdown .dropdown-menu .dropdown-item i {
  margin: 0 5px 0 0;
}
.main-header .navbar .header-btn .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000;
}
.main-header .navbar .header-btn .dropdown-after-login {
  display: none;
}
.main-header .navbar .header-btn .dropdown-after-login .dropdown-toggle {
  background-color: #fff;
  padding: 0;
}
.main-header .navbar .header-btn .dropdown-after-login .dropdown-toggle:focus {
  box-shadow: none;
}
.main-header .navbar .header-btn .dropdown-after-login .dropdown-toggle::after {
  display: none;
}
.main-header .navbar .header-btn .dropdown-after-login .dropdown-menu {
  background-color: #AF946D;
  top: 50px !important;
}
.main-header .navbar .header-btn .dropdown-after-login .dropdown-menu .dropdown-item {
  color: #fff;
  margin: 0;
}
.main-header .navbar .header-btn .dropdown-after-login .dropdown-menu .dropdown-item i {
  margin: 0 5px 0 0;
}
.main-header .navbar .header-btn .dropdown-after-login .dropdown-menu .dropdown-item:hover {
  color: #000;
}
.main-header .navbar .header-btn .bring-home-btn {
  background-color: #AF946D;
  padding: 10px 20px;
  border-radius: 10px 0 10px 0;
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1490196078);
  color: #fff;
}
.main-header header {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 100px;
  background: #ffffff;
  width: 100%;
  display: none;
  z-index: 9;
}
.main-header header .logo {
  height: 50px;
  float: left;
}
.main-header header nav {
  float: right;
  overflow-y: scroll;
}
.main-header header nav ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.main-header header nav ul li {
  list-style: none;
}
.main-header header nav ul li a {
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  color: #AF946D;
  text-decoration: none;
  display: block;
}
.main-header header nav ul li a:hover {
  color: #FFF;
  background: #AF946D;
}
.main-header header nav .card-body {
  padding: 0;
  background-color: #333;
}
.main-header .menu-toggle {
  color: #000000;
  float: right;
  line-height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: none;
}
@media (max-width: 1024px) {
  .main-header .navbar {
    display: none;
  }
  .main-header header {
    display: block;
    padding: 0 20px;
  }
  .main-header header nav {
    position: absolute;
    width: 320px;
    height: calc(100vh - 50px);
    background: #333;
    top: 50px;
    left: -100%;
    transition: 0.5s;
    z-index: 111;
  }
  .main-header header nav ul {
    display: block;
    text-align: center;
  }
  .main-header header nav ul li a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .main-header header nav.active {
    left: 0;
  }
  .main-header .menu-toggle {
    display: block;
  }
}

.icon-space {
  margin-left: 10px !important;
}

.homepage #demo .banner-heading {
  background-image: url(../images/piptan-foods/homepage/banner2.png);
  height: 200px;
  background-size: cover;
  background-position: 100%;
  position: relative;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.homepage #demo .banner-heading h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}
.homepage #demo .banner-heading p {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -70%);
  color: #fff;
}
.homepage #demo .carousel-indicators {
  z-index: 8;
}
.homepage #demo .carousel-inner > .item {
  transition: 0.6s ease-in-out left;
}
.homepage #demo .carousel-inner .carousel-item {
  transition: transform 0.5s ease-in-out;
}
.homepage .banner img {
  width: 100%;
  height: calc(100vh - 84px);
  -o-object-fit: cover;
     object-fit: cover;
}
.homepage .banner .banner-heading {
  background-image: url(../images/piptan-foods/homepage/banner2.png);
  height: 200px;
  background-size: cover;
  background-position: 100%;
  position: relative;
}
.homepage .banner .banner-heading h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  width: 100%;
  text-align: center;
}
.homepage .products {
  padding: 60px 0;
  background-color: #f3f4f4;
}
.homepage .products .custm-left-dv {
  padding: 50px 0;
}
.homepage .products .custm-left-dv h3 {
  font-size: 36px;
  font-weight: 600;
  text-align: left;
}
.homepage .products .custm-left-dv p {
  line-height: 29px;
  font-weight: 400;
  text-align: justify;
  margin: 0 0 40px 0;
}
.homepage .products .custm-left-dv .custm-btn .btn1 {
  background-color: #231F20;
  padding: 12px 15px;
  border-radius: 10px 0 10px 0;
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1490196078);
  color: #fff;
}
.homepage .products .custm-left-dv .custm-btn .btn2 {
  background-color: #AF946D;
  padding: 12px 15px;
  border-radius: 10px 0 10px 0;
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1490196078);
  color: #fff;
  margin: 0 0 0 10px;
}
.homepage .products .custm-right-dv {
  padding: 50px 0;
  display: flex;
}
.homepage .products .custm-right-dv .custm-img-dv1 {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.homepage .products .custm-right-dv .custm-img-dv1 .img1 {
  position: relative;
  top: 12px;
  left: 50px;
  z-index: 1;
}
.homepage .products .custm-left-dv2 {
  padding: 50px 0;
  display: flex;
}
.homepage .products .custm-left-dv2 .custm-img-dv2 {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.homepage .products .custm-left-dv2 .custm-img-dv2 .img2 {
  position: relative;
  top: 12px;
  right: 70px;
  z-index: 1;
}
.homepage .products .custm-right-dv2 {
  padding: 50px 0;
}
.homepage .products .custm-right-dv2 h3 {
  font-size: 36px;
  font-weight: 600;
  text-align: left;
}
.homepage .products .custm-right-dv2 p {
  line-height: 29px;
  font-weight: 400;
  text-align: justify;
  margin: 0 0 40px 0;
}
.homepage .products .custm-right-dv2 .custm-btn .btn1 {
  background-color: #231F20;
  padding: 12px 15px;
  border-radius: 10px 0 10px 0;
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1490196078);
  color: #fff;
}
.homepage .products .custm-right-dv2 .custm-btn .btn2 {
  background-color: #AF946D;
  padding: 12px 15px;
  border-radius: 10px 0 10px 0;
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1490196078);
  color: #fff;
  margin: 0 0 0 10px;
}
.homepage .new-products {
  padding: 60px 0;
}
.homepage .new-products .heading h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}
.homepage .new-products .heading p {
  margin: 0 0 30px 0;
}
.homepage .new-products .product-details {
  background-color: #f3f4f4;
  border-radius: 8px;
  padding: 1px;
}
.homepage .new-products .product-details img {
  border-radius: 8px 8px 0 0;
  padding: 20px;
  width: 234px;
  height: 234px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.homepage .new-products .product-details h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px 0;
}
.homepage .new-products .slick-slide {
  padding: 8px;
  margin-right: 8px;
  margin-left: 8px;
}

.text-shadow {
  text-shadow: -2px -1px 3px rgba(0, 0, 0, 0.7);
}

.main-footer {
  background-color: #AF946D;
  padding: 60px 0;
  color: #fff;
}
.main-footer p {
  color: #fff;
}
.main-footer .footer-items:nth-child(3) {
  padding-left: 50px;
}
.main-footer .footer-items a {
  color: #fff;
}
.main-footer .footer-items h5 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
}
.main-footer .footer-items > p {
  margin: 0 0 25px 0;
  text-align: justify;
}
.main-footer .footer-items .ftr-img {
  margin: 0 0 25px 0;
}
.main-footer .footer-items .social-links i {
  font-size: 13px;
  border: 1px solid #000;
  color: #000;
  border-radius: 50px;
  padding: 10px;
  margin: 0 3px;
}

.copyright {
  background-color: #000;
  padding: 20px 0;
}
.copyright p {
  color: #fff;
  margin: 0;
}
.copyright p span {
  font-weight: 700;
}
.copyright .terms {
  display: flex;
  justify-content: end;
}
.copyright .terms a {
  color: #fff;
  margin: 0 10px;
}

.about-us {
  overflow-x: auto;
}
.about-us .banner {
  background-color: #AF946D;
}
.about-us .banner img {
  width: 100%;
}
.about-us .banner .banner-heading {
  padding: 10px 0;
}
.about-us .banner .banner-heading h1 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.about-us .our-history {
  padding: 60px 0;
}
.about-us .our-history .custm-dv-left h4 {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 10px 0;
}
.about-us .our-history .custm-dv-left p {
  text-align: justify;
}
.about-us .our-legacy {
  background: url(../images/piptan-foods/about-us/bg.png);
}
.about-us .our-legacy .custm-dv-right h4 {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 10px 0;
}
.about-us .our-legacy .custm-dv-right p {
  text-align: justify;
}
.about-us .our-legacy .custm-dv-right .legacy-details {
  display: flex;
  justify-content: space-between;
}
.about-us .our-legacy .custm-dv-right .legacy-details ul li {
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.about-us .our-legacy .custm-dv-right .legacy-details ul li .text-area {
  margin: 0 10px;
}
.about-us .our-legacy .custm-dv-right .legacy-details ul li .text-area h5 {
  font-size: 16px;
  margin: 0;
}
.about-us .our-legacy .custm-dv-right .legacy-details ul li .text-area p {
  text-align: left;
  margin: 0;
}
.about-us .mission-vission {
  padding: 60px 0;
}
.about-us .mission-vission .text-area {
  padding: 20px;
}
.about-us .mission-vission .text-area h4 {
  font-size: 22px;
  font-weight: 600;
}
.about-us .mission-vission .text-area p {
  text-align: justify;
}
.about-us .our-team {
  background-color: #F2F2F2;
  padding: 60px 0;
}
.about-us .our-team .heading {
  text-align: center;
}
.about-us .our-team .heading h4 {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}
.about-us .our-team .team-box img {
  margin: 0 0 20px 0;
  height: 250px;
  border-radius: 10px !important;
}
.about-us .our-team .team-box h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.about-us .delivery-dv {
  padding: 60px 0;
}
.about-us .delivery-dv .text-area h4 {
  font-size: 32px;
  font-weight: 600;
}
.about-us .delivery-dv .text-area p {
  text-align: justify;
}
.about-us .delivery-dv .text-area ul li {
  padding: 5px 0;
}
.about-us .delivery-dv .text-area .shop-btn a {
  background-color: #AF946D;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
}
.about-us .testimonials {
  padding: 60px 0;
  background-color: #f3f4f4;
}
.about-us .testimonials .heading {
  margin: 0 0 30px 0;
}
.about-us .testimonials .heading h3 {
  font-size: 36px;
  font-weight: 600;
}
.about-us .testimonials .slider-area .slick-prev {
  top: -40px;
  left: 91%;
}
.about-us .testimonials .slider-area .slick-prev::before {
  color: #000000;
  content: "←";
  font-family: fontawesome;
  font-size: 18px;
  padding: 8px;
  border-radius: 50px;
  background-color: #fff;
}
.about-us .testimonials .slider-area .slick-prev:hover::before {
  background-color: #af946d;
  color: #fff;
}
.about-us .testimonials .slider-area .slick-next {
  top: -40px;
  right: 30px;
}
.about-us .testimonials .slider-area .slick-next::before {
  color: #000000;
  content: "→";
  font-family: fontawesome;
  font-size: 18px;
  padding: 8px;
  border-radius: 50px;
  background-color: #fff;
}
.about-us .testimonials .slider-area .slick-next:hover::before {
  background-color: #af946d;
  color: #fff;
}
.about-us .testimonials .slider-area .slick-slide {
  margin: 10px;
}
.about-us .testimonials .slider-area .slick-slide .custm-slider-items {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  min-height: 400px !important;
}
.about-us .testimonials .slider-area .slick-slide .custm-slider-items .description {
  height: 230px;
  overflow-y: auto;
  margin-bottom: 20px;
}
.about-us .testimonials .slider-area .slick-slide .custm-slider-items .description::-webkit-scrollbar {
  background-color: #f5f5f5 !important;
  width: 2px !important;
}
.about-us .testimonials .slider-area .slick-slide .custm-slider-items .description::-webkit-scrollbar-thumb {
  background-color: #f5f5f5 !important;
  width: 2px !important;
}
.about-us .testimonials .slider-area .slick-slide .custm-slider-items .description::-webkit-scrollbar-track {
  background-color: #ffffff !important;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  width: 2px;
}
.about-us .testimonials .slider-area .slick-slide .custm-slider-items .custm-rating-dv {
  align-items: center;
}
.about-us .testimonials .slider-area .slick-slide .custm-slider-items .custm-rating-dv .avatar {
  display: flex;
}
.about-us .testimonials .slider-area .slick-slide .custm-slider-items .custm-rating-dv .avatar img {
  width: 76px;
  height: 76px !important;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-us .testimonials .slider-area .slick-slide .custm-slider-items .custm-rating-dv .avatar-details {
  padding: 0 20px;
}
.about-us .testimonials .slider-area .slick-slide .custm-slider-items .custm-rating-dv .avatar-details h5 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  margin-bottom: 5px !important;
  margin: 0px !important;
}
.about-us .testimonials .slider-area .slick-slide .custm-slider-items .custm-rating-dv .avatar-details p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  margin-bottom: 5px !important;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.about-us .testimonials .slider-area .slick-slide .custm-slider-items .custm-rating-dv .rating {
  display: flex;
}
.about-us .testimonials .slider-area .slick-slide .custm-slider-items .custm-rating-dv .rating img {
  width: 16.25px;
  height: 15.62px;
}

@media only screen and (max-width: 750px) {
  .about-us .our-legacy {
    background: none;
  }
}
.about-product .banner {
  background-color: #AF946D;
}
.about-product .banner img {
  width: 100%;
}
.about-product .banner .banner-heading {
  padding: 10px 0;
}
.about-product .banner .banner-heading h1 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.about-product .better-food {
  padding: 60px 0;
}
.about-product .better-food [data-aos=rotate] {
  transform: rotateY(360deg);
  transition-property: transform;
}
.about-product .better-food [data-aos=rotate].aos-animate {
  transform: rotateY(0);
}
.about-product .better-food .heading {
  text-align: center;
}
.about-product .better-food .heading h2 {
  font-size: 36px;
  font-weight: 600;
  margin: 0;
}
.about-product .better-food .custm-dv-left {
  text-align: right;
}
.about-product .better-food .custm-dv-left h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.about-product .better-food .custm-dv-left p {
  margin: 0 0 30px 0;
}
.about-product .better-food .center-img {
  text-align: center;
}
.about-product .better-food .center-img img {
  width: auto;
  height: 700px;
}
.about-product .better-food .custm-dv-right {
  text-align: left;
}
.about-product .better-food .custm-dv-right h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.about-product .better-food .custm-dv-right p {
  margin: 0 0 30px 0;
}
.about-product .better-food .explore-btn {
  text-align: center;
  margin: 50px 0 0 0;
}
.about-product .better-food .explore-btn a {
  border: 2px solid #000;
  padding: 20px 36px;
  border-radius: 16px 0px 16px 0px;
  font-weight: 600;
}
.about-product .better-food .explore-btn a img {
  margin: 0 10px;
}
.about-product .product-desc {
  padding: 60px 0;
  background-color: #f3f4f4;
}
.about-product .product-desc .heading h3 {
  font-size: 36px;
  font-weight: 600;
}
.about-product .product-desc .why-choose {
  background-color: #F9F8F8;
  padding: 20px;
  border-radius: 20px;
}
.about-product .testimonials {
  padding: 60px 0;
  background-color: #f3f4f4;
}
.about-product .testimonials .heading {
  margin: 0 0 30px 0;
}
.about-product .testimonials .heading h3 {
  font-size: 36px;
  font-weight: 600;
}
.about-product .testimonials .slider-area .slick-prev {
  top: -40px;
  left: 91%;
}
.about-product .testimonials .slider-area .slick-prev::before {
  color: #000000;
  content: "←";
  font-family: fontawesome;
  font-size: 18px;
  padding: 8px;
  border-radius: 50px;
  background-color: #fff;
}
.about-product .testimonials .slider-area .slick-prev:hover::before {
  background-color: #af946d;
  color: #fff;
}
.about-product .testimonials .slider-area .slick-next {
  top: -40px;
  right: 30px;
}
.about-product .testimonials .slider-area .slick-next::before {
  color: #000000;
  content: "→";
  font-family: fontawesome;
  font-size: 18px;
  padding: 8px;
  border-radius: 50px;
  background-color: #fff;
}
.about-product .testimonials .slider-area .slick-next:hover::before {
  background-color: #af946d;
  color: #fff;
}
.about-product .testimonials .slider-area .slick-slide {
  margin: 10px;
}
.about-product .testimonials .slider-area .slick-slide .custm-slider-items {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  min-height: 400px !important;
}
.about-product .testimonials .slider-area .slick-slide .custm-slider-items .description {
  height: 230px;
  overflow-y: auto;
  margin-bottom: 20px;
}
.about-product .testimonials .slider-area .slick-slide .custm-slider-items .description::-webkit-scrollbar {
  background-color: #f5f5f5 !important;
  width: 2px !important;
}
.about-product .testimonials .slider-area .slick-slide .custm-slider-items .description::-webkit-scrollbar-thumb {
  background-color: #f5f5f5 !important;
  width: 2px !important;
}
.about-product .testimonials .slider-area .slick-slide .custm-slider-items .description::-webkit-scrollbar-track {
  background-color: #ffffff !important;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  width: 2px;
}
.about-product .testimonials .slider-area .slick-slide .custm-slider-items .custm-rating-dv {
  align-items: center;
}
.about-product .testimonials .slider-area .slick-slide .custm-slider-items .custm-rating-dv .avatar {
  display: flex;
}
.about-product .testimonials .slider-area .slick-slide .custm-slider-items .custm-rating-dv .avatar img {
  width: 76px;
  height: 76px !important;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-product .testimonials .slider-area .slick-slide .custm-slider-items .custm-rating-dv .avatar-details {
  padding: 0 20px;
}
.about-product .testimonials .slider-area .slick-slide .custm-slider-items .custm-rating-dv .avatar-details h5 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  margin-bottom: 5px !important;
  margin: 0px !important;
}
.about-product .testimonials .slider-area .slick-slide .custm-slider-items .custm-rating-dv .avatar-details p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  margin-bottom: 5px !important;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.about-product .testimonials .slider-area .slick-slide .custm-slider-items .custm-rating-dv .rating {
  display: flex;
}
.about-product .testimonials .slider-area .slick-slide .custm-slider-items .custm-rating-dv .rating img {
  width: 16.25px;
  height: 15.62px;
}

.product-listing .banner {
  background-color: #AF946D;
}
.product-listing .banner img {
  width: 100%;
}
.product-listing .banner .banner-heading {
  padding: 10px 0;
}
.product-listing .banner .banner-heading h1 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.product-listing .custm-product-list {
  padding: 60px 0;
}
.product-listing .custm-product-list .filters .filter-btn {
  margin: 0 0 20px 0;
}
.product-listing .custm-product-list .filters .filter-btn a {
  background-color: #af946d;
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
}
.product-listing .custm-product-list .filters .filter-btn a img {
  width: 20px;
  height: 17px;
}
.product-listing .custm-product-list .filters .categories {
  padding: 20px 0;
  border-bottom: 1px solid #E6E6E6;
}
.product-listing .custm-product-list .filters .categories .custm-collapse-btn:focus {
  box-shadow: none;
}
.product-listing .custm-product-list .filters .categories .card-body {
  border: 0;
  border-bottom: 1px solid #e6e6e6;
}
.product-listing .custm-product-list .filters .categories .all-cate .item-name {
  color: #000;
}
.product-listing .custm-product-list .filters .categories .custm-collapse-btn {
  width: 100%;
  background-color: #fff;
  border: 0;
}
.product-listing .custm-product-list .filters .categories .custm-collapse-btn .accicon {
  float: right;
}
.product-listing .custm-product-list .filters .categories .custm-collapse-btn .title {
  float: left;
  font-size: 18px;
  font-weight: 500;
}
.product-listing .custm-product-list .filters .categories .custm-collapse-btn:not(.collapsed) .rotate-icon {
  transform: rotate(180deg);
}
.product-listing .custm-product-list .filters .categories .rating-selection label {
  display: flex;
  color: #000;
  font-size: 18px;
}
.product-listing .custm-product-list .filters .categories .rating-selection label input[type=checkbox] {
  accent-color: #af946d;
  padding: 2px;
}
.product-listing .custm-product-list .filters .categories .rating-selection label .star {
  margin: 0 10px;
}
.product-listing .custm-product-list .filters .categories .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-listing .custm-product-list .filters .categories .tags li {
  background-color: #f2f2f2;
  text-align: center;
  padding: 2px 15px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 400;
}
.product-listing .custm-product-list .filters .categories .tags li:nth-child(2) {
  background-color: #af946d;
  color: #fff;
}
.product-listing .custm-product-list .item-list .sort-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 30px 0;
}
.product-listing .custm-product-list .item-list .sort-items .custm-left-dv .dropdown-toggle {
  border: 1px solid #e6e6e6;
}
.product-listing .custm-product-list .item-list .sort-items .custm-left-dv .dropdown-toggle::after {
  margin-left: 4em;
}
.product-listing .custm-product-list .item-list .sort-items .custm-left-dv form .input-group .custom-select option {
  cursor: pointer;
}
.product-listing .custm-product-list .item-list .sort-items .custm-right-dv p {
  text-align: center;
  color: #000;
  margin: 0;
}
.product-listing .custm-product-list .item-list .sort-items .custm-right-dv p span {
  color: #666666;
}
.product-listing .custm-product-list .item-list .all-products .product-card {
  background-color: #f9f8f8;
  padding: 20px 10px;
  border-radius: 20px;
  margin: 0 0 10px 0;
}
.product-listing .custm-product-list .item-list .all-products .product-card .card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-listing .custm-product-list .item-list .all-products .product-card .card-head .product-category {
  background-color: #AF946D;
  color: #fff;
  padding: 2px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.product-listing .custm-product-list .item-list .all-products .product-card .card-head .wishlist i {
  margin-block-end: 20px;
  background-color: #eae4dc;
  border-radius: 50%;
  padding: 10px;
  font-size: 20px;
}
.product-listing .custm-product-list .item-list .all-products .product-card .product-img img {
  height: 270px;
}
.product-listing .custm-product-list .item-list .all-products .product-card .product-name p {
  color: #000;
  font-size: 16px;
  font-weight: 600;
}
.product-listing .custm-product-list .item-list .all-products .product-card .custm-price-dv {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.product-listing .custm-product-list .item-list .all-products .product-card .custm-price-dv .price p {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
.product-listing .custm-product-list .item-list .all-products .product-card .custm-price-dv .price span {
  color: #B8B8B8;
  font-size: 15px;
  font-weight: 600;
  text-decoration: line-through;
  margin: 0 5px 0 0;
}
.product-listing .custm-product-list .item-list .all-products .product-card .custm-price-dv .rating {
  display: flex;
}

.product-detail-main-dv .banner {
  background-color: #AF946D;
}
.product-detail-main-dv .banner img {
  width: 100%;
}
.product-detail-main-dv .banner .banner-heading {
  padding: 10px 0;
}
.product-detail-main-dv .banner .banner-heading h1 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.product-detail-main-dv .product-detail {
  padding: 60px 0;
}
.product-detail-main-dv .product-detail .product-card {
  background-color: #f9f8f8;
  padding: 20px 10px 40px 10px;
  border-radius: 20px;
  margin: 0 0 10px 0;
}
.product-detail-main-dv .product-detail .product-card .card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-detail-main-dv .product-detail .product-card .card-head .product-category {
  background-color: #AF946D;
  color: #fff;
  padding: 2px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.product-detail-main-dv .product-detail .product-card .card-head .wishlist i {
  background-color: #eae4dc;
  border-radius: 50%;
  padding: 10px;
  font-size: 20px;
}
.product-detail-main-dv .product-detail .product-card .product-img img {
  filter: drop-shadow(-5px 5px 15px #b3b3b3);
}
.product-detail-main-dv .product-detail .product-desc {
  display: flex;
  flex-direction: column;
}
.product-detail-main-dv .product-detail .product-desc h3 {
  font-size: 36px;
  font-weight: 600;
  margin: 0;
}
.product-detail-main-dv .product-detail .product-desc .price {
  margin: 0 0 20px 0;
}
.product-detail-main-dv .product-detail .product-desc .price p {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.product-detail-main-dv .product-detail .product-desc .price span {
  color: #B8B8B8;
  font-size: 15px;
  font-weight: 600;
  text-decoration: line-through;
  margin: 0 5px 0 0;
}
.product-detail-main-dv .product-detail .product-desc .para p {
  font-size: 16px;
  line-height: 30px;
}
.product-detail-main-dv .product-detail .product-desc .variant {
  margin: 0 0 20px 0;
}
.product-detail-main-dv .product-detail .product-desc .variant h4 {
  color: #B8B8B8;
  margin-bottom: 5px;
}
.product-detail-main-dv .product-detail .product-desc .variant h4 span {
  color: #101010;
}
.product-detail-main-dv .product-detail .product-desc .variant .variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-detail-main-dv .product-detail .product-desc .variant .variant-options .option {
  border: 1px solid #B8B8B8;
  padding: 10px;
}
.product-detail-main-dv .product-detail .product-desc .variant .variant-options .option.active {
  border-color: #AF946D;
  color: #101010;
  box-shadow: 0px 0px 10px 0px rgba(175, 148, 109, 0.75);
}
.product-detail-main-dv .product-detail .product-desc .sub-variant {
  margin: 0 0 30px 0;
}
.product-detail-main-dv .product-detail .product-desc .sub-variant h4 {
  color: #B8B8B8;
  margin-bottom: 5px;
}
.product-detail-main-dv .product-detail .product-desc .sub-variant h4 span {
  color: #101010;
}
.product-detail-main-dv .product-detail .product-desc .sub-variant .sub-variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-detail-main-dv .product-detail .product-desc .sub-variant .sub-variant-options .option {
  border: 1px solid #B8B8B8;
  padding: 10px;
}
.product-detail-main-dv .product-detail .product-desc .sub-variant .sub-variant-options .option.active {
  border-color: #AF946D;
  color: #101010;
  box-shadow: 0px 0px 10px 0px rgba(175, 148, 109, 0.75);
}
.product-detail-main-dv .product-detail .product-desc .quantity-counter {
  display: flex;
  align-items: center;
  /*--------------------------*/
}
.product-detail-main-dv .product-detail .product-desc .quantity-counter h4 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 20px 0 0;
}
.product-detail-main-dv .product-detail .product-desc .quantity-counter button:focus {
  outline: none;
  box-shadow: none;
}
.product-detail-main-dv .product-detail .product-desc .quantity-counter input:focus {
  outline: none;
  box-shadow: none;
}
.product-detail-main-dv .product-detail .product-desc .quantity-counter a:hover {
  text-decoration: none;
}
.product-detail-main-dv .product-detail .product-desc .quantity-counter .qty-container {
  border: 1px solid #000;
  border-radius: 15px 0 15px 0;
  margin: 0 20px 5px 0;
}
.product-detail-main-dv .product-detail .product-desc .quantity-counter .qty-container .input-qty {
  text-align: center;
  padding: 6px 10px;
  border: unset;
  max-width: 60px;
}
.product-detail-main-dv .product-detail .product-desc .quantity-counter .qty-container .qty-btn-minus {
  background-color: unset;
  border: unset;
  font-size: 10px;
  height: 40px;
  width: 38px;
  transition: 0.3s;
  margin-right: -1px;
}
.product-detail-main-dv .product-detail .product-desc .quantity-counter .qty-container .qty-btn-minus i {
  background-color: #f2f2f2;
  padding: 10px;
  border-radius: 50%;
}
.product-detail-main-dv .product-detail .product-desc .quantity-counter .qty-container .qty-btn-plus {
  background-color: unset;
  border: unset;
  font-size: 10px;
  height: 40px;
  width: 38px;
  transition: 0.3s;
  margin-left: -1px;
}
.product-detail-main-dv .product-detail .product-desc .quantity-counter .qty-container .qty-btn-plus i {
  background-color: #f2f2f2;
  padding: 10px;
  border-radius: 50%;
}
.product-detail-main-dv .product-detail .product-desc .quantity-counter .view-cart-btn a {
  display: block;
  background-color: #AF946D;
  padding: 13px 30px;
  border-radius: 10px 0 10px 0;
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1490196078);
  color: #fff;
  margin: 0 0 0 10px;
}
.product-detail-main-dv .product-detail .product-info {
  padding: 60px 0 0;
}
.product-detail-main-dv .product-detail .product-info .nav-tabs {
  justify-content: center;
  border: 0;
}
.product-detail-main-dv .product-detail .product-info .nav-tabs .nav-item {
  margin: 0 30px;
}
.product-detail-main-dv .product-detail .product-info .nav-tabs .nav-item .btn1 {
  background-color: unset;
  border: 1px solid #000;
  padding: 12px 60px;
  border-radius: 10px 0 10px 0;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
}
.product-detail-main-dv .product-detail .product-info .nav-tabs .nav-item .btn1:focus {
  outline: none;
}
.product-detail-main-dv .product-detail .product-info .nav-tabs .nav-item .btn1.active {
  background-color: #AF946D;
  border: none;
  padding: 13px 60px;
  color: #fff;
}
.product-detail-main-dv .product-detail .product-info .tab-content .tab-pane {
  padding: 20px 0 0 0;
}
.product-detail-main-dv .product-detail .product-info .tab-content .tab-pane .product-desc-list ul li {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 15px 0;
}
.product-detail-main-dv .product-detail .product-info .tab-content .tab-pane .product-desc-list ul li img {
  margin: 0 20px 0 0;
}
.product-detail-main-dv .product-detail .recent-products {
  padding: 60px 0;
}
.product-detail-main-dv .product-detail .recent-products .heading h3 {
  font-size: 36px;
  font-weight: 600;
}
.product-detail-main-dv .product-detail .recent-products .slider-area .slick-prev {
  top: -40px;
  left: 91%;
}
.product-detail-main-dv .product-detail .recent-products .slider-area .slick-prev::before {
  color: #000000;
  content: "←";
  font-family: fontawesome;
  font-size: 18px;
  padding: 8px;
  border-radius: 50px;
  background-color: #fff;
}
.product-detail-main-dv .product-detail .recent-products .slider-area .slick-prev:hover::before {
  background-color: #af946d;
  color: #fff;
}
.product-detail-main-dv .product-detail .recent-products .slider-area .slick-next {
  top: -40px;
  right: 30px;
}
.product-detail-main-dv .product-detail .recent-products .slider-area .slick-next::before {
  color: #000000;
  content: "→";
  font-family: fontawesome;
  font-size: 18px;
  padding: 8px;
  border-radius: 50px;
  background-color: #fff;
}
.product-detail-main-dv .product-detail .recent-products .slider-area .slick-next:hover::before {
  background-color: #af946d;
  color: #fff;
}
.product-detail-main-dv .product-detail .recent-products .slider-area .slick-slide {
  margin: 10px;
}
.product-detail-main-dv .product-detail .recent-products .slider-area .product-card {
  background-color: #f9f8f8;
  padding: 20px 10px;
  border-radius: 20px;
  margin: 0 0 10px 0;
}
.product-detail-main-dv .product-detail .recent-products .slider-area .product-card .card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-detail-main-dv .product-detail .recent-products .slider-area .product-card .card-head .product-category {
  background-color: #AF946D;
  color: #fff;
  padding: 2px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.product-detail-main-dv .product-detail .recent-products .slider-area .product-card .card-head .wishlist i {
  background-color: #eae4dc;
  border-radius: 50%;
  padding: 10px;
  font-size: 20px;
}
.product-detail-main-dv .product-detail .recent-products .slider-area .product-card .product-img img {
  filter: drop-shadow(-5px 5px 10px #9e9d9d);
  margin: 0 0 20px 0;
}
.product-detail-main-dv .product-detail .recent-products .slider-area .product-card .product-name p {
  color: #000;
  font-size: 16px;
  font-weight: 600;
}
.product-detail-main-dv .product-detail .recent-products .slider-area .product-card .custm-price-dv {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-detail-main-dv .product-detail .recent-products .slider-area .product-card .custm-price-dv .price p {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.product-detail-main-dv .product-detail .recent-products .slider-area .product-card .custm-price-dv .price span {
  color: #B8B8B8;
  font-size: 15px;
  font-weight: 600;
  text-decoration: line-through;
  margin: 0 5px 0 0;
}
.product-detail-main-dv .product-detail .recent-products .slider-area .product-card .custm-price-dv .rating {
  display: flex;
}

.cart-main .banner {
  background-color: #AF946D;
}
.cart-main .banner img {
  width: 100%;
}
.cart-main .banner .banner-heading {
  padding: 10px 0;
}
.cart-main .banner .banner-heading h1 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.cart-main .cart-details {
  padding: 60px 0;
}
.cart-main .cart-details table {
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  width: 100%;
  margin: 0 0 20px 0;
}
.cart-main .cart-details table thead th {
  padding: 10px 10px 10px 20px;
}
.cart-main .cart-details table thead td {
  padding: 15px;
}
.cart-main .cart-details table thead tr {
  border: 1px solid #e6e6e6;
}
.cart-main .cart-details table tbody .table-img {
  width: 70px;
  height: 70px;
  filter: drop-shadow(-5px 5px 10px #b3b3b3);
  margin: 0 20px 0 0;
}
.cart-main .cart-details table tbody th {
  padding: 10px 10px 10px 20px;
}
.cart-main .cart-details table tbody td {
  padding: 15px;
}
.cart-main .cart-details table tbody tr {
  border: 1px solid #e6e6e6;
}
.cart-main .cart-details table tbody .quantity-counter {
  display: flex;
  align-items: center;
  /*--------------------------*/
}
.cart-main .cart-details table tbody .quantity-counter h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 20px 0 0;
}
.cart-main .cart-details table tbody .quantity-counter button:focus {
  outline: none;
  box-shadow: none;
}
.cart-main .cart-details table tbody .quantity-counter input:focus {
  outline: none;
  box-shadow: none;
}
.cart-main .cart-details table tbody .quantity-counter a:hover {
  text-decoration: none;
}
.cart-main .cart-details table tbody .quantity-counter .qty-container {
  display: flex;
  border: 1px solid #e6e6e6;
  border-radius: 30px;
  margin: 0 20px 0 0;
}
.cart-main .cart-details table tbody .quantity-counter .qty-container .input-qty {
  text-align: center;
  padding: 6px 10px;
  border: unset;
  max-width: 60px;
}
.cart-main .cart-details table tbody .quantity-counter .qty-container .qty-btn-minus {
  background-color: unset;
  border: unset;
  font-size: 10px;
  height: 40px;
  width: 38px;
  transition: 0.3s;
  margin-right: -1px;
}
.cart-main .cart-details table tbody .quantity-counter .qty-container .qty-btn-minus i {
  background-color: #f2f2f2;
  padding: 10px;
  border-radius: 50%;
}
.cart-main .cart-details table tbody .quantity-counter .qty-container .qty-btn-plus {
  background-color: unset;
  border: unset;
  font-size: 10px;
  height: 40px;
  width: 38px;
  transition: 0.3s;
  margin-left: -1px;
}
.cart-main .cart-details table tbody .quantity-counter .qty-container .qty-btn-plus i {
  background-color: #f2f2f2;
  padding: 10px;
  border-radius: 50%;
}
.cart-main .cart-details table tbody .sub-total h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
.cart-main .cart-details table tbody .save-later {
  display: flex;
  align-items: center;
}
.cart-main .cart-details table tbody .save-later p {
  color: #2522A5;
  font-size: 16px;
  font-weight: 500;
  margin: 0 10px 0 0;
}
.cart-main .cart-details table tbody .save-later a {
  width: 25px;
  z-index: 10;
}
.cart-main .cart-details table tbody .save-later .close-btn {
  width: 25px;
}
.cart-main .cart-details table tbody .cart-btn {
  display: flex;
  justify-content: center;
}
.cart-main .cart-details table tbody .cart-btn a {
  background-color: #AF946D;
  padding: 10px 20px;
  border-radius: 0 10px 0 10px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1490196078);
  color: #fff;
}
.cart-main .cart-details .coupon {
  padding: 20px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
}
.cart-main .cart-details .coupon form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.cart-main .cart-details .coupon form label {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.cart-main .cart-details .coupon form input {
  padding: 5px 10px;
  border-radius: 30px;
}
.cart-main .cart-details .coupon form input:focus {
  outline: none;
}
.cart-main .cart-details .coupon form .search-area {
  margin: 0 0 0 20px;
}
.cart-main .cart-details .coupon form .search-area input {
  width: 400px;
  border: 1px solid #e6e6e6;
  padding: 10px;
}
.cart-main .cart-details .coupon form .submit-btn {
  position: absolute;
  right: 0;
}
.cart-main .cart-details .coupon form .submit-btn a {
  display: block;
  background-color: #000;
  color: #fff;
  padding: 10px 26px;
  border-radius: 30px;
}
.cart-main .cart-details .cart-total {
  border: 1px solid #e5e5e5;
  padding: 15px;
}
.cart-main .cart-details .cart-total h4 {
  font-size: 22px;
}
.cart-main .cart-details .cart-total .sub-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
}
.cart-main .cart-details .cart-total .sub-total h5 {
  font-size: 16px;
  margin: 0;
}
.cart-main .cart-details .cart-total .sub-total p {
  color: #000;
  font-size: 16px;
  margin: 0;
}
.cart-main .cart-details .cart-total .shipping {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
}
.cart-main .cart-details .cart-total .shipping h5 {
  font-size: 16px;
  margin: 0;
}
.cart-main .cart-details .cart-total .shipping p {
  color: #000;
  font-size: 16px;
  margin: 0;
}
.cart-main .cart-details .cart-total .total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.cart-main .cart-details .cart-total .total h5 {
  color: #a08864;
  font-size: 18px;
  margin: 0;
}
.cart-main .cart-details .cart-total .total p {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.cart-main .cart-details .cart-total .checkout-btn a {
  background-color: #AF946D;
  color: #fff;
  display: block;
  padding: 10px 5px;
  border-radius: 15px 0 15px 0;
  text-align: center;
}

.checkout-main .banner {
  background-color: #AF946D;
}
.checkout-main .banner img {
  width: 100%;
}
.checkout-main .banner .banner-heading {
  padding: 10px 0;
}
.checkout-main .banner .banner-heading h1 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.checkout-main .checkout-details {
  padding: 60px 0;
}
.checkout-main .checkout-details .heading h4 {
  font-size: 22px;
  padding: 15px 0 0 0;
  font-weight: 600;
}
.checkout-main .checkout-details .checkout-form form label {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}
.checkout-main .checkout-details .checkout-form form label span {
  color: #808080;
  font-size: 16px;
  font-weight: 400;
}
.checkout-main .checkout-details .checkout-form form input {
  padding: 10px;
}
.checkout-main .checkout-details .checkout-form form input::-moz-placeholder {
  color: #999999;
}
.checkout-main .checkout-details .checkout-form form input::placeholder {
  color: #999999;
}
.checkout-main .checkout-details .checkout-form form select {
  height: auto;
  padding: 10px;
}
.checkout-main .checkout-details .checkout-form form .additional-info {
  border-top: 1px solid #E6E6E6;
  padding: 30px 0;
}
.checkout-main .checkout-details .checkout-form form .additional-info h4 {
  color: #000;
  font-size: 24px;
  font-weight: 500;
}
.checkout-main .checkout-details .checkout-form form .additional-info h6 {
  font-size: 18px;
}
.checkout-main .checkout-details .checkout-form form .additional-info p {
  color: #999999;
  font-size: 18px;
  border: 1px solid #E6E6E6;
}
.checkout-main .checkout-details .order-summery {
  border: 1px solid #e5e5e5;
  padding: 15px;
}
.checkout-main .checkout-details .order-summery h4 {
  font-size: 22px;
  font-weight: 600;
}
.checkout-main .checkout-details .order-summery .item-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.checkout-main .checkout-details .order-summery .item-total h5 {
  margin: 0;
  font-size: 16px;
}
.checkout-main .checkout-details .order-summery .item-total p {
  color: #000;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
.checkout-main .checkout-details .order-summery .item-total img {
  height: 50px;
}
.checkout-main .checkout-details .order-summery .sub-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
}
.checkout-main .checkout-details .order-summery .sub-total h5 {
  font-size: 16px;
  color: #000000;
  margin: 0;
}
.checkout-main .checkout-details .order-summery .sub-total p {
  color: #000;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
.checkout-main .checkout-details .order-summery .shipping {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
}
.checkout-main .checkout-details .order-summery .shipping h5 {
  font-size: 16px;
  color: #000000;
  margin: 0;
}
.checkout-main .checkout-details .order-summery .shipping p {
  color: #000;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.checkout-main .checkout-details .order-summery .total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.checkout-main .checkout-details .order-summery .total h5 {
  color: #4D4D4D;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.checkout-main .checkout-details .order-summery .total p {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.checkout-main .checkout-details .order-summery .payment-method .radio-box label {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}
.checkout-main .checkout-details .order-summery .payment-method .radio-box input {
  accent-color: #af946d;
  margin-right: 5px;
}
.checkout-main .checkout-details .order-summery .checkout-btn a {
  background-color: #AF946D;
  color: #fff;
  display: block;
  padding: 10px 20px;
  border-radius: 15px 0 15px 0;
  text-align: center;
}

.service-detail-main .banner {
  background-color: #AF946D;
}
.service-detail-main .banner img {
  width: 100%;
}
.service-detail-main .banner .banner-heading {
  padding: 10px 0;
}
.service-detail-main .banner .banner-heading h1 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.service-detail-main .product-about {
  padding: 60px 0;
}
.service-detail-main .product-about .heading h4 {
  font-size: 32px;
  font-weight: 600;
}
.service-detail-main .product-about .about-sec {
  padding: 60px 0 0 0;
}
.service-detail-main .product-about .about-sec .about-img2 {
  margin: 30px 0 20px 0;
}
.service-detail-main .product-about .about-sec .para {
  padding: 0 0 0 50px;
}
.service-detail-main .product-about .about-sec .para h4 {
  font-size: 32px;
  font-weight: 600;
}
.service-detail-main .product-about .about-sec .para p {
  text-align: justify;
}
.service-detail-main .discover-item {
  padding: 60px 0;
  background-color: rgba(224, 224, 224, 0.2117647059);
}
.service-detail-main .discover-item .heading {
  padding: 0 0 30px 0;
  text-align: center;
}
.service-detail-main .discover-item .heading h4 {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}
.service-detail-main .discover-item .disc-item-dv .item-box {
  text-align: center;
}
.service-detail-main .discover-item .disc-item-dv .item-box img {
  margin: 0 0 10px 0;
}
.service-detail-main .discover-item .disc-item-dv .item-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.service-detail-main .we-are-best {
  padding: 60px 0 120px 0;
}
.service-detail-main .we-are-best .custm-dv-left {
  display: flex;
}
.service-detail-main .we-are-best .custm-dv-left .img-dv2 img {
  position: relative;
  top: 20%;
  right: 25%;
}
.service-detail-main .we-are-best .custm-dv-right .heading h4 {
  font-size: 32px;
  font-weight: 600;
}
.service-detail-main .we-are-best .custm-dv-right .best-quality .img-box {
  background: #ffffff;
  margin: 5px;
  padding: 5px;
  box-shadow: 0px 0px 80px 0px rgba(205, 205, 205, 0.2509803922);
}
.service-detail-main .we-are-best .custm-dv-right .best-quality .img-box span {
  font-weight: 600;
  margin: 0 0 0 10px;
}
.service-detail-main .service-menu {
  padding: 60px 0;
}
.service-detail-main .service-menu .heading {
  text-align: center;
}
.service-detail-main .service-menu .heading h4 {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}
.service-detail-main .service-menu .product-info {
  padding: 0 0 60px 0;
}
.service-detail-main .service-menu .product-info .nav-tabs {
  justify-content: space-between;
  border: 0;
}
.service-detail-main .service-menu .product-info .nav-tabs .nav-item .btn1 {
  background-color: unset;
  border-radius: 10px 0 10px 0;
  color: #4F4F4F;
  font-size: 16px;
}
.service-detail-main .service-menu .product-info .nav-tabs .nav-item .btn1:focus {
  outline: none;
}
.service-detail-main .service-menu .product-info .nav-tabs .nav-item .btn1:hover {
  border-color: #fff;
}
.service-detail-main .service-menu .product-info .nav-tabs .nav-item .btn1.active {
  border: none;
  color: #a08864;
  border-bottom: 1px solid #a08864;
  border-radius: 0;
  font-weight: 600;
}
.service-detail-main .service-menu .product-info .tab-content .tab-pane {
  padding: 20px 0 0 0;
}
.service-detail-main .service-menu .product-info .tab-content .tab-pane .product-desc-list ul li {
  display: flex;
  justify-content: space-between;
}
.service-detail-main .service-menu .product-info .tab-content .tab-pane .product-desc-list ul li .item-desc h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 5px 0;
}
.service-detail-main .service-menu .product-info .tab-content .tab-pane .product-desc-list ul li .item-desc h6 {
  font-size: 16px;
  color: #4F4F4F;
  margin: 0 0 5px 0;
}
.service-detail-main .service-menu .product-info .tab-content .tab-pane .product-desc-list ul li .item-desc p {
  color: #828282;
}
.service-detail-main .service-menu .product-info .tab-content .tab-pane .product-desc-list ul li .item-price p {
  font-size: 20px;
  font-weight: 600;
  color: #AF946D;
}
.service-detail-main .our-team {
  padding: 0 0 60px 0;
}
.service-detail-main .our-team .team-top-img-dv {
  background-image: url(../images/piptan-foods/product-detail/Bg.png);
  background-size: 100%;
  height: 300px;
}
.service-detail-main .our-team .team-top-img-dv .heading {
  padding: 55px 0 0 0;
  text-align: center;
}
.service-detail-main .our-team .team-top-img-dv .heading h4 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.service-detail-main .our-team .team-top-img-dv .heading p {
  color: #fff;
}
.service-detail-main .our-team .team-members {
  margin: -140px 0 0 0;
}
.service-detail-main .our-team .team-members .team-box {
  text-align: center;
}
.service-detail-main .our-team .team-members .team-box img {
  margin: 0 0 20px 0;
  height: 250px;
  border-radius: 10px !important;
}
.service-detail-main .our-team .team-members .team-box h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.service-detail-main .testimonials {
  padding: 60px 0 80px 0;
  background-color: rgba(224, 224, 224, 0.2117647059);
}
.service-detail-main .testimonials .rewiews-dv .heading h4 {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}
.service-detail-main .testimonials .rewiews-dv #slider .slick-prev {
  top: 130px;
  left: 425px;
}
.service-detail-main .testimonials .rewiews-dv #slider .slick-prev::before {
  content: "\f060";
  border-radius: 50%;
  color: #272727;
  font-family: fontawesome;
}
.service-detail-main .testimonials .rewiews-dv #slider .slick-next {
  right: 60px;
  top: 130px;
}
.service-detail-main .testimonials .rewiews-dv #slider .slick-next::before {
  content: "\f061";
  border-radius: 50%;
  color: #272727;
  font-family: fontawesome;
}
.service-detail-main .testimonials .rewiews-dv .testmonial-text p {
  padding: 0 30px 0 0;
}
.service-detail-main .testimonials .rewiews-dv .testmonial-text .avatar {
  display: flex;
  align-items: center;
}
.service-detail-main .testimonials .rewiews-dv .testmonial-text .avatar .avatar-info {
  margin: 0 0 0 10px;
}
.service-detail-main .testimonials .rewiews-dv .testmonial-text .avatar .avatar-info h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.service-detail-main .testimonials .rewiews-dv .testmonial-text .avatar .avatar-info p {
  font-size: 15px;
  margin: 0;
}
.service-detail-main .testimonials .testimonial-right-dv {
  position: relative;
}
.service-detail-main .testimonials .testimonial-right-dv .order-dv {
  background-color: #fff;
  position: absolute;
  bottom: -20px;
  left: -40px;
  z-index: 1;
  padding: 30px;
  width: 70%;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.1019607843);
}
.service-detail-main .testimonials .testimonial-right-dv .order-dv .heading-area {
  display: flex;
  align-items: center;
}
.service-detail-main .testimonials .testimonial-right-dv .order-dv .heading-area h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.service-detail-main .testimonials .testimonial-right-dv .order-dv .heading-area p {
  margin: 0 5px;
}
.service-detail-main .best-brand {
  padding: 60px 0;
}
.service-detail-main .best-brand .heading {
  text-align: center;
}
.service-detail-main .best-brand .heading h4 {
  font-size: 32px;
  font-weight: 600;
}

.gallery-main .banner {
  background-color: #AF946D;
}
.gallery-main .banner img {
  width: 100%;
}
.gallery-main .banner .banner-heading {
  padding: 10px 0;
}
.gallery-main .banner .banner-heading h1 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.gallery-main .media {
  padding: 60px 0;
}
.gallery-main .media .media-box {
  text-align: center;
}
.gallery-main .media .media-box h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.all-products-main .banner {
  background-color: #AF946D;
}
.all-products-main .banner img {
  width: 100%;
}
.all-products-main .banner .banner-heading {
  padding: 10px 0;
}
.all-products-main .banner .banner-heading h1 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.all-products-main .media {
  padding: 60px 0;
}
.all-products-main .media .media-box {
  text-align: center;
  margin: 0 0 15px 0;
}
.all-products-main .media .media-box h5 {
  font-size: 20px;
  font-weight: 600;
  padding: 20px 0;
  margin: 0;
}

.order-successful-main .banner {
  background-color: #AF946D;
}
.order-successful-main .banner img {
  width: 100%;
}
.order-successful-main .banner .banner-heading {
  padding: 10px 0;
}
.order-successful-main .banner .banner-heading h1 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.order-successful-main .success-message-dv {
  padding: 60px 0;
}
.order-successful-main .success-message-dv .text-dv {
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.order-successful-main .success-message-dv .text-dv h4 {
  margin: 0 0 10px 0;
}
.order-successful-main .success-message-dv .text-dv p {
  text-align: center;
  margin: 0 0 30px 0;
}
.order-successful-main .success-message-dv .text-dv .custm-btns .dashboard {
  border: 1px solid #000;
  padding: 11px 30px;
  border-radius: 0 10px 0 10px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 10px;
}
.order-successful-main .success-message-dv .text-dv .custm-btns .order {
  background-color: #AF946D;
  padding: 12px 30px;
  border-radius: 0 10px 0 10px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin: 0 10px;
}

.contact-us-main .banner {
  background-color: #AF946D;
}
.contact-us-main .banner img {
  width: 100%;
}
.contact-us-main .banner .banner-heading {
  padding: 10px 0;
}
.contact-us-main .banner .banner-heading h1 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.contact-us-main .contact-info {
  padding: 60px 0;
}
.contact-us-main .contact-info .custm-dv-right .heading h4 {
  font-size: 32px;
  font-weight: 600;
}
.contact-us-main .contact-info .custm-dv-right .contact-medium .message {
  width: 330px;
  display: flex;
  padding: 10px;
  border-radius: 10px;
}
.contact-us-main .contact-info .custm-dv-right .contact-medium .message:hover {
  box-shadow: 0px 12px 19px 0px rgba(201, 201, 201, 0.2509803922);
}
.contact-us-main .contact-info .custm-dv-right .contact-medium .message .textarea {
  margin: 0 0 0 20px;
}
.contact-us-main .contact-info .custm-dv-right .contact-medium .message .textarea h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.contact-us-main .contact-info .custm-dv-right .contact-medium .phone {
  width: 330px;
  display: flex;
  padding: 10px;
  border-radius: 10px;
}
.contact-us-main .contact-info .custm-dv-right .contact-medium .phone:hover {
  box-shadow: 0px 12px 19px 0px rgba(201, 201, 201, 0.2509803922);
}
.contact-us-main .contact-info .custm-dv-right .contact-medium .phone .textarea {
  margin: 0 0 0 20px;
}
.contact-us-main .contact-info .custm-dv-right .contact-medium .phone .textarea h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.contact-us-main .contact-info .custm-dv-right .social-icon {
  margin: 0 0 0 10px;
}
.contact-us-main .contact-info .custm-dv-right .social-icon a {
  margin: 0 10px 0 0;
}
.contact-us-main .contact-info .form-area {
  padding: 60px 0;
}
.contact-us-main .contact-info .form-area form label {
  color: #000;
  font-weight: 600;
}
.contact-us-main .contact-info .form-area form input {
  border: 1px solid #857a7d;
  border-radius: 8px;
  padding: 12px;
}
.contact-us-main .contact-info .form-area form textarea {
  border: 1px solid #857a7d;
  border-radius: 8px;
}
.contact-us-main .contact-info .form-area form .send-btn {
  margin: 30px 0 0 10px;
}
.contact-us-main .contact-info .form-area form .send-btn a {
  background-color: #AF946D;
  padding: 13px 30px;
  color: #fff;
  border-radius: 10px 0 10px 0;
}

.my-profile-main .banner {
  background-color: #AF946D;
}
.my-profile-main .banner img {
  width: 100%;
}
.my-profile-main .banner .banner-heading {
  padding: 10px 0;
}
.my-profile-main .banner .banner-heading h1 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.my-profile-main .my-profile-area {
  padding: 60px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .nav-pills {
  box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.0784313725);
  border-radius: 10px;
  gap: 5px;
}
.my-profile-main .my-profile-area .custm-sidebar .nav-pills .nav-link {
  background-color: #ffffff;
  width: 265px;
  padding: 10px 20px;
  border: none;
  border-radius: 0;
  text-align: start;
  color: #5f6c72;
  cursor: pointer;
}
.my-profile-main .my-profile-area .custm-sidebar .nav-pills .nav-link:focus {
  outline: none;
}
.my-profile-main .my-profile-area .custm-sidebar .nav-pills .nav-link.active {
  background-color: #AF946D;
  border: none;
  color: #fff;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content {
  width: 100%;
  margin-left: 30px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .user-info .my-account {
  border: 1px solid #e4e7e9;
  border-radius: 10px;
  padding: 20px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .user-info .my-account .heading {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e4e7e9;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .user-info .my-account .heading h4 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 10px 20px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .user-info .my-account .heading .save-btn {
  margin: 0px 0 10px 20px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .user-info .my-account .heading .save-btn a {
  background-color: #AF946D;
  padding: 13px 30px;
  color: #fff;
  margin: 20px 0 0 0;
  text-transform: uppercase;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .user-info .my-account .form-area form {
  padding: 20px 0 0 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .user-info .my-account .form-area form label {
  color: #000;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .user-info .change-pass {
  border: 1px solid #e4e7e9;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0 0 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .user-info .change-pass .heading {
  border-bottom: 1px solid #e4e7e9;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .user-info .change-pass .heading h4 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .user-info .change-pass .form-area form {
  padding: 20px 0 0 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .user-info .change-pass .form-area form label {
  color: #000;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .user-info .change-pass .form-area form .custm-pass {
  position: relative;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .user-info .change-pass .form-area form .custm-pass span {
  position: absolute;
  top: 45px;
  right: 20px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .user-info .change-pass .form-area form .save-btn {
  margin: 20px 0 0 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .user-info .change-pass .form-area form .save-btn a {
  background-color: #AF946D;
  padding: 13px 30px;
  color: #fff;
  text-transform: uppercase;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .address {
  border: 1px solid #e4e7e9;
  border-radius: 10px;
  padding: 20px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .address .heading {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e4e7e9;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .address .heading h4 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 10px 20px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .address .heading .save-btn {
  margin: 0 20px 10px 20px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .address .heading .save-btn a {
  background-color: #AF946D;
  padding: 13px 30px;
  color: #fff;
  margin: 20px 0 0 0;
  text-transform: uppercase;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .address table {
  border-radius: 20px;
  width: 100%;
  margin: 0 0 20px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .address table tr th {
  padding: 10px 10px;
  background-color: #E4E7E9;
  text-transform: uppercase;
  color: #000;
  font-weight: 500;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .address table tr th:nth-child(1) {
  padding: 10px 20px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .address table tr td {
  color: #191C1F;
  padding: 10px;
  font-size: 14px;
  vertical-align: baseline;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .address table tr td .edit-address-btn {
  margin: 5px 0 0 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .address table tr td .delete-address-btn {
  color: #EE5858;
  margin: 5px 0 0 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-history {
  border: 1px solid #e4e7e9;
  border-radius: 10px;
  padding: 20px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-history .heading {
  border-bottom: 1px solid #e4e7e9;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-history .heading h4 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 10px 18px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-history table {
  border-radius: 20px;
  width: 100%;
  margin: 0 0 20px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-history table .table-img {
  width: 70px;
  height: 70px;
  filter: drop-shadow(-5px 5px 10px #b3b3b3);
  margin: 0 20px 0 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-history table tr th {
  padding: 10px 20px;
  background-color: #E4E7E9;
  text-transform: uppercase;
  color: #000;
  font-weight: 500;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-history table tr td {
  color: #5F6C72;
  padding: 10px 20px;
  font-size: 14px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-history table tr td:nth-child(1) {
  font-weight: 600;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-history table tr .in-progress {
  color: #AF946D;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-history table tr .completed {
  color: #2DB224;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-history table tr .canceled {
  color: #EE5858;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-history table tr td:nth-child(2) {
  font-weight: 600;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-history table tr td:nth-child(3) {
  color: #5F6C72;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-history table tr td:nth-child(5) a {
  color: #2DA5F3;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-history .pagination li {
  margin: 0 10px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-history .pagination li .page-link {
  border: none;
  border-radius: 50px;
  color: #191C1F;
  font-size: 14px;
  font-weight: 400;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-history .pagination li .page-link:hover {
  background-color: #AF946D;
  border: 1px solid #AF946D;
  color: #ffffff;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-history .pagination li:first-child .page-link {
  border: 1px solid #AF946D;
  border-radius: 50px;
  color: #AF946D;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-history .pagination li:first-child .page-link:hover {
  color: #fff;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-history .pagination li:last-child .page-link {
  border: 1px solid #AF946D;
  border-radius: 50px;
  color: #AF946D;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-history .pagination li:last-child .page-link:hover {
  color: #fff;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order {
  border: 1px solid #e4e7e9;
  border-radius: 10px;
  padding: 20px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .heading {
  border-bottom: 1px solid #e4e7e9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .heading h4 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 10px 20px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .heading .add-card {
  color: #AF946D;
  font-size: 15px;
  margin: 0 20px 10px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-process {
  padding: 20px 20px 100px 20px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-process .order-info {
  background-color: #fdfae7;
  border: 1px solid #F7E99E;
  border-radius: 5px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 20px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-process .order-info .order-id-dv h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-process .order-info .price h4 {
  font-size: 22px;
  font-weight: 600;
  color: #AF946D;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-process .order-arrival p span {
  color: #000;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-process .order-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-process .order-stepper .progressBar {
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-process .order-stepper .progress-line {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-process .order-stepper .progress-line .line {
  width: 170px;
  height: 10px;
  border-radius: 4px;
  background: #ffe7d6;
  transition: background 0.5s linear;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-process .order-stepper .progress-line .circle {
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0 1px;
  border-radius: 50%;
  padding: 10px;
  border: 2px solid #AF946D;
  background-color: transparent;
  transition: background-color 0.5s ease;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-process .order-stepper .progress-line .circle::before {
  content: "✔";
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-52.5%, -52.5%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-process .order-stepper .progress-line .circle .order-status-image {
  position: absolute;
  width: 100px;
  top: 50px;
  left: -45px;
  text-align: center;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-process .order-stepper .progress-line .circle .order-status-image i {
  font-size: 30px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-process .order-stepper .progress-line .circle .order-status-image p {
  color: #000;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-process .order-stepper .progress-line.active .circle {
  background-color: #AF946D;
  border-color: #AF946D;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-process .order-stepper .progress-line.active .circle::before {
  opacity: 1;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-process .order-stepper .progress-line.active .line {
  background: #AF946D;
  padding: 3px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-activity {
  border-bottom: 1px solid #e4e7e9;
  padding: 20px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-activity .heading {
  border: none;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-activity .heading h4 {
  margin: 0 0 20px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-activity li .activity-list {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-activity li .activity-list .text-area {
  padding: 0 0 0 20px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-activity li .activity-list .text-area h5 {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 10px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .order-activity li .activity-list .text-area p {
  margin: 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .table-dv .heading-dv h4 {
  color: #191C1F;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 0 0 20px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .table-dv .heading-dv h4 span {
  color: #5F6C72;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .table-dv table {
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  width: 100%;
  margin: 0 0 20px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .table-dv table .table-img {
  width: 70px;
  height: 70px;
  filter: drop-shadow(-5px 5px 10px #b3b3b3);
  margin: 0 20px 0 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .table-dv table tr th {
  padding: 10px;
  text-transform: uppercase;
  background-color: #E4E7E9;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .table-dv table tr td {
  color: #5F6C72;
  padding: 10px;
  font-size: 14px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .table-dv table tr td img {
  width: 60px;
  height: 60px;
  margin: 0 15px 0 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .table-dv table tr td:nth-child(1) {
  font-weight: 600;
  width: 400px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .table-dv table tr .product-table {
  display: flex;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .table-dv table tr .product-table .text-area {
  width: 310px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .table-dv table tr .product-table .text-area h5 {
  color: #231F20;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .address-dv {
  padding: 20px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .address-dv .billing-address,
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .address-dv .shipping-address {
  border-radius: 5px;
  padding: 0 10px 0 0;
  position: relative;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .address-dv .billing-address::after,
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .address-dv .shipping-address::after {
  content: "";
  position: absolute;
  background-color: #e4e7e9;
  top: 0;
  right: 0;
  width: 2px;
  height: 90%;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .address-dv .billing-address .heading,
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .address-dv .shipping-address .heading {
  border-bottom: 1px solid #e4e7e9;
  color: #191C1F;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .address-dv .billing-address .name,
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .address-dv .shipping-address .name {
  color: #000000;
  font-weight: 600;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .address-dv .billing-address .number,
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .address-dv .shipping-address .number {
  color: #191C1F;
  font-size: 14px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .address-dv .billing-address .number span,
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .address-dv .shipping-address .number span {
  color: #888;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .address-dv .billing-address .email,
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .address-dv .shipping-address .email {
  color: #191C1F;
  font-size: 14px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .address-dv .billing-address .email span,
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .address-dv .shipping-address .email span {
  color: #888;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .track-order .address-dv .order-note .heading {
  border-bottom: 1px solid #e4e7e9;
  color: #191C1F;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart {
  border: 1px solid #e4e7e9;
  border-radius: 10px;
  padding: 0 0 20px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .heading {
  border-bottom: 1px solid #e4e7e9;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .heading h4 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 10px 20px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart table {
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  width: 100%;
  margin: 0 0 20px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart table .table-img {
  width: 70px;
  height: 70px;
  filter: drop-shadow(-5px 5px 10px #b3b3b3);
  margin: 0 20px 0 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart table th {
  padding: 10px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart table td {
  padding: 20px 10px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart table tr {
  border: 1px solid #e6e6e6;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart table .quantity-counter {
  display: flex;
  align-items: center;
  /*--------------------------*/
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart table .quantity-counter h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 20px 0 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart table .quantity-counter button:focus {
  outline: none;
  box-shadow: none;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart table .quantity-counter input:focus {
  outline: none;
  box-shadow: none;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart table .quantity-counter a:hover {
  text-decoration: none;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart table .quantity-counter .qty-container {
  display: flex;
  border: 1px solid #e6e6e6;
  border-radius: 30px;
  margin: 0 20px 0 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart table .quantity-counter .qty-container .input-qty {
  text-align: center;
  padding: 6px 10px;
  border: unset;
  max-width: 60px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart table .quantity-counter .qty-container .qty-btn-minus {
  background-color: unset;
  border: unset;
  font-size: 10px;
  height: 40px;
  width: 38px;
  transition: 0.3s;
  margin-right: -1px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart table .quantity-counter .qty-container .qty-btn-minus i {
  background-color: #f2f2f2;
  padding: 10px;
  border-radius: 50%;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart table .quantity-counter .qty-container .qty-btn-plus {
  background-color: unset;
  border: unset;
  font-size: 10px;
  height: 40px;
  width: 38px;
  transition: 0.3s;
  margin-left: -1px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart table .quantity-counter .qty-container .qty-btn-plus i {
  background-color: #f2f2f2;
  padding: 10px;
  border-radius: 50%;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart table .sub-total h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart table .save-later {
  display: flex;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart table .save-later p {
  color: #2522A5;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px 0 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart table .cart-btn {
  display: flex;
  justify-content: center;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart table .cart-btn a {
  background-color: #AF946D;
  padding: 10px 30px;
  border-radius: 10px 0 10px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .coupon {
  padding: 20px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .coupon form {
  display: flex;
  align-items: center;
  position: relative;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .coupon form label {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .coupon form input {
  padding: 5px 10px;
  border-radius: 30px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .coupon form input:focus {
  outline: none;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .coupon form .search-area {
  margin: 0 0 0 20px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .coupon form .search-area input {
  width: 550px;
  border: 1px solid #e6e6e6;
  padding: 10px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .coupon form .submit-btn {
  position: absolute;
  right: 8%;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .coupon form .submit-btn a {
  background-color: #000;
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .cart-total {
  border: 1px solid #e5e5e5;
  padding: 15px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .cart-total h4 {
  font-size: 20px;
  font-weight: 500;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .cart-total .sub-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .cart-total .sub-total h5 {
  margin: 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .cart-total .sub-total p {
  color: #000;
  margin: 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .cart-total .shipping {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .cart-total .shipping h5 {
  margin: 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .cart-total .shipping p {
  color: #000;
  margin: 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .cart-total .total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .cart-total .total h5 {
  color: #a08864;
  font-size: 18px;
  margin: 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .cart-total .total p {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .cart-total .checkout-btn {
  display: flex;
  justify-content: center;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .my-cart .cart-total .checkout-btn a {
  background-color: #AF946D;
  color: #fff;
  padding: 12px 20px;
  border-radius: 15px 0 15px 0;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .wishlist {
  border: 1px solid #e4e7e9;
  border-radius: 10px;
  padding: 20px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .wishlist .heading {
  border-bottom: 1px solid #e4e7e9;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .wishlist .heading h4 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 10px 20px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .wishlist table {
  border-radius: 20px;
  width: 100%;
  margin: 0 0 20px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .wishlist table .table-img {
  width: 70px;
  height: 70px;
  filter: drop-shadow(-5px 5px 10px #b3b3b3);
  margin: 0 20px 0 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .wishlist table tr th {
  padding: 10px 10px;
  background-color: #E4E7E9;
  text-transform: uppercase;
  color: #000;
  font-weight: 500;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .wishlist table tr th:nth-child(1) {
  padding: 10px 20px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .wishlist table tr td {
  color: #5F6C72;
  padding: 10px;
  font-size: 14px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .wishlist table tr td img {
  width: 60px;
  height: 60px;
  margin: 0 15px 0 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .wishlist table tr td .add-cart-btn {
  background-color: #AF946D;
  padding: 12px 16px;
  border-radius: 0 10px 0 10px;
  margin: 0 10px 0 0;
  color: #fff;
  display: inline-block;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .wishlist table tr td .out-stock-btn {
  background-color: #ADB7BC;
  padding: 12px 30px;
  border-radius: 0 10px 0 10px;
  margin: 0 10px 0 0;
  color: #fff;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .wishlist table tr td:nth-child(1) {
  font-weight: 600;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .wishlist table tr .in-stock {
  color: #2DB224;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .wishlist table tr .out-stock {
  color: #EE5858;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .wishlist table tr td:nth-child(3) {
  font-weight: 600;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .wishlist table tr td:nth-child(2) {
  color: #191C1F;
  font-weight: 600;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .wishlist table tr td:nth-child(2) span {
  color: #929FA5;
  text-decoration: line-through;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .wishlist table tr td:nth-child(5) a {
  color: #AF946D;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-notification {
  border: 1px solid #e4e7e9;
  border-radius: 10px;
  padding: 20px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-notification .heading {
  border-bottom: 1px solid #e4e7e9;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-notification .heading h4 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 10px 20px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-notification table {
  border-radius: 20px;
  width: 100%;
  margin: 0 0 20px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-notification table .table-img {
  width: 70px;
  height: 70px;
  filter: drop-shadow(-5px 5px 10px #b3b3b3);
  margin: 0 20px 0 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-notification table tr th {
  padding: 10px 20px;
  background-color: #E4E7E9;
  text-transform: uppercase;
  color: #000;
  font-weight: 500;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-notification table tr td {
  color: #5F6C72;
  padding: 10px 20px;
  font-size: 14px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-notification table tr td:nth-child(1) {
  font-weight: 600;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-notification table tr .in-progress {
  color: #AF946D;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-notification table tr .completed {
  color: #2DB224;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-notification table tr .canceled {
  color: #EE5858;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-notification table tr td:nth-child(2) {
  font-weight: 600;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-notification table tr td:nth-child(3) {
  color: #5F6C72;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-notification table tr td:nth-child(5) a {
  color: #AF946D;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-notification .pagination li {
  margin: 0 10px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-notification .pagination li .page-link {
  border: none;
  border-radius: 50px;
  color: #191C1F;
  font-size: 14px;
  font-weight: 400;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-notification .pagination li .page-link:hover {
  background-color: #AF946D;
  border: 1px solid #AF946D;
  color: #ffffff;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-notification .pagination li:first-child .page-link {
  border: 1px solid #AF946D;
  border-radius: 50px;
  color: #AF946D;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-notification .pagination li:first-child .page-link:hover {
  color: #fff;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-notification .pagination li:last-child .page-link {
  border: 1px solid #AF946D;
  border-radius: 50px;
  color: #AF946D;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .order-notification .pagination li:last-child .page-link:hover {
  color: #fff;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment {
  border: 1px solid #e4e7e9;
  border-radius: 10px;
  padding: 20px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .heading {
  border-bottom: 1px solid #e4e7e9;
  display: flex;
  justify-content: space-between;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .heading h4 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 10px 20px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .heading .add-card {
  color: #AF946D;
  margin: 0 20px 0 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards {
  padding: 20px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards .card-details {
  background: radial-gradient(98.14% 214.97% at 0% 0%, #1B6392 0%, #124261 100%);
  padding: 20px;
  border-radius: 5px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards .card-details .card-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 20px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards .card-details .card-name h5 {
  color: #fff;
  margin: 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards .card-details .card-name .dots-dropdown {
  background-color: unset;
  padding: 0;
  color: #fff;
  font-size: 30px;
  line-height: 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards .card-details .card-name .dots-dropdown:focus {
  box-shadow: none;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards .card-details .card-name .dots-dropdown::after {
  display: none;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards .card-details .card-number p {
  color: #fff;
  margin: 0 0 10px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards .card-details .card-number h5 {
  color: #fff;
  font-size: 25px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards .card-details .card-number .copy-btn {
  color: #8aa6b8;
  font-size: 20px;
  margin: 0 0 0 10px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards .card-details .card-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards .card-details .card-type p {
  color: #fff;
  margin: 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards .card-details2 {
  background: radial-gradient(98.14% 214.97% at 0% 0%, #248E1D 0%, #2DB324 100%);
  padding: 20px;
  border-radius: 5px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards .card-details2 .card-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 20px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards .card-details2 .card-name h5 {
  color: #fff;
  margin: 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards .card-details2 .card-name .dots-dropdown {
  background-color: unset;
  padding: 0;
  color: #fff;
  font-size: 30px;
  line-height: 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards .card-details2 .card-name .dots-dropdown:focus {
  box-shadow: none;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards .card-details2 .card-name .dots-dropdown::after {
  display: none;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards .card-details2 .card-number p {
  color: #fff;
  margin: 0 0 10px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards .card-details2 .card-number h5 {
  color: #fff;
  font-size: 25px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards .card-details2 .card-number .copy-btn {
  color: #94d290;
  font-size: 20px;
  margin: 0 0 0 10px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards .card-details2 .card-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .debit-cards .card-details2 .card-type p {
  color: #fff;
  margin: 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .address-dv .billing-address,
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .address-dv .shipping-address {
  border: 1px solid #e4e7e9;
  border-radius: 5px;
  padding: 20px 20px 30px 20px;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .address-dv .billing-address .heading,
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .address-dv .shipping-address .heading {
  border-bottom: 1px solid #e4e7e9;
  color: #191C1F;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .address-dv .billing-address .name,
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .address-dv .shipping-address .name {
  color: #191C1F;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .address-dv .billing-address .number,
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .address-dv .shipping-address .number {
  color: #191C1F;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .address-dv .billing-address .number span,
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .address-dv .shipping-address .number span {
  color: #888;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .address-dv .billing-address .email,
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .address-dv .shipping-address .email {
  color: #191C1F;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .address-dv .billing-address .email span,
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .address-dv .shipping-address .email span {
  color: #888;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .address-dv .billing-address .edit-btn,
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .address-dv .shipping-address .edit-btn {
  margin: 30px 0 0 0;
}
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .address-dv .billing-address .edit-btn a,
.my-profile-main .my-profile-area .custm-sidebar .tab-content .payment .address-dv .shipping-address .edit-btn a {
  border: 2px solid #000;
  padding: 12px 30px;
  border-radius: 0px 10px 0px 10px;
}

.new-products .our-new-products-start-div .slick-prev::before {
  color: #000000;
  content: "←";
  font-family: fontawesome;
  font-size: 18px;
  padding: 8px;
  border-radius: 50px;
  background-color: #fff;
}
.new-products .our-new-products-start-div .slick-prev:hover::before {
  background-color: #af946d;
  color: #fff;
}
.new-products .our-new-products-start-div .slick-next::before {
  color: #000000;
  content: "→";
  font-family: fontawesome;
  font-size: 18px;
  padding: 8px;
  border-radius: 50px;
  background-color: #fff;
}
.new-products .our-new-products-start-div .slick-next:hover::before {
  background-color: #af946d;
  color: #fff;
}/*# sourceMappingURL=style.css.map */