@import url("https://use.fontawesome.com/releases/v5.12.0/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

:root {
  --main: #ca6d6f;
  --black: #2b2b2b;
  --white: #ffffff;
  --off_black: #a3a3a3;
  --black_one: #000;
  --blue: #0848a1;
}

html,
body {
  height: 100%;
  font-size: 14px;
  font-weight: normal;
  /*padding: 0 !important;*/
}

.page-wrap {
  min-height: 100%;
  margin-bottom: 0px;
}

.page-wrap:after {
  content: "";
  display: block;
}

footer,
.page-wrap:after {
}

/*--------------General CSS---------*/

img {
  border: 0 none;
  max-width: 100%;
  vertical-align: top;
}

a {
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  /*color: #3e3e3e;*/
}

a:hover,
a:focus {
  /*color: var(--main);*/
  text-decoration: none;
  outline: none;
}

button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

p {
  line-height: 27px;
}

p:last-child {
  margin-bottom: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0px 0px;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  color: var(--black);
  font-weight: 500;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-stroke: 1px transparent;
  background-color: #fff;
}

/* ======================menu css nad Go to top start  ====================== */

.topnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  color: #fff;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  background: #fff;
  box-shadow: 0 0px 20px 2px rgb(0 0 0 / 10%);
}

.progress-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: "Top";
  text-align: center;
  line-height: 44px;
  font-size: 11px;
  font-weight: normal;
  /*color: #7da966;*/
  color: var(--black_one);
  left: 0;
  top: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
  font-weight: bold;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #7da966;
  stroke-width: 4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
  fill: #fff;
}

/* ======================menu css nad Go to top end  ====================== */

/*-----------------------TOGGLE STICKY HOME CSS START-----------------------------------------------*/

.navbar-light .navbar-toggler {
  border: none;
  outline: none;
}

.nav-toggle-sm {
  transform: scale(0.65);
  margin-right: -0.3125rem;
}

.nav-toggle {
  width: 29px;
  height: 29px;
  display: inline-flex;
  vertical-align: middle;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  cursor: pointer;
}

.stick {
  width: 35px;
  height: 3px;
  margin-bottom: 5px;
  background-color: #7da966;
  display: inline-block;
}

.body-menu-opened .collapsed .stick {
  background-color: #7da966;
}

.body-menu-opened .stick-1 {
  animation: stick-1-open 0.85s ease-out forwards;
}

.body-menu-opened .stick-2 {
  animation: stick-2-open 0.85s linear forwards;
  width: 35px;
  margin-left: 0px;
}

.body-menu-opened .stick-3 {
  animation: stick-3-open 0.85s linear forwards;
}

.stick:last-child {
  margin-bottom: 0px;
}

@-webkit-keyframes stick-1-open {
  0% {
    width: 35px;
  }
  30% {
    width: 3px;
    transform: translate(14px, 0px);
  }
  65% {
    width: 3px;
    transform: translate(14px, -35px);
    animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }
  100% {
    width: 2px;
    transform: translate(9px, 17px);
  }
}

@keyframes stick-1-open {
  0% {
    width: 35px;
  }
  30% {
    width: 3px;
    transform: translate(14px, 0px);
  }
  65% {
    width: 3px;
    transform: translate(14px, -35px);
    animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }
  100% {
    width: 2px;
    transform: translate(9px, 17px);
  }
}

@-webkit-keyframes stick-2-open {
  65% {
    width: 35px;
    transform: translate(0px, 0px) rotate(0deg);
  }
  100% {
    width: 35px;
    transform: translate(0px, 0px) rotate(45deg);
  }
}

@keyframes stick-2-open {
  65% {
    width: 35px;
    transform: translate(0px, 0px) rotate(0deg);
  }
  100% {
    width: 35px;
    transform: translate(0px, 0px) rotate(45deg);
  }
}

@-webkit-keyframes stick-3-open {
  65% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  100% {
    transform: translate(0px, -8px) rotate(-45deg);
  }
}

@keyframes stick-3-open {
  65% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  100% {
    transform: translate(0px, -8px) rotate(-45deg);
  }
}

.body-menu-close .stick-1 {
  width: 3px;
  animation: stick-1-close 0.85s ease-out forwards;
}

.body-menu-close .stick-2 {
  animation: stick-2-close 0.85s ease-out forwards;
  margin-left: 0px;
}

.body-menu-close .stick-3 {
  animation: stick-3-close 0.85s ease-out forwards;
}

@-webkit-keyframes stick-1-close {
  0%,
  70% {
    width: 0px;
    transform: translate(0, 0);
  }
  100% {
    width: 35px;
    transform: translate(0, 0);
  }
}

@keyframes stick-1-close {
  0%,
  70% {
    width: 0px;
    transform: translate(0, 0);
  }
  100% {
    width: 35px;
    transform: translate(0, 0);
  }
}

@-webkit-keyframes stick-2-close {
  0% {
    width: 35px;
    transform: translate(0px, 0px) rotate(45deg);
  }
  20% {
    width: 3px;
    transform: translate(0, 0px) rotate(45deg);
  }
  40% {
    width: 0px;
  }
  65% {
    transform: translate(0, -26px);
    animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }
  80% {
    width: 0px;
  }
  100% {
    width: 35px;
    transform: translate(0, 0px);
  }
}

@keyframes stick-2-close {
  0% {
    width: 35px;
    transform: translate(0px, 0px) rotate(45deg);
  }
  20% {
    width: 3px;
    transform: translate(0, 0px) rotate(45deg);
  }
  40% {
    width: 0px;
  }
  65% {
    transform: translate(0, -26px);
    animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }
  80% {
    width: 0px;
  }
  100% {
    width: 35px;
    transform: translate(0, 0px);
  }
}

@-webkit-keyframes stick-3-close {
  0% {
    width: 35px;
    transform: translate(0px, -8px) rotate(-45deg);
  }
  20% {
    width: 3px;
    transform: translate(0, -8px) rotate(-45deg);
  }
  40% {
  }
  65% {
    transform: translate(0, -35px);
    animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }
  90% {
    width: 3px;
  }
  100% {
    width: 35px;
    transform: translate(0, 0px);
  }
}

@keyframes stick-3-close {
  0% {
    width: 35px;
    transform: translate(0px, -8px) rotate(-45deg);
  }
  20% {
    width: 3px;
    transform: translate(0, -8px) rotate(-45deg);
  }
  40% {
  }
  65% {
    transform: translate(0, -35px);
    animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }
  90% {
    width: 3px;
  }
  100% {
    width: 35px;
    transform: translate(0, 0px);
  }
}

/*-----------------------TOGGLE STICKY HOME CSS end-----------------------------------------------*/

/*-----------------------main styles starts here-----------------------------------------------*/

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

label {
  color: var(--black_one);
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 16px;
}

p:last-child {
  margin-bottom: 0px;
}

.text_red {
  color: #dd4b39;
}

textarea.form-control {
  resize: none;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.form-control {
  height: 50px;
  box-shadow: none;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  font-size: 16px;
  color: var(--black_one);
  padding-left: 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--main);
}

.overlay_ctm {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.font_b {
  font-weight: 700;
}

/*===================================== PLACE HOLDER CSSS START HERE    ====================================*/

input.form-control::-webkit-input-placeholder {
  color: #6b6b6b;
}

input.form-control::-moz-placeholder {
  color: #6b6b6b;
}

input.form-control::-ms-placeholder {
  color: #6b6b6b;
}

input.textbox::-ms-input-placeholder {
  color: #6b6b6b;
}

input.textbox::-ms-input-placeholder {
  color: #6b6b6b;
}

textarea.form-control::placeholder {
  color: #6b6b6b;
}

textarea.form-control {
  min-height: auto;
  height: auto;
  border-radius: 0px;
}

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

.cf:after {
  clear: both;
}

.container {
  width: 100%;
  max-width: 1170px;
}

/*===================================== PLACE HOLDER CSSS END HERE    ====================================*/

/*===================================== Commen Butons ===================================*/

/*------ Button css over ----------------*/

/*======================================================================*/

/*      CUSTOM CHECK BOX AND CUSTOM RADIO CSS START   */

.custom-checkbox [type="checkbox"]:not(:checked),
.custom-checkbox [type="checkbox"]:checked {
  left: -9999px;
  position: absolute;
}

.custom-checkbox [type="checkbox"]:not(:checked) + label:before,
.custom-checkbox [type="checkbox"]:checked + label:before {
  border: 2px solid var(--main);
  content: "";
  height: 22px;
  left: 0;
  position: absolute;
  top: 4px;
  width: 22px;
  border-radius: 3px;
}

.custom-checkbox [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}

.custom-checkbox [type="checkbox"]:not(:checked) + label:after,
.custom-checkbox [type="checkbox"]:checked + label:after {
  color: #fff;
  content: "\f00c";
  font-size: 14px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 4px;
  left: 0px;
  line-height: 1.45;
  padding: 1px 2px 2px 3px;
  transition: all 0.2s ease 0s;
  background-color: var(--main);
  width: 22px;
  height: 22px;
  border-radius: 3px;
}

.custom-checkbox [type="checkbox"]:not(:checked) + label,
.custom-checkbox [type="checkbox"]:checked + label {
  cursor: pointer;
  padding-left: 35px;
  position: relative;
  font-weight: 500;
  color: #6b6b6b;
  margin-bottom: 14px;
  font-size: 16px;
}

/*  CUSTOM check CSS START  */

/*  CUSTOM RADIO CSS START  */

.radio-btn-small {
  display: inline-block;
  margin-right: 15px;
  padding: 0;
  position: relative;
  padding-left: 30px;
  margin-top: 3px;
}

.radio-btn-small:last-child {
  margin-right: 0;
}

.product-size-new input[type="checkbox"] {
  display: none;
}

.product-size-new input[type="checkbox"]:checked + .checkbox-div {
  background-color: var(--main);
}

input[type="radio"] {
  display: none;
}

.checkbox-div {
  width: 35px;
  height: 35px;
  cursor: pointer;
}

input[type="radio"] + label {
  font-size: 14px;
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 400;
}

input[type="radio"] + label span {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 2px 8px 0 0;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0px;
  border: 1px solid var(--main);
  background-color: #fff;
  border-radius: 100px;
}

input[type="radio"]:checked + label span:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--main);
  top: 3px;
  left: 3px;
  border-radius: 100px;
}

input[type="radio"]:checked + label span {
  background-color: #fff;
}

input[type="radio"]:checked + label {
  color: #282828;
}

/*========================================================================
          bootstrap select box over
==========================================================================*/

.bootstrap-select.open > .dropdown-toggle.btn-default:hover,
.bootstrap-select.open > .dropdown-toggle.btn-default:focus {
  background-color: #fff;
}

.bootstrap-select > .dropdown-toggle {
  border: 1px solid #ababab;
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option,
.bootstrap-select.btn-group .dropdown-toggle .fas {
  color: #555;
}

/*========================================================================
          bootstrap select box over
==========================================================================*/

/*home_css_start*/

.navbar {
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--black_one) 000;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 10px;
}

.navbar-light .navbar-nav .main_btn {
  min-width: 124px;
  line-height: 40px;
  font-size: 14px;
}

.navbar-brand {
  padding-top: 0px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: #7da966;
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: #7da966;
}

.nav-scroll .top_menu_home .navbar-light .navbar-nav .nav-link:hover,
.nav-scroll .top_menu_home .navbar-light .navbar-nav .nav-link:focus {
  color: #7da966;
}

/*----------------*/

.top_menu {
  position: relative;
}

.nav_bar_ctm .navbar-brand {
  position: relative;
}

.in_content {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  /*  margin-top: 87px;*/
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  font-size: 50px;
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 9;
}

.home_about_sec {
  margin-bottom: 40px;
}

