@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@font-face {
  font-display: swap;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

:root {
  --whiteColor: #ffffff;
  --blackColor: #000000;
  --blueColor: #094882;
  --lightBgColor: #e9f9fd;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  color: var(--blackColor);
  max-width: 1920px;
  margin: auto;
  overflow-x: hidden;
  line-height: 1.4;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 1rem;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

header.main_header {
  background: var(--whiteColor);
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.25);
  padding: 0px 0px;
  position: relative;
}
header.main_header .navbar {
  transition: all 0.3s ease;
  padding: 0;
  margin: 0;
  min-height: 6.5rem;
}
header.main_header .navbar .left_part {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}
header.main_header .navbar .logo img {
  max-width: 17rem;
}
header.main_header .navbar ul.navbar-nav {
  gap: 2rem;
  align-items: center;
  margin-left: 0;
}
header.main_header .navbar .navbar-nav a.nav-link {
  font-size: 1.4rem;
  justify-content: center;
  text-transform: uppercase;
  padding: 0rem 0rem;
  border-radius: 5px;
  min-height: 4rem;
  color: var(--blackColor);
  font-weight: 600;
  cursor: pointer;
  line-height: normal;
  display: flex;
  align-items: center;
}
header.main_header .navbar .navbar-nav a.nav-link .icon-caret {
  width: 1rem;
  opacity: 0.75;
  transition: transform 0.2s cubic-bezier(0, 0, 0.3, 1);
  margin-left: 7px;
  height: auto;
}
header.main_header .navbar .navbar-nav a.nav-link.login_btn {
  background: var(--blueColor);
  color: var(--whiteColor);
  width: -moz-fit-content;
  width: fit-content;
}
header.main_header .dropdown-menu ul {
  list-style: none;
  padding: 0;
}
header.main_header .dropdown-menu li .dropdown-item {
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}
header.main_header .dropdown-menu li .dropdown-item span.icon {
  display: inline-block;
}
header.main_header .dropdown-menu li .dropdown-item span.icon img {
  background: var(--whiteColor);
  padding: 5px;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  border-radius: 100%;
  transition: inherit;
  margin-right: 5px;
}
header.main_header .dropdown-menu li .dropdown-item span.icon img:hover {
  transition: inherit;
  transform: inherit;
}
header.main_header .dropdown-menu {
  border-radius: 0;
  border: none;
  padding: 0.5em;
  position: fixed !important;
  left: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  right: 0;
  animation: slideIn 0.3s ease;
  background: #242833;
  padding: 2rem;
  color: white;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: auto;
}
header.main_header .mega_menu_listing {
  display: flex;
  gap: 2rem;
  overflow-y: auto;
  padding-bottom: 2rem;
}
header.main_header .mega_menu_listing::-webkit-scrollbar {
  height: 5px;
}
header.main_header .dropdown-menu ul {
  list-style: none;
  padding: 0;
  min-width: 30rem;
}
header.main_header .dropdown-menu li a {
  padding: 0.5em 1em;
}
@media screen and (min-width: 1025px) {
  header.main_header .dropdown:hover .dropdown-menu {
    display: flex;
  }
  header.main_header .dropdown-menu.show {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  header.main_header .dropdown-menu.show {
    max-height: 60vh;
    overflow-y: scroll;
    width: -moz-fit-content;
    width: fit-content;
  }
}
header.main_header span.hot_btn {
  padding: 0.125rem 0.625rem;
  font-size: 1rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background-color: #ff0000;
  color: var(--whiteColor);
  margin-right: 5px;
  line-height: normal;
}
header.main_header .right_icon {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: inherit;
  flex-grow: 1;
  /* Placeholder style */
}
header.main_header .right_icon .category_search_box {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
}
header.main_header .right_icon .checkout_process {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: -webkit-fill-available;
}
header.main_header .right_icon .category_search_box .search-form {
  width: 100%;
  background: var(--whiteColor);
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
header.main_header .right_icon .category_search_box .search-wrap {
  width: 100%;
}
header.main_header .right_icon .category_search_box .dropdown-menu {
  font-size: 0.9rem;
  min-width: 18rem;
  right: -15rem;
  margin-top: 2px;
  padding: 1rem;
  background: #13427d;
  color: var(--whiteColor);
  max-height: 70vh;
  overflow: auto;
  margin-left: calc(50% + 10rem);
  flex-direction: column;
}
header.main_header .right_icon .category_search_box .dropdown-menu li .dropdown-item {
  padding: 0.5rem 0.5rem;
  color: var(--whiteColor);
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-weight: 600;
}
header.main_header .right_icon .category_search_box .dropdown-menu li .dropdown-item.active, header.main_header .right_icon .category_search_box .dropdown-menu li .dropdown-item:hover, header.main_header .right_icon .category_search_box .dropdown-menu li .dropdown-item:focus {
  background-color: var(--whiteColor);
  color: var(--blackColor);
}
header.main_header .right_icon .category_search_box .dropdown-menu li:last-child .dropdown-item {
  margin-bottom: 0;
}
header.main_header .right_icon .category_search_box .form-control {
  border: none;
  box-shadow: none;
  padding: 1rem 1rem 1rem;
  font-size: 1.4rem;
  width: -moz-fit-content;
  flex-grow: 1;
}
header.main_header .right_icon #searchInput::-moz-placeholder {
  font-size: 1.2rem;
}
header.main_header .right_icon #searchInput::placeholder {
  font-size: 1.2rem;
}
header.main_header .right_icon .category_search_box .btn-primary {
  border-radius: 0;
  padding: 0.65rem 1rem;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #13427d;
  min-width: 3rem;
  outline: 0;
  border: 0;
}
header.main_header .right_icon .category_search_box .btn-primary:focus, header.main_header .right_icon .category_search_box .btn-primary .hover-img {
  border: 0;
  box-shadow: none;
}
header.main_header .right_icon .category_search_box .form-control::-moz-placeholder {
  color: #888;
  font-size: 0.9rem;
}
header.main_header .right_icon .category_search_box .form-control::placeholder {
  color: #888;
  font-size: 0.9rem;
}
header.main_header .right_icon img {
  transition: transform 0.3s ease;
}
header.main_header .right_icon .search_btn {
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0;
  margin: 0;
}
header.main_header .right_icon .value {
  font-weight: 600;
}
header.main_header .price_cart .btn {
  padding: 0;
  outline: 0;
  border: 0;
  display: flex;
  align-items: end;
  gap: 2px;
  line-height: normal;
}
header.main_header .price_cart .btn:focus {
  box-shadow: none;
  border: 0;
}
header.main_header .price_cart .cart_icon {
  position: relative;
}
header.main_header .price_cart .cart_icon span.number {
  position: absolute;
  top: -3px;
  left: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blackColor);
  right: 0;
  margin-left: 4px;
  line-height: normal;
}
header.main_header .price_cart .cart_text {
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--blackColor);
}
header.main_header .price_cart img {
  transition: transform 0.3s ease;
  width: 3rem;
  height: 2.5rem;
}
header.main_header .img_box {
  position: relative;
}
header.main_header .img_box img {
  width: 100%;
  height: 30rem;
  transition: transform 900ms cubic-bezier(0, 0, 0.3, 1);
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
  max-height: 30rem;
}
header.main_header .img_box .img_content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 100%;
  max-width: 100%;
  background: rgba(0, 0, 0, 0.6392156863);
  white-space: normal;
  padding: 1rem 1rem;
  color: var(--whiteColor);
}
header.main_header .img_box .img_content h3 {
  font-size: 1.4rem;
  text-align: center;
  line-height: 18px;
  margin-bottom: 0;
}
header.main_header .img_box:hover img {
  transform: scale(1.1);
}
header.main_header .user_profile {
  position: relative;
  height: -moz-min-content;
  height: min-content;
  display: flex;
  align-items: center;
}
header.main_header .user_profile.dropdown .img-sec img {
  cursor: pointer;
  transition: transform 0.3s ease;
  max-width: 3.5rem;
}
header.main_header .user_profile.dropdown .dropdown-menu {
  top: 5.5rem;
  right: auto;
  left: inherit;
  flex-direction: column;
  position: fixed !important;
  margin-right: 1rem;
  padding: 1rem;
  background: var(--whiteColor);
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.25);
  border: 0;
  width: -moz-fit-content;
  width: auto;
  font-size: 1.4rem;
  margin-top: 0;
  min-width: 28rem;
  transition: all 0.4s ease;
  color: var(--blackColor);
  margin-left: -10rem;
}
header.main_header .user_profile.dropdown .dropdown-menu .mail_id {
  font-size: 1.3rem;
}
header.main_header .user_profile.dropdown .dropdown-toggle {
  color: var(--whiteColor);
  display: flex;
  align-items: center;
  min-height: inherit;
  background: #13427d;
  width: 4rem;
  height: 4rem;
  min-width: 4rem;
  border-radius: 50%;
  font-weight: 600;
}
header.main_header .user_profile.dropdown .icon img {
  max-width: 3.2rem;
}
header.main_header .user_profile.dropdown ul li {
  padding: 1rem;
  font-size: 1.5rem;
}
header.main_header .user_profile.dropdown ul li a {
  color: var(--blackColor);
  font-weight: 600;
}
header.main_header .user_profile.dropdown ul li a:hover {
  background: transparent;
  color: var(--blackColor);
}
header.main_header .user_profile.dropdown ul li a:focus-visible {
  outline: none;
  background-color: transparent;
}
header.main_header .user_profile.dropdown ul li .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
header.main_header .user_profile.dropdown ul li .dropdown-item span.icon {
  background: #13427d;
  width: 3rem;
  height: 3rem;
  text-align: center;
  display: flex;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  color: var(--whiteColor);
}
header.main_header .user_profile.dropdown ul li :focus-visible {
  outline: none;
}
header.main_header .user_profile.dropdown ul li:first-child {
  padding-top: 0;
  padding-bottom: 0;
}
header.main_header .user_profile.dropdown ul li:last-child {
  padding-bottom: 0;
}
header.main_header .user_profile.dropdown .user_name {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
}
header.main_header .user_profile.dropdown .user_name .name_details {
  flex-grow: 1;
}
header.main_header .user_profile.dropdown .user_name .profile_name {
  width: 3rem;
  display: block;
  height: 3rem;
  border-radius: 100%;
  background: var(--blueColor);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: var(--whiteColor);
  font-weight: 600;
}
header.main_header .user_profile.dropdown .user_name .name_details .username {
  font-weight: 500;
}
header.main_header .user_profile.dropdown .user_name .name_details .username .mail_id {
  font-size: 1rem;
  margin-top: 5px;
}
header.main_header .default_user_profile {
  display: flex;
  align-items: center;
  cursor: pointer;
  min-height: inherit;
  justify-content: center;
  gap: 2px;
}
header.main_header .default_user_profile .cart_text {
  font-weight: 600;
  font-size: 1.4rem;
}
header.main_header .default_user_profile .icon i {
  font-size: 2.5rem;
}
header.main_header .user_profile1 {
  position: relative;
}
header.main_header .user_profile1.dropdown {
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  min-height: inherit;
  justify-content: center;
}
header.main_header .user_profile1.dropdown .dropdown-toggle {
  border: none;
  background: #13427d;
  padding: 0.5rem 0.75rem;
  border-radius: 0;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--whiteColor);
  height: 100%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
header.main_header .user_profile1.dropdown .dropdown-menu {
  top: 6.5rem;
  right: auto;
  left: inherit;
  flex-direction: column;
  position: fixed !important;
  margin-right: 1rem;
  padding: 1rem;
  background: #13427d;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.25);
  border: 0;
  width: -moz-fit-content;
  width: auto;
  font-size: 1.4rem;
  margin-top: 0;
  min-width: 28rem;
  transition: all 0.4s ease;
  color: var(--whiteColor);
  margin-left: -10rem;
  margin-top: -1rem;
  max-height: 50rem;
}
header.main_header .user_profile1.dropdown .dropdown-menu li a {
  color: var(--blackColor);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
header.main_header .user_profile1.dropdown .dropdown-menu li a:hover {
  background: transparent;
  color: var(--blackColor);
}
header.main_header .user_profile1.dropdown .dropdown-menu li a:focus-visible {
  outline: none;
  background-color: transparent;
}
header.main_header .user_profile1.dropdown .dropdown-menu li :focus-visible {
  outline: none;
}
header.main_header .user_profile1.dropdown .dropdown-menu::-webkit-scrollbar {
  width: 3px;
}
header.main_header .search-box {
  flex-grow: 1;
  display: flex;
  align-items: center;
}
header.main_header .search-box .suggestions {
  top: 6.5rem;
  right: auto;
  left: inherit;
  position: fixed !important;
  margin-right: 0;
  padding: 1.5rem;
  background: var(--whiteColor);
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.25);
  border: 0;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  width: 100%;
  max-width: 57rem;
  transition: all 0.4s ease;
  color: var(--blackColor);
  margin-left: -7rem;
  margin-top: -1rem;
  z-index: 9;
}
header.main_header .search-box .suggestions ul {
  padding: 0;
  margin: 0;
  list-style: none;
  max-height: 50rem;
  overflow-y: auto;
}
header.main_header .search-box .suggestions ul li {
  padding-bottom: 1rem;
}
header.main_header .search-box .suggestions ul li:last-child {
  padding-bottom: 0;
}
header.main_header .search-box .suggestions ul li a {
  display: flex;
  align-items: center;
}
header.main_header .search-box .suggestions ul li a span {
  margin-right: 5px;
}
header.main_header .search-box .suggestions ul::-webkit-scrollbar {
  width: 3px;
}
header.main_header .search-box .search_bar {
  top: 6.5rem;
  right: auto;
  left: inherit;
  position: fixed !important;
  margin-right: 1rem;
  padding: 1rem;
  background: #13427d;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.25);
  border: 0;
  width: -moz-fit-content;
  width: auto;
  font-size: 1.4rem;
  min-width: 28rem;
  transition: all 0.4s ease;
  color: var(--whiteColor);
  margin-left: 0rem;
  margin-top: -1.5rem;
  z-index: 9;
}
header.main_header .search-box .search_bar ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

header.sticky-nav.sticky {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
}

.school_fill_details .modal-header {
  padding: 1.5rem;
  border-color: rgba(204, 204, 204, 0.7411764706);
}
.school_fill_details .modal-header .modal-title {
  font-size: 1.8rem;
}
.school_fill_details .modal-header .btn-close {
  box-shadow: none;
  outline: 0;
  border: 0;
  background-size: 10px;
}
.school_fill_details .modal-body {
  padding: 1.5rem;
}
.school_fill_details .modal-footer {
  padding: 1.5rem;
}
.school_fill_details .modal-footer .btn_custom {
  margin: 0;
  min-width: auto;
  height: auto;
  padding: 1rem 3rem;
  width: auto;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.5rem;
}
.school_fill_details .modal-footer .btn_2 {
  margin: 0;
}

.fill_form .input_filed {
  margin-bottom: 1.5rem;
  font-weight: 400;
  position: relative;
}
.fill_form .input_filed .iti {
  width: 100%;
}
.fill_form .input_filed .iti .form-control {
  padding-left: 9.5rem !important;
  font-size: 1.4rem;
}
.fill_form .input_filed .iti .form-control::-moz-placeholder {
  color: var(--blackColor);
  font-size: 1.4rem;
}
.fill_form .input_filed .iti .form-control::placeholder {
  color: var(--blackColor);
  font-size: 1.4rem;
}
.fill_form .input_filed .form-control {
  padding: 1.5rem 1.5rem 1.5rem;
  border-color: rgba(0, 0, 0, 0.06);
  height: auto;
  border-radius: 5px;
  border-width: 2px;
  font-size: 1.4rem;
  transition: border-color 0.3s ease-in-out, border-width 0.3s ease-in-out;
  box-shadow: none;
}
.fill_form .input_filed .form-control#phone::-moz-placeholder {
  color: var(--blackColor);
}
.fill_form .input_filed .form-control#phone::placeholder {
  color: var(--blackColor);
}
.fill_form .input_filed .form-check-input {
  box-shadow: none;
  font-size: 1.4rem;
  margin-right: 5px;
  margin-top: 0;
}
.fill_form .input_filed .form-check-input:focus {
  border-color: #dee2e6;
}
.fill_form .input_filed .search_icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  opacity: 0.8;
}
.fill_form .input_filed label.form-check-label {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  font-weight: 400;
}
.fill_form .form-floating {
  margin-bottom: 1.5rem;
}
.fill_form .form-floating .form-control,
.fill_form .form-floating .form-select {
  padding: 3rem 1.5rem 1rem;
  border-color: rgba(0, 0, 0, 0.06);
  height: auto;
  border-radius: 5px;
  border-width: 2px;
  font-size: 1.4rem;
  transition: border-color 0.3s ease-in-out, border-width 0.3s ease-in-out;
  /* Smooth effect */
}
.fill_form .form-floating .form-control:focus,
.fill_form .form-floating .form-select:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.1607843137);
}
.fill_form .form-floating .form-control:focus, .fill_form .form-floating .form-control:active,
.fill_form .form-floating .form-select:focus,
.fill_form .form-floating .form-select:active {
  border-color: var(--blueColor);
  border-width: 2px;
}
.fill_form .form-floating label {
  padding: 1.8rem 1.75rem;
  font-size: 1.4rem;
  padding-top: 2.2rem;
  color: var(--blackColor);
}
.fill_form .form-floating label.form-check-label {
  font-size: 1.2rem;
}

.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 50rem;
  height: 100%;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}

/* Make it full height */
.modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
  border-radius: 0;
  border: none;
  padding: 2rem 2rem 2rem;
}

/* Open animation */
.modal.right.show .modal-dialog {
  transform: translateX(0);
}

/* Close animation */
.modal.right.hide-modal .modal-dialog {
  transform: translateX(100%);
}

.swiper-slide {
  height: auto;
}

section.banner_part .swiper-slide {
  text-align: center;
  font-size: 1.8rem;
  background: var(--whiteColor);
  justify-content: center;
  align-items: center;
}
section.banner_part .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 50rem;
  min-height: 25rem;
}
section.banner_part .slider_btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5rem;
  height: auto;
}
section.banner_part .slider_btn .swiper-button-next,
section.banner_part .slider_btn .swiper-button-prev {
  background: var(--whiteColor);
  border-radius: 100%;
  width: 4rem;
  height: 4rem;
}
section.banner_part .slider_btn .swiper-button-next:after,
section.banner_part .slider_btn .swiper-button-prev:after {
  color: var(--blackColor);
}

.top_title {
  text-align: center;
  margin-bottom: 3rem;
}
.top_title h2 {
  font-size: 3.2rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 0;
}
.top_title p {
  margin-top: 1rem;
}

section.featured_category_part {
  padding: 6rem 0rem 6rem 2rem;
  position: relative;
}
section.featured_category_part .swiper-wrapper {
  display: flex;
  padding-bottom: 1px;
}
section.featured_category_part .categroy_slider .box {
  text-align: center;
  border: 1px solid #d8d8d8;
  padding: 1.5rem;
  border-radius: 1rem;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
section.featured_category_part .categroy_slider .box .img-sec {
  overflow: hidden;
  border-radius: 1rem;
}
section.featured_category_part .categroy_slider .box .img-sec img {
  width: 16rem;
  max-width: 16rem;
  height: 16rem;
  transition: transform 800ms cubic-bezier(0, 0, 0.3, 1);
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1rem;
}
section.featured_category_part .categroy_slider .box .img-sec img:hover {
  transform: scale(1.1);
}
section.featured_category_part .categroy_slider .box .content {
  margin-top: auto;
}
section.featured_category_part .categroy_slider .box .content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 1.5rem 0 0;
}
section.featured_category_part .categroy_slider .box a {
  text-decoration: none;
  color: var(--blackColor);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-collection-tabs {
  background: var(--lightBgColor);
  padding: 6rem 1.5rem;
}
.featured-collection-tabs .grade_part .left_img img {
  width: 100%;
  max-height: 65rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.featured-collection-tabs .tab-panel .tab-panel-tabs.tabs-alignment--center {
  justify-content: flex-start;
}
.featured-collection-tabs .grade_tabs_part {
  position: relative;
}
.featured-collection-tabs .grade_tabs_part .nav-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  border: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.featured-collection-tabs .grade_tabs_part .nav-tabs::-webkit-scrollbar {
  height: 5px;
}
.featured-collection-tabs .grade_tabs_part .nav-tabs .nav-item .nav-link {
  cursor: pointer;
  background: transparent;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  color: var(--blackColor);
  font-weight: 500;
  background: var(--whiteColor);
  border: 1px solid var(--blueColor);
  color: var(--blueColor);
}
.featured-collection-tabs .grade_tabs_part .nav-tabs .nav-item .nav-link.active {
  background: var(--blueColor);
  color: var(--whiteColor);
}
.featured-collection-tabs .tab-content {
  background: var(--whiteColor);
  padding: 2rem;
}
.featured-collection-tabs .tab-content .tab-pane .btn_group {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}
.featured-collection-tabs .tab-content .tab-pane .btn_group a.more_btn {
  background: var(--blueColor);
  color: var(--whiteColor);
  padding: 7px 15px;
  border-radius: 30px;
  font-size: 1.2rem;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}
.featured-collection-tabs .tab-content .tab-pane h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0rem;
  flex: 1 1 0%;
}

section.newsletter {
  background: url(../images/newsletter_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  padding: 6rem 0rem;
  position: relative;
  z-index: 1;
  color: var(--whiteColor);
  margin-bottom: 3rem;
}
section.newsletter::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: var(--blackColor);
  z-index: -1;
  opacity: 0.7;
}
section.newsletter .newsletter_subscribe {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3rem auto;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}
section.newsletter .newsletter_subscribe .form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  position: relative;
  color: var(--blackColor);
  background: transparent;
  border-radius: 5px;
  height: 5rem;
  width: 100%;
  min-width: 8rem;
  padding: 0 1rem;
  border: 1px solid var(--whiteColor);
  outline: 0;
  color: var(--whiteColor);
  min-width: 26rem;
  font-size: 14px;
  transition: opacity 0.5s ease-in-out;
}
section.newsletter .newsletter_subscribe .form-control::-moz-placeholder {
  box-shadow: none;
  color: var(--whiteColor);
}
section.newsletter .newsletter_subscribe .form-control::placeholder, section.newsletter .newsletter_subscribe .form-control:focus {
  box-shadow: none;
  color: var(--whiteColor);
}
section.newsletter .newsletter_subscribe .form-control:hover {
  border-width: 2px;
}

.btn_custom {
  transition: transform 300ms cubic-bezier(0, 0, 0.3, 1);
  background: var(--whiteColor);
  color: var(--blackColor);
  height: 4.5rem;
  font-size: 14px;
  min-width: 15rem;
  outline: 0;
  border-radius: 5px;
  font-weight: 700;
  border: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.btn_custom svg {
  transition: transform 300ms cubic-bezier(0, 0, 0.3, 1);
  width: 2rem;
  height: auto;
}
.btn_custom:hover {
  transform: translateY(-0.125rem);
}
.btn_custom:hover svg {
  transform: translateX(0.5rem);
}
.btn_custom.btn_1 {
  background: var(--blueColor);
  color: var(--whiteColor);
  margin-top: 3rem;
  border-radius: 36px;
  padding: 1rem 2rem;
  text-align: center;
}

section.comparison-banner {
  overflow: hidden;
  position: relative;
  z-index: 9;
}
section.comparison-banner .comparison-container {
  position: relative;
  width: 600px;
  height: 400px;
  overflow: hidden;
}
section.comparison-banner .comparison-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: clip-path 0.3s ease-in-out;
}
section.comparison-banner .comparison-container .hover-img {
  clip-path: inset(0 50% 0 0);
}
section.comparison-banner .comparison-container:hover .hover-img {
  clip-path: inset(0 0 0 0);
}
section.comparison-banner #comparison {
  width: 100%;
  position: relative;
}
section.comparison-banner figure {
  background-image: url(../images/comprasion_slider_1.jpg);
  background-size: cover;
  font-size: 0;
  width: 100%;
  height: 100%;
  min-height: 55rem;
  max-height: 55rem;
  margin: 0;
  background-repeat: no-repeat;
}
section.comparison-banner #divisor {
  background-image: url(../images/comprasion_slider_2.jpg);
  background-size: cover;
  position: absolute;
  width: 50%;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
  bottom: 0;
  min-height: 55rem;
  height: 100%;
  max-height: 55rem;
  z-index: 1;
}
section.comparison-banner #divisor::before, section.comparison-banner #divisor::after {
  content: "";
  position: absolute;
  right: -2px;
  width: 4px;
  height: calc(50% - 25px);
  background: white;
  z-index: 3;
}
section.comparison-banner #divisor::before {
  top: 0;
  box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, 0.3);
}
section.comparison-banner #divisor::after {
  bottom: 0;
  box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 0.3);
}
section.comparison-banner #handle {
  position: absolute;
  height: 5rem;
  width: 5rem;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
section.comparison-banner #handle::before, section.comparison-banner #handle::after {
  content: "";
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
  top: 50%;
  margin-top: -6px;
}
section.comparison-banner #handle::before {
  border-right: 6px solid white;
  left: 50%;
  margin-left: -17px;
}
section.comparison-banner #handle::after {
  border-left: 6px solid white;
  right: 50%;
  margin-right: -17px;
}
section.comparison-banner input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  background-color: transparent;
  width: calc(100% + 50px);
  z-index: 2;
}
section.comparison-banner input[type=range]:focus, section.comparison-banner input[type=range]:active {
  border: none;
  outline: none;
}
section.comparison-banner input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: transparent;
  border: 4px solid white;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.3);
}
section.comparison-banner input[type=range]::-moz-range-track {
  -moz-appearance: none;
  height: 15px;
  width: 100%;
  background-color: transparent;
  position: relative;
  outline: none;
}
section.comparison-banner .comparison-text {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 2rem;
  left: 29%;
  transform: translate(15%, 0);
  max-width: 22%;
  background: #121b1f;
  padding: 1rem;
  transition: opacity 0.5s ease;
  z-index: 0;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: normal;
}

