@charset "UTF-8";

/* CSS Document */
/*==============================================================
Common Styles Initials
==============================================================*/
:root {
  --morgal-primary-color: #0c1e80;
  --morgal-secondary-color: #4fe4be;
  --morgal-font-color: #636675;
  --morgal-black-color: #000000;
  --morgal-white-color: #ffffff;
}

html {
  -webkit-text-size-adjust: none;
  /* Prevent font scaling in landscape */
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*:after,
*:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Assistant", sans-serif;
  font-size: 16px;
  color: var(--morgal-font-color);
  font-weight: 400;
  background: #f6f4f4;
  width: 100%;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  outline: none;
  text-decoration: none;
  color: var(--morgal-font-color);
}

a:hover,
a:focus {
  outline: none;
  text-decoration: none;
  color: var(--morgal-black-color);
}

.btn {
  display: inline-flex;
  padding: 14px 60px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 0;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn:focus {
  color: var(--morgal-white-color);
}

/* Woocommerce Button Start */

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
  background-color: var(--morgal-primary-color);
  padding: 13px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.31px;
  color: var(--morgal-white-color);
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:hover {
  background: var(--morgal-primary-color);
  color: var(--morgal-white-color);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  background-color: rgba(240, 240, 240, 1) !important;
  color: var(--morgal-black-color) !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* Woocommerce Button End */

.login-btn {
  background: var(--morgal-primary-color);
  padding: 11px 20px;
  color: var(--morgal-white-color);
  font-weight: 600;
  gap: 6px;
}

.login-btn:hover,
.login-btn:focus-visible {
  background: var(--morgal-primary-color);
  color: var(--morgal-white-color);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.btn-check:checked+.btn.login-btn,
.btn.login-btn.active,
.btn.login-btn.show,
.btn.login-btn:first-child:active,
:not(.btn-check)+.btn.login-btn:active {
  background: var(--morgal-primary-color);
  color: var(--morgal-white-color);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.login-btn:focus {
  color: var(--morgal-white-color);
}

.query-btn {
  background: var(--morgal-black-color);
  padding: 10px 25px 11px 25px;
  color: var(--morgal-white-color);
  font-weight: 600;
  gap: 10px;
}

.query-btn:hover,
.query-btn:focus-visible {
  background: rgba(0, 0, 0, 0.9);
  color: var(--morgal-white-color);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.btn-primary {
  background-color: var(--morgal-primary-color);
  color: var(--morgal-white-color);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--morgal-primary-color);
  color: var(--morgal-white-color);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.btn-secondary {
  background-color: var(--morgal-secondary-color);
  color: #28385c;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background-color: var(--morgal-secondary-color);
  color: var(--morgal-white-color);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.btn-outline-light {
  border: 1px solid var(--morgal-white-color);
  color: var(--morgal-white-color);
  padding: 11px 20px;
}

.btn-outline-gray {
  padding: 13px 50px;
  color: #999cad;
  border: 1px solid #999cad;
}

.btn-outline-gray:hover {
  color: #808080;
  border: 1px solid #808080;
}

.btn-outline-gray:focus {
  color: #808080;
}

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

input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

input,
textarea,
select {
  outline: none;
  resize: none;
  font-family: "Assistant", sans-serif;
}

a,
input,
button {
  outline: none !important;
  font-family: "Assistant", sans-serif;
}

button {
  border: 0;
  background: transparent;
}

button::-moz-focus-inner {
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5 {
  margin: 0;
  padding: 0;
  font-family: "Assistant", sans-serif;
  color: var(--morgal-black-color);
  font-weight: 700;
}

h1,
.h1 {
  font-size: 24px;
}

h2,
.h2 {
  font-size: 24px;
}

h3,
.h3 {
  font-size: 22px;
}

h4,
.h4 {
  font-size: 20px;
  font-weight: 600;
}

h5,
.h5 {
  font-size: 18px;
  font-weight: 600;
}

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

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

p {
  margin: 0 0 15px 0;
  padding: 0;
  letter-spacing: 0.01875rem;
  line-height: 1.33;
}

strong {
  font-weight: 700;
}

.slick-slide {
  outline: none !important;
}

input[type="search"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.search-dropdown input {
  -webkit-appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*==============================================================
Bootstrap Hack
==============================================================*/

.form-control::-webkit-input-placeholder {
  opacity: 1;
}

.form-control:-moz-placeholder {
  opacity: 1;
}

.form-control::-moz-placeholder {
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  opacity: 1;
}

.row {
  margin: 0 -15px;
}

.row>* {
  padding-right: 15px;
  padding-left: 15px;
}

/*==============================================================
Swiper Slider
==============================================================*/

.swiper {
  width: 100%;
}

/*==============================================================
Custom Style
==============================================================*/

.container {
  max-width: 1230px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.sm-container {
  max-width: 820px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

/*==============================================================
Header
==============================================================*/

/* header__start */
.header-wrap {
  position: relative;
  z-index: 123;
  height: 165px;
}

header {
  width: 100%;
}

.header-top {
  position: relative;
  padding: 13px 0;
  background-image: linear-gradient(90deg, var(--morgal-primary-color), var(--morgal-secondary-color));
}

@media (max-width: 1100px) {
  .header-top {
    padding: 7px 0px;
  }
}

.header-top .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top .social-icon ul {
  display: flex;
  gap: 20px;
}

.header-top .social-icon ul li {
  height: 30px;
  list-style: none;
}

.header-top .social-icon ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.header-top .social-icon ul li img {
  max-height: 24px;
}

.header-top .social-icon ul li svg {
  fill: var(--morgal-white-color);
}

.header-top .swiper {
  max-width: 350px;
  width: 100%;
  height: 100%;
  position: relative;
}

.header-top .swiper-wrapper {
  width: 80%;
  margin: 0 auto;
}

.header-top .swiper-slide {
  text-align: center;
  color: var(--morgal-white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.header-top .swiper-button-next:after,
.header-top .swiper-button-prev:after {
  font-size: 14px;
  font-weight: 600;
  height: auto;
  width: auto;
}

.header-top .swiper-button-next,
.header-top .swiper-button-prev {
  color: var(--morgal-white-color);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  margin: inherit;
}

.header-center {
  position: relative;
  padding: 12px 0px;
  background-color: #f6f4f4;
}

.header-center .container {
  display: flex;
  align-items: center;
  position: relative;
}

.header-center .logo {
  margin-left: 20px;
  height: 65px;
  width: 137px;
  display: grid;
  place-items: center;
}

html[dir="ltr"] .header-center .logo {
  margin-left: inherit;
  margin-right: 20px;
}

.header-center .logo a {
  display: inline-block;
}

.header-center .header-menu-wrap>ul {
  display: flex;
  align-items: center;
  margin: 0 -15px;
}

.header-center .header-menu-wrap>ul>li>a {
    padding: 20px 10px;
  font-weight: 600;
  display: inline-block;
  font-size: 14px;
  line-height: 1.3;
  color: var(--morgal-font-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-center .header-menu-wrap>ul>li>a:hover {
  color: var(--morgal-secondary-color);
  font-weight: 700;
}

.header-center .header-left {
  display: flex;
  margin-right: auto;
  align-items: center;
  gap: 22px;
}

.header-center .header-left .social-icon ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-center .header-left .social-icon ul li {
  list-style: none;
  height: 30px;
}

.header-center .header-left .social-icon ul li a,
.header-center .header-left .social-icon ul li button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.header-center .header-left .social-icon li.home-hide {
  display: none;
}

.header-center .header-left .social-icon ul li.header-cart {
  display: block;
  position: relative;
}

.header-center .header-left .social-icon ul li.header-cart .cart-contents-count {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--morgal-secondary-color);
  color: var(--morgal-white-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  right: -5px;
  top: -5px;
  border-radius: 100%;
}

.header-center .header-left .social-icon ul li.header-search {
  display: none;
}

.header-left .header-gift {
  position: relative;
}

.header-left .header-gift .cart-contents-count {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--morgal-secondary-color);
  color: var(--morgal-white-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  right: -5px;
  top: -5px;
  border-radius: 100%;
}

@media (min-width: 1100px) {
  .header-center .header-left .social-icon ul li.header-gift {
    display: block;
  }

  .header-center .header-left .social-icon ul li.header-search {
    display: block;
  }
}

.header-center .login-btn svg {
  fill: var(--morgal-white-color);
}

header .header-bottom .container {
  position: relative;
}

header .header-bottom .search-bar {
  background-color: var(--morgal-white-color);
  position: absolute;
  top: 100%;
  left: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

header .header-bottom .search-bar.show {
  opacity: 1;
  visibility: visible;
}

.search-bar {
  width: 270px;
  border: 1px solid rgba(35, 97, 149, 1);
  border-radius: 90px;
  overflow: hidden;
  background: var(--morgal-white-color);
  padding: 4px 5px;
  margin-right: auto;
}

.mobile-menu-wrap form.search-form {
  width: calc(100% - 56px);
}

header .header-bottom .search-bar {
  width: 0px;
  height: 46px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

header .header-bottom .search-bar.show {
  width: 270px;
}

header .header-bottom.show .search-bar.show {
  width: 310px;
}

.search-bar input,
.search-bar button {
  background-color: transparent;
  border: 0;
}

.search-bar input {
  padding: 0px 15px 0 10px;
}

.search-bar input::placeholder {
  color: #999cad;
}

.search-bar input:focus {
  outline: none;
  box-shadow: none;
}

.search-bar button {
  padding: 0;
}

.search-bar button svg {
  color: var(--morgal-primary-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.search-bar button:hover svg {
  color: var(--morgal-secondary-color);
}

.header-toggle {
  display: none;
}

.header-toggle button {
  border: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-wrap {
  display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.mobile-menu-wrap.menu-open {
    display: block;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-wrap ul.contact-info li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.mobile-menu-wrap ul.login li {
  margin-bottom: 13px;
}

/* header - mega_menu */

.header-menu-wrap ul li .mega-menu {
  width: 100%;
  background: rgba(255, 249, 249, 0.95);
  padding: 20px 0;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
  border: 1px solid rgba(240, 240, 240, 1);
}

.header-menu-wrap ul>li>.mega-menu {
  top: 100%;
  right: 0;
}

.header-menu-wrap ul li:hover>.mega-menu,
.header-menu-wrap ul li .mega-menu:hover {
  visibility: visible;
  opacity: 1;
}

.mega-menu .media-menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mega-menu .media-menu ul li a {
  display: inline-block;
  width: 295px;
  width: 100%;
  position: relative;
  padding-bottom: 41%;
  background-color: rgba(153, 156, 173, 1);
}

.mega-menu .media-menu ul li a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-menu .mega-menu-right {
  position: relative;
  width: 70%;
  padding: 0 20px;
}

.mega-menu .mega-menu-left {
  width: 30%;
  padding: 0 20px;
}

.mega-menu-right .sub-menu-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mega-menu-right .sub-menu-wrapper .menu-wrapper .h6 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.mega-menu-right .sub-menu-wrapper .menu-wrapper a {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
}

.mega-menu-right .sub-menu-wrapper>ul>li {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.33;
  color: var(--morgal-font-color);
}

.mega-menu-right .sub-menu-wrapper>ul>li>a {
  color: var(--morgal-font-color);
}

.mega-menu-right .sub-menu-wrapper .menu-wrapper h6.h6>a {
  font-weight: 600 !important;
  font-size: 16px !important;
}

/* header__end */

/*==============================================================
Home Page
==============================================================*/

/* hero-banner-section__start */
.hero-banner-wrap {
  padding: 116px 0px 70px 0px;
  position: relative;
}

.hero-banner-wrap .row {
  align-items: center;
  row-gap: 30px;
}

.hero-banner-wrap .hero-banner-info {
  text-align: center;
}

.hero-banner-wrap .hero-banner-info p {
  margin: 0;
  padding-top: 27px;
  font-size: 16px;
}

.hero-banner-wrap .hero-banner-info .btn-wrap {
  padding-top: 27px;
}

.hero-slider .swiper-slide {
  overflow: hidden;
}

.hero-slider .hero-swiper-pagination {
  position: relative;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}

.hero-slider .hero-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0px 7px;
  background-color: rgba(199, 199, 199, 1);
  opacity: 1;
}

.hero-slider .hero-swiper-pagination .swiper-pagination-bullet-active {
  background: rgba(126, 92, 230, 1);
}

.hero-slider .img-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 54%;
  border: 2px solid var(--morgal-black-color);
  border-radius: 20px;
  overflow: hidden;
}

.hero-slider .img-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

/* hero-banner-section__end */

/* product-category-section__start */
.product-category-wrap {
  padding: 70px 0;
  position: relative;
}

.product-category-wrap .section-title {
  text-align: center;
  padding-bottom: 40px;
}

.category-listing-wrap>ul {
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}

.category-listing-wrap>ul>li {
  width: 33.33%;
  padding: 0 15px;
}

.category-listing-wrap ul li .category-card {
  overflow: hidden;
  position: relative;
  background-color: transparent;
  perspective: 1000px;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0px 16px 32px -8px rgba(0, 0, 0, 0.25);
}

.category-card .image-wrap {
  position: relative;
  padding-bottom: 81%;
  width: 100%;
}

.category-card .image-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.category-card .title-wrap {
  position: absolute;
  background-color: var(--morgal-primary-color);
  z-index: 1;
  right: 0;
  bottom: 23px;
  padding: 10px 20px 10px 50px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.category-card .title-wrap .h3 {
    color: var(--morgal-secondary-color);
}

.flip-box-inner {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
  transform-style: preserve-3d;
  background-color: transparent;
  -webkit-transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  position: relative;
  padding-bottom: 81%;
  width: 100%;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 2px solid;
  border-radius: 20px;
  overflow: hidden;
}

.flip-box-front {
  background-color: var(--morgal-primary-color);
  color: var(--morgal-black-color);
  border-color: var(--morgal-primary-color);
}

.flip-box-back {
  background-color: var(--morgal-primary-color);
  border-color: var(--morgal-primary-color);
  color: var(--morgal-white-color);
  padding: 15px;
  transform: rotateY(180deg);
  z-index: 1;
}

.category-card.flip-box .flip-box-back {
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card.flip-box .flip-box-back ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 200px;
  overflow: auto;
}

.category-card.flip-box .flip-box-back ul li a {
  color: var(--morgal-white-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.category-card.flip-box .flip-box-back ul li a:hover {
  color: var(--morgal-secondary-color);
}

.category-card.flip-box .flip-box-back ul li.view-category a {
  color: var(--morgal-primary-color);
}

.category-card.flip-box .flip-box-back ul li.view-category a:hover {
  color: var(--morgal-white-color);
}

/* product-category-section__end */

/* featured-product-tab__start */
.featured-product-wrap {
  padding: 70px 0;
}

.featured-product-wrap .nav {
  border: 1px solid var(--morgal-primary-color);
  background-color: var(--morgal-white-color);
  border-radius: 25px;
  padding: 5px;
  display: inline-flex;
  justify-content: center;
  row-gap: 10px;
  margin: 0 auto;
}

.featured-product-wrap .nav-pills .nav-link {
  border-radius: 25px;
  padding: 7px 20px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  font-size: 14px;
  color: var(--morgal-font-color);
}

.featured-product-wrap .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background: var(--morgal-primary-color);
  color: var(--morgal-white-color);
}

.featured-product-wrap .tab-content {
  position: relative;
}

.featured-product-wrap .tab-content>.tab-pane {
  display: none;
  width: 100%;
}

.featured-product-wrap .tab-content>.tab-pane.active {
  display: block;
}

.featured-product-wrap .woocommerce ul.products li.product .onsale {
  background: var(--morgal-secondary-color);
  color: var(--morgal-white-color);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 50px;
  z-index: 1;
  text-transform: uppercase;
}

.featured-product-wrap .cart-single-product-related .woocommerce ul.products li.product {
  margin-top: 0;
}

.featured-product-card {
  position: relative;
  padding: 20px;
  border-radius: 20px;
  background-color: #fff8fa;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-product-card .img-wrap {
  position: relative;
  padding-bottom: 100%;
  width: 100%;
}

.featured-product-card .img-wrap img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.featured-product-card .product-info {
  position: relative;
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 5px;
}

.featured-product-card .product-info a .product-title {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.featured-product-card .product-info a:hover .product-title {
  font-weight: 700;
}

.featured-product-card .product-info p {
  margin: 0;
}

.featured-product-card .product-info .product-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--morgal-primary-color);
  font-weight: 600;
  font-size: 16px;
}

.featured-product-card .product-info .product-sku {
  font-size: 14px;
  font-weight: 400;
  color: var(--morgal-black-color);
  line-height: 1.3;
  letter-spacing: 0px;
}

.featured-product-card .product-info .product-stock {
  font-size: 14px;
  font-weight: 400;
  color: rgba(81, 230, 16, 1);
}

.featured-product-card .product-info .product-price-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.featured-product-card .product-info .product-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--morgal-primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.featured-product-card.sale-product .product-info .product-price {
  color: #f11b23;
}

.featured-product-card .product-info .product-price-wrap span {
  font-size: 14px;
  font-weight: 600;
  color: #808080;
  text-decoration: line-through;
}

.featured-product-card .product-info .product-add-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
}

.featured-product-card .pill {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--morgal-secondary-color);
  color: var(--morgal-white-color);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 50px;
  z-index: 1;
  text-transform: uppercase;
}

.featured-product-card .pill.sale-pill {
  background-color: rgba(241, 57, 61, 1);
}

.featured-product-wrap .nav-pills-wrap {
  text-align: center;
  padding-bottom: 40px;
}

.featured-product-wrap .swiper-container {
  position: relative;
  margin: 0 auto;
}

.featured-product-wrap .swiper-container .swiper-button-next,
.featured-product-wrap .swiper-container .swiper-button-prev {
  border-radius: 10px;
  background-color: rgba(12, 30, 128, 0.65);
  width: 48px;
  height: 48px;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  background-color: #808080 !important;
}

.featured-product-wrap .swiper-container .swiper-button-next {
  margin-top: 0px;
  position: absolute;
  top: 50%;
  right: 0;
  left: inherit;
}

.featured-product-wrap .swiper-container .swiper-button-prev {
  position: absolute;
  top: 50%;
  left: 0;
  right: inherit;
  margin-top: 0px;
}

.featured-product-wrap .swiper-container .swiper-button-next:after,
.featured-product-wrap .swiper-container .swiper-button-prev:after {
  font-size: 19px;
  color: var(--morgal-white-color);
  transform: rotate(180deg);
}

.featured-product-wrap .product-listing-wrap {
  padding: 0;
}

.featured-product-wrap .cart-single-product-related {
  background-color: transparent;
}

.featured-product-wrap .cart-single-product-related.sale .woocommerce ul.products li.product .onsale {
  background-color: #f11b23;
}

/* .featured-product-wrap
  .cart-single-product-related.sale
  .woocommerce
  ul.products
  li.product
  .price
  .regular-price {
  color: #f11b23;
} */
/* featured-product-tab__end */

/* create-case-section__start  */
.create-case-wrap {
  padding: 384px 0;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.create-case-wrap .curv-shape svg {
  color: #b8ede3;
}

.create-case-wrap .row .img-wrap {
  position: relative;
  padding-bottom: 51%;
  max-width: 311px;
  width: 100%;
  margin-right: auto;
}

.create-case-wrap .row .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.create-case-wrap .content-wrap {
  padding-bottom: 40px;
}

.create-case-wrap .col-12 .content-wrap {
  padding-bottom: 0;
}

.create-case-wrap .content-wrap .text-wrap {
  padding-bottom: 16px;
}

.create-case-wrap .content-wrap .text-wrap:last-of-type {
  padding: 0;
}

.create-case-wrap .content-wrap .text-wrap p {
  margin: 0;
}

.create-case-wrap.inner-banner .content-wrap .text-wrap p {
  font-size: 16px;
}

.create-case-wrap .content-wrap .h4 {
  padding-bottom: 20px;
  font-weight: 600;
  line-height: 1.33;
}

.create-case-wrap .content-wrap .h5 {
  padding-bottom: 20px;
}

.create-case-wrap .content-wrap .section-title {
  font-weight: 400;
  padding-bottom: 20px;
}

.create-case-wrap.inner-banner .content-wrap .section-title {
  padding-bottom: 0;
}

.create-case-wrap .content-wrap .section-title span {
  color: var(--morgal-primary-color);
  font-weight: 700;
}

.create-case-wrap .content-wrap .section-title strong {
  color: var(--morgal-primary-color);
}

.create-case-wrap .content-wrap p {
  color: var(--morgal-font-color);
}

.create-case-wrap .create-case-card-wrap {
  padding-top: 40px;
}

.create-case-card-wrap ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  row-gap: 20px;
}

.create-case-card-wrap ul li {
  padding: 0 10px;
}

.create-case-card-wrap ul li .create-case-card {
  width: 140px;
  height: 100%;
  background-color: rgba(202, 242, 234, 1);
  border-radius: 20px;
  overflow: hidden;
  padding: 10px;
}

.create-case-card .img-wrap {
  height: 80px;
  padding: 0px 6px;
  margin: 0 auto;
}

.create-case-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.create-case-card .text-wrap {
  padding-top: 15px;
  text-align: center;
}

.create-case-card .text-wrap .h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.create-case-wrap .btn-wrap {
  padding-top: 60px;
}

.create-case-wrap .btn-wrap a {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.33;
  color: var(--morgal-white-color);
}

.create-case-wrap .hide-desktop {
  padding-top: 25px;
}

.create-case-wrap.inner-banner {
  padding: 70px 0 100px;
  position: relative;
}

.create-case-wrap.inner-banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -206px;
  right: 0;
  background-image: url("../images/gift-page-bg1.png");
  background-repeat: no-repeat;
  background-position: top right;
  z-index: -1;
}

.create-case-wrap.inner-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: url("../images/gift-page-bg2.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  z-index: -1;
}

/* create-case-section__end  */

/* our-story-section__start */
.our-story-wrap {
  padding: 70px 0;
}

.our-story-wrap .brand-card-wrap {
  padding: 75px 0 125px;
  position: relative;
}

.our-story-wrap .brand-card-wrap::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../images/13.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.brand-card-wrap ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  margin: 0 -10px;
  width: 75%;
  margin: 0 auto;
}

.brand-card-wrap ul li {
  padding: 0 10px;
  width: 50%;
}

.brand-card-wrap .brand-card {
  background-color: var(--morgal-white-color);
  border-radius: 20px;
  overflow: hidden;
  padding: 30px;
  box-shadow: 0px 16px 32px -8px rgba(0, 0, 0, 0.25);
}

.brand-card-wrap .brand-card .img-wrap {
  position: relative;
  padding-bottom: 79%;
  width: 100%;
}

.brand-card-wrap .brand-card .img-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  object-fit: contain;
  opacity: 0.65;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.brand-card-wrap a:hover .img-wrap img {
  opacity: 1;
}

.our-story-wrap .content-wrap {
  padding-top: 120px;
}

.our-story-wrap .content-wrap .h4 {
  padding-bottom: 16px;
}

.our-story-wrap .content-wrap .section-title {
  font-weight: 400;
  padding-bottom: 16px;
}

.our-story-wrap .content-wrap .section-title span {
  color: var(--morgal-primary-color);
  font-weight: 700;
}

.our-story-wrap .content-wrap .section-title strong {
  color: var(--morgal-primary-color);
}

.our-story-wrap .content-wrap .text-wrap {
  padding-bottom: 16px;
}

.our-story-wrap .content-wrap .text-wrap:last-of-type {
  padding: 0;
}

.our-story-wrap .content-wrap .text-wrap p {
  margin: 0;
  color: var(--morgal-font-color);
  font-size: 16px;
  line-height: 1.25;
}

.our-story-wrap .content-wrap .text-wrap p span {
  font-weight: 700;
}

.our-story-wrap .content-wrap .text-wrap ul {
  list-style: disc;
  padding-right: 12px;
}

.our-story-wrap .content-wrap .text-wrap li {
  font-size: 16px;
  line-height: 1.25;
  color: var(--morgal-font-color);
}

.our-story-wrap .content-wrap .btn-wrap {
  padding-top: 50px;
}

/* our-story-section__end */

/* cta-section__start */
.cta-section-wrap {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta-section-wrap .wrap {
  background-color: var(--morgal-primary-color);
  padding: 80px 0 136px 0;
}

.cta-section-wrap .desc-wrap {
  text-align: center;
}

.cta-section-wrap .desc-wrap .title {
  font-weight: 700;
  color: var(--morgal-white-color);
}

.cta-section-wrap .desc-wrap .subtitle {
  padding-top: 20px;
  font-weight: 400;
  color: var(--morgal-white-color);
}

.cta-section-wrap .desc-wrap .subtitle span {
  font-weight: 700;
  color: var(--morgal-secondary-color);
}

.cta-section-wrap .desc-wrap .details-wrap {
  padding-top: 20px;
}

.cta-section-wrap .desc-wrap .details-wrap p.details,
.cta-section-wrap .desc-wrap .details-wrap p {
  font-weight: 400;
  color: var(--morgal-white-color);
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.cta-section-wrap .form-wrap {
  padding-top: 60px;
}

.cta-section-wrap .form-wrap .row>* {
  text-align: center;
}

.cta-section-wrap form input {
  background-color: #c9cfe1;
  border-radius: 10px;
  color: var(--morgal-black-color);
  padding: 15px 20px;
  line-height: 1;
  font-size: 14px;
}

.cta-section-wrap form input::placeholder {
  color: var(--morgal-black-color);
}

.cta-section-wrap form input[type="submit"] {
  display: inline-flex;
  padding: 14px 60px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 0;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  background-color: var(--morgal-secondary-color);
  color: var(--morgal-primary-color);
}

.cta-section-wrap form input[type="submit"]:hover {
  background-color: var(--morgal-secondary-color);
  color: var(--morgal-white-color);
}

.cta-section-wrap form input:focus {
  background-color: rgba(255, 249, 249, 0.9);
  box-shadow: none;
  color: var(--morgal-black-color);
  border-color: rgba(255, 249, 249, 0.9);
}

.cta-section-wrap form .terms-wrap,
.cta-section-wrap form .btn-wrap {
  padding-top: 30px;
}

.cta-section-wrap form .terms-wrap p {
  margin: 0;
  color: var(--morgal-white-color);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.33;
  margin-bottom: 6px;
}

.cta-section-wrap form .terms-wrap p:last-child {
  margin-bottom: 0;
}

.cta-section-wrap form .terms-wrap p a {
  color: var(--morgal-white-color);
  text-decoration: underline;
}

.cta-section-wrap form .terms-wrap p.title {
  font-weight: 700;
}

.cta-section-wrap .row.g-3 {
  --bs-gutter-y: 0px;
  --bs-gutter-x: 0px;
}

/* cta-section__end */

/*==============================================================
Gift Page
==============================================================*/

.create-case-wrap.inner-banner .row {
  align-items: flex-end;
}

.create-case-wrap.inner-banner .content-wrap .hide-mobile {
  display: none;
}

.create-case-wrap.inner-banner .hide-desktop {
  display: block !important;
}

.create-case-wrap.inner-banner .hide-desktop .content-wrap {
  padding-top: 0px;
}

.create-case-wrap.inner-wrap .content-wrap .section-title {
  padding-bottom: 0;
}

/* case-process-section__start */
.case-process-wrap {
  padding-top: 70px;
}

.case-process-wrap .case-process-card-wrap,
.case-process-wrap .fine-print-list-wrap,
.case-process-wrap .btn-wrap {
  padding-top: 60px;
}

.case-process-card-wrap ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 75%;
}

.case-process-card-wrap .case-process-card {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.25);
}

.case-process-card .text-wrap p {
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: var(--morgal-black-color);
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}

.case-process-card .text-wrap p span {
  border: 1px solid var(--morgal-black-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 1px 2px;
  margin: 0 4px;
}

.case-process-card .text-wrap p span.heart {
  border: 0;
}

.case-process-card .text-wrap p span img {
  width: 10px;
  height: 10px;
}

.case-process-card .img-wrap {
  position: relative;
  height: 55px;
  width: 70px;
  flex-shrink: 0;
}

.case-process-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fine-print-list-wrap ul {
  padding: 10px 16px 0 0;
  list-style: disc;
}

.fine-print-list-wrap ul li {
  font-size: 16px;
}

/* case-process-section__end */

/*==============================================================
Product Page
==============================================================*/

.featured-product-wrap.related-product-wrap,
.featured-product-wrap.offer-product-wrap {
  padding: 40px 0;
}

.featured-product-wrap.related-product-wrap .section-title,
.featured-product-wrap.offer-product-wrap .section-title {
  padding-bottom: 40px;
}

/* product-detail-section__start */
.product-detail-wrap {
  padding: 40px 0 0 0;
}

.product-detail-wrap .swiper {
  width: 100%;
  height: 100%;
}

.product-detail-wrap .product-gallery {
  position: relative;
}

.product-detail-wrap .product-gallery .product-video-play {
  position: absolute;
  width: 32px;
  height: 32px;
  cursor: pointer;
  left: 20px;
  bottom: 20px;
  z-index: 1001;
  color: rgba(0, 30, 128, 1);
}

.product-detail-wrap .product-gallery-thumb .swiper-slide {
  opacity: 0.6;
  width: 100px;
}

.product-detail-wrap .product-gallery-thumb .swiper-slide-thumb-active {
  opacity: 1;
}

.product-detail-wrap .swiper-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.product-detail-wrap .product-media-wrap,
.product-detail-wrap .product-thumb-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  cursor: pointer;
}

.product-detail-wrap .product-media-wrap {
  border-radius: 20px;
}

.product-detail-wrap .product-thumb-wrap .product-video-play {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  color: var(--morgal-white-color);
  pointer-events: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-wrap .product-thumb-wrap {
  border-radius: 10px;
}

.product-detail-wrap .product-media-wrap.is-video,
.product-detail-wrap .product-thumb-wrap.is-video {
  position: relative;
}

.product-detail-wrap .product-media-wrap.is-video .play-btn {
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
}

.product-detail-wrap .product-media-wrap.is-video .play-btn.show {
  opacity: 1;
  visibility: visible;
}

.product-detail-wrap .product-media-wrap.is-video .play-btn img {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
}

.product-detail-wrap .swiper-slide img,
.product-detail-wrap .swiper-slide video {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-wrap .product-gallery-thumb {
  margin-top: 20px;
  position: relative;
  padding: 0 35px;
}

.product-detail-wrap .product-gallery-thumb .swiper-button-next,
.product-detail-wrap .product-gallery-thumb .swiper-button-prev {
  z-index: 1000;
  background-color: rgba(12, 30, 128, 0.65);
  border-radius: 3px;
}

.product-detail-wrap .product-gallery-thumb .swiper-button-next:after,
.product-detail-wrap .product-gallery-thumb .swiper-button-prev:after {
  font-size: 19px;
  color: var(--morgal-white-color);
  transform: rotate(180deg);
}

.product-detail-wrap .product-gallery-thumb .swiper-button-next.swiper-button-disabled,
.product-detail-wrap .product-gallery-thumb .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
  display: none;
}

.product-detail-wrap .product-gallery-thumb .swiper-button-next {
  right: 0;
  left: inherit;
}

.product-detail-wrap .product-gallery-thumb .swiper-button-prev {
  left: 0;
  right: inherit;
}

.product-detail-wrap .col-md-6 span.onsale {
  display: none;
}

.product-detail-container .breadcrumb-wrap {
  padding: 10px 0px 20px;
  border-bottom: 1px solid #c7c7c7;
}

.product-detail-container .breadcrumb-wrap ul.breadcrumb {
  list-style: none;
  margin: 0;
}

.product-detail-container .breadcrumb-wrap ul.breadcrumb li {
  display: inline;
  font-size: 14px;
}

.product-detail-container .breadcrumb-wrap ul.breadcrumb li+li:before {
  padding: 4px;
  color: #999cad;
  content: "/\00a0";
}

.product-detail-container .breadcrumb-wrap ul.breadcrumb li a {
  color: #999cad;
  text-decoration: none;
}

.product-detail-container .breadcrumb-wrap ul.breadcrumb li a:hover {
  color: var(--morgal-primary-color);
  text-decoration: underline;
}

.product-detail-container .breadcrumb-wrap ul.breadcrumb li:last-child,
.product-detail-container .breadcrumb-wrap ul.breadcrumb li:last-child a {
  color: var(--morgal-black-color);
}

.product-detail-container .product-desc-wrap {
  padding: 24px 0 0px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-detail-container .product-desc-wrap .product-title .h2,
.product-detail-container .product-desc-wrap .product-price-wrap .h2 {
  color: var(--morgal-primary-color);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.product-detail-container .product-desc-wrap .product-title .h2 ins,
.product-detail-container .product-desc-wrap .product-price-wrap .h2 ins {
  text-decoration: none;
}

.product-detail-container .product-desc-wrap .product-title .h2 del,
.product-detail-container .product-desc-wrap .product-price-wrap .h2 del {
  font-size: 18px;
  color: #808080;
  font-weight: 400;
}

.product-detail-container .product-desc-wrap .product-title .h2 ins .sale-price,
.product-detail-container .product-desc-wrap .product-price-wrap .h2 ins .sale-price {
  color: rgba(241, 27, 35, 1);
}

.product-detail-container .product-desc-wrap .product-price-wrap p,
.product-detail-container .product-desc-wrap .product-sku p {
  color: var(--morgal-black-color);
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.product-detail-container .product-desc-wrap .product-desc p,
.product-detail-container .product-desc-wrap .product-desc a,
.product-detail-container .product-desc-wrap .product-desc ul li,
.product-detail-container .product-desc-wrap .product-desc ul li a {
  margin: 0;
  font-size: 14px;
}

.product-detail-container .product-desc-wrap .shipping-conditions p {
  margin: 0;
  font-size: 12px;
}

.product-detail-container .product-desc-wrap .product-desc a,
.product-detail-container .product-desc-wrap .product-desc ul li a {
  text-decoration: underline;
}

.product-detail-container .product-desc-wrap .product-desc ul,
.product-desc-accordion .accordion .accordion-body ul {
  list-style: disc;
  padding: 10px 16px 10px 0;
}

.product-detail-container .product-desc-wrap .product-desc ol,
.product-desc-accordion .accordion .accordion-body ol {
  list-style: hebrew;
  padding: 10px 12px 10px 0;
}

.product-detail-container .product-desc-wrap .product-stock p {
  margin: 0;
}

.product-detail-container .product-desc-wrap .product-stock p.in-stock {
  color: #45a834;
}

.product-detail-container .product-desc-wrap .product-stock p.out-of-stock {
  color: rgba(241, 27, 35, 1);
}

.product-detail-container .product-desc-wrap .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 0;
}

.product-desc-accordion .accordion .accordion-body .comment-form input[type="text"],
.product-desc-accordion .accordion .accordion-body .comment-form input[type="email"],
.product-desc-accordion .accordion .accordion-body .comment-form input[type="password"],
.product-desc-accordion .accordion .accordion-body .comment-form textarea {
  background-color: #f0f0f0;
  border-radius: 22px;
  height: 44px;
  border: 1px solid #f0f0f0;
  font-size: 14px;
  color: var(--morgal-font-color);
  line-height: 1.2;
  padding: 13px 30px;
  width: 100%;
}

.product-desc-accordion .accordion .accordion-body .comment-form textarea {
  height: 80px;
  overflow: auto;
  resize: none;
}

.product-detail-container .product-desc-wrap .btn-wrap .btn-primary {
  padding: 12px 53px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.333;
}

.product-detail-container .product-desc-wrap .btn-wrap .query-btn {
  padding: 10px 20px 10px 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.333;
}

.product-detail-container .product-desc-wrap .share-btn-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.product-detail-container .product-desc-wrap .share-btn-wrap .share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-detail-container .product-desc-wrap .share-btn-wrap .share-btn>img {
  display: none;
}

.product-detail-container .product-desc-wrap .share-btn-wrap .share-btn#add-to-user-meta img {
  display: block;
}

.product-detail-container .product-desc-wrap .share-btn-wrap .share-btn#add-to-user-meta {
  text-decoration: underline;
  color: var(--morgal-black-color);
}

.product-detail-container .product-desc-wrap .share-btn-wrap .gift-in-cart#add-to-user-meta {
  text-decoration: underline;
  color: var(--morgal-secondary-color);
}

.product-detail-container .product-desc-wrap .cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.product-detail-container .product-desc-wrap .cart .btn {
  width: auto;
}

.product-detail-container .product-desc-wrap .cart .query-btn:focus,
.product-detail-container .product-desc-wrap .cart .query-btn:active,
.product-detail-container .product-desc-wrap .cart .query-btn.active {
  background-color: var(--morgal-black-color);
  color: var(--morgal-white-color);
}

.product-detail-container .product-desc-wrap .addtoany_shortcode .addtoany_no_icon {
  font-size: 16px;
  color: var(--morgal-black-color);
  font-weight: 400;
  line-height: 1.3;
  pointer-events: none;
}

.product-detail-container .product-desc-wrap .woocommerce-product-rating {
  display: none;
}

.product-desc-accordion .accordion {
  --bs-accordion-color: var(--morgal-font-color);
  --bs-accordion-bg: transparent;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-border-width: 0;
  --bs-accordion-active-bg: transparent;
}

.product-desc-accordion .accordion .accordion-item {
  border-top: 1px solid #c7c7c7;
}

.product-desc-accordion .accordion .accordion-item:last-of-type {
  border-bottom: 1px solid #c7c7c7;
}

.product-desc-accordion .accordion .accordion-button {
  justify-content: space-between;
  padding: 25px 0;
  color: var(--morgal-black-color);
  font-size: 16px;
}

.product-desc-accordion .accordion .accordion-button:focus {
  box-shadow: none;
}

.product-desc-accordion .accordion .accordion-button::after {
  margin: 0;
  background-image: url("../images/icons/plus.svg");
  width: 13px;
  height: 13px;
  background-size: contain;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product-desc-accordion .accordion .accordion-button:not(.collapsed)::after {
  background-image: url("../images/icons/minus.svg");
  width: 13px;
  height: 3px;
  background-size: contain;
}

.product-desc-accordion .accordion .accordion-body {
  padding: 0;
  padding-bottom: 25px;
}

.product-desc-accordion .accordion .accordion-body p {
  margin: 0;
}

.product-detail-wrap .wpf-search-container {
  display: flex;
  flex-wrap: wrap;
}

.product-detail-wrap .wpf-search-container [class*="col-"],
.product-detail-wrap .wpf-search-container [class^="col-"] {
  padding: 0 15px;
}

@media (max-width: 767px) {
  .product-detail-wrap .wpf-search-container {
    display: block;
  }

  .product-detail-container {
    padding-top: 30px;
  }

  .product-detail-wrap .wpf-search-container [class*="col-"],
  .product-detail-wrap .wpf-search-container [class^="col-"] {
    padding: 0;
  }
}

/* product-detail-section__end */

/* Quantity Button Style - Start */
.qty-input {
  color: var(--morgal-black-color);
  background: var(--morgal-white-color);
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 50px;
  background-color: #e2e2e2;
  color: #2b2f42;
  padding: 14px 20px;
  gap: 10px;
}

.qty-input .product-qty,
.qty-input .qty-count {
  background: transparent;
  color: inherit;
  font-size: inherit;
  border: none;
  display: inline-block;
  min-width: 0;
  line-height: 1;
}

.qty-input .product-qty:focus,
.qty-input .qty-count:focus {
  outline: none;
}

.qty-input .product-qty {
  width: 70px;
  min-width: 0;
  display: inline-block;
  text-align: center;
  appearance: textfield;
  font-size: 14px;
}

.qty-input .product-qty::-webkit-outer-spin-button,
.qty-input .product-qty::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.qty-input .qty-count {
  padding: 0;
  cursor: pointer;
  width: 100%;
  font-size: 14px;
  text-indent: -100px;
  overflow: hidden;
  position: relative;
}

.qty-input .qty-count:before,
.qty-input .qty-count:after {
  content: "";
  height: 1px;
  width: 8px;
  position: absolute;
  display: block;
  background: var(--morgal-black-color);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.qty-input .qty-count--add:after {
  transform: rotate(90deg);
}

.qty-input .qty-count:disabled {
  cursor: not-allowed;
  border-color: transparent;
}

.qty-input .qty-count:disabled:before,
.qty-input .qty-count:disabled:after {
  background: #ccc;
}

.product-detail-container .product-desc-wrap .cart .quantity {
  background-color: rgba(226, 226, 226, 1);
  border: 0;
  padding: 5px 12px;
  border-radius: 50px;
}

.product-detail-container .product-desc-wrap .cart .quantity .input-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.28;
  color: rgba(43, 47, 66, 1);
  background-color: transparent;
  border: 0;
  width: 40px;
  padding: 5px 0px;
  height: 36px;
}

.product-detail-container .product-desc-wrap .cart .quantity button {
  padding: 0;
  cursor: pointer;
}

.product-detail-container .product-desc-wrap .cart .quantity .input-text::-webkit-outer-spin-button,
.product-detail-container .product-desc-wrap .cart .quantity .input-text::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-detail-container .product-desc-wrap .cart .quantity .input-text[type="number"] {
  -moz-appearance: textfield;
}

/* Quantity Button Style - End */

/*==============================================================
Gift Box Page
==============================================================*/

/* gift-box-section__start */

.gift-box-wrap {
  padding: 35px 0 100px;
}

.gift-box-wrap .back-link-wrap {
  padding: 0 20px 15px 15px;
  text-align: end;
}

.gift-box-wrap .back-link-wrap a {
  font-size: 14px;
  color: #999cad;
  line-height: 1.3;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.gift-box-wrap .back-link-wrap a:hover {
  text-decoration: underline;
  color: var(--morgal-black-color);
}

.gift-box-wrap .gift-box {
  background-color: #f0f0f0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: clip;
}

.gift-box .gift-box-top-bar {
  padding: 20px;
  background-color: var(--morgal-secondary-color);
}

.gift-box .gift-box-bottom-bar {
  height: 25px;
  background-color: var(--morgal-secondary-color);
}

.gift-box .gift-box-top-bar .text-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}

.gift-box .gift-box-top-bar .text-wrap p {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--morgal-black-color);
}

.gift-box .gift-box-top-bar .text-wrap a {
  font-size: 14px;
  color: #fff9f9;
  text-decoration: underline;
}

.gift-box .gift-box-container {
  padding: 30px 15px 90px;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  row-gap: 40px;
  border-bottom: 15px solid var(--morgal-secondary-color);
}

.gift-box .dropdown-toggle {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.33;
  text-align: center;
  color: var(--morgal-white-color);
  text-decoration-line: underline;
}

.gift-box .dropdown-toggle:after {
  display: none;
}

.gift-box .gift-box-container .gift-box-right {
  padding: 0 15px;
  width: 75%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.gift-box .gift-box-container .gift-box-left {
  padding: 0 15px;
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.gift-box-container .gift-box-left .gift-summary-box {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: var(--morgal-white-color);
  border-radius: 20px;
  position: sticky;
  top: 30px;
}

.gift-summary-box .heading-wrap p {
  font-size: 14px;
  font-weight: 700;
  color: var(--morgal-black-color);
  margin: 0;
}

.gift-summary-box ul {
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gift-summary-box ul li {
  padding-bottom: 15px;
}

.gift-summary-box ul li,
.gift-summary-box .total-case-wrap {
  display: flex;
  gap: 15px;
}

.gift-summary-box ul li p,
.gift-summary-box ul li span,
.gift-summary-box .total-case-wrap p,
.gift-summary-box .total-case-wrap span {
  font-size: 14px;
  color: var(--morgal-black-color);
  margin: 0;
  line-height: 1.33;
}

.gift-summary-box .total-case-wrap p,
.gift-summary-box .total-case-wrap span {
  font-weight: 700;
}

.gift-summary-box ul li p,
.gift-summary-box .total-case-wrap p {
  width: 75%;
}

.gift-summary-box ul li span,
.gift-summary-box .total-case-wrap span {
  flex-shrink: 0;
  text-align: left;
  width: 25%;
  display: block;
}

.gift-box-container .gift-box-card {
  padding: 30px 20px;
  background-color: var(--morgal-white-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.gift-box-container .gift-box-card .heading-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}

.gift-box-container .gift-box-card .heading-wrap .h5 {
  color: var(--morgal-font-color);
  font-weight: 700;
  line-height: 1.33;
}

.gift-box-container .gift-box-card .heading-wrap span {
  font-size: 14px;
}

.gift-box-card .gift-box-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.gift-box-card .gift-box-form .gift-box-textarea {
  padding: 15px 30px;
  background-color: #f0f0f0;
  border: 0;
  border-radius: 20px;
  width: 100%;
  color: var(--morgal-font-color);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
}

.gift-box-card .nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gift-box-card .nav-wrap .nav-pills-wrap {
  gap: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.gift-box-card .nav {
  border: 1px solid var(--morgal-primary-color);
  background-color: var(--morgal-white-color);
  border-radius: 25px;
  padding: 5px;
  display: inline-flex;
  justify-content: center;
  row-gap: 10px;
  margin: 0 auto;
}

.gift-box-card .nav-pills .nav-link {
  border-radius: 25px;
  padding: 7px 20px;
  font-weight: 600;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--morgal-font-color);
  line-height: 1.3;
}

.gift-box-card .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background: var(--morgal-primary-color);
  color: var(--morgal-white-color);
}

.gift-box-form .row {
  row-gap: 20px;
}

.gift-box-form .gift-box-input {
  padding: 13px 30px;
  border: 0;
  border-radius: 60px;
  background-color: #f0f0f0;
  width: 100%;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--morgal-font-color);
}

.gift-box-form .gift-box-input::placeholder {
  color: var(--morgal-font-color);
}

.gift-box-container .btn-wrap {
  text-align: center;
}

.gift-box-form .radio-button-wrap ul {
  margin: 0 -40px;
  display: flex;
}

.gift-box-form .radio-button-wrap ul li {
  width: 33.33%;
  padding: 0 40px;
  position: relative;
}

.gift-box-form .radio-button-wrap ul li::after {
  content: "";
  height: 60%;
  width: 1px;
  background-color: #c7c7c7;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.gift-box-form .radio-button-wrap ul li:last-child::after {
  content: none;
}

.gift-box-form .gift-box-radio-btn {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.card-input-element+.card {
  padding: 20px;
  border: 1px solid #f2f2f2;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
}

.card-input-element:checked+.card {
  border: 1px solid var(--morgal-primary-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #f0f0f0;
}

.card-input-element:checked+.card::after {
  content: "";
  position: absolute;
  background-image: url("../images/icons/tick.svg");
  background-repeat: no-repeat;
  top: 10px;
  left: 10px;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.gift-box-radio-btn .card .card-media {
  padding-bottom: 90%;
  position: relative;
  width: 100%;
}

.gift-box-radio-btn .card .card-content {
  text-align: center;
}

.gift-box-radio-btn .card .card-content p {
  font-size: 14px;
  color: var(--morgal-font-color);
  margin: 0;
}

.gift-box-radio-btn .card .card-content p.card-subtitle {
  font-weight: 700;
}

.gift-box-radio-btn .card .card-content p.card-title {
  font-size: 18px;
}

.gift-box-radio-btn .card .card-media img,
.gift-box-radio-btn .card .card-media svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: contain;
}

.gift-box-radio-btn .card .card-media {
  color: #2a2c3e;
}

.card-input-element:checked+.card .card-media {
  color: var(--morgal-primary-color);
}

.card-input-element:disabled+.card {
  opacity: 0.7;
  cursor: not-allowed;
}

.gift-list ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gift-list ul li {
  background-color: var(--morgal-white-color);
  border-radius: 20px;
  overflow: hidden;
}

.gift-list .gift-list-item {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.gift-info,
.gift-item-wrap {
  width: 100%;
}

.gift-title {
  width: 42%;
}

.gift-list .added-item .gift-list-item {
  position: relative;
}

.gift-list .added-item .gift-list-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.gift-list .gift-info .gift-quantity .gift-price-wrap,
.gift-list .gift-list-item .gift-info .gift-quantity,
.gift-list .gift-list-item .gift-item-wrap .gift-info,
.gift-list .gift-list-item .gift-item-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-evenly;
}

.gift-list .gift-info .gift-quantity .gift-price-wrap {
  gap: 8px;
}

.gift-list .gift-list-item button {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.gift-list .gift-list-item button img {
  width: 31px;
  height: 31px;
  border-radius: 50%;
}

.gift-list .gift-list-item button span {
  font-size: 11px;
  line-height: 1.3;
}

.gift-list .gift-list-item button.remove-button span {
  color: #f11b23;
  line-height: 1.3;
}

.gift-list .gift-list-item button.add-button span.add-btn {
  color: var(--morgal-primary-color);
}

.gift-list .gift-list-item button.add-button span.added-btn {
  color: #279e38;
}

.gift-list-item .gift-image {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}

.gift-list-item .gift-image img {
  width: 100%;
  height: 100%;
}

.gift-list-item .gift-info p {
  margin: 0;
}

.gift-list-item .gift-info .gift-price-wrap .gift-price,
.gift-list-item .gift-info .gift-title .h2 {
  font-size: 16px;
  color: var(--morgal-primary-color);
  line-height: 1.3;
  font-weight: 400;
}

.gift-list-item .gift-info .gift-title .sku {
  font-size: 14px;
  color: var(--morgal-black-color);
  line-height: 1.3;
}

.gift-list-item .gift-info .stock-available {
  font-size: 14px;
  color: #51e610;
  line-height: 1.3;
  width: 76px;
}

.gift-list-item .gift-info .gift-price-wrap .gift-off-price {
  font-size: 14px;
  color: #999cad;
  line-height: 1.3;
  text-decoration: line-through;
}

.gift-list button.add-button .added-btn,
.gift-list .added-item button.add-button .add-btn {
  display: none;
}

.gift-list .added-item button.add-button .added-btn,
.gift-list button.add-button .add-btn {
  display: block;
}

.gift-list-item .quantity-btn {
  width: 85px;
}

.gift-list-item .quantity-btn .qty-input {
  padding: 8px 12px;
  width: 100%;
}

.gift-quantity {
  min-width: 185px;
  justify-content: space-between !important;
}

.gift-list .mobile-button-wrapper {
  display: none;
}

.gift-list .remove-button-wrap,
.gift-list .add-button-wrap {
  z-index: 2;
}

/* gift-box-section__end */

/*==============================================================
About Page
==============================================================*/

/* about-moshe-section__start */

.about-moshe-wrap {
  padding: 70px 0;
}

.about-moshe-wrap .row {
  justify-content: space-between;
  align-items: center;
  row-gap: 40px;
}

.about-moshe-content .section-heading {
  padding-bottom: 27px;
}

.about-moshe-content .section-heading strong {
  color: var(--morgal-primary-color);
}

.about-moshe-content .text-wrap+.text-wrap {
  padding-top: 20px;
}

.about-moshe-content p:empty {
  display: none;
}

.about-moshe-content .h2 {
  color: var(--morgal-black-color);
  font-weight: 400;
}

.about-moshe-content .h2 span {
  font-weight: 700;
  color: var(--morgal-primary-color);
}

.about-moshe-image {
  position: relative;
  max-width: 410px;
  width: 100%;
  max-height: 410px;
  height: 100%;
  border-radius: 50%;
  margin: 0 auto;
}

.about-moshe-wrap .about-moshe-bg {
  position: relative;
}

.about-moshe-wrap .about-moshe-bg::after {
  content: "";
  background-image: url("../images/about-bg.png");
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  max-height: 305px;
  top: 50%;
  transform: translateY(-50%);
}

/* about-moshe-section__end */

/* our-story-section__start */

.morgal-story-wrap {
  padding: 0;
  position: relative;
}

.morgal-story-wrap .curv-shape svg {
  color: #b8ede3;
}

.morgal-story-wrap .text-container {
  max-width: 615px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.morgal-story-wrap .text-container .text-wrap:not(:last-of-type) {
  padding-bottom: 15px;
}

.morgal-story-wrap .text-container .text-wrap p {
  margin: 0;
}

.morgal-story-wrap .text-container .h5,
.morgal-story-wrap .text-container .h2 {
  padding-bottom: 10px;
}

.morgal-story-wrap .text-container .h2 {
  font-weight: 400;
}

.morgal-story-wrap .text-container .h2 span {
  font-weight: 700;
  color: var(--morgal-primary-color);
}

.morgal-story-wrap .text-container .h2 strong {
  color: var(--morgal-primary-color);
  font-weight: 700;
}

.morgal-story-list ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  margin: 0 -15px;
}

.morgal-story-list ul li {
  width: 25%;
  padding: 0 15px;
}

.morgal-story-list {
  padding-top: 40px;
}

.morgal-story-list .morgal-story-item {
  padding: 46px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  border-radius: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.morgal-story-list .morgal-story-item:hover {
  background-color: #caf2ea;
  box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.03);
}

.morgal-story-list .morgal-story-item .morgal-story-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 30px;
  background-color: #caf2ea;
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.03);
}

.morgal-story-list .morgal-story-item .morgal-story-image img {
  width: 100%;
  height: 100%;
}

.morgal-story-item .morgal-story-info {
  text-align: center;
}

.morgal-story-item .morgal-story-info .h5 {
  font-weight: 700;
}

.morgal-story-item .morgal-story-info p {
  margin: 0;
  padding-top: 10px;
  color: var(--morgal-black-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}

/* our-story-section__end */

/*==============================================================
Shop Page
==============================================================*/

/* shop-category-section__start */
.shop-category-wrap {
  padding: 40px 0 25px;
  background-color: #f0f0f0;
}

.shop-category-wrap .container {
  max-width: 1200px;
  width: 100%;
}

.shop-category-list ul {
  display: flex;
  flex-wrap: nowrap;
  overflow: auto;
  gap: 30px;
  padding-bottom: 15px;
}

.shop-category-list .shop-category-item {
  max-width: 145px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.shop-category-item .shop-category-image {
  width: 145px;
  height: 145px;
  padding: 4px;
  background-image: -webkit-linear-gradient(135deg, var(--morgal-primary-color), var(--morgal-secondary-color));
  background-image: linear-gradient(135deg, var(--morgal-primary-color), var(--morgal-secondary-color));
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.shop-category-item .shop-category-image:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  background-image: -webkit-linear-gradient(135deg, var(--morgal-primary-color), var(--morgal-secondary-color));
  background-image: linear-gradient(135deg, var(--morgal-primary-color), var(--morgal-secondary-color));
  opacity: 0.2;
  transition: all 0.2s ease-in-out;
  border-radius: 100%;
}

.shop-category-item .shop-category-image:hover:after {
  width: 100%;
  height: 100%;
}

.shop-category-item .shop-category-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.shop-category-item .shop-category-image.is-video::before {
  content: "";
  position: absolute;
  background-image: url("../images/icons/player-play.svg");
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.shop-category-item .shop-category-title {
  font-size: 14px;
  color: var(--morgal-primary-color);
  font-weight: 700;
}

/* shop-category-section__end */

/* product-listing-section__start */
.product-listing-wrap {
  padding: 40px 0 90px;
}

.product-listing-wrap .top-bar {
  padding-bottom: 40px;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.product-listing-wrap .top-bar .woocommerce-result-count,
.product-listing-wrap .top-bar .woocommerce-ordering span {
  font-size: 14px;
  margin: 0;
  text-wrap: nowrap;
}

.product-listing-wrap .top-bar .woocommerce-result-count span {
  font-weight: 700;
}

.product-listing-wrap .top-bar .woocommerce-ordering {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 0;
}

.product-listing-wrap .woocommerce-ordering .orderby {
  border: 0;
  background-color: transparent;
  font-size: 14px;
  font-weight: 700;
  color: var(--morgal-font-color);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 10px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
}

.product-listing-wrap .woocommerce-ordering .orderby option {
  font-size: 14px;
  font-weight: 700;
}

.product-listing-wrap .woocommerce .product-inner {
  padding: 20px;
  background-color: #fff8fa;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 100%;
}

@media (max-width: 767px) {
  .product-listing-wrap .woocommerce .product-inner {
    padding: 10px;
  }
}

.product-listing-wrap .woocommerce .product-inner .product-thumb {
  position: relative;
  padding-bottom: 100%;
  width: 100%;
}

.product-listing-wrap .woocommerce .product-inner .product-thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: top;
}

.product-listing-wrap .woocommerce .product-inner .product-thumb .pill.outofstock {
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--morgal-secondary-color);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  padding: 5px 10px;
  border-radius: 50px;
  color: var(--morgal-white-color);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: right;
  margin: 0;
}

.woocommerce .products ul,
.woocommerce ul.products {
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}

.woocommerce-page.columns-3 ul.products li.product,
.woocommerce.columns-3 ul.products li.product {
  padding: 0 15px;
  width: 33.33%;
  margin-bottom: 0;
}

.woocommerce-page.columns-3 ul.products li.product.outofstock .product-thumb span,
.woocommerce.columns-3 ul.products li.product.outofstock .product-thumb span {
  position: absolute;
  top: 0px;
  right: 0px;
  /* background: #f11b23; */
  color: var(--morgal-white-color);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 50px;
  z-index: 1;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
  pointer-events: none;
}

.woocommerce ul.products li.product a img {
  padding: 0;
  margin: 0;
}

.woocommerce ul.products li.product .onsale {
  position: absolute;
  top: 0px;
  right: 0px;
  background: #f11b23;
  color: var(--morgal-white-color);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 50px;
  z-index: 1;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
}

.woocommerce ul.products li.product .onsale.new-pro {
  background: var(--morgal-primary-color);
}

.woocommerce ul.products li.product .onsale.req-pro {
  background: var(--morgal-secondary-color);
}

.woocommerce span.onsale {
  line-height: 1;
  min-height: auto;
  min-width: auto;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
  font-size: 16px;
  color: var(--morgal-primary-color);
  padding: 0;
  font-weight: 600;
  display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
}

.woocommerce ul.products li.product .price {
  margin: 0;
  text-decoration: none !important;
  display: flex;
  column-gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - 30px);
  width: 100%;
}

.woocommerce ul.products li.product .price ins {
  text-decoration: none;
}

.woocommerce ul.products li.product .price del {
  opacity: 1;
  color: #808080;
  text-decoration: line-through;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.333;
}

.woocommerce ul.products li.product .price .regular-price {
  color: var(--morgal-primary-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.woocommerce ul.products li.product.sale .price del {
  opacity: 1;
  color: #808080;
  text-decoration: line-through;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.333;
}

.woocommerce ul.products li.product.sale .price ins {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(241, 27, 35, 1);
}

.woocommerce ul.products li.product.sale.product-type-variable .price .amount,
.woocommerce ul.products li.product.sale.product-type-grouped .price .amount {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(241, 27, 35, 1);
}

.woocommerce ul.products li.product .woo-product-sku,
.woocommerce ul.products li.product .woo-product-stock {
  display: block;
  font-size: 14px;
  color: var(--morgal-black-color);
  line-height: 1;
  max-width: calc(100% - 30px);
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .woocommerce ul.products li.product.sale .price ins {
    font-size: 16px;
  }

  .woocommerce ul.products li.product .price .regular-price {
    font-size: 16px;
  }

  .woocommerce ul.products li.product.sale .price del {
    font-size: 13px;
  }

  .woocommerce ul.products li.product .woo-product-sku {
    font-size: 13px;
  }
}

.woocommerce ul.products li.product .woo-product-stock {
  color: #45a834;
}

.woocommerce ul.products li.product .woo-out-stock {
  color: rgba(241, 27, 35, 1);
}

.woocommerce ul.products li.product .product-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 15px;
}

.woocommerce ul.products li.product .button {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 38px;
  height: 38px;
}

@media (max-width: 767px) {
  .woocommerce ul.products li.product .button {
    width: 28px;
    height: 28px;
    left: 10px;
    bottom: 10px;
  }
}

.woocommerce ul.products li.product .button:hover {
  box-shadow: none;
}

.woocommerce ul.products li.product .button:after {
  position: absolute;
  margin: 0;
  color: var(--morgal-white-color);
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.woocommerce ul.products li.product .button.added img {
  display: none;
}

.woocommerce ul.products li.product .button.added {
  background-color: var(--morgal-secondary-color);
  border-radius: 100%;
}

.woocommerce .btn-wrap {
  padding-top: 40px;
  text-align: center;
}

.woocommerce-ordering .select2-container--default .select2-selection--single {
  background-color: transparent;
  border: 0;
}

.woocommerce-ordering .select2-dropdown {
  padding: 20px !important;
  width: max-content !important;
  border: 0 !important;
  border-radius: 10px !important;
  top: 14px;
}

.woocommerce-ordering .select2-results__option {
  padding: 4px 0 !important;
}

.woocommerce-ordering .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.woocommerce-ordering .select2-container--default .select2-results__option--selected {
  background-color: transparent !important;
  color: var(--morgal-secondary-color) !important;
  line-height: 1.4 !important;
}

.woocommerce-ordering .select2-container--default .select2-results__option--selected {
  font-weight: 700 !important;
}

.woocommerce-ordering .select2-container {
  width: auto !important;
}

.woocommerce-ordering .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-left: 30px !important;
  padding-right: 0px !important;
  font-weight: 700 !important;
}

/* product-listing-section__end */
.select2:focus-visible {
  outline: 0;
}

.latest-products ul li {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 10px 0;
}

.latest-products ul li+li {
  border-top: 1px solid #f0f0f0;
}

.latest-products ul li .content-box {
  width: 100%;
}

.latest-products ul li:last-child {
  padding-bottom: 0;
}

.latest-products ul li .content-box a {
  font-size: 14px;
  line-height: 1.2;
  display: inline-block;
  color: var(--morgal-font-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.latest-products ul li .content-box a:hover {
  color: var(--morgal-primary-color);
}

.latest-products ul li .img-box {
  width: 55px;
  border-radius: 5px;
  flex-shrink: 0;
}

.latest-products ul li .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-products ul li .content-box span {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  padding-top: 6px;
  color: var(--morgal-primary-color);
  direction: ltr;
}

.latest-products ul li .content-box span del {
  color: var(--morgal-font-color);
}

.latest-products ul li .content-box span strong {
  color: #f11b23;
  padding-left: 10px;
}

.filter-btn-wrap {
  position: fixed;
  width: 100%;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.7);
  bottom: 0;
  text-align: center;
}

.filter-btn {
  padding: 11px 25px;
  color: var(--morgal-white-color);
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--morgal-secondary-color);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 auto;
  position: relative;
}

.filter-btn span {
  position: relative;
}

.shop-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.shop-left {
  width: 276px;
  padding: 0 15px;
}

.sidebar-close {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.shop-right {
  flex: 1;
  padding: 0 15px;
}

.shop-row .shop-left.open {
  right: 0;
}

.sidebar-open {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 0px;
  left: 0;
}

.sidebar-toggle .sidebar-open {
  opacity: 1;
  visibility: visible;
}

.sidebar-toggle .sidebar-close {
  visibility: hidden;
  opacity: 0;
}

.custom-arrow-icon {
  cursor: pointer;
  position: absolute;
  right: -15px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.open-submenu-sidebar {
  transform: rotate(90deg);
}

.footer-wrap {
  padding: 60px 0;
  background-color: #2b2f42;
  color: var(--morgal-white-color);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  row-gap: 30px;
}

.footer-wrap .footer-left {
  width: 65.83%;
  padding: 0 15px;
}

.footer-wrap .footer-right {
  width: 34.17%;
  padding: 0 15px;
}

.footer-left-col {
  gap: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.footer-left-col a,
.footer-right a {
  color: var(--morgal-white-color);
  line-height: 1.2;
  font-size: 16px;
}

.footer-menu ul {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-menu-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-menu .h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.37;
  margin-bottom: 10px;
  align-items: center;
  display: flex;
  gap: 10px;
}

.footer-menu .h6 span {
  display: block;
  margin-top: 5px;
}

.footer-menu ul li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-left-col .footer-call {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  display: inline-block;
}

.footer-address li {
  line-height: 1.8;
}

.footer-location {
  font-size: 20px;
  line-height: 1.8;
  max-width: 256px;
}

.has-icon {
  border-bottom: 1px solid var(--morgal-white-color);
  display: block;
}

.footer-map iframe {
  border-radius: 10px;
  margin-top: 15px;
}

.footer-bottom {
  padding-top: 60px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}

.footer-bottom-left .footer-logo-copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.footer-bottom-left .footer-logo-copyright .footer-logo {
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.footer-logo a {
  display: block;
}

.notice-img {
  text-align: left;
}

/* Form CSS  */
.wpcf7,
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"] {
  direction: rtl !important;
}

.contact-form-wrap .row {
  row-gap: 0 !important;
}

.contact-form-wrap,
.contact-form-inner {
  padding: 30px 20px;
  background-color: var(--morgal-white-color);
  border-radius: 20px;
  box-shadow: 20px 20px 60px -8px #00000012;
}

.contact-form-wrap h2,
.contact-form-inner h2 {
  padding-bottom: 30px;
  color: var(--morgal-font-color);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.contact-form-wrap .form-control,
.contact-form-inner .form-control {
  background-color: #f0f0f0;
  border-radius: 22px;
  height: 44px;
  border-color: #f0f0f0;
  font-size: 14px;
  color: var(--morgal-font-color);
  line-height: 1.2;
  padding: 13px 30px;
}

.contact-form-wrap .form-control::placeholder,
.contact-form-inner .form-control::placeholder {
  color: var(--morgal-font-color);
}

.contact-form-wrap .form-control:focus,
.contact-form-inner .form-control:focus {
  box-shadow: none !important;
  border-color: #f0f0f0;
}

.contact-form-wrap p,
.contact-form-inner p {
  margin-bottom: 20px;
}

.contact-form-wrap textarea,
.contact-form-inner textarea {
  min-height: 154px;
}

input[type="file"] {
  margin-left: -2px !important;
}

input[type="file"]::-webkit-file-upload-button {
  display: none;
}

input[type="file"]::file-selector-button {
  display: none;
}

.custom-upload,
.custom-upload p {
  display: flex;
  align-items: center;
  width: 100%;
}

.custom-upload p br {
  display: none;
}

.custom-upload p label {
  cursor: pointer;
  display: block;
  padding: 3px 7px;
  background: #edeced;
  border: 1px solid #6b6b6b;
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.2;
  flex-shrink: 0;
  color: #2b2b2b;
}

.custom-upload .form-control {
  background: var(--morgal-white-color);
  border-radius: 0;
  border: 0;
  opacity: 0;
  visibility: hidden;
  width: 0px;
  height: 0px;
  padding: 0;
}

.custom-upload input {
  display: flex;
  align-items: center;
}

.file-upload-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.file-upload-wrap>p>span {
  font-size: 14px;
  line-height: 1.2;
  text-wrap: nowrap;
}

.contact-form-wrap .file-upload-wrap .form-control {
  padding-right: 5px;
}

.contact-form-inner .wpcf7-form-control-wrap.recaptcha {
  display: inline-block;
  margin-bottom: 20px;
}

.btn-submit {
  background: var(--morgal-primary-color);
  padding: 14px 50px;
  border-radius: 30px !important;
  font-size: 14px;
  line-height: 1.2;
  color: var(--morgal-white-color);
  font-weight: 700;
  border: 1px solid var(--morgal-primary-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-submit:hover,
.btn-submit:focus {
  background-color: transparent;
  color: var(--morgal-primary-color);
}

.btn-submit-wrap {
  position: relative;
}

.btn-submit-wrap .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
}

.btn-submit-wrap p {
  margin-bottom: 0;
}

.submitting .btn-submit {
  opacity: 0.5;
  pointer-events: none;
}

/* Form CSS  */

/* bid-request-section__start */
.bid-request-wrap {
  padding: 70px 0;
}

.bid-request-wrap .row {
  align-items: center;
  row-gap: 30px;
}

.bid-request-container {
  position: relative;
}

.bid-request-content {
  padding-top: 30px;
}

.bid-request-content .h2 {
  font-weight: 400;
  color: var(--morgal-black-color);
}

.bid-request-content .h2 span {
  font-weight: 700;
  color: var(--morgal-primary-color);
}

.bid-request-content .text-wrap:first-of-type {
  padding-top: 27px;
}

.bid-request-content .text-wrap {
  padding-bottom: 16px;
}

.bid-request-content .text-wrap strong br {
  display: none;
}

.bid-request-content .text-wrap:last-of-type {
  padding: 0;
}

.bid-request-content .text-wrap p {
  margin: 0;
}

/* bid-request-section__end */

/* Contact Page CSS  */

.contact-page-wrap {
  padding-top: 70px;
}

.contact-form-page {
  padding: 70px 15px 120px;
  background-color: #f0f0f0;
  border-radius: 20px 20px 0 0;
}

.contact-wrap-box {
  max-width: 750px;
  margin: 0 auto;
}

.contact-wrap-box .section-info .sub-title {
  font-size: 24px;
  line-height: 1.3;
}

.section-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin: 0 -15px;
  padding-bottom: 27px;
}

.section-info .imb-box {
  text-align: right;
}

.section-info .h2 {
  color: var(--morgal-primary-color);
}

.section-info .sub-title {
  color: var(--morgal-black-color);
  font-weight: 400;
  padding-top: 10px;
}

.section-info-left {
  width: 70%;
  padding: 0 15px;
}

.section-info-right {
  width: 30%;
  padding: 0 15px;
}

.contact-page-content p {
  margin: 0;
}

.contact-page-content p+p {
  margin-top: 15px;
}

.contact-page-inner-wrap {
  padding-top: 40px;
}

.contact-page-footer-wrap {
  padding-top: 40px;
}

.contact-page-footer {
  padding: 30px 20px;
  border-radius: 20px;
  background-color: var(--morgal-white-color);
  box-shadow: 20px 20px 60px -8px #00000012;
}

.contact-footer-row a {
  color: var(--morgal-primary-color);
}

.contact-footer-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  row-gap: 30px;
  color: var(--morgal-primary-color);
}

.contact-footer-col-1 {
  width: 25.5%;
  padding: 0 15px;
}

.contact-footer-col-2 {
  width: 37.25%;
  padding: 0 15px;
  word-wrap: break-word;
}

.contact-footer-row .h3 {
  color: var(--morgal-primary-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.contact-footer-row .contact-whatsapp a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-footer-row .contact-whatsapp span img {
  margin-top: 2px;
}

.contact-footer-row span {
  display: block;
}

.contact-footer-row .contact-whatsapp a .has-icon {
  border-bottom: 1px solid var(--morgal-primary-color);
}

.contact-footer-num {
  color: var(--morgal-primary-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}

.contact-footer-address {
  line-height: 1.8;
  font-size: 16px;
  line-height: 1.875;
  color: var(--morgal-primary-color);
}

.contact-footer-address-2 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 10px;
  color: var(--morgal-primary-color);
}

.navigate-footer a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.875;
}

.navigate-footer .has-icon {
  border-bottom: 1px solid var(--morgal-primary-color);
}

.contact-footer-map-location iframe {
  width: 100%;
  max-height: 181px;
  border-radius: 10px;
}

.contact-footer-address-2 .navigate-footer a {
  text-decoration: underline;
}

.contact-footer-col-2 .navigate-footer a {
  text-decoration: underline;
}

/* Contact Page CSS  */

/* Category Page CSS  */

.custom-category-page,
.error-page-wrap {
  padding-top: 70px;
}

.custom-category-page-box,
.error-page-wrap-box {
  background-color: #f0f0f0;
  padding: 70px 15px 120px;
  border-radius: 20px 20px 0 0;
}

.custom-category-page-content strong {
  padding-top: 20px;
  display: block;
}

.custom-category-box-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 750px;
  margin: 0 auto;
}

.custom-category-box-item-content {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
}

.custom-category-box-item-content p strong {
  font-size: 16px;
  line-height: 1.12;
  color: var(--morgal-black-color);
}

.custom-category-box-item-content>p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--morgal-black-color);
}

.custom-category-box-item-content p {
  margin-bottom: 0;
}

.custom-category-box-item-content p+p {
  margin-top: 10px;
}

.error-page-white-box {
  max-width: 946px;
  margin: 0 auto;
  box-shadow: 20px 20px 60px -8px #00000012;
  background: var(--morgal-white-color);
  padding: 40px 0;
  border-radius: 20px;
}

.error-top-box {
  display: flex;
  flex-wrap: wrap;
  padding: 0 30px;
  gap: 30px;
  justify-content: space-between;
}

.error-top-box-left {
  max-width: 570px;
  padding-right: 50px;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
}

.error-top-box-right .img-box {
  padding-left: 50px;
}

.error-sub-title,
.error-title .h1 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--morgal-black-color);
}

.error-title {
  padding-top: 20px;
}

.error-title .h1 strong {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--morgal-primary-color);
}

.sale-product-tagline p {
  color: var(--morgal-font-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

.sale-product-tagline {
  margin-top: auto;
}

.error-page-wrap-box .product-listing-wrap {
  padding: 30px 0;
}

.error-page-wrap-box .product-listing-wrap .woocommerce ul.products {
  flex-wrap: nowrap;
  row-gap: 0;
  margin: 0 16px;
  padding: 20px 5px;
  background-color: #f0f0f0;
  border-radius: 20px;
}

.error-page-wrap-box .product-listing-wrap .woocommerce ul.products li {
  float: none;
  clear: both;
  width: 33.33%;
  padding: 0 15px;
  margin: 0;
}

.error-page-wrap-box .featured-product-card .product-info .product-stock {
  color: #45a834;
}

.error-page-wrap-box del {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: #808080;
}

.error-page-wrap-box .product-price {
  line-height: 1.2;
  color: #f11b23 !important;
}

.error-btn-wrap {
  padding: 0 15px;
}

.error-btn-wrap .btn-submit {
  padding: 13px 60px;
}

@media (max-width: 999px) {

  .error-top-box-left,
  .error-top-box-right {
    align-items: center;
  }
}

@media (max-width: 767px) {
  .sale-product-tagline p {
    margin-bottom: 0;
    font-size: 16px;
  }

  .error-top-box-content {
    margin-bottom: 40px;
  }
}

.footer-title {
  pointer-events: none;
}

/* Category Page CSS  */
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  /* padding: 1em 1em 1em 2em; */
  padding: 1em;
  display: flex;
  align-items: center;
  column-gap: 10px;
  flex-wrap: wrap;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
  left: -1em;
}

html[dir="rtl"] .woocommerce-error,
html[dir="rtl"] .woocommerce-info,
html[dir="rtl"] .woocommerce-message {
  /* padding-right: 2em; */
  padding-right: 1em;
  padding-left: 1em;
}

html[dir="rtl"] .woocommerce-error:before,
html[dir="rtl"] .woocommerce-info:before,
html[dir="rtl"] .woocommerce-message:before {
  left: 1em;
  display: none;
}

.woocommerce-error .button,
.woocommerce-info .button,
.woocommerce-message .button {
  border-radius: 30px;
  background-color: var(--morgal-primary-color);
  padding: 13px 50px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.285;
  color: var(--morgal-white-color);
}

.woocommerce-error .button:hover,
.woocommerce-info .button:hover,
.woocommerce-message .button:hover {
  background: var(--morgal-primary-color);
  color: var(--morgal-white-color);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

html[dir="rtl"] .woocommerce .woocommerce-error .button,
html[dir="rtl"] .woocommerce .woocommerce-info .button,
html[dir="rtl"] .woocommerce .woocommerce-message .button,
html[dir="rtl"] .woocommerce-page .woocommerce-error .button,
html[dir="rtl"] .woocommerce-page .woocommerce-info .button,
html[dir="rtl"] .woocommerce-page .woocommerce-message .button {
  float: none;
  padding: 8px 20px;
}

.woocommerce-error li,
.woocommerce-info li,
.woocommerce-message li {
  width: 100%;
}

/* Catalog Page Css Start */
.catalog-wrapper {
  padding: 70px 30px 120px;
  background-color: rgba(240, 240, 240, 1);
  margin-top: 70px;
  border-radius: 20px 20px 0 0;
}

.catalog-wrapper .section-title {
  margin-bottom: 30px;
}

.catalog-wrapper .section-title h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.91;
  color: var(--morgal-font-color);
}

.catalog-wrapper .section-title h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.91;
  color: var(--morgal-font-color);
}

.catalog-wrapper .white-box {
  background-color: var(--morgal-white-color);
  border-radius: 20px;
  padding: 60px 60px 80px;
  box-shadow: 20px 20px 60px -8px rgba(0, 0, 0, 0.07);
}

.catalog-wrapper .thumbnail {
  position: relative;
}

.catalog-wrapper .overlay {
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.catalog-wrapper .overlay a {
  display: flex;
  align-items: flex-end;
}

.catalog-wrapper .overlay a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.catalog-wrapper .overlay span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--morgal-white-color);
  display: inline-flex;
  width: 117px;
  position: relative;
  padding-right: inherit;
  padding-left: 17px;
}

.catalog-wrapper .overlay span:after {
  content: "";
  position: absolute;
  right: inherit;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: var(--morgal-white-color);
}

.catalog-wrapper .thumbnail.overlay-visible .overlay,
.catalog-wrapper .thumbnail:hover .overlay {
  opacity: 1;
  visibility: visible;
}

html[dir="rtl"] .catalog-wrapper .overlay span {
  padding-right: 17px;
  padding-left: inherit;
}

html[dir="rtl"] .catalog-wrapper .overlay span:after {
  right: 0;
  left: inherit;
}

.catalog-wrapper .thumb {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 16px 32px -8px rgba(0, 0, 0, 0.25);
}

.catalog-wrapper .thumb img {
  border-radius: 20px;
}

.catalog-wrapper .thumb a {
  display: block;
}

.catalog-wrapper .items {
  margin-top: 30px;
  position: relative;
}

.catalog_description {
  padding-top: 60px;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .catalog-wrapper {
    padding: 40px 15px;
    margin-top: 40px;
  }

  .catalog-wrapper .white-box {
    padding: 40px 15px;
  }

  .catalog-wrapper .section-title {
    margin-bottom: 0px;
  }

  .catalog-wrapper .section-title h2 {
    font-size: 18px;
    line-height: 2;
  }

  .catalog-wrapper .section-title h3 {
    font-size: 18px;
    line-height: 2;
  }

  .catalog_description {
    padding-top: 30px;
  }

  .custom-catalog-box-item a {
    width: 100%;
    text-align: center;
  }
}

/* Catalog Page Css End */
/* 16102024 Cart Page css start */
.back-to-store {
  padding: 35px 5px 15px;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.28;
  color: rgba(153, 156, 173, 1);
}

.back-to-store a {
  display: inline-block;
  color: rgba(153, 156, 173, 1);
  text-decoration: underline;
}

.woocommerce-cart .entry-header {
  display: none;
}

.cart-container {
  background-color: rgba(240, 240, 240, 1);
  border-radius: 20px 20px 0 0;
}

.coupon-code-container {
  padding: 40px 30px 20px;
}

.cart-container .coupon-code-container h2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 20.93px;
  color: var(--morgal-font-color);
  margin-bottom: 20px;
}

.cart-container .coupon-code-container .coupon {
  background-color: var(--morgal-white-color);
  max-width: 373px;
  width: 100%;
  border: 1px solid var(--morgal-primary-color);
  border-radius: 50px;
  display: flex;
  padding-left: 20px;
}

html[dir="rtl"] .cart-container .coupon-code-container .coupon {
  padding-right: 20px;
  padding-left: 0;
}

.cart-container .coupon-code-container .coupon .input-text {
  flex: 1;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.31;
  color: var(--morgal-black-color);
  background-color: transparent;
}

.cart-container .coupon-code-container .coupon .input-text::placeholder {
  color: var(--morgal-font-color);
}

.cart-container .coupon-code-container .coupon .button {
  padding: 12px 30px;
  background-color: var(--morgal-primary-color);
  color: var(--morgal-white-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.31;
  border-radius: 50px;
}

.cart-wrapper {
  padding: 0 30px 35px;
}

.cart-wrapper .items {
  margin-top: 30px;
}

.shop_table.cart .cart-body {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.shop_table.cart .cart_item {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--morgal-white-color);
  border-radius: 20px;
  padding: 20px 30px;
  align-items: center;
  gap: 15px;
}

.shop_table.cart .product-price {
  display: none;
}

.shop_table.cart .qty-total {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  max-width: 242px;
  width: 100%;
  margin-left: auto;
  align-items: center;
}

html[dir="rtl"] .shop_table.cart .qty-total {
  margin-right: auto;
  margin-left: inherit;
}

.shop_table.cart .product-thumbnail {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.shop_table.cart .product-thumbnail .thumb {
  width: 120px;
  height: 120px;
}

.shop_table.cart .product-thumbnail .thumb img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.shop_table.cart .product-thumbnail .thumb a {
  display: block;
}

.shop_table.cart .product-name {
  flex: 1;
}

.shop_table.cart .product-name .name {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--morgal-primary-color);
  margin-bottom: 6px;
  width: 140px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* Number of lines to show */
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop_table.cart .product-name .name a {
  color: var(--morgal-primary-color);
}

.shop_table.cart .product-sku {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.28;
  color: var(--morgal-black-color);
}

.shop_table.cart .product-remove {
  padding-right: 15px;
  padding-left: 0;
}

html[dir="rtl"] .shop_table.cart .product-remove {
  padding-left: 15px;
  padding-right: 0;
}

.shop_table.cart .product-remove a.remove {
  display: block;
  width: auto;
  height: auto;
  font-size: inherit;
  line-height: 1;
}

.shop_table.cart .product-remove a.remove:hover {
  background-color: transparent;
}

.shop_table.cart .product-remove i {
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: rgba(252, 50, 62, 1);
  color: var(--morgal-white-color);
  margin-bottom: 5px;
}

.shop_table.cart .product-remove strong {
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  color: rgba(241, 27, 35, 1);
}

.shop_table.cart .product-subtotal {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--morgal-primary-color);
}

.shop_table.cart .product-quantity .quantity {
  background-color: rgba(226, 226, 226, 1);
  border: 0;
  height: 34px;
  padding: 5px 12px;
  border-radius: 50px;
}

.shop_table.cart .product-quantity .input-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.28;
  color: rgba(43, 47, 66, 1);
  background-color: transparent;
  border: 0;
  width: 40px;
}

.shop_table.cart .product-quantity .input-text::-webkit-outer-spin-button,
.shop_table.cart .product-quantity .input-text::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.shop_table.cart .product-quantity .input-text[type="number"] {
  -moz-appearance: textfield;
}

.shop_table.cart .actions .update-cart-btn {
  padding: 9px 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--morgal-white-color);
  background-color: var(--morgal-primary-color);
  border-radius: 50px;
  margin-bottom: 0;
  height: 40px;
  border: 0;
}

.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
  height: 100%;
}

.woocommerce .cart-collaterals:before,
.woocommerce-page .cart-collaterals:before,
.woocommerce .cart-collaterals:after,
.woocommerce-page .cart-collaterals:after {
  display: none;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  position: sticky;
  top: 50px;
  width: 100%;
  background-color: var(--morgal-white-color);
  float: inherit;
  border-radius: 20px;
  padding: 30px;
}

.woocommerce .cart-collaterals .cart_totals h2 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.28;
  color: var(--morgal-black-color);
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(199, 199, 199, 1);
}

html[dir="rtl"] .woocommerce .cart-collaterals .cart_totals h2 {
  text-align: right;
}

.woocommerce .cart-collaterals .cart_totals table {
  border: 0;
  margin: 0;
  border-radius: 0px;
}

.woocommerce .cart-collaterals .cart_totals table tr td,
.woocommerce .cart-collaterals .cart_totals table tr th {
  border: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.31px;
  color: var(--morgal-black-color);
  padding: 15px 0px;
  width: 50%;
}

.woocommerce .cart-collaterals .cart_totals table tr th {
  text-align: left;
}

html[dir="rtl"] .woocommerce .cart-collaterals .cart_totals table tr th {
  text-align: right;
}

.woocommerce .cart-collaterals .cart_totals table tr td {
  text-align: right;
}

html[dir="rtl"] .woocommerce .cart-collaterals .cart_totals table tr td {
  text-align: left;
}

.woocommerce .cart-collaterals .wc-proceed-to-checkout {
  padding: 0;
}

.woocommerce .cart-collaterals .wc-proceed-to-checkout a {
  padding: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--morgal-white-color);
  background-color: var(--morgal-primary-color);
  border-radius: 50px;
  margin-bottom: 0;
}

.woocommerce .cart-collaterals .wc-proceed-to-checkout a:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: var(--morgal-primary-color);
}

.woocommerce .cart-collaterals .cart_totals table tr.order-total td,
.woocommerce .cart-collaterals .cart_totals table tr.order-total th {
  border-top: 1px solid rgba(199, 199, 199, 1);
  font-weight: 700;
}

.woocommerce .cart-collaterals .cart_totals table tr.woocommerce-shipping-totals {
  display: none;
}

@media (min-width: 992px) and (max-width: 1100px) {
  .cart-wrapper .col-lg-9 {
    width: 70%;
  }

  .cart-wrapper .col-lg-3 {
    width: 30%;
  }

  .shop_table.cart .product-name .name {
    width: 80px;
  }
}

@media (max-width: 991px) {
  .cart-wrapper {
    padding: 0 30px 85px;
  }
}

@media only screen and (max-width: 768px) {
  .woocommerce .cart-collaterals .cart_totals table tr {
    display: table-row;
  }

  .woocommerce .cart-collaterals .cart_totals table tr td::before {
    display: none;
  }

  .woocommerce .cart-collaterals .cart_totals table tbody th {
    display: table-cell;
  }

  .woocommerce .cart-collaterals .cart_totals table tr td {
    display: table-cell;
    text-align: left !important;
  }
}

@media (max-width: 767px) {
  .coupon-code-container {
    padding: 20px 15px;
  }

  .cart-wrapper {
    padding: 0 15px 85px;
  }

  .shop_table.cart .product-remove {
    width: 100%;
    background-color: rgba(247, 247, 247, 1);
    order: 1;
    padding: 15px;
    position: relative;
    border-radius: 0 0 20px 20px;
  }

  .shop_table.cart .product-remove a.remove {
    width: 30px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .shop_table.cart .product-thumbnail {
    padding: 15px 15px 0;
    width: 100%;
  }

  .shop_table.cart .cart_item {
    padding: 0;
    gap: 0;
  }

  .shop_table.cart .qty-total {
    margin-left: inherit;
    padding: 15px;
    justify-content: flex-end;
    max-width: 100%;
  }

  .shop_table.cart .product-thumbnail .thumb {
    width: 80px;
    height: 80px;
  }

  .shop_table.cart .product-thumbnail .thumb img {
    width: 80px;
    height: 80px;
  }

  .shop_table.cart .product-subtotal {
    min-width: 110px;
    text-align: left;
  }

  .cart-container .coupon-code-container .coupon .button {
    padding: 12px;
    width: 150px;
  }

  .woocommerce .cart-collaterals .cart_totals,
  .woocommerce-page .cart-collaterals .cart_totals {
    padding: 15px;
  }

  .cart-single-product-related .section-title-action {
    padding: 0;
  }

  .cart-wrapper .items {
    margin-top: 15px;
  }
}

/* 16102024 Cart Page css end */
/* 16102024 Checkout Page Css Start */
.woocommerce-checkout .entry-header {
  display: none;
}

.checkout-container {
  background-color: rgba(240, 240, 240, 1);
  border-radius: 20px 20px 0 0;
  padding: 20px 15px 135px;
}

.checkout-container .username-back {
  padding: 20px 15px;
}

.checkout-container .username-back .back a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.checkout-container .username-back .user {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.checkout-container .username-back .user strong {
  font-weight: 700;
}

.checkout-container .username-back .back .icon {
  width: auto;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-container .username-back .back .icon svg {
  width: auto;
  height: 10px;
  vertical-align: top;
}

.checkout-wrapper {
  padding: 30px 15px 0px;
}

.checkout-wrapper .customer-details {
  display: flex;
  flex-direction: column;
}

.checkout-wrapper .customer-details .items {
  background-color: var(--morgal-white-color);
  border-radius: 20px;
  padding: 30px 20px;
  margin-top: 30px;
}

.checkout-wrapper .customer-details .items:first-child {
  margin-top: 0;
}

.checkout-wrapper .customer-details .items h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
  color: var(--morgal-font-color);
  margin-bottom: 10px;
}

.checkout-wrapper .customer-details .items #ship-to-different-address label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 0;
}

.checkout-wrapper .customer-details .items #ship-to-different-address label span {
  line-height: 1;
}

.checkout-wrapper .customer-details .items label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.28;
  color: var(--morgal-font-color);
  margin-bottom: 5px;
}

.checkout-wrapper .customer-details .input-text {
    background-color: rgba(240, 240, 240, 1) !important;
    padding: 13px 30px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.28 !important;
    color: var(--morgal-black-color) !important;
    height: 44px !important;
    border-radius: 50px !important;
    border: 0 !important;
}

.checkout-wrapper .customer-details textarea.input-text {
  height: 100px;
  border-radius: 20px;
}

.checkout-wrapper .woocommerce-billing-fields__field-wrapper,
.checkout-wrapper .woocommerce-shipping-fields__field-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.checkout-wrapper .customer-details .input-text::placeholder {
  color: var(--morgal-font-color);
}

.checkout-wrapper .customer-details .form-row {
  padding: 0;
  margin: 20px 0 0;
  float: none;
  width: calc(50% - 15px);
}

#oepl_place_order .form-row {
    width: 100%;
}

#oepl_place_order {
    text-align: center;
    width: 100%;
}

.checkout-wrapper .customer-details #billing_company_field.form-row {
  width: 100%;
}

.checkout-wrapper .customer-details .form-row.form-row-last {
  text-align: left;
}

.checkout-wrapper .customer-details .form-row.form-row-last label {
  text-align: right;
}

.checkout-wrapper .customer-details .form-row:before,
.checkout-wrapper .customer-details .form-row:after {
  display: none;
}

.checkout-wrapper .select2-container--default .select2-selection--single {
  border-radius: 0;
  border: 0;
}

.checkout-wrapper .select2-container .select2-selection--single {
  height: auto;
}

.checkout-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
  background-color: rgba(240, 240, 240, 1);
  padding: 13px 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.28;
  color: var(--morgal-black-color);
  height: 44px;
  border-radius: 50px;
  border: 0;
  height: auto;
  text-align: left;
}

html[dir="rtl"] .checkout-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
  text-align: right;
}

.checkout-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  left: inherit;
  right: 10px;
}

html[dir="rtl"] .checkout-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
  left: 10px;
  right: inherit;
}

.checkout-wrapper .screen-reader-text {
  position: relative !important;
  width: 100%;
  height: 17px;
  margin-bottom: 5px;
}

.checkout-wrapper .customer-details .form-row#order_comments_field {
  width: 100%;
}

.shop_table.woocommerce-checkout-review-order-table {
  border: 0;
}

.woocommerce-checkout table.shop_table {
  margin-bottom: 0;
  border: 0;
}

.shop_table.woocommerce-checkout-review-order-table tr th,
.shop_table.woocommerce-checkout-review-order-table tr td {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.285;
  color: var(--morgal-black-color);
}

.shop_table.woocommerce-checkout-review-order-table tr th {
  font-weight: 700;
}

.woocommerce-checkout table.shop_table .product-name {
  text-align: right;
  padding-right: 0;
}

.woocommerce-checkout table.shop_table .product-total {
  text-align: left;
  padding-left: 0;
}

.woocommerce table.shop_table tfoot td {
  text-align: left;
  padding-left: 0;
}

.woocommerce table.shop_table tfoot th {
  text-align: right;
  padding-right: 0;
}

.checkout-wrapper .review-order-table {
  background-color: var(--morgal-white-color);
  padding: 30px;
  border-radius: 20px;
  position: sticky;
  top: 40px;
}

.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon {
  background-color: var(--morgal-white-color);
  border: 0;
  margin: 0;
}

.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon h2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 20.93px;
  color: var(--morgal-font-color);
  margin-bottom: 20px;
  text-align: right;
}

.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon .coupon {
  background-color: var(--morgal-white-color);
  max-width: 373px;
  width: 100%;
  border: 1px solid var(--morgal-primary-color);
  border-radius: 50px;
  display: flex;
  padding-left: 20px;
}

html[dir="rtl"] .woocommerce-checkout .checkout_coupon.woocommerce-form-coupon .coupon {
  padding-right: 20px;
  padding-left: 0;
}

.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon .coupon .input-text {
  flex: 1;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.31;
  color: var(--morgal-black-color);
  background-color: transparent;
}

.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon .coupon .input-text::placeholder {
  color: var(--morgal-font-color);
}

.woocommerce-checkout .checkout_coupon.woocommerce-form-coupon .coupon .button {
  padding: 12px 30px;
  background-color: var(--morgal-primary-color);
  color: var(--morgal-white-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.31;
  border-radius: 50px;
}

.woocommerce-checkout #place_order {
  padding: 8px 15px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--morgal-white-color);
  background-color: var(--morgal-primary-color);
  border-radius: 50px;
  margin-bottom: 0;
    margin-top: 10px;
}

.woocommerce.woocommerce-checkout #payment #place_order,
.woocommerce-checkout.woocommerce-page #payment #place_order {
  float: none;
}

@media (min-width: 991px) and (max-width: 1100px) {
  .checkout-wrapper .col-lg-9 {
    width: 65%;
  }

  .checkout-wrapper .col-lg-3 {
    width: 35%;
  }
}

@media (max-width: 991px) {
  .checkout-wrapper .review-order-table {
    margin-top: 30px;
  }

  .checkout-container {
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .checkout-container {
    padding-bottom: 80px;
  }

  .checkout-wrapper {
    padding: 15px 0;
  }

  .checkout-wrapper .customer-details .items {
    padding: 15px;
    margin-top: 30px;
  }

  .checkout-wrapper .review-order-table {
    padding: 15px;
    margin-top: 15px;
  }

  .checkout-wrapper .customer-details .form-row {
    width: 100%;
    margin-top: 15px;
  }

  .checkout-wrapper .screen-reader-text {
    height: 1px;
  }
}

.woocommerce-error {
  background-color: rgba(184, 28, 35, 0.07);
}

.woocommerce-info {
  background-color: rgba(30, 133, 190, 0.07);
}

.woocommerce-message {
  background-color: rgba(143, 174, 27, 0.07);
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
  position: relative;
  display: inline-block;
  top: inherit;
}

/* 10102024 Checkout Page Css End */
/* 17102024 CMS Content Page Css Start */
.cms_content {
  padding: 60px 0px;
  color: var(--morgal-font-color);
}

.cms_content h1 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.29;
}

.cms_content h2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.33;
}