.web_title {
  font-weight: 800;
  color: var(--black_one);
  font-size: 30px;
}

.main_btn {
  border: 1px solid var(--black);
  border-radius: 0;
  color: var(--white);
  background-color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  text-align: center;
  touch-action: manipulation;
  transition: all 0.3s ease-in-out;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
  background: var(--black);
  min-width: 200px;
  line-height: 50px;
}

.main_btn:hover {
  color: var(--black);
  background-color: transparent;
}

.main_btn i {
  padding-left: 5px;
}

.border_btn {
  background-color: var(--white);
  color: var(--black);
}

.border_btn:hover {
  background-color: var(--black);
  color: var(--white);
}

/* select2_css_start */

.select2-container {
  width: 100% !important;
  padding: 0;
}

span.select2-selection__rendered {
  white-space: nowrap;
}

.select2-container {
  width: 100% !important;
}

.select2-search--dropdown .select2-search__field {
  width: 98%;
}

.select2-dropdown .select2-results__option {
  position: relative;
}

/* select2_css_end */

/* ----------------------------- home_css_start ----------------------------- */

.container-fluid {
  padding: 0px 150px;
}

.header_top_part {
  background-color: var(--main);
  padding: 10px 0px;
}

.header_top_part_left ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.header_top_part_left ul li {
  color: var(--white);
  font-size: 14px;
}

.header_top_part_left ul li i {
  margin-right: 10px;
}

.header_top_part_center {
  color: var(--white);
  width: 500px;
}

.header_top_part_center a {
  color: var(--white);
  text-decoration: underline;
  margin-left: 5px;
}

.owl-theme .owl-nav .owl-prev i,
.owl-theme .owl-nav .owl-next i {
  font-family: "Font Awesome 5 Pro";
}

.header_top_part_center .owl-theme .owl-nav .owl-prev,
.header_top_part_center .owl-theme .owl-nav .owl-next {
  font-size: 20px;
  color: #fff;
  height: auto;
  width: auto;
  border-radius: 0;
  border: none;
  bottom: -14px;
  opacity: 1;
}

.top_leng .form-select {
  background-color: transparent;
  color: #fff;
  border: none;
  padding: 0px 30px 0px 0px;
  background: url(../images/white_arrow.svg);
  background-position: right center;
  background-repeat: no-repeat;
}

.top_leng .form-select option {
  background-color: #fff;
  color: var(--black);
}

.form-select:focus {
  box-shadow: none;
}

.menu {
  width: 100%;
  display: flex;
  align-items: center;
}

.menu_icon_link {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu_icon_link a {
  color: #a3a3a3;
  font-size: 20px;
}

.menu_icon_link a:hover {
  color: var(--main);
}

.home_banner {
  background-color: #faf9f7;
  /* padding: 50px 0px; */
}

.banner_text {
  position: relative;
  z-index: 1;
}

.banner_text h1 {
  color: var(--black);
  /*font-size: 70px;*/
  font-size: 46px;
  font-weight: 500;
  margin-bottom: 25px;
}

.banner_text p {
  font-size: 18px;
}

.banner_text .main_btn {
  margin-top: 30px;
  font-weight: bold;
  font-size: 22px;
  line-height: 57px;
  padding: 0px 40px;
}

.carousel-indicators [data-bs-target] {
  background-color: #dbabac;
  opacity: 1;
  width: 80px;
  height: 2px;
  margin-right: 8px;
  margin-left: 8px;
  text-indent: -999p;
}

.carousel-indicators .active {
  background-color: var(--main);
}

.global {
  width: 100%;
  display: inline-block;
  vertical-align: top;
}

.categories_main {
  margin: 70px 0px;
}

.web_title {
  margin-bottom: 50px;
}

.web_title p {
  font-weight: 500;
  font-size: 18px;
  color: var(--main);
}

.web_title h1,
.delight_left h1 {
  font-weight: 500;
  /*font-size: 45px;*/
  font-size: 32px;
}

.category-list-div {
  margin-bottom: 50px;
}

.categories_main .nav-pills .nav-link {
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  font-size: 16px;
  color: #000;
  padding: 10px;
  /* border-left: none; */
}

/* .categories_main .nav-pills .nav-item {
    margin: 0.5rem 0;
    background: red !important;
} */

/* .categories_main .nav-pills li+li {
    border-left: 1px solid #CFD6DC;
} */

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--white);
  background-color: var(--main);
  border-radius: 50px;
}

.categories_blog {
  position: relative;
  margin-bottom: 50px;
}

.categories_img {
  overflow: hidden;
  position: relative;
  height: 74% !important;
}

.categories_img img {
  position: relative;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.35s ease-out;
  transition: transform 0.35s ease-out;
}

/* .categories_blog:hover .categories_img img {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
} */

.img_change_hover img {
  width: 100%;
  display: block;
}
.img_change_hover img:nth-child(1) {
  position: absolute;
}
.img_change_hover img:nth-child(2) {
  opacity: 0;
}

.product_action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: 90%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-top: 30px;
  opacity: 0;
  width: 85%;
}

.categories_blog:hover .product_action {
  margin-top: 0;
  opacity: 1;
}