section.highlight_features {
  padding: 6rem 1.5rem;
  overflow: hidden;
}
section.highlight_features .features_category {
  position: relative;
}
section.highlight_features .features_category .media_part {
  width: 40%;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
section.highlight_features .features_category .media_part img {
  min-height: 40rem;
  max-height: 40rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
section.highlight_features .features_category .features .inner_content h3 {
  font-size: 2rem;
  font-weight: 700;
}
section.highlight_features .features_category .highlight-spots {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
section.highlight_features .features_category .highlight-spots .spot {
  position: absolute;
  transform: translate(-50%, -50%);
  min-height: 30px;
  width: 30px;
  min-width: 30px;
  font-size: 12px;
  background: var(--blueColor);
  border-radius: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  --color-pulse: var(--color-foreground);
  --color-background: 36, 40, 51;
  --color-foreground: 255, 255, 255;
  animation: pulse 2s cubic-bezier(0, 0, 0.3, 1) infinite;
  transition: transform 300ms cubic-bezier(0, 0, 0.3, 1);
  color: var(--whiteColor);
}
section.highlight_features .features_category .highlight-spots .spot::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  border-radius: 30px;
  transition: box-shadow 300ms ease;
}
section.highlight_features .features_category .highlight-spots .spot:hover {
  animation-duration: 0.5s;
}
section.highlight_features .features_category .highlight-spots .spot_class_1 {
  left: 30%;
  top: 20%;
}
section.highlight_features .features_category .highlight-spots .spot_class_2 {
  left: 70%;
  top: 45%;
}
section.highlight_features .features_category .highlight-spots .spot_class_3 {
  left: 30%;
  top: 80%;
}
section.highlight_features .features_category .highlight-spots .spot_class_4 {
  left: 70%;
  top: 80%;
}
section.highlight_features .features_category .features .inner_content {
  position: absolute;
  transform: translateY(-100%);
  max-width: 35rem;
  padding-bottom: 0.5rem;
  visibility: visible;
  animation: fadeIn 0.3s cubic-bezier(0, 0, 0.3, 1) forwards;
  animation-delay: 0.5s;
}
section.highlight_features .features_category .features .inner_content p {
  color: rgba(0, 0, 0, 0.6196078431);
}
section.highlight_features .features_category .features .inner_content.content_1 {
  top: 20%;
  left: 0;
  right: auto;
}
section.highlight_features .features_category .features .inner_content.content_2 {
  top: 45%;
  left: auto;
  right: 0;
  text-align: right;
}
section.highlight_features .features_category .features .inner_content.content_3 {
  top: 80%;
  --synergy-ratio: 0%;
  left: 0;
  right: auto;
}
section.highlight_features .features_category .features .inner_content.content_4 {
  left: auto;
  right: 0;
  text-align: right;
  top: 80%;
  --synergy-ratio: 0%;
}
section .line {
  position: absolute;
  height: 1px;
  background: var(--blueColor);
  animation: growWidthFromRight;
  animation-duration: 1s;
}
section .line.line_1 {
  top: 20%;
  width: 40%;
}
section .line.line_2 {
  top: 45%;
  width: 40%;
  right: 0;
  left: auto;
}
section .line.line_3 {
  top: 80%;
  width: 40%;
}
section .line.line_4 {
  top: 80%;
  width: 40%;
  right: 0;
  left: auto;
}

section.video_part {
  background: linear-gradient(to bottom, #58c3f0, #0066ff);
  /* Adjust colors */
  padding: 3rem 1.5rem;
}
section.video_part .video-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(to bottom, #58c3f0, #0066ff);
  border-radius: 1.5rem;
}
section.video_part .video-container video {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100%;
  overflow: hidden;
}

section.compare_product {
  background: var(--whiteColor);
  padding: 6rem 1.5rem;
}
section.compare_product .product-card {
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 28rem;
  background: var(--whiteColor);
  border-radius: 0;
  min-width: 28rem;
  height: auto;
}
section.compare_product .product-card .inner_body {
  border-radius: 0;
}
section.compare_product .product-card .inner_body .card-media-wrapper {
  border-radius: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
section.compare_product .product-card .inner_body .card-media-wrapper img {
  border-radius: 0;
  transition: transform 900ms cubic-bezier(0, 0, 0.3, 1);
  overflow: hidden;
  padding: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
section.compare_product .product-card .inner_body .details_desc {
  margin-top: auto;
}
section.compare_product .product-card .inner_body {
  border-radius: 10px;
  justify-content: flex-start;
}
section.compare_product .product-card .inner_body .card_body_content {
  text-align: left;
  flex: 1 1 0%;
  padding: 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
}
section.compare_product .product-card .inner_body .card_body_content .view_detail_btn {
  margin-top: auto;
}
section.compare_product .product-card .inner_body .card_body_content .cart_process .btn_custom.btn_1, section.compare_product .product-card .inner_body .card_body_content .cart_process .qty_btn {
  margin-left: 0;
}
section.compare_product .compare_list {
  display: flex;
  flex-wrap: nowrap;
  overflow-y: auto;
  gap: 2rem;
  padding-bottom: 1rem;
}
section.compare_product .compare_list::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}
section.compare_product .view_detail_btn .btn_custom {
  background: var(--blueColor);
  color: var(--whiteColor);
  margin-top: 1rem;
  border-radius: 32px;
  font-size: 12px;
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding: 1rem 3rem;
  margin-left: 0;
  height: auto;
  text-decoration: none;
}
section.compare_product .product-card .inner_body .card_body_content .product-card-rating .rating .rating-star {
  justify-content: flex-start;
}

footer {
  position: relative;
  background: var(--blueColor);
  padding: 5rem 0rem 2rem;
  color: var(--whiteColor);
}
footer p {
  margin-bottom: 0;
}
footer h4 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
footer .footer_logo_part img {
  max-width: 25rem;
  max-height: 15rem;
}
footer .footer_logo_part p {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
footer .footer_menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
footer .footer_menu ul li {
  margin-bottom: 1rem;
}
footer .footer_menu ul li a {
  color: var(--whiteColor);
  position: relative;
  --underline-scale: 0;
}
footer .footer_menu ul li a::after {
  content: "";
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  width: 100%;
  background: var(--whiteColor);
  transition: transform 300ms cubic-bezier(0, 0, 0.3, 1);
  transform: scaleX(var(--underline-scale));
  transform-origin: bottom right;
}
footer .footer_menu ul li a:hover {
  --underline-scale: 1;
}
footer .footer_menu ul li a:hover::after {
  transform-origin: bottom left;
}
footer .footer_menu ul li a i {
  margin-right: 10px;
}
footer .footer_menu ul li:last-child {
  margin-bottom: 0;
}
footer .social_icons ul {
  justify-content: flex-start;
  margin-top: 1.5rem;
}
footer .bottom_footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: block;
  font-size: 1.4rem;
}

a {
  color: var(--blackColor);
  text-decoration: none;
}

.product-card {
  overflow: hidden;
  transition: transform 0.5s ease;
  width: 100%;
  background: #f2f2f2;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  height: 100%;
}
.product-card span.badge.sale-badge {
  background: #e41616;
  color: var(--whiteColor);
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 5px;
  z-index: 1;
  right: 5px;
  font-size: 1.4rem;
  border-radius: 14px;
}
.product-card span.badge.sale-badge.sold_out {
  background: var(--blackColor);
  color: rgba(255, 255, 255, 0.6901960784);
}
.product-card .inner_body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 1rem;
  position: relative;
  flex: 1 1 0%;
}
.product-card .inner_body .checked {
  text-align: right;
  position: absolute;
  top: 0;
  z-index: 9;
  right: 0;
  background: var(--whiteColor);
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-right-radius: 5px;
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.25);
  justify-content: center;
  border-top-right-radius: 1rem;
}
.product-card .inner_body .checked .form-check-input[type=radio], .product-card .inner_body .checked .form-check-input {
  width: 2.2rem;
  height: 2.2rem;
}
.product-card .inner_body .checked .form-check-input[type=radio]:focus, .product-card .inner_body .checked .form-check-input:focus {
  box-shadow: none;
}
.product-card .inner_body a {
  border-radius: 1rem;
  text-decoration: underline;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card .inner_body .card-media-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  aspect-ratio: 1/1;
}
.product-card .inner_body .card-media-wrapper img {
  width: 100%;
  height: 100%;
  transition: opacity 0.8s ease-in-out;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  min-height: 29rem;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 29rem;
  text-align: center;
}
.product-card .inner_body .card-media-wrapper .hover-img {
  position: absolute;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
.product-card .inner_body .card-media-wrapper:hover .hover-img {
  opacity: 1;
  border-radius: 5px;
}
.product-card .inner_body .card_body_content {
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1 1 0%;
}
.product-card .inner_body .card_body_content .card_heading h5 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--blackColor);
  text-decoration: none;
  line-height: 2.6rem;
  padding-bottom: 1rem;
}
.product-card .inner_body .card_body_content .card_heading p {
  margin-bottom: 0;
}
.product-card .inner_body .card_body_content .product-card-rating {
  padding: 7px 0px 1.5rem;
}
.product-card .inner_body .card_body_content .product-card-rating .rating .rating-star {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.product-card .inner_body .card_body_content .product-card-rating .rating .rating-star .rating-text {
  margin-left: 0.5rem;
  font-weight: 700;
  color: var(--blueColor);
  font-size: 1.4rem;
}
.product-card .inner_body .card_body_content .product-card-rating img {
  width: 1.5rem;
  height: 1.5rem;
}
.product-card .inner_body .card_body_content .product-card-rating i {
  font-size: 1.5rem;
  color: var(--blueColor);
}
.product-card .inner_body .card_body_content .card-price {
  font-size: 1.6rem;
  color: var(--blackColor);
}
.product-card .inner_body .card_body_content .cart_process .btn_custom.btn_1 {
  background: var(--blueColor);
  color: var(--whiteColor);
  border-radius: 32px;
  font-size: 1.2rem;
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding: 0.8rem 1.5rem;
  height: auto;
  text-decoration: none;
  margin: auto;
  margin-top: 1rem;
  font-weight: 600;
}
.product-card .inner_body .card_body_content .cart_process .qty_btn {
  display: flex;
  border: 2px solid var(--blueColor);
  padding: 3px 10px;
  height: auto;
  font-weight: 700;
  min-height: auto;
  border-radius: 32px;
  margin: auto;
  margin-top: 1rem;
  align-items: center;
  justify-content: center;
}
.product-card .inner_body .card_body_content .cart_process .qty_btn .label_btn {
  color: var(--blueColor);
  padding: 0;
  line-height: normal;
  display: flex;
  font-size: 1.6rem;
  align-items: center;
}
.product-card .inner_body .card_body_content .cart_process .qty_btn .label_btn i {
  font-size: 1.4rem;
}
.product-card .inner_body .card_body_content .cart_process .qty_btn .form-control {
  width: 3rem;
  padding: 0;
  color: var(--blueColor);
  font-size: 1.4rem;
  text-align: center;
  line-height: normal;
}
.product-card .inner_body .card_body_content .details_desc {
  margin-top: auto;
}
.product-card .inner_body:hover .card-quick-add {
  opacity: 1;
  animation: fadeIn 0.3s ease forwards;
}
.product-card .inner_body .card-quick-add {
  --color-shadow: 0, 0, 0;
  box-shadow: 0 0 0.5rem rgba(var(--color-shadow), 0.2);
  transition: transform 300ms cubic-bezier(0, 0, 0.3, 1);
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
  opacity: 0;
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--blueColor);
  border-radius: 50%; /* perfect circle */
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--whiteColor);
  border: 0;
}
.product-card .inner_body .card-quick-add .icon-bag {
  width: 18px; /* scale icon properly */
  height: 18px;
  transition: transform 300ms cubic-bezier(0, 0, 0.3, 1);
}
.product-card .inner_body .card-quick-add:hover .icon-bag {
  transform: scale(1.1);
  --color-shadow: 0, 0, 0;
  box-shadow: 0 0 0.5rem rgba(var(--color-shadow), 0.2);
}
.product-card .inner_body .card-quick-add:focus, .product-card .inner_body .card-quick-add:hover {
  box-shadow: none;
  outline: 0;
}

.add_cart_modal .shipping_unlocked {
  background: rgba(12, 183, 113, 0.1019607843);
  padding: 10px 15px;
  border-radius: 1rem;
  text-align: center;
  margin-top: 2rem;
  border-top: 2px solid #0cb771;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
.add_cart_modal .shipping_unlocked span {
  color: #0cb771;
}
.add_cart_modal .footer-subtotal .shipping_total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 1.5rem;
}
.add_cart_modal .footer-subtotal .shipping_total h5.estimated_total {
  font-size: 1.6rem;
}
.add_cart_modal .footer-subtotal .shipping_total .total {
  font-size: 2rem;
}
.add_cart_modal .footer-subtotal .footer-tex.rte {
  font-size: 1.4rem;
  text-align: right;
  color: rgba(255, 255, 255, 0.5215686275);
  margin-top: 1rem;
}
.add_cart_modal .footer-subtotal .footer-tex.rte a {
  color: rgba(255, 255, 255, 0.5215686275);
  text-decoration: underline;
}
.add_cart_modal .footer-subtotal .bottom_btn {
  gap: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}
.add_cart_modal .footer-subtotal .bottom_btn .btn_custom {
  margin: 0;
  margin-top: 0;
  flex: 1 1 0%;
  border-radius: 5px;
}