.cms_content h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.33;
}

.cms_content h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.33;
}

.cms_content h5 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.31;
}

.cms_content h6 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.28;
}

.cms_content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 15px;
}

.cms_content ol {
  list-style: decimal;
  margin-left: 1.2em;
  font-size: 16px;
  font-weight: 700;
}

.cms_content li {
  line-height: 1.7;
  margin-bottom: 15px;
}

html[dir="rtl"] .cms_content ol {
  margin-right: 1.2em;
}

.cms_content ul {
  list-style: disc;
  margin-left: 1.2em;
}

html[dir="rtl"] .cms_content ul {
  margin-right: 1.2em;
}

.cms_content a {
  color: var(--morgal-primary-color);
}

.cms_content .entry-header {
  margin-bottom: 60px;
}

.cms_content .entry-header .entry-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.29;
  color: var(--morgal-primary-color);
  text-align: center;
}

@media (max-width: 767px) {
  .cms_content {
    padding: 30px 0;
  }

  .cms_content .entry-header {
    margin-bottom: 30px;
  }
}

/* 17102024 CMS Content Page Css End */
/* 21102024 Related Product Css Start */
.woocommerce-cart .entry-content .cart-single-product-related {
  padding-bottom: 128px;
  padding-top: 0;
}

.cart-single-product-related {
  position: relative;
  background-color: rgba(240, 240, 240, 1);
  border-radius: 0;
  padding-left: 15px;
  padding-right: 15px;
}

