@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
:root {
  --brand: #000000;
  --dark: #343434;
  --brand-light-bg: rgba(220, 25, 45, 0.04);
  --bg-light-blue: #D7E9F3;
  --link-color: #1D242E;
  --heading-color: #454545;
  --dark: #000000;
  --grey: #7B7B7B;
  --border-color: rgba(112, 112, 112, 0.431);
  --red: #F50808;
  --body-text-color: #696969;
  --border-radius: .35rem;
  --white: #ffffff;
  --body-font: "Montserrat", sans-serif;
  --second-font: "Oswald", sans-serif;
}

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
*::after, *::before {
  margin: 0%;
  padding: 0%;
}

html {
  font-size: 100%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--white);
  text-rendering: optimizeLegibility;
  font-family: var(--body-font);
  font-display: swap;
  line-height: 1.65;
  color: var(--body-text-color);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  padding-right: 0 !important;
}

.ff-heading {
  font-family: var(--second-font);
}

.lead-lg {
  font-size: 1.375rem;
}

.lead-sm {
  font-size: 1.125rem;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-15 {
  font-size: 0.937rem;
}

.fs-text {
  font-size: 2.8125rem;
}

.bg-light {
  background-color: rgba(234, 234, 234, 0.2431372549) !important;
}

.bg-primary {
  background-color: var(--brand) !important;
}

.bg-primary-light {
  background-color: #F2F2F2 !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-orange {
  background-color: var(--yellow) !important;
}

.bg-gradient {
  background-color: #F2F2F2 !important;
}

.transition {
  transition: all 0.3s ease-in-out;
}

.text-0b {
  color: #0b0b0b !important;
}

.text-40 {
  color: #404040 !important;
}

.text-4d {
  color: #4D4D4D !important;
}

.text-primary {
  color: var(--brand) !important;
}

.text-dark {
  color: var(--dark) !important;
  opacity: 1 !important;
}

.link {
  color: var(--brand);
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
}
.link svg {
  transition: all 0.3s ease-in-out;
}
.link svg path {
  fill: var(--brand);
}
.link:hover {
  color: var(--dark);
}
.link:hover svg {
  transform: translateX(0.5rem);
}
.link:hover svg path {
  fill: var(--dark);
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: var(--dark);
}
a:hover {
  color: var(--brand);
}

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

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.btn:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
  box-shadow: none;
  outline: none;
}

.btn {
  color: var(--dark);
  border-radius: var(--border-radius);
  padding: 0.625rem 1.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.875rem;
  display: inline-flex;
  transition: all 0.4s ease-in-out;
}
.btn.btn-sm { padding:.45rem 1rem; } 

.btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-primary svg path {
  fill: var(--white);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #343434;
  border-color: #343434;
}

.btn-outline-primary {
  border-color: var(--brand);
  color: var(--brand);
  opacity: 1 !important;
}
.btn-outline-primary svg path {
  transition: all 0.4s ease-in-out;
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white) !important;
}
.btn-outline-primary:hover svg path, .btn-outline-primary:focus svg path, .btn-outline-primary:active svg path {
  fill: var(--white);
}

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-white svg path {
  fill: var(--white);
}
.btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brand) !important;
}
.btn-outline-white:hover svg path, .btn-outline-white:focus svg path, .btn-outline-white:active svg path {
  fill: var(--brand);
  transition: all 0.3s ease;
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--dark);
}
.btn-white:hover, .btn-white:focus {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-white:hover svg, .btn-white:focus svg {
  color: var(--white);
}

.btn-dark {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.btn-dark:hover, .btn-dark:focus {
  background-color: #1D242E;
  border-color: #1D242E;
  color: var(--white);
}
.btn-dark:hover svg, .btn-dark:focus svg {
  color: var(--white);
}

.select2-container {
  z-index: 9999;
  width: 100% !important;
  font-family: var(--roboto) !important;
}

.select2-container .select2-selection--single {
  height: 3.25rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 3rem;
  padding-left: 1rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 3.25rem;
  width: 2rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-width: 7px 5px 0 5px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent var(--brand) transparent;
  border-width: 0 5px 7px 5px;
}

.modal-open {
  padding-right: 0 !important;
}

.scroller * {
  scrollbar-width: thin;
  scrollbar-color: #ddd #eee;
}

.scroller *::-webkit-scrollbar {
  width: 12px;
}

.scroller *::-webkit-scrollbar-track {
  background: #eee;
}

.scroller *::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 20px;
  border: 3px solid #eee;
}

/*------ Disc List Style ------------*/
.disc__list li {
  padding-left: 1.25rem;
  position: relative;
}
.disc__list li::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0.5rem;
  left: 0%;
  background-color: var(--yellow);
  border-radius: 50%;
}
.disc__list li:not(:last-child) {
  margin-bottom: 0.25rem;
}
.disc__list.white li::before {
  background: var(--white);
}

.tooltip {
  opacity: 1;
}
.tooltip .tooltip-inner {
  padding: 0 0.5rem;
  min-height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark);
  opacity: 1;
  line-height: 1.2;
}

.tooltip.show {
  opacity: 1 !important;
}

