/* =========== common css =========== */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  line-height: normal;
}

:root {
  --white-color: #ffffff;
  --border-color: #00000024;
  --border-color2: #D4D4D4;
  --gray-color2: #f0f0f0;
  --text-gray-color: #606060;
  --secondary-color: #333333;
  --transition: all 0.3s ease 0s;
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #a7a7a7;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
}

body {
  font-family: 'Poppins' !important;
  font-size: 16px;
  font-weight: 300;
  overflow-y: auto;
  overflow-x: hidden;
  color: var(--secondary-color);
  position: relative;
  scroll-behavior: smooth;
}

.font_poppins {
  font-family: 'Poppins' !important;
}

.font_lora {
  font-family: 'Lora' !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lora';
}

.w-maxcontent {
  width: max-content !important;
}

.fs-10 {
  font-size: 10px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.primary_btn,
.primary__btn {
  border-radius: 0px !important;
  border: 1px solid var(--secondary-color) !important;
  font-family: 'Lora';
  font-size: 14px;
  padding: 0.375rem 0.75rem;
  width: 222px;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.primary_btn:active,
.primary_btn:hover,
.primary__btn:active,
.primary__btn:hover {
  border: 1px solid var(--secondary-color) !important;
}

.primary_btn::after,
.primary__btn::after {
  content: '';
  position: absolute;
  transform: translateX(-50%);
  bottom: 0;
  left: 50%;
  height: 4px;
  background: var(--secondary-color);
  width: 0%;
  opacity: 0;
  transition: all 0.3s ease;
}

.primary_btn:hover::after,
.primary__btn:hover::after {
  width: 100%;
  opacity: 1;
}

.primary_btn:active,
.primary__btn:active {
  top: 2px;
}

.common_section {
  padding: 80px 0;
}

.section_heading {
  font-size: 28px;
}

.section_para {
  line-height: 28px;
}

.fs-12.section_para {
  line-height: 25px;
}

.fs-13.section_para {
  line-height: 25px;
}

.bg_theme {
  background: #F6E5D8 !important;
}

.border_theme {
  border-color: var(--secondary-color) !important;
}

/* =========== common css end =========== */

/* =========== header css start =========== */
header {
  background: #F6E5D8;
  padding: 26px 0px 14px;
  font-family: 'Lora';
  position: fixed;
  top: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 998;
  min-height: 204px;
  /* max-height: 204px; */
}

header.scroll_header {
  /* max-height: 75px; */
  min-height: 75px;
  /* padding: 20px 0px 14px; */
  padding: 14px 0px;
}
header.scroll_header .top_navbar {
  transition: all 0.4s ease-in-out;
  padding-bottom: 0px !important;
}
.bottom_navbar,
.middle_navbar {
  transition: all 0.4s ease-in-out;
}

header.scroll_header .bottom_navbar,
header.scroll_header .middle_navbar {
  opacity: 0;
  visibility: hidden;
}

#header_toggle_btn {
  transition: all 0.4s ease;
  display: none;
}

.header_wrapper {
  overflow: hidden;
  height: 100px;
  transition: all 0.4s ease-in-out;
}

.scroll_header .header_wrapper {
  height: 0px;
  overflow: hidden;
}

.hover_dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100%;
  background: #fff;
  z-index: -99;
  transform: translate(-50%, 40px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  padding: 25px 0;
}

.header_navbar>li {
  padding-bottom: 26px;
  margin-top: 1rem;
}

.header_navbar li:active>.hover_dropdown,
.header_navbar li:hover>.hover_dropdown {
  opacity: 1;
  z-index: 1;
  visibility: visible;
  transform: translate(-50%, 0%);
}

.dropdown_main_heading {
  font-weight: 400;
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 10px;
  width: max-content;
  margin-bottom: 14px;
}

.dropdown_links_ul {
  font-family: 'Poppins';
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dropdown_links_ul li>a:hover {
  color: #bc6a2b;
}

.responsive_sidebar .header_navbar li>a {
  box-shadow: none;
  outline: none !important;
  background: transparent !important;
  padding: 0 !important;
  color: var(--secondary-color) !important;
}

.responsive_sidebar .header_navbar li>a.accordion-button::after {
  background-size: contain;
  width: 12px;
  height: 12px;
}

.responsive_sidebar .accordion-body {
  padding: 16px 0px 0px 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.open_header #header_toggle_btn {
  display: block;
}

.primary_path,
.secondary_path,
.tertiary_path {
  transition: all 0.4s ease;
}

.primary_path {
  transform-origin: 3px 11px;
}

.tertiary_path {
  transform-origin: 4px 23px;
}

.header_hr {
  top: 50%;
  width: 100%;
  margin: 0;
  z-index: 0;
  color: var(--secondary-color);
  opacity: 1;
}

.header_logo_div {
  background: #F6E5D8;
  position: relative;
  z-index: 1;
  padding: 0 18px;
}

.header_navbar {
  gap: 60px;
}

.nav_link {
  font-size: 14px;
  position: relative;
}

.nav_link::after {
  content: '';
  position: absolute;
  transform: translateX(-50%);
  width: 0%;
  height: 1px;
  background: var(--secondary-color);
  left: 50%;
  bottom: -6px;
  transition: all 0.3s ease;
}

.bottom_navbar .header_navbar li:hover .nav_link::after,
.nav_link:hover::after,
.nav_link.active::after {
  width: 100%;
}

header h1 {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 3px;
  transition: all 0.4s ease-in-out;
}

header.scroll_header h1 {
  font-size: 30px;
}

.top_navbar .profile_dropdown .dropdown-toggle::after {
  display: none;
}

.profile_dropdown:hover .dropdown-menu {
  position: absolute;
  display: block;
}

.profile_dropdown .dropdown-menu {
  border-radius: 0px;
  border: none;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 5px 8px 1px;
  width: 180px !important;
  min-width: unset;
  padding: 12px;
  font-size: 14px;
  padding-top: 0;
  transform: none !important;
  top: 38px !important;
  left: unset !important;
  right: -20px !important;
}

.profile_dropdown .dropdown-menu.show {
  transform: none !important;
  top: 38px !important;
  left: unset !important;
  right: -20px !important;
}

.profile_dropdown .dropdown-menu::after {
  position: absolute;
  content: '';
  background: #fff;
  width: 12px;
  height: 12px;
  bottom: 100%;
  right: 28px;
  clip-path: polygon(50% 30%, 0% 100%, 100% 100%);
  z-index: 2;
}

.profile_dropdown .dropdown-menu::before {
  position: absolute;
  content: '';
  background: transparent;
  width: 100%;
  bottom: 100%;
  left: 0;
  height: 12px;
  z-index: 3;
}

.profile_dropdown .dropdown-item {
  width: max-content;
  padding: 0;
  margin: 16px 0px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile_dropdown .dropdown-item:focus svg path,
.profile_dropdown .dropdown-item:hover svg path {
  transition: all 0.2s ease;
}

.profile_dropdown .dropdown-item:focus svg.profile_svg path,
.profile_dropdown .dropdown-item:hover svg.profile_svg path {
  stroke: #bc6a2b;
}

.profile_dropdown .dropdown-item:focus svg path,
.profile_dropdown .dropdown-item:hover svg path {
  fill: #bc6a2b;
}

.profile_dropdown .dropdown-item:focus,
.profile_dropdown .dropdown-item:hover {
  background-color: transparent;
  color: #bc6a2b;
}

.profile_dropdown .primary_btn {
  background: var(--secondary-color);
  color: #fff;
  padding: 6px 20px;
}

.profile_dropdown .primary_btn::after {
  display: none;
}

.profile_dropdown .primary_btn:hover {
  background: #000;
  color: #fff;
}

#header_search {
  min-height: 230px;
  height: 230px;
  padding: 20px;
}

.header_search_input_div {
  display: flex;
  border-bottom: 1px solid var(--secondary-color);
}

.header_search_input_div input {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 34px;
  border-radius: 0px !important;
}

.header_search_input_div button {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0px !important;
  opacity: 0.5;
  transition: all 0.2s ease;
  padding: 0;
  margin: 10px;
}

.header_search_input_div button:hover {
  opacity: 1;
}

#cart_offcanvas {
  width: 500px;
}

#cart_offcanvas .nav-pills {
  border-bottom: 2px solid var(--border-color2);
}

#cart_offcanvas .nav-pills li {
  width: 50%;
  position: relative;
}