.cart-single-product-related h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.29;
  color: var(--morgal-primary-color);
  margin: 0;
}

.cart-single-product-related .shop-right {
  width: 100%;
  padding: 0;
}

.cart-single-product-related .woocommerce ul.products:before,
.cart-single-product-related .woocommerce ul.products:after {
  display: none;
}

.cart-single-product-related .woocommerce ul.products {
  margin: inherit;
  flex-wrap: inherit;
  row-gap: inherit;
  clear: inherit;
  padding: 0;
  margin: 0;
  list-style: inherit;
}

.cart-single-product-related .woocommerce ul.products li.product {
  margin-left: 0px;
  margin-right: 0;
  margin-bottom: 0;
  float: none;
  padding: 0 15px;
  height: auto;
}

.cart-single-product-related .section-title-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 15px;
  gap: 15px;
  flex-wrap: wrap;
}

.cart-single-product-related .section-title-action .action {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  width: 111px;
  height: 48px;
}

.cart-single-product-related .swiper-button-next,
.cart-single-product-related .swiper-button-prev {
  border-radius: 10px;
  background-color: rgba(12, 30, 128, 0.65);
  width: 48px;
  height: 48px;
  position: absolute;
}

.cart-single-product-related .swiper-button-next {
  left: inherit;
  right: 0;
}