.pagination .page-item {
  margin: 0.2rem;
}
.pagination .page-item .page-link {
  border: 1px solid #E5E5E5;
  font-weight: 600;
  color: var(--body-text-color);
  border-radius: 0%;
  line-height: 1;
  padding: 0.75rem 0.75rem;
  min-width: 2.5rem;
  text-align: center;
}
.pagination .page-item .page-link img {
  width: 1.125rem;
}
.pagination .page-item .page-link.active {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.pagination .page-item.active .page-link {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

@media (max-width: 991.99px) {
  html {
    font-size: 93.75%;
  }
}
@media (max-width: 767.99px) {
  .h1 {
    font-size: 2rem;
  }
}
@media (max-width: 575.99px) {
  html {
    font-size: 87.5%;
  }
  .container {
    max-width: calc(100% - 20px);
  }
}
.scrolled-down {
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}

.scrolled-up {
  transform: translateY(0);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  transition: all 0.3s ease-in-out;
  background-color: var(--brand);
}
.scrolled-up .navbar-brand img {
  max-height: 5rem;
}

.top__nav {
  background-color: #272727;
  color: #E4E4E4;
}
.top__nav a {
  color: #E4E4E4;
}
.top__nav .dropdown .btn {
  color: #E4E4E4;
}
.top__nav .dropdown .dropdown-menu {
  min-width: 8rem;
}
.alsirhan__logo img { height:3rem; } 

.navbar {
  background: var(--dark);
}
.navbar .navbar-brand img {
  max-height: 2.5rem;
}
.navbar .nav-link {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-link:hover {
  color: var(--yellow);
}
.navbar .nav-link:hover .caret {
  transform: rotate(-180deg);
}
.navbar .nav-item.active .nav-link {
  color: var(--yellow);
}
.navbar .nav-item.active .nav-link.btn-primary {
  color: var(--white);
  background-color: var(--dark);
}
.navbar .dropdown {
  -webkit-appearance: none;
}
.navbar .dropdown .dropdown-menu {
  position: absolute;
  top: 96%;
  left: 0%;
  width: 100%;
  min-width: min-content;
  transition: all 0.3s ease;
  transform: scaleY(0);
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}
.navbar .dropdown .dropdown-menu .dropdown-item {
  color: var(--link-color);
  font-size: 0.937rem;
  display: block;
  padding: 0.5rem 1rem;
  position: relative;
}
.navbar .dropdown .dropdown-menu .dropdown-item:hover, .navbar .dropdown .dropdown-menu .dropdown-item:focus, .navbar .dropdown .dropdown-menu .dropdown-item:active {
  color: var(--brand);
  background-color: #e9ecef;
}
.navbar .dropdown .dropdown-menu .dropdown-item:last-child {
  padding-bottom: 0.55rem;
}
.navbar .dropdown .dropdown-menu .dropdown-item:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.navbar .dropdown .dropdown-menu .active .dropdown-item {
  color: var(--brand);
  border-left: 0.25rem solid var(--brand);
  background-color: #e9ecef;
}
.navbar .dropdown .dropdown-menu.show {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.navbar .dropdown:hover > .nav-link {
  color: var(--yellow);
}
.navbar .dropdown:hover > .nav-link .caret {
  transform: rotate(-180deg);
}
.navbar.fixed-top {
  position: fixed;
  background-color: var(--white) !important;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  animation: mymove 1s ease-in-out;
}

.ac__btn {
  width: 3rem;
  height: 3rem;
}
.ac__btn:hover {
  background-color: rgba(255, 255, 255, 0.1921568627);
}

.active .ac__btn {
  background-color: rgba(255, 255, 255, 0.1921568627);
}

/*---------- Search Modal Styles ---------*/
#searchModal .form__wrapp {
  min-height: 26rem;
  padding-top: 10%;
  position: relative;
  z-index: 9999;
}
#searchModal .form__wrapp .form {
  max-width: 700px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
#searchModal .form__wrapp .form .btn {
  color: #004071;
  width: 3rem;
}
#searchModal .form__wrapp .form .form-control {
  width: calc(100% - 3rem);
}
#searchModal .form__wrapp .form .select2-container .select2-selection--single {
  border: 0;
}

.auth__modal .modal-body {
  background-color: #F7F7F7;
}
.auth__modal .modal-body .btn-close {
  top: 1rem;
  right: 1rem;
}
.auth__modal .h2, .auth__modal p, .auth__modal label, .auth__modal a, .auth__modal .or__box {
  font-family: var(--poppins);
}
.auth__modal .forgot__link {
  color: #808080;
}
.auth__modal .forgot__link:hover {
  color: var(--blue);
  text-decoration: underline;
}
.auth__modal .signup__link {
  color: #000;
}
.auth__modal .signup__link:hover {
  color: var(--blue);
  text-decoration: underline;
}
.auth__modal .social__logins .btn {
  width: 48%;
  border-radius: 0.45rem;
  padding: 0.75rem 1.5rem;
}
.auth__modal .social__logins .btn.btn-primary {
  border-color: #3B5998;
  background-color: #3B5998;
  color: var(--white);
}
.auth__modal .social__logins .btn.gmail {
  border-color: #F1584D;
  background-color: var(--white);
  color: var(--black);
}
.auth__modal .social__logins .btn.gmail img {
  width: 1rem;
  height: auto;
}
.auth__modal .social__logins .btn.gmail:hover {
  background-color: #F1584D;
}
.auth__modal .btn-dark {
  border-radius: 0.45rem;
}
.auth__modal .or__box {
  color: #BEBEBE;
  position: relative;
}
.auth__modal .or__box::after, .auth__modal .or__box::before {
  content: "";
  width: calc(50% - 2rem);
  height: 1px;
  background-color: var(--border-secondary);
  display: block;
  position: absolute;
  top: 50%;
  left: 0%;
}
.auth__modal .or__box::after {
  left: auto;
  right: 0;
}

.sideNav ul.links__list li {
  border-bottom: 1px solid #eee;
}
.sideNav ul.links__list li a {
  display: flex;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--dark);
  text-transform: uppercase;
  justify-content: space-between;
  align-self: center;
  font-size: 1.25rem;
}
.sideNav ul.links__list li a.btn__link::after {
  content: "+";
  font-family: inherit;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--link-color);
}
.sideNav ul.links__list li a.btn__link:not(.collapsed) {
  color: var(--brand);
}
.sideNav ul.links__list li a.btn__link:not(.collapsed)::after {
  content: "−";
  color: var(--brand);
}
.sideNav ul.links__list li a.collapse__btn {
  border-left: 1px solid #f3f3f3;
}
.sideNav ul.links__list li a:hover, .sideNav ul.links__list li a:focus, .sideNav ul.links__list li a:active {
  color: var(--brand);
}
.sideNav ul.links__list li .collapse li:first-child {
  border-top: 1px solid #eee;
}
.sideNav ul.links__list .dropdown-item {
  font-size: 1rem;
}