.common_modal .modal-content {
  background: var(--blackColor);
  color: var(--whiteColor);
  padding-top: 1rem;
}
.common_modal .modal-header {
  border-bottom-color: rgba(255, 255, 255, 0.4705882353);
  padding: 0;
  border: 0;
  justify-content: space-between;
}
.common_modal .modal-header button.btn-close {
  margin: 0;
  padding: 0;
  font-size: 1.8rem;
  color: var(--whiteColor);
  opacity: 1;
}
.common_modal .modal-header .modal-title a {
  color: var(--whiteColor);
  font-weight: 700;
  font-size: 1.6rem;
}
.common_modal .modal-body {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin-top: 3rem;
  max-height: 100vh;
  overflow-y: auto;
  padding-right: 1rem;
}
.common_modal .modal-body h2 {
  font-size: 2.4rem;
  margin-bottom: 0;
  padding-top: 3rem;
  font-weight: 700;
}
.common_modal .modal-body .account_section {
  margin-top: 3rem;
  font-size: 1.4rem;
}
.common_modal .modal-body .account_section ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.common_modal .modal-body .account_section ul li {
  text-align: center;
}
.common_modal .modal-body .account_section ul li span {
  display: block;
}
.common_modal .modal-body .account_section ul li span a {
  color: var(--whiteColor);
  text-decoration: underline;
}
.common_modal .modal-body .slider_part .box {
  background: #f2f2f2;
  padding: 1rem;
  border-radius: 1rem;
  color: var(--blackColor);
}
.common_modal .modal-body .slider_part .box .card_item {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid #ccc;
  border-radius: 1rem;
  overflow: hidden;
  padding: 1rem 1rem;
}
.common_modal .modal-body .slider_part .box .card_item .img-sec {
  max-width: 15rem;
  min-width: 15rem;
}
.common_modal .modal-body .slider_part .box .card_item .img-sec img {
  width: 100%;
  height: auto;
}
.common_modal .modal-body .slider_part .box .content {
  flex-grow: 1;
}
.common_modal .modal-body .slider_part .box .content .sales_tag {
  font-size: 10px;
  padding: 0.5rem 1rem;
  background: #e41616;
  color: var(--whiteColor);
  border-radius: 20px;
  font-weight: 600;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  line-height: normal;
}
.common_modal .modal-body .slider_part .box .content h3 {
  font-size: 1.3rem;
  line-height: 2rem;
  font-weight: 600;
  margin: 1rem 0rem;
}
.common_modal .modal-body .slider_part .box .content h3 a {
  color: var(--blackColor);
  font-size: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.common_modal .modal-body .slider_part .box .content .card-price {
  font-size: 1.2rem;
}
.common_modal .modal-body .slider_part .box .content .card-price b.price-item {
  font-size: 1.2rem;
  font-weight: 800;
}
.common_modal .modal-body .search_main_part {
  margin-top: 2rem;
}
.common_modal .modal-body .recommanded_part_slider {
  margin-top: auto;
}
.common_modal .modal-body .recommanded_part_slider h3.main_title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.common_modal .modal-body .cart_listing {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info {
  display: flex;
  align-items: center;
  color: var(--whiteColor);
  padding: 10px;
  border: 1px solid rgba(204, 204, 204, 0.231372549);
  border-radius: 1rem;
  gap: 10px;
  align-items: flex-start;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .img-sec {
  min-width: 15rem;
  overflow: hidden;
  border-radius: 1rem;
  max-width: 15rem;
  flex: 0 0 1%;
  aspect-ratio: 1/1;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .img-sec img {
  width: 100%;
  border-radius: 1rem;
  transition: transform 800ms cubic-bezier(0, 0, 0.3, 1);
  -o-object-fit: cover;
  max-width: 100%;
  object-fit: cover;
  height: 15rem;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .img-sec img:hover {
  transform: scale(1.1);
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .content {
  flex-grow: 1;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .content h3 {
  display: inline-flex;
  font-size: 1.3rem;
  line-height: 2rem;
  font-weight: 600;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .content h3 a {
  color: var(--whiteColor);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .content h3 a span.cross {
  float: right;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .content .price_container {
  display: flex;
  gap: 1rem;
  white-space: normal;
  flex-wrap: wrap;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .content .price_container span.price {
  font-size: 1.4rem;
  font-weight: 500;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .content .price_container .price_part {
  font-size: 1.4rem;
  font-weight: 500;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .content .price_container .price_part .discounted-prices .original-price {
  display: block;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .content .price_container .price_part span.discount_line {
  font-size: 1.2rem;
  margin-top: 5px;
  background: var(--whiteColor);
  color: var(--blackColor);
  padding: 2px;
  border-radius: 2px;
  text-align: center;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .content .price_container .price_btn {
  float: right;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .content .price_container .slider_range {
  margin-left: auto;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .content .price_container .slider_range .minus_btn {
  background: transparent;
  border: 0;
  color: var(--whiteColor);
  outline: 0;
  width: 3rem;
  height: 3rem;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .content .price_container .slider_range button.plus_btn {
  border: 0;
  background: transparent;
  color: var(--whiteColor);
  width: 3rem;
  height: 3rem;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .content .price_container .slider_range .input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  border: 1px solid var(--whiteColor);
  border-radius: 32px;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .content .price_container .slider_range .form-control {
  background: transparent;
  border: 0;
  color: var(--whiteColor);
  outline: 0;
  width: 3rem;
  height: 3rem;
  box-shadow: none;
  font-size: 1.4rem;
  text-align: center;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .content .price_container .slider_range .form-control:focus {
  outline: 0;
  box-shadow: none;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .content .price_container .qty_btn {
  border-color: var(--whiteColor);
  min-height: auto;
  border-radius: 3rem;
  max-width: 14rem;
  margin-left: 0;
  margin-top: 0;
  height: auto;
  align-items: center;
  padding: 3px 10px;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .content .price_container .qty_btn .inner_loader {
  border: 3px solid rgba(177, 177, 177, 0.561);
  border-radius: 50%;
  border-top: 3px solid #ffffff;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .content .price_container .qty_btn .label_btn {
  color: var(--whiteColor);
  font-size: 1.4rem;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .content .price_container .qty_btn .form-control {
  color: var(--whiteColor);
  min-width: auto;
  width: 3rem;
  padding: 0;
  font-size: 1.4rem;
  line-height: normal;
}
.common_modal .modal-body .cart_listing .add_cart .cart_info .content .total_price {
  text-align: left;
  margin-top: 1rem;
  font-weight: 500;
  font-size: 1.4rem;
}
.common_modal .modal-body .cart_listing span.cross {
  cursor: pointer;
  margin-right: 10px;
  margin-left: 10px;
  position: absolute;
  right: 10px;
}

.QuickView-Modal .modal-dialog {
  min-width: 75rem;
  width: 100%;
}
.QuickView-Modal .modal-body {
  max-height: -moz-fit-content;
  max-height: fit-content;
  overflow-y: hidden;
}
.QuickView-Modal .modal-body .QuickView-Details .product_desc {
  max-height: inherit;
  opacity: 1;
}
.QuickView-Modal .modal-body .QuickView-Details .product_desc p {
  opacity: 0.85;
  font-size: 1.5rem;
  line-height: 2.6rem;
  max-height: 20rem;
  font-weight: 400;
  overflow-y: auto;
  padding-right: 1rem;
}
.QuickView-Modal .modal-body .QuickView-Details .product_desc p::-webkit-scrollbar {
  width: 3px;
}
.QuickView-Modal .QuickView-Details {
  display: flex;
  align-items: flex-start;
}
.QuickView-Modal .QuickView-Details .product-media-gallery {
  flex: 0 0 auto;
  width: 24rem;
  cursor: grab;
  max-height: 90vh;
  overflow-y: auto;
}
.QuickView-Modal .QuickView-Details .product-media-gallery::-webkit-scrollbar {
  width: 0;
}
.QuickView-Modal .QuickView-Details .product-media-gallery .slider-container {
  padding-right: 0;
  height: 100%;
  padding-bottom: 20px;
}
.QuickView-Modal .QuickView-Details .product-media-gallery .slider-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
}
.QuickView-Modal .QuickView-Details .product-media-gallery .slider-container ul li .product-media {
  aspect-ratio: 1/1;
}
.QuickView-Modal .QuickView-Details .product-media-gallery .slider-container ul li .product-media img {
  width: 24rem;
  height: 24rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.QuickView-Modal .QuickView-Details .product_inner_details {
  flex: 1 1 auto;
  padding-left: 2rem;
  max-height: 86vh;
  overflow-y: auto;
  padding-right: 0rem;
  padding-bottom: 2rem;
}
.QuickView-Modal .QuickView-Details .product_inner_details::-webkit-scrollbar {
  width: 0;
}
.QuickView-Modal .QuickView-Details .product_inner_details h1 {
  font-size: 2.2rem;
}
.QuickView-Modal .QuickView-Details .product_inner_details .rating_part span svg {
  color: var(--whiteColor);
}
.QuickView-Modal .QuickView-Details .product_inner_details .price_part b.price-item {
  font-size: 2rem;
}
.QuickView-Modal .QuickView-Details .product_inner_details .qty_btn {
  border-color: var(--whiteColor);
}
.QuickView-Modal .QuickView-Details .product_inner_details .qty_btn .form-control {
  color: var(--whiteColor);
}
.QuickView-Modal .QuickView-Details .product_inner_details .qty_btn .label_btn {
  color: var(--whiteColor);
}
.QuickView-Modal .QuickView-Details .product_inner_details .social_icons ul li a {
  background: rgba(93, 93, 93, 0.58);
}
.QuickView-Modal .QuickView-Details .product_inner_details .view_details_btn .btn_custom {
  height: 4rem;
  margin: 0;
  margin-top: 2rem;
  min-width: 15rem;
  font-size: 1.4rem;
}
.QuickView-Modal .QuickView-Details .product_inner_details h3 span {
  color: var(--whiteColor) !important;
}
.QuickView-Modal .QuickView-Details .swiper-container {
  width: 100%;
  height: 100%;
}
.QuickView-Modal .QuickView-Details .swiper-slide {
  text-align: center;
  font-size: 1.8rem;
  background: var(--whiteColor);
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}

.searchBar-Modal .hidden-input {
  width: 100%;
  min-width: 8rem;
  padding: 0 1rem;
  background: transparent;
  min-height: 5rem;
  color: var(--whiteColor);
  border-radius: 30px;
  border: 1px solid var(--whiteColor);
  font-weight: normal;
  display: flex;
}
.searchBar-Modal .hidden-input .form-control {
  border: 0;
  background-color: transparent;
  font-size: 1.5rem;
  padding-left: 1rem;
  box-shadow: none;
  color: var(--whiteColor);
}
.searchBar-Modal .hidden-input .form-control::-moz-placeholder {
  color: var(--whiteColor);
  font-size: 1.5rem;
}
.searchBar-Modal .hidden-input .form-control::placeholder {
  color: var(--whiteColor);
  font-size: 1.5rem;
}
.searchBar-Modal .hidden-input .form-control:focus {
  box-shadow: none;
}
.searchBar-Modal .hidden-input .field-button-group {
  display: flex;
}
.searchBar-Modal .hidden-input .field-button-group .field-button {
  font-size: 12px;
  background: transparent;
  color: var(--whiteColor);
  border: 0;
  outline: 0;
  box-shadow: none;
}
.searchBar-Modal .hidden-input .field-button-group .field-button:focus {
  box-shadow: none;
}
.searchBar-Modal .hidden-input .field-button-group .reset-button {
  opacity: 0.75;
}
.searchBar-Modal .popular-searches {
  margin: 1.5rem 0rem;
}
.searchBar-Modal .popular-searches h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.searchBar-Modal .popular-searches .keyword-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: flex-start;
  gap: 1rem;
  row-gap: 0.5rem;
  font-size: 1.4rem;
  opacity: 0.75;
}
.searchBar-Modal .popular-searches .keyword-list a {
  color: var(--whiteColor);
  position: relative;
  --underline-scale: 0;
}
.searchBar-Modal .popular-searches .keyword-list a::after {
  content: "";
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  width: 100%;
  background: var(--whiteColor);
  transition: transform 300ms cubic-bezier(0, 0, 0.3, 1);
  transform: scaleX(var(--underline-scale));
  transform-origin: bottom right;
}
.searchBar-Modal .popular-searches .keyword-list a:hover {
  --underline-scale: 1;
}
.searchBar-Modal .popular-searches .keyword-list a:hover::after {
  transform-origin: bottom left;
}
.searchBar-Modal .search_page_btn .btn_custom {
  border-radius: 5px;
  width: 100%;
}
.searchBar-Modal .predictive-search-main {
  margin-top: 2rem;
}
.searchBar-Modal .predictive-search-main .search-results-wrapper .tabs_part .nav-tabs {
  border: 0;
  gap: 1rem;
}
.searchBar-Modal .predictive-search-main .search-results-wrapper .tabs_part .nav-tabs .nav-item .nav-link {
  background: transparent;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  color: var(--whiteColor);
  display: flex;
  font-size: 1.4rem;
  align-items: center;
}
.searchBar-Modal .predictive-search-main .search-results-wrapper .tabs_part .nav-tabs .nav-item .nav-link.active {
  background: var(--whiteColor);
  color: var(--blackColor);
}
.searchBar-Modal .predictive-search-main .search-results-wrapper .tabs_part .nav-tabs .nav-item .nav-link.active span.number {
  background: var(--blackColor);
  color: var(--whiteColor);
}
.searchBar-Modal .predictive-search-main .search-results-wrapper .tabs_part .nav-tabs .nav-item .nav-link span.number {
  background: var(--whiteColor);
  width: 20px;
  height: 20px;
  color: var(--blackColor);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  font-size: 12px;
}
.searchBar-Modal .predictive-search-main .search-results-wrapper .box {
  margin-bottom: 1.5rem;
}
.searchBar-Modal .predictive-search-main .search-results-wrapper .box:last-child {
  margin-bottom: 0;
}
.searchBar-Modal .predictive-search-main .tab-content {
  margin-top: 1.5rem;
  max-height: 39rem;
  overflow-y: auto;
  margin-bottom: 1.5rem;
  padding-bottom: 2rem;
}
.searchBar-Modal .predictive-search-main .tab-content::-webkit-scrollbar {
  width: 0;
}
.searchBar-Modal .predictive-search-main .collection_list .collection_card {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(204, 204, 204, 0.4);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}
.searchBar-Modal .predictive-search-main .collection_list .collection_card .img-sec {
  flex: 0 0 auto;
}
.searchBar-Modal .predictive-search-main .collection_list .collection_card .img-sec img {
  width: 10rem;
  height: 10rem;
  min-width: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.searchBar-Modal .predictive-search-main .collection_list .collection_card .content {
  flex: 1 1 auto;
  padding: 10px;
}
.searchBar-Modal .predictive-search-main .collection_list .collection_card .content h3 {
  font-size: 1.4rem;
  font-weight: 700;
}
.searchBar-Modal .predictive-search-main .collection_list .collection_card .content .btn_custom.btn_1 {
  background: var(--blueColor);
  color: var(--whiteColor);
  margin-top: 1.5rem;
  min-width: -moz-fit-content;
  margin-left: 0;
  min-width: fit-content;
  padding: 8px 15px;
  height: auto;
  font-size: 1.2rem;
}
.searchBar-Modal .predictive-search-main .collection_list .collection_card:last-child {
  margin-bottom: 0;
}
.searchBar-Modal .alert-message {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: left;
  padding: 1.5rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 0, 0, 0.1019607843);
  color: #ff0000;
  margin-top: 2rem;
}

section.section_top_banner .col-md-12 {
  padding: 0;
}
section.section_top_banner .top_banner {
  position: relative;
}
section.section_top_banner .top_banner .img-sec {
  position: relative;
}
section.section_top_banner .top_banner .img-sec::before {
  content: "";
  position: absolute;
  background: var(--blackColor);
  z-index: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.7;
}
section.section_top_banner .top_banner .img-sec img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 20rem;
  min-height: 20rem;
}
section.section_top_banner .top_banner .banner_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  text-align: center;
  color: var(--whiteColor);
  width: 100%;
}
section.section_top_banner .top_banner .banner_content .listing {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  color: var(--whiteColor);
  margin-bottom: 2rem;
  justify-content: center;
}
section.section_top_banner .top_banner .banner_content .listing li {
  position: relative;
  color: rgba(255, 255, 255, 0.6588235294);
}
section.section_top_banner .top_banner .banner_content .listing li a {
  color: var(--whiteColor);
  position: relative;
  --underline-scale: 0;
}
section.section_top_banner .top_banner .banner_content .listing li a::after {
  content: "";
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  width: 100%;
  background: var(--whiteColor);
  transition: transform 300ms cubic-bezier(0, 0, 0.3, 1);
  transform: scaleX(var(--underline-scale));
  transform-origin: bottom right;
}
section.section_top_banner .top_banner .banner_content .listing li a:hover {
  --underline-scale: 1;
}
section.section_top_banner .top_banner .banner_content .listing li a:hover::after {
  transform-origin: bottom left;
}
section.section_top_banner .top_banner .banner_content .listing li::after {
  content: "/";
  display: inline-block;
  margin: 0 1rem;
  color: var(--whiteColor);
}
section.section_top_banner .top_banner .banner_content .listing li:last-child::after {
  display: none;
}
section.section_top_banner .top_banner .banner_content .banner_heading {
  font-weight: 700;
  font-size: 3.2rem;
  margin-bottom: 0;
}

section.product_filter {
  background: var(--lightBgColor);
  color: var(--blackColor);
  padding: 6rem 2rem;
  position: relative;
}
section.product_filter .filter_box h3 {
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  font-weight: 700;
}
section.product_filter .filter_box {
  display: flex;
}
section.product_filter .filter_box .left_filter_part {
  max-width: 30rem;
  min-width: 30rem;
  padding-right: 2rem;
  max-height: 100vh;
  overflow-y: auto;
  margin-right: 2rem;
  flex: 0 0 auto;
  position: sticky;
  top: 80px;
}
section.product_filter .filter_box .left_filter_part button.close_filter_btn {
  display: none;
}
section.product_filter .filter_box .left_filter_part .available_stock {
  background: var(--whiteColor);
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  font-weight: 600;
  border: 1px solid #ccc;
}
section.product_filter .filter_box .left_filter_part .filter_data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  opacity: 0.75;
}
section.product_filter .filter_box .left_filter_part .filter_accordion .accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #CFC7C7;
}
section.product_filter .filter_box .left_filter_part .filter_accordion .accordion-item .accordion-button {
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.5rem 0rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blackColor);
}
section.product_filter .filter_box .left_filter_part .filter_accordion .accordion-item .accordion-body {
  padding: 0;
}
section.product_filter .filter_box .left_filter_part .filter_accordion .accordion-item .accordion-body .listing_part .form-check {
  vertical-align: middle;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  line-height: normal;
  vertical-align: middle;
}
section.product_filter .filter_box .left_filter_part .filter_accordion .accordion-item .accordion-body .listing_part .form-check .form-check-input {
  width: 1.8rem;
  height: 1.8rem;
  box-shadow: none;
  color: var(--blackColor);
}
section.product_filter .filter_box .left_filter_part .filter_accordion .accordion-item .accordion-body .listing_part .form-check .form-check-input:focus {
  box-shadow: none;
}
section.product_filter .filter_box .left_filter_part .filter_accordion .accordion-item .accordion-body .listing_part .form-check .form-check-label {
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--blackColor);
}
section.product_filter .filter_box .left_filter_part .range-slider {
  width: 100%;
  max-width: 400px;
  text-align: center;
}
section.product_filter .filter_box .left_filter_part .values {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  color: var(--blackColor);
  margin-bottom: 10px;
}
section.product_filter .filter_box .left_filter_part .slider-container {
  position: relative;
  height: 4rem;
}
section.product_filter .filter_box .left_filter_part .slider {
  position: absolute;
  width: 100%;
  left: 0;
  background: transparent;
  background: none;
  pointer-events: none;
}
section.product_filter .filter_box .left_filter_part input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  background: rgba(0, 0, 0, 0.2588235294);
  border-radius: 5px;
  outline: none;
  opacity: 0.9;
  transition: opacity 0.15s ease-in-out;
}
section.product_filter .filter_box .left_filter_part input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  background: var(--blueColor);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
}
section.product_filter .filter_box .left_filter_part input[type=range]::-moz-range-thumb,
section.product_filter .filter_box .left_filter_part input[type=range]::-ms-thumb {
  background: red;
}
section.product_filter .filter_box .right_filter_part {
  background: var(--whiteColor);
  padding: 2rem;
  flex: 1 1 auto;
  padding-right: 0.5rem;
}
section.product_filter .filter_box .right_filter_part ul#productList {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 0;
}
section.product_filter .filter_box .right_filter_part ul#productList li {
  flex: 1 1 calc(33.33% - 1.5rem);
  max-width: calc(33.33% - 1.5rem);
}
section.product_filter .filter_box .right_filter_part .pagination {
  gap: 1rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
section.product_filter .filter_box .right_filter_part .pagination li a, section.product_filter .filter_box .right_filter_part .pagination li span {
  font-weight: 600;
  height: 3rem;
  font-size: 1.2rem;
  min-width: 3rem;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  line-height: normal;
}
section.product_filter .product-card .inner_body .card-media-wrapper img {
  max-height: 33rem;
  min-height: 33rem;
}

.form-check-input:checked {
  background-color: var(--blueColor);
  border-color: var(--blueColor);
}

.pagination {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.page-item .page-link {
  color: var(--blueColor);
  border-radius: 5px;
  margin: 0px;
  outline: 0;
  box-shadow: none;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  padding: 1rem 1.5rem;
  font-weight: 600;
  min-width: 3.5rem;
  font-size: 1.6rem;
}

.page-item.active .page-link {
  background-color: var(--blueColor);
  color: white;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-item.disabled .page-link {
  color: #ccc;
  pointer-events: none;
}

.pagination_listing {
  margin-top: 2rem;
  padding-right: 1.5rem;
}

.social_icons ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.social_icons ul li {
  display: flex;
}
.social_icons ul li a {
  display: flex;
  background: rgba(255, 255, 255, 0.0509803922);
  border-radius: 5px;
  min-width: 3.5rem;
  text-align: center;
  color: var(--whiteColor);
  width: 3.5rem;
  height: 3.5rem;
  justify-content: center;
  align-items: center;
}
.social_icons ul li a i {
  transition: transform 800ms cubic-bezier(0, 0, 0.3, 1);
}
.social_icons ul li a:hover i {
  transform: scale(1.1);
}

.qty_btn {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  border: 1px solid var(--whiteColor);
  padding: 0px 10px;
  border-radius: 5px;
  margin-top: 1rem;
  min-height: 5rem;
  height: auto;
  font-weight: 700;
  max-width: 15rem;
}
.qty_btn .form-control {
  font-size: 1.6rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-weight: 600;
  color: var(--whiteColor);
}
.qty_btn .label_btn {
  border: 0;
  background: transparent;
  outline: 0;
  box-shadow: none;
  color: var(--whiteColor);
  font-size: 2rem;
}

section.product_details {
  background: var(--lightBgColor);
  color: var(--blackColor);
  padding: 6rem 1.5rem;
}
section.product_details .product_all_details {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
section.product_details .product_all_details .gallery-container {
  width: 100%;
  display: flex;
  overflow: hidden;
  max-width: 72rem;
  position: sticky;
  top: 70px;
  background: var(--whiteColor);
  padding: 1.5rem;
}
section.product_details .product_all_details .gallery-container .gallery-main {
  border: 1px solid #e9e9e9;
}
section.product_details .product_all_details .gallery-container .gallery-main .swiper-slide {
  width: 100% !important;
  aspect-ratio: 1/1;
}
section.product_details .product_all_details .gallery-container .gallery-main .swiper-slide img {
  max-width: 100%;
  position: relative;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  max-height: -moz-fit-content;
  max-height: fit-content;
}
section.product_details .product_all_details .gallery-container .gallery-main .swiper-button-prev, section.product_details .product_all_details .gallery-container .gallery-main .swiper-button-next {
  position: absolute;
  bottom: 0;
  right: 0;
  top: auto;
  left: auto;
  height: 3rem;
  width: 3rem;
  min-width: 3rem;
  color: #e9e9e9;
  z-index: 1;
  background: var(--blueColor);
  border: 0;
}
section.product_details .product_all_details .gallery-container .gallery-main .swiper-button-prev::after, section.product_details .product_all_details .gallery-container .gallery-main .swiper-button-next::after {
  font-size: 1.2rem;
}
section.product_details .product_all_details .gallery-container .gallery-main .swiper-button-prev {
  right: 3.5rem;
  border-right: 1px solid #e9e9e9;
}
section.product_details .product_all_details .gallery-container .gallery-thumbs {
  order: -1;
  width: 10rem;
  height: 30rem;
  margin-right: 15px;
  padding-left: 15px;
  max-height: 200px;
}
section.product_details .product_all_details .gallery-container .gallery-thumbs .swiper-wrapper {
  gap: 1.5rem;
}
section.product_details .product_all_details .gallery-container .gallery-thumbs .swiper-wrapper .swiper-slide {
  min-width: 8rem;
  max-height: 8rem;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 8rem;
}
section.product_details .product_all_details .gallery-container .gallery-thumbs .swiper-wrapper .swiper-slide img {
  max-width: 100%;
  width: 100%;
  transition: 0.5s;
  border: 2px solid transparent;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.product_details .product_all_details .gallery-container .gallery-thumbs .swiper-wrapper .swiper-slide:active {
  opacity: 0.9;
}
section.product_details .product_all_details .gallery-container .gallery-thumbs .swiper-wrapper .swiper-slide-thumb-active {
  opacity: 1;
}
section.product_details .product_all_details .gallery-container .gallery-thumbs .swiper-wrapper .swiper-slide-thumb-active img {
  margin-left: -1rem;
  border-color: var(--blueColor);
}
section.product_details .product_all_details .gallery-container .slider_btn {
  position: relative;
  margin-right: 0;
}
section.product_details .product_all_details .right_part {
  flex: 1 1 auto;
  width: 100%;
  max-width: 48%;
}
section.product_details .main_description_part {
  background: var(--whiteColor);
  color: var(--blackColor);
  padding: 2rem;
  margin-top: 5rem;
  max-height: 60rem;
  overflow-y: auto;
  padding-right: 15px;
  padding-top: 0;
}
section.product_details .main_description_part .highlight_point {
  width: -moz-fit-content;
  width: fit-content;
  background: var(--whiteColor);
  color: var(--blackColor);
  padding: 1.5rem 3rem;
  font-weight: 700;
  border-radius: 3.4rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
  border: 1px solid #ccc;
}
section.product_details .main_description_part .technical_details {
  color: var(--whiteColor);
}
section.product_details .main_description_part .technical_details table {
  color: var(--blackColor);
  margin: 0px 0px;
  border: 1px solid #ccc;
}
section.product_details .main_description_part .technical_details table td {
  vertical-align: middle;
  background: transparent;
  color: var(--blackColor);
  padding: 1.2rem 1.2rem;
}
section.product_details .main_description_part .technical_details table td:first-child {
  font-weight: 600;
}
section.product_details .main_description_part p {
  line-height: 2.6rem;
  font-size: 1.5rem;
  color: var(--blackColor);
}

.product_inner_details h1 {
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}
.product_inner_details .rating_part {
  margin: 1.5rem 0rem;
  display: flex;
  align-items: center;
  font-weight: 700;
  gap: 10px;
}
.product_inner_details .rating_part .rating i {
  margin-right: 5px;
  color: #ffb21d;
}
.product_inner_details .rating_part span svg {
  width: 1.8rem;
  height: 1.8rem;
  color: #ffb21d;
}
.product_inner_details .price_part {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product_inner_details .price_part b.price-item {
  font-size: 2.2rem;
  font-weight: 700;
}
.product_inner_details .price_part s.price-item {
  font-size: 1.6rem;
  opacity: 0.75;
  font-weight: normal;
}
.product_inner_details .price_part .sale-badge {
  background: #e41616;
  color: var(--whiteColor);
  line-height: normal;
  height: auto;
  padding: 0;
  font-size: 1.4rem;
  padding: 6px 10px;
  border-radius: 1.8rem;
  font-weight: 600;
}
.product_inner_details .price_part .sale-badge.sold_out {
  background: var(--blackColor);
  color: rgba(255, 255, 255, 0.6901960784);
}
.product_inner_details .sku_number {
  opacity: 0.75;
  margin: 1rem 0rem;
}
.product_inner_details .product_desc {
  opacity: 0.75;
  font-size: 1.5rem;
  line-height: 2.6rem;
  max-height: 20rem;
  font-weight: 400;
  overflow-y: auto;
  padding-right: 1rem;
}
.product_inner_details .product_desc p {
  margin-bottom: 0;
}
.product_inner_details .product_desc::-webkit-scrollbar {
  width: 3px;
}
.product_inner_details .innerside_desc {
  margin-top: 1rem;
}
.product_inner_details .innerside_desc .more_desc_tag {
  width: 100%;
  border-radius: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--blackColor);
}
.product_inner_details .innerside_desc .accordion-item {
  color: var(--blackColor);
  border: 1px solid rgba(204, 204, 204, 0.3882352941);
}
.product_inner_details .innerside_desc .accordion-item .accordion-button {
  border: 0;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.5rem 1.5rem;
  background-color: rgba(238, 238, 238, 0.49);
  color: var(--blackColor);
  outline: 0;
  box-shadow: none;
}
.product_inner_details .innerside_desc .accordion-item .accordion-button:focus {
  border-color: rgba(204, 204, 204, 0.3882352941);
  box-shadow: none;
  outline: 0;
}
.product_inner_details .innerside_desc .accordion-item .accordion-button:after {
  content: "\f13a";
  background: inherit;
  border-radius: 100%;
  background-size: 12px;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  font-family: "FontAwesome";
  padding: 0;
  font-size: 2.2rem;
  color: var(--blueColor);
}
.product_inner_details .innerside_desc .accordion-item .accordion-body {
  padding: 1.5rem;
  background: var(--whiteColor);
}
.product_inner_details .innerside_desc .accordion-item .accordion-body .key_features .title {
  font-size: 1.8rem;
  color: var(--blueColor);
  font-weight: 600;
  margin-bottom: 1rem;
}
.product_inner_details .innerside_desc .accordion-item .accordion-body .key_features ul {
  margin: 0;
}
.product_inner_details .innerside_desc .accordion-item .accordion-body .key_features ul li {
  font-size: 1.5rem;
  padding-bottom: 1rem;
  line-height: 2.4rem;
}
.product_inner_details .innerside_desc .accordion-item .accordion-body .key_features ul li:last-child {
  padding-bottom: 0;
}
.product_inner_details .innerside_desc .accordion-item .accordion-body .key_features p {
  margin-top: 1rem;
  margin-bottom: 0;
}
.product_inner_details .innerside_desc .accordion-item .accordion-body .inside_box_list .style_text {
  font-weight: 600;
  font-style: italic;
}
.product_inner_details .innerside_desc .accordion-item .accordion-body .inside_box_list .without_list {
  margin-top: 1rem;
}
.product_inner_details .innerside_desc .accordion-item .accordion-body p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.6rem;
  color: var(--blackColor);
  margin-bottom: 0;
}
.product_inner_details .innerside_desc .accordion-item .accordion-body .technical_tabel {
  color: var(--blackColor);
  background: var(--whiteColor);
}
.product_inner_details .innerside_desc .accordion-item .accordion-body .technical_tabel .table-responsive::-webkit-scrollbar {
  height: 3px;
}
.product_inner_details .innerside_desc .accordion-item .accordion-body .technical_tabel table.table-bordered {
  border-color: #ccc;
}
.product_inner_details .innerside_desc .accordion-item .accordion-body .technical_tabel tr td {
  font-size: 1.5rem;
  padding: 1.5rem 2rem;
  min-width: 30rem;
}
.product_inner_details .innerside_desc .accordion-item .accordion-body .technical_tabel tr td:nth-child(1) {
  font-size: 1.6rem;
  color: var(--blackColor);
  background-color: rgba(238, 238, 238, 0.49);
  min-width: 25rem;
  font-weight: 500;
}
.product_inner_details .product-inventory {
  text-align: left;
  margin-top: 2rem;
}
.product_inner_details .product-inventory p.inventory-text {
  padding-bottom: 7px;
  margin-top: 0;
  font-weight: 700;
  border-bottom: 4px solid #0cb771;
  margin-bottom: 0;
}
.product_inner_details .quantity_valid_msg {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: left;
  padding: 1.5rem;
  border-radius: 5px;
  background: rgba(255, 0, 0, 0.1019607843);
  color: #ff0000;
  margin-top: 2rem;
}
.product_inner_details .items_number {
  margin-top: 2rem;
}
.product_inner_details .items_number .title {
  font-size: 1.6rem;
  font-weight: 700;
}
.product_inner_details .items_number .listing {
  overflow-y: auto;
  padding: 0rem 1rem 1rem 1rem;
}
.product_inner_details .items_number .listing ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: nowrap;
}
.product_inner_details .items_number .listing ul li.items_number {
  background: var(--whiteColor);
  width: -moz-fit-content;
  flex: 1 1 0%;
  border-radius: 5px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  max-width: -moz-fit-content;
  max-width: 17rem;
  min-width: 17rem;
  border: 2px solid #e9f9fd;
  cursor: pointer;
  transition: all 0.5ms;
}
.product_inner_details .items_number .listing ul li.items_number.active {
  border-color: #094882;
}
.product_inner_details .items_number .listing ul li.items_number .number_item {
  padding: 5px 10px;
  background: #e9f9fd;
  font-weight: 600;
  font-size: 1.6rem;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.product_inner_details .items_number .listing ul li.items_number .price {
  padding: 1rem;
  line-height: 2.3rem;
}
.product_inner_details .items_number .listing ul li.items_number .price .price-item {
  font-size: 1.5rem;
}
.product_inner_details .items_number .listing ul li.items_number .price p {
  margin-bottom: 0;
  font-size: 1.4rem;
}
.product_inner_details .items_number .listing ul li.items_number .available_stock {
  font-weight: 700;
  padding-top: 5px;
  color: var(--blueColor);
  font-size: 1.4rem;
}
.product_inner_details .items_number .listing ul li.items_number .available_stock.out_stock {
  opacity: 0.5;
}
.product_inner_details .items_number .listing::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}
.product_inner_details .stock_quanity {
  margin-top: 2rem;
}
.product_inner_details .stock_quanity label.form-label {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0;
}
.product_inner_details .stock_quanity .qty_btn {
  border-color: var(--blackColor);
  min-height: auto;
  padding: 0.5rem 1rem;
  width: -moz-max-content;
  width: 11.3rem;
  justify-content: space-between;
}
.product_inner_details .stock_quanity .label_btn {
  padding: 0;
  color: var(--blackColor);
  font-size: 1.6rem;
}
.product_inner_details .stock_quanity .form-control {
  color: var(--blackColor);
  padding: 0;
  font-size: 1.6rem;
  line-height: normal;
}
.product_inner_details .write_review_btn {
  margin: 2rem auto;
}
.product_inner_details .cart_btn {
  display: flex;
  gap: 1rem;
  margin-top: 0rem;
  max-width: 100%;
  flex-wrap: wrap;
  flex-direction: column;
}
.product_inner_details .cart_btn .cart_group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product_inner_details .cart_btn .cart_group form {
  flex: 1 1 0%;
}
.product_inner_details .cart_btn .stock_quanity {
  margin-bottom: 1rem;
}
.product_inner_details .cart_btn .btn_custom {
  margin: 0;
  width: 100%;
  color: var(--whiteColor);
  flex: 1 1 0%;
  min-height: 5rem;
}
.product_inner_details .cart_btn .btn_custom.btn_2 {
  background: #32a756;
}
.product_inner_details .cart_btn .btn_custom.btn_3 {
  background: #1990c6;
}
.product_inner_details .payment_security_box {
  width: -moz-fit-content;
  width: fit-content;
  background: var(--blackColor);
  margin-top: 2rem;
  padding: 2rem;
  color: var(--whiteColor);
  border-radius: 1rem;
  max-width: 30rem;
}
.product_inner_details .payment_security_box h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0;
}
.product_inner_details .social_icons {
  margin-top: 2rem;
  visibility: visible !important;
}
.product_inner_details .social_icons ul {
  justify-content: flex-start;
}
.product_inner_details .social_icons ul li {
  display: flex;
}
.product_inner_details .social_icons ul li a {
  background: var(--blueColor);
}

.form-control {
  /* Hide the number input spin buttons */
}
.form-control::-webkit-inner-spin-button, .form-control::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.customers_review {
  position: sticky;
  top: 8rem;
}

.customer_write_review {
  padding: 3rem;
  transition: all 0.5s;
  margin-top: 0;
  background: var(--whiteColor);
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.25);
  max-width: 55rem;
  margin-left: auto;
}
.customer_write_review h3 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.customer_write_review .star-rating {
  font-size: 1.5rem;
  cursor: pointer;
  margin-top: 10px;
}
.customer_write_review .star-rating i {
  color: #a1a1a1;
  transition: color 0.3s;
  font-size: 2rem;
}
.customer_write_review .star-rating i:hover {
  color: #ffb21d;
}
.customer_write_review .star-rating i.active {
  color: #ffb21d;
}
.customer_write_review .review_box .rating {
  text-align: center;
  font-weight: 600;
  margin-bottom: 1rem;
}
.customer_write_review .review_box .rating label {
  margin-bottom: 5px;
}
.customer_write_review .review_box .form-group {
  margin-bottom: 1.5rem;
}
.customer_write_review .review_box .form-group .form-control {
  font-size: 1.6rem;
  padding: 1rem 1.5rem;
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.1882352941);
}
.customer_write_review .review_box .form-group .form-control:focus {
  outline: 0;
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.1882352941);
}
.customer_write_review .review_box .form-group label.form-label {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: left;
  display: block;
}
.customer_write_review .btn_custom.btn_1 {
  margin-top: 2rem;
}

section.available_service_part {
  padding: 5rem 2rem;
  background: var(--blueColor);
  color: var(--whiteColor);
}
section.available_service_part ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 600;
  font-size: 1.5rem;
  flex-wrap: wrap;
  row-gap: 2rem;
}
section.available_service_part ul li {
  flex: 1 1 0%;
}
section.available_service_part ul li .text {
  padding-top: 10px;
}
section.available_service_part ul li i {
  font-size: 3rem;
}
section.available_service_part ul li a {
  color: rgba(252, 252, 252, 0.7490196078);
  font-weight: 400;
  font-size: 1.2rem;
  text-decoration: underline;
}

section.recently_viewed {
  padding: 6rem 2rem;
}
section.recently_viewed .product-card .inner_body .card-media-wrapper img {
  min-height: 28rem;
  max-height: 28rem;
}

section.search_filter {
  padding: 3rem 2rem;
  background: var(--blueColor);
  color: var(--whiteColor);
}
section.search_filter .search_btn .btn_custom.btn_1 {
  min-width: 15rem;
  background: var(--whiteColor);
  color: var(--blackColor);
}
section.search_filter .search_btn svg {
  margin-left: 5px;
}

section.all_collection {
  background: var(--lightBgColor);
  padding: 5rem 2rem;
}
section.all_collection .row_space {
  --bs-gutter-y: 1.5rem;
}
section.all_collection .collection_box {
  text-align: center;
  border: 1px solid #d8d8d8;
  padding: 1.5rem;
  border-radius: 1.5rem;
  display: block;
  background: var(--whiteColor);
  width: 100%;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}
section.all_collection .collection_box .img-sec {
  overflow: hidden;
  background: var(--whiteColor);
  border-radius: 1rem;
}
section.all_collection .collection_box .img-sec img {
  width: 100%;
  max-width: 25rem;
  margin: auto;
  text-align: center;
  transition: transform 900ms cubic-bezier(0, 0, 0.3, 1);
  border-radius: 1rem;
  max-height: 25rem;
  min-height: 25rem;
  -o-object-fit: cover;
  object-fit: cover;
}
section.all_collection .collection_box .content_part {
  margin-top: 1rem;
  background: #3d5585;
  color: var(--whiteColor);
  border-radius: 5px;
  padding: 1.5rem;
}
section.all_collection .collection_box .content_part h2 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 1.8rem;
}
section.all_collection .collection_box .content_part .total {
  padding-top: 1rem;
  opacity: 0.75;
}
section.all_collection .collection_box .content_part button.btn_custom.btn_1 {
  margin-top: 1rem;
  min-width: 10rem;
  height: 4rem;
  background: var(--whiteColor);
  color: var(--blackColor);
}
section.all_collection .collection_box:hover .img-sec img {
  transform: scale(1.1);
}

section.cart_page {
  padding: 6rem 2rem;
}
section.cart_page .cart_table .table-responsive {
  padding-right: 0;
  width: 100%;
  white-space: normal;
  overflow-y: auto;
  max-height: 100vh;
  margin-right: 2rem;
}
section.cart_page .cart_table .table-responsive::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}
section.cart_page .cart_table .product_img-sec {
  position: relative;
  overflow: hidden;
  min-width: 6rem;
  max-width: 6rem;
  height: 6rem;
}
section.cart_page .cart_table .product_img-sec a {
  display: block;
}
section.cart_page .cart_table .product_img-sec img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0, 0, 0.3, 1);
}
section.cart_page .cart_table thead {
  border: 0;
}
section.cart_page .cart_table thead tr,
section.cart_page .cart_table thead th {
  border: 0;
  padding: 0rem 1rem;
}
section.cart_page .cart_table thead th.product_img {
  width: 7.5rem;
  min-width: 7.5rem;
}
section.cart_page .cart_table thead th.desc_size {
  width: 30rem;
  min-width: 30rem;
}
section.cart_page .cart_table thead th.quanity_size {
  width: 17rem;
  min-width: 17rem;
}
section.cart_page .cart_table thead th.total_size {
  min-width: 10rem;
}
section.cart_page .cart_table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1607843137);
}
section.cart_page .cart_table tbody tr:hover .product_img-sec img {
  transform: scale(1.1);
}
section.cart_page .cart_table tbody tr .quanity_part {
  display: flex;
  align-items: center;
  gap: 1rem;
}
section.cart_page .cart_table tbody tr .quanity_part .qty_btn {
  height: auto;
  font-weight: 700;
  max-width: 12rem;
  margin-top: 0;
  border-color: var(--blackColor);
  min-height: auto;
  padding: 0.5rem 1rem;
  width: 11.3rem;
  justify-content: space-between;
}
section.cart_page .cart_table tbody tr .quanity_part .qty_btn .label_btn {
  padding: 0;
  color: var(--blackColor);
  font-size: 1.4rem;
}
section.cart_page .cart_table tbody tr .quanity_part .qty_btn .form-control {
  color: var(--blackColor);
  padding: 0;
  font-size: 1.6rem;
  line-height: normal;
}
section.cart_page .cart_table tbody tr .quanity_part .qty_btn .form-control::-moz-placeholder {
  color: var(--blackColor);
}
section.cart_page .cart_table tbody tr .quanity_part .qty_btn .form-control::placeholder {
  color: var(--blackColor);
}
section.cart_page .cart_table tbody tr .total_price {
  font-weight: 700;
  white-space: nowrap;
}
section.cart_page .cart_table tbody tr td {
  border: 0;
  padding: 1rem 0rem;
  padding-right: 1rem;
  padding-left: 1rem;
}
section.cart_page .cart_table tbody tr:last-child {
  border-bottom: 0;
}
section.cart_page .cart_table tbody tr .delt_btn button.label_btn {
  background: var(--blueColor);
  color: var(--whiteColor);
  width: 2.5rem;
  border-radius: 4px;
  height: 2.5rem;
  min-width: 2.5rem;
  outline: 0;
  border: none;
  font-size: 1.2rem;
}
section.cart_page .cart_table tbody .inner_desc h3 {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 5px;
  position: relative;
  line-height: normal;
}
section.cart_page .cart_table tbody .inner_desc h3 a:hover {
  text-decoration: underline;
}
section.cart_page .cart_table tbody .inner_desc h3:hover {
  --underline-scale: 1;
}
section.cart_page .cart_table tbody .inner_desc .price {
  font-size: 1.4rem;
}
section.cart_page .cart_table tbody .inner_desc .discount_line {
  font-size: 1.2rem;
  margin-top: 5px;
}
section.cart_page .cart_table tbody .inner_desc .cart_item_price {
  font-size: 1.2rem;
  font-weight: 700;
}
section.cart_page .cart_right_part {
  position: sticky;
  top: 9rem;
}
section.cart_page .cart_right_part .shipping_unlocked {
  background: rgba(12, 183, 113, 0.1019607843);
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
  border-top: 4px solid #0cb771;
  font-weight: 700;
  font-size: 1.4rem;
}
section.cart_page .cart_right_part .shipping_unlocked span {
  color: #0cb771;
}
section.cart_page .cart_right_part .estimated_part {
  margin-top: 1.5rem;
}
section.cart_page .cart_right_part .estimated_part .shipping_total {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  font-weight: 700;
}
section.cart_page .cart_right_part .estimated_part .shipping_total .estimated_total {
  font-weight: 700;
  font-size: 1.8rem;
}
section.cart_page .cart_right_part .estimated_part .shipping_total .total {
  font-size: 2.4rem;
  font-weight: 700;
}
section.cart_page .cart_right_part .estimated_part .footer-tex.rte {
  font-size: 1.4rem;
  opacity: 0.75;
  text-align: right;
  padding: 10px 0px;
}
section.cart_page .cart_right_part .estimated_part .btn_custom.btn_1 {
  width: 100%;
  border-radius: 1rem;
  margin-top: 1rem;
}

section.product_like {
  background: var(--lightBgColor);
  padding: 6rem 2rem;
}
section.product_like .product-card {
  background: var(--whiteColor);
}

section.collection_parts {
  padding: 6rem 2rem;
}
section.collection_parts .books_collection {
  margin-bottom: 4rem;
}
section.collection_parts .books_collection .left_collection_part {
  position: sticky;
  top: 20px;
}
section.collection_parts .books_collection:last-child {
  margin-bottom: 0;
}
section.collection_parts .box {
  position: relative;
  z-index: 1;
  color: var(--whiteColor);
  overflow: hidden;
  border-radius: 15px;
}
section.collection_parts .box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: var(--blackColor);
  z-index: 1;
  opacity: 0.7;
}
section.collection_parts .box .media_part .img-sec img {
  width: 100%;
  transition: transform 800ms cubic-bezier(0, 0, 0.3, 1);
  border-radius: 5px;
  min-height: 42rem;
  max-height: 42rem;
  -o-object-fit: cover;
     object-fit: cover;
}
section.collection_parts .box .featured-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  width: 100%;
  text-align: center;
  z-index: 2;
}
section.collection_parts .box .featured-content h2 {
  font-weight: 700;
  font-size: 1.8rem;
  max-width: 80%;
  margin: auto;
}
section.collection_parts .box:hover .img-sec img {
  transform: scale(1.1);
  z-index: 1;
}
section.collection_parts .box .btn_custom.btn_1 {
  min-width: 10rem;
  margin-top: 2rem;
  height: auto;
  background: var(--whiteColor);
  color: var(--blackColor);
  font-weight: 600;
}
section.more_category_part .box .media_part .img-sec img {
  min-height: 40rem;
  max-height: 40rem;
  -o-object-fit: cover;
  object-fit: cover;
}

@keyframes slideIn {
  0% {
    transform: translateY(2rem);
    opacity: 0.01;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUpDown {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }
  50% {
    transform: translateY(-100%);
    opacity: 0;
  }
  51% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes carousalScaleAnimation {
  0% {
    opacity: 0.8;
    scale: 1.05;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0.01;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--color-pulse), 0.5);
  }
  100% {
    box-shadow: 0 0 0 1rem rgba(var(--color-pulse), 0);
  }
}
@keyframes growWidthFromRight {
  0% {
    transform: scaleX(0);
    transform-origin: right;
  }
  100% {
    transform: scaleX(1);
    transform-origin: right;
  }
}
.slider_btn .swiper-button-next,
.slider_btn .swiper-button-prev {
  background: var(--blueColor);
  color: var(--whiteColor);
  width: 3rem;
  border-radius: 5px;
  min-width: 3rem;
  height: 3rem;
}
.slider_btn .swiper-button-next:after,
.slider_btn .swiper-button-prev:after {
  font-size: 1.4rem;
}

.coming_soon_part {
  background: var(--whiteColor);
  padding: 3rem;
  text-align: center;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.25);
  max-width: 90%;
  margin: 3rem auto;
  width: 100%;
}
.coming_soon_part img {
  max-width: 25rem;
}

.checkout_header {
  padding: 1.5rem 2rem;
  background: var(--whiteColor);
}
.checkout_header.sticky {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
}
.checkout_header .logo img {
  max-width: 15rem;
}
.checkout_header .top_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout_header .top_header i {
  color: var(--blueColor);
  font-size: 2rem;
}

section.checkout_form {
  background: #F5F5F4;
  padding: 6rem 2rem;
}
section.checkout_form .checkout_form_part {
  margin-bottom: 2.5rem;
}
section.checkout_form .checkout_form_part .heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
section.checkout_form .checkout_form_part .heading h2 {
  margin-bottom: 0;
}
section.checkout_form .checkout_form_part .heading a {
  text-decoration: underline;
  font-size: 1.6rem;
  color: var(--blueColor);
  font-weight: 600;
}
section.checkout_form .checkout_form_part .delivery_part .country_code {
  position: relative;
}
section.checkout_form .checkout_form_part .delivery_part .country_code label.form-label {
  position: absolute;
  padding-left: 1.5rem;
  opacity: 0.8;
  font-size: 12px;
  padding-top: 7px;
}
section.checkout_form .checkout_form_part .delivery_part .country_code .form-select {
  padding-top: 25px;
  padding-bottom: 10px;
}
section.checkout_form .checkout_form_part .shipping_method {
  margin-top: 1.5rem;
}
section.checkout_form .checkout_form_part .shipping_method .title {
  padding-bottom: 1.5rem;
  font-weight: 600;
}
section.checkout_form .checkout_form_part .shipping_method .shipping_box {
  background: #f5f5f5;
  text-align: left;
  font-size: 1.4rem;
}
section.checkout_form .checkout_form_part .shipping_method .shipping_box .form-check {
  padding: 1.5rem 3rem 1.5rem 1.5rem;
}
section.checkout_form .checkout_form_part .shipping_method .shipping_box .form-check.active {
  background: #cdd6e8;
}
section.checkout_form .checkout_form_part .shipping_method .shipping_box .form-check .form-check-label {
  text-align: left;
  display: flex;
}
section.checkout_form .checkout_form_part .shipping_method .shipping_box .form-check .form-check-label .content {
  flex-grow: 1;
}
section.checkout_form .checkout_form_part .shipping_method .shipping_box .form-check .form-check-label .content .text2 {
  color: #5d6a79;
  padding-top: 2px;
}
section.checkout_form .checkout_form_part .shipping_method .shipping_box .form-check .form-check-label .price {
  font-weight: 600;
}
section.checkout_form .checkout_form_part .shipping_method .shipping_box .form-check .form-check-input[type=radio], section.checkout_form .checkout_form_part .shipping_method .shipping_box .form-check .form-check-input {
  margin-left: 0rem;
  margin-right: 1rem;
}
section.checkout_form .checkout_form_part .shipping_method .shipping_box .form-check-input:focus {
  box-shadow: none;
}
section.checkout_form .checkout_form_part .shipping_method .accordion .accordion-item {
  border: 0 !important;
  margin-bottom: 1.5rem;
}
section.checkout_form .checkout_form_part .shipping_method .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
section.checkout_form .checkout_form_part .shipping_method .accordion .accordion-item .accordion-button {
  font-size: 1.5rem;
  color: var(--blackColor);
  font-weight: 400;
  padding: 1.5rem 1.5rem;
  border-radius: 0;
  width: 100%;
  background-color: rgba(43, 71, 126, 0.1803921569);
  border: 0;
  border-radius: 10px;
}
section.checkout_form .checkout_form_part .shipping_method .accordion .accordion-item .accordion-button .form-check {
  margin-bottom: 0;
}
section.checkout_form .checkout_form_part .shipping_method .accordion .accordion-item .accordion-button .form-check .form-check-label {
  padding-top: 5px;
  padding-left: 1rem;
}
section.checkout_form .checkout_form_part .shipping_method .accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
section.checkout_form .checkout_form_part .shipping_method .accordion .accordion-item .accordion-body {
  padding: 2rem;
  background: rgba(0, 0, 0, 0.0431372549);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
section.checkout_form .checkout_form_part .shipping_method .accordion .accordion-item.different_address .accordion-button {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
section.checkout_form .checkout_form_part .shipping_method .accordion .accordion-item.different_address .accordion-button.collapsed {
  border-radius: 10px;
}
section.checkout_form .checkout_form_part .small_letter {
  font-size: 14px;
  margin-bottom: 0;
}
section.checkout_form .checkout_form_part .payment_method_list {
  margin-top: 1.5rem;
}
section.checkout_form .checkout_form_part .payment_method_list .payment_box .title_part {
  font-size: 1.5rem;
  color: var(--blackColor);
  font-weight: 400;
  padding: 1.5rem 1.5rem;
  border-radius: 0;
  width: 100%;
  background-color: rgba(43, 71, 126, 0.1803921569);
  border: 0;
}
section.checkout_form .checkout_form_part .payment_method_list .payment_box .title_part:focus {
  box-shadow: none;
}
section.checkout_form .checkout_form_part .payment_method_list .payment_box .title_part span.card_icon {
  margin-left: auto;
}
section.checkout_form .checkout_form_part .payment_method_list .payment_box .title_part::after {
  display: none;
}
section.checkout_form .checkout_form_part .payment_method_list .payment_box .main_body {
  padding: 2rem;
  background: rgba(0, 0, 0, 0.0431372549);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
section.checkout_form .checkout_form_part .payment_method_list .payment_box .main_body span.right_icon {
  position: absolute;
  right: 2rem;
  top: 2rem;
  opacity: 0.7;
}
section.checkout_form .checkout_form_part .payment_method_list .payment_box .main_body .title {
  font-size: 1.6rem;
  font-weight: 600;
  padding-bottom: 10px;
}
section.checkout_form .checkout_form_part .payment_method_list .payment_box .main_body .checkout_form_part {
  margin-bottom: 0;
}
section.checkout_form .checkout_form_part .payment_method_list .wallet_part {
  text-align: center;
}
section.checkout_form .checkout_form_part .payment_method_list .wallet_part img {
  max-width: 15rem;
  text-align: center;
  margin: auto;
}
section.checkout_form .checkout_form_part .payment_method_list .wallet_part .wallet_content {
  padding-top: 1.5rem;
  max-width: 80%;
  margin: auto;
  font-size: 1.5rem;
}
section.checkout_form .checkout_form_part .payment_method_list .card_icon {
  display: inline-flex;
  margin-left: auto;
}
section.checkout_form .checkout_form_part .payment_method_list .card_icon img {
  margin-left: 5px;
  width: 3.8rem;
  height: 2.4rem;
  -o-object-fit: cover;
     object-fit: cover;
}
section.checkout_form .checkout_form_part .complete_btn .btn_custom {
  border-radius: 1rem;
  margin-left: 0;
  width: 100%;
  margin-top: 2rem;
}
section.checkout_form .checkout_form_part:last-child {
  margin-bottom: 0;
}
section.checkout_form .checkout_form_part.billing_address_part .billing_address_radio {
  background: #f5f5f5;
  text-align: left;
  font-size: 1.4rem;
}
section.checkout_form .checkout_form_part.billing_address_part .form-check {
  padding: 1.5rem 3rem 1.5rem 1.5rem;
}
section.checkout_form .checkout_form_part.billing_address_part .form-check.active {
  background: #cdd6e8;
}
section.checkout_form .checkout_form_part.billing_address_part .form-check .form-check-input {
  margin-left: 0rem;
  margin-right: 1rem;
  margin-top: 0;
}
section.checkout_form .main_listing {
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 1rem;
}
section.checkout_form .main_listing .add_cart_listing {
  background: #f5f5f4;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 5px;
}
section.checkout_form .main_listing .add_cart_listing ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
section.checkout_form .main_listing .add_cart_listing ul li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
section.checkout_form .main_listing .add_cart_listing ul li .img-sec {
  position: relative;
}
section.checkout_form .main_listing .add_cart_listing ul li .img-sec span.number {
  position: absolute;
  right: 0;
  font-size: 10px;
  background: #666666;
  color: var(--whiteColor);
  width: 2.2rem;
  height: 2.2rem;
  padding: 2px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
}
section.checkout_form .main_listing .add_cart_listing ul li .img-sec img {
  width: 5rem;
  height: 5rem;
  min-width: 5rem;
  border-radius: 5px;
}
section.checkout_form .main_listing .add_cart_listing ul li .content {
  font-size: 1.4rem;
  font-weight: 500;
  flex: 1 1 0%;
}
section.checkout_form .main_listing .add_cart_listing ul li .content .discount_line {
  padding-top: 5px;
  font-size: 1.2rem;
  font-weight: normal;
  color: #666;
}
section.checkout_form .main_listing .add_cart_listing ul li .price {
  font-size: 1.4rem;
}
section.checkout_form .main_listing .add_cart_listing ul li .price s.price-item {
  font-size: 1.2rem;
  font-weight: normal;
  color: #666;
  display: block;
  text-align: right;
}
section.checkout_form .main_listing .add_cart_listing:last-child {
  margin-bottom: 0;
}
section.checkout_form .referal_part {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #ededed;
  padding: 1rem 1rem;
  border-radius: 5px;
  margin-top: 1.5rem;
}
section.checkout_form .referal_part .total_referal_point span {
  font-weight: 600;
}
section.checkout_form .referal_part .fill_form {
  display: flex;
  position: relative;
  flex-grow: 1;
}
section.checkout_form .referal_part .fill_form .form-floating {
  margin-bottom: 0;
  width: 100%;
}
section.checkout_form .referal_part .fill_form .form-floating .form-control {
  padding: 2.5rem 1.5rem 1rem;
}
section.checkout_form .referal_part .fill_form .form-floating label {
  padding: 1.8rem 1.75rem;
  font-size: 1.5rem;
}
section.checkout_form .referal_part .fill_form .redeam_btn {
  position: absolute;
  right: 1rem;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.checkout_form .referal_part .btn_custom.btn_1 {
  margin-top: 0;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}
section.checkout_form .referal_part .btn_custom.btn_1 {
  margin-top: 0;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
  margin-bottom: 0;
  border-radius: 5px;
  font-size: 1.4rem;
}
section.checkout_form .common_specing {
  padding: 2rem;
  background: var(--whiteColor);
  position: sticky;
  top: 0;
}
section.checkout_form .short_brif {
  margin-bottom: 2rem;
  display: none;
}
section.checkout_form .short_brif .accordion-item .short_part {
  display: flex;
  align-items: center;
  background-color: #f5f5f4;
}
section.checkout_form .short_brif .accordion-item .short_part .accordion-button {
  display: flex;
  font-size: 1.5rem;
  color: var(--blackColor);
  font-weight: 500;
  border-radius: 0;
  background-color: #f5f5f4;
  box-shadow: none;
  padding: 1.5rem 1rem;
}
section.checkout_form .short_brif .accordion-item .short_part .order_price {
  font-size: 1.6rem;
  font-weight: 600;
  padding: 0px 10px;
}
section.checkout_form .right_part .payment_card_details {
  margin-top: 3rem;
}
section.checkout_form .right_part .payment_card_details ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
section.checkout_form .right_part .payment_card_details ul li {
  display: flex;
  font-size: 1.5rem;
  align-items: center;
  padding-bottom: 1.5rem;
}
section.checkout_form .right_part .payment_card_details ul li .right_text {
  margin-left: auto;
}
section.checkout_form .right_part .payment_card_details ul li i {
  margin-left: 5px;
  font-size: 12px;
}
section.checkout_form .right_part .payment_card_details ul li span {
  margin-left: auto;
}
section.checkout_form .right_part .payment_card_details ul li.total {
  font-size: 1.8rem;
  font-weight: 600;
}
section.checkout_form .right_part .payment_card_details ul li.total .small_letter {
  font-size: 1.2rem;
  font-weight: 400;
}
section.checkout_form .right_part .payment_card_details ul li.total_saving {
  font-size: 1.4rem;
  font-weight: 500;
}
section.checkout_form .right_part .payment_card_details ul li:last-child {
  padding-bottom: 0;
}
section.checkout_form .right_part .payment_card_details ul li.discount_line span {
  color: #666;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 4rem;
  height: 4rem;
  background-color: var(--blueColor);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 2.4rem;
  cursor: pointer;
  display: none;
  /* Initially hidden */
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
}

.scroll-to-top:hover {
  background-color: #0056b3;
}

.scroll-to-top.show {
  display: flex;
  /* Show when user scrolls */
}

section.contact_us_part {
  padding: 6rem 2rem;
  background: #fff7f3;
  color: var(--blackColor);
}
section.contact_us_part .top_title p {
  opacity: 0.75;
}
section.contact_us_part .submit_btn .btn_custom {
  margin-left: 0;
  margin-top: 0rem;
}
section.contact_us_part .contact_details_part {
  animation: slideIn 800ms cubic-bezier(0, 0, 0.3, 1) forwards;
  animation-delay: calc(var(--animation-order) * 150ms);
  background: #324d80;
  color: var(--whiteColor);
  padding: 2rem;
  border-radius: 1rem;
  font-size: 1.5rem;
  position: sticky;
  top: 90px;
}
section.contact_us_part .contact_details_part ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
section.contact_us_part .contact_details_part ul li {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
section.contact_us_part .contact_details_part ul li i {
  opacity: 0.5;
  font-size: 1.6rem;
}
section.contact_us_part .contact_details_part ul li a {
  color: var(--whiteColor);
}
section.contact_us_part .contact_details_part ul li:last-child {
  margin-bottom: 0;
}
section.contact_us_part .contact_details_part ul li a.link-text {
  color: var(--whiteColor);
  position: relative;
  --underline-scale: 0;
}
section.contact_us_part .contact_details_part ul li a.link-text::after {
  content: "";
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  width: 100%;
  background: var(--whiteColor);
  transition: transform 300ms cubic-bezier(0, 0, 0.3, 1);
  transform: scaleX(var(--underline-scale));
  transform-origin: bottom right;
}
section.contact_us_part .contact_details_part ul li a.link-text:hover {
  --underline-scale: 1;
}
section.contact_us_part .contact_details_part ul li a.link-text:hover::after {
  transform-origin: bottom left;
}
section.contact_us_part .contact_details_part ul li a.link-text i {
  margin-right: 10px;
}
section.contact_us_part .contact_details_part p {
  margin-bottom: 0;
  opacity: 0.75;
}
section.contact_us_part .contact_details_part h5 {
  font-size: 1.6rem;
  font-weight: 600;
}
section.contact_us_part .contact_details_part .social_icons {
  margin-top: 2rem;
}
section.contact_us_part .contact_details_part .social_icons ul {
  margin-left: 0;
  justify-content: flex-start;
}
section.contact_us_part .contact_details_part .social_icons ul li {
  margin-bottom: 0;
}
section.contact_us_part .contact_details_part .social_icons ul li a {
  background: transparent;
  border: 1px solid var(--whiteColor);
  color: var(--whiteColor);
  display: flex;
  justify-content: center;
  align-items: center;
}
section.contact_us_part .contact_details_part .social_icons ul li a i {
  opacity: 1;
  font-size: 1.8rem;
}

.empty_part {
  margin: auto;
  text-align: center;
}
.empty_part h2 {
  font-size: 2.4rem;
  margin-bottom: 0;
  padding-top: 3rem;
  font-weight: 700;
}
.empty_part.empty_cart_page {
  margin-bottom: 3rem;
}

.grid_change {
  flex-direction: row-reverse;
}

.mobile_filter_btn {
  display: none; /* Hidden by default */
}

.section-confetti-trigger {
  height: 0;
  position: relative;
  z-index: 99999;
}

section.login_form {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #094882, #1e3a8a);
  height: 100%;
  min-height: 100vh;
}
section.login_form::before {
  content: "";
  position: absolute;
  width: 20rem;
  height: 20rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 5%;
  left: 15%;
  animation: float 3s infinite linear;
}
section.login_form::after {
  content: "";
  position: absolute;
  width: 15rem;
  height: 15rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  bottom: 5%;
  right: 15%;
  animation: float 3s infinite linear;
  z-index: 0;
}
section.login_form .form_inner {
  background-color: var(--whiteColor);
  color: var(--blackColor);
  margin: auto;
  max-width: 50rem;
  padding: 2rem;
  margin: 3rem auto;
  border-radius: 10px;
  z-index: 2;
  position: relative;
}
section.login_form .form_inner .logo {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
section.login_form .form_inner .logo img {
  max-width: 20rem;
}
section.login_form .form_inner .login_details .heading_part {
  margin-bottom: 2rem;
}
section.login_form .form_inner .login_details h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}
section.login_form .form_inner .login_details p {
  color: rgba(0, 0, 0, 0.6588235294);
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 10px;
}
section.login_form .form_inner .login_details .continue_btn .btn_custom {
  margin: 0;
  width: 100%;
  border-radius: 10px;
}
section.login_form .form_inner .login_details .different_mail_id {
  padding-top: 1rem;
}
section.login_form .form_inner .login_details .continue_btn {
  margin-top: 3rem;
}
section.login_form .form_inner .signup_part {
  text-align: center;
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 600;
}
section.login_form .form_inner .signup_part a {
  color: var(--blueColor);
}

.form-floating > .form-control:not(:-moz-placeholder) ~ label::after {
  background: transparent !important;
}

.form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-select ~ label::after {
  background: transparent !important;
}

.order_header {
  background-color: var(--blackColor);
  color: var(--whiteColor);
  background: transparent linear-gradient(255deg, #00438C 0%, #0853B1 49%, #1265DA 100%) 0% 0% no-repeat padding-box;
  position: relative;
}
.order_header .logo img {
  max-width: 15rem;
  background: var(--whiteColor);
  padding: 1rem;
}
.order_header .navbar ul.navbar-nav {
  margin-left: 2rem;
  gap: 2rem;
}
.order_header .navbar ul.navbar-nav .nav-item .nav-link {
  color: var(--whiteColor);
  border-bottom: 1px solid transparent;
  font-size: 1.4rem;
  width: -moz-fit-content;
  width: fit-content;
}
.order_header .navbar ul.navbar-nav .nav-item .nav-link.active {
  border-color: var(--whiteColor);
}
.order_header .user_profile .dropdown .dropdown-toggle {
  color: var(--whiteColor);
  display: flex;
  align-items: center;
  padding: 0;
  border: 0;
  outline: 0;
  box-shadow: none;
}
.order_header .user_profile .dropdown .dropdown-toggle span {
  width: 3rem;
  display: block;
  height: 3rem;
  border-radius: 100%;
  background: var(--whiteColor);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--blackColor);
  font-weight: 700;
}
.order_header .user_profile .dropdown .dropdown-toggle::after {
  background-image: url(../images/dropdown-svgrepo-com.svg);
  background-size: cover;
  border: 0;
  filter: invert(99%) sepia(4%) saturate(810%) hue-rotate(303deg) brightness(116%) contrast(100%);
  margin: 0;
  vertical-align: baseline;
  background-repeat: no-repeat;
  width: 2.5rem;
  height: 2.5rem;
}
.order_header .user_profile .dropdown .dropdown-menu {
  padding: 1rem;
  background: var(--whiteColor);
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.25);
  border: 0;
  left: inherit;
  width: -moz-fit-content;
  width: fit-content;
  right: 0;
  font-size: 1.4rem;
  margin-top: 1rem;
  min-width: 25rem;
  transform: translateY(10px); /* For smooth dropdown */
  transition: all 0.4s ease;
}
.order_header .user_profile .dropdown .dropdown-menu .user_name {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.order_header .user_profile .dropdown .dropdown-menu .user_name .profile_name {
  width: 3rem;
  display: block;
  height: 3rem;
  border-radius: 100%;
  background: var(--blueColor);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  color: var(--whiteColor);
  font-weight: 600;
}
.order_header .user_profile .dropdown .dropdown-menu .user_name .username {
  font-weight: 500;
}
.order_header .user_profile .dropdown .dropdown-menu .user_name .mail_id {
  font-size: 1rem;
  margin-top: 5px;
}
.order_header .user_profile .dropdown li .dropdown-item {
  background: transparent;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.order_header .user_profile .dropdown li:hover .dropdown-item {
  background: rgba(219, 219, 219, 0.4784313725);
  color: var(--blackColor);
}
.order_header .user_profile .dropdown li:last-child .dropdown-item {
  margin-bottom: 0;
}

section.order_view {
  padding: 5rem 2rem;
  background: #f5f5f5;
  min-height: calc(100vh - 6.5rem);
}
section.order_view h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0;
}
section.order_view .order_listing {
  font-size: 1.4rem;
}
section.order_view .order_listing h2 {
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 0;
}
section.order_view .order_listing .top_tabs {
  display: flex;
  justify-content: flex-end;
}
section.order_view .order_listing .top_tabs .nav-tabs {
  border: 0;
  gap: 1rem;
}
section.order_view .order_listing .top_tabs .nav-tabs .nav-item .nav-link {
  border: 0;
  background: var(--whiteColor);
  border-radius: 0;
  padding: 1rem;
}
section.order_view .order_listing .top_tabs .nav-tabs .nav-item .nav-link i {
  font-size: 1.8rem;
  color: var(--blackColor);
}
section.order_view .order_listing .top_tabs .nav-tabs .nav-item .nav-link.active {
  background: var(--blueColor);
}
section.order_view .order_listing .top_tabs .nav-tabs .nav-item .nav-link.active i {
  color: var(--whiteColor);
}
section.order_view .order_listing .order_list {
  margin-top: 2rem;
}
section.order_view .order_listing .order_list .table-responsive {
  max-height: 50rem;
  overflow-y: auto;
}
section.order_view .order_listing .order_list table {
  vertical-align: middle;
  white-space: nowrap;
}
section.order_view .order_listing .order_list table tbody {
  max-height: 50rem;
  overflow-y: auto;
}
section.order_view .order_listing .order_list table .order_dropdown {
  display: none;
  background: #f8f8f8;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  position: absolute;
  right: 1rem;
  top: 4rem;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-width: -moz-max-content;
  min-width: max-content;
}
section.order_view .order_listing .order_list table .order_dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
section.order_view .order_listing .order_list table .order_dropdown ul li {
  padding: 8px 0;
  cursor: pointer;
}
section.order_view .order_listing .order_list table .order_dropdown ul li:hover {
  color: var(--blueColor);
}
section.order_view .order_listing .order_list table .dot_btn {
  position: relative;
}
section.order_view .order_listing .order_list table th {
  padding: 2rem;
  font-size: 1.5rem;
  color: var(--blackColor);
  font-weight: 700;
}
section.order_view .order_listing .order_list table tr {
  transition: background-color var(--x-duration-base) ease-in-out;
}
section.order_view .order_listing .order_list table tbody tr {
  background: var(--whiteColor);
  vertical-align: top;
}
section.order_view .order_listing .order_list table tbody tr:hover {
  background: #f5f5f5;
}
section.order_view .order_listing .order_list table td {
  padding: 2rem;
  background: transparent;
  font-size: 1.3rem;
}
section.order_view .order_listing .order_list table td .order_details {
  max-height: 20rem;
  overflow-y: auto;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 10px;
}
section.order_view .order_listing .order_list table td .order_details:last-child {
  margin-bottom: 0;
}
section.order_view .order_listing .order_list table td .min_height {
  min-height: 5rem;
  margin-bottom: 1rem;
}
section.order_view .order_listing .order_list table td .min_height:last-child {
  margin-bottom: 0;
}
section.order_view .order_listing .order_list table td .item_group {
  max-height: 25rem;
  overflow-y: auto;
}
section.order_view .order_listing .order_list table td .item_group .item_list {
  padding-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: normal;
}
section.order_view .order_listing .order_list table td .item_group .item_list .order_img {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
section.order_view .order_listing .order_list table td .item_group .item_list .order_img img {
  max-width: 6rem;
  border-radius: 5px;
}
section.order_view .order_listing .order_list table td .item_group .item_list:last-child {
  padding-bottom: 0;
}
section.order_view .order_listing .order_list table td .item_group .item_list .text_part {
  max-width: 100%;
}
section.order_view .order_listing .order_list table td .item_group .item_list span.number {
  position: absolute;
  background: var(--blueColor);
  width: 2rem;
  height: 2rem;
  text-align: center;
  border-radius: 100%;
  display: flex;
  align-items: center;
  color: var(--whiteColor);
  justify-content: center;
  top: 5px;
  font-size: 10px;
  font-weight: 600;
  right: 5px;
}
section.order_view .order_listing .order_list table .buy_page {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
section.order_view .order_listing .order_list table .img_group {
  max-height: 20rem;
  overflow-y: auto;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 10px;
}
section.order_view .order_listing .order_list table .main_group {
  display: flex;
  align-items: center;
  gap: 1rem;
}
section.order_view .order_listing .order_list table .main_group .order_img {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
section.order_view .order_listing .order_list table .main_group .order_img img {
  max-width: 6rem;
  border-radius: 5px;
}
section.order_view .order_listing .order_list table .main_group p {
  margin-bottom: 0;
}
section.order_view .order_listing .order_list table .main_group .number {
  position: absolute;
  background: var(--blueColor);
  width: 2rem;
  height: 2rem;
  text-align: center;
  border-radius: 100%;
  display: flex;
  align-items: center;
  color: var(--whiteColor);
  justify-content: center;
  top: 5px;
  font-size: 10px;
  font-weight: 600;
  right: 5px;
}
section.order_view .order_listing .order_list table .order_img_sec {
  border-radius: 5px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1rem;
}
section.order_view .order_listing .order_list table .order_img_sec p {
  margin-bottom: 0;
}
section.order_view .order_listing .order_list table .order_img_sec .img-sec {
  position: relative;
}
section.order_view .order_listing .order_list table .order_img_sec .number {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #2b477e;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--whiteColor);
  font-size: 9px;
  font-weight: 400;
}
section.order_view .order_listing .order_list table .order_img_sec img {
  width: 5rem;
  height: 5rem;
  min-width: 5rem;
  border-radius: 5px;
}
section.order_view .order_listing .order_list table .order_img_sec:last-child {
  margin-bottom: 0;
}
section.order_view .order_listing .order_list table .item_number {
  color: #707070;
  padding-top: 5px;
}
section.order_view .order_listing .order_list table .dot_btn {
  border: 0;
  background: transparent;
  padding: 1rem;
  outline: 0;
}
section.order_view .order_listing .order_list table .dot_btn:focus {
  box-shadow: none;
}
section.order_view .order_listing .orders_box_listing {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
section.order_view .order_listing .orders_box_listing .order_box {
  flex: 1 1 0%;
  min-width: calc(33.33% - 2rem);
  max-width: calc(33.33% - 2rem);
  background: var(--whiteColor);
  width: -moz-fit-content;
  width: fit-content;
  padding: 2rem;
  font-size: 1.4rem;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}
section.order_view .order_listing .orders_box_listing .order_box .cancel_part {
  background: #f5f5f5;
  padding: 1.5rem;
  border-radius: 10px;
  font-size: 1.4rem;
  display: flex;
  gap: 1rem;
}
section.order_view .order_listing .orders_box_listing .order_box .cancel_part i {
  color: #707070;
}
section.order_view .order_listing .orders_box_listing .order_box .content h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
section.order_view .order_listing .orders_box_listing .order_box .content p {
  margin-bottom: 0;
}
section.order_view .order_listing .orders_box_listing .order_box .content .price {
  margin-top: 1rem;
  color: var(--blackColor);
  font-weight: 700;
}
section.order_view .order_listing .orders_box_listing .order_box .img-sec {
  margin: 2rem 0rem;
}
section.order_view .order_listing .orders_box_listing .order_box .img-sec img {
  width: 100%;
  transition: opacity 0.8s ease-in-out;
  border-radius: 1rem;
  max-height: 37rem;
  min-height: 37rem;
  -o-object-fit: cover;
  object-fit: cover;
  text-align: center;
}
section.order_view .order_listing .orders_box_listing .order_box .btn_custom.btn_1 {
  margin: 0;
  margin-top: 2rem;
  width: 100%;
}

section.all_order_details {
  padding: 5rem 2rem;
  background: #f5f5f5;
}
section.all_order_details .order_details .order_number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
section.all_order_details .order_details .order_number .heading_part {
  display: flex;
}
section.all_order_details .order_details .order_number .heading_part .text_part {
  margin-left: 1rem;
}
section.all_order_details .order_details .order_number .heading_part .text_part h2 {
  font-weight: 600;
}
section.all_order_details .order_details .order_number .heading_part .text_part .date {
  font-size: 1.4rem;
  font-weight: 400;
  color: #666;
}
section.all_order_details .order_details .order_number .btn_custom.btn_1 {
  margin: 0;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: 4rem;
}
section.all_order_details .order_details .cancelled_box {
  background: var(--whiteColor);
  border-radius: 10px;
  padding: 1.5rem;
  color: #707070;
  margin-bottom: 2rem;
  font-size: 1.4rem;
}
section.all_order_details .order_details .cancelled_box .content_part {
  font-size: 1.4rem;
  display: flex;
  gap: 1rem;
}
section.all_order_details .order_details .cancelled_box h2 {
  font-size: 1.5rem;
  color: var(--blackColor);
  font-weight: 600;
}
section.all_order_details .order_details .cancelled_box .date {
  padding: 0.5rem 0rem;
}
section.all_order_details .order_details .cancelled_box .content_details {
  margin-bottom: 2rem;
}
section.all_order_details .order_details .cancelled_box .content_details .personal_detail .text1 {
  padding-bottom: 5px;
}
section.all_order_details .order_details .cancelled_box .content_details:last-child {
  margin-bottom: 0;
}
section.all_order_details .order_details .cancelled_box .card_item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  padding: 0;
}
section.all_order_details .order_details .cancelled_box .card_item .img-sec {
  flex: 0 0 auto;
  border-radius: 10px;
}
section.all_order_details .order_details .cancelled_box .card_item .img-sec img {
  max-width: 6.4rem;
  max-height: 6.4rem;
  min-width: 6.4rem;
  min-height: 6.4rem;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
section.all_order_details .order_details .cancelled_box .card_item .content {
  flex: 1 1 auto;
  color: var(--blackColor);
}
section.all_order_details .order_details .cancelled_box .card_item .content h3 {
  font-size: 1.3rem;
  line-height: 2rem;
  font-weight: 600;
  margin: 10px 0px;
}
section.all_order_details .order_details .cancelled_box .card_item .content .card-price {
  font-size: 1.2rem;
}
section.all_order_details .order_details .cancelled_box .card_item .content .card-price b.price-item {
  font-size: 1.4rem;
  font-weight: 700;
}
section.all_order_details .order_details .cancelled_box .payment_card_details {
  margin-top: 2rem;
  color: var(--blackColor);
}
section.all_order_details .order_details .cancelled_box .payment_card_details ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
section.all_order_details .order_details .cancelled_box .payment_card_details ul li {
  display: flex;
  font-size: 1.5rem;
  align-items: center;
  padding-bottom: 1.5rem;
}
section.all_order_details .order_details .cancelled_box .payment_card_details ul li .right_text {
  margin-left: auto;
}
section.all_order_details .order_details .cancelled_box .payment_card_details ul li span {
  margin-left: auto;
}
section.all_order_details .order_details .cancelled_box .payment_card_details ul li:last-child {
  padding-bottom: 0;
}
section.all_order_details .order_details .cancelled_box .payment_card_details ul li.total {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--blackColor);
}
section.all_order_details .order_details .cancelled_box .payment_card_details ul li.total .small_letter {
  font-size: 1.2rem;
  font-weight: 400;
}
section.all_order_details .order_details .cancelled_box i {
  font-size: 1.6rem;
}

section.profile_part .edit_profile {
  background: var(--whiteColor);
  padding: 2rem;
  margin-top: 2rem;
}
section.profile_part .edit_profile .payment_details_part {
  margin-top: 1.5rem;
}
section.profile_part .edit_profile .payment_details_part .choose_payment {
  display: flex;
  gap: 2rem;
}
section.profile_part .edit_profile .payment_details_part .choose_payment .return_img_sec img {
  max-width: 10rem;
  border-radius: 0.5rem;
  min-width: 10rem;
}
section.profile_part .edit_profile .payment_details_part .choose_payment .form-check {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
section.profile_part .edit_profile .payment_details_part .choose_payment .form-check .form-check-input {
  margin-top: 0;
}
section.profile_part .edit_profile .payment_details_part .choose_payment .form-check:last-child {
  margin-bottom: 0;
}
section.profile_part .edit_profile .payment_details_part .choose_payment .form-check .form-check-label {
  margin-left: 0.5rem;
}
section.profile_part .edit_profile .main_title {
  font-size: 1.6rem;
  font-weight: 600;
}
section.profile_part .edit_profile .main_title a {
  color: var(--blueColor);
  margin-left: 1rem;
  cursor: pointer;
}
section.profile_part .edit_profile .input_details {
  margin-top: 1.5rem;
  font-size: 1.5rem;
}
section.profile_part .edit_profile .input_details .text1 {
  color: #707070;
  padding-bottom: 5px;
  display: flex;
  justify-content: space-between;
}
section.profile_part .edit_profile .address_details {
  display: flex;
  flex-wrap: wrap;
}
section.profile_part .edit_profile .address_details .input_details {
  flex: 1 1 0%;
  max-width: 30rem;
  padding: 1rem;
  background: transparent;
  font-size: 1.5rem;
}
section.profile_part .edit_profile .address_details .input_details i {
  color: var(--blueColor);
}
section.profile_part .edit_profile .address_details .input_details:hover {
  background: #f5f5f5;
}
section.profile_part .edit_profile .submit_btn .btn_custom {
  background: var(--blueColor);
  color: var(--whiteColor);
  min-width: 12rem;
  height: 4rem;
  margin-right: 0;
}

.edit_profile_details .modal-header {
  padding: 1.5rem;
  border-color: rgba(204, 204, 204, 0.7411764706);
}
.edit_profile_details .modal-header .btn-close {
  box-shadow: none;
  outline: 0;
  border: 0;
  background-size: 10px;
}
.edit_profile_details .modal-header .btn-close:focus {
  box-shadow: none;
}
.edit_profile_details .modal-title {
  font-size: 1.8rem;
}
.edit_profile_details .modal-body {
  padding: 1.5rem;
}
.edit_profile_details .modal-body .choose_list .form-check {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
}
.edit_profile_details .modal-body .choose_list .form-check .form-check-input {
  margin-top: 0;
}
.edit_profile_details .modal-body .choose_list .form-check:last-child {
  margin-bottom: 0;
}
.edit_profile_details .modal-footer {
  padding: 1.5rem;
  border-color: rgba(204, 204, 204, 0.7411764706);
}
.edit_profile_details .modal-footer .btn_custom {
  margin: 0;
  min-width: auto;
  height: auto;
  padding: 1rem 3rem;
  width: auto;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.5rem;
}
.edit_profile_details .modal-footer .btn_custom.btn_1, .edit_profile_details .modal-footer .btn_custom .btn_2 {
  margin: 0;
}
.edit_profile_details .validation_msg {
  font-size: 12px;
  color: #707070;
  padding-top: 5px;
}

section.setting_part .logout_part {
  margin-top: 2rem;
  background: var(--whiteColor);
  padding: 1.5rem;
  border-radius: 1rem;
}
section.setting_part .logout_part .main_title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
section.setting_part .logout_part .main_title .icon {
  margin-right: 1rem;
}
section.setting_part .logout_part p {
  font-size: 1.5rem;
  color: #666;
}
section.setting_part .logout_part .btn_custom.btn_1 {
  margin-left: 0;
  margin-top: 1rem;
  font-size: 1.5rem;
  border-radius: 1rem;
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding: 1rem;
  font-weight: 500;
  height: auto;
}
section.setting_part .right_part {
  background: var(--whiteColor);
}
section.setting_part .right_part .logout_box .btn_custom {
  margin: 0;
}
section.setting_part .right_part .logout_box p {
  margin-top: 1rem;
}

div#loading-spinner {
  opacity: 0.8;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  text-align: center;
  color: var(--whiteColor);
  width: 100%;
  background: rgba(0, 0, 0, 0.9098039216);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  z-index: 99;
  height: 100%;
  border-radius: 10px;
}
div#loading-spinner img {
  max-width: 8rem;
  margin: auto;
}

.coupan_code_part .coupan_code {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0rem;
  margin-bottom: 0;
  align-items: center;
}
.coupan_code_part .coupan_code .btn_custom {
  margin: 0;
  min-width: 13rem;
}
.coupan_code_part .coupan_code .input_filed {
  flex: 1 1 0%;
  margin-bottom: 0;
}
.coupan_code_part .validation_msg {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 500;
}
.coupan_code_part .validation_error_msg {
  color: #d91c1c;
}
.coupan_code_part .validation_success_msg {
  color: #21a721;
}
.coupan_code_part .code_view .code_tag {
  background: #ededed;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem;
  font-size: 1.4rem;
  border-radius: 10px;
  font-weight: 400;
  cursor: pointer;
  margin-top: 1rem;
}

.rotate_tag {
  transform: rotate(90deg);
  margin-right: 5px;
}

.tooltip {
  font-size: 12px;
}

.product_rating_part {
  background: var(--whiteColor);
  margin: 6rem 2rem;
}
.product_rating_part .review_img {
  margin-bottom: 2rem;
  max-width: 55rem;
  text-align: center;
}
.product_rating_part .review_img img {
  max-width: 45rem;
}
.product_rating_part .write_review_box {
  text-align: left;
  border: 1px solid #E0E2E3;
  padding: 3rem;
  max-width: 55rem;
}
.product_rating_part .write_review_box .main_title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blackColor);
  margin-bottom: 1rem;
  text-align: left;
}
.product_rating_part .write_review_box .star_view .star_rating i {
  color: #ffb21d;
}
.product_rating_part .write_review_box .star_view .total_number {
  font-size: 3.4rem;
  font-weight: 600;
  color: var(--blackColor);
}
.product_rating_part .write_review_box .star_view span.total_review {
  color: #55585b;
  font-size: 1.4rem;
}
.product_rating_part .write_review_box .review_list {
  margin: auto;
  margin-top: 2rem;
}
.product_rating_part .write_review_box .review_list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.product_rating_part .write_review_box .review_list ul li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.product_rating_part .write_review_box .review_list ul li .star_num {
  font-size: 1.5rem;
  color: #a0a2a4;
}
.product_rating_part .write_review_box .review_list ul li .progress {
  flex: 1 1 0%;
  margin: 0px 10px;
  border-radius: 3px;
  --bs-progress-height: 15px;
  font-weight: 500;
  font-size: 10px;
}
.product_rating_part .write_review_box .review_list ul li .progress .progress-bar {
  background-color: #ffb21d;
}
.product_rating_part .write_review_box .review_list ul li .star_rating {
  color: var(--blueColor);
}
.product_rating_part .write_review_box .review_list ul li .review_bar {
  width: 100%;
  height: 2rem;
  background: var(--blueColor);
  flex: 1 1 0%;
  margin: 0px 3rem;
}
.product_rating_part .write_review_box .review_list ul li .review_bar.empty_review {
  background: rgba(224, 224, 224, 0.81);
}
.product_rating_part .write_review_box .review_list ul li .number {
  color: #474747;
  font-size: 1.6rem;
  font-weight: 500;
}
.product_rating_part .write_review_box .review_list ul li:last-child {
  margin-bottom: 0;
}
.product_rating_part .customer_review_list {
  margin-top: 2rem;
  max-height: 50rem;
  overflow-y: auto;
}
.product_rating_part .customer_review_list::-webkit-scrollbar {
  width: 4px;
}
.product_rating_part .customer_review_list .review_customer_box {
  background: rgba(44, 71, 125, 0.06);
  padding: 1.5rem 1.5rem;
  display: flex;
  border-bottom: 1px solid #ccc;
}
.product_rating_part .customer_review_list .review_customer_box .description .date {
  float: right;
  font-size: 1.5rem;
  color: #8b8b8b;
}
.product_rating_part .customer_review_list .review_customer_box .description .name {
  padding: 5px 0px;
}
.product_rating_part .customer_review_list .review_customer_box:last-child {
  border-bottom: inherit;
}
.product_rating_part .customer_review_list .top_head .date {
  color: #7b7b7b;
  font-size: 1.4rem;
}
.product_rating_part .customer_review_list .top_head .star .rating_star svg {
  width: 1.8rem;
  height: 1.8rem;
  color: var(--blueColor);
}
.product_rating_part .customer_review_list .users {
  color: var(--blueColor);
}
.product_rating_part .customer_review_list .users .profile {
  background: rgba(188, 203, 220, 0.6509803922);
  text-align: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product_rating_part .customer_review_list .users .profile i {
  font-size: 2.2rem;
}
.product_rating_part .customer_review_list .users .name {
  font-weight: 600;
  font-size: 1.6rem;
}
.product_rating_part .customer_review_list .description {
  flex: 1 1 0%;
  color: var(--blackColor);
}
.product_rating_part .customer_review_list .description .star i {
  color: #ffb21d;
  font-size: 1.4rem;
}
.product_rating_part .customer_review_list .description .title {
  font-size: 1.6rem;
  font-weight: 700;
  padding-bottom: 1rem;
  text-align: left;
}
.product_rating_part .customer_review_list .description .desc_body p {
  margin-bottom: 0;
  line-height: 2.6rem;
  font-size: 1.5rem;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.name_circle {
  width: 3rem;
  display: block;
  height: 3rem;
  border-radius: 100%;
  background: var(--blueColor);
  display: flex;
  justify-content: center;
  font-size: 12px;
  align-items: center;
  color: var(--whiteColor);
  font-weight: 500;
  font-size: 1.2rem;
}

section.about_us {
  background: linear-gradient(to right, #008cff, #094882);
  background-size: cover;
  width: 100%;
  text-align: left;
  padding: 6rem 2rem;
  position: relative;
  color: var(--whiteColor);
  min-height: 40rem;
}
section.about_us .content_part {
  text-align: center;
}
section.about_us .content_part h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
section.about_us .content_part .desc_part {
  max-width: 75%;
  margin: auto;
}
section.about_us .content_part .desc_part p {
  line-height: 2.8rem;
  margin-bottom: 0;
}
section.about_us .content_part .desc_part p a {
  color: var(--whiteColor);
  font-weight: 700;
}
section.about_us .about_img {
  margin-top: 2rem;
}
section.about_us .about_img img {
  max-width: 100%;
}

.founder_page {
  padding: 6rem 2rem;
}
.founder_page .inner_desc {
  display: flex;
  overflow: hidden;
  align-items: center;
}
.founder_page .inner_desc .main_img {
  flex: 0 0 auto;
  margin-right: 3rem;
}
.founder_page .inner_desc .main_img img {
  max-width: 42rem;
}
.founder_page .inner_desc .content_part {
  flex: 1 1 0%;
  max-width: calc(100% - 42rem);
}
.founder_page .inner_desc .content_part h2 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--blueColor);
}
.founder_page .inner_desc .content_part .main_title {
  font-size: 5.2rem;
  font-weight: 700;
}
.founder_page .inner_desc .content_part .text-style {
  font-style: italic;
  font-weight: 600;
}
.founder_page .inner_desc .content_part p {
  line-height: 3rem;
  margin-bottom: 0;
  color: var(--blackColor);
}
.founder_page .inner_desc .content_part p a {
  color: var(--blueColor);
  font-weight: 700;
}

.header-wave img, .inner-wave img {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 50%;
  min-width: 70em;
  width: calc(100% + 12px);
  max-width: none;
  transform: translateX(-50%);
  pointer-events: none;
  margin-left: 6px;
}

section.header-wave {
  background: linear-gradient(to right, #008cff, #094882);
  background-size: cover;
  width: 100%;
  text-align: left;
  padding: 7rem 2rem;
  position: relative;
  color: var(--whiteColor);
  min-height: 40rem;
}
section.inner-wave {
  background: linear-gradient(to right, #008cff, #094882);
  background-size: cover;
  width: 100%;
  text-align: left;
  padding: 7rem 2rem;
  position: relative;
  color: var(--whiteColor);
  min-height: 40rem;
}

section.our_mission_vision {
  background: linear-gradient(to right, #008cff, #094882);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center;
  text-align: left;
  padding: 5rem 2rem;
  color: var(--whiteColor);
}
section.our_mission_vision .desc_part .top_title {
  text-align: left;
  margin-bottom: 1rem;
}
section.our_mission_vision .desc_part .top_title h2 {
  text-align: left;
  color: var(--whiteColor);
}
section.our_mission_vision .desc_part p {
  margin: 1.5rem 0rem;
  line-height: 2.6rem;
}
section.our_mission_vision .img-sec img {
  border-radius: 1rem;
  max-height: 31.5rem;
  background: var(--whiteColor);
  padding: 5px;
}
section.our_mission_vision .mission_vision_list {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-left: 3rem;
}
section.our_mission_vision .mission_vision_list .box {
  background: var(--whiteColor);
  width: -moz-fit-content;
  width: fit-content;
  padding: 2rem;
  color: var(--blackColor);
  max-width: 40rem;
  border-radius: 2rem;
  overflow: hidden;
}
section.our_mission_vision .mission_vision_list .box .icon_box img {
  max-width: 20rem;
}
section.our_mission_vision .mission_vision_list .box .title {
  background: linear-gradient(to right, #008cff, #094882);
  padding: 1rem;
  color: var(--whiteColor);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
  margin: 1.5rem 0rem;
  font-weight: 600;
  font-size: 1.6rem;
}
section.our_mission_vision .mission_vision_list .box p {
  line-height: 2.4rem;
  font-size: 1.5rem;
  margin-bottom: 0;
}
section.our_mission_vision .mission_vision_list .box:nth-child(2) {
  margin-top: 5rem;
  text-align: right;
}
section.our_mission_vision .mission_vision_list .box:nth-child(2) .title {
  text-align: right;
  margin-left: auto;
}

section.core_values {
  background-color: #E3F0FF;
  background-image: url(../images/bg_pattern_2.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6rem 2rem;
}
section.core_values .desc_part {
  text-align: center;
  overflow: hidden;
}
section.core_values .desc_part p {
  margin-bottom: 0;
  line-height: 2.6rem;
}
section.core_values .values_boxes {
  margin-top: 3rem;
  display: flex;
  align-items: baseline;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
}
section.core_values .values_boxes .box {
  background: linear-gradient(to right, #008cff, #094882);
  width: -moz-fit-content;
  width: fit-content;
  padding: 3rem;
  color: var(--whiteColor);
  max-width: 27rem;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.25);
  text-align: center;
  min-width: 27rem;
  min-height: 17rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.core_values .values_boxes .box .icon_box img {
  max-width: 10rem;
}
section.core_values .values_boxes .box .title {
  color: var(--whiteColor);
  margin: 1.5rem 0rem 0;
  font-weight: 700;
  font-size: 1.6rem;
}
section.core_values .values_boxes .box .icon {
  background: linear-gradient(to right, #008cff, white);
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 3px;
  border-radius: 15px;
}
section.core_values .values_boxes .box .icon img {
  padding: 2px;
  background: var(--whiteColor);
  border-radius: 15px;
  width: 5rem;
  height: 5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

section.team_part {
  background-color: #E3F0FF;
  background-image: url(../images/bg_pattern_2.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6rem 2rem;
}
section.team_part .all_boxes {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
section.team_part .all_boxes .member_box {
  z-index: 1;
  overflow: hidden;
  position: relative;
  text-align: center;
  padding: 4rem 3rem 3rem;
  background-color: var(--bs-white);
  flex: 1 1 0%;
  max-width: calc(40% - 2rem);
  min-width: calc(40% - 2rem);
  border-radius: 10px;
  box-shadow: 0 20px 30px 0 rgba(174, 191, 210, 0.3);
}
section.team_part .all_boxes .member_box::before {
  opacity: 100;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  content: "";
  z-index: -1;
  position: absolute;
  transition: var(--bs-transition);
  animation: borderDashedAnimation 0.8s infinite linear;
  background-size: 15px 1px, 15px 1px, 1px 15px, 1px 15px;
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-image: linear-gradient(90deg, #008cff 50%, transparent 50%), linear-gradient(90deg, #094882 50%, transparent 50%), linear-gradient(0deg, #008cff 50%, transparent 50%), linear-gradient(0deg, #094882 50%, transparent 50%);
}
section.team_part .all_boxes .member_box .title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--blackColor);
}
section.team_part .all_boxes .member_box h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 1rem;
  color: var(--blueColor);
}
section.team_part .all_boxes .member_box .desc_part {
  margin-top: 1rem;
}
section.team_part .all_boxes .member_box .desc_part .text_style {
  font-weight: 700;
  font-style: italic;
  padding-bottom: 5px;
}
section.team_part .all_boxes .member_box .desc_part .small_desc {
  line-height: 2.6rem;
  font-size: 1.5rem;
  color: var(--blackColor);
  max-width: 80%;
  margin: auto;
  max-height: 18rem;
  overflow: hidden;
  overflow-y: auto;
  min-height: 18rem;
  padding-right: 1rem;
}
section.team_part .all_boxes .member_box .desc_part .small_desc::-webkit-scrollbar {
  width: 2px;
}
section.team_part .all_boxes .member_box .review_admin {
  z-index: 1;
  padding-top: 2rem;
  position: relative;
}
section.team_part .all_boxes .member_box .review_admin::before {
  top: 100px;
  left: 50%;
  z-index: -1;
  content: "";
  opacity: 1;
  width: 486px;
  height: 486px;
  position: absolute;
  border-radius: 100%;
  transform: translateX(-50%);
  transition: var(--bs-transition);
  --bs-transition: 300ms ease;
}
section.team_part .all_boxes .member_box .review_admin_image {
  max-width: 35rem;
  margin: 0 auto;
}
section.team_part .all_boxes .member_box .review_admin_image img {
  border: none;
  box-shadow: none;
  max-width: 100%;
  border-radius: 20px;
  transition: var(--bs-transition);
  --bs-transition: 300ms ease;
  padding: 3px;
  background-image: linear-gradient(0deg, transparent 55%, var(--blueColor));
  height: 100%;
  min-height: 40rem;
  max-height: 40rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 30%;
     object-position: 50% 30%;
}
section.team_part .all_boxes .member_box .review_admin_info {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  position: absolute;
  padding: 100px 30px 32px;
  background-image: linear-gradient(0deg, var(--bs-white) 50%, transparent);
}
section.team_part .all_boxes .member_box:hover .review_admin::before {
  opacity: 0.6;
}
section.team_part .all_boxes .member_box .review_admin_image img {
  min-height: 35rem;
  max-height: 35rem;
}
section.team_part .all_boxes .member_box:nth-child(even):not(:nth-child(2)) {
  margin-top: 2rem;
}

@keyframes borderDashedAnimation {
  0% {
    background-position: left top, right bottom, left bottom, right top;
  }
  100% {
    background-position: left 15px top, right 15px bottom, left bottom 15px, right top 15px;
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
section.coupan_code_part {
  background: url(../images/coupan_code_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 5rem 0rem;
  position: relative;
  z-index: 1;
  color: var(--whiteColor);
}
section.coupan_code_part::before {
  content: "";
  background: var(--blackColor);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  opacity: 0.7;
}
section.coupan_code_part .desc_part .top_title h2 {
  max-width: 70rem;
  margin: auto;
  line-height: 4.5rem;
}
section.coupan_code_part .button-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
section.coupan_code_part .button-group .discount-code {
  padding: 1rem 1.5rem;
  border: 1px dashed rgb(var(--color-foreground), 0.5);
  --color-foreground: 255, 255, 255;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  --alpha-background: 0;
}
section.coupan_code_part .button-group .discount-code b {
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--whiteColor);
}
section.coupan_code_part .button-group custom-copy-text {
  cursor: pointer;
  font-size: 14px;
  color: var(--whiteColor);
  text-decoration: underline;
  transition: color 0.2s;
  opacity: 0.75 !important;
}
section.coupan_code_part .button-group .btn_custom {
  margin: 0;
  border-radius: 3rem;
  min-width: 15rem;
  height: auto;
  padding: 1rem 1.5rem;
}

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

.form-check-input {
  border-color: #dee2e6;
}
.form-check-input:focus {
  border-color: #dee2e6;
}

.banner-container {
  width: 100%;
  background: #f7f9fc;
  position: relative;
}
.banner-container .mobile_view {
  display: none;
}

.banner-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1.5s ease-in-out;
}

.banner-content.expanded {
  max-height: 100vh;
}

.banner_part img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

section.thank_you_page {
  padding: 6rem 2rem;
  background: var(--whiteColor);
}
section.thank_you_page .thank_you_content {
  display: flex;
  margin-bottom: 2rem;
  gap: 2rem;
}
section.thank_you_page .thank_you_content .img-sec img {
  max-width: 5rem;
  filter: invert(18%) sepia(93%) saturate(1400%) hue-rotate(190deg) brightness(94%) contrast(95%);
}
section.thank_you_page .thank_you_content .content p {
  margin-bottom: 0.5rem;
}
section.thank_you_page .thank_you_content .content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--blackColor);
}
section.thank_you_page .order_box {
  border: 1px solid #ccc;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
section.thank_you_page .order_box .order_confirmed {
  padding: 1.5rem;
}
section.thank_you_page .order_box .title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--blackColor);
}
section.thank_you_page .order_box p {
  font-size: 1.4rem;
  color: #707070;
  margin-bottom: 0;
}
section.thank_you_page .order_box .send_msg {
  background: #f5f5f5;
  padding: 1.2rem;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
section.thank_you_page .order_box .send_msg .form-check {
  margin-top: 0rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
}
section.thank_you_page .order_box .send_msg .form-check .form-check .form-check-input {
  margin: 0;
}
section.thank_you_page .order_box .send_msg .form-check .form-check-label {
  padding-top: 5px;
  font-size: 1.4rem;
  font-weight: normal;
}
section.thank_you_page .order_box .send_msg .form-check .form-check-input:focus {
  box-shadow: none;
}
section.thank_you_page .order_box .order_confirmed .details_group {
  margin-bottom: 1.5rem;
}
section.thank_you_page .order_box .order_confirmed .details_group .main_title {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--blackColor);
}
section.thank_you_page .order_box .order_confirmed .details_group p {
  font-size: 1.3rem;
  color: #707070;
  margin-bottom: 0;
  line-height: 2.2rem;
}
section.thank_you_page .order_box .order_confirmed .details_group:last-child {
  margin-bottom: 0;
}
section.thank_you_page .support_part {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
section.thank_you_page .support_part .support_title {
  font-size: 1.4rem;
}
section.thank_you_page .support_part .support_title a {
  color: var(--blueColor);
  font-weight: 600;
}
section.thank_you_page .support_part .btn_custom.btn_1 {
  margin-top: 0;
  margin-right: 0;
}
section.thank_you_page .payment_details {
  margin-top: 1rem;
}
section.thank_you_page .payment_details ul {
  padding: 0;
  margin: 0;
}
section.thank_you_page .payment_details ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #707070;
}
section.thank_you_page .payment_details ul li:last-child {
  margin-bottom: 0;
}
section.thank_you_page .payment_details ul li.total_price {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--blackColor);
}
section.thank_you_page .checkout_form {
  padding: 2rem;
  position: sticky;
  top: 8rem;
  background: var(--whiteColor);
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.25);
  margin-left: 3rem;
}

.order_dashboard .order_details h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--blackColor);
}
.order_dashboard .order_details .order_boxes {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.order_dashboard .order_details .order_boxes .order_box {
  background: var(--whiteColor);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.25);
  flex: 1 1 0%;
  transition: all 0.5s ease-in;
  color: var(--whiteColor);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  width: -moz-fit-content;
  width: 100%;
  white-space: nowrap;
  gap: 1rem;
  align-items: center;
}
.order_dashboard .order_details .order_boxes .order_box:hover {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.5);
}
.order_dashboard .order_details .order_boxes .order_box .content_part {
  flex: 1 1 0%;
}
.order_dashboard .order_details .order_boxes .order_box .icon_part img {
  max-width: 3.5rem;
}
.order_dashboard .order_details .order_boxes .order_box .title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.order_dashboard .order_details .order_boxes .order_box .divided_part {
  display: flex;
}
.order_dashboard .order_details .order_boxes .order_box .divided_part .text_group {
  border-right: 1px solid #ffffff;
  margin-right: 2.5rem;
  padding-right: 2.5rem;
}
.order_dashboard .order_details .order_boxes .order_box .divided_part .text_group h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.order_dashboard .order_details .order_boxes .order_box .divided_part .text_group:last-child {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}
.order_dashboard .order_details .order_boxes .order_box .divided_part .text_group .number {
  color: var(--whiteColor);
}
.order_dashboard .order_details .order_boxes .order_box p {
  font-size: 1.5rem;
  margin-bottom: 0;
  line-height: 2.2rem;
  font-weight: 600;
}
.order_dashboard .order_details .order_boxes .order_box .icon_part {
  background: var(--whiteColor);
  width: 6rem;
  min-width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.order_dashboard .order_details .order_boxes .order_box:nth-child(5n+1) {
  background: linear-gradient(54deg, #ff7401 12%, #fda900 84%);
  color: var(--whiteColor);
}
.order_dashboard .order_details .order_boxes .order_box:nth-child(5n+2) {
  background: linear-gradient(54deg, #018e85 12%, #03c5bb 84%);
  color: var(--whiteColor);
}
.order_dashboard .order_details .order_boxes .order_box:nth-child(5n+3) {
  background: linear-gradient(54deg, #f62c28 12%, #fe817f 84%);
  color: var(--whiteColor);
}
.order_dashboard .order_details .order_boxes .order_box:nth-child(5n+4) {
  background: linear-gradient(54deg, #4bcec4 12%, #3bcbc0 84%);
  color: var(--whiteColor);
}
.order_dashboard .order_details .order_boxes .order_box:nth-child(5n) {
  background: linear-gradient(54deg, #008cff 12%, #094882 84%);
  color: var(--whiteColor);
}
.order_dashboard .category_part {
  margin-bottom: 3rem;
}

section.buy_it {
  padding: 3rem 2rem 4rem;
  background: var(--lightBgColor);
  border-top: 1px solid rgba(204, 204, 204, 0.5490196078);
}
section.buy_it .buy_it_box .top_title, section.buy_it .buy_it_box h2 {
  text-align: left;
}
section.buy_it .buy_it_box .buy_it_product_box {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
}
section.buy_it .buy_it_box .buy_it_product_box .main_boxes {
  display: flex;
  gap: 3.5rem;
  max-width: -moz-fit-content;
  max-width: fit-content;
  overflow-y: auto;
  padding-bottom: 2rem;
  max-width: calc(100% - 22rem);
}
section.buy_it .buy_it_box .buy_it_product_box .main_boxes::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}
section.buy_it .buy_it_box .buy_it_product_box .main_boxes span.plus_sign {
  font-size: 2.6rem;
  margin-top: auto;
  margin-bottom: auto;
}
section.buy_it .buy_it_box .buy_it_product_box .main_boxes .product-card {
  flex: 1 1 0;
  max-width: calc(100% - 20rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--whiteColor);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.5s ease-in;
  max-width: 30rem;
  min-width: 30rem;
  height: auto;
  overflow: visible;
  position: relative;
}
section.buy_it .buy_it_box .buy_it_product_box .main_boxes .product-card .inner_body .card_body_content .card_heading h5 {
  font-size: 1.4rem;
  text-align: left;
  line-height: 2.2rem;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 0;
}
section.buy_it .buy_it_box .buy_it_product_box .main_boxes .product-card .inner_body .card-price {
  text-align: left;
  margin-top: 10px;
}
section.buy_it .buy_it_box .buy_it_product_box .main_boxes .product-card::after {
  content: "+";
  position: absolute;
  top: 0;
  font-size: 2.5rem;
  right: -2.8rem;
  z-index: 1;
  bottom: 0;
  background-position: center;
  margin: auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--blueColor);
  height: -moz-fit-content;
  height: fit-content;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.25);
  padding: 1px;
  color: var(--whiteColor);
  line-height: normal;
}
section.buy_it .buy_it_box .buy_it_product_box .main_boxes .product-card:last-child::after {
  display: none;
}
section.buy_it .buy_it_box .buy_it_product_box .cart_price {
  flex: 1 1 0;
  max-width: calc(100% - 20rem);
  margin-top: auto;
  margin-bottom: auto;
  text-align: center;
}
section.buy_it .buy_it_box .buy_it_product_box .cart_price .total_price {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--blackColor);
}
section.buy_it .buy_it_box .buy_it_product_box .cart_price .btn_custom.btn_1 {
  margin-top: 1rem;
  height: 4rem;
  font-size: 1.4rem;
}
section.buy_it .buy_it_box .buy_it_product_box .cart_price .choose_item_btn {
  border: 2px solid var(--blueColor);
  padding: 1.5rem 0rem;
  color: var(--blackColor);
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 10px;
  border-left-width: 5px;
}
section.buy_it .buy_it_box .buy_it_product_box .cart_price .choose_item_btn i {
  color: var(--blueColor);
  margin-right: 5px;
}
section.buy_it .buy_it_box .buy_it_product_box .title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--blackColor);
}
section.buy_it .buy_it_box .buy_it_product_box .desc_part p {
  line-height: 2.6rem;
  margin-bottom: 0;
  color: var(--blackColor);
}

.buy_it_product_box .product-card:last-of-type {
  display: none;
}

.scroll-wrapper {
  max-height: 150px;
  overflow-y: auto;
  display: flex;
  gap: 20px;
  padding: 10px;
}

.order_row_wrapper {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  background: var(--whiteColor);
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding-bottom: 1rem;
}
.order_row_wrapper::-webkit-scrollbar {
  height: 6px;
}
.order_row_wrapper::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 3px;
}
.order_row_wrapper::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
.order_row_wrapper .space_between {
  vertical-align: top;
  min-width: 170px;
  padding: 0 0.5rem;
  font-weight: 700;
}
.order_row_wrapper .space_between.product_descs {
  min-width: 300px;
  max-width: 300px;
}
.order_row_wrapper .space_between .main_class {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.order_row_wrapper .space_between .main_class .content {
  white-space: normal;
}
.order_row_wrapper .space_between .main_class p {
  margin-bottom: 0;
  font-size: 1.3rem;
  font-weight: 500;
}
.order_row_wrapper .space_between .main_class:last-child {
  margin-bottom: 0;
}
.order_row_wrapper .space_between .order_img_sec {
  min-height: 5rem;
  border-radius: 5px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.2rem;
  font-weight: 500;
}
.order_row_wrapper .space_between .order_img_sec img {
  min-width: 5rem;
  width: 5rem;
  height: 5rem;
  -o-object-fit: cover;
  object-fit: cover;
  font-weight: 600;
}
.order_row_wrapper .space_between .order_img_sec:last-child {
  margin-bottom: 0;
}
.order_row_wrapper .space_between .order_img_sec p {
  margin-bottom: 0;
}
.order_row_wrapper .space_between .order_img_sec .number {
  position: absolute;
  top: 4px;
  right: 0px;
  background: #2b477e;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--whiteColor);
  font-size: 9px;
  font-weight: 400;
}
.order_row_wrapper .space_between .inner_details {
  min-height: 5rem;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.order_row_wrapper .space_between .inner_details:last-child {
  margin-bottom: 0;
}
.order_row_wrapper .top_heading {
  display: flex;
  align-items: center;
  background: var(--whiteColor);
  padding: 1rem;
  border-bottom: 1px solid rgba(204, 204, 204, 0.5215686275);
  gap: 10px;
  min-width: -moz-fit-content;
  min-width: fit-content;
  width: 100%;
  justify-content: space-between;
}
.order_row_wrapper .top_heading h4 {
  font-size: 1.3rem;
  color: var(--blackColor);
  font-weight: 600;
  margin-bottom: 0;
}
.order_row_wrapper .top_heading .title {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--blackColor);
}
.order_row_wrapper .top_heading .order_id {
  font-size: 1.4rem;
  color: #707070;
}
.order_row_wrapper .order_row {
  display: flex;
  align-items: flex-start;
}
.order_row_wrapper .buy_page .toggle-dropdown {
  padding: 0;
  border: 0;
}
.order_row_wrapper .order_row.scrollable {
  max-height: 20rem;
  overflow-y: auto;
  padding: 1rem;
  background: var(--whiteColor);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5215686275);
  width: auto;
  gap: 10px;
  width: 100%;
  min-width: -moz-fit-content;
  min-width: fit-content;
  justify-content: space-between;
}
.order_row_wrapper .order_row.scrollable::-webkit-scrollbar {
  height: 3px;
  width: 3px;
}
.order_row_wrapper.data_listing .top_heading, .order_row_wrapper.data_listing .order_row.scrollable {
  justify-content: flex-start;
}

.disabled_btn {
  cursor: not-allowed !important;
  opacity: 0.5 !important;
}

section.compare_items {
  padding: 6rem 2rem 0;
}
section.compare_items .title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--blackColor);
}
section.compare_items .item_head {
  display: flex;
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  align-items: center;
}
section.compare_items .item_head span {
  color: var(--blackColor);
  text-transform: capitalize;
  white-space: nowrap;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
section.compare_items .item_head hr {
  flex: 1 1 0%;
}
section.compare_items .product-card {
  background: transparent;
  padding: 1.5rem 1.5rem;
  border-radius: 0;
}
section.compare_items .product-card .inner_body {
  border: 0;
  border-radius: 0;
}
section.compare_items .product-card .inner_body .btn_custom.btn_1 {
  margin-top: 1rem;
  height: 3.5rem;
  font-size: 12px;
  min-width: 14rem;
  margin-left: 0;
}
section.compare_items .product-card .inner_body .card-media-wrapper {
  border-radius: 0;
}
section.compare_items .product-card .inner_body .card-media-wrapper img {
  border-radius: 0;
  min-height: -moz-fit-content;
  min-height: fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
}
section.compare_items .product-card .inner_body .card_body_content .card_heading h5 {
  font-size: 1.4rem;
  text-align: left;
  line-height: 2.2rem;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 0;
}
section.compare_items .product-card .inner_body .card_body_content {
  padding: 0;
  padding-top: 1rem;
}
section.compare_items .product-card .inner_body .card_body_content .card_heading {
  min-height: 7rem;
  overflow-y: auto;
}
section.compare_items .product-card .inner_body .card_body_content .card_heading::-webkit-scrollbar {
  width: 3px;
}
section.compare_items .compare_table_part .table-responsive::-webkit-scrollbar {
  height: 3px;
  width: 3px;
}
section.compare_items .compare_table_part table tr td:nth-child(1) {
  min-width: auto;
  white-space: nowrap;
}
section.compare_items .compare_table_part table tr:nth-child(1) {
  border: 0;
}
section.compare_items .compare_table_part table tr:nth-child(1) td {
  border: 0;
  padding: 0;
}
section.compare_items .compare_table_part table tr:nth-child(odd) td {
  background: var(--whiteColor);
}
section.compare_items .compare_table_part table tr:nth-child(even) td {
  background: #f5f5f5;
}
section.compare_items .compare_table_part table tr td {
  padding: 1rem 1.5rem;
  min-width: 30rem;
  max-width: 30rem;
  width: 30rem;
}
section.compare_items .compare_table_part table tr td .text {
  font-size: 1.5rem;
}
section.compare_items .compare_table_part table tr td .title_part {
  font-weight: 600;
  font-size: 1.4rem;
}
section.compare_items .compare_table_part table tr td .price {
  font-size: 1.8rem;
}
section.compare_items .compare_table_part table tr td .price s.price-item {
  font-size: 1.4rem;
  color: #707070;
}
section.compare_items .compare_table_part table tr td .rating_part {
  display: flex;
  align-items: center;
}
section.compare_items .compare_table_part table tr td .rating_part i {
  font-size: 1.6rem;
  color: #ffb21d;
}
section.compare_items .compare_table_part table tr td .rating_part .rating-text {
  font-size: 1.4rem;
  font-weight: 700;
  margin-left: 1rem;
}

section.cart_sticky_part {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  position: fixed;
  right: 1rem;
  top: 8rem;
  z-index: 999;
}
section.cart_sticky_part .add_cart_box {
  display: flex;
  min-width: 25rem;
  align-items: center;
  gap: 1rem;
  border-radius: 10px;
  overflow: hidden;
  background: var(--blackColor);
  color: var(--whiteColor);
  justify-content: space-between;
  padding-right: 2rem;
}
section.cart_sticky_part .add_cart_box .product_img {
  width: 8rem;
  height: 8rem;
  flex: 0 0 auto;
}
section.cart_sticky_part .add_cart_box .product_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
section.cart_sticky_part .add_cart_box .product-content .price {
  font-weight: 700;
}
section.cart_sticky_part .add_cart_box .plus_btn .btn {
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
section.cart_sticky_part .add_cart_box .plus_btn .btn i {
  font-size: 2.5rem;
  color: var(--whiteColor);
}
section.cart_sticky_part.show {
  opacity: 1;
  pointer-events: auto;
  background: transparent;
}

.payment_loader {
  position: fixed;
  top: 50%;
  min-height: 100vh;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  background: rgba(25, 22, 22, 0.8392156863);
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.payment_loader img {
  max-width: 10rem;
}
.payment_loader .overflow_x {
  overflow: hidden;
}

span.badge.sale-badge.sold_out {
  background: var(--blackColor);
  color: rgba(255, 255, 255, 0.6901960784);
}

.order_dropdown {
  display: none;
  background: #f8f8f8;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 1rem;
  position: absolute;
  right: 1rem;
  top: 3rem;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-width: -moz-max-content;
  min-width: max-content;
  font-size: 1.2rem;
}

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

.order_dropdown ul li {
  padding: 8px 0;
  cursor: pointer;
}

.order_dropdown ul li:hover {
  color: var(--blueColor);
}

.dot_btn {
  position: relative;
  border: 0;
  background: transparent;
  padding: 1rem;
  outline: 0;
}
.dot_btn:focus {
  box-shadow: none;
}

section.profile_page_design {
  position: relative;
  background: #F6F6EE;
  padding-bottom: 3rem;
}
section.profile_page_design .main_box {
  background: var(--whiteColor);
  border-radius: 1rem;
  color: var(--blackColor);
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.25);
  margin-top: -15rem;
  margin-left: auto;
  margin-right: auto;
}
section.profile_page_design .main_box .desc_info {
  padding: 1.2rem;
}
section.profile_page_design .main_box .box {
  border-bottom: 1px solid rgba(118, 118, 118, 0.13);
}
section.profile_page_design .main_box .box:last-child {
  margin-bottom: 0;
}
section.profile_page_design .main_box .box .validation_msg {
  margin-top: 1rem;
}
section.profile_page_design .main_box .user_info .desc_info {
  background: #F6F6EE;
}
section.profile_page_design .main_box .user_info .desc_info .main_heading {
  margin-bottom: 0;
}
section.profile_page_design .main_box .user_info .plus_btn .btn-primary {
  background: #094882;
}
section.profile_page_design .box .form-label {
  font-size: 1.6rem;
  font-weight: 600;
  display: block;
}
section.profile_page_design .box .user_type label.form-check-label {
  margin-top: 3px;
  font-size: 1.5rem;
}
section.profile_page_design .box.profile_box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
section.profile_page_design .text_color {
  font-size: 1.4rem;
  color: #A1CEF6;
}
section.profile_page_design .form_details .user_info .form-check {
  margin-bottom: 0;
}
section.profile_page_design .form_details .user_info .form-check .form-check-label {
  padding-top: 3px;
}
section.profile_page_design .form_details .user_info .input_group {
  margin-bottom: 1.5rem;
}
section.profile_page_design .form_details .last_child .form-floating {
  margin-bottom: 0;
}
section.profile_page_design .main_heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1.7rem;
  font-weight: 700;
  color: #004490;
}
section.profile_page_design .main_heading a {
  color: var(--whiteColor);
  font-size: 1.4rem;
}
section.profile_page_design .submit_btn .btn_custom {
  margin-right: 0;
  border-radius: 1rem;
  min-width: 12rem;
  height: auto;
  margin-top: 0;
  margin: 1.5rem;
  margin-left: auto;
}
section.profile_page_design .filled_form {
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}
section.profile_page_design .filled_form .last_child .input_filed {
  margin-bottom: 0;
}

section.edit_user_profile {
  background: transparent linear-gradient(255deg, #00438C 0%, #0853B1 49%, #1265DA 100%) 0% 0% no-repeat padding-box;
  min-height: 35rem;
}
section.edit_user_profile .main_profile_box {
  padding: 3rem 2rem 0;
}
section.edit_user_profile .main_profile_box h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2784313725);
  padding-bottom: 1rem;
  color: var(--whiteColor);
}
section.edit_user_profile .main_profile_box .profile_box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--whiteColor);
}
section.edit_user_profile .main_profile_box .personal_details .text {
  padding-bottom: 3px;
  font-size: 1.5rem;
  font-weight: 500;
}
section.edit_user_profile .main_profile_box .personal_details .text_color {
  font-size: 1.4rem;
  color: #A1CEF6;
}

.profile_img-sec img {
  width: 10rem;
  height: 10rem;
  border-radius: 100%;
  min-width: 10rem;
  -o-object-fit: cover;
  object-fit: cover;
  border: 3px solid #4993e8;
}

button.verify-otp-button.btn.btn-sm.btn-primary {
  position: relative !important;
  width: 100px !important;
  height: 34px !important;
  margin-top: 1.25rem !important;
}

p.emailotpmessage {
  margin-left: 20px;
  margin-right: 20px;
}

.change_password_part .modal-header h4 {
  font-size: 1.8rem;
  font-weight: 600;
}
.change_password_part .modal-body {
  padding: 1.5rem;
}
.change_password_part .modal-body .form-group {
  margin-bottom: 1.5rem;
}
.change_password_part .modal-footer .btn_1 {
  font-size: 1.5rem;
  min-width: -moz-fit-content;
  min-width: 10rem;
  padding: 0.8rem 1rem;
  font-weight: 500;
  margin: 0;
  height: auto;
}
.change_password_part .email_heading {
  display: block;
  text-align: center;
  padding-bottom: 1.5rem;
  font-weight: 600;
}

.setting_field span.icon {
  position: absolute;
  right: 0;
  top: 17px;
  right: 15px;
}

.add_user_modal .modal-header .modal-title {
  font-size: 1.8rem;
  font-weight: 600;
}
.add_user_modal .modal-footer {
  padding: 1rem;
}
.add_user_modal .modal-footer .btn_custom {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
  min-width: 12rem;
  margin: 0;
}
.add_user_modal .form-label {
  font-weight: 600;
}
.add_user_modal .form-check .form-check-label {
  margin-top: 3px;
}
.add_user_modal .filled_form {
  margin-top: 1rem;
}

section.blog_page {
  background: url(../images/bg-2.webp) no-repeat;
  background-repeat: repeat;
  background-position: left center;
  background-size: cover;
  padding: 6rem 1.5rem;
}
section.blog_page .blog_box {
  width: 100%;
  transition: transform 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 5rem;
}
section.blog_page .blog_box .featured-image {
  position: relative;
  flex: 1 1 auto;
  min-width: calc(35% - 1rem);
  max-width: calc(35% - 1rem);
}
section.blog_page .blog_box .featured-image img {
  border-radius: 5px;
  max-height: 30rem;
  min-height: 30rem;
  width: 100%;
  -o-object-fit: fill;
  object-fit: fill;
}
section.blog_page .blog_box .featured-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  box-sizing: border-box;
  border: 1px solid rgba(59, 58, 58, 0.431372549);
  border-radius: 5px;
  pointer-events: none;
  transition: all 250ms ease;
  transform: translate(-23px, 20px);
}
section.blog_page .blog_box .featured-image:hover::after {
  transform: inherit;
}
section.blog_page .blog_box .content_part {
  flex-grow: 1;
  padding: 0rem 3rem;
  margin: auto 0;
  padding-right: 0;
}
section.blog_page .blog_box .content_part .date_line ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
section.blog_page .blog_box .content_part .date_line ul li {
  margin-right: 1rem;
  font-size: 1.5rem;
  color: #3b3a3a;
}
section.blog_page .blog_box .content_part .date_line ul li i {
  width: 3.2rem;
  height: 3.2rem;
  color: #3b3a3a;
  border: 1px solid #3b3a3a;
  border-radius: 10rem;
  text-align: center;
  line-height: 3.2rem;
  background: #e9d2b3;
}
section.blog_page .blog_box .content_part .date_line ul li:last-child {
  margin-right: 0;
}
section.blog_page .blog_box .content_part .title {
  font-size: 2.8rem;
  margin-bottom: 0;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #1e1b1b;
}
section.blog_page .blog_box .content_part .desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #3b3a3a;
  font-size: 1.5rem;
  line-height: 2.6rem;
  margin: 1rem 0rem;
}
section.blog_page .blog_box .content_part a {
  color: #2c2c2c;
  text-decoration: none;
  font-weight: bold;
}
section.blog_page .blog_box .date_line {
  margin-bottom: 1rem;
}
section.blog_page .blog_box .date_line ul {
  font-size: 1.4rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
section.blog_page .blog_box:last-child {
  margin-bottom: 0;
}
section.blog_page a:hover {
  text-decoration: none;
}
section.blog_page .custom-hover-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 1rem;
  color: var(--blackColor);
  background: var(--main-color, #ffd36a);
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.5s ease;
  z-index: 2;
}
section.blog_page .custom-hover-button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.431372549);
  background: transparent;
  z-index: -1;
  pointer-events: none;
  transform: translate(2px, 3px);
  transition: all 0.2s ease-out;
}
section.blog_page .custom-hover-button:hover::after {
  width: 2rem;
  height: 2rem;
  background: #fff6e6;
  transform: translate(var(--x), var(--y));
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
section.blog_page .custom-hover-button:hover {
  text-decoration: none;
}
section.blog_page .right_side_part {
  padding-left: 6rem;
  position: sticky;
  top: 8rem;
}
section.blog_page .right_side_part .main_box {
  position: relative;
  z-index: 9;
  margin-bottom: 3rem;
}
section.blog_page .right_side_part .main_box .box_part {
  background: #fff0d3;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
}
section.blog_page .right_side_part .main_box .box_part .widget-title {
  display: block;
  position: absolute;
  left: -2rem;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
section.blog_page .right_side_part .main_box .box_part .blog_box {
  gap: 2rem;
  margin-bottom: 2rem;
}
section.blog_page .right_side_part .main_box .box_part .blog_box .img-sec {
  position: relative;
  flex: 1 1 auto;
  min-width: calc(33% - 1rem);
  border-radius: 1rem;
  max-width: calc(33% - 1rem);
}
section.blog_page .right_side_part .main_box .box_part .blog_box .img-sec img {
  border-radius: 5px;
  max-height: 10rem;
  min-height: 10rem;
  width: 100%;
  -o-object-fit: fill;
  object-fit: fill;
}
section.blog_page .right_side_part .main_box .box_part .blog_box .inner_content_part {
  flex-grow: 1;
}
section.blog_page .right_side_part .main_box .box_part .blog_box .inner_content_part .title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #1e1b1b;
}
section.blog_page .right_side_part .main_box .box_part .blog_box .inner_content_part .date_line {
  padding-top: 1rem;
  margin-bottom: 0;
}
section.blog_page .right_side_part .main_box .box_part .blog_box .inner_content_part .date_line ul li {
  padding-bottom: 0.8rem;
  color: #3B3A3A;
}
section.blog_page .right_side_part .main_box .box_part .blog_box .inner_content_part .date_line ul li:last-child {
  padding-bottom: 0;
}
section.blog_page .right_side_part .main_box .box_part .blog_box:last-child {
  margin-bottom: 0;
}
section.blog_page .right_side_part .main_box .box_part.tag_part ul {
  flex-wrap: wrap;
}
section.blog_page .right_side_part .main_box .social_media ul {
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
}
section.blog_page .right_side_part .main_box .social_media ul li {
  width: 100%;
}
section.blog_page .right_side_part .main_box .social_media ul li a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
section.blog_page .right_side_part .main_box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  box-sizing: border-box;
  border: 1px solid rgba(59, 58, 58, 0.43);
  border-radius: 1rem;
  pointer-events: none;
  background: transparent;
  transform: translate(-10px, 10px);
  transition: all 250ms ease;
}
section.blog_page .right_side_part .main_box:last-child {
  margin-bottom: 0;
}
section.blog_page .right_side_part .main_box .social_media_icons ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
section.blog_page .right_side_part .main_box .social_media_icons ul li {
  margin-bottom: 1.5rem;
}
section.blog_page .right_side_part .main_box .social_media_icons ul li a {
  width: 100%;
}
section.blog_page .right_side_part .main_box .social_media_icons ul li:last-child {
  margin-bottom: 0;
}
section.blog_details .inner_blog_details .featured-image img {
  border-radius: 10px;
  max-height: 50rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.blog_details .inner_blog_details .main_text_part h1 {
  font-size: 4.2rem;
  text-align: left;
  font-weight: 600;
  margin-bottom: 2rem;
}
section.blog_details .inner_blog_details .content_part {
  margin-top: 2rem;
}
section.blog_details .inner_blog_details .content_part h1 {
  font-size: 3.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
section.blog_details .inner_blog_details .content_part .desc_part .inner_desc {
  margin-bottom: 1.5rem;
}
section.blog_details .inner_blog_details .content_part .desc_part .inner_desc h2, section.blog_details .inner_blog_details .content_part .desc_part .inner_desc h3, section.blog_details .inner_blog_details .content_part .desc_part .inner_desc h4 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0;
}
section.blog_details .inner_blog_details .content_part .desc_part .inner_desc p {
  color: #3b3a3a;
  font-size: 1.5rem;
  line-height: 2.6rem;
  margin: 1rem 0rem;
  font-weight: 500;
}
section.blog_details .inner_blog_details .content_part .desc_part .inner_desc .listing {
  padding: 0;
  margin: 0;
  margin-top: 0rem;
}
section.blog_details .inner_blog_details .content_part .desc_part .inner_desc .listing ul {
  margin: 0;
  list-style: disc;
  margin-top: 1rem;
  font-size: 1.5rem;
}
section.blog_details .inner_blog_details .content_part .desc_part .inner_desc .listing ul li {
  padding-bottom: 1rem;
  font-weight: 500;
  color: #3b3a3a;
}
section.blog_details .inner_blog_details .content_part .desc_part .inner_desc .listing ul li:last-child {
  padding-bottom: 0;
}

a.underline_text {
  padding-bottom: 5px;
  background-image: linear-gradient(to right, #3B3A3A 0%, #3B3A3A 100%);
  background-size: 0% 4%;
  background-repeat: no-repeat;
  background-position: 100% 85%;
  transition: background-size 500ms ease;
  --epcl-text-color: #3B3A3A;
  text-decoration: none;
  color: var(--blackColor);
  line-height: 2.4rem;
}
a.underline_text:hover {
  color: var(--blackColor);
  background-size: 100% 4%;
  background-position: 0% 85%;
  text-decoration: none;
}

.user_login_type {
  background: #cecece;
  padding: 5px 10px;
  color: var(--blackColor);
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.4rem;
}

.login_process {
  padding: 4rem;
  display: flex;
  justify-content: center;
  height: 100%;
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(to right, #094882, #1e9e45);
}
.login_process .login_part {
  width: 100%;
  margin: auto;
  max-width: 42rem;
}
.login_process .login_part .logo_part {
  text-align: center;
  padding-bottom: 2rem;
}
.login_process .login_part .logo_part img {
  max-width: 22rem;
}
.login_process .login_part .loginFormBox {
  background: var(--whiteColor);
  padding: 2rem;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 2rem;
  font-size: 1.3rem;
}
.login_process .login_part .loginFormBox .text_top {
  text-align: center;
  margin-bottom: 2rem;
}
.login_process .login_part .loginFormBox .text_top h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #212529;
}
.login_process .login_part .loginFormBox .text_top p {
  font-size: 1.4rem;
  margin-bottom: 0;
  color: #929292;
  font-weight: 500;
  line-height: 2.4rem;
}
.login_process .login_part .loginFormBox .text_top p a {
  color: #4CAF50;
  font-weight: 600;
}
.login_process .login_part .loginFormBox .fill_form .input_group {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.login_process .login_part .loginFormBox .fill_form .input_group .radio_btn {
  display: flex;
  align-items: center;
  gap: 2px;
}
.login_process .login_part .loginFormBox .tabs_part .nav {
  border: 0;
  display: flex;
  position: relative;
}
.login_process .login_part .loginFormBox .tabs_part .nav .nav-item {
  flex: 1 0 0%;
}
.login_process .login_part .loginFormBox .tabs_part .nav .nav-item .nav-link {
  position: relative;
  font-size: 1.4rem;
  border: 0;
  padding: 1rem 0rem;
  text-align: center;
  border-bottom: 4px solid #e9e8e8;
  font-weight: 600;
  color: #ADABAB;
}
.login_process .login_part .loginFormBox .tabs_part .nav .nav-item .nav-link.active {
  -o-border-image: linear-gradient(90deg, #044783 0%, #00C056 100%);
     border-image: linear-gradient(90deg, #044783 0%, #00C056 100%);
  color: #044783;
  border-image-slice: 1;
}
.login_process .login_part .loginFormBox .tabs_part .nav .nav-item .nav-link:focus {
  box-shadow: none;
}
.login_process .login_part .loginFormBox .tabs_part .tab-content {
  margin-top: 2rem;
}
.login_process .login_part .loginFormBox .form-group {
  margin-bottom: 1.5rem;
}
.login_process .login_part .loginFormBox .form-group .form-label {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--blackColor);
}
.login_process .login_part .loginFormBox .form-group .form-control {
  height: 4rem;
  border-radius: 4px;
  border: 1px solid #EBD8D8;
  font-size: 1.4rem;
}
.login_process .login_part .loginFormBox .form-group .form-control:focus {
  box-shadow: none;
}
.login_process .login_part .loginFormBox .form-group .eye_icon {
  position: absolute;
  top: 11px;
  right: 11px;
  color: #707070;
  font-size: 1.4rem;
}
.login_process .login_part .loginFormBox .verify_btn {
  background: #1e9e45;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  padding: 2px 10px;
  color: var(--whiteColor);
  margin-left: auto;
  font-size: 1.2rem;
  font-weight: 600;
  border: 0;
  float: right;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.login_process .login_part .loginFormBox .verify_btn .icon i {
  font-size: 1.3rem;
}
.login_process .login_part .loginFormBox .loginbtm {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 5px;
  font-size: 1.3rem;
  font-weight: 600;
}
.login_process .login_part .loginFormBox .loginbtm a {
  color: #212529;
}
.login_process .login_part .loginFormBox .submit_btn {
  margin: 1rem 0rem 0;
}
.login_process .login_part .loginFormBox .submit_btn .btn_custom.btn_1 {
  color: var(--whiteColor);
  text-align: center;
  font-size: 1.3rem;
  border: none;
  padding: 2rem;
  width: 100%;
  border-radius: 1rem;
  height: 4rem;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: auto;
  background: linear-gradient(to right, #094882, #1e9e45);
}
.login_process .login_part .loginFormBox .signup_part {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--blackColor);
  text-align: center;
  display: block;
  margin-top: 1.5rem;
}
.login_process .login_part .loginFormBox .signup_part a {
  color: var(--blueColor);
  font-weight: 700;
  text-decoration: underline;
}
.login_process .registerPage {
  max-width: 55rem;
}

.img-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: 4px solid #ddd;
  border-top: 4px solid #094882; /* theme color */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
  z-index: 5;
}

@keyframes spin {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.varify_btn {
  background: #1e9e45;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  padding: 2px 7px;
  color: var(--whiteColor);
  margin-left: auto;
  margin-top: 5px;
  font-size: 1rem;
  font-weight: 500;
}
.varify_btn a {
  color: var(--whiteColor);
  display: block;
}

.lazy {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.lazy-loaded {
  opacity: 1;
}

@media (min-width: 1200px) {
  section.banner_part .swiper-slide img {
    max-height: 40rem;
    min-height: 40rem;
  }
  section.featured_category_part .categroy_slider .swiper-slide {
    width: auto !important;
  }
}
@media (min-width: 1300px) {
  section.banner_part .swiper-slide img {
    max-height: 43rem;
    min-height: 43rem;
  }
}
@media (min-width: 1500px) {
  section.banner_part .swiper-slide img {
    max-height: 50rem;
    min-height: 50rem;
  }
}
@media (min-width: 1600px) {
  section.banner_part .swiper-slide img {
    max-height: 55rem;
    min-height: 55rem;
  }
}
@media (min-width: 1800px) {
  section.banner_part .swiper-slide img {
    max-height: 60rem;
    min-height: 60rem;
  }
}
@media (min-width: 992px) {
  .center-mode {
    transform: inherit !important;
    justify-content: center;
  }
}
@media (min-width: 1700px) {
  section.product_filter .filter_box .right_filter_part ul#productList li {
    max-width: calc(33.33% - 1.5rem);
    flex: 1 1 calc(33.33% - 1.5rem);
  }
  section.product_filter .product-card .inner_body .card-media-wrapper img {
    max-height: 38rem;
  }
}
@media (min-width: 1900px) {
  section.product_filter .filter_box .right_filter_part ul#productList li {
    flex: 1 1 calc(25% - 1.5rem);
    max-width: calc(25% - 1.5rem);
  }
  section.product_filter .product-card .inner_body .card-media-wrapper img {
    max-height: 32rem;
  }
}
.reviewSucessfull_box .modal-header {
  color: var(--whiteColor);
  position: relative;
  background: #44d920;
}
.reviewSucessfull_box .modal-header .sucess_img {
  text-align: center;
  margin: auto;
  flex: 1 1 0%;
}
.reviewSucessfull_box .modal-header .sucess_img img {
  filter: invert(97%) sepia(97%) saturate(0%) hue-rotate(72deg) brightness(102%) contrast(101%);
  max-width: 12rem;
}
.reviewSucessfull_box .modal-header button.btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
}
.reviewSucessfull_box .modal-header button.btn-close {
  background-color: var(--whiteColor);
  opacity: 1;
  color: red;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100%;
  background-size: 12px;
}
.reviewSucessfull_box .modal-body {
  text-align: center;
  padding: 2rem;
}
.reviewSucessfull_box .modal-body .title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.reviewSucessfull_box .modal-body p {
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 0;
  color: #6f6f6f;
}

#generated-captcha {
  text-decoration: line-through;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  background-color: #ede7f6;
  border-radius: 6px;
  border: none;
  padding: 6px;
  outline: none;
  color: #1d1d1d;
  min-width: 20rem;
  display: inline-block;
  margin-right: 10px;
}

.captch-code {
  height: 60px;
}

#captcha_check {
  display: none;
  color: green;
}

#captcha_error {
  display: none;
  color: red;
}