.cart-single-product-related .swiper-button-prev {
  left: 0;
  right: inherit;
}

.cart-single-product-related .swiper-button-next:after,
.cart-single-product-related .swiper-button-prev:after {
  font-size: 19px;
  color: var(--morgal-white-color);
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .cart-single-product-related {
    padding-bottom: 85px;
  }

  .cart-single-product-related .section-title-action {
    margin-bottom: 30px;
    padding: 0;
  }

  .woocommerce-cart .entry-content .cart-single-product-related {
    padding-bottom: 85px;
  }
}

/* 21102024 Related Product Css End */
/* 21102024 My Account Page Css Start */
.woocommerce-account .my-account-container {
  padding: 0;
}

.woocommerce-account .entry-header {
  display: none;
}

.my-account-container .myaccount-back {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(153, 156, 173, 1);
  padding: 5px 15px 15px;
  text-align: left;
}

.my-account-container .myaccount-back a {
  text-decoration: underline;
  color: rgba(153, 156, 173, 1);
}

.my-account-container .head {
  padding: 20px;
  background-color: var(--morgal-primary-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--morgal-white-color);
  border-radius: 20px 20px 0 0;
}

.woocommerce-account .my-account-Wrapper {
  display: flex;
  flex-wrap: wrap;
  background-color: rgba(240, 240, 240, 1);
  padding: 30px;
}