@media (min-width: 992px) {
  .navbar .dropdown .dropdown-menu {
    display: block;
  }
  .navbar .dropdown:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1400px) {
  .navbar .nav-item .nav-link {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .navbar .navbar-brand img {
    max-height: 2.25rem;
  }
  .navbar .ac__btn {
    width: 2.5rem;
    height: 2.5rem;
  }
  .sideNav {
    --bs-offcanvas-width: 80%;
  }
}
footer {
  padding: 3rem 0 0rem 0;
  background-color: #000000;
}
footer a {
  color: var(--white);
  text-transform: capitalize;
  font-weight: 300;
}
footer a:hover {
  text-decoration: underline;
  color: var(--blue);
}

.social__links li {
  margin-bottom: 0;
}
.social__links li a {
  width: 3rem;
  height: 3rem;
  border-radius: 3px;
  background-color: var(--white);
}
.social__links li a svg {
  width: 1.45rem;
  height: 1.45rem;
}
.social__links li a:hover, .social__links li a:focus {
  background-color: #e8597a;
  color: var(--white);
}
.social__links li a:hover svg, .social__links li a:focus svg {
  fill: white;
}
.social__links.footer li a {
  background-color: var(--dark);
}
.social__links.footer li a:hover, .social__links.footer li a:focus {
  background-color: var(--brand);
  color: var(--white);
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  min-height: auto;
  height: 3.5rem;
  padding: 0 0 0 0;
  background-color: var(--white);
  z-index: 999;
  display: none;
  border: 2px solid var(--white);
  justify-content: center;
}
.backTop.show {
  display: flex;
}

@media (max-width: 575.99px) {
  footer .logo img {
    max-height: 4rem;
    width: auto;
  }
}
.owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}
.owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 0.2rem;
  justify-content: center;
  align-items: center;
  background-color: rgba(124, 124, 124, 0.3176470588) !important;
}
.owl-dots .owl-dot.active {
  background-color: var(--brand) !important;
  width: 16px;
  border-radius: 8px;
}

.carousel__box .gradient__overlay {
  background: linear-gradient(96deg, #000000, rgba(0, 0, 0, 0.0745098039));
  opacity: 0.32;
}
.carousel__box .banner__thumbnail {
  height: calc(100vh - 8rem);
}
.carousel__box .btn-dark svg {
  width: 2rem;
  height: auto;
}
.carousel__box .content__box {
  padding-bottom: 6rem;
}
.carousel__box .count__numbers {
  left: 10rem;
  bottom: -3.75rem;
}
.carousel__box .count__numbers .line {
  width: 4rem;
  height: 1px;
  background-color: #717171;
}
.carousel__box .control__box {
  bottom: 2rem;
}
.carousel__box .control__box button {
  opacity: 1;
  padding: 0.5rem 0.75rem;
  background-color: #343333;
}
.carousel__box .control__box button svg {
  width: 36px;
  height: 14px;
}
.carousel__box .control__box button svg path {
  fill: var(--white);
  transition: all 0.3s ease-in-out;
}
.carousel__box .control__box button:hover, .carousel__box .control__box button:focus, .carousel__box .control__box button:active {
  background-color: var(--white);
}
.carousel__box .control__box button:hover svg path, .carousel__box .control__box button:focus svg path, .carousel__box .control__box button:active svg path {
  fill: var(--dark);
}
.carousel__box.listing__page__header .control__box {
  bottom: 0;
}
.carousel__box.listing__page__header .control__box button {
  position: relative;
  z-index: 99;
}
.carousel__box.listing__page__header .control__box button:hover, .carousel__box.listing__page__header .control__box button:focus, .carousel__box.listing__page__header .control__box button:active {
  background-color: var(--dark);
}
.carousel__box.listing__page__header .control__box button:hover svg path, .carousel__box.listing__page__header .control__box button:focus svg path, .carousel__box.listing__page__header .control__box button:active svg path {
  fill: var(--white);
}
.carousel__box.listing__page__header .count__numbers {
  bottom: 0;
}

@media (min-width: 2000px) {
  .carousel__box .banner__thumbnail {
    height: 700px;
  }
}
@media (max-width: 991px) {
  .carousel__box.listing__page__header .control__box {
    bottom: -4rem;
  }
}
@media (max-width: 767px) {
  .carousel__box .btn {
    font-size: 13px;
  }
}
@media (max-width: 575px) {
  .carousel__box .banner__thumbnail {
    height: 520px;
  }
  .carousel__box .gradient__overlay {
    background: #000;
    opacity: 0.5;
  }
}
.product__card {
  background-color: #fff;
  opacity: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 2rem;
}
.product__card .thumbnail img {
  transition: all 0.4s ease-in-out;
  height: 225px;
  object-fit: contain;
}
@media (min-width: 1200px) {
    .product__card .title.fs-3 {
        font-size: 1.5rem !important;
    }
}
.product__card .title a {
  color: #414141;
}
.product__card .title a:hover {
  color: var(--brand);
}
.product__card .price {
  color: #363636;
}
.product__card .btn-primary {
  border-radius: 0 0 2.1875rem 0;
  padding: 1.25rem 0.5rem;
}
.product__card .btn-primary span {
  position: relative;
  top: 2px;
}
.product__card .btn-primary:hover, .product__card .btn-primary:focus {
  background-color: #343333;
  border-color: #343333;
  color: var(--white);
}
.product__card .btn-primary:hover svg, .product__card .btn-primary:focus svg {
  color: var(--white);
}
.product__card:hover .thumbnail img {
  transform: scale(1.1);
}
.product__card.category .caption {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6156862745));
}