#cart_offcanvas .nav-pills li button {
  padding: 0px 0 12px;
  background: transparent !important;
  border-radius: 0px !important;
  color: var(--border-color2) !important;
  margin: 0 auto;
  transition: all 0.3s ease;
}

#cart_offcanvas .nav-pills li button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: transparent;
  border-radius: 0;
  bottom: -2px;
  left: 0;
}

#cart_offcanvas .nav-pills li button.active::after {
  background: var(--secondary-color);
}

#cart_offcanvas .nav-pills li button.active {
  color: var(--secondary-color) !important;
}

.sidebarcheckbox .form-check-input[type=checkbox]:checked::after {
  content: '';
  display: block;
  position: absolute;
  top: 1px;
  left: 5px;
  width: 4px;
  height: 10px;
  border: solid var(--secondary-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.sidebarcheckbox .form-check-input[type=checkbox] {
  border-radius: 0;
  border-color: var(--secondary-color) !important;
  background: transparent;
  width: 16px;
  height: 16px;
  position: relative;
  box-shadow: none !important;
  outline: none !important;
  cursor: pointer;
  margin-bottom: 2px;
}

.sidebarcheckbox label {
  cursor: pointer;
}

.bag_list_img_div {
  border: 1px solid var(--border-color2) !important;
  background: #FAFAFA;
  min-width: 100px;
  max-width: 100px;
  min-height: 100px;
  max-height: 100px;
}

.bag_list_img_div img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-fit: contain;
}

.bag_list_ul .product_name h3 {
  font-size: 13px;
}

.bag_item_qty_div {
  display: flex;
  border: 1px solid var(--border-color2);
  max-width: 100px;
  align-items: center;
  /* padding: 2px 6px; */
  background: #fff;
}

.bag_item_qty_div .btn {
  border: none !important;
  border-radius: 0 !important;
  color: var(--secondary-color);
  padding: 0;
  font-size: 18px;
  line-height: 0;
}

.bag_item_qty_div .form-control {
  border: none !important;
  border-radius: 0 !important;
  color: var(--secondary-color);
  padding: 0;
  width: 20px;
  box-shadow: none !important;
  outline: none !important;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

.bag_item_details {
  font-size: 11px;
}

.bag_list_ul li {
  position: relative;
  transition: all 0.3s ease;
}

.bag_list_ul li>div {
  position: relative;
}

.bag_list_ul li>div::after {
  position: absolute;
  content: '';
  width: 100%;
  bottom: -17px;
  left: 0;
  background: var(--border-color2);
  height: 1px;
}

.bag_list_ul li:hover {
  background: #F6E5D8;
}

.bag_item_remove_btn {
  position: relative;
  font-size: 12px;
}

.bag_item_remove_btn::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background: var(--secondary-color);
  transition: all 0.3s ease;
}

.bag_item_remove_btn:hover {
  color: #bc6a2b;
}

.bag_item_remove_btn:hover::after {
  background: #bc6a2b;
}

#cart_offcanvas .border-top {
  border-color: var(--secondary-color) !important;
}

#cart_offcanvas .tab-content>.active {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: calc(100vh - 104px);
}

.sidebar_btn.checkout_btn {
  background: var(--secondary-color);
  color: #fff;
}

.sidebar_btn.checkout_btn:hover {
  background: #000 !important;
}

.sidebar_btn.checkout_btn::after {
  display: none !important;
}

.bag_item_total_price {
  font-size: 13px;
}

.may_also_like_slider .swiper-slide {
  border: 1px solid var(--border-color2);
  overflow: hidden;
  min-height: 95.5px;
}

.may_also_like_slider .btn {
  font-size: 11px;
  padding: 2px 12px;
}

.may_also_like_slider .btn::after {
  height: 2.5px;
}

.may_also_like_slider h6 {
  font-size: 12px;
  margin-bottom: 5px;
}

.may_also_like_slider .product_desc {
  font-size: 11px;
}

.assistant_btn {
  border: 1px solid var(--secondary-color);
  padding: 2px 6px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
}

.assistant_btn:active {
  top: 1px;
}

.assistant_btn:hover {
  width: 125px;
}

.responsive_sidebar {
  display: none;
}

/* =========== header css end =========== */

/* =========== banner css start =========== */
.main_section,
main {
  margin-top: 204px;
  transition: all 0.4s ease-in-out;
}

.closed .main_section,
.closed main {
  margin-top: 75px;
}