.woocommerce-account .woocommerce:before,
.woocommerce-account .woocommerce:after {
  display: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 265px;
  float: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation .wrap {
  position: sticky;
  top: 50px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  background-color: var(--morgal-white-color);
  border-radius: 20px;
  padding: 30px;
  position: sticky;
  top: 50px;
  list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  font-size: 16px;
  line-height: 1.3;
  color: var(--morgal-font-color);
  padding: 15px 0px;
  border-top: 1px solid rgba(199, 199, 199, 1);
  margin-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:first-child {
  padding-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
  padding-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  color: var(--morgal-font-color);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  color: var(--morgal-secondary-color);
  font-weight: 700;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a i,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a svg {
  display: flex;
  align-items: center;
  width: 32px;
  height: 32px;
  justify-content: center;
  color: var(--morgal-secondary-color);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:first-child {
  border-top: 0px;
}

.woocommerce-account .woocommerce-MyAccount-content {
  flex: 1;
  float: none;
  width: inherit;
  padding-left: 30px;
  color: var(--morgal-font-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

html[dir="rtl"] .woocommerce-account .woocommerce-MyAccount-content {
  padding-left: 0;
  padding-right: 30px;
}

.woocommerce-account .entry-header {
  padding: 30px 0 0 0;
  margin-bottom: 0;
}

.woocommerce-account .entry-header .entry-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.29;
  color: var(--morgal-primary-color);
  text-align: center;
}

.woocommerce-account fieldset legend {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
  color: var(--morgal-font-color);
  margin-bottom: 10px;
}

.woocommerce-account form .form-row {
  padding: 0;
  margin-bottom: 20px;
}

html[dir="rtl"] .woocommerce-account form .form-row#billing_phone_field .input-text {
  text-align: right;
  direction: rtl;
}

.woocommerce-account h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
  color: var(--morgal-font-color);
  margin-bottom: 10px;
}

.woocommerce-account label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.28;
  color: var(--morgal-font-color);
  margin-bottom: 5px;
}

html[dir="rtl"] .woocommerce-account label {
  text-align: right;
}

.woocommerce-account .input-text {
  /* background-color: rgba(240, 240, 240, 1); */
  background-color: var(--morgal-white-color);
  padding: 13px 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.28;
  color: var(--morgal-black-color);
  height: 44px;
  border-radius: 50px;
  border: 0;
}

.woocommerce-account textarea.input-text {
  height: 100px;
  border-radius: 20px;
}

.woocommerce-account .addresses .title .edit {
  color: var(--morgal-primary-color);
  text-decoration: underline;
}

.woocommerce-account .col2-set {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.woocommerce-account .col2-set::after,
.woocommerce-account .col2-set::before {
  display: none;
}

.woocommerce-account .col2-set .col-1 {
  padding: 0px;
  background-color: var(--morgal-white-color);
  border-radius: 20px;
  overflow: hidden;
}

.woocommerce-account .col2-set .col-2 {
  padding: 0px;
  background-color: var(--morgal-white-color);
  border-radius: 20px;
  overflow: hidden;
}

.woocommerce-account button.button {
  padding: 8px 15px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--morgal-white-color);
  background-color: var(--morgal-primary-color);
  border-radius: 50px;
  margin-bottom: 0;
}

.woocommerce-account button.button:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: var(--morgal-primary-color);
  color: var(--morgal-white-color);
}

@media (max-width: 767px) {
  .woocommerce-account .my-account-Wrapper {
    padding: 15px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 100%;
    margin-bottom: 30px;
  }

  .woocommerce-account form .form-row {
    margin-bottom: 15px;
  }

  .woocommerce-account form .form-row-first,
  .woocommerce-account form .form-row-last {
    width: 100%;
    float: none;
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    padding-left: 0;
  }

  html[dir="rtl"] .woocommerce-account .woocommerce-MyAccount-content {
    padding-right: 0;
  }

  .woocommerce-account .entry-header {
    padding-top: 0;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    margin: 0 !important;
  }
}

/* 21102024 My Account Page Css End */
/* 22102024 Order Detail Page Css Start */
.woocommerce-order-details h2,
.woocommerce-customer-details h2 {
  padding: 10px 20px;
  background-color: var(--morgal-primary-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--morgal-white-color);
  border-radius: 20px 20px 0 0;
}

.woocommerce-order-details table {
  background-color: var(--morgal-white-color);
}

.woocommerce .woocommerce-customer-details address {
  background-color: var(--morgal-white-color);
  border: 0;
  border-radius: 0;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone {
  padding-left: 0;
  margin-bottom: 0;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before {
  display: none;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email {
  padding-left: 0;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before {
  display: none;
}

.woocommerce-order-received .woocommerce-order .woocommerce-order-details {
  display: none;
}

.woocommerce-order-received .woocommerce-order .woocommerce-customer-details {
  display: none;
}

.order-detail-container .woocommerce-notice.woocommerce-notice--success {
  text-align: center;
}

.order-detail-container {
  background-color: rgba(240, 240, 240, 1);
  padding: 70px 15px 120px;
  margin-top: 70px;
}

.order-detail-wrapper {
  background-color: var(--morgal-white-color);
  border-radius: 20px;
  padding: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.order-detail-wrapper .thumb {
  max-width: 504px;
  width: 100%;
}

.order-detail-wrapper .order-details {
  flex: 1;
}

.order-detail-wrapper .order-details ul:before,
.order-detail-wrapper .order-details ul:after {
  display: none;
}

.order-detail-wrapper .order-details ul li {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  float: none;
}

.order-detail-wrapper .order-details ul li.order-message {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.29;
  color: var(--morgal-primary-color);
}

.order-detail-wrapper .order-details ul li label {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.29;
  color: var(--morgal-font-color);
  text-transform: capitalize;
}

.order-detail-wrapper .order-details ul li strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.29;
  color: var(--morgal-font-color);
}

.order-detail-wrapper .order-details ul li.date {
  display: none;
}

.order-detail-wrapper .order-details ul li.email {
  display: none;
}

.order-detail-wrapper .order-details ul li.total {
  display: none;
}

.order-detail-wrapper .order-details ul li.method {
  display: none;
}

.order-detail-wrapper .order-details ul li.sent-email {
  font-size: 16px;
  font-weight: 400;
  line-height: 20.93px;
  color: var(--morgal-font-color);
}

.order-detail-wrapper .order-details .back-home {
  margin-top: 70px;
}

.order-detail-wrapper .order-details .back-home .btn-back-home {
  border-radius: 30px;
  background-color: var(--morgal-primary-color);
  padding: 13px 50px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.285;
  color: var(--morgal-white-color);
}

.order-detail-wrapper .order-details .back-home .btn-back-home:hover {
  background: var(--morgal-primary-color);
  color: var(--morgal-white-color);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

@media (max-width: 1100px) {
  .order-detail-wrapper .thumb {
    max-width: 355px;
  }
}

@media (max-width: 991px) {
  .order-detail-container {
    margin-top: 40px;
    padding: 40px 15px 60px;
  }

  .order-detail-wrapper {
    padding: 20px;
  }

  .order-detail-wrapper .thumb {
    max-width: 355px;
  }
}

@media (max-width: 767px) {
  .order-detail-container {
    margin-top: 40px;
    padding: 40px 15px;
  }

  .order-detail-wrapper {
    padding: 20px;
  }

  .order-detail-wrapper .thumb {
    max-width: 240px;
    margin: 0 auto 20px;
  }

  .order-detail-wrapper .order-details {
    order: 2;
    width: 100%;
    flex: inherit;
    text-align: center;
  }

  .order-detail-wrapper .order-details ul li {
    justify-content: center;
    margin-bottom: 10px;
  }

  .order-detail-wrapper .order-details .back-home {
    margin-top: 0px;
  }

  .order-detail-wrapper .order-details ul li.order-message {
    font-size: 18px;
    line-height: 1.33;
  }

  .order-detail-wrapper .order-details ul li label,
  .order-detail-wrapper .order-details ul li strong {
    font-size: 18px;
    line-height: 1.33;
  }

  .order-detail-wrapper .order-details ul li.sent-email {
    font-size: 14px;
    line-height: 1.285;
  }

  .order-detail-wrapper .order-details ul {
    margin-bottom: 0;
  }
}

/* 22102024 Order Detail Page Css End */
/* 22102024 Import Customer Page Css Start */
.import-customer {
  padding: 70px 0px;
}

.idea-reality {
  display: flex;
  align-items: flex-end;
  margin-bottom: 27px;
}

.idea-reality .thumb {
  width: 273px;
}

.idea-reality .description {
  flex: 1;
}

.idea-reality .description h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.29;
  color: var(--morgal-primary-color);
  margin-bottom: 10px;
}

.idea-reality .description p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--morgal-black-color);
}

.import-customer .content {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--morgal-font-color);
  margin-bottom: 30px;
}

.import-customer .content h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--morgal-font-color);
}