@media (max-width: 1399px) {
  .product__card .btn-primary {
    font-size: 14px;
  }
  .product__card .btn-primary svg {
    width: 1.125rem;
    height: 1.125rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product__card .btn-primary {
    font-size: 13px;
    gap: 0.25rem;
  }
  .product__card .btn-primary svg {
    width: 1rem;
    height: 1rem;
  }
}
@media (max-width: 575px) {
  .product__card {
    border-radius: 1.5rem;
  }
  .product__card .btn-primary {
    font-size: 13px;
    gap: 0.25rem;
    border-bottom-right-radius: 1.5rem;
  }
  .product__card .btn-primary svg {
    width: 1rem;
    height: 1rem;
  }
}
.heading__wrapper {
  font-weight: 350;
  font-size: 12.625rem;
  color: #B9BABA;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
}

@media (max-width: 1399px) {
  .heading__wrapper {
    font-size: 10.625rem;
  }
}
@media (max-width: 1199px) {
  .heading__wrapper {
    font-size: 8rem;
  }
}
@media (max-width: 991px) {
  .heading__wrapper {
    font-size: 5rem;
  }
}
@media (max-width: 575px) {
  .heading__wrapper {
    font-size: 3rem;
    font-weight: 600;
  }
  .heading__wrapper img {
    height: 1.5rem;
    width: auto;
  }
}
.video__play__btn svg {
  width: 4rem;
  height: 4rem;
  transition: all 0.3s ease-in-out;
}
.video__play__btn:hover svg, .video__play__btn:focus svg, .video__play__btn:active svg {
  transform: rotate(360deg);
}

@media (min-width: 992px) {
  .video__play__btn svg {
    width: 6rem;
    height: 6rem;
  }
}
.listing__page__header .overlay {
  height: 45%;
  background-color: #272727;
}
.listing__page__header .hero__title {
  font-size: calc(9rem + 4vw);
  opacity: 0.16;
  white-space: nowrap;
}

@media (max-width: 992px) {
  .listing__page__header .hero__title {
    font-size: calc(7rem + 4vw);
  }
}
@media (max-width: 992px) {
  .listing__page__header .overlay {
    height: 30%;
  }
  .listing__page__header .hero__title {
    font-size: calc(5rem + 3vw);
  }
}
.product__carousel {
  display: block;
  max-width: 700px; 
}

.product__carousel a {
  display: block;
  margin-bottom: 15px;
}

.product__carousel .gallery-top {
  border: 1px solid #D0D0D0;
  border-radius: 3px;
  margin-bottom: 5px;
}

.product__carousel .gallery-top .swiper-slide {
  position: relative;
  overflow: hidden;
}

.product__carousel .gallery-top .swiper-slide a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.product__carousel .gallery-top .swiper-slide a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product__carousel .gallery-top .swiper-slide .easyzoom-flyout img {
  min-width: 100%;
  min-height: 100%;
}

.product__carousel .swiper-button-next.swiper-button-white,
.product__carousel .swiper-button-prev.swiper-button-white {
  color: var(--brand);
}

.product__carousel .gallery-thumbs .swiper-slide {
  position: relative;
  transition: border 0.15s linear;
  border: 1px solid #D0D0D0;
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
  height: calc(100% - 2px);
}

.product__carousel .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  border-color: #000;
}

.product__carousel .gallery-thumbs .swiper-slide img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
}
@media(max-width:991px) {
    .product__carousel .gallery-thumbs .swiper-slide { width:8rem !important;height:5rem; }
    .product__carousel .gallery-top { height:auto !important; } 
}
@media(max-width:575px) {
     .product__carousel .gallery-thumbs .swiper-slide { width: 6rem !important; }
}

/*------- Product Count Box Styles --------*/
.product__coun__box {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 0.5rem;
  max-width: 8rem;
  overflow: hidden;
}
.product__coun__box .btn {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  color: #000000;
  padding: 0.55rem 0.75rem;
}
.product__coun__box .btn:hover {
  color: var(--brand);
}
.product__coun__box .form-control {
  width: 1.5rem;
  padding: 0%;
  text-align: center;
  border: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.1294117647);
  border-right: 1px solid rgba(0, 0, 0, 0.1294117647);
  pointer-events: none;
}

.filter__wrapper .form-check {
  margin-bottom: 1rem;
}
.filter__wrapper .form-check-label {
  text-transform: uppercase;
  font-weight: 500;
  color: #6c6c6c;
}
.filter__wrapper .filter__btn {
  position: relative;
}
.filter__wrapper .filter__btn::after {
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  display: block;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: 1.25rem 1.25rem;
  background-position: center center;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLW1pbnVzIj48bGluZSB4MT0iNSIgeTE9IjEyIiB4Mj0iMTkiIHkyPSIxMiI+PC9saW5lPjwvc3ZnPg==");
}
.filter__wrapper .filter__btn.collapsed::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLXBsdXMiPjxsaW5lIHgxPSIxMiIgeTE9IjUiIHgyPSIxMiIgeTI9IjE5Ij48L2xpbmU+PGxpbmUgeDE9IjUiIHkxPSIxMiIgeDI9IjE5IiB5Mj0iMTIiPjwvbGluZT48L3N2Zz4=");
}
.filter__wrapper .card {
  margin-bottom: 1.5rem;
}

.btn-outline-primary.filter__btn:hover svg path {
  fill: none;
  stroke: var(--white);
}

.form-check-input {
  border-color: var(--border-color);
  width: 1.125rem;
  height: 1.125rem;
}
.form-check-input[type=checkbox] {
  border-radius: 0.2rem;
}
.form-check-input:checked {
  background-color: #3498db;
  border-color: #3498db;
}

.pagination {
  justify-content: center;
}
.pagination .page-item {
  margin: 0.4rem;
}
.pagination .page-item .page-link {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.625rem;
  font-weight: 700;
  color: #2B2A68;
  min-width: 2.875rem;
  min-height: 2.875rem;
}
.pagination .page-item .page-link .fa {
  font-size: 1.25rem;
}
.pagination .page-item .page-link.active {
  background-color: var(--brand);
  background-color: var(--brand);
  color: var(--white);
  box-shadow: none;
}