.quickshop {
  background-color: var(--white);
  color: var(--black);
  line-height: 44px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.quickshop i {
  font-size: 18px;
  margin-right: 10px;
}

.quickshop:hover {
  background-color: var(--main);
  color: var(--white);
}

.sold_lbl,
.like_btn a {
  position: absolute;
  top: 20px;
  left: 24px;
  z-index: 1;
}

.sold_lbl {
  background-color: var(--white);
  padding: 0px 20px;
  display: inline-block;
  color: #ff7d1e;
  font-size: 15px;
  font-weight: 500;
  line-height: 30px;
}

.wishlist_btn_div a {
  width: 33px;
  height: 33px;
  right: 0px;
  background-color: var(--white);
  color: var(--black);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  position: absolute;
  top: 20px;
  z-index: 1;
  right: 65px;
  left: auto;
}

.like_btn a {
  width: 33px;
  height: 33px;
  right: 0px;
  background-color: var(--white);
  color: var(--black);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  right: 24px;
  left: auto;
}

.categories_pro_dtl {
  margin-top: 20px;
}

.categories_pro_dtl span {
  font-size: 16px;
  font-weight: 500;
  color: var(--off_black);
  width: 100;
}

.categories_pro_dtl a {
  font-weight: 600;
  color: var(--black);
  font-size: 18px;
  padding: 2px 0px 7px;
}

.categories_pro_dtl a:hover {
  color: var(--main);
}

.categories_pro_dtl p {
  font-size: 18px;
  color: var(--off_black);
}

.categories_main .main_btn {
  line-height: 60px;
}

.trending_blog {
  background-image: url(../images/trending_img.jpg);
  padding: 240px 0px;
  position: relative;
  margin-top: 30px;
  background-repeat: no-repeat;
}

.trending_blog span {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
}

.trending_blog h1 {
  color: var(--main);
  font-size: 32px;
  font-weight: 500;
  margin: 15px 0px 20px;
  line-height: 42px;
}

.trending_blog h6 {
  font-size: 16px;
  font-weight: 500;
  color: var(--main);
  margin-bottom: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.trending_blog p {
  font-size: 18px;
  font-weight: 500;
  color: var(--main);
  margin-bottom: 30px;
  font-weight: normal;
}

.main_btn.border_btn.text-uppercase.design-btn {
  background-color: var(--main);
  color: #fff;
}

.fashion_step {
  /*background-color: #FAF1F1;*/
  padding: 100px 0px;
  border-radius: 0px 0px 100px 100px;
}

.fashion_step_blog img {
  margin: 0px auto;
  display: inline-block;
}

.fashion_step_blog h4 {
  font-weight: 500;
  color: var(--black_one);
  font-size: 24px;
  margin-top: 30px;
}

.fashion_step_blog {
  /* Initial settings */
  display: inline-block;
  /* Ensures the element behaves correctly */
  transition: transform 0.3s ease;
  /* Smooth transition */
  transform: translateY(0);
  /* Default position */
}

.fashion_step_blog:hover {
  transform: translateY(-25px);
  /* Move up by 10px on hover */
}

.collections_main {
  /*margin: 80px 0px 40px;*/
  margin-bottom: 40px;
}

.web_title span {
  color: #979797;
  font-size: 16px;
  font-weight: normal;
  margin-top: 20px;
}

.collections_blog {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.collections_img {
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.35s ease-out;
  transition: transform 0.35s ease-out;
  position: relative;
}

.collections_blog:hover .collections_img {
  /*-webkit-transform: scale(1.25);
  transform: scale(1.25);*/
}

.collections_btn {
  position: absolute;
  bottom: 40px;
  left: 0px;
  z-index: 1;
  display: inline-block;
  background-color: var(--white);
  font-size: 18px;
  color: var(--black);
  padding: 10px 0px;
  width: 80%;
  border-radius: 5px;
  text-align: center;
  margin: 0px auto;
  display: inline-block;
  right: 0;
}

.collections_btn:hover {
  background-color: var(--blue);
  color: var(--white);
}

.collections_main .owl-theme .owl-dots {
  margin-top: 0px;
}

.collections_main .owl-theme .owl-dots .owl-dot span {
  width: 18px;
  height: 18px;
  border: none;
  background-color: #d9d9d9;
}

.collections_main .owl-theme .owl-dots .owl-dot.active span,
.collections_main .owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--blue);
}

.delight_main {
  background-color: #faf9f7;
  padding: 70px 0px;
}

.delight_left h1 span {
  color: var(--main);
}

.delight_left p {
  font-size: 16px;
  line-height: 26px;
  padding-right: 30px;
  margin: 20px 0px 30px;
  font-weight: normal;
}

.delight_left ul h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

.delight_left ul li {
  position: relative;
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: normal;
  padding-left: 20px;
  margin-left: 15px;
}

.delight_left ul li::after {
  width: 4px;
  height: 4px;
  background-color: var(--black);
  position: absolute;
  top: 12px;
  content: "";
  display: block;
  border-radius: 100px;
  left: 0;
}

.scrool_line {
  background-color: var(--main);
  position: relative;
  overflow: hidden;
  padding: 20px 0px;
}

.dz-features {
  display: inline-block;
  animation: ticker 0s linear infinite 0s normal;
  animation-duration: 0s;
  animation-duration: 32.9528s;
  display: flex;
  white-space: nowrap;
  gap: 170px;
}

.dz-features .item {
  padding: 0px 20px;
  display: inline-block;
  align-items: center;
  font-weight: 500;
  color: var(--white);
  font-size: 18px;
}

@keyframes ticker {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.maker_main {
  background-image: url(../images/maker_bg.jpg);
  /*margin: 80px 0px 70px;*/
  padding: 160px 0px;
  position: relative;
}

.maker_icon_one {
  position: absolute;
  top: 100px;
  left: auto;
}

.maker_icon_two {
  position: absolute;
  bottom: 130px;
  left: 220px;
  top: auto;
}

.maker_icon_three {
  position: absolute;
  top: 100px;
  right: 150px;
  left: auto;
}

.video_blog {
  position: relative;
}

.video_blog img {
  border-radius: 20px;
}

.video_blog a {
  font-size: 80px;
  color: var(--white);
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video_blog a:hover {
  color: var(--main);
}

.testimonal_main {
  margin: 80px 0px;
}

.testimonal_blog {
  margin-bottom: 60px;
}

.rating ul {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.rating ul li a {
  color: #ffc107;
  font-size: 22px;
}

.testimonal_blog p .testimonal_blog span {
  font-size: 22px;
  font-weight: normal;
}

.testimonal_blog span {
  color: #6b6b6b;
}

.testimonal_name_img {
  position: relative;
  margin-top: 20px;
}

.testimonal_img {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  display: inline-block;
}

.testimonal_name {
  position: absolute;
  top: 15px;
  left: 100px;
}

.testimonal_name h4 {
  font-size: 20px;
  color: var(--black_one);
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonal_name span {
  color: #a6a6a6;
  font-size: 18px;
  font-weight: normal;
}

.blog_sec {
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.blog_sec_img {
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

.blog_sec_img img {
  -webkit-transition: -webkit-transform 0.35s ease-out;
  transition: transform 0.35s ease-out;
}

.blog_sec:hover .blog_sec_img img {
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
}

.blog_data span {
  font-size: 14px;
  color: #7a7a7a;
  font-weight: normal;
}

.blog_data p {
  font-size: 14px;
  color: #7a7a7a;
  font-weight: normal;
  margin: 0px;
  /* margin-left: 1rem; */
  line-height: 20px;
}

.blog_data h4 {
  font-size: 22px;
  font-weight: normal;
  color: var(--black_one);
  margin: 10px 0px;
}

.blog_data .border_btn {
  margin-top: 10px;
}

.our_client {
  margin: 60px 0px;
}

.our_client .client_carousel .item a {
  background-color: #f5f5f5;
  padding: 60px 0px;
  text-align: center;
  display: inline-block;
  width: 100%;
  display: grid;
  place-items: center;
  height: 100%;
  height: 150px;
}

.our_client .owl-item img {
  width: auto;
}

.footer_sec {
  background-color: #222;
  padding: 50px 0px 30px;
}

.footer_top {
  border-bottom: 1px solid #656565;
  padding-bottom: 60px;
  margin-bottom: 50px;
}

.footer_top_left h5 {
  font-size: 30px;
  color: var(--white);
  line-height: 45px;
}

.subscribe_blog .form-group {
  margin-bottom: 0px;
  position: relative;
}

.subscribe_blog .form-group .form-control {
  background-color: #f7f7f7;
  height: 80px;
  border-radius: 200px;
  border: none;
  font-size: 20px;
  padding-left: 30px;
  padding-right: 220px;
}

.subscribe_blog .form-group .main_btn {
  position: absolute;
  border-radius: 100px;
  line-height: 60px;
  top: 9px;
  right: 9px;
}

.footer_title h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--main);
  margin-bottom: 25px;
}

.footer_contact_info ul li {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--white);
  font-weight: normal;
  font-size: 16px;
}

.footer_contact_info ul li a {
  color: var(--white);
  display: inline-block;
  margin-left: 10px;
}

.footer_contact_info ul li a:hover {
  color: var(--main);
}

.footer_contact_info ul p,
.footer_about p {
  color: var(--white);
  font-weight: normal;
  font-size: 16px;
  margin-top: 20px;
  line-height: 26px;
}

.footer_categories {
  padding-left: 30px;
}

.quick_link {
  /*padding-left: 50px;*/
}

.footer_link {
  display: flex;
  justify-content: space-between;
}

.footer_contact_info p {
  color: var(--white);
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
}

.footer_link ul li {
  margin-bottom: 0.3rem;
}

.footer_link ul li a {
  color: var(--white);
  font-weight: normal;
  font-size: 16px;
}

.footer_link ul li a:hover {
  color: var(--main);
}

.footer_about p {
  margin-top: 40px;
}

.social ul li {
  display: inline-block;
  margin-right: 5px;
}

.footer-bottom {
  border-top: 1px solid #c6c5c5;
  padding: 20px 0 10px 0;
  margin-top: 5px;
}

.footer-bottom p {
  color: var(--white);
  text-align: center;
  font-size: 16px;
  font-weight: normal;
}

.footer-bottom p span {
  color: var(--main);
}

.modal-content {
  border: none;
  border-radius: 0;
  padding-bottom: 30px;
}

.modal-body {
  padding: 0px 30px;
}

.home_popup .modal-header {
  border-bottom: none;
  padding: 30px 30px 20px;
}

.home_popup .web_title h1 {
  font-size: 35px;
}

.home_popup .web_title span {
  margin-top: 15px;
}

.forgot_link a {
  font-size: 16px;
  font-weight: normal;
  color: #c4c4c4;
  display: inline-block;
  width: 100%;
  text-align: right;
  margin-bottom: 40px;
}

.forgot_link a:hover {
  color: var(--main);
}

.popup_linkbar {
  color: #6b6b6b;
  font-size: 16px;
  font-weight: normal;
  margin-top: 20px;
}

.popup_linkbar a {
  color: #c4c4c4;
}

.popup_linkbar a:hover {
  color: var(--main);
}

.btn-close:focus {
  box-shadow: none;
}

.login_with_text {
  position: relative;
  border-bottom: 1px solid #d9d9d9;
  margin-top: 35px;
}

.login_with_text p {
  font-size: 14px;
  color: var(--black_one);
  background-color: #fff;
  padding: 5px 20px;
  text-align: center;
  width: 24%;
  display: block;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: 0px auto;
}

.login_with_icon ul {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 35px;
}

.verify_email_popup .main_btn {
  margin-top: 50px;
}

.has_verify_email_popup .web_title h1 {
  font-size: 30px;
}

.verified_blog img {
  margin: 0px auto 20px;
  display: block;
}

.verified_blog p {
  font-size: 16px;
  color: var(--black_one);
}

.verified_blog p span {
  color: var(--main);
}

/* ----------------------------- home_css_end ----------------------------- */

/* --------------------------- your_cart_css_start -------------------------- */

.cart_main {
  margin-bottom: 100px;
}

.inner_header {
  border-bottom: 1px solid #ededed;
}

.inner_top_title h1 {
  margin: 20px 0px;
  font-size: 32px;
  color: var(--black_one);
}

.cart_title {
  border-bottom: 2px solid #d9d9d9;
  margin-bottom: 50px;
  padding-bottom: 15px;
}

.cart_title ul li {
  display: inline-block;
  font-size: 24px;
  color: var(--black_one);
}

.cart_info_blog_one {
  position: relative;
}

.cart_info {
  min-height: 253px;
}

.shipping_estimates {
  border: 1px solid #dee2e6;
  padding: 30px 50px;
  margin-bottom: 20px;
  margin-top: 40px;
}

.shipping_estimates .inner_top_title h1 {
  font-size: 26px;
  margin: 0px 0px 25px;
}

.shipping_estimates .border_btn {
  min-width: 260px;
  text-transform: uppercase;
}

.estimated_time {
  border: 1px solid #dee2e6;
}

.estimated_time h2 {
  font-weight: 500;
  color: var(--black);
  font-size: 26px;
  padding: 15px 25px;
  border-bottom: 1px solid #dee2e6;
}

.estimated_time_view {
  font-size: 16px;
  padding: 25px;
}

.spend_right {
  background-color: rgba(107, 107, 107, 0.1);
  padding: 30px 15px;
}

.spend_title {
  display: flex;
  position: relative;
  gap: 15px;
  border-bottom: 3px solid #d9d9d9;
  padding-bottom: 17px;
  margin-bottom: 30px;
}

.spend_title:after {
  width: 8px;
  height: 3px;
  background-color: var(--black);
  position: absolute;
  bottom: -3px;
  left: 0px;
  content: "";
  display: block;
}

.spend_title h5 {
  font-weight: 600;
  font-size: 16px;
}

.ctm_table table {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  /*table-layout: fixed;*/
}

.ctm_table table th,
.ctm_table table td {
  text-align: left;
}

.ctm_table table thead {
  border-bottom: 2px solid #d9d9d9;
}

.ctm_table table td {
  padding-top: 20px;
  vertical-align: top;
  font-size: 18px;
  color: #a3a3a3;
  font-weight: 500;
}

.ctm_table table th {
  font-weight: normal;
  font-size: 18px;
  padding-bottom: 0.75px;
}

@media screen and (max-width: 600px) {
  .ctm_table table {
    border: 0;
  }
  .ctm_table table caption {
    font-size: 1.3em;
  }
  .ctm_table table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .ctm_table table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: 0.625em;
  }
  .ctm_table table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: 0.8em;
    text-align: right;
  }
  .ctm_table table td::before {
    /*
  * aria-label has no advantage, it won't be read inside a table
  content: attr(aria-label);
  */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  .ctm_table table td:last-child {
    border-bottom: 0;
  }
}

.product_single_qty {
  display: inline-block;
  border: 1px solid #d9d9d9;
}

.product_single_qty a {
  display: inline-block;
  height: 45px;
  vertical-align: top;
  line-height: 45px;
  float: left;
  width: 45px;
  text-align: center;
  color: #d9d9d9;
  font-size: 18px;
}

.product_single_qty a:hover {
  color: var(--main);
}

.product_single_qty a:first-child {
  border-right: 0px;
}

.product_single_qty .form-control {
  display: inline-block;
  width: 45px;
  text-align: center;
  float: left;
  height: 45px;
  background: transparent;
  border: none;
  margin: 0px;
  color: #d9d9d9;
  border-radius: 0px;
  font-size: 22px;
  padding: 0px;
  text-align: center;
}

.product_tbl_main {
  display: flex;
  gap: 20px;
}

.product_tbl_img {
  flex-basis: 65%;
}

.product_tbl_info {
  display: flex;
  flex-basis: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.product_tbl_info_top h2 {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}

.product_tbl_info_top p {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 0px;
}

.table_ctm_wid {
  width: 650px;
}

.table_ctm_wid2 {
  width: 290px;
}

.product_tbl_info_btm a {
  font-size: 20px;
  font-weight: 400;
  color: #a3a3a3;
  text-decoration: underline;
}

.product_tbl_info_btm a:hover {
  color: var(--main);
}

.list_coupon,
.coupon_code {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 15px;
}

.list_coupon h5 {
  margin-bottom: 10px;
  color: #000;
}

.list_coupon ul li {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 16px;
  margin-bottom: 10px;
}

.list_coupon ul li span {
  font-weight: 600;
}

.list_coupon p {
  color: #6b6b6b;
}

.coupon_code {
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.coupon_code h5 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 8px;
}

.coupon_code_in {
  display: flex;
  gap: 10px;
}

.border_btn_color {
  background-color: rgba(107, 107, 107, 0.1);
}

.coupon_code_in .border_btn_color {
  min-width: 140px;
}

.coupon_code_in .form-group {
  margin-bottom: 0px;
}

.cart_total p {
  font-size: 18px;
  margin-bottom: 5px;
}

.cart_total span {
  font-size: 15px;
  color: #6b6b6b;
  width: 100%;
  display: inline-block;
}

.coupon_code_in .form-group .form-control {
  height: 52px;
}

/* --------------------------- your_cart_css_end -------------------------- */

/* --------------------------- purchase_css_start --------------------------- */

.purchase_main {
  margin-top: 50px;
}

.purchase_left h2 {
  font-size: 32px;
  font-weight: 500;
}

.purchase_left p {
  font-size: 18px;
  margin: 20px 0px 25px;
}

.purchase_billing_info h4 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
}

.purchase_billing_info ul li {
  /* position: relative; */
  display: flex;
  align-items: start;
  gap: 70px;
  margin-bottom: 15px;
}

.purchase_billing_info ul li span {
  min-width: 100px;
}

.purchase_billing_info ul li span,
.purchase_billing_info ul li p {
  font-size: 18px;
  font-weight: 500;
}

/* .purchase_billing_info ul li span {
    position: absolute;
    top: -3px;
    left: 0;
} */

.purchase_billing_info ul li p {
  font-weight: normal;
  margin-top: 0px;
  margin-bottom: 10px;
  padding-left: 50px;
}

.purchase_billing_info ul .main_btn {
  min-width: 252px;
  margin-bottom: 30px;
  margin-top: 20px;
}

.purchase_summary {
  /*border-top: 1px solid #EDEDED;*/
  margin-bottom: 50px;
}

.purchase_summary h2 {
  font-size: 32px;
  font-weight: 500;
  padding: 0px 30px 30px 40px;
}

.purchase_summary_blog {
  padding: 30px 40px 10px 40px;
  border: 1px solid #ededed;
}

.summary_blog {
  margin-bottom: 20px;
  position: relative;
}

.summary_blog_info {
  display: flex;
  position: absolute;
  top: 0px;
  left: 0;
  justify-content: space-between;
  width: 100%;
  padding-left: 190px;
  height: 100%;
}

.summary_blog_info_left {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.summary_blog_info_left_top p {
  margin-bottom: 0px;
  font-size: 17px;
  color: #a3a3a3;
  font-weight: 500;
}

.summary_blog_info_left_top h5 {
  font-size: 20px;
  color: #2b2b2b;
  font-weight: 500;
  margin-top: 2px;
}

.summary_blog_info_left_btm span,
.summary_blog_info_left_btm {
  font-size: 18px;
  color: #a3a3a3;
  font-weight: 500;
}

.summary_blog_info_left_btm span {
  padding-right: 2px;
}

.summary_blog_info_right {
  font-size: 24px;
  font-weight: 500;
}

.purchase_price {
  padding: 30px 40px 00px 40px;
  border: 1px solid #ededed;
  border-top: none;
}

.purchase_price ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.purchase_price ul li p,
.purchase_price ul li span {
  margin-bottom: 0px;
  font-size: 18px;
  font-weight: 500;
  color: #a3a3a3;
}

.purchase_price ul .order_total p,
.purchase_price ul .order_total span {
  font-size: 22px;
  color: #000;
}

.order_total_main {
  border-bottom: 1px solid #ededed;
}

.order_total_main ul .order_total {
  font-weight: 600;
}

.order_total_main ul li {
  margin-bottom: 20px;
}

.recomment_main {
  margin-top: 0px;
  margin-bottom: 60px;
}

.recomment_title span {
  font-size: 18px;
  color: #ca6d6f;
  text-transform: uppercase;
}

.recomment_title h1 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 26px;
  margin-top: 15px;
}

/* --------------------------- purchase_css_end --------------------------- */

/* ---------------------------- product_css_start --------------------------- */

.sub_menu_main {
  margin: 10px 0px;
}

.sub_menu_main ul li {
  font-size: 16px;
  color: #a3a3a3;
  font-weight: normal;
}

.sub_menu_main ul li a {
  font-size: 16px;
  color: #a3a3a3;
}

.sub_menu_main ul li a:hover {
  color: var(--main);
}

.sub_banner_info h1 {
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 50px;
}

.filter_title {
  vertical-align: middle;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
}

.filter_title h3 {
  margin-right: 5px;
  font-size: 22px;
  color: #6b6b6b;
}

.filter_title h3,
.filter_title img {
  display: inline-block;
}

.accordion-item {
  border: none;
  margin-bottom: 0px;
}

.accordion-button {
  padding: 0px;
  font-size: 18px;
  font-weight: 600;
  color: #6b6b6b;
  margin-bottom: 15px;
}

.accordion-body {
  padding: 0px;
}

.accordion-button:not(.collapsed) {
  color: #6b6b6b;
  background: transparent;
  box-shadow: none;
}

.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.accordion-button::after {
  background-image: url(../images/accordion_arrow.png) !important;
}

.accordion-button:not(.collapsed)::after {
  transform: none;
}

.brand_filter .form-group {
  margin-bottom: 0px;
}

.color-picker {
  font-size: 0;
  margin-top: 20px;
}

.color-picker__item {
  display: inline-block;
  margin-bottom: 15px;
}

.color-picker__item + .color-picker__item {
  margin-left: 13px;
}

.color-picker__item:hover {
  cursor: pointer;
}

.color-picker__input {
  display: none;
}

.color-picker__input:checked + .color-picker__color:after {
  content: "";
}

.color-picker__input:disabled + .color-picker__color {
  opacity: 0.5;
}

.color-picker__input:disabled + .color-picker__color:hover {
  cursor: not-allowed;
}

.color-picker__color {
  position: relative;
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  border: 2px solid var(--main);
  padding: 2px;
}

.color-picker__color:hover {
  cursor: pointer;
}

.color-picker__color:after {
  pointer-events: none;
  position: absolute;
  top: -3px;
  left: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  outline: 1.5px solid #787878;
  content: none;
  border-radius: 50px;
}

.color-picker__color--color1 {
  background: #9bd1ff;
}

.color-picker__color--color2 {
  background: #21b290;
}

.color-picker__color--color3 {
  background: #fec4c4;
}

.color-picker__color--color4 {
  background: #ff7354;
}

.color-picker__color--color5 {
  background: #51edc8;
}

.color-picker__color--color6 {
  background: #b77cf3;
}

.color-picker__color--color7 {
  background: #ff4a76;
}

.color-picker__color--color8 {
  background: #3e68ff;
}

.color-picker__color--color9 {
  background: #7bef68;
}

.size {
  width: 100%;
  display: inline-block;
}

.size ul {
  display: inline-block;
}

.size ul li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.size ul li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border: 1px solid #6b6b6b;
  display: inline-block;
  color: var(--black_one);
  font-weight: 500;
  font-size: 18px;
}

.size ul li a:hover {
  background-color: var(--main);
  border: 1px solid var(--main);
  color: var(--white);
}

.range_container {
  --_marker-border-clr: #2b2b2b;
  --_marker-size: 15px;
  --_track-heigt: 3px;
  --_tooltip-bg-clr: rgba(0, 0, 0, 0.4);
  --_tooltip-txt-clr: var(--_marker-border-clr);
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  margin-bottom: 50px;
}

.sliders_control {
  position: relative;
}

.slider-tooltip {
  position: absolute;
  top: -40px;
  /*left: 0;*/
  width: fit-content;
  color: var(--black);
  font-size: 14px;
  border-radius: 4px;
  padding: 0;
  text-align: center;
  /*translate: -50% 0;*/
}

.range_container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: var(--_marker-size);
  height: var(--_marker-size);
  background-color: var(--_marker-border-clr);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--_marker-border-clr);
  cursor: pointer;
}