.import-customer .content strong {
  font-weight: 700;
}

.import-customer .advertisement {
  display: flex;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.25);
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  border-radius: 10px;
}

.import-customer .advertisement .thumb {
  width: 220px;
  text-align: center;
}

.import-customer .advertisement .description {
  flex: 1;
  color: var(--morgal-primary-color);
}

.customer-logos {
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
}

.customer-logos .row {
  margin-bottom: 70px;
}

.customer-logos .items {
  margin-top: 30px;
}

.customer-logos .items .thumbnail {
  border-radius: 35px;
  overflow: hidden;
  position: relative;
}

.customer-logos .items .thumbnail a {
  display: block;
}

.customer-logos .items .thumbnail img {
  border-radius: 35px;
  width: 100%;
  height: 100%;
}

.customer-logos .items .thumbnail .overlay {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
  text-align: center;
}

.customer-logos .items .thumbnail .overlay a {
  display: block;
}

.customer-logos .items .thumbnail .thumb {
  text-align: center;
}

.customer-logos .items .thumbnail.overlay-visible .overlay,
.customer-logos .items .thumbnail:hover .overlay,
.customer-logos .items .thumbnail:active .overlay {
  opacity: 1;
  visibility: visible;
  left: 0;
}

.customer-logos h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 46px;
  color: var(--morgal-black-color);
}