/*-------------- Product Img Zoom Styles -------------*/
.product-img--main {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 450px;
  height: 450px;
  margin: 0% auto;
}

.product-img--main__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}

/*-------------- Product Details Page Styles -------------*/
.product__details__wrapp .carousel .carousel-indicators {
  top: 0rem;
  justify-content: flex-start;
  margin-right: 0;
  margin-left: 0;
  display: block;
  width: 8rem;
}
.product__details__wrapp .carousel .carousel-indicators [data-bs-target] {
  width: 7.5rem;
  height: auto;
  padding: 0;
  text-indent: inherit;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #D0D0D0;
  opacity: 1;
  margin-bottom: 1rem;
}
.product__details__wrapp .carousel .carousel-indicators .active {
  border-color: var(--brand);
}
.product__details__wrapp .carousel .carousel-inner {
  width: calc(100% - 9rem);
  margin-left: auto;
  border: 1px solid #D0D0D0;
}
.product__details__wrapp .text-5c {
  color: #5c5c5c;
}
.product__details__wrapp .btn__wish {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  background-color: #F4F4F4;
  color: #000;
}
.product__details__wrapp .btn__wish:hover {
  color: var(--brand);
  background-color: var(--dark);
}
.product__details__wrapp .cart__btn {
  background-color: #000000;
  border-color: #000000;
}
.product__details__wrapp .cart__btn img {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  position: relative;
  top: -2px;
}
.product__details__wrapp .cart__btn:hover {
  background-color: var(--brand);
  border-color: var(--brand);
}
.product__details__wrapp .nav-tabs {
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}
.product__details__wrapp .review__list {
  max-height: 32.5rem;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.product__details__wrapp .review__list li {
  padding-bottom: 0.875rem;
}
.product__details__wrapp .review__list li:not(:last-child) {
  border-bottom: 1px solid #eee;
  margin-bottom: 0.875rem;
}
.product__details__wrapp .review__list li .thumbnail {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  object-position: center;
}
.product__details__wrapp .review__list li .caption {
  width: calc(100% - 3.5rem);
  padding-left: 0.875rem;
}
.product__details__wrapp .review__list li .caption .stars .star {
  margin-right: 0.2rem;
  font-size: 14px;
  color: var(--border-color);
}
.product__details__wrapp .review__list li .caption .stars .star.active:nth-child(1) {
  color: #ffc200;
}
.product__details__wrapp .review__list li .caption .stars .star.active:nth-child(2) {
  color: #ffbc06;
}
.product__details__wrapp .review__list li .caption .stars .star.active:nth-child(3) {
  color: #ffae18;
}
.product__details__wrapp .review__list li .caption .stars .star.active:nth-child(4) {
  color: #ff9736;
}
.product__details__wrapp .review__list li .caption .stars .star.active:nth-child(5) {
  color: #ff953a;
}
.product__details__wrapp .star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  padding: 0 0.2em;
  text-align: center;
  width: 6.5rem;
}
.product__details__wrapp .star-rating input {
  display: none;
}
.product__details__wrapp .star-rating label {
  color: #ccc;
  cursor: pointer;
  margin-right: 0.2rem;
}
.product__details__wrapp .star-rating :checked ~ label {
  color: #f90;
}
.product__details__wrapp .star-rating label:hover,
.product__details__wrapp .star-rating label:hover ~ label {
  color: #fc0;
}

.scroller * {
  scrollbar-width: thin;
  scrollbar-color: #ddd #eee;
}

.scroller *::-webkit-scrollbar {
  width: 12px;
}

.scroller *::-webkit-scrollbar-track {
  background: #eee;
}

.scroller *::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 20px;
  border: 3px solid #eee;
}

.size__list li {
  margin: 0 1rem 1rem 0;
  background-color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid #D8D8D8;
  border-radius: 0.5rem;
  padding: 0.65rem;
  color: #111;
}
.size__list.details__page li {
  color: #AFAFAF;
  min-width: 3rem;
  text-align: center;
  cursor: pointer;
}
.size__list.details__page li:hover {
  background-color: #f3f4f1;
}
.size__list.details__page li.js--active {
  background-color: var(--brand);
  color: var(--white);
}
.size__list.color__list li {
  width: 3rem;
  height: 3rem;
  border: 0;
  cursor: pointer;
  padding: 0%;
  overflow: hidden;
}
.size__list.color__list li.js--active {
  outline: 1px solid var(--brand);
  outline-offset: 0;
}

/*------- Product Count Box Styles --------*/
.product__coun__box {
  border: 1px solid #707070;
  border-radius: 3rem;
  max-width: 10rem;
  overflow: hidden;
}
.product__coun__box .btn {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  color: #000000;
  padding: 0.55rem 1rem;
}
.product__coun__box .btn:hover {
  color: var(--brand);
}
.product__coun__box .form-control {
  width: 1.5rem;
  padding: 0%;
  text-align: center;
  border: 0;
  border-left: 1px solid #707070;
  border-right: 1px solid #707070;
  pointer-events: none;
}

.disc__list li {
  position: relative;
  padding-left: 1rem;
  color: #000000;
  margin-bottom: 0.75rem;
}
.disc__list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  background-color: #000;
  position: absolute;
  top: 0.625rem;
  left: 0%;
}