.captch-code i {
  font-size: 24px;
}

.main_loader, .inner_loader {
  display: none;
}

.main_loader, .inner_loader {
  border: 3px solid rgba(9, 72, 130, 0.5607843137);
  border-radius: 50%;
  border-top: 3px solid #094882;
  width: 1.5rem;
  height: 1.5rem;
  animation: spin 2s linear infinite;
  margin: auto;
}

.main_loader {
  margin-top: 5px;
}

.inner_loader {
  margin: auto 8px;
}

.loader {
  display: none;
}

.loader {
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #3498db;
  width: 30px;
  height: 30px;
  /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
section.pay_now {
  background: var(--lightBgColor);
  padding: 5rem 2rem;
}
section.pay_now .payment_box {
  background: var(--whiteColor);
  max-width: 70%;
  margin: auto;
  padding: 2rem;
}
section.pay_now .payment_box .top_part {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.pay_now .payment_box .top_part .amount_price {
  font-size: 2rem;
  font-weight: 600;
}
section.pay_now .payment_box .payment_method {
  margin: 2rem 0rem;
}
section.pay_now .payment_box .payment_method .title {
  margin-bottom: 0;
  font-size: 1.2rem;
  color: #696969;
}
section.pay_now .payment_box .payment_method .payment_method_list {
  margin-top: 1.5rem;
}
section.pay_now .payment_box .payment_method .payment_method_list .accordion {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
section.pay_now .payment_box .payment_method .payment_method_list .accordion .accordion-item {
  transition: all 0.5s ease-in-out;
  background: #f0f5ff;
}
section.pay_now .payment_box .payment_method .payment_method_list .accordion .accordion-item .accordion-button {
  font-size: 1.5rem;
  color: var(--blackColor);
  font-weight: 400;
  padding: 1.5rem 1.5rem;
  border-radius: 0;
  background-color: rgba(43, 71, 126, 0.1803921569);
}
section.pay_now .payment_box .payment_method .payment_method_list .accordion .accordion-item .accordion-button .form-check {
  display: flex;
  align-items: center;
  gap: 1rem;
}
section.pay_now .payment_box .payment_method .payment_method_list .accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
section.pay_now .payment_box .payment_method .payment_method_list .accordion .accordion-item .accordion-button span.card_icon {
  margin-left: auto;
}
section.pay_now .payment_box .payment_method .payment_method_list .accordion .accordion-item .accordion-button::after {
  display: none;
}
section.pay_now .payment_box .payment_method .payment_method_list .accordion .accordion-item .accordion-button .form-check {
  margin-top: 0;
}
section.pay_now .payment_box .payment_method .payment_method_list .accordion .accordion-item .accordion-button .form-check .form-check-input {
  margin-top: 0;
  margin-bottom: 0;
}
section.pay_now .payment_box .payment_method .payment_method_list .accordion .accordion-item .accordion-button .form-check .form-check-input:focus {
  box-shadow: none;
}
section.pay_now .payment_box .payment_method .payment_method_list .accordion .accordion-item .accordion-body {
  padding: 2rem;
  background: rgba(0, 0, 0, 0.0431372549);
  border-radius: 0;
}
section.pay_now .payment_box .payment_method .payment_method_list .accordion .accordion-item .accordion-body h3.short_title {
  font-size: 1.4rem;
  color: #8e8e8e;
  margin-bottom: 2rem;
}
section.pay_now .payment_box .payment_method .payment_method_list .accordion .accordion-item .accordion-body .input_group {
  margin-bottom: 1.5rem;
}
section.pay_now .payment_box .payment_method .payment_method_list .accordion .accordion-item .accordion-body .input_group .label_icon i {
  font-size: 12px;
}
section.pay_now .payment_box .payment_method .payment_method_list .accordion .accordion-item .accordion-body .input_group label.form-label {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  line-height: normal;
}
section.pay_now .payment_box .payment_method .payment_method_list .accordion .accordion-item .accordion-body .input_group label.form-label .label_icon {
  margin-left: 5px;
}
section.pay_now .payment_box .payment_method .payment_method_list .accordion .accordion-item .accordion-body .submit_btn .btn_custom {
  margin-top: 0;
  line-height: normal;
  height: auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2rem 1rem;
  margin-left: 0;
  height: 4rem;
  min-width: 11rem;
}
section.pay_now .payment_box .payment_method .payment_method_list .accordion .accordion-item .accordion-body span.right_icon {
  position: absolute;
  right: 2rem;
  top: 2rem;
  opacity: 0.7;
}
section.pay_now .payment_box .payment_method .payment_method_list .accordion .accordion-item .accordion-body .title {
  font-size: 1.6rem;
  font-weight: 600;
  padding-bottom: 10px;
}
section.pay_now .payment_box .payment_method .payment_method_list .accordion .accordion-item .accordion-body .checkout_form_part {
  margin-bottom: 0;
}
section.pay_now .payment_box .payment_method .payment_method_list .wallet_part {
  text-align: center;
}
section.pay_now .payment_box .payment_method .payment_method_list .wallet_part img {
  max-width: 15rem;
  text-align: center;
  margin: auto;
}
section.pay_now .payment_box .payment_method .payment_method_list .wallet_part .wallet_content {
  padding-top: 1.5rem;
  max-width: 80%;
  margin: auto;
  font-size: 1.5rem;
}
section.pay_now .payment_box .payment_method .payment_method_list .card_icon {
  margin-left: auto;
  background: var(--whiteColor);
  padding: 5px;
  width: 3rem;
  border-radius: 100%;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.pay_now .payment_box .payment_method .payment_method_list .card_icon img {
  max-width: 2rem;
}

section.inner_pages_design {
  background: var(--lightBgColor);
  padding: 6rem 1.5rem;
}
section.inner_pages_design .part_desc .sub_title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
section.inner_pages_design .part_desc p:last-child {
  margin-bottom: 0;
}
section.inner_pages_design .part_desc {
  padding-bottom: 1.5rem;
}
section.inner_pages_design .part_desc:last-child {
  padding-bottom: 0;
}
section.inner_pages_design p {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #707070;
}
section.inner_pages_design p span {
  color: var(--blackColor);
}
section.inner_pages_design .terms_service ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #707070;
}
section.inner_pages_design .terms_service ul li {
  padding-bottom: 1.5rem;
}
section.inner_pages_design .terms_service ul li:last-child {
  padding-bottom: 0;
}

.form-check-input[type=radio], .form-check-input {
  width: 2rem;
  height: 2rem;
}
.form-check-input[type=radio]:focus, .form-check-input:focus {
  box-shadow: none;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    max-width: 100%;
    overflow-y: auto;
    white-space: nowrap;
    margin: 0 2rem;
    flex-grow: inherit;
  }
  .navbar-expand-lg .navbar-collapse::-webkit-scrollbar {
    height: 3px;
  }
}
@media (max-width: 1400px) {
  section.product_filter .product-card .inner_body .card-media-wrapper img {
    max-height: 27rem;
    min-height: 27rem;
  }
}
@media (max-width: 1280px) {
  section.product_filter .product-card .inner_body .card-media-wrapper img {
    min-height: auto;
    max-height: 22rem;
  }
  .product-card .inner_body .card-media-wrapper img {
    min-height: auto;
    max-height: 25rem;
  }
  .buy_it_product_box .product-card .inner_body .card-media-wrapper img {
    min-height: auto;
    max-height: 28rem;
  }
  section.compare_items .product-card .inner_body .card-media-wrapper img {
    min-height: auto;
    max-height: 30rem;
  }
  section.recently_viewed .product-card .inner_body .card-media-wrapper img {
    min-height: auto;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
  section.compare_product .product-card .inner_body .card-media-wrapper img {
    min-height: auto;
    max-height: 28rem;
  }
}
@media (max-width: 1199px) {
  html {
    font-size: 53.5%;
  }
  .space_between.product_descs {
    min-width: 300px;
    max-width: 400px;
  }
  section.recently_viewed {
    padding: 6rem 2rem;
  }
  header.main_header .navbar-toggler {
    background: var(--blueColor);
    width: 2.5rem;
    height: 2.5rem;
    justify-content: center;
    align-items: center;
  }
  header.main_header .navbar-nav .dropdown-menu {
    position: fixed !important;
    top: 8rem;
  }
  section.product_filter .filter_box .left_filter_part {
    max-width: 30rem;
    min-width: 30rem;
  }
  section.product_filter .filter_box .left_filter_part button.close_filter_btn {
    display: block;
  }
  section.product_filter .product-card .inner_body .card-media-wrapper img {
    min-height: auto;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
  section.product_details .product_all_details .gallery-container {
    min-width: 60rem;
    max-width: 60rem;
  }
  .lg-outer .lg-object {
    max-width: 85%;
  }
  section.all_collection .collection_box .img-sec img {
    min-height: 23rem;
    max-width: 23rem;
  }
  section.product_details .product_all_details .gallery-container .gallery-main {
    width: 50rem;
    height: 50rem;
  }
  section.banner_part .swiper-slide img {
    max-height: 38rem;
    min-height: 38rem;
  }
  section.banner_part .slider_btn {
    bottom: 2rem;
  }
  section.banner_part .slider_btn .swiper-button-next, section.banner_part .slider_btn .swiper-button-prev {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
  }
  .slider_btn .swiper-button-next:after, .slider_btn .swiper-button-prev:after {
    font-size: 1rem;
  }
  section.order_view .order_listing .orders_box_listing .order_box .img-sec img {
    max-height: 30rem;
    min-height: 30rem;
  }
  section.collection_parts .box .media_part .img-sec img {
    min-height: 20rem;
    max-height: 35rem;
  }
  section.product_filter .filter_toggle_btn {
    background: var(--blackColor);
    color: var(--whiteColor);
    padding: 1rem 1.5rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  section.product_filter .filter_box .left_filter_part {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background: var(--whiteColor);
    transform: translateX(-100%);
    transition: transform 0.6s ease-in-out;
    z-index: 99;
    padding: 2rem;
    overflow-y: auto;
  }
  section.product_filter .filter_box .left_filter_part.show_filter {
    transform: translateX(0);
  }
  section.product_filter .mobile_filter_btn {
    display: block;
    text-align: right;
    margin-bottom: 15px;
    position: absolute;
    margin-top: -35px;
  }
  section.product_filter .reset-btn {
    margin-top: 10px;
    padding: 5px 15px;
    background-color: #f44336;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
  }
  section.product_filter .close_filter_btn {
    background: var(--blackColor);
    color: var(--whiteColor);
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 2rem;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 3rem;
    border-radius: 50%;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  section.product_filter .mobile_filter_btn {
    display: block; /* Show on mobile */
    text-align: right;
    margin-bottom: 15px;
  }
  body.backdrop_show {
    overflow: hidden;
  }
  body.backdrop_show::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 8;
  }
  section.comparison-banner #divisor, section.comparison-banner figure {
    min-height: 35rem;
    height: 100%;
    max-height: 35rem;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 48.5%;
  }
  section.blog_page .right_side_part .main_box .box_part .blog_box {
    gap: 1rem;
  }
  footer .footer_logo_part img {
    max-width: 100%;
  }
  header .navbar-toggler {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .navbar-toggler .navbar-toggler-icon {
    right: 0;
    top: 0px;
    background-image: url(../images/menu-1-svgrepo-com.svg);
    filter: invert(96%) sepia(0%) saturate(0%) hue-rotate(128deg) brightness(104%) contrast(104%);
    background-size: 15px;
  }
  header.main_header .navbar {
    min-height: auto;
  }
  section.banner_part .swiper-slide img {
    max-height: 31rem;
    min-height: 31rem;
  }
  section.highlight_features .features_category .features .inner_content {
    max-width: 26rem;
  }
  section.product_details .product_all_details {
    flex-direction: column;
  }
  section.product_details .product_all_details .gallery-container {
    min-width: 100%;
    max-width: 100%;
    position: relative;
    background-color: transparent;
    padding: 0;
    top: 0;
  }
  section.product_details .product_all_details .gallery-container .gallery-main {
    width: 100%;
    height: 100%;
    min-height: 100%;
  }
  section.product_details .product_all_details .right_part {
    flex: 1 1 0%;
    max-width: 100%;
    margin-top: 0rem;
  }
  section.all_collection .collection_box .img-sec img {
    min-height: auto;
    max-width: 23rem;
    max-height: 23rem;
  }
  section.comparison-banner #divisor {
    min-height: 30rem;
    max-height: 30rem;
  }
  section.comparison-banner .comparison-text {
    max-width: 35%;
  }
  section.comparison-banner figure {
    min-height: 30rem;
    max-height: 30rem;
  }
  .checkout_form form {
    max-width: 100%;
    margin: auto;
  }
  header.main_header {
    padding: 1rem 1rem 1rem;
  }
  header.main_header .navbar .logo img {
    max-width: 15rem;
  }
  header.main_header .right_icon {
    position: absolute;
    margin-right: 5rem;
    top: -4px;
    right: 0;
  }
  header.main_header .right_icon .category_search_box .form-control {
    min-width: 30rem;
  }
  header.main_header .navbar ul.navbar-nav {
    align-items: flex-start;
    margin: 2rem 0rem 1rem;
    gap: 0;
    row-gap: 1.5rem;
  }
  header.main_header .navbar ul.navbar-nav li.nav-item a.nav-link {
    min-height: auto;
    margin: 0;
    justify-content: flex-start;
    margin: 0;
  }
  header.main_header .navbar ul.navbar-nav li.nav-item a.nav-link.login_btn {
    margin-top: 1rem;
  }
  header.main_header .img_box .img_content {
    transform: translate(0%, 0%);
    width: 100%;
    max-width: 30rem;
    left: 0;
    right: 0;
  }
  header.main_header .img_box img {
    width: 100%;
    height: 100%;
    max-width: 30rem;
  }
  header.main_header .img_box img {
    width: 100%;
  }
  header.main_header .navbar-nav .dropdown-menu {
    position: static !important;
    margin-left: 0;
    margin-top: 1rem;
  }
  header.main_header .navbar-nav .dropdown-menu .mega_menu_listing {
    width: 100%;
    max-width: 90rem;
  }
  section.order_view .order_listing .orders_box_listing .order_box {
    min-width: 48%;
    max-width: 48%;
  }
  section.order_view .order_listing .orders_box_listing .order_box .img-sec img {
    max-height: 40rem;
    min-height: auto;
  }
  .order_header {
    padding: 1rem 1rem;
  }
  .order_header .navbar {
    padding: 0;
  }
  .order_header .navbar ul.navbar-nav {
    margin-left: 0;
  }
  .order_header .navbar-nav {
    margin-left: 0rem;
    margin: 2rem 0rem;
  }
  .order_header button.navbar-toggler {
    background: var(--whiteColor);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .order_header button.navbar-toggler .navbar-toggler-icon {
    filter: none;
  }
  .order_header button.navbar-toggler:focus {
    box-shadow: none;
  }
  .order_header .right_icon {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-right: 5rem;
    position: absolute;
    right: 0;
    top: 5px;
  }
  .order_header .logo img {
    max-width: 12rem;
  }
  section.compare_product .product-card .inner_body .card-media-wrapper img {
    max-height: 28rem;
    min-height: 28rem;
  }
  section.team_part .all_boxes {
    margin-top: 0rem;
  }
  section.team_part .all_boxes .member_box {
    max-width: calc(50% - 2rem);
    min-width: calc(40% - 2rem);
  }
  section.thank_you_page .support_part {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
  }
  section.thank_you_page .support_part .btn_custom.btn_1 {
    margin-left: 0;
    margin-top: 1rem;
  }
  footer {
    padding: 2rem 0rem 2rem;
  }
  .product-card .inner_body .card-media-wrapper img {
    min-width: auto;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
}
@media (max-width: 767px) {
  .product-card .inner_body .card-quick-add {
    width: 25px;
    height: 25px;
  }
  .product-card .inner_body .card-quick-add .icon-bag {
    width: 15px;
    height: 15px;
  }
  header.main_header .search-box .suggestions {
    top: 10.5rem;
    max-width: 45rem;
  }
  header.main_header .search-box .suggestions .suggestions-list {
    padding-right: 1rem;
  }
  section.order_view .order_listing .top_heading, .order_row.scrollable {
    min-width: 600px;
  }
  section.order_view .order_listing .main_class {
    flex-direction: column;
  }
  section.order_view .order_listing .order_img_sec {
    width: 4rem;
    height: 4rem;
  }
  .login_process {
    padding: 2rem;
  }
  .login_process .login_part {
    max-width: 100%;
  }
  .login_process .login_part .loginFormBox {
    padding: 1.5rem;
  }
  .login_process .login_part .loginFormBox .form-group .eye_icon {
    top: 9px;
  }
  header.main_header {
    min-height: 10rem;
  }
  header.main_header .default_user_profile .cart_text {
    font-size: 1.2rem;
  }
  header.main_header .price_cart .cart_text {
    font-size: 1.2rem;
  }
  header.main_header .navbar ul.navbar-nav {
    margin: 6rem 0rem 1rem;
  }
  header.main_header .right_icon {
    margin: 0;
    margin-top: 4rem;
    top: 0;
    left: 0;
    right: 0;
  }
  header.main_header .right_icon .category_search_box .form-control {
    min-width: -moz-fit-content;
    min-width: fit-content;
    line-height: normal;
    padding: 1rem;
  }
  header.main_header .right_icon .category_search_box .dropdown-menu li .dropdown-item {
    margin-bottom: 0px;
  }
  header.main_header .right_icon .checkout_process {
    top: -9rem;
    right: 5rem;
    height: auto;
    z-index: 9;
    position: absolute;
    bottom: 0;
  }
  header.main_header .user_profile.dropdown .dropdown-menu {
    margin-left: 0;
    margin-top: 0;
    right: 1rem;
    top: 5rem;
  }
  header.main_header .user_profile.dropdown .icon img {
    max-width: 3rem;
  }
  header.main_header .user_profile1.dropdown .dropdown-menu {
    margin-left: 0;
    margin-top: 0;
    left: 1rem;
    top: 10rem;
  }
  .category_search_box .search-form {
    max-width: 100%;
  }
  .category_search_box .search-select {
    font-size: 0.85rem;
  }
  .category_search_box .form-control {
    font-size: 0.85rem;
  }
  section.blog_details .inner_blog_details .content_part h1 {
    font-size: 2.8rem;
  }
  section.blog_details .inner_blog_details .content_part .desc_part .inner_desc h2 {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
  section.blog_page {
    padding: 3rem 1.5rem;
    overflow-y: hidden;
  }
  section.blog_page .right_side_part {
    padding-left: 3rem;
  }
  section.blog_page .right_side_part .main_box {
    margin-top: 2rem;
  }
  section.blog_page .right_side_part .main_box .box_part .blog_box .img-sec {
    min-width: calc(100% - 0rem);
    max-width: calc(100% - 0rem);
  }
  section.blog_page .right_side_part .main_box .box_part .blog_box .img-sec img {
    max-height: 20rem;
    min-height: 20rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
  section.blog_page .blog_box {
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  section.blog_page .blog_box .featured-image {
    min-width: calc(100% - 1rem);
    max-width: calc(100% - 1rem);
  }
  section.blog_page .blog_box .featured-image::after {
    display: none;
  }
  section.blog_page .blog_box .content_part {
    padding: 0rem 0rem;
  }
  section.profile_page_design {
    padding: 0rem 2rem;
    padding-bottom: 2rem;
  }
  section.profile_page_design .main_box {
    margin-top: 2rem;
  }
  section.edit_user_profile {
    min-height: auto;
    padding: 2rem 2rem;
  }
  section.edit_user_profile .main_profile_box {
    padding: 0;
  }
  .common_modal .modal-body .slider_part .box .card_item {
    align-items: flex-start;
  }
  .common_modal .modal-body .slider_part .box .card_item .img-sec {
    max-width: 12rem;
    min-width: 12rem;
  }
  .common_modal .modal-body .slider_part .box .card_item .content h3 {
    max-height: 15rem;
    overflow-y: auto;
    line-height: normal;
  }
  .common_modal .modal-body .slider_part .box .card_item .content h3::-webkit-scrollbar {
    width: 3px;
  }
  .common_modal .modal-body .slider_part .box .card_item .content h3 a {
    font-size: 1.2rem;
  }
  .common_modal .modal-body .recommanded_part_slider .slider_part .box .content h3 {
    max-height: 8rem;
  }
  .customer_write_review {
    margin-top: 3rem;
  }
  section.compare_items {
    padding: 3rem 2rem 0;
  }
  section.inner_pages_design {
    padding: 3rem 2rem;
  }
  section.buy_it {
    padding: 3rem 2rem 3rem;
  }
  section.buy_it .buy_it_box .buy_it_product_box .cart_price {
    max-width: calc(100% - 0rem);
    margin-top: 1.5rem;
    margin-bottom: 0;
    text-align: center;
  }
  section.buy_it .buy_it_box .buy_it_product_box .main_boxes {
    max-width: calc(100% - 0rem);
  }
  section.buy_it .buy_it_box .buy_it_product_box .main_boxes .product-card {
    max-width: 25rem;
    min-width: 25rem;
  }
  .order_row_wrapper {
    overflow-x: auto;
  }
  .order_row_wrapper .top_heading {
    width: -moz-fit-content;
    width: fit-content;
  }
  .order_row_wrapper::-webkit-scrollbar {
    height: 3px;
  }
  .order_row_wrapper .order_row.scrollable {
    overflow-x: hidden;
    width: -moz-fit-content;
    width: fit-content;
  }
  .order_row_wrapper .space_between {
    min-width: 15rem;
  }
  .order_dashboard .order_details .order_boxes .order_box {
    flex: 1 1 0%;
    max-width: calc(100% - 0rem);
    min-width: calc(100% - 0rem);
  }
  section.thank_you_page .support_part .btn_custom.btn_1 {
    margin-right: 0;
    margin-left: 0;
    margin-top: 1rem;
    font-weight: 500;
    font-size: 1.4rem;
  }
  section.thank_you_page .checkout_form {
    position: static;
    margin-left: 0;
    padding: 2rem 1rem;
    background: var(--whiteColor);
    margin-top: 2rem;
  }
  .banner-container .mobile_view {
    display: block;
  }
  .banner-container .desctop_view {
    display: none;
  }
  .product_rating_part {
    margin: 3rem 2rem;
  }
  .product_rating_part .write_review_box {
    padding: 2rem;
  }
  .product_rating_part .customers_review {
    position: relative;
    top: 0;
  }
  .product_rating_part .review_img img {
    max-width: 35rem;
  }
  html {
    font-size: 47.5%;
  }
  section.coupan_code_part {
    padding: 3rem 2rem;
  }
  section.coupan_code_part .desc_part .top_title h2 {
    line-height: 3.5rem;
  }
  section.available_service_part {
    padding: 3rem 2rem;
  }
  section.available_service_part ul li {
    min-width: 49%;
  }
  .fill_form .input_filed .iti .form-control {
    padding-left: 10.5rem !important;
  }
  header .navbar ul.navbar-nav {
    align-items: flex-start;
    margin: 2rem 0rem;
    gap: 0;
  }
  header .navbar ul.navbar-nav li.nav-item .mega_menu_listing {
    gap: 2rem;
    flex-direction: column;
    padding-bottom: 0;
    max-width: 100%;
  }
  header .navbar ul.navbar-nav li.nav-item .mega_menu_listing header .img_box img {
    width: 100%;
    height: 100%;
  }
  section.pay_now {
    padding: 3rem 2rem;
  }
  section.pay_now .payment_box {
    max-width: 100%;
  }
  .school_fill_details .modal-content {
    max-width: 90%;
    margin: auto;
  }
  section.banner_part .swiper-slide img {
    min-height: 14rem;
    max-height: 14rem;
  }
  .checkout_form form {
    max-width: 100%;
  }
  section.login_form .form_inner {
    max-width: 90%;
    margin: auto;
  }
  section.product_details {
    padding: 3rem 1.5rem;
  }
  section.product_details .main_description_part {
    margin-top: 2rem;
  }
  .product_inner_details .product_desc {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .product_inner_details .price_part {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  section.product_details .main_description_part p {
    line-height: 2.4rem;
  }
  .featured-collection-tabs .grade_part .grade_tabs_part {
    margin-top: 2rem;
  }
  .featured-collection-tabs .grade_part .left_img .desktop.img-sec {
    display: none;
  }
  .featured-collection-tabs .grade_part .left_img .mobile.img-sec {
    display: block !important;
  }
  section.featured_category_part {
    padding: 3rem 0rem 3rem 2rem;
  }
  section.featured_category_part .categroy_slider .box {
    height: 100%;
  }
  section.featured_category_part .categroy_slider .box .img-sec img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    min-height: 100%;
  }
  .featured-collection-tabs {
    padding: 3rem 1.5rem;
  }
  .featured-collection-tabs .grade_part .left_img .mobile.img-sec img {
    max-height: 100%;
  }
  .top_title {
    margin-bottom: 2rem;
  }
  .top_title h2 {
    font-size: 2.4rem;
  }
  section.newsletter {
    padding: 3rem 1.5rem;
  }
  section.newsletter .newsletter_subscribe {
    flex-wrap: wrap;
    gap: 2rem;
  }
  section.newsletter .newsletter_subscribe .form-control {
    width: 100%;
    padding: 2rem 2rem;
  }
  section.newsletter .newsletter_subscribe .input_group, section.newsletter .newsletter_subscribe .subscripbe_btn {
    width: 100%;
    max-width: 90%;
    margin: auto;
  }
  .btn_custom {
    width: 100%;
  }
  section.comparison-banner .comparison-text {
    max-width: 50%;
    font-size: 1.4rem;
    left: 43%;
    top: 0;
    bottom: inherit;
  }
  section.comparison-banner #divisor, section.comparison-banner figure {
    min-height: 15rem;
    height: 100%;
    max-height: 15rem;
  }
  section.comparison-banner #figure {
    height: 3rem;
    width: 3rem;
  }
  section.highlight_features {
    padding: 3rem 1.5rem;
  }
  section.highlight_features .features_category .highlight-spots {
    display: none;
  }
  section.highlight_features .features_category .media_part {
    width: 100%;
  }
  section.highlight_features .features_category .features .inner_content {
    position: relative;
    transform: inherit;
    max-width: 100%;
    margin-top: 3rem;
    left: 0 !important;
    text-align: left !important;
  }
  section.highlight_features .features_category .features .inner_content.content_2 {
    left: 0;
  }
  section.highlight_features .line {
    display: none;
  }
  footer {
    padding: 2rem 2rem 2rem;
  }
  footer h4 {
    margin-bottom: 1rem;
    font-size: 1.7rem;
  }
  footer .row_space {
    --bs-gutter-y: 1rem;
  }
  footer .footer_logo_part {
    margin-bottom: 1rem;
  }
  footer .footer_logo_part img {
    max-width: 15rem;
  }
  footer .footer_menu {
    margin-bottom: 1rem;
  }
  footer .bottom_footer {
    padding-top: 1rem;
    margin-top: 0rem;
  }
  section.compare_product {
    padding: 3rem 1.5rem;
  }
  .btn_custom.btn_1 {
    width: -moz-fit-content;
    width: fit-content;
    min-width: 15rem;
  }
  .btn_custom {
    width: -moz-fit-content;
    width: fit-content;
    min-width: 15rem;
  }
  .modal.right .modal-dialog {
    width: 100%;
    max-width: 90%;
  }
  .product-card {
    width: 100%;
    max-width: 100%;
  }
  section.product_filter {
    padding: 7rem 2rem 2rem;
  }
  section.product_filter .filter_box h3 {
    font-size: 1.6rem;
  }
  section.product_filter .filter_box .right_filter_part ul#productList li {
    max-width: calc(100% - 1.5rem);
    flex: 1 1 calc(100% - 1.5rem);
  }
  section.product_filter .filter_box .right_filter_part ul#productList li .product-card {
    max-width: 100%;
  }
  section.product_filter .filter_box .right_filter_part .product-card {
    min-width: 100%;
    max-width: 100%;
  }
  section.product_filter .filter_box .right_filter_part .product-card .inner_body .card-media-wrapper img {
    min-height: auto;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
  section.product_filter .filter_box .right_filter_part .pagination {
    padding: 0;
    margin-bottom: 0;
  }
  section.product_filter .filter_box .left_filter_part button.close_filter_btn {
    display: block;
  }
  .product_inner_details h1 {
    font-size: 2rem;
  }
  .customized_card .swiper-slide {
    min-width: auto;
    max-width: inherit;
  }
  section.cart_page {
    padding: 3rem 2rem;
  }
  section.cart_page .cart_table {
    margin-bottom: 2rem;
  }
  section.cart_page .cart_table table thead th {
    width: auto !important;
  }
  section.cart_page .cart_table table thead th.total_size {
    min-width: 15rem;
  }
  section.cart_page .cart_table table tbody .inner_desc h3 {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  section.cart_page .cart_table table tbody .inner_desc .cart_item_price {
    font-size: 1.4rem;
  }
  .QuickView-Modal .QuickView-Details .product-media-gallery {
    display: none;
  }
  .QuickView-Modal .QuickView-Details .product_inner_details {
    padding-left: 0;
  }
  .QuickView-Modal .modal-dialog {
    min-width: auto;
  }
  section.checkout_form {
    padding: 3rem 2rem;
  }
  section.checkout_form .short_brif {
    display: block;
  }
  section.checkout_form .checkout_form_part:last-child {
    margin-bottom: 0;
  }
  section.checkout_form .referal_part {
    padding: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  section.checkout_form .referal_part .fill_form {
    width: 100%;
  }
  section.checkout_form .referal_part .btn_custom.btn_1 {
    font-size: 12px;
  }
  section.product_like {
    padding: 3rem 2rem;
  }
  section.section_top_banner .top_banner .img-sec img {
    max-height: 15rem;
    min-height: 15rem;
    -o-object-position: left;
       object-position: left;
  }
  section.section_top_banner .top_banner .banner_content .banner_heading {
    font-size: 2.4rem;
  }
  section.recently_viewed {
    padding: 3rem 2rem;
  }
  .checkout_header .logo img {
    max-width: 15rem;
  }
  section.collection_parts {
    padding: 3rem 2rem;
  }
  section.collection_parts .books_collection {
    margin-bottom: 2rem;
  }
  section.collection_parts .books_collection .left_collection_part {
    margin-bottom: 2rem;
  }
  section.collection_parts .box .media_part .img-sec img {
    max-height: 30rem;
    min-height: 30rem;
  }
  section.collection_parts .box .featured-content h2 {
    font-size: 16px;
  }
  section.collection_parts.more_category_part .box .media_part .img-sec img {
    min-height: 28rem;
    max-height: 28rem;
  }
  section.contact_us_part {
    padding: 3rem 2rem;
  }
  section.contact_us_part .contact_details_part {
    margin-top: 3rem;
  }
  section.all_collection {
    padding: 3rem 2rem;
  }
  section.all_collection .collection_box .content_part h2 {
    font-size: 1.6rem;
  }
  section.all_collection .collection_box .content_part .btn_custom {
    font-size: 1.6rem;
  }
  section.all_collection .collection_box .img-sec img {
    max-width: 100%;
    max-height: 18rem;
  }
  section.all_order_details {
    padding: 3rem 2rem;
  }
  section.order_view {
    padding: 3rem 2rem;
  }
  section.order_view .order_listing .order_list table th {
    padding: 1rem;
  }
  section.order_view .order_listing .order_list table td {
    padding: 1rem;
  }
  section.order_view .order_listing .orders_box_listing .order_box {
    min-width: 100%;
    max-width: 100%;
  }
  section.setting_part .right_part .logout_box {
    flex-direction: column;
  }
  .product-card .inner_body .card-media-wrapper img {
    min-height: auto;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
  section.product_details .product_all_details .gallery-container .gallery-main .swiper-slide img {
    max-height: 100%;
  }
  .product-card .inner_body .card_body_content .card_heading h5 {
    font-size: 1.6rem;
  }
  .product-card .inner_body .card_body_content .card-price {
    font-size: 12px;
  }
  .product-card .inner_body .card_body_content .card-price .price-item {
    display: block;
  }
  .common_modal .modal-body {
    margin-top: 2rem;
  }
  .common_modal .modal-body .cart_listing span.cross {
    position: relative;
    margin-right: 0;
    margin-left: 0;
    position: relative;
    right: 0;
  }
  .common_modal .modal-body .cart_listing .add_cart .cart_info .img-sec {
    min-width: 12rem;
    max-width: 12rem;
  }
  .common_modal .modal-body .cart_listing .add_cart .cart_info .img-sec img {
    height: 12rem;
  }
  .common_modal .modal-body .cart_listing .add_cart .cart_info .content .price_container {
    justify-content: flex-start;
    gap: 1rem;
    flex-direction: column;
  }
  .common_modal .modal-body .cart_listing .add_cart .cart_info .content .price_container .qty_btn {
    margin-left: 0;
  }
  .common_modal .modal-body .cart_listing .add_cart .cart_info .content .price_container .slider_range {
    margin-left: 0;
  }
  .common_modal .modal-body .cart_listing .add_cart .cart_info .content .price_container .price_part {
    font-size: 1.4rem;
  }
  .common_modal .modal-body .cart_listing .add_cart .cart_info .content .price_container .price_part span.discount_line {
    font-size: 1rem;
  }
  .common_modal .modal-body .cart_listing .add_cart .cart_info .content .price_container span.price {
    font-size: 1.4rem;
  }
  .common_modal .modal-body .cart_listing .add_cart .cart_info .content .total_price {
    font-size: 1.2rem;
    text-align: left;
  }
  .common_modal .modal-body .cart_listing .add_cart .cart_info .content h3 {
    line-height: normal;
  }
  .common_modal .modal-body .cart_listing .add_cart .cart_info .content h3 a {
    font-size: 1.2rem;
  }
  .common_modal .modal-body .slider_part .box .content .card-price b.price-item {
    font-size: 1.4rem;
    display: block;
  }
  .reviewSucessfull_box .modal-content, .edit_profile_details .modal-content {
    max-width: 90%;
    margin: auto;
  }
  .edit_profile_details .modal-body {
    max-height: 75vh;
    overflow-y: auto;
  }
  .fill_form .form-floating label {
    font-size: 1.6rem;
    padding-top: 1.8rem;
  }
  section.profile_part .edit_profile .address_details {
    flex-direction: column;
  }
  section.profile_part .edit_profile .address_details .input_details {
    max-width: 100%;
    padding: 0;
  }
  section.about_us {
    padding: 3rem 2rem;
    min-height: auto;
  }
  section.about_us .content_part h1 {
    font-size: 2.6rem;
  }
  section.about_us .content_part .desc_part {
    max-width: 100%;
  }
  section.about_us .content_part .desc_part p {
    font-size: 1.5rem;
  }
  section.about_us .header-wave {
    display: none;
  }
  .founder_page {
    padding: 3rem 2rem;
  }
  .founder_page .inner_desc {
    flex-direction: column;
  }
  .founder_page .inner_desc .content_part {
    max-width: 100%;
    margin-top: 2rem;
  }
  .founder_page .inner_desc .content_part .main_title {
    font-size: 4.2rem;
  }
  .founder_page .inner_desc .content_part h2 {
    font-size: 2.4rem;
  }
  section.team_part {
    padding: 3rem 2rem;
    overflow: hidden;
  }
  section.team_part .all_boxes {
    margin-top: 0;
  }
  section.team_part .all_boxes .member_box {
    max-width: calc(100% - 0rem);
    min-width: calc(100% - 0rem);
  }
  section.team_part .all_boxes .member_box h2 {
    font-size: 2.6rem;
  }
  section.team_part .all_boxes .member_box .icon_box img {
    max-width: 10rem;
  }
  section.team_part .all_boxes .member_box .title {
    font-size: 1.8rem;
  }
  section.team_part .all_boxes .member_box .desc_part p {
    max-width: 100%;
  }
  section.team_part .all_boxes .member_box:nth-child(even):not(:nth-child(2)) {
    margin-top: 0;
  }
  section.core_values {
    padding: 3rem 2rem;
  }
  section.core_values .desc_part {
    text-align: center;
  }
  section.core_values .desc_part p {
    margin-bottom: 0;
    line-height: 2.8rem;
  }
  section.core_values .values_boxes .box {
    max-width: calc(100% - 0rem);
    min-width: calc(100% - 0rem);
  }
  section.core_values .values_boxes .box .icon_box img {
    max-width: 10rem;
  }
  section.core_values .values_boxes .box .title {
    font-size: 1.8rem;
  }
  section.our_mission_vision {
    padding: 3rem 2rem;
  }
  section.our_mission_vision .mission_vision_list {
    margin-left: 0rem;
    flex-direction: column;
    gap: 2rem;
  }
  section.our_mission_vision .mission_vision_list .box {
    max-width: calc(100% - 0rem);
    min-width: calc(100% - 0rem);
  }
  section.our_mission_vision .mission_vision_list .box:nth-child(2) {
    margin-top: 0rem;
    text-align: left;
  }
  section.our_mission_vision .mission_vision_list .box:nth-child(2) .title {
    margin-left: 0;
  }
  section.cart_sticky_part {
    top: 6rem;
  }
  section.cart_sticky_part .add_cart_box .product_img {
    width: 7rem;
    height: 7rem;
  }
}
@media (max-width: 480px) {
  section.order_view .order_listing .top_heading, .order_row.scrollable {
    min-width: 500px;
  }
  section.order_view .order_listing .main_class {
    gap: 0.5rem;
  }
  section.order_view .order_listing .order_img_sec {
    width: 3.5rem;
    height: 3.5rem;
  }
}/*# sourceMappingURL=style.css.map */