.import-customer .action {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  flex-wrap: wrap;
}

.import-customer .action .button {
  background-color: var(--morgal-primary-color);
  padding: 13px 60px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.31px;
  color: var(--morgal-white-color);
  border: 1px solid var(--morgal-primary-color);
  text-align: center;
}

.import-customer .action .button:hover {
  background: var(--morgal-primary-color);
  color: var(--morgal-white-color);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.import-customer .action .button.btn-outline {
  background-color: transparent;
  padding: 13px 60px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.31px;
  color: var(--morgal-primary-color);
  border: 1px solid var(--morgal-primary-color);
}

@media (max-width: 999px) {
  .import-customer .advertisement {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .import-customer {
    padding: 30px 0px;
  }

  .idea-reality .thumb {
    width: 106px;
  }

  .import-customer .advertisement {
    padding: 20px;
    row-gap: inherit;
  }

  .import-customer .advertisement .thumb {
    margin: 0 auto 30px;
    width: 310px;
  }

  .import-customer .advertisement .description {
    width: 100%;
    flex: inherit;
    order: 2;
    text-align: center;
  }

  .customer-logos {
    padding: 20px;
  }

  .import-customer .action {
    justify-content: center;
    gap: 20px;
    padding-top: 10px;
  }

  .customer-logos .row {
    margin-bottom: 60px;
  }

  .import-customer .action .button {
    width: 100%;
  }
}

/* 22102024 Import Customer Page Css End */
/* 23102024 Auth Page Css Start */
.woocommerce-account .entry-content {
  padding: 30px 0px 0;
}

.woocommerce-account:not(.logged-in) .entry-content {
  padding: 30px 0px;
}

.woocommerce-account:not(.logged-in) .woocommerce {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.woocommerce-account:not(.logged-in) .woocommerce h2 {
  padding: 20px;
  background-color: var(--morgal-primary-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--morgal-white-color);
  border-radius: 20px 20px 0 0;
}

.woocommerce-account:not(.logged-in) .woocommerce form {
  display: flex;
  flex-wrap: wrap;
  background-color: rgba(240, 240, 240, 1);
  padding: 30px;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.woocommerce-account:not(.logged-in) .woocommerce form .form-row {
  width: 100%;
}

.woocommerce-account:not(.logged-in) .woocommerce form label {
  line-height: 1.5;
}

.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-form label.woocommerce-form-login__rememberme {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-form a {
  text-decoration: underline;
  color: var(--morgal-primary-color);
}

.woocommerce-account:not(.logged-in) .input-text {
  background-color: var(--morgal-white-color);
}

html[dir="rtl"] .woocommerce .woocommerce-form-login__submit {
  float: right;
  margin-right: 0;
}

html[dir="rtl"] .woocommerce .woocommerce-form-register__submit {
  float: right;
  margin-right: 0;
}

.woocommerce-account:not(.logged-in) .col2-set .col-1,
.woocommerce-account:not(.logged-in) .col2-set .col-2 {
  background-color: transparent;
  padding: 0;
}

/* 23102024 Auth Page Css End */

.woocommerce-account .select2-container--default .select2-selection--single {
  border-radius: 0;
  border: 0;
}

.woocommerce-account .select2-container .select2-selection--single {
  height: auto;
  background-color: transparent;
}

.woocommerce-account .select2-container--default .select2-selection--single .select2-selection__rendered {
  background-color: var(--morgal-white-color);
  padding: 13px 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.28;
  color: var(--morgal-black-color);
  height: 44px;
  border-radius: 50px;
  border: 0;
  height: auto;
  text-align: left;
}

html[dir="rtl"] .woocommerce-account .select2-container--default .select2-selection--single .select2-selection__rendered {
  text-align: right;
}

.woocommerce-account .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  left: inherit;
  right: 10px;
}

html[dir="rtl"] .woocommerce-account .select2-container--default .select2-selection--single .select2-selection__arrow {
  left: 10px;
  right: inherit;
}

.woocommerce-lost-password:not(.logged-in) .woocommerce {
  max-width: 500px;
}

.woocommerce-account.logged-in .woocommerce table.my_account_orders {
  border-collapse: collapse;
}

.woocommerce-account.logged-in .woocommerce table.my_account_orders thead tr {
  background-color: var(--morgal-white-color);
}

.woocommerce-account.logged-in .woocommerce table.my_account_orders tbody tr {
  background-color: var(--morgal-white-color);
}

.woocommerce-account.logged-in .woocommerce table.my_account_orders tbody tr:nth-child(odd) {
  background-color: #f1f2f6;
}

.woocommerce-account.logged-in .woocommerce table.my_account_orders th {
  color: var(--morgal-primary-color);
}

.woocommerce-account.logged-in .woocommerce table.my_account_orders td,
.woocommerce-account.logged-in .woocommerce table.my_account_orders th {
  padding: 10px 8px;
}

.woocommerce-account.logged-in .woocommerce a.button {
  padding: 5px 20px;
}

@media only screen and (max-width: 768px) {

  .woocommerce table.shop_table_responsive tr td::before,
  .woocommerce-page table.shop_table_responsive tr td::before {
    content: attr(data-title);
  }
}

html[dir="rtl"] .woocommerce .register .woocommerce-privacy-policy-text {
  text-align: right;
}

html[dir="rtl"] .woocommerce .register .woocommerce-privacy-policy-text .woocommerce-privacy-policy-link {
  font-weight: 700;
}

.single-product .cart-single-product-related {
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 40px;
}

.single-product .cart-single-product-related .swiper {
  margin: 0;
  width: inherit;
}

.product-detail-container .accordion-body h2 {
  display: none;
}

.product-detail-container .btn-wrap form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.checkout-cart-option-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.checkout-cart-option-head .title,
.woocommerce-checkout-payment .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
  color: var(--morgal-font-color);
}

.checkout-cart-option-head .cart-option-tabs {
  display: flex;
  border: 1px solid;
  border-color: var(--morgal-primary-color);
  padding: 5px;
  border-radius: 25px;
  gap: 5px;
}

.checkout-cart-option-head .cart-option-tabs .item {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.33;
  color: var(--morgal-font-color);
  padding: 7px 20px;
  border-radius: 25px;
  background-color: transparent;
  cursor: pointer;
  text-align: center;
}

.checkout-cart-option-head .cart-option-tabs .item.active {
  background-color: var(--morgal-primary-color);
  color: var(--morgal-white-color);
}

.checkout-cart-option-body {
  font-size: 0;
  padding: 30px 0px;
}

.checkout-cart-option-body .woocommerce-shipping-methods {
  display: flex;
  gap: 80px;
  position: relative;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .checkout-cart-option-body .woocommerce-shipping-methods {
    flex-wrap: wrap;
  }

  .woocommerce-account:not(.logged-in) .woocommerce form {
    padding: 30px 15px;
  }
}

.checkout-cart-option-body .woocommerce-shipping-methods:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 2px;
  max-height: 170px;
  background-color: rgba(199, 199, 199, 1);
  margin: auto;
}

.checkout-cart-option-body #shipping_method.woocommerce-shipping-methods li {
  max-width: 363px;
  width: 100%;
  position: relative;
}

.checkout-cart-option-body #shipping_method.woocommerce-shipping-methods li .wrap {
  height: 100%;
  border: 1px solid;
  border-color: rgba(242, 242, 242, 1);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  justify-content: center;
}

.checkout-cart-option-body #shipping_method.woocommerce-shipping-methods li input[type="radio"] {
  position: absolute;
  left: 20px;
  top: 20px;
  opacity: 0;
  visibility: hidden;
}

.checkout-cart-option-body #shipping_method.woocommerce-shipping-methods li:has(input[type="radio"]:checked) .wrap {
  background-color: rgba(240, 240, 240, 1);
  border-color: var(--morgal-primary-color);
}