.nav-tabs .nav-link {
  color: #555;
  z-index: 999;
  background-color: transparent;
  background: linear-gradient(to bottom, #0b0c0c 0%, #0b0c0c 98%);
  background-size: 0 3px;
  background-repeat: no-repeat;
  background-position: right 100%;
  transition: background-size 0.75s;
}

.nav-tabs .nav-link:hover {
  isolation: inherit !important;
}

.nav-tabs .nav-link.active {
  background-size: 100% 3px;
  background-position: 0% 100%;
}

/*---------------------- Cart Page Styles ----------------------------*/
.product__cart__table {
  font-size: 0.937rem;
}
.product__cart__table .border-bottom, .product__cart__table .border-top {
  border-color: #EAEAEA !important;
}
.product__cart__table .thumbnail__box .btn {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0%;
}
.product__cart__table .thumbnail__box .btn:hover {
  background-color: #f2f2f2;
}
.product__cart__table .thumbnail__box .thumbail {
  width: calc(100% - 3rem);
  text-align: center;
}
.product__cart__table .thumbnail__box .thumbail img {
  max-height: 10rem;
}
.product__cart__table .price__color {
  color: #242C2C;
}
.product__cart__table .border-secondary {
  border-color: var(--border-color-light) !important;
}
.product__cart__table .counter__box {
  width: 100%;
  display: flex;
  margin: 0 !important;
}
.product__cart__table .counter__box .btn:focus {
  background-color: var(--white);
}
.product__cart__table .coupon_code_form__wrapp {
  max-width: 29rem;
}
.product__cart__table .coupon_code_form__wrapp .form-control {
  width: calc(100% - 11rem);
  max-width: 100%;
  margin-right: 0.875rem;
  min-height: 3rem;
}

.checkout__btn__hover:hover {
  box-shadow: inset 35rem 0 0 0 var(--dark);
}

/*---------------------- Checkout Page Styles ----------------------------*/
.checkout__details__wrapper .auth__actions .btn {
  min-width: 15rem;
}
.checkout__details__wrapper .payment__card {
  border: 1px solid #d1d1d1;
  padding: 0.65rem 0.75rem;
}
.checkout__details__wrapper .payment__card .icon {
  height: 2rem;
}
.checkout__details__wrapper .payment__card .icon img {
  height: 2rem;
  width: auto;
}
.checkout__details__wrapper .payment__card .icon img.lg {
  height: 2.75rem;
}
.checkout__details__wrapper .payment__card .icon .plus {
  height: 1.5rem;
}
.checkout__details__wrapper .payment__card .date {
  color: #262626;
}
.checkout__details__wrapper .payment__card.add__new {
  background-color: #F4F4F4;
}
.checkout__details__wrapper .payment__card.active {
  border-color: #0093FF;
}
.checkout__details__wrapper .light__link {
  color: #8E8E8E;
}
.checkout__details__wrapper .light__link:hover {
  color: #0093FF;
}
.checkout__details__wrapper .address__list li {
  border: 1px solid #D1D1D1;
  border-radius: 0.875rem;
  padding: 1rem 1rem 1rem 2rem;
}
.checkout__details__wrapper .address__list li .address {
  color: #8E8E8E;
}
.checkout__details__wrapper .address__list li:not(:last-child) {
  margin-bottom: 1rem;
}
.checkout__details__wrapper .address__list li.active {
  border-color: #397EF5;
  border-left-width: 0.5rem;
}
.checkout__details__wrapper .form-select {
  height: 2.5rem;
}
.checkout__details__wrapper .timing__list li {
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--border-secondary);
  color: #262626;
  border-radius: 0.65rem;
  margin: 0% 0.5rem 0.5rem 0;
  cursor: pointer;
}
.checkout__details__wrapper .timing__list li:hover {
  background-color: var(--grey);
}
.checkout__details__wrapper .timing__list li.active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

/*---------------------- Wishlist Page Styles ----------------------------*/
.wishlist__card .thumbnail__box img {
  width: 100%;
  height: 5rem;
  object-fit: cover;
  object-position: center center;
}
@media(max-width:575px) {
    .wishlist__card .thumbnail__box img { height: 10rem;object-fit: contain; }
}