.banner_section {
  min-height: 100vh;
  padding: 6rem 0 4rem;
  background: url('../images/banner_img.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  position: relative;
}

/* =========== banner css end =========== */

/* =========== exclusive collection section css start =========== */
.slider_1 {
  margin-left: 62px;
  padding-right: 78px;
  padding-left: 16px;
  max-width: 1642px;
}

.swiper_btn {
  position: static !important;
  width: 42px;
  height: 26px;
  display: block !important;
  margin: 0 !important;
}

.swiper_btn::after {
  display: none !important;
}

.swiper-button-prev {
  background: url('../images/left_arrow_icon.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.swiper-button-next {
  background: url('../images/right_arrow_icon.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.slider_1 .slider_img_div {
  border: 1px solid var(--border-color2);
  background: #FAFAFA;
  border-radius: 0px;
  overflow: hidden;
  height: 100%;
  width: 100%;
  min-height: 364px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  max-height: 357px;
}

.slider_1 .slider_img_div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider_1 .exclusive_product_name {
  font-size: 19px;
  font-weight: 400;
  text-align: center;
  margin-top: 25px;
}

.slider_1 .slider_img_div:hover {
  scale: 1.05;
}

/* =========== exclusive collection section css end =========== */

/* =========== discover latest section css start =========== */
.discover_latest_section {
  background: #FAFAFA;
  padding-bottom: 16px;
}

.discover_slider .slick-list {
  padding-bottom: 20px;
  margin-right: -78px;
}

.discover_slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discover_slider .slide {
  overflow: hidden;
  padding: 0 12px;
}

.slider_count_divider {
  font-size: 50px;
  font-weight: 100;
  transform: rotate(-45deg);
  display: inline-block;
  color: var(--border-color2);
}

.discover_slider .total {
  color: var(--border-color2);
}

.discover_slider .slider-progress {
  max-width: 400px;
  width: 400px;
  background: var(--border-color2);
  height: 2.5px;
  overflow: hidden;
}

.discover_slider .progress {
  background: var(--secondary-color);
  border-radius: 0;
}

/* =========== discover latest section css end =========== */

/* =========== our most loved section css start =========== */
.our_loved_pieces_slider {
  padding-bottom: 80px;
}

.our_loved_pieces_slider.slider_1 .slider_img_div:hover {
  scale: 1;
}

.our_loved_pieces_slider.slider_1 .slider_img_div {
  border-color: transparent;
  position: relative;
  overflow: unset;
}

.our_loved_pieces_slider .slider_card_hover_div {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  /* background: #FAFAFA; */
  background: linear-gradient(#00000000 50%, #fafafa);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  font-family: 'Lora';
  font-size: 18px;
  display: flex;
  justify-content: end;
  flex-direction: column;
}

.our_loved_pieces_slider .slider_card_hover_div .img_div {
  /* min-height: 320px; */
  display: flex;
  justify-content: center;
  align-items: end;
  padding: 16px;
  position: relative;
}

.our_loved_pieces_slider .slider_card_hover_div .img_div .btn {
  width: 100%;
  font-size: 16px;
  padding: 12px 30px;
  background: #FFFFFF4D;
}

/* .our_loved_pieces_slider .slider_card_hover_div .img_div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.our_loved_pieces_slider.slider_1 .slider_img_div:hover .slider_card_hover_div {
  opacity: 1;
  visibility: visible;
  border-color: var(--border-color2);
}

.our_loved_pieces_slider .slider_card_hover_div .description_div {
  padding: 16px;
}

.color_ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding-top: 12px;
  align-items: center;
  font-size: 15px;
}

.color_ul li .color_div {
  max-width: 15px;
  min-width: 15px;
  min-height: 15px;
  max-height: 15px;
  display: block;
  cursor: pointer;
  position: relative;
  z-index: 3;
}

/* =========== our most loved section css end =========== */

/* =========== make it yours section css start =========== */
.make_it_yours_section .container-fluid {
  min-height: 100vh;
}

.make_it_yours_section .section_img {
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  object-fit: cover;
}

/* =========== make it yours section css end =========== */

/* =========== our story section css start =========== */
.our_story_section .container-fluid {
  min-height: 100vh;
}

.our_story_section .section_img {
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  object-fit: cover;
}

/* =========== our story section css end =========== */

/* =========== jewelry inspiration section css start =========== */
.jewelry_inspiration_section {
  background: #FAFAFA;
  padding: 45px 0;
}

.jewelry_inspiration_section h3 {
  font-size: 18px;
  font-weight: 400;
}

.jewelry_inspiration_section img {
  transition: all 0.3s ease;
}

.jewelry_inspiration_section img:hover {
  scale: 1.05;
}

/* =========== jewelry inspiration section css end =========== */

/* =========== instagram pics section css start =========== */
.insta_link:hover,
.insta_link:active {
  color: #bc6a2b;
}

.insta_img_card {
  border-radius: 0;
  border: none !important;
  padding: 0 !important;
  overflow: hidden;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.insta_img_card:hover {
  scale: 1.03;
  z-index: 9;
}

.insta_handle {
  position: absolute;
  color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  align-items: end;
  background: linear-gradient(#ffffff00 65%, #00000080 80%);
  font-family: 'Lora';
  font-weight: lighter;
  transition: all 0.2s ease-in-out;
}

.sub_card .insta_handle {
  padding: 20px;
  font-size: 14px;
}

/* =========== instagram pics section css end =========== */

/* =========== footer section css start =========== */
footer {
  font-size: 12px;
}

.bottom_footer_section {
  background: #F6E5D8;
  padding: 16px 0;
  font-size: 12px;
  font-family: 'Lora';
  margin-top: 4rem;
}

.social_links a {
  border-radius: 100%;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  font-size: 13px;
  min-width: 22px;
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.terms_ul li a:hover {
  color: #bc6a2b;
}

.social_links a:hover {
  color: #bc6a2b;
  border-color: #bc6a2b;
}

.footer_logo_text {
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 3px;
}

.footer_links_heading {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 16px;
}

.footer_links_ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer_links_ul li a {
  position: relative;
  width: max-content;
}

.footer_links_ul li a::after {
  position: absolute;
  content: '';
  width: 0%;
  height: 1px;
  left: 50%;
  bottom: -5px;
  background: var(--secondary-color);
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.footer_links_ul li a:hover::after {
  width: 100%;
}

.footer_main_input input
/* ,.shop_page select */
 {
  border: none;
  width: 100%;
  border-bottom: 1px solid var(--secondary-color) !important;
  border-radius: 0px !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0px 0 10px;
  font-size: 12px;
}

.footer_main_input input::placeholder {
  font-weight: 300;
}

.terms_link:hover {
  color: #bc6a2b;
}

/* =========== footer section css end =========== */

/* =========== category page css start =========== */
.navigation_ul {
  display: flex;
  gap: 10px;
  font-size: 11px;
  font-family: 'Lora';
  padding: 18px 0;
}

.product_card {
  border-radius: 0px !important;
  border: 1px solid var(--border-color2);
  height: 100%;
  background: #FAFAFA;
  color: var(--secondary-color) !important;
  position: relative;
  cursor: pointer;
  max-height: 357px;
}

.product_card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.filter_btn_div .dropdown-toggle::after {
  background: url('../images/down_arrow.png');
  background-size: contain;
  background-position: center;
  border: none;
  width: 14px;
  height: 14px;
  transform: translateY(50%);
  opacity: 1;
  top: 50%;
  background-repeat: no-repeat;
}

.filter_btn_div .accordion-collapse {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 3;
  background: #fff;
  border-block: 1px solid #dee2e6;
}

.filter_btn_div .accordion-item {
  border: none !important;
}

.filter_btn_div .accordion-button {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--secondary-color) !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  gap: 6px;
  line-height: 1.5;
}

#filter_btn {
  padding: 8px 12px;
}

.filter_btn_div .accordion-button::after {
  width: 12px;
  height: 12px;
  background-size: contain;
}

.product_hover_div {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 25px;
  font-family: 'Lora';
  display: flex;
  justify-content: end;
  flex-direction: column;
  font-size: 18px;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  background: linear-gradient(#00000000 50%, #fafafa);
}

.product_hover_div .nav_anchor {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.product_hover_div .btn {
  width: 100%;
  font-size: 16px;
  padding: 8px 30px;
  background: #FFFFFFB2;
  position: relative;
  z-index: 2;
}

.product_card:hover .product_hover_div {
  visibility: visible;
  opacity: 1;
}

.sort_dropdown .dropdown-menu .dropdown-item:hover,
.sort_dropdown .dropdown-menu .dropdown-item:active {
  background: transparent;
  color: var(--secondary-color);
}

.sort_dropdown .dropdown-menu .dropdown-item {
  background: transparent;
  color: var(--secondary-color);
  position: relative;
  padding: 0;
  padding-left: 30px;
  cursor: pointer;
}

.filter_label {
  position: relative;
  width: max-content;
  padding-left: 28px;
  margin: 10px;
  cursor: pointer;
}

.sort_dropdown .dropdown-menu li {
  padding: 8px;
}

.sort_dropdown .dropdown-menu {
  border-radius: 0;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 12px;
}

.sort_ul li label::after,
.filter_label::after {
  position: absolute;
  content: '';
  top: 1px;
  left: 0px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--secondary-color);
}

.sort_ul li label::before,
.filter_label::before {
  position: absolute;
  content: '';
  top: 3px;
  left: 2px;
  width: 14px;
  height: 14px;
  background: var(--secondary-color);
  transition: all 0.3s ease-in-out;
  scale: 0;
}

.sort_ul .form-check-label:has(input:checked)::before,
.filter_label:has(input:checked)::before {
  scale: 1;
}

.sort_ul li input,
.filter_label .form-check-input {
  display: none;
}

.apply_fiter_btn {
  background: var(--secondary-color);
  color: #fff;
  padding: 6px 10px;
  width: 150px;
}

.apply_fiter_btn::after {
  display: none;
}

.apply_fiter_btn:active,
.apply_fiter_btn:hover {
  background: #000;
  color: #fff;
}

.clear_all_btn {
  color: #9f9f9f;
}

.clear_all_btn:hover {
  color: var(--secondary-color);
}

.collapsed_filter {
  display: none !important;
}

#filter_offcanvas {
  z-index: 999999999;
  border: none;
}

#filter_offcanvas .btn-close {
  transform: translateY(-50%);
  left: 12px;
  top: 50%;
}

/* =========== category page css end =========== */

/* =========== shop page css start =========== */
.sticky_content_div {
  position: sticky;
  top: 120px;
}

.shop_section .product_card {
  cursor: unset;
}

.shop_section .product_card a {
  width: max-content;
  position: absolute;
  right: 20px;
  top: 20px;
}

.shop_section .product_card a svg path {
  transition: all 0.3s ease;
}

.shop_section .product_card a:hover svg path {
  stroke: var(--secondary-color);
}

.shop_section .product_name_1 {
  font-size: 24px;
  font-weight: 400;
}

.product_decs_read_more_btn {
  font-family: 'Lora';
  font-weight: 400;
  font-size: 14px;
  border-bottom: 1px solid var(--secondary-color);
}

.product_decs_read_more_btn:hover {
  color: #bc6a2b;
  border-color: #bc6a2b;
}

.reviews_count {
  border-color: var(--secondary-color) !important;
}

.shop_section_ul>li {
  border-bottom: 1px solid var(--border-color2);
  padding: 18px 0;
}

.shop_section .color_ul li {
  padding: 2px;
  border: 1px solid var(--secondary-color);
}

.shop_section .color_ul li .color_div,
.shop_section .colors_s {
  max-width: 20px;
  min-width: 20px;
  min-height: 20px;
  max-height: 20px;
}

.shop_section .accordion-button:not(.collapsed) {
  color: var(--secondary-color) !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

.select_size_ul li label,
.select_size_ul ._select_size {
  padding: 10px;
  border: 1px solid var(--border-color2);
  min-width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.select_size_ul li label input {
  display: none;
}

.select_size_ul li label:hover,
.select_size_ul .form-check-label:has(input:checked) {
  border-color: var(--secondary-color);
}

.add_to_wishlist_btn {
  padding: 0;
  display: flex;
  align-items: center;
  width: 45px;
  height: 34.6px;
  justify-content: center;
}

.add_to_wishlist_btn::after {
  display: none;
}

.shop_section_btn_div .btn,
.black_btn {
  background: var(--secondary-color) !important;
  color: #fff !important;
  padding: 0.375rem 0.75rem;
}

.shop_section_btn_div .btn:hover,
.black_btn:hover {
  background: #000 !important;
}

.shop_section_btn_div .btn::after,
.black_btn::after {
  display: none !important;
}

.shop_section_btn_div .btn:disabled,
.black_btn:disabled {
  background: var(--border-color2) !important;
  cursor: not-allowed;
  color: var(--secondary-color) !important;
}

.shop_page_slider .swiper-pagination {
  top: unset;
  bottom: 0;
}

.shop_page_slider .swiper-pagination-bullet-active {
  background: var(--secondary-color);
}

.fancybox-container {
  z-index: 99999999999;
}


.widget__categories--menu__list {
  border: 1px solid var(--border-color);
  margin-bottom: 10px;
  border-radius: 5px;
  position: relative;
}

.widget__categories--menu__list.active {
  margin-bottom: 16px;
  padding-bottom: 15px;
}

.widget__categories--menu__list.active:last-child {
  margin-bottom: 0;
}

.widget__categories--menu__list.active .widget__categories--menu__arrowdown--icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  top: 38%;
}

.widget__categories--menu__list .widget__categories--sub__menu {
  padding: 0px !important;
}

.widget__categories--menu__list .widget__categories--sub__menu .widget__categories--menu__list {
  margin: 10px 15px !important;
}

.widget__categories--menu__list .widget__categories--sub__menu:last-child {
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
}

.widget__categories--menu__list .widget__categories--sub__menu .widget__categories--menu__list:last-child {
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
}

.widget__categories--menu__label {
  cursor: pointer;
  background: var(--white-color);
  padding: 5px 10px;
  border-radius: 5px;
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.widget__categories--menu__label>* {
  pointer-events: none;
}

.widget__categories--menu__label:hover {
  color: var(--primary-color);
}

.widget__categories--menu__text {
  padding-left: 10px;
  left: 40px !important;
  top: 11px !important;
  position: absolute;
  z-index: 1;
}

.widget__categories--menu__img {
  width: 30px;
}

.widget__categories--menu__arrowdown--icon {
  position: absolute;
  right: 16px;
  top: 43%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.widget__categories--sub__menu {
  display: none;
  padding: 15px 20px 5px;
  border-top: 1px solid var(--border-color);
}


.inn .widget__categories--sub__menu--list:first-child {
  margin-top: 8px;
}

.inn {
  padding-bottom: 0 !important;
}

.widget__categories--sub__menu--list {
  margin-bottom: 8px;
  padding: 0 10px 8px;
  border-bottom: 1px solid var(--border-color);
}

.widget__categories--sub__menu--list:last-child {
  margin-bottom: 0;
  /* padding-bottom: 0; */
  border-bottom: 0;
}

.widget__categories--sub__menu--img {
  width: 28px;
}

.widget__categories--sub__menu--text {
  padding-left: 10px;
  line-height: 28px;
}

.widget__categories--menu__list.inn.active .widget__categories--menu__arrowdown--iconn {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  top: 38%;
  transition: var(--transition);
  /* display: block; */
}

.product__items--grid {
  background: var(--white-color);
  -webkit-box-shadow: 1px 0 72px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 0 72px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

@media only screen and (min-width: 1600px) {
  .product__items--grid {
    margin-bottom: 25px;
  }
}

.product__items--grid:last-child {
  margin-bottom: 0;
}

.product__items--grid__thumbnail {
  overflow: hidden;
  line-height: 1;
  width: 80px;
}

@media only screen and (min-width: 1366px) {
  .product__items--grid__thumbnail {
    width: 90px;
  }
}

.product__items--link {
  display: block;
}

@media only screen and (max-width: 991px) {
  .product__items--link {
    width: 100%;
  }
}

.product__items--grid__content {
  padding: 2px 10px 2px 15px;
  width: calc(100% - 80px);
}

@media only screen and (min-width: 1366px) {
  .product__items--grid__content {
    padding: 8px 8px 8px 15px;
    width: calc(100% - 90px);
  }
}

@media only screen and (max-width: 400px) {
  .product__items--content__title {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 3px;
  }
}

.product__items--price {
  margin-bottom: 5px;
}

.product__items--price .current__price {
  font-weight: 500;
}

.product__items--img {
  display: block;
  width: 100%;
}

.shop_search {
  padding-right: 1.9rem !important;
}

/* =========== shop page css end =========== */

/* =========== shopping bag page css start =========== */
.check_out_section {
  background: #FAFAFA;
  height: 100vh;
  position: relative;
  overflow-x: hidden;
  overflow-y: scroll;
  padding-top: 75px;
}

.check_out_section::-webkit-scrollbar {
  visibility: hidden;
  display: none;
  width: 0px;
  height: 0px;
}

.checkout_page_nav_ul {
  position: sticky;
  top: 0px;
  background: #fafafa;
  z-index: 7;
  -webkit-box-shadow: 0px 12px 0px 0px #fafafa;
  -moz-box-shadow: 0px 12px 0px 0px #fafafa;
  box-shadow: 0px 12px 0px 0px #fafafa;
}

.checkout_page_nav_ul li {
  position: relative;
  width: 100%;
  text-align: center;
}

.checkout_page_nav_ul li::after {
  position: absolute;
  content: '';
  width: 0%;
  height: 2.5px;
  background: var(--secondary-color);
  bottom: -24px;
  transform: translateX(-50%);
  left: 50%;
  transition: all 0.3s ease;
}

.checkout_page_nav_ul li.active::after,
.checkout_page_nav_ul li:hover::after {
  width: 100%;
}

.order_summary {
  position: absolute;
  height: calc(100% - 96px);
  width: 500px;
  right: 0;
  top: 96px;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  border-left: 1px solid var(--border-color2);
  font-family: 'Lora';
}

.order_summary::-webkit-scrollbar {
  visibility: hidden;
  display: none;
}

.check_out_section .bag_list_img_div {
  min-width: 140px;
  max-width: 140px;
  min-height: 140px;
  max-height: 140px;
}

.check_out_section .product_card_header h6 {
  font-size: 19px;
  font-weight: 600;
  margin: 0;
}

.check_out_section .bag_item_details {
  font-size: 13px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.check_out_section .bag_item_remove_btn {
  font-size: 14px;
  font-family: 'Lora';
  font-weight: 600;
}

.check_out_section .bag_item_qty_div .btn {
  font-size: 28px;
  font-weight: 200;
  font-family: 'Lora';
}

.check_out_section .bag_item_qty_div {
  max-width: unset;
}

.check_out_section .bag_item_qty_div .form-control {
  width: 30px;
  font-size: 17px;
  line-height: 22px;
  font-family: 'Lora';
}

.checkout_products_ul li:last-of-type hr {
  display: none;
}

.product__thumbnail--quantity {
  position: absolute;
  top: -6px;
  right: -5px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background: #7f7f7f;
  color: var(--white-color);
  text-align: center;
  border-radius: 50%;
  font-size: 12px;
}

/* =========== shopping bag page css end =========== */

/* =========== personal details page css start =========== */
.personal_details_form {
  font-family: 'Lora';
  font-size: 13px;
}

.personal_details_form .form-select,
.personal_details_form .form-control, 
.newsletter__popup--subscribe__input {
  border-radius: 0px !important;
  border: 1px solid var(--border-color2) !important;
  background: #fff;
  box-shadow: none !important;
  outline: none !important;
  color: var(--secondary-color);
  /* padding: 0.8rem;
  font-size: 1.2rem; */
}

.personal_details_form .form-control::placeholder,
.newsletter__popup--subscribe__input::placeholder {
  color: var(--border-color2);
  font-size: 12px;
}

.personal_details_form .primary_btn,
.payment_tabs .primary_btn {
  width: 100%;
  background: var(--secondary-color);
  color: #fff;
}

.personal_details_form .primary_btn:hover,
.payment_tabs .primary_btn:hover {
  background: #000 !important;
}

.personal_details_form .primary_btn::after,
.payment_tabs .primary_btn::after {
  display: none !important;
}

.personal_details_form .form-label {
  margin-bottom: 0.8rem;
}

input[type=number] {
  appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.iti.iti--allow-dropdown.iti--separate-dial-code {
  width: 100%;
}

.address_type .form-check-input {
  box-shadow: none !important;
  float: none !important;
  margin: 0 !important;
  width: 14px;
  height: 14px;
}

.address_type .radio_outer_div {
  background: #f6e5d8;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.address_type .form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.address_type .form-check {
  margin: 0 !important;
  min-height: unset !important;
  line-height: normal !important;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.address_card {
  padding: 18px;
  border-radius: 0;
  border: none;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.saved_address_ul>li {
  border: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 20px;
  font-size: 14px;
  border-top: none;
  cursor: pointer;
}

.saved_address_ul>li:first-of-type {
  border-top: 1px solid #e0e0e0 !important;
}

.saved_address_ul .address_type {
  font-size: 12px;
  text-transform: uppercase;
  background: #d7d7d7;
  width: max-content;
  color: #525252;
  padding: 2px 6px;
  line-height: normal;
  font-weight: 600;
}

.saved_address_ul .dropdown-toggle::after,
.saved_address_ul .dropdown-toggle::before {
  display: none;
}

.saved_address_ul .dropdown-menu.show,
.saved_address_ul .dropdown-menu {
  transform: translate(0%, 0%) !important;
  right: 12px !important;
  top: 0;
  width: 90px;
  min-width: unset;
  border-radius: 0;
  font-size: 14px;
  color: #333;
}

.saved_address_ul .dropstart:hover .dropdown-menu {
  display: block;
}

.saved_address_ul .dropdown-menu>li a:hover {
  background: transparent !important;
  color: #bc6a2b;
}

/* =========== personal details page css end =========== */

/* =========== payment page css start =========== */
.payment_nav_pill .nav-link {
  background: transparent !important;
  color: var(--secondary-color) !important;
  display: flex;
  align-items: end;
  gap: 12px;
  border-radius: 0;
  padding: 0;
}

.payment_nav_pill .nav-link .check_box_div {
  width: 16px;
  height: 16px;
  position: relative;
  border: 1px solid var(--secondary-color);
}

.payment_nav_pill .nav-link .check_box_div::after {
  position: absolute;
  content: '';
  top: 1px;
  bottom: 1px;
  right: 1px;
  left: 1px;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  transform: scale(0);
}

.payment_nav_pill .nav-link.active .check_box_div::after {
  transform: scale(1);
}

.pay_btn {
  background: var(--secondary-color);
  color: #fff;
}

.pay_btn::after {
  display: none;
}

.pay_btn:hover {
  background: #000;
  color: #fff;
}

.checkout__contact--information2 {
  border: 1px solid var(--border-color2);
  padding: 15px 10px;
}

.checkout__review--content {
  margin-left: 10px;
}

@media only screen and (min-width: 576px) {
  .checkout__review--content {
    margin-left: 10px;
    font-weight: 500;
  }
}

@media only screen and (min-width: 768px) {
  .checkout__review--content {
    margin-left: 15px;
  }
}

.checkout__content--step__inner3 {
  border: 1px solid var(--border-color2);
}

.shipping__contact--box__list {
  display: table;
  padding: 15px 10px;
  border-bottom: 1px solid var(--border-color2);
  width: 100%;
}

.shipping__radio--label {
  font-size: small;
}

.shipping__contact--box__list.selected {
  background-color: #F6E5D8;
}

.checkout__content--input__box--wrapper {
  padding: 15px;
}

.mb-12 {
  margin-bottom: 10px;
}

.shipping__radio--label {
  width: 100%;
}

.billing_formd .form-control,
.billing_formd .custom-dropdown .selected,
.billing_formd .custom-dropdown .option,
.billing_formd .custom-dropdown .search-input
 {
  font-size: 13px;
  height: 37.6px;
}

.checkout__discount--code__input--field {
  font-size: 13px;
  height: 37.6px;
  border-radius: 0;
}

.checkout__discount--code__btn {
  height: 36.6px;
  width: 150px;
}

.checkout__submission--icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid #F6E5D8;
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
}

.checkout__header--style3 {
  padding-left: 55px;
}

.order__confirmed--area,
.customer__information--area {
  border: 1px solid var(--border-color2);
  padding: 15px;
}

/* =========== payment page css end =========== */

/* =========== orders page css start =========== */
.order_section {
  background: #FAFAFA;
  margin-top: 75px;
  padding: 35px 0;
  position: relative;
}

.order_outer_card {
  border: 1px solid var(--border-color);
  border-radius: 0;
  transition: all 0.3s ease;
  box-shadow: none;
  padding: 18px;
  flex-direction: row;
  align-items: center;
  gap: 8rem;
  position: relative;
}

.order_outer_card:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.order_filter_card {
  border: 1px solid var(--border-color);
  border-radius: 0;
  padding: 18px;
  position: sticky;
  top: 100px;
}

.order_filter_card label {
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}

.order_filter_card .form-check-input {
  box-shadow: none !important;
  border-color: var(--secondary-color) !important;
  border-radius: 0 !important;
  cursor: pointer;
}

.order_filter_card .form-check-input:checked {
  border-color: var(--secondary-color) !important;
  background-color: var(--secondary-color) !important;
}

.page_nav_ul {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.page_nav_ul li a:hover,
.page_nav_ul li a:active,
.page_nav_ul li a.active {
  color: #bc6a2b;
}

.order_outer_card .img_div {
  width: 120px;
  min-width: 120px;
  height: 120px;
  min-height: 120px;
  position: relative;
}

.order_outer_card .img_div img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  top: 0;
  left: 0;
}

.order_outer_card .product_details p {
  font-size: 14px;
  font-weight: 500;
  color: #6c6c6c;
  margin: 0;
}

.order_outer_card .product_price_div p {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.order_outer_card .order_status p::after {
  position: absolute;
  content: '';
  width: 12px;
  height: 12px;
  left: 0;
  top: 50%;
  border-radius: 100%;
  transform: translateY(-50%);
}

.order_outer_card .order_status p.deliverd::after {
  background: #26a541;
}

.order_outer_card .order_status p.refund::after {
  background: #ff9f00;
}

.order_outer_card .order_status p.cancelled::after {
  background: #ff6161;
}

.order_outer_card .order_status span {
  font-size: 13px;
  font-weight: 400;
}

.filter_card_btn {
  right: calc(100% + 1px);
  top: -1px;
  border-right: none !important;
  background: #f6e5d8;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 0px;
  border-top-left-radius: 100%;
  border-bottom-left-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  outline: none !important;
}

.filter_card_btn:hover,
.filter_card_btn:active {
  background: #f6e5d8;
  border: none !important;
}

.filter_card_responsive.show .filter_card_btn .filter_img {
  display: none !important;
}

.filter_card_responsive.show .filter_card_btn .close_img {
  display: block !important;
}

.my-order-custom-filter {
  background: #fff !important;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 4px 5px 4px 10px !important;
}

.my-order-custom-filter .custom-select {
  background: none !important;
  border: none !important;
  padding: 0px !important;
  margin: 0px !important;
  cursor: pointer;
}

/* =========== orders page css end =========== */

/* =========== order details page css start =========== */
.shipping_address_detail_div {
  max-width: 260px;
}

.order_total_amount_ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.order_total_amount_ul li {
  display: flex;
  justify-content: space-between;
  gap: 8rem;
}

.order_total_amount_ul li p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
}

.invoice_download {
  color: #bc6a2b;

  &:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
}

.order_details_card .img_div {
  width: 164px;
  min-width: 164px;
  height: 180px;
  min-height: 180px;
  position: relative;
  border: 1px solid var(--border-color);
}

.order_details_card .img_div img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.order_details_card .btn {
  font-size: 14px;
  padding: 6px 16px;
  background: #959595;
  width: unset;
  border-radius: 0;
  border: 1px solid #333;
  font-weight: 500;
  font-family: 'Poppins';
  text-transform: capitalize;
  line-height: normal;
}

.order_details_card .primary_btn {
  background: #fff;
}

.order_details_card .secondary_btn {
  background: #333;
  color: #fff;

  &:hover {
    background: #000;
    border-color: #000;
  }
}

.order_details_card .additional_links li a {
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #33333359;
  padding: 4px 12px;
  display: block;
  white-space: nowrap;
  text-align: center;

  &:hover {
    color: #fff;
    background: #333;
  }
}

/* =========== order details page css end =========== */

/* =========== preloader css =========== */

.ctn-preloader {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99999;
  pointer-events: none;
}

.ctn-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.ctn-preloader .animation-preloader .spinner {
  -webkit-animation: spinner 1s infinite linear;
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 4px solid #e9eaef;
  border-top-color: var(--secondary-color);
  height: 9em;
  width: 9em;
}

.spinner_img {
  top: 50%;
  border-radius: 100% !important;
  overflow: hidden;
  width: 8em;
  height: 8em;
  transform: translateY(-50%);
}

.ctn-preloader .animation-preloader .txt-loading {
  font-weight: 900;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #aaaaaa;
  font-size: 35px;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 5s infinite;
  color: #000000;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
  -webkit-animation: letters-loading 5s infinite;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
  color: rgba(0, 0, 0, 0.2);
  position: relative;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.ctn-preloader .loader-section {
  background: var(--white-color);
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.ctn-preloader .loader-section.section-left {
  left: 0;
}

.ctn-preloader .loader-section.section-right {
  right: 0;
}

.loaded .animation-preloader {
  opacity: 0;
  transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  -ms-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
}

.loaded .loader-section.section-left {
  -webkit-transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
  -webkit-transform: translateX(-101%);
  transform: translateX(-101%);
}

.loaded .loader-section.section-right {
  -webkit-transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
  -webkit-transform: translateX(101%);
  transform: translateX(101%);
}

/* Animación del preloader */
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

/* Animación de las letras cargando del preloader */
@-webkit-keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}

/* Tamaño de portatil hacia atras (portatil, tablet, celular) */
@media screen and (max-width: 767px) {

  /* Preloader */
  /* Spinner cargando */
  .ctn-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }

  .ctn-preloader .animation-preloader .spinner_img {
    width: 7em;
    height: 7em;
  }

  /* Texto cargando */
  .ctn-preloader .animation-preloader .txt-loading {
    font-size: 25px;
  }
}

@media screen and (max-width: 500px) {
  .ctn-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }

  .ctn-preloader .animation-preloader .spinner_img {
    width: 6em;
    height: 6em;
  }
}

/* =========== preloader css end =========== */

/* =========== whatsapp icon css =========== */

#whats_app_icon {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 111;
  transform: translateY(0);
  transition: bottom 0.3s ease-in-out;
}

/* =========== whatsapp icon css end =========== */

/* =========== other css =========== */
.color-span {
  height: 11px;
  width: 11px;
  display: inline-block;
}

.product-name {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /* max-height: 2em; */
  line-height: 1.5em;
  word-break: break-word;
}

.current__price {
  font-size: 15px;
  color: #212529;
  font-weight: bold;
}

.old__price {
  font-size: 15px;
  color: var(--text-gray-color);
  text-decoration: line-through;
}


.price__divided {
  width: 12px;
  height: 1px;
  background: var(--text-gray-color);
  vertical-align: middle;
  margin: 0 3px;
  display: inline-block;
}


.search-results {
  position: absolute;
  top: 104%;
  left: 0;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0px 4px 10px #0a0a0a;
  z-index: 10;
  color: var(--text-gray-color);
  text-align: left;
}

.search-results .result-item {
  padding: 8px 12px;
  border-bottom: 1px solid #8b8484ff;
  cursor: pointer;
}

.search-results .result-item:hover {
  background: #f9f9f9;
}

.search-results::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.product-tag {
  height: 20px;
  line-height: 20px;
  padding: 0 7px;
  font-weight: 300;
  background: var(--secondary-color);
  color: var(--white-color);
  border-radius: 6px 0 6px;
  font-size: 14px;
  position: absolute;
  top: 12px;
  right: 12px;
}

@media only screen and (min-width: 576px) {
  .product-tag {
    top: 20px;
    right: 20px;
  }
}

.view_pass {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

/* select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none !important;
  background-color: #fff;
  padding-right: 1rem;
} */

.position-unset {
  position: unset !important;
}

input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

span {
  display: inline-block;
}



.custom-dropdown {
  position: relative;
  width: 100%;
  cursor: pointer;
  user-select: none;
  font-size: 1rem;
}

.custom-dropdown .selected {
  padding: 12px;
  background: var(--white-color);
  border: 1px solid var(--border-color2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 37.6px;
  /* font-size: 1rem; */
}

.custom-dropdown .options {
  display: none;
  position: absolute;
  z-index: 99;
  background: white;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 5px;
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
}

.custom-dropdown.open .options {
  display: block;
}

.custom-dropdown .search-input {
  padding: 10px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #eee;
  outline: none;
  position: sticky;
  top: 0;
  margin: 3px;
  background: #e9e9e9;
}

.custom-dropdown .option-list .option {
  padding: 10px;
}

.custom-dropdown .option-list .option.selected {
  border: none;
  background-color: #e2364326;
}

.custom-dropdown .option-list .option:last-child {
  border-bottom: none;
}

.custom-dropdown .option-list .option:hover {
  background: #f1f1f1;
}

.custom-dropdown .dropdown-icon {
  font-size: 14px;
  color: #333;
}

.otpbox .inputs input {
  width: 45px;
  height: 45px;
  outline: none;
}

.otpbox .inputs input:focus {
  outline: none;
  border: 1px solid var(--secondary-color) !important;
  box-shadow: none;
}

.cursor-pointer {
  cursor: pointer;
}

label.error {
  color: red;
}

/* =========== other css end =========== */

/* =========== sidecart css =========== */

.minicart__product {
  margin-bottom: 17px;
}

.minicart__product--items img {
  height: 100%;
  object-fit: contain;
  max-width: 132px;
}

.minicart__product--items p {
  font-size: 13px;
}

.minicart__product--items {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border-color2);
  margin-bottom: 18px;
}

@media only screen and (min-width: 1600px) {
  .minicart__product--items {
    margin-top: 22px;
    padding-top: 22px;
  }
}

.minicart__product--remove {
  border: 0;
  padding: 0;
  background: none;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: 700;
  opacity: 0.7;
}

.minicart__product--remove:hover {
  color: var(--secondary-color);
}

.minicart__thumb {
  width: 100px;
  line-height: 1;
  overflow: hidden;
}

@media only screen and (min-width: 480px) {
  .minicart__thumb {
    width: 120px;
    height: 132px;
  }
}

.minicart__text {
  width: calc(100% - 100px);
  padding-left: 10px;
}

@media only screen and (min-width: 480px) {
  .minicart__text {
    width: calc(100% - 120px);
    padding-left: 13px;
  }
}

.minicart__subtitle {
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 2px;
}

@media only screen and (min-width: 480px) {
  .minicart__subtitle {
    font-size: 16px;
  }
}

.color__variant {
  opacity: 0.8;
  margin-bottom: 4px;
  line-height: 20px;
}

.minicart__price {
  margin-bottom: 9px;
}

.minicart__quantity {
  margin-right: 15px;
}

.quantity__box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.quantity__value {
  display: inline-block;
  border: 1px solid var(--border-color2);
  margin: 0px;
  width: 33px;
  height: 30px;
  text-align: center;
  padding: 0;
  background: var(--gray-color2);
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
}

.quantity__value:hover {
  background: var(--gray-color2);
}

.quantity__value.decrease {
  margin-right: -4px;
  border-radius: 13px 0 0 13px;
}

.quantity__value.increase {
  margin-left: -4px;
  border-radius: 0 13px 13px 0;
}

input.quantity__number {
  text-align: center;
  border: none;
  border-top: 1px solid var(--border-color2);
  border-bottom: 1px solid var(--border-color2);
  margin: 0px;
  width: 33px;
  height: 30px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.minicart__amount {
  padding: 13px 0;
  border-top: 1px solid var(--border-color2);
  border-bottom: 1px solid var(--border-color2);
}

.minicart__amount_list {
  margin-bottom: 10px;
}

.minicart__amount_list:last-child {
  margin-bottom: 0;
}

.minicart__conditions {
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (min-width: 1600px) {
  .minicart__conditions {
    padding: 20px 0;
  }
}

.minicart__conditions--input {
  vertical-align: middle;
  margin-right: 8px;
}

.minicart__conditions--label {
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-gray-color);
}

.minicart__conditions--link {
  color: var(--secondary-color);
  text-decoration: underline;
}

.minicart__conditions--link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.minicart__button--link {
  margin-right: 14px;
}

.minicart__button--link:last-child {
  margin-right: 0;
}

/* =========== sidecart css end =========== */

/* =========== pagination css =========== */


.page-item.active .page-link {
  background-color: var(--secondary-color);
  border: none;

}

.page-item:first-child .page-link {
  border-radius: 100% !important;
}

.page-item:last-child .page-link {
  border-radius: 100% !important;
}

a.page-link {
  border-radius: 100%;
  background-color: var(--white-color);
  color: var(--secondary-color);
  width: 35px;
  height: 35px;
  background-position: center;
  justify-items: center;
  align-items: center;
  display: flex;
  justify-content: center;
}

a.page-link:hover,
.page-link:focus {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border: none;
  box-shadow: none;
  outline: none;
}

li.page-item.pagination__list.prev {
  background-color: var(--white-color) !important;
  color: var(--secondary-color) !important;
}

.pagination__area {
  padding: 15px 20px;
  margin-top: 30px;
}

@media only screen and (min-width: 768px) {
  .pagination__area {
    margin-top: 50px;
  }
}

.pagination__list {
  margin-right: 8px;
}

.pagination__list:last-child {
  margin-right: 0;
}

@media only screen and (min-width: 768px) {
  .pagination__list {
    margin-right: 12px;
  }
}

.pagination__item {
  width: 35px;
  height: 35px;
  line-height: 33px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--border-color2);
  background: var(--white-color);
}

.pagination__item--current {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.pagination__item:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

@media only screen and (min-width: 768px) {
  .pagination__item {
    width: 40px;
    height: 40px;
    line-height: 38px;
  }
}

/* =========== pagination css end =========== */

/* =========== product detail css =========== */
.product__detail_class .gc-thumbs-area,
.product__detail_class .gc-thumbs-area ul {
  height: auto !important;
}

.product__detail_class .glass-case,
.product__detail_class .glass-case {
  width: 550px !important;
}

.product__detail_class .gc-thumbs-area img {
  height: 100% !important;
}

input[type="radio"]:checked+._select_size {
  color: var(--white-color);
  background: var(--secondary-color);
}

.w-max {
  width: max-content !important;
}

.w-max.active {
  color: var(--white-color);
  background: var(--secondary-color);
}

.social_share li {
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  cursor: pointer;
}

.social_share li:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.social_share li a {
  display: inline-block;
  height: 100%;
  width: 100%;
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  font-size: 1.5em;
  justify-content: space-around;
  padding: 0 .2em;
  text-align: center;
  width: 5em;
}

.star-rating input {
  display: none;
}

.star-rating label {
  color: #ccc;
  cursor: pointer;
}

.star-rating :checked~label {
  color: #f90;
}

.star-rating label:hover,
.star-rating label:hover~label {
  color: #ffc107;
}


@media only screen and (min-width: 992px) {
  .reviews__comment--reply__title {
    font-size: 24px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 575px) {
  .reviews__comment--reply__title {
    text-align: center;
  }
}

.reviews__comment--reply__textarea {
  width: 100%;
  height: 100px;
  resize: none;
  padding: 12px 16px;
  border: 1px solid var(--border-color2);
}

.review__emoji {
  border: 0.1px solid var(--border-color2) !important;
  padding: 4px 0px 4px 8px !important;
}

@media only screen and (min-width: 768px) {
  .reviews__comment--reply__textarea {
    height: 150px;
  }
}

@media only screen and (min-width: 992px) {
  .reviews__comment--reply__textarea {
    font-size: 16px;
  }
}

.reviews__comment--reply__textarea:focus {
  border-color: var(--primary-color);
}

.reviews__comment--reply__input {
  width: 100%;
  border: 1px solid var(--border-color);
  height: 50px;
  border-radius: 5px;
  padding: 0 16px;
}

@media only screen and (min-width: 992px) {
  .reviews__comment--reply__input {
    font-size: 16px;
  }
}

.reviews__comment--reply__input:focus {
  border-color: var(--secondary-color);
}

.reviews__comment--btn {
  font-size: 16px;
  margin-top: 10px;
}

.reviews__comment--reply__area {
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 18px;

}

.product_review_old {
  line-height: normal;
  display: inline-block;
  color: #fff;
  padding: 2px 4px 2px 6px;
  border-radius: 3px;
  font-weight: 500;
  font-size: 12px;
  vertical-align: middle;
  background-color: #388e3c;
}

.coupon-available {
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 15px;
  margin-bottom: 8px;
  font-size: 14px;
}

/* =========== product detail css end =========== */

/*============== customer reviews css ==============*/
.progressbar_wrap .progressbar_box:not(:last-child) {
  margin-bottom: 15px;
}

.progressbar_wrap .progressbar_box:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}

.progressbar_box .progress-bar {
  background-color: var(--secondary-color);
}

.progress-value {
  min-width: 35px;
}

.customer_reviews {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 22px;
}

.actions__newreviews--btn {
  top: 1px;
  bottom: unset;
}

.progressbar_wrap p,
.reviews__comment--content__desc,
.customer_reviews p {
  color: var(--text_color);
}

.product_product_img_box {
  margin-top: 12px;
}

.product_product_img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
}

.product_product_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}


.reviews__comment--list {
  border-bottom: 1px solid var(--border-color2);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.reviews__comment--list:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .reviews__comment--list {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 575px) {
  .reviews__comment--list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    /* -ms-flex-direction: column;
    flex-direction: column; */
  }
}

.reviews__comment--list.margin__left {
  margin-left: 30px;
}

@media only screen and (min-width: 992px) {
  .reviews__comment--list.margin__left {
    margin-left: 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .reviews__comment--list.margin__left.style2 {
    margin-left: 0;
  }
}

.reviews__comment--thumb {
  width: 100px;
}

.reviews__comment--thumb img {
  width: 100%;
}

@media only screen and (max-width: 575px) {
  .reviews__comment--thumb {
    margin-bottom: 15px;
  }
}

.reviews__comment--content {
  width: 100%;
  position: relative;
}

@media only screen and (min-width: 576px) {
  .reviews__comment--content {
    width: calc(100% - 100px);
    padding-left: 20px;
  }
}

.reviews__comment--content__date {
  border: 1px solid var(--border-color2);
  padding: 0 6px;
  border-radius: 5px;
  height: 38px;
  line-height: 36px;
  font-size: 13px;
}

@media only screen and (min-width: 576px) {
  .reviews__comment--content__date {
    padding: 0 8px;
    height: 40px;
    line-height: 38px;
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) {
  .reviews__comment--content__date {
    padding: 0 10px;
    height: 42px;
    line-height: 40px;
    font-size: 15px;
  }
}

.reviews__comment--content__title {
  font-weight: 500;
  margin-bottom: 8px;
}

.reviews__comment--content .reviews__ratting {
  margin-bottom: 8px;
}

@media only screen and (max-width: 575px) {
  .reviews__comment--content .reviews__ratting {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.reviews__comment--content__desc {
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) {
  .reviews__comment--content__desc {
    font-size: 15px;
    line-height: 28px;
  }
}

/*============== customer reviews css end ==============*/

/*============== login css ==============*/
.account__login {
  background: var(--white-color);
  padding: 25px;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 992px) {
  .account__login {
    padding: 30px;
  }
}

.account__login--header__title {
  font-weight: 600;
}

.account__login--header__desc {
  font-size: 16px;
  font-weight: 600;
}

.account__login--input {
  margin-top: 16px;
}

.pass_div {
  margin-top: 16px;
  position: relative;
}

.pass_div input {
  padding-right: 35px !important;
}

.account__login--forgot {
  font-weight: 600;
  color: #bc6a2b;
  font-size: 16px;
  padding: 0;
  background: inherit;
  border: 0;
}

/*============== login css end ==============*/

/*============== account css ==============*/
.account__menu {
  font-weight: 500;
  font-family: 'Lora';
}

.account__menu .active {
  color: #bc6a2b;
}

.account_section {
  border: 1px solid var(--border-color);
  border-radius: 0;
  padding: 18px;
  background-color: #ffffff;
}

.btn_w_150 {
  width: 150px !important;
}

/*============== account css end ==============*/


/*============== custom tooltip & return page css ==============*/
.custom_tooltip {
  position: relative;
  display: inline-block;
}

.custom_tooltip .tooltiptext {
  visibility: hidden;
  background-color: #fff;
  color: #000;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  opacity: 0;
  transition: opacity 0.3s;
  border: 1px solid #e7e7e7;
  transform: translateX(-50%);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.custom_tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.tooltiptext .fs-5 {
  font-size: 12.5px !important;
}

.upload__btn.primary__btn {
  height: 50px !important;
  line-height: 25px !important;
  padding: 10px 20px !important;
}

.custom_tooltip .tooltiptext::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 12px;
  border-style: solid;
  border-color: #f4f4f4 transparent transparent transparent;
  z-index: -1;
}

.account__left--sidebar {
  border-right: 1px solid var(--border-color);
}

/*============== custom tooltip & return page css end ==============*/

/*============== contact page css ==============*/

@media only screen and (min-width: 1200px) {
  .contact__form {
    margin-left: 400px;
  }
}

@media only screen and (min-width: 992px) {
  .contact__form {
    margin-left: 360px;
  }
}

@media only screen and (max-width: 991px) {
  .contact__form {
    padding: 40px !important;
  }
}

.contact__form {
  background: var(--white-color);
  border-radius: 10px;
  -webkit-box-shadow: 0 7px 20px rgba(0, 0, 0, 0.16);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.16);
  padding: 55px 35px 55px 100px;
}

.contact__form--title {
  font-weight: 600;
}

@media only screen and (min-width: 1600px) {
  .mb-40 {
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 992px) {
  .mb-40 {
    margin-bottom: 30px;
  }
}

.mb-40 {
  margin-bottom: 25px;
}

@media only screen and (max-width: 1200px) {
  .contact__form--textarea {
    height: 100px;
  }
}

@media only screen and (max-width: 992px) {
  .contact__form--textarea {
    height: 120px;
  }
}

.contact__form--textarea {
  width: 100%;
  height: 160px;
  padding: 12px 15px;
  border-radius: 0px;
  resize: none;
}

@media only screen and (min-width: 1200px) {
  .contact__info {
    width: 460px;
    padding: 50px 60px;
  }
}

@media only screen and (min-width: 992px) {
  .contact__info {
    width: 420px;
    padding: 40px 30px;
  }
}

.contact__info {
  background: var(--secondary-color);
  width: 420px;
  padding: 40px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
}

.contact__info--items {
  margin-bottom: 27px;
}

@media only screen and (min-width: 992px) {
  .contact__info--content__title {
    font-size: 18px;
    line-height: 28px;
  }
}

.contact__info--content__title {
  font-weight: 600;
}

@media only screen and (min-width: 1200px) {
  .contact__info--icon {
    margin-right: 18px;
  }
}

.contact__info--icon {
  margin-right: 12px;
  color: var(--white-color);
  padding-top: 8px;
}

@media only screen and (min-width: 1200px) {
  .contact__info--content__desc {
    font-size: 16px;
    line-height: 27px;
  }
}

.contact__info--content__desc {
  font-size: 16px;
  line-height: normal;
}

.contact__info--content__desc a {
  color: var(--white-color);
}

@media only screen and (min-width: 1600px) {
  .contact__map--iframe {
    height: 600px;
  }
}

@media only screen and (min-width: 1200px) {
  .contact__map--iframe {
    height: 500px;
  }
}

@media only screen and (min-width: 992px) {
  .contact__map--iframe {
    height: 400px;
  }
}

@media only screen and (min-width: 768px) {
  .contact__map--iframe {
    height: 320px;
  }
}

.contact__map--iframe {
  width: 100%;
  height: 280px;
  margin-bottom: -7px;
}

.contact__info--social {
  gap: 12px;
}

.contact__info--social__icon {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--white-color);
  color: var(--secondary-color);
  border-radius: 50%;
}

.contact__info--social__icon .social-icon-image {
  width: 18px;
}

.contact__info--social__icon:hover {
  background: var(--primary_color);
  color: var(--white-color);
}

/*============== contact page css end ==============*/

/*============== newsletter css ==============*/

[data-animation] .newsletter__popup--inner {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15);
  transition: all 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15);
}

[data-animation].newsletter__show .newsletter__popup--inner {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.newsletter__popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  z-index: 999;
}

.newsletter__popup.newsletter__show {
  visibility: visible;
  opacity: 1;
  inset: 0;
  /* top:0; left:0; right:0; bottom:0 */
  background: rgba(0, 0, 0, 0.6);
  /* dark semi-transparent backdrop */
}

.newsletter__popup.newsletter__show .newsletter__popup--inner {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.newsletter__popup--inner {
  position: relative;
  width: 88%;
  max-height: 80vh;
  border-radius: 10px;
  background: var(--white-color);
  -webkit-box-shadow: 2px 0 20px rgba(0, 0, 0, 0.06);
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.06);
  overflow: auto;
  cursor: default;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
}

@media only screen and (min-width: 576px) {
  .newsletter__popup--inner {
    width: 80%;
  }
}

@media only screen and (min-width: 768px) {
  .newsletter__popup--inner {
    width: 655px;
  }
}

@media only screen and (min-width: 992px) {
  .newsletter__popup--inner {
    width: 720px;
  }
}

@media only screen and (min-width: 1200px) {
  .newsletter__popup--inner {
    width: 760px;
  }
}

.newsletter__popup--close__btn {
  position: absolute;
  top: 4px;
  right: 4px;
  background: transparent;
  color: var(--secondary-color);
  line-height: 2.8rem;
  border: 0;
  text-transform: uppercase;
  font-size: 1.2rem;
  border-radius: 50%;
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (min-width: 992px) {
  .newsletter__popup--close__btn {
    width: 2.2rem;
    height: 2.2rem;
  }
}

.newsletter__popup--close__btn>* {
  pointer-events: none;
}

.newsletter__popup--close__btn svg {
  height: 20px;
}

.newsletter__popup--thumbnail {
  width: 280px;
}

@media only screen and (min-width: 992px) {
  .newsletter__popup--thumbnail {
    width: 320px;
  }
}

@media only screen and (min-width: 1200px) {
  .newsletter__popup--thumbnail {
    width: 330px;
  }
}

@media only screen and (max-width: 767px) {
  .newsletter__popup--thumbnail {
    display: none;
  }
}

.newsletter__popup--box__right {
  width: 100%;
  padding: 2rem 1rem 1rem;
  text-align: center;
}

@media only screen and (min-width: 576px) {
  .newsletter__popup--box__right {
    padding: 2rem 1rem 1rem;
  }
}

@media only screen and (min-width: 768px) {
  .newsletter__popup--box__right {
    width: calc(100% - 280px);
    padding: 1rem 0.8rem;
  }
}

@media only screen and (min-width: 992px) {
  .newsletter__popup--box__right {
    width: calc(100% - 320px);
    padding: 1.5rem 0.8rem;
  }
}

@media only screen and (min-width: 1200px) {
  .newsletter__popup--box__right {
    width: calc(100% - 330px);
    padding: 2rem 1rem;
  }
}

.newsletter__popup--title {
  margin-bottom: 1.3rem;
  font-size: 20px;
  font-family: 'poppins';
}

@media only screen and (min-width: 768px) {
  .newsletter__popup--title {
    margin-bottom: 1.3rem;
    font-size: 24px;
  }
}

@media only screen and (min-width: 992px) {
  .newsletter__popup--title {
    margin-bottom: 1.3rem;
    font-size: 30px;
  }
}

.newsletter__popup--content--desc {
  color: var(--text_color);
  display: inline-block;
  line-height: 1rem;
  font-size: 0.7rem;
  margin-bottom: 1.6rem;
}

@media only screen and (min-width: 768px) {
  .newsletter__popup--content--desc {
    line-height: 1.6rem;
    font-size: 0.8rem;
  }
}

@media only screen and (min-width: 992px) {
  .newsletter__popup--content--desc {
    font-size: 1rem;
    margin-bottom: 2.2rem;
  }
}

.newsletter__popup--subscribe__btn {
  width: 100%;
  margin-top: 1rem !important;
}

.newsletter__popup--footer {
  margin-top: 1.2rem;
}

.newsletter__popup--dontshow__again--text {
  cursor: pointer;
  font-size: 0.7rem;
  padding-left: 0.5rem !important;
}

@media only screen and (min-width: 768px) {
  .newsletter__popup--dontshow__again--text {
    font-size: 1rem;
  }
}

@media only screen and (min-width: 992px) {
  .newsletter__popup--dontshow__again--text {
    font-size: 1rem;
  }
}

.newsletter__popup--thumbnail__img {
  max-width: 100%;
}

.newsletter__popup--content {
  font-family: 'lora';
}

.close-modal {
  top: 15px;
  right: 15px;
}
/*============== newsletter css end ==============*/


/* new css start */
.shop_page.order_section{
  background-color: transparent;
  margin-top: 204px;
}
.order_outer_card{
  justify-content: space-between;
}
.order_outer_card_left{
  max-width: 420px;
}

@media only screen and (max-width: 991px) {
  .order_outer_card_right{
    flex-direction: column;
  }
}
@media only screen and (max-width: 576px) {
  .shop_page.order_section{
    margin-top: 62px;
  }
}

.logo-max-h {
  max-height: 60px;
  object-fit: contain;
}
.social_links a .social-icon-image {
  width: 27px;
  padding: 6px;
}