.checkout-cart-option-body #shipping_method.woocommerce-shipping-methods li .check-item-icon {
  position: absolute;
  left: inherit;
  right: 20px;
  top: 20px;
  background-color: rgba(39, 158, 56, 1);
  width: 31px;
  height: 31px;
  border-radius: 100%;
  display: none;
  align-items: center;
  justify-content: center;
}

.checkout-cart-option-body #shipping_method.woocommerce-shipping-methods li:has(input[type="radio"]:checked) .check-item-icon {
  display: flex;
}

html[dir="rtl"] .checkout-cart-option-body #shipping_method.woocommerce-shipping-methods li .check-item-icon {
  left: 20px;
  right: inherit;
}

.checkout-cart-option-body #shipping_method.woocommerce-shipping-methods li .thumb {
  width: 174px;
  height: 150px;
  margin: 0 auto;
  font-size: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 1.33;
}

.checkout-cart-option-body #shipping_method.woocommerce-shipping-methods li .thumb svg {
  width: auto;
  max-height: 110px;
  color: var(--morgal-font-color);
}

.checkout-cart-option-body #shipping_method.woocommerce-shipping-methods li:has(input[type="radio"]:checked) .thumb svg {
  color: rgba(0, 30, 128, 1);
}

.checkout-cart-option-body #shipping_method.woocommerce-shipping-methods li label {
  row-gap: 20px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.checkout-cart-option-body #shipping_method.woocommerce-shipping-methods li .sub-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
  color: var(--morgal-font-color);
  flex: 1;
}

@media (max-width: 767px) {
  html[dir="rtl"] .checkout-cart-option-body #shipping_method.woocommerce-shipping-methods li .sub-title {
    text-align: right;
    padding-left: 50px;
    font-size: 14px;
  }
}

.checkout-cart-option-body #shipping_method.woocommerce-shipping-methods li .text {
  font-size: 14px;
  font-weight: 400;
  line-height: 18.31px;
  color: var(--morgal-font-color);
}

.checkout-cart-option-body #shipping_method.woocommerce-shipping-methods li .text label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.checkout-cart-option .woocommerce-additional-fields {
  row-gap: 30px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .checkout-cart-option-body .woocommerce-shipping-methods {
    gap: 20px;
  }

  .checkout-cart-option-head .cart-option-tabs {
    width: 100%;
  }

  .checkout-cart-option-head .cart-option-tabs .item {
    width: 50%;
  }

  .checkout-cart-option-body .woocommerce-shipping-methods:after {
    display: none;
  }

  .checkout-cart-option-body #shipping_method.woocommerce-shipping-methods li label {
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }

  .checkout-cart-option-body #shipping_method.woocommerce-shipping-methods li .thumb {
    width: 55px;
    height: 55px;
  }

  .checkout-cart-option-body #shipping_method.woocommerce-shipping-methods li .thumb svg {
    max-height: 55px;
  }

  .checkout-cart-option-body #shipping_method.woocommerce-shipping-methods li {
    max-width: 100%;
  }

  .checkout-cart-option-body #shipping_method.woocommerce-shipping-methods li .wrap {
    padding: 12px 15px;
  }

  .checkout-cart-option-body #shipping_method.woocommerce-shipping-methods li .check-item-icon {
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .checkout-wrapper .review-order-table {
    padding: 15px;
  }
}

.mobile-filter-toggle {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
  color: var(--morgal-white-color);
  font-weight: 700;
  padding: 5px;
  text-align: center;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 0;
  z-index: 1000;
  cursor: pointer;
  padding: 15px;
}

.mobile-filter-toggle .toggle-btn {
  padding: 11px 25px;
  background-color: var(--morgal-secondary-color);
  color: var(--morgal-white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 30px;
}

.mobile-filter-toggle .toggle-btn .icons {
  width: 22px;
  height: 22px;
  position: relative;
}

.mobile-filter-toggle .toggle-btn .icons .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
}

.mobile-filter-toggle .toggle-btn .icons svg {
  width: 22px;
  height: 22px;
}

.mobile-filter-toggle .toggle-btn .text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.33;
}

.mobile-filter-toggle .toggle-btn .filter-close-icon {
  display: none;
}

.mobile-filter-toggle .toggle-btn .filter-icon {
  display: block;
}

.mobile-filter-toggle .toggle-btn.active .filter-close-icon {
  display: block;
}

.mobile-filter-toggle .toggle-btn.active .filter-icon {
  display: none;
}

.filter-open #wpadminbar {
  z-index: 1;
}

.menu-open .mobile-filter-toggle {
  z-index: 1;
}

.mobile-account-link {
  display: none;
  color: var(--morgal-black-color);
}

.mobile-account-link a {
  color: var(--morgal-black-color);
}

@media (max-width: 1100px) {
  .mobile-account-link {
    display: block;
  }
}

.woocommerce-Price-currencySymbol {
  margin-right: 2px;
}

.thankyou-page {
  padding: 70px 0px;
}

.thankyou-page .content {
  gap: 27px;
  display: flex;
  flex-direction: column;
}

.thankyou-page h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--morgal-primary-color);
}

.thankyou-page p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--morgal-font-color);
}

.home .create-case-wrap .content-wrap .text-wrap p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--morgal-font-color);
}

.home .create-case-wrap {
  position: relative;
  padding: 0;
}

.home .create-case-wrap .wrap,
.morgal-story-wrap .wrap {
  background-color: #b8ede3;
  padding: 30px 0;
}

.curv-shape {
  width: 100%;
}

.curv-shape svg {
  width: 100%;
  display: block;
}

.curv-shape.top svg {
  margin-bottom: -1px;
}

.cta-section-wrap .curv-shape svg {
  color: var(--morgal-primary-color);
}

.giftbox-dropdown .input-group {
  background-color: var(--morgal-white-color);
  max-width: 373px;
  width: 100%;
  border: 1px solid var(--morgal-primary-color);
  border-radius: 50px;
  display: flex;
  padding: 3px;
  flex-direction: row-reverse;
}

html[dir="rtl"] .giftbox-dropdown {
  padding-right: 20px;
  padding-left: 0;
}

.giftbox-dropdown .form-control {
  flex: 1;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.31;
  color: var(--morgal-black-color);
  background-color: transparent;
  text-align: right;
  direction: rtl;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
}

.giftbox-dropdown .form-control::placeholder {
  color: var(--morgal-font-color);
}

.giftbox-dropdown .gift-submit {
  padding: 12px 30px;
  background-color: var(--morgal-primary-color);
  color: var(--morgal-white-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.31;
  border: 0;
  border-radius: 50px !important;
}

p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
  display: inline-block;
  width: 100%;
}

#billing_phone_field .input-text {
  text-align: right;
  direction: rtl;
}

.woocommerce-table--order-details.shop_table tfoot th {
  padding-right: 12px !important;
}

.woocommerce-table--order-details.shop_table tfoot td {
  padding-left: 12px !important;
}

.search-results .search-box {
  background-color: #fff8fa;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.03);
  height: 100%;
}

.search-results .search-box .post-thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  display: block;
}

.search-results .search-box .post-thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: top;
}

.search-results .search-box .h5 {
  font-size: 16px;
  color: var(--morgal-primary-color);
  padding: 0;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.woocommerce #review_form #respond p label {
  width: 100%;
}

.woocommerce #review_form #respond p label span {
  color: #f11b23;
}

.woocommerce #review_form #respond p.comment-form-cookies-consent label {
  width: auto;
  cursor: pointer;
}

.woocommerce #review_form #respond p.comment-form-cookies-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.woocommerce #review_form #respond p.comment-form-cookies-consent input[type="checkbox"] {
  width: auto;
  margin-top: 5px;
}

.woocommerce-account .col2-set header {
  padding: 10px 20px;
  background-color: var(--morgal-primary-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--morgal-white-color);
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.woocommerce-account .col2-set header:after,
.woocommerce-account .col2-set header:before {
  display: none !important;
}

.woocommerce-account .col2-set header h3 {
  margin: 0;
  color: var(--morgal-white-color);
}

.woocommerce-account .col2-set header a.edit {
  color: var(--morgal-white-color) !important;
  font-size: 12px;
}

.woocommerce-account address {
  padding: 15px !important;
}

.woocommerce-account .entry-header .entry-title {
  background-color: transform;
}

.checkout-container .username-back .user .login_user_cst {
  font-weight: 700;
}

.case-process-card .text-wrap p span.heart img {
  width: 14px;
  height: 11px;
}

.no-results .searchform div {
  height: 46px;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: var(--morgal-white-color);
  border-radius: 50px;
  border: 1px solid var(--morgal-black-color);
  padding: 3px;
}

.no-results .searchform div input[type="text"] {
  height: 46px;
  flex: 1;
  border: 0;
  background-color: transparent;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.33;
  color: var(--morgal-black-color);
}

.no-results .searchform div input[type="text"]::placeholder {
  color: #999cad;
}

.no-results .searchform input[type="submit"] {
  background-color: var(--morgal-primary-color);
  border: 0;
  padding: 5px 20px;
  color: var(--morgal-white-color);
  border-radius: 50px;
  height: 40px;
  font-weight: 600;
}

.contact-form-wrap .wpcf7-form-control-wrap.recaptcha {
  display: inline-block;
  margin-bottom: 20px;
}

/* .single-product
  .cart-single-product-related.sale
  .woocommerce
  ul.products
  li.product
  .price
  .regular-price {
  color: rgba(241, 27, 35, 1);
} */
.error-page-wrap-box .woocommerce ul.products li.product .price ins .regular-price {
  color: rgba(241, 27, 35, 1);
}

.woocommerce a.added_to_cart {
  padding-top: 0;
}

.woocommerce-checkout table.shop_table thead th.product-total {
  display: none;
}

.woocommerce-cart .woocommerce ul.products li.product .price ins .regular-price {
  color: #f11b23;
}

.thankyou-page .content {
  gap: 30px;
}

.gift-list-item .gift-info .gift-price-wrap .gift-price {
  color: #999cad;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration-line: line-through;
}

.gift-list-item .gift-info .gift-price-wrap .gift-price.sale {
  color: var(--morgal-primary-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration-line: none;
}

.single-product .cart-single-product-related.related .woocommerce ul.products li.product .price ins .regular-price {
  color: #f11b23;
}

.single-product .cart-single-product-related.related .woocommerce ul.products li.product .onsale {
  background-color: var(--morgal-secondary-color);
}

.single-product .cart-single-product-related.sale .woocommerce ul.products li.product .onsale {
  background-color: #f11b23;
}

.checkout-wrapper .customer-details .form-row#billing_country_field {
  display: none;
}

.checkout-wrapper .customer-details .form-row#shipping_country_field {
  display: none;
}

.woocommerce-account form .form-row#billing_country_field {
  display: none;
}

.woocommerce-account form .form-row#shipping_country_field {
  display: none;
}

.woocommerce ul.products li.product .price ins .regular-price {
  color: #f11b23;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p {
  margin: 0;
}

.woocommerce #reviews #comments ol.commentlist {
  padding: 0px;
}

.product-detail-wrap .product-thumb-wrap.video-container {
  position: relative;
}

.product-detail-wrap .product-thumb-wrap .product-video-play:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.woocommerce ul.products li.product .label-sale {
  position: absolute;
  top: 0px;
  right: 0px;
  background: #f11b23;
  color: var(--morgal-white-color);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 50px;
  z-index: 1;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
}

.woocommerce ul.products li.product .label-soon {
  position: absolute;
  top: 0px;
  right: 0px;
  background: #c088ff;
  color: var(--morgal-white-color);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 50px;
  z-index: 1;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
}

.woocommerce ul.products li.product .label-new {
  position: absolute;
  top: 0px;
  right: 0px;
  background: var(--morgal-primary-color);
  color: var(--morgal-white-color);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 50px;
  z-index: 1;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
}

.woocommerce ul.products li.product .label-best {
  position: absolute;
  top: 0px;
  right: 0px;
  background: var(--morgal-secondary-color);
  color: var(--morgal-white-color);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 50px;
  z-index: 1;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
}

/* Apply No file chosen translation */
.contact-form-wrap .file-upload-wrap .wpcf7-form-control-wrap #file-upload::-webkit-file-upload-button {
  visibility: hidden;
}

.contact-form-wrap .file-upload-wrap .wpcf7-form-control-wrap #file-upload::before {
  content: "לא נבחר קובץ";
  display: inline-block;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  visibility: visible;
  padding: 0px 5px 15px 0px;
}

.contact-form-wrap .file-upload-wrap .wpcf7-form-control-wrap #file-upload:hover::before {
  border-color: var(--morgal-black-color);
}

.contact-form-wrap .file-upload-wrap .wpcf7-form-control-wrap #file-upload:active::before {
  background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}

section.up-sells.upsells.products {
  display: none;
}

/* End translation code */
.list-product-modal .modal-dialog {
  max-width: 600px;
  width: 100%;
  border-radius: 0px;
}

.list-product-modal .modal-content {
  background-color: transparent;
  border: 0;
  box-shadow: none;
}

.list-product-modal .modal-header {
  display: none;
}

.list-product-modal .modal-body {
  background-color: transparent;
  border-radius: 0px;
  padding: 0;
  border: 0;
}

.list-product-modal .list-product-slider {
  padding-bottom: 30px;
}

.list-product-modal .list-product-slider .swiper-slide img,
.list-product-modal .list-product-slider .swiper-slide video {
  display: block;
  margin: 0 auto;
  max-width: 600px;
  max-height: 600px;
  width: 100%;
}

.list-product-slider .swiper-pagination {
  bottom: 0px;
  top: inherit;
}

.list-product-slider .swiper-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 3px;
  border-radius: 0px;
  background-color: #999cad;
  opacity: 1;
}

.list-product-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #07e4be;
}

.woocommerce-shop .modal-backdrop {
  background-color: rgba(0, 30, 128, 0.75);
}

.topSwiper .swiper-slide {
  opacity: 0 !important;
  transition: opacity 0.5s ease;
}

.topSwiper .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}

.menu-wrapper h6,
.menu-wrapper h6 a {
    color: var(--morgal-primary-color);
}

#custom-product-filter .accordion-button {
    background-color: #f8f9fa;
    font-weight: 400;
}

#custom-product-filter .accordion-item {
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

#custom-product-filter .accordion-body ul li a {
    transition: all 0.2s ease;
}

.child-active {
    color: var(--morgal-secondary-color);
}

#custom-product-filter .accordion-body ul li a:hover {
    text-decoration: underline;
}

#custom-product-filter .accordion-item {
    border: none;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

#custom-product-filter .accordion-button:not(.collapsed) {
    background-color: #f0f8ff;
}

.card-header h6 {
    font-size: 14px;
    font-weight: 700;
}

.card-header h6 a {
    color: var(--morgal-black-color);
}

.accordion-header button {
    padding: 0;
}

/* Align icon to the far left (in RTL, it's visually on the right) */
.accordion-button::after {
    margin-left: auto;
    margin-right: 0;
}

/* Align text and icon nicely in RTL */
.accordion-button {
    justify-content: space-between;
    direction: rtl;
    text-align: right;
}

.transition-icon {
    transition: transform 0.3s ease;
    color: var(--morgal-black-color) !important;
}

a[aria-expanded="true"] .transition-icon,
.accordion-button:not(.collapsed) .transition-icon {
    transform: rotate(180deg);
}

.ui-widget-header {
    background: var(--morgal-secondary-color);
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border-radius: 50%;
    background-color: var(--morgal-primary-color);
}

.accordion-button::after {
    display: none;
}

.ui-slider .ui-slider-handle {
    width: 1em;
    height: 1em;
}

.ui-slider-horizontal {
    height: 0.5em;
}

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

.woocommerce-checkout-payment {
    background: none;
    padding: 10px;
    border-radius: 8px;
}

.woocommerce-checkout-payment ul.payment_methods {
    display: flex;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.woocommerce-checkout-payment ul.payment_methods li {
    flex: 1;
    text-align: center;
    margin: 0;
    padding: 5px 10px;
}

.woocommerce-checkout .woocommerce-checkout-payment .wc_payment_methods .wc_payment_method input[type="radio"] {
    display: none !important;
}

.woocommerce-checkout-payment ul.payment_methods li label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.woocommerce-checkout-payment ul.payment_methods li input[type="radio"]+label {
    color: #636675;
    border-color: #e2e2e2;
    background: #f0f0f0;
}

.woocommerce-checkout-payment ul.payment_methods li input[type="radio"]:checked+label {
    color: var(--morgal-primary-color);
    border-color: var(--morgal-primary-color);
    background: #f0f0f0;
}

.woocommerce-checkout-payment ul.payment_methods li label img {
    max-height: 18px;
    margin-left: 8px;
}

.br-desktop {
    display: inline;
}

.x-scroll::-webkit-scrollbar {
  display: none;
}

.x-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}