.range_container input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: var(--_marker-size);
  height: var(--_marker-size);
  background-color: var(--_marker-border-clr);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--_marker-border-clr);
  cursor: pointer;
}

.range_container input[type="range"]::-webkit-slider-thumb:hover {
  background: #fff;
}

.range_container input[type="range"]::-webkit-slider-thumb:active {
  box-shadow: inset 0 0 3px #2b2b2b, 0 0 9px #2b2b2b;
  -webkit-box-shadow: inset 0 0 3px #2b2b2b, 0 0 9px #2b2b2b;
}

.range_container input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: var(--_track-heigt);
  width: 100%;
  position: absolute;
  background-color: var(--_marker-border-clr);
  pointer-events: none;
}

#fromSlider {
  height: 0;
  z-index: 1;
}

.scale {
  display: none;
}

.filter_blog_main {
  margin-bottom: 50px;
}

.products_info_filter {
  /* display: flex; */
  gap: 15px;
  align-items: center;
  justify-content: end;
  margin-bottom: 40px;
}

.products_info_filter_dropdown {
  display: flex;
  flex: 0 0 auto;
}

.products_info_filter_dropdown .form-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0px;
}

.products_info_filter_dropdown .form-group label {
  margin-bottom: 0px;
  color: #6b6b6b;
  flex: 0 0 auto;
}

.products_info_filter_dropdown .form-select {
  width: 100%;
  border: none;
  color: #000;
  flex: auto;
}

.products_info_filter_view a {
  color: #6b6b6b;
}

.offcanvas_products .offcanvas-header {
  justify-content: center;
  border-bottom: 1px solid #d9d9d9;
}

.offcanvas_products .offcanvas-header .btn-close {
  position: absolute;
  right: 20px;
}

.offcanvas_products .offcanvas-header #offcanvasRightLabel {
  font-size: 24px;
  color: var(--black);
  text-align: center;
}

.offcanvas_products .offcanvas-header #offcanvasRightLabel span {
  width: 100%;
  color: #7a7a7a;
  display: inline-block;
  font-size: 20px;
  margin-top: 5px;
}

.availability_info {
  display: flex;
  align-items: start;
  margin-bottom: 0;
  flex-direction: column;
  gap: 25px;
}

.availability_info a {
  font-size: 22px;
  color: #6b6b6b;
  font-weight: 600;
}

.availability_info a i {
  padding-right: 15px;
}

.apply_btn {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
}

.clear_link a {
  font-size: 22px;
  color: #999999;
  font-weight: 600;
  text-decoration: underline;
}

.clear_link a:hover {
  color: var(--main);
}

.offcanvas_products .offcanvas-body {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

.blog_post_product .recomment_title span {
  text-transform: capitalize;
}

/* ---------------------------- product_css_end --------------------------- */

/* ------------------------ product_details_css_start ----------------------- */

.product_details_main {
  margin-top: 40px;
}

#sync1 .item {
  padding: 0px 0px;
  margin: 0px 0px;
  color: #fff;
  text-align: center;
  min-height: 420px;
  position: relative;
}

#sync2 .item {
  margin: 10px 3px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
}

#sync2 .item h1 {
  font-size: 18px;
}

#sync2 .current .item {
  /* border: 2px solid var(--gold); */
}

#sync2.owl-carousel .owl-item img {
  height: 103px;
}

#sync1.owl-theme {
  position: relative;
}

.product_details_carousel #sync2 .owl-nav .owl-prev,
.product_details_carousel #sync2 .owl-nav .owl-next {
  color: #000;
  height: 30px;
  width: 30px;
  line-height: 32px;
  background: #ffffff;
  border: transparent;
  bottom: 35%;
  box-shadow: 0 0 12px rgb(0 0 0 / 12%);
  font-size: 13px;
}

.product_details_carousel #sync2 .owl-nav .owl-prev {
  left: -10px;
}

.product_details_carousel #sync2 .owl-nav .owl-next {
  right: -10px;
}

.product_details_carousel .owl-theme .owl-nav .owl-prev,
.product_details_carousel .owl-theme .owl-nav .owl-next {
  background-color: #fff;
  border: transparent;
  color: var(--black);
  opacity: 1;
  line-height: 55px;
}

.product_details_carousel .owl-theme .owl-nav .owl-prev {
  left: 15px;
}

.product_details_carousel .owl-theme .owl-nav .owl-next {
  right: 15px;
}

.product_details_title_like h2 {
  font-size: 30px;
  font-weight: 500;
}