/*---------------------- User Dashboard Page Styles ----------------------------*/
.user__dashboard__wrapper .card {
  border-color: var(--border-color);
}
.user__dashboard__wrapper .user__box {
  width: 280px;
  flex: 0 0 auto;
  border-right: 1px solid #B5B5B5;
  padding-right: 2rem;
  padding-bottom: 3rem;
}
.user__dashboard__wrapper .user__box .thumbnail__box {
  width: 6rem;
  height: 6rem;
  background-color: #F8F8F8;
}
.user__dashboard__wrapper .user__box .nav-pills .nav-link {
  text-align: left;
  padding: 0.5rem 1rem 0.5rem 2rem;
  border-radius: 0 2rem 2rem 0;
  color: var(--dark);
  font-weight: 500;
}
.user__dashboard__wrapper .user__box .nav-pills .nav-link.active {
  background-color: #F5F5F5;
}
.user__dashboard__wrapper .form-control {
  height: 3.25rem;
  border-color: #F1F3F4;
  font-family: var(--roboto);
}
.user__dashboard__wrapper .order__card:not(:last-child) {
  margin-bottom: 1.24rem;
}
.user__dashboard__wrapper .order__card .card-header {
  background-color: #FAF7EE;
}
.user__dashboard__wrapper .order__card .card-header .price__box {
  border-left: 1px solid var(--border-secondary);
  border-right: 1px solid var(--border-secondary);
}
.user__dashboard__wrapper .order__card .product__box .product__thumbnail {
  width: 8rem;
}
.user__dashboard__wrapper .order__card .product__box .product__thumbnail .thumbnail {
  width: 8rem;
  max-height: 150px;
  object-fit: cover;
  object-position: center center;
}
.user__dashboard__wrapper .order__card .product__box .caption {
  width: calc(100% - 8rem);
  padding-left: 1rem;
}
.user__dashboard__wrapper .order__card .stepper .circle {
  width: 22px;
  height: 22px;
  border: 1px solid var(--border-color);
}
.user__dashboard__wrapper .order__card .stepper .circle.active {
  border-color: var(--brand);
}
.user__dashboard__wrapper .order__card .stepper .circle.active::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--brand);
  display: block;
}
.user__dashboard__wrapper .order__card .stepper::after {
  content: "";
  width: calc(100% - 3.5rem);
  height: 3px;
  display: block;
  background-color: #CBCBCB;
  position: absolute;
  top: 10px;
  left: 2rem;
  z-index: 0;
}
.user__dashboard__wrapper .order__card .stepper.active__confim .step__item:nth-child(1) .circle {
  border: 1px solid var(--brand);
}
.user__dashboard__wrapper .order__card .stepper.active__confim .step__item:nth-child(1) .circle::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--brand);
  display: block;
}
.user__dashboard__wrapper .order__card .stepper.active__confim::before {
  content: "";
  width: calc(50% - 1.5rem);
  height: 3px;
  display: block;
  background-color: var(--brand);
  position: absolute;
  top: 10px;
  left: 2rem;
  z-index: 1;
}
.user__dashboard__wrapper .order__card .stepper.active__shipp .step__item:nth-child(1) .circle, .user__dashboard__wrapper .order__card .stepper.active__shipp .step__item:nth-child(2) .circle {
  border: 1px solid var(--brand);
}
.user__dashboard__wrapper .order__card .stepper.active__shipp .step__item:nth-child(1) .circle::before, .user__dashboard__wrapper .order__card .stepper.active__shipp .step__item:nth-child(2) .circle::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--brand);
  display: block;
}
.user__dashboard__wrapper .order__card .stepper.active__shipp::before {
  content: "";
  width: calc(100% - 3.5rem);
  height: 3px;
  display: block;
  background-color: var(--brand);
  position: absolute;
  top: 10px;
  left: 2rem;
  z-index: 1;
}
.user__dashboard__wrapper .order__card .stepper.active__delived .step__item .circle {
  border: 1px solid var(--brand);
}
.user__dashboard__wrapper .order__card .stepper.active__delived .step__item .circle::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--brand);
  display: block;
}
.user__dashboard__wrapper .order__card .stepper.active__delived::before {
  content: "";
  width: calc(100% - 3.5rem);
  height: 3px;
  display: block;
  background-color: var(--brand);
  position: absolute;
  top: 10px;
  left: 2rem;
  z-index: 1;
}
.user__dashboard__wrapper .order__card .card-footer {
  overflow-x: auto;
}
.user__dashboard__wrapper .order__card .card-footer .table {
  min-width: 600px;
}
.user__dashboard__wrapper .order__card .card-footer .table th {
  background-color: #F4F4F4;
  padding: 0.75rem;
}
.user__dashboard__wrapper .order__card .card-footer .table th:nth-child(1) {
  padding-left: 2rem;
}
.user__dashboard__wrapper .order__card .card-footer .table td {
  padding: 0.75rem;
  border: 0;
  background-color: #FCF9F9;
}
.user__dashboard__wrapper .order__card .card-footer .table td:nth-child(1) {
  padding-left: 2rem;
}
.user__dashboard__wrapper .order__card .card-footer .table > :not(:first-child) {
  border-top: 0;
}
.user__dashboard__wrapper .order__card .card-footer .table.table-striped > tbody > tr:nth-of-type(2n+1) > * {
  background-color: #FAF7EE;
}

.card {
  background-color: #F7F7F7;
  border-color: #E6E6E6 !important;
}

@media (max-width: 1199px) {
    .user__dashboard__wrapper .user__box {
      width: 220px; 
      padding-right: 1rem; 
    }
}
@media (max-width: 768px) {
    .user__dashboard__wrapper .user__box {
        width: 100%;
        padding: 1rem;
        border: 0; 
    }
    .user__dashboard__wrapper .resposnive__dashboard__btns {
        flex-wrap:nowrap;overflow-x:auto;padding-bottom:.5rem;
    }
    .user__dashboard__wrapper .user__box .nav-pills .nav-link { background-color: #F5F5F5;white-space: nowrap;border-radius:3rem;margin-right:.75rem !important; }
    .user__dashboard__wrapper .user__box .nav-pills .nav-link.active { background-color: var(--dark);color:var(--white); }
}

/*------ Price Range Styles --------*/
.price-filter-range {
  width: 100%;
}

.price-filter-range .ui-state-default, .price-filter-range .ui-widget-content .ui-state-default, .price-filter-range .ui-widget-header .ui-state-default, .price-filter-range .ui-button, .price-filter-range .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: 1px solid var(--dark);
  background: var(--white);
  border-radius: 50%;
  width: 16px;
  height: 16px;
}

.price-filter-range.ui-slider-horizontal {
  height: 8px;
  background: #EFEFEF;
  border-color: #EFEFEF;
}

.ui-widget-header {
  background: var(--dark);
}

.pagination {
  margin-top: 4rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pagination li {
  margin: 0.4rem;
}

.pagination li a {
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0.625rem;
  font-weight: 700;
  color: #2B2A68;
  min-width: 2.875rem;
  min-height: 2.875rem;
}

.pagination li a .fa {
  font-size: 1.25rem;
}

.pagination li.active a {
  background-color: var(--brand);
  background-color: var(--brand);
  color: var(--white);
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media (max-width: 991px) {
  .responsive__filter__menu {
    position: fixed;
    top: 0;
    left: 0%;
    z-index: 1050;
    background-color: rgba(0, 0, 0, 0.2196078431);
    padding: 0%;
    margin: 0;
    height: 100vh;
    overflow-y: auto;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
  }
  .responsive__filter__menu.js--open {
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
  }
  .responsive__filter__menu .card {
    max-width: 80%;
  }
}
.card__table {
  border-color: #E4E4E4 !important;
}
.card__table .table {
  border-top-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  line-height: 1.3;
}
.card__table .table th {
  background-color: #E4E4E4;
  padding: 1.5rem 1rem;
}
.card__table .table th:first-child {
  border-top-left-radius: 1.5rem;
}
.card__table .table th:last-child {
  border-top-right-radius: 1.5rem;
}
.card__table .table td {
  padding: 1rem;
  vertical-align: middle;
}
.card__table .table td:first-child {
  border-left: 2px solid #E4E4E4;
}
.card__table .table td:last-child {
  border-right: 2px solid #E4E4E4;
}
.card__table .table td .btn-primary {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}
.card__table .product__coun__box {
  min-width: 7rem;
}
.card__table .product__coun__box .form-control {
  border: 0;
  width: 1rem;
}
.card__table .product__thumbnail img {
  height: 5rem;
  width: 5rem;
  object-fit: cover;
}
.card__table .ac__btn {
  background-color: #D8D8D8;
  color: var(--dark);
  width: 2.5rem;
  height: 2.5rem;
}
.card__table .ac__btn:hover, .card__table .ac__btn:focus, .card__table .ac__btn:active {
  background-color: rgba(255, 0, 0, 0.129);
  color: red;
}

@media (min-width: 992px) {
  .action__td {
    min-width: 7em;
  }
}
@media (max-width: 991px) {
  .card__table .table {
    border: 1px solid #D8D8D8;
  }
  .card__table .table thead {
    display: none;
  }
  .card__table .table tr {
    display: block;
  }
  .card__table .table tr td {
    display: block;
    text-align: center;
  }
  .card__table .table td:first-child {
    border-left: 0;
  }
  .card__table .table td:last-child {
    border-right: 0;
  }
}
.auth__form .form-control {
  height: 3.75rem;
  padding: 0.65rem 1.5rem;
  background-color: #FAFAFA;
  font-weight: 500;
}
.auth__form .forgot_password {
  color: var(--dark);
  opacity: 0.25;
}
.auth__form .forgot_password:hover {
  opacity: 1;
}
.auth__form .link {
  color: var(--red);
}
.auth__form .link:hover {
  color: var(--dark);
}

.address__card {
  padding: 0.625rem 0.875rem;
}
.address__card .overlay {
  border: 1px solid #D9D1D1;
  background-color: #F8F8F8;
  border-radius: 0.5rem;
  border-top-left-radius: 0%;
}
.address__card input[type=radio]:checked + .overlay {
  background-color: rgba(13, 112, 173, 0.062745098);
  border-color: #0F70AC;
}
.address__card .tag {
  background-color: #1170AC;
  top: -1.2rem;
}

.payment__card {
  border: 2px solid #ACACAC;
}
.payment__card img {
  height: 2rem;
}
.payment__card input[type=radio] {
  left: 3px;
  opacity: 0;
}
.payment__card input[type=radio]:checked {
  opacity: 1;
}

.form-control {
  border-color: #C7C7C7;
  background-color: #FAFAFA;
  height: 2.875rem;
}

.order__summary {
  margin: 0 -1.5rem;
}
.order__summary table th {
  background-color: #F5F4F4;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.order__summary table td {
  vertical-align: middle;
  padding: 0.5rem 1rem;
  border: 0;
}
.order__summary table .product__thumbnail img {
  height: 3rem;
  width: 6rem;
  object-fit: cover;
}

.coupon_box .form-control {
  border-style: dashed;
  height: 3.5rem;
}
.coupon_box .btn-primary {
  padding: 0.45rem 0.75rem;
  font-size: 13px;
  right: 0.5rem;
}

@media (max-width: 575px) {
  .order__summary {
    margin: 0 -1rem;
  }
}
.brand__box {
  overflow: hidden;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 1.5rem;
  border: 0;
  transition: all 0.3s ease-in-out;
}
.brand__box:hover {
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 2.8px 2.2px 0 rgba(0, 0, 0, 0.02), 0 6.7px 5.3px 0 rgba(0, 0, 0, 0.03), 0 12.5px 10px 0 rgba(0, 0, 0, 0.04), 0 22.3px 17.9px 0 rgba(0, 0, 0, 0.05), 0 41.8px 33.4px 0 rgba(0, 0, 0, 0.05), 0 100px 80px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 2.8px 2.2px 0 rgba(0, 0, 0, 0.02), 0 6.7px 5.3px 0 rgba(0, 0, 0, 0.03), 0 12.5px 10px 0 rgba(0, 0, 0, 0.04), 0 22.3px 17.9px 0 rgba(0, 0, 0, 0.05), 0 41.8px 33.4px 0 rgba(0, 0, 0, 0.05), 0 100px 80px 0 rgba(0, 0, 0, 0.07);
}

@media (max-width: 575px) {
  .nav-tabs.choice .nav-item {
    width: 100%;
    flex: 0 0 100%;
  }
}

@media(min-width:992px) {
    .border-bottom-lg-0{border-bottom:0 !important;}
}

.whatsapp {
  background-color: #2eb843;
  z-index: 999;
  left: 2rem;
  bottom: 6rem;
  -webkit-box-shadow: 0 0 0 #0568A8;
  box-shadow: 0 0 0 #0568A8;
  -webkit-animation: pulse 1.5s infinite;
  animation: pulse 1.5s infinite;
  width: 4rem;
  height: 4rem;
  color: var(--white);
}
.whatsapp svg {
  width: 2rem;
  height: 2rem;
}
.whatsapp:hover, .whatsapp:focus, .whatsapp:active {
  background-color: #149a28;
  color: var(--white);
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #2eb843;
  }
  70% {
    -webkit-box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 #2eb843;
    box-shadow: 0 0 0 0 #2eb843;
  }
  70% {
    -moz-box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
    box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
    box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
  }
}
.add_to_wish_list.active svg path { fill: #ffcb00; } 


.payment__list li .form-check-input { top:1rem;right:1rem; } 
.payment__list li .form-check-input:checked + label { border-color:var(--brand) !important;background-color: #fffaf0; } 
.payment__list li .form-check-input:checked { background-image:var(--checked-primary-color);border: 0;background-color: transparent;background-size: 1.5rem;width: 1.25rem;height: 1.25rem; } 
.payment__list li img { height:3rem;width:auto; } 