.product_details_title_like {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.like_icon_dtl a {
  width: 50px;
  height: 50px;
  color: #fff;
  background-color: #ca6d6f;
  display: inline-block;
  text-align: center;
  border-radius: 50px;
  font-size: 20px;
  line-height: 55px;
}

.product_details_title_price h5 {
  font-size: 20px;
  color: #a3a3a3;
  font-weight: 500;
  margin: 10px 0px;
}

.product_details_title_price h4 {
  font-size: 32px;
  color: #000;
  font-weight: 500;
}

.bulk_blog p {
  font-size: 16px;
  color: #000;
  border-top: 1px solid #ededed;
  margin-top: 5px;
  padding-top: 8px;
}

.bulk_blog ul li {
  display: inline-block;
  border: 1px solid #ca6d6f;
  border-radius: 3px;
  padding: 5px 10px;
  min-width: 100px;
  text-align: center;
  margin-right: 15px;
  margin-bottom: 15px;
}

.bulk_blog ul li .bult_pcs_title {
  font-size: 16px;
  color: #797979;
  font-weight: 500;
  position: relative;
}

.bulk_blog ul li .bult_pcs_title::before {
  background-color: #000;
  width: 40px;
  height: 1px;
  position: absolute;
  bottom: -3px;
  content: "";
  left: auto;
  right: auto;
  display: block;
  text-align: center;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bulk_blog ul li .bult_pcs_price {
  font-weight: 600;
  font-size: 18px;
  color: var(--black_one);
  margin-top: 10px;
}

.product_details_size {
  margin-top: 30px;
}

.product_details_size h4,
.product_details_color h4 {
  font-size: 24px;
  color: #000;
  font-weight: 500;
  margin-bottom: 20px;
}

.product_details_size ul li {
  width: 60px;
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 15px;
}

.product_details_size ul li button label {
  width: 60px;
  height: 50px;
  border: 1px solid #d9d9d9;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 50px;
  color: #000;
  margin-bottom: 15px;
}

.product_details_size ul li .form-control {
  height: 40px;
  padding: 0.5rem;
}

.product_details_size ul li button label:hover,
.product_details_size ul li button .active {
  border: 1px solid #000;
  cursor: pointer;
}

.product_details_size ul li button input[type="checkbox"][id^="myCheckbox"] {
  display: none;
}

.size_code_info {
  margin-top: 30px;
}

.size_code_info ul li {
  width: 100%;
  display: inline-block;
  position: relative;
  font-weight: 500;
  color: #6b6b6b;
  font-size: 16px;
  padding-left: 175px;
  margin-bottom: 0.75rem;
}

.size_code_info ul li span {
  color: #000;
  position: absolute;
  left: 0px;
}

.product_details_btn_3 {
  margin-top: 15px;
}

.product_details_btn_3 ul {
  display: flex;
  gap: 20px;
}

.product_details_btn_3 .main_btn {
  line-height: 40px;
  text-transform: uppercase;
  color: #fff;
}

.product_details_btn_3 .main_btn:hover {
  color: var(--black_one);
}

.product_details_btn_3 .border_btn {
  color: #000;
}

.product_details_btn_3 .border_btn:hover {
  color: #fff;
}

.designing_btn .main_btn {
  text-transform: uppercase;
  background-color: var(--main);
  color: #fff;
  line-height: 50px;
  border-color: var(--main);
  width: 100%;
  margin-top: 20px;
}

.designing_btn .main_btn:hover {
  background-color: var(--black_one);
  border-color: var(--black_one);
  color: var(--white);
}

.pro_dtl_accordion {
  margin-top: 40px;
}

.pro_dtl_accordion .accordion-button::after {
  float: right !important;
  font-family: FontAwesome;
  content: "\f068";
  padding-right: 5px;
  background-image: none !important;
  font-weight: normal;
  color: #d9d9d9;
}

.pro_dtl_accordion .accordion-button.collapsed:after {
  float: right !important;
  content: "\f067";
  background-image: none !important;
  font-weight: normal;
  color: #d9d9d9;
}

.pro_dtl_accordion .accordion-button {
  font-weight: 500;
  border-bottom: 1px solid #ededed;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.pro_dtl_accordion .accordion-button img {
  margin-right: 15px;
}

.regularcare {
  font-size: 18px;
  color: #6b6b6b;
  font-weight: normal;
  margin-bottom: 35px;
}

.guarantee_card h5 {
  font-size: 16px;
  color: #000;
  font-weight: normal;
  margin-bottom: 20px;
}

.pro_dtl_tab {
  margin-top: 30px;
}

.pro_dtl_tab .nav-tabs {
  border-bottom-color: #cbcbcb;
}

.pro_dtl_tab .nav-tabs .nav-link.active,
.pro_dtl_tab .nav-tabs .nav-item.show .nav-link {
  color: #000;
  background-color: #fff;
  border-color: transparent;
  border-bottom: 5px solid #ca6d70;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: transparent;
  color: var(--main);
}

.nav-tabs .nav-link {
  font-size: 22px;
  color: #000;
  font-weight: 500;
  padding: 0px 30px 10px;
  margin-right: 20px;
  border-bottom: 5px solid transparent;
}

.pro_dtl_tab_data {
  margin: 30px 0px;
}

.pro_dtl_tab_description p {
  font-size: 16px;
  font-weight: 500;
  color: #a3a3a3;
  margin-bottom: 15px;
}

.pro_dtl_tab_description ul li {
  font-size: 16px;
  font-weight: 500;
  color: #a3a3a3;
  margin-bottom: 7px;
  position: relative;
  padding-left: 20px;
}

.pro_dtl_tab_description ul li::after {
  width: 4px;
  height: 4px;
  background-color: #a3a3a3;
  border-radius: 100px;
  position: absolute;
  display: block;
  content: "";
  top: 10px;
  left: 0px;
}

.pro_dtl_recomment {
  margin-bottom: 30px;
}

.pro_dtl_recomment .recomment_title h1 {
  margin-top: 10px;
}

/* ------------------------ product_details_css_end ----------------------- */

/* ---------------------------- profile_css_start --------------------------- */

.profile_main {
  margin-top: 50px;
  width: 100%;
  display: inline-block;
}

.profile_title {
  font-size: 40px;
  color: #000;
}

.profile_edit_btn {
  display: flex;
  justify-content: end;
  margin-bottom: 30px;
}

.upload_btn {
  margin: 30px 0px;
}

.add_more_link {
  position: absolute;
  right: 0px;
  top: 0;
  color: #0848a1;
}

.add_more_link:hover {
  color: var(--main);
}

.pro_dtl_tab {
  margin-bottom: 70px;
}

.profile_tab_title {
  font-size: 30px;
  color: #000;
  margin: 40px 0px 10px;
  font-weight: 600;
}

.profile_wishlist {
  border: 1px solid #e5e5e5;
  padding: 30px 30px 5px;
  margin-bottom: 30px;
  margin-top: 10px;
  width: 100%;
  display: inline-block;
}

.profile_wishlist_img_title {
  display: flex;
  gap: 30px;
  flex-basis: 33%;
}

.profile_wishlist_img {
  flex-basis: 100%;
}

.profile_wishlist_title,
.profile_wishlist_right {
  display: flex;
  flex-basis: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.profile_wishlist_title_top h4,
.profile_wishlist_title_btm h4 {
  font-size: 20px;
  color: #a3a3a3;
  font-weight: 500;
}

.profile_wishlist_title_top h5 {
  font-size: 20px;
  color: #2b2b2b;
  font-weight: 600;
  margin-top: 15px;
}

.profile_wishlist_right h3 {
  font-weight: 500;
  font-size: 24px;
}

.profile_wishlist_blog {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  gap: 30px;
}

.profile_wishlist_right {
  align-items: end;
}

.profile_wishlist_right a {
  font-size: 25px;
  color: #000000;
}

.profile_wishlist_right a:hover {
  color: var(--main);
}

.pro_dtl_tab_description .profile_tab_title_dis {
  color: #000;
  font-weight: normal;
  margin-bottom: 30px;
  width: 100%;
  display: inline-block;
}

.purchase_his {
  border: 1px solid #e5e5e5;
  padding: 20px;
  margin-bottom: 20px;
}

.purchase_his_top {
  position: relative;
}

.purchase_his_top .main_btn {
  position: absolute;
  right: 0px;
  min-width: 150px;
}

.purchase_his_top ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.purchase_his_top ul li::after {
  display: none;
}

.purchase_his_top ul li {
  display: inline-block;
  margin-right: 70px;
  padding-left: 0;
}

.purchase_his_top ul li h5 {
  font-size: 22px;
  color: #000;
  font-weight: 600;
  margin-bottom: 10px;
}

.purchase_his_top ul li span {
  font-size: 22px;
  color: #a3a3a3;
  font-weight: 500;
}

.pro_dtl_tab_description .profile_tab_title_dis_top {
  margin: 40px 0px 20px;
  color: var(--main);
}

.profile_tab_title_people {
  margin: 0px;
}

.profile_review {
  /* position: relative; */
  margin-top: 30px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
}

.profile_img img {
  width: 100%;
}

.profile_review_img img {
  width: 80px;
  height: 80px;
  border-radius: 100px;
}

.profile_review_text {
  /* position: absolute;
    top: 18px; */
  /* padding-left: 140px; */
  width: 100%;
  margin-bottom: 30px;
}

.profile_review_text h5 {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  margin-bottom: 5px;
}

.profile_review_text span {
  font-size: 22px;
  color: #a6a6a6;
  font-weight: normal;
}

.profile-review-reply {
  padding-left: 30px;
}

.profile-review-reply h5 {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  margin-bottom: 5px;
}

.profile-review-txt-cnt {
  width: 100%;
}

.profile-review-part {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile_review_text ul li::after {
  display: none;
}

/* .profile_review_text ul {
    position: absolute;
    top: 0px;
    right: 0px;
} */

.profile_review_text ul li {
  display: inline-block;
  padding-left: 0px;
}

.profile_review_text ul span {
  font-size: 22px;
  color: #000;
  font-weight: 500;
  margin-left: 5px;
}

.profile_review_text ul li a {
  color: #ffc107;
}

.review_btn {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.review_btn p {
  width: 850px;
  color: #000000;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 17px;
}

.review_btn span {
  color: #6b6b6b;
  font-size: 20px;
}

/* ---------------------------- profile_css_end --------------------------- */

.icon-float-one {
  -webkit-animation: float 1.3s infinite alternate;
  animation: float 1.3s infinite alternate;
  rotate: -10deg;
}

.icon-float-two {
  -webkit-animation: float 1.5s infinite alternate;
  animation: float 2.1s infinite alternate;
  rotate: -10deg;
}

.icon-float-three {
  -webkit-animation: float 1.5s infinite alternate;
  animation: float 1.7s infinite alternate;
  /* rotate: -10deg; */
}

@-webkit-keyframes float {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}

.designing_your_btn.header-btn-new .main_btn {
  border: 1px solid var(--black);
  border-radius: 0;
  color: var(--white);
  background-color: #fff;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0;
  text-align: center;
  touch-action: manipulation;
  transition: all 0.3s ease-in-out;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
  background: var(--main);
  line-height: 40px;
}

.maker_main {
  width: 100%;
  height: auto;
  /*background-size: cover;*/
  background-repeat: repeat;
  /*background-image: url(../images/create_design_bg.png);*/
  background-image: url(../images/animation_bg.jpg);
  background-position: 0 0;
  background-attachment: scroll;
  -webkit-animation: background-animation 20s linear infinite;
  animation: background-animation 20s linear infinite;
}

@keyframes background-animation {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.create-design {
  margin: 100px 0px;
}

.create-head h3 {
  color: var(--black_one);
  text-align: center;
  margin-bottom: 30px;
}

.create-txt ul {
  margin-bottom: 40px;
}

.create-txt ul li {
  color: var(--black);
  list-style: disc;
  margin-bottom: 10px;
}

.create-btn {
  padding-left: 80px;
}

.create-btn a {
  border: 1px solid var(--black);
  border-radius: 0;
  color: var(--white);
  background-color: #fff;
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0;
  text-align: center;
  touch-action: manipulation;
  transition: all 0.3s ease-in-out;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
  background: var(--main);
  min-width: 200px;
  line-height: 50px;
}

/* megamenu */

.megamenu-content,
.minimenu-content {
  padding: 25px 20px;
  /* background-color: #fff; */
}

.megamenu-links {
  display: flex;
  /*align-items: center;*/
  gap: 13%;
  /* justify-content: space-around; */
}

.megamenu-part h5 {
  color: var(--black_one);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
}

.minimenu-content ul li:last-child {
  margin-bottom: 0;
}

.minimenu-content ul li {
  margin-bottom: 15px;
}

.megamenu-part ul li a,
.minimenu-content ul li a {
  color: var(--black_one);
}

.meegamenu-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.meegamenu-card-head a {
  color: #000;
}

.meegamenu-card-head h5 {
  color: var(--black_one);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
}

.megamenu-card {
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
}

.megamenu-card-img img {
  width: 90%;
  margin-bottom: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
}

.megamenu-card-dtl h5 {
  width: 90%;
  color: var(--black_one);
  font-size: 17px;
  font-weight: 500;
}

.megamenu-card-dtl p {
  color: var(--black_one);
  font-size: 14px;
}

@media screen and (min-width: 1025px) and (max-width: 1240px) {
  .megamenu-links {
    gap: 8%;
  }
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
  .megamenu-links {
    gap: 8%;
  }
  .header .menu .menu-section {
    padding-right: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .menu-section {
    flex-direction: column;
    padding: 0;
  }
  .header .menu ul li {
    width: 100%;
    height: auto;
    display: unset;
  }
  .megamenu .container-fluid {
    padding: 0;
  }
  .megamenu {
    position: unset;
  }
  .megamenu-links {
    flex-direction: column;
    align-items: start;
  }
  .megamenu-part ul {
    display: flex;
    flex-direction: column;
  }
  .megamenu-part {
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .menu-section {
    flex-direction: column;
    padding: 0;
  }
  .header .menu ul li {
    width: 100%;
    height: auto;
    display: unset;
  }
  .megamenu .container-fluid {
    padding: 0;
  }
  .megamenu {
    position: unset;
  }
  .megamenu-links {
    flex-direction: column;
    align-items: start;
  }
  .megamenu-part ul {
    display: flex;
    flex-direction: column;
  }
  .megamenu-part {
    margin-bottom: 25px;
  }
}

/* Checkout */

.checkout {
  margin-bottom: 70px;
}

.checkout-cnt {
  width: 100%;
}

.checkout-head h3 {
  color: var(--black_one);
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 20px;
}

.checkout-shiping-info {
  margin-bottom: 20px;
}

.checkout-shiping-info h5 {
  color: var(--black_one);
  font-size: 20px;
  margin-bottom: 15px;
}

.chekout-shiping-info-btn {
  width: 200px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 0px 20px;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid var(--main);
}

.chekout-shiping-info-btn input[type="radio"] {
  display: block;
  accent-color: var(--main);
  height: 20px;
  width: 20px;
}

.checkout-field input,
.checkout-field select,
.checkout-field textarea {
  border: 1px solid #dbdde3;
  border-radius: 8px;
}

.checkout-field input::placeholder {
  color: #818ea1;
}

.checkout-tc {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-tc input[type="checkbox"] {
  accent-color: var(--main);
  height: 20px;
  width: 20px;
}
.design-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.design-checkbox input[type="checkbox"] {
  accent-color: var(--main);
  height: 20px;
  width: 20px;
}
.checkout-review-card h5 {
  color: var(--black_one);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 20px;
}

.checkout-cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.checkout-cart-img img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  border-radius: 10px;
}

.checkout-cart-txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.checkout-cart-txt h6 {
  color: var(--black_one);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}

.checkout-cart-txt p {
  color: #697387;
  margin-bottom: 0px;
}

.checkout-cart-txt h5 {
  margin: 0px;
  margin-top: 15px;
}

.checkout-pay-btn button {
  width: 100%;
  height: 45px;
  color: var(--white);
  background-color: var(--main);
  border-radius: 8px;
}

.select2-container--default .select2-selection--single {
  border: 1px solid #dbdde3 !important;
  border-radius: 8px !important;
  height: 50px !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #818ea1 !important;
  line-height: 50px !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 50px !important;
}

.select2-dropdown {
  border: 1px solid #dbdde3 !important;
  border-radius: 8px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #dbdde3 !important;
  border-radius: 8px !important;
  padding: 5px 10px !important;
}

.select2-container--focus .select2-selection {
  border-color: var(--main) !important;
}
.select2-container--open .select2-selection {
  border-color: var(--main) !important;
}

.checkout_offer_section .input-group-text {
  background: none !important;
}

.checkout-price-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.checkout-price-field h5 {
  color: #818ea1;
}

.form-control.checkout-discount-box {
  height: 40px;
  padding-left: 10px;
}

.checkout-secure {
  margin-top: 30px;
}

.checkout-secure h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.checkout-secure h6 {
  color: #818ea1;
  font-size: 18px;
  line-height: 25px;
}

/* Cart sidebar */

.offcanvas.offcanvas.offcanvas-end.offcanvas_cart_list {
  width: 600px;
}

.offcanvas_cart_list .offcanvas-header {
  border-bottom: 1px solid #a3a3a3;
}

.offcanvas_cart_list .offcanvas-header #offcanvasRightLabel {
  font-size: 20px;
  font-weight: 500;
}

.spend-sec {
  margin-bottom: 20px;
}

.spend-part {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.spend-head h5 {
  font-weight: 500;
}

progress {
  width: 100%;
  height: 5px;
  border: none;
  border-radius: 0px;
}

/* progress::-moz-progress-bar {
    background: lightblue;
} */

progress::-webkit-progress-value {
  background: var(--black_one);
}

progress::-webkit-progress-bar {
  background: #d9d9d9;
}

.minicart-card {
  width: 100%;
  /* display: flex; */
  align-items: start;
  gap: 25px;
  margin-bottom: 20px;
}

.minicart-img img {
  max-width: 160px;
  max-height: 160px;
}

.minicart-dtl {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

.minicart-dtl-name {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.minicart-dtl-name h4 {
  color: var(--black_one);
  font-size: 20px;
  font-weight: 600;
}

.minicart-dtl-name button {
  color: #a3a3a3;
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
}

.minicart-dtl-color-size {
  margin-bottom: 20px;
}

.minicart-dtl-color-size h5 {
  margin-bottom: 10px;
}

.minicart-dtl-title h4 {
  color: var(--black_one);
  font-size: 20px;
  font-weight: 600;
}

.minicart-dtl-color {
  display: flex;
  align-items: center;
  gap: 5px;
}

.minicart-color-btn {
  width: 50px;
  height: 20px;
  border-radius: 5px;
  outline: 2px solid #ca6d6f;
}

.minicart-color-btn.red {
  background-color: red;
}

.minicart-dtl-price h4 {
  color: #a3a3a3;
  font-size: 20px;
  font-weight: 600;
}

.offcanvas.offcanvas-end.offcanvas_cart_list .offcanvas-body {
  position: relative;
}

.minicart-total {
  width: 600px;
  position: fixed;
  bottom: 0px;
  background-color: #fff;
  padding: 1rem;
}

.offcanvas-body {
  padding: 0;
}

.spend-sec,
.minicart-section {
  padding: 1rem;
}

.minicart-total-block {
  margin-bottom: 20px;
}

.minicart-total-block-part {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.minicart-total-block-part h4 {
  color: var(--black_one);
  font-size: 20px;
  font-weight: 500;
}

.minicart-total-block-part h3 {
  color: #000;
  font-size: 20px;
  font-weight: 700;
}

.minicart-total-block h3 {
  color: #6b6b6b;
  font-size: 18px;
  font-weight: 500;
}

.minicart-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.minicart-btn .cart_sidebar_btn {
  width: 160px;
  height: 50px;
  color: var(--black_one);
  font-size: 16px;
  border: 1px solid var(--black_one);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.minicart-section {
  padding-bottom: 150px;
}

.purchase_summary_blog .summary_blog_img img {
  width: 140px;
}

.checkout-dtl-color {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.checkout-color-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  outline: 1.5px solid #ca6d6f;
}

/*** Start Loader Stye ****/
.loader {
  display: none;
}
.main-loader-bg {
  width: 100vw;
  height: 100vh;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  opacity: 0.7;
  position: fixed;
  top: 0;
  z-index: 9999;
}

.preloader {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  opacity: 1;

  position: fixed;
  top: 0;
  z-index: 9999;
}

.preloader__text {
  position: relative;
  height: 1.5em;
}

.preloader__msg {
  animation: msg 0.3s 13.7s linear forwards;
  position: absolute;
  width: 100%;
}

.preloader__msg--last {
  animation-direction: reverse;
  animation-delay: 14s;
  visibility: hidden;
}

.cart__icon {
  display: block;
  margin: 0 auto 1.5em auto;
  width: 6em;
  height: 8em;
}

.cart__lines,
.cart__top,
.cart__wheel1,
.cart__wheel2,
.cart__wheel-stroke {
  animation: cartLines 2s ease-in-out infinite;
}

.cart__lines {
  stroke: var(--main);
}

.cart__top {
  animation-name: cartTop;
}

.cart__wheel1 {
  animation-name: cartWheel1;
  transform: rotate(-0.25turn);
  transform-origin: 43px 111px;
}

.cart__wheel2 {
  animation-name: cartWheel2;
  transform: rotate(0.25turn);
  transform-origin: 102px 111px;
}

.cart__wheel-stroke {
  animation-name: cartWheelStroke;
}

.cart__track {
  stroke: rgb(0, 0, 0, 0.1);
  transition: stroke 0.3s;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
  .cart__track {
    stroke: rgb(0, 0, 0, 0.1);
  }
}

/* Animations */
@keyframes msg {
  from {
    opacity: 1;
    visibility: visible;
  }

  99.9% {
    opacity: 0;
    visibility: visible;
  }

  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes cartLines {
  from,
  to {
    opacity: 0;
  }

  8%,
  92% {
    opacity: 1;
  }
}

@keyframes cartTop {
  from {
    stroke-dashoffset: -338;
  }

  50% {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: 338;
  }
}

@keyframes cartWheel1 {
  from {
    transform: rotate(-0.25turn);
  }

  to {
    transform: rotate(2.75turn);
  }
}

@keyframes cartWheel2 {
  from {
    transform: rotate(0.25turn);
  }

  to {
    transform: rotate(3.25turn);
  }
}

@keyframes cartWheelStroke {
  from,
  to {
    stroke-dashoffset: 81.68;
  }

  50% {
    stroke-dashoffset: 40.84;
  }
}

/*** End Loader Stye ****/

/*** Start Checkout New Style ***/

.checkout-shiping-address-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-shiping-address-head button {
  color: var(--off_black);
  font-size: 17px;
}

.checkout-shiping-address-head button:hover {
  color: var(--black_one);
  font-size: 17px;
}

.checkout-shipping-address-card {
  background-color: #fff;
  border-radius: 0.5em;
  position: relative;

  &:hover {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
  }
}

.radio {
  font-size: inherit;
  margin: 0;
  position: absolute;
  right: calc(1em + 2px);
  top: calc(1em + 2px);
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  .radio {
    width: 20px;
    height: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
    border: 1px solid #818ea1;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    position: absolute;
    top: 15px;
    left: 15px;
    transition: background 0.2s ease-out, border-color 0.2s ease-out;

    &::after {
      border: 2px solid #fff;
      border-top: 0;
      border-left: 0;
      content: "";
      display: block;
      height: 0.75rem;
      left: 23%;
      position: absolute;
      top: 43%;
      transform: rotate(45deg) translate(-50%, -50%);
      width: 0.375rem;
    }

    &:checked {
      background: var(--main);
      border-color: var(--main);
    }
  }

  .checkout-shipping-address-card:hover .radio {
    border-color: #818ea1;

    &:checked {
      border-color: var(--main);
    }
  }
}

/* .checkout-shipping-address-card
{
    border: 1px solid #818EA1;
    padding: 15px;
} */

.addr-edit-btn {
  position: absolute;
  top: 15px;
  right: 15px;
}

.addr-details h4 {
  padding-left: 30px;
}

.addr-details {
  border: 1.5px solid #818ea1;
  border-radius: 0.5em;
  cursor: pointer;
  padding: 15px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease-out;
}

.radio:checked ~ .addr-details {
  border-color: var(--main);
}

.radio:disabled ~ .addr-details {
  color: #c4d1e1;
  cursor: default;
}

.radio:disabled ~ .addr-details .addr-type {
  color: #c4d1e1;
}

.checkout-shipping-address-card:hover .radio:disabled ~ .addr-details {
  border-color: #e2ebf6;
  box-shadow: none;
}

.checkout-shipping-address-card:hover .radio:disabled {
  border-color: #e2ebf6;
}

.addr-type {
  color: #818ea1;
  font-size: 19px;
  font-weight: 600;
  line-height: 1em;
}

.radio:checked ~ .addr-details .addr-type {
  color: var(--main);
}

.addr-cost {
  font-size: 2.5rem;
  font-weight: bold;
  padding: 0.5rem 0;
}

.slash {
  font-weight: normal;
}

.addr-cycle {
  font-size: 2rem;
  font-variant: none;
  border-bottom: none;
  cursor: inherit;
  text-decoration: none;
}

.hidden-visually {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.checkout-shipping-address-card input[type="radio"] {
  display: block;
}

.checkout-address-parent {
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  /* margin-top: 15px; */
}

.checkout-shipping-address-card {
  width: 100%;
}

.addr-details h3 {
  color: #818ea1;
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
}

.addr-details h6 {
  color: #818ea1;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 10px;
}

.radio:checked ~ .addr-details h3,
.radio:checked ~ .addr-details h6 {
  color: var(--black);
}

.checkout-same-address {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.checkout-same-address p {
  font-size: 13px;
}

.checkout-shiping-address-child {
  margin-bottom: 20px;
}

.checkout-shipping-address-card .addr-details,
.checkout-shipping-address-card {
  height: 100%;
}

.checkout-shipping-address-card.checkout-shipping-payment-method .addr-details {
  height: 100px;
  border: 1.5px solid #818ea1;
  border-radius: 0.5em;
  cursor: pointer;
  padding: 15px;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease-out;
}

.checkout-shipping-address-card.checkout-shipping-payment-method {
  width: 100%;
  height: 100%;
}

.checkout-address-parent.checkout-address-parent-payment-method {
  display: unset;
  align-items: center;
  justify-content: left;
  gap: 20px;
}

.checkout-shipping-address-card.checkout-shipping-payment-method
  .radio:checked
  ~ .addr-details {
  border-color: var(--main);
}

.checkout-other-part h5 {
  font-size: 15px;
  text-align: center;
}

.checkout-same-address.checkout-same-address-payment {
  margin-top: 10px;
}

.checkout-shiping-address-head h5 {
  margin-bottom: 15px;
}

.addr-edit-btn,
.addr-delete-btn {
  width: 30px;
  height: 30px;
  background: #818ea1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.addr-edit-btn i {
  color: var(--white);
  font-size: 14px;
  margin-left: 2px;
}

.addr-delete-btn i {
  color: var(--white);
  font-size: 14px;
}

.radio:checked ~ .addr-edit-btn,
.radio:checked ~ .addr-delete-btn {
  background: var(--main);
}

/* .payment-radio.radio
{
    position: absolute;
    top: 15px;
    right: 15px;
} */

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  .payment-radio.radio {
    width: 20px;
    height: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
    border: 1px solid #818ea1;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    position: absolute;
    top: 15px;
    right: 15px;
    left: unset;
    transition: background 0.2s ease-out, border-color 0.2s ease-out;

    &::after {
      border: 2px solid #fff;
      border-top: 0;
      border-left: 0;
      content: "";
      display: block;
      height: 0.75rem;
      left: 23%;
      position: absolute;
      top: 43%;
      transform: rotate(45deg) translate(-50%, -50%);
      width: 0.375rem;
    }

    &:checked {
      background: var(--main);
      border-color: var(--main);
    }
  }

  .checkout-shipping-address-card:hover .radio {
    border-color: #818ea1;

    &:checked {
      border-color: var(--main);
    }
  }
}

/*** End Checkout New Style ***/

/*** start Photo Gallry Style ***/

.gallary-bg {
  width: 100%;
  height: 100%;
  background-image: url(../images/photo_gallary_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 200px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallary-bg h3 {
  color: var(--white);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
}

.gallary-main {
  padding: 50px 0px;
  text-align: center;
}

.gallary-head {
  margin-bottom: 50px;
  text-align: center;
}

.gallary-head h3 {
  color: var(--black_one);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}

.gallary-head h6 {
  width: 300px;
  margin: auto;
  font-size: 15px;
  line-height: 20px;
}

.photo-img {
  margin-bottom: 20px;
}

.photo-img img {
  width: 100%;
}

.video-img {
  margin-bottom: 20px;
  position: relative;
}

.video-img img {
  width: 100%;
  border-radius: 10px;
}

.video-playbtn {
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0, 0.4);
  border-radius: 10px;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-playbtn img {
  width: 35px;
}

.video-playbtn h6 {
  color: var(--white);
  font-size: 15px;
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.mfp-iframe-holder .mfp-content {
  max-width: 1000px !important;
}

.mfp-container {
  position: fixed !important;
}

/*** End Photo Gallry Style ***/

/*** Start Order Details Style ***/

.order-dtl {
  padding: 30px 0px;
  padding-bottom: 50px;
}

.order-dtl-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-dtl-head h3 {
  color: var(--black_one);
  font-size: 28px;
}

.order-dtl-head button {
  color: var(--white);
  font-size: 18px;
  background-color: var(--main);
  padding: 10px 25px;
  border-radius: 5px;
}

.order-dtl-head button i {
  margin-right: 10px;
}

.order-dtl-cnt {
  border: 1px solid #dbdde3;
  border-radius: 10px;
  padding: 30px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.order-cnt-field:last-child {
  margin-bottom: 0;
}

.order-cnt-field {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.order-cnt-field h5,
.order-cnt-field h5 {
  color: var(--black_one);
  font-size: 17px;
  margin-bottom: 5px;
}

.order-cnt-field h5 span {
  color: #807d7e;
}

.order-cnt-field h6 {
  color: #807d7e;
  font-size: 14px;
}

.order-dtl-table {
  width: 100%;
  border: 1px solid #dbdde3;
  border-radius: 10px;
  padding: 30px;
  padding-bottom: 10px;
}

.order-dtl-table table {
  width: 100%;
}

.order-dtl-table table thead tr th {
  text-align: center;
}

.order-dtl-table table tbody tr td:last-child {
  min-width: 150px;
}

.order-dtl-table table tbody tr td {
  min-width: 100px;
  color: #807d7e;
  text-align: center;
  padding: 20px 0px;
  margin: 0px 10px;
  border: none;
  vertical-align: middle;
}

.order-dtl-table table tbody tr td img,
.order-cnt-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-cnt-img img {
  width: 80px;
}

.order-cnt-img-razorpay img {
  width: 80px;
  margin-left: 30px;
}

.order-cnt-img-cod img {
  width: 50px;
  margin-left: 45px;
}

.order-cnt-green {
  color: #74ca4d !important;
}

.order-cnt-btn a {
  color: var(--white) !important;
  background: var(--main);
  padding: 8px 20px;
  border-radius: 6px;
}

.order-cnt-black {
  color: var(--black_one);
}

.order-cnt-price {
  font-weight: 700;
}

/*** End Order Details Style ***/

/*** Start About Us Style ***/

.about-cnt {
  width: 80%;
  margin: auto;
  padding: 30px 0px;
}

.about-head h2 {
  color: var(--black_one);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-img img {
  width: 100%;
  margin-bottom: 30px;
}

.about-cnt h3 {
  color: var(--black_one);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  border-left: 5px solid var(--main);
  padding-left: 12px;
}

.about-part {
  margin-bottom: 40px;
}

.about-part li {
  color: #807d7e;
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 600;
  list-style: decimal !important;
}

.about-cnt p {
  color: #807d7e;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

/*** End About Us Style ***/

.our-category-slider {
  flex-wrap: nowrap;
}

.category-list-div::-webkit-scrollbar {
  display: none !important;
}

.category-list-div::-webkit-scrollbar-track {
  background-color: #e3e3e3;
  border-radius: 10px;
}

.category-list-div::-webkit-scrollbar-thumb {
  background-color: #454545;
  border-radius: 10px;
}

/* .category-list-div
{
    overflow-x: auto;
    white-space: nowrap;
    border: 1px solid var(--main);
    border-radius: 50px;
} */

.megamenu-part h3 {
  color: var(--black_one);
}

.checkout-shipping-address-card.profile-address input[type="radio"] {
  display: none;
}

.addr-details.profile-addr-dtl h4 {
  padding: 0;
}

.addr-edit-btn.profile-addr-edit-btn {
  position: absolute;
  top: 15px;
  right: 55px;
}

.addr-delete-btn {
  position: absolute;
  top: 15px;
  right: 15px;
}

.megamenu-part {
  margin-bottom: 30px;
}

.megamenu-part h3 {
  color: var(--black_one);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 7px;
}

.megamenu-part h4 {
  color: #545454;
  font-size: 15px;
}

.fa-play-circle {
  color: var(--white);
}

.fa-play-circle:hover {
  color: var(--main);
}

.help-model a {
  color: var(--white);
  font-weight: 400;
}

.help-cnt {
  width: 70%;
  margin: auto;
  margin-top: 20px;
}

.help-cnt-part a {
  color: var(--main);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 20px;
}

.help-cnt-part a i {
  width: 40px;
  height: 40px;
  background-color: var(--main);
  border-radius: 50px;
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating {
  display: inline-block;
  position: relative;
  height: 50px;
  line-height: 50px;
  font-size: 50px;
}

.rating label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  cursor: pointer;
}

.rating label:last-child {
  position: static;
}

.rating label:nth-child(1) {
  z-index: 5;
}

.rating label:nth-child(2) {
  z-index: 4;
}

.rating label:nth-child(3) {
  z-index: 3;
}

.rating label:nth-child(4) {
  z-index: 2;
}

.rating label:nth-child(5) {
  z-index: 1;
}

.rating label input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.rating label .icon {
  float: left;
  font-size: 30px;
  color: transparent;
}

.rating label:last-child .icon {
  color: #000;
}

.rating:not(:hover) label input:checked ~ .icon,
.rating:hover label:hover input ~ .icon {
  color: #ffc107;
}

.rating label input:focus:not(:checked) ~ .icon:last-child {
  color: #000;
  text-shadow: 0 0 5px #ffc107;
}

.rating-body textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  margin-top: 10px;
  padding: 15px;
}

.rating-btn button {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black_one);
  margin-top: 10px;
}

.complete-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.complete-img img {
  width: 140px;
  margin-bottom: 20px;
}

.complete-txt h5 {
  width: 75%;
  color: #7d7d7d;
  font-size: 18px;
  font-weight: 500;
  margin: auto;
  margin-top: 10px;
}

.tandc-head {
  margin: auto;
  text-align: center;
  margin: 50px 0px;
}

.tandc-head h3 {
  color: var(--black_one);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}

.tandc-head h6 {
  width: 350px;
  margin: auto;
  font-size: 15px;
  line-height: 20px;
}

.tandc-que {
  margin-bottom: 30px;
}

.tandc-que h3 {
  color: var(--black_one);
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}

.tandc-que p {
  color: var(--black_one);
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 10px;
}

.tandc-que ul {
  margin-left: 20px;
}

.tandc-que ul li {
  list-style: disc !important;
  font-weight: 400;
}

.tandc-btn {
  margin: 50px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.tandc-btn .accept-btn {
  color: var(--white);
  background-color: var(--black_one);
  padding: 10px 40px;
  border: 1px solid var(--black_one);
}

.tandc-btn .decline-btn {
  color: var(--black_one);
  background-color: var(--white);
  padding: 10px 40px;
  border: 1px solid var(--black_one);
}

.contact-cnt {
  width: 100%;
  margin: auto;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid #dee2e6;
  padding: 10px 20px;
  border-radius: 5px;
  /*margin-bottom: 40px;*/
}

.contact-btn {
  width: 30%;
  margin-bottom: 30px;
}

.contact-btn button {
  width: 100%;
  height: 40px;
  color: var(--black_one);
  background: transparent;
  border: 1px solid var(--black_one);
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  /* -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
  height: 100%; */
  background-size: cover;
  background-repeat: no-repeat;
  /* padding: 180px 0px; */
  padding: 13% 0px;
}

.product_details_price_new {
  display: flex;
  align-items: center;
  gap: 20px;
}

.product_details_price_new h5 {
  text-decoration: line-through;
  font-weight: 400;
  font-size: 20px;
}

.category-list-slider {
  max-width: 60%;
  /* max-width: 100%; */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
}

.our-category-slider {
  max-width: 100%;
  color: #fff;
  list-style: none;
  background-color: transparent;
  white-space: nowrap;
  border-radius: 50px;
  scroll-behavior: smooth;
  overflow-x: auto;
  border: 1px solid var(--main);
  border-radius: 50px;

  user-select: none;
}

.our-category-slider.dragging {
  scroll-behavior: unset;
  cursor: grab;
}

.our-category-slider::-webkit-scrollbar {
  display: none;
}

.nav-item {
  display: inline-block;
  color: #fff;
  font-size: 1em;
  font-weight: 400;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.our-category-slider.dragging .nav-item {
  pointer-events: none;
}

.nav-item.active {
  background-color: #5b85ff;
}

.category-slider-left-btn,
.category-slider-right-btn {
  position: absolute;
  width: 35px;
  height: 35px;
  color: var(--black);
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  padding: 9px;
  box-shadow: rgba(99, 99, 99, 0.4) 0px 2px 8px 0px;
}

.category-slider-left-btn {
  left: -40px;
  top: 0;
  background: var(--white);
  border-radius: 30px;
  display: none;
}

.category-slider-right-btn {
  right: -40px;
  top: 0;
  background: var(--white);
  border-radius: 30px;
}

.best_seller {
  background-color: var(--white);
  padding: 0px 20px;
  display: inline-block;
  color: #008000;
  font-size: 15px;
  font-weight: 500;
  line-height: 30px;

  position: absolute;
  bottom: 20px;
  left: 24px;
  z-index: 99;
}

.categories_blog:hover .product_action {
  display: none;
}

.banner-slider {
  height: 55% !important;
}

.our-category-slider::-webkit-scrollbar {
  display: none;
}

.banner-slider .slider.slider-for {
  max-width: 84%;
  padding-right: 35px;
}

.banner-slider .slider.slider-nav {
  max-width: 16%;
}

.banner-slider .slider.slider-for,
.banner-slider .slider.slider-nav {
  width: 100%;
  float: left;
}

.banner-slider .slider.slider-nav {
  /* height: 610px; */
  height: 100%;
  overflow: hidden;
}

.slider-banner-image {
  height: 670px !important;
}

.banner-slider .slider.slider-nav {
  padding: 20px 0 0;
}

.slider-nav .slick-slide.thumbnail-image .thumbImg {
  max-width: 178px;
  height: 110px;
  margin: 0 auto;
  border: 1px solid #ebebeb;
}

.slider-banner-image img,
.slider-nav .slick-slide.thumbnail-image .thumbImg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.slick-vertical .slick-slide:active,
.slick-vertical .slick-slide:focus,
.slick-arrow:hover,
.slick-arrow:focus {
  border: 0;
  outline: 0;
}

.slider-nav .slick-slide.slick-current.thumbnail-image .thumbImg {
  border: 2px solid var(--main);
}

.slider-nav .slick-slide.slick-current span {
  color: #196db6;
}

.slider-nav .slick-slide {
  text-align: center;
}

.slider-nav .slick-slide span {
  font-size: 14px;
  display: block;
  padding: 5px 0 15px;
}

/*.slick-arrow {
  width: 100%;
  background-color: transparent;
  border: 0;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 0;
  height: 18px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 99;
}*/

/*.slick-prev {
  top: 0;
}

.slick-next {
  bottom: 0;
  background-color: #fff;
  display: none !important;
}

.slick-prev.slick-arrow {
  background-image: url(../images/black-up-arrow.png);
  display: none;
}

.slick-next.slick-arrow {
  background-image: url(../images/black-down-arrow.png);
  display: none;
}*/

.slick-slider .slick-track {
  /* transform: translate3d(0px, 0px, 0px) !important; */
}
/* 
@media screen and (max-width : 991px) {

    .banner-slider .slider.slider-for,
    .banner-slider .slider.slider-nav {
        max-width: 100%;
        float: none;
    }

    .banner-slider .slider.slider-for {
        padding-right: 0;
    }

    .banner-slider .slider.slider-nav {
        height: auto;
    }

    .slider-banner-image {
        height: 500px;
    }

    .slider.slider-nav.thumb-image {
        padding: 10px 30px 0;
    }

    .slider-nav .slick-slide span {
        padding: 5px 0;
    }

    .slick-arrow {
        padding: 0;
        width: 30px;
        height: 30px;
        top: 50%;
        bottom: 0;
        -webkit-transform: translateY(-50%) rotate(-90deg);
        -moz-transform: translateY(-50%) rotate(-90deg);
        -ms-transform: translateY(-50%) rotate(-90deg);
        transform: translateY(-50%) rotate(-90deg);
    }

    .slick-prev {
        left: 0;
        right: unset;
    }

    .slick-next {
        left: unset;
        right: 0;
        background-color: transparent;
    }

    .vertical-detail-banner .car-slider-desc {
        max-width: 340px;
    }

    .bid-tag {
        padding: 10px 0 15px;
    }

    .slider.slider-nav.thumb-image {
        white-space: nowrap;
    }

    .thumbnail-image.slick-slide {
        padding: 0px 5px;
        min-width: 75px;
        display: inline-block;
        float: none;
    }
}

@media screen and (max-width : 767px) {
    .slider-banner-image {
        height: 400px;
    }

    .slider.slider-nav.thumb-image {
        padding: 0px 20px 0;
        margin: 10px 0px 0;
    }

    .slider-nav .slick-slide.thumbnail-image .thumbImg {
        max-width: 140px;
        height: 80px;
    }

    .slick-prev.slick-arrow {
        background-position: center 10px;
    }

    .slick-next.slick-arrow {
        background-position: center 10px, center;
    }

    .slider-nav .slick-slide span {
        font-size: 12px;
        white-space: normal;
    }
}

@media screen and (max-width: 580px) {
    .slider-banner-image {
        height: 340px;
    }
}

@media screen and (max-width : 480px) {
    .slider-banner-image {
        height: 280px;
    }
}
 */

.blog-bg {
  width: 100%;
  height: 100%;
  background-image: url(../images/photo_blog_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 200px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-bg h3 {
  color: var(--white);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
}

.blog-content {
  padding: 50px 0px;
}

.blog-card {
  width: 100%;
  border: 1px solid #e8e8ea;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 40px;
}

.blog-img img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
}

.blog-date {
  width: 60px;
  height: 28px;
  color: #4b6bfb;
  background-color: rgb(75, 107, 251, 0.1);
  font-size: 14px;
  border-radius: 6px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-title {
  width: 100%;
  color: var(--black_one);
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-desc {
  width: 100%;
  color: var(--black_one);
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  margin-bottom: 15px;
}

.blog-profile {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 10px;
}

.blog-profile img {
  width: 30px;
}

.blog-profile h5 {
  color: #97989f;
  font-size: 16px;
}

.blog-profile-name {
  font-weight: 500;
  margin-right: 10px;
}

.blog-details-name h3 {
  color: var(--black_one);
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-details-img img {
  width: 100%;
  margin: 40px 0px;
}

.blog-details-highlight {
  background-color: #eeeeef;
  margin-bottom: 30px;
  border-left: 4px solid #bcbcbc;
  padding: 20px;
  border-radius: 10px;
}

.blog-details-highlight p {
  color: #181a2a;
  font-size: 17px;
  font-weight: 400;
}

.blog-details-sec {
  margin-bottom: 30px;
}

.blog-details-sec h5 {
  color: var(--black_one);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-details-sec p {
  color: #3b3c4a;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 0px;
}

.checkout-with-gst {
  display: flex;
  align-items: center;
  gap: 30px;
}

.tax_amount_div.checkout-gst-txt h5 {
  color: #424242;
  font-size: 15px;
}

.order-dtl-cnt .container-fluid {
  padding: 0;
}

.order-dtl-field:last-child {
  margin-bottom: 0;
}

.order-cnt-field {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.order-cnt-field h5 {
  color: var(--black_one);
  font-size: 17px;
  margin-bottom: 5px;
}

.order-cnt-field h5 span {
  color: #807d7e;
}

.order-cnt-field:last-child h5,
.order-cnt-field:last-child h5 span {
  color: var(--black_one);
  font-weight: 600;
}

.order-dtl-cnt.order-dtl-cnt-sec {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.order-dtl-field {
  margin-bottom: 20px;
}

.order-dtl-field h5 {
  color: var(--black_one);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 5px;
}

.video-container {
  width: 100%;
  height: 800px;
  /*border-radius: 20px;*/
  cursor: pointer;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 8px 20px rgba(black, 0.4);

  .video-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  video {
    width: 100%;
    height: 100%;
    /*border-radius: 20px;*/
  }
}

.play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  pointer-events: none;

  #circle-play-b {
    cursor: pointer;
    pointer-events: auto;

    svg {
      width: 100px;
      height: 100px;
      fill: #fff;
      stroke: #fff;
      cursor: pointer;
      background-color: rgba(black, 0.2);
      border-radius: 50%;
      opacity: 0.9;
    }
  }
}

.form-select.from-dropdown-field {
  height: 50px;
}

.right-product-detail-main-div {
  margin-top: 30px;
}

.profile-card-space {
  margin-bottom: 20px;
}

.profile-card-space:last-child {
  margin-bottom: 0px;
}

.update_cart_btn {
  margin-bottom: 10px;
}

.accordion-body.accordion-body-parent {
  padding-left: 20px;
}

.delight_right img {
  width: 100%;
}

.create-img img {
  width: 80%;
}

.customer_order_list_tbl tr td {
  min-width: 160px;
}
.filter_product_name {
  height: 40px;
}

.search_product_btn {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.product-info-new-btn {
  justify-content: right;
}

.video-playbtn h6 {
  bottom: 10px;
}
.video_image.video-thumb-img-main figure {
  margin: 0;
}
.video-thumb-img-main {
  margin-bottom: 15px;
}
.video-playbtn h6 {
  bottom: 10px;
}

.profile_wishlist_right {
  flex-basis: 20%;
}
.profile_wishlist_img {
  flex-basis: unset;
}
.profile_wishlist_img img {
  width: 160px;
}
.profile_wishlist_img_title {
  flex-basis: 100%;
}

.guarantee_card-img {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact_form .tandc-head {
  text-align: left;
}
.contact_map {
  margin-top: 30px;
}

.contact_form .custom-checkbox [type="checkbox"]:not(:checked) + label:before,
.custom-checkbox [type="checkbox"]:checked + label:before,
.contact_form .custom-checkbox [type="checkbox"]:not(:checked) + label:after,
.custom-checkbox [type="checkbox"]:checked + label:after {
  top: 0;
}

.contact_add ul li {
  display: inline-block;
  position: relative;
  margin-right: 50px;
}
.contact_add ul li:last-child {
  margin-right: 0px;
}

.contact_add ul li svg {
  position: absolute;
  left: 0px;
}

.contact_add ul li .contact_add_info {
  padding-left: 40px;
}
.contact_add ul li .contact_add_info p {
  margin-bottom: 0px;
  font-size: 16px;
  color: var(--black_one);
  font-weight: 600;
}

.contact_add ul li .contact_add_info a {
  color: var(--main);
}
.contact_main {
  padding-bottom: 70px;
}

.contact_map iframe {
  height: 670px;